__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
<?php
/**
* @package SP Page Builder
* @author JoomShaper http://www.joomshaper.com
* @copyright Copyright (c) 2010 - 2023 JoomShaper
* @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2 or later
*/
// No direct access
defined('_JEXEC') or die('Restricted access');
use Joomla\CMS\Factory;
use Joomla\CMS\MVC\Controller\FormController;
use Joomla\CMS\Response\JsonResponse;
/**
* Color Controller class
*
* @since 5.0.0
*/
class SppagebuilderControllerColor extends FormController
{
/**
* Get global colors
*/
public function globalColors()
{
$db = Factory::getDbo();
$query = $db->getQuery(true);
$query->select(['id', 'name', 'colors'])
->from($db->quoteName('#__sppagebuilder_colors'))
->where($db->quoteName('published') . ' = 1');
$db->setQuery($query);
$colors = [];
try
{
$colors = $db->loadObjectList();
}
catch (\Exception $e)
{
return [];
}
if (!empty($colors))
{
foreach ($colors as &$color)
{
$color->colors = \json_decode($color->colors);
}
unset($color);
}
$this->sendResponse($colors);
}
/**
* Send JSON Response to the client.
*
* @param array $response The response array or data.
* @param int $statusCode The status code of the HTTP response.
*
* @return void
* @since 5.0.0
*/
private function sendResponse($response, int $statusCode = 200) : void
{
$app = Factory::getApplication();
$app->setHeader('status', $statusCode, true);
$app->sendHeaders();
echo new JsonResponse($response);
$app->close();
}
}
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| ai_content.php | File | 18.63 KB | 0664 |
|
| asset.php | File | 16.27 KB | 0664 |
|
| color.php | File | 1.52 KB | 0664 |
|
| font.php | File | 1.83 KB | 0664 |
|
| image_shapes.php | File | 2.74 KB | 0664 |
|
| media.php | File | 27.57 KB | 0664 |
|
| page.php | File | 26.13 KB | 0664 |
|
| saved_items_order.php | File | 2.03 KB | 0664 |
|