/
githubmirror
/
joomla-cms
Обзор
Документация
Войти
/
githubmirror
/
joomla-cms
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
5.4-dev
api/components/com_media/src/View/Media/JsonapiView.php
97 строк
2 KB
heelc29
[4.3] Convert missing files to PSR-12 code style (#39197)
27 янв 2023, 17:15
Не верифицирован
27 янв 2023, 17:15
b9730d5
Код
Авторство
О чём код?
<?php /** * @package Joomla.API * @subpackage com_media * * @copyright (C) 2021 Open Source Matters, Inc. <https://www.joomla.org> * @license GNU General Public License version 2 or later; see LICENSE.txt */ namespace Joomla\Component\Media\Api\View\Media; use Joomla\CMS\MVC\View\JsonApiView as BaseApiView; use Joomla\Component\Media\Administrator\Provider\ProviderManagerHelperTrait; // phpcs:disable PSR1.Files.SideEffects \defined('_JEXEC') or die; // phpcs:enable PSR1.Files.SideEffects /** * Media web service view * * @since 4.1.0 */ class JsonapiView extends BaseApiView { use ProviderManagerHelperTrait; /** * The fields to render item in the documents * * @var array * @since 4.1.0 */ protected $fieldsToRenderItem = [ 'type', 'name', 'path', 'extension', 'size', 'mime_type', 'width', 'height', 'create_date', 'create_date_formatted', 'modified_date', 'modified_date_formatted', 'thumb_path', 'adapter', 'content', 'url', 'tempUrl', ]; /** * The fields to render items in the documents * * @var array * @since 4.1.0 */ protected $fieldsToRenderList = [ 'type', 'name', 'path', 'extension', 'size', 'mime_type', 'width', 'height', 'create_date', 'create_date_formatted', 'modified_date', 'modified_date_formatted', 'thumb_path', 'adapter', 'content', 'url', 'tempUrl', ]; /** * Prepare item before render. * * @param object $item The model item * * @return object * * @since 4.1.0 */ protected function prepareItem($item) { // Media resources have no id. $item->id = '0'; return $item; } }