/
home
/
assocoweys
/
sompe
/
plugins
/
system
/
jcepro
/
editor
/
plugins
/
templatemanager
/
fields
/
Upload File
HOME
<?php /** * JCE * * @copyright (C) 2009 Open Source Matters, Inc. <https://www.joomla.org> * @copyright (C) 2022 Open Source Matters, Inc. <https://www.joomla.org> * @license GNU General Public License version 2 or later; see LICENSE.txt */ // phpcs:disable PSR1.Files.SideEffects \defined('JPATH_PLATFORM') or die; // phpcs:enable PSR1.Files.SideEffects use Joomla\CMS\Form\Field\TextareaField; class JFormFieldCode extends TextareaField { /** * The form field type. * * @var string * @since 1.7.0 */ protected $type = 'Code'; /** * Name of the layout being used to render the field * * @var string * @since 3.7 */ protected $layout = 'form.field.code'; /** * Allow to override renderer include paths in child fields * * @return array * * @since 3.5 */ protected function getLayoutPaths() { return array(dirname(__DIR__) . '/layouts', JPATH_SITE . '/layouts'); } }