Файловый менеджер - Редактировать - /home/lmsyaran/public_html/joomla5/plugins/webservices/templates/src/Extension/Templates.php
Назад
<?php /** * @package Joomla.Templates * @subpackage Webservices.templates * * @copyright (C) 2019 Open Source Matters, Inc. <https://www.joomla.org> * @license GNU General Public License version 2 or later; see LICENSE.txt */ namespace Joomla\Plugin\WebServices\Templates\Extension; use Joomla\CMS\Event\Application\BeforeApiRouteEvent; use Joomla\CMS\Plugin\CMSPlugin; use Joomla\Event\SubscriberInterface; // phpcs:disable PSR1.Files.SideEffects \defined('_JEXEC') or die; // phpcs:enable PSR1.Files.SideEffects /** * Web Services adapter for com_templates. * * @since 4.0.0 */ final class Templates extends CMSPlugin implements SubscriberInterface { /** * Returns an array of events this subscriber will listen to. * * @return array * * @since 5.1.0 */ public static function getSubscribedEvents(): array { return [ 'onBeforeApiRoute' => 'onBeforeApiRoute', ]; } /** * Registers com_templates's API's routes in the application * * @param BeforeApiRouteEvent $event The event object * * @return void * * @since 4.0.0 */ public function onBeforeApiRoute(BeforeApiRouteEvent $event): void { $router = $event->getRouter(); $router->createCRUDRoutes( 'v1/templates/styles/site', 'styles', ['component' => 'com_templates', 'client_id' => 0] ); $router->createCRUDRoutes( 'v1/templates/styles/administrator', 'styles', ['component' => 'com_templates', 'client_id' => 1] ); } }
| ver. 1.4 |
Github
|
.
| PHP 8.1.33 | Генерация страницы: 0.01 |
proxy
|
phpinfo
|
Настройка