[ Index ]

PHP Cross Reference of Joomla 4.2.2 documentation

title

Body

[close]

/plugins/editors/tinymce/ -> tinymce.php (source)

   1  <?php
   2  
   3  /**
   4   * @package     Joomla.Plugin
   5   * @subpackage  Editors.tinymce
   6   *
   7   * @copyright   (C) 2006 Open Source Matters, Inc. <https://www.joomla.org>
   8   * @license     GNU General Public License version 2 or later; see LICENSE.txt
   9  
  10   * @phpcs:disable PSR1.Classes.ClassDeclaration.MissingNamespace
  11   */
  12  
  13  use Joomla\CMS\Plugin\CMSPlugin;
  14  use Joomla\Plugin\Editors\TinyMCE\PluginTraits\DisplayTrait;
  15  
  16  // phpcs:disable PSR1.Files.SideEffects
  17  \defined('_JEXEC') or die;
  18  // phpcs:enable PSR1.Files.SideEffects
  19  
  20  /**
  21   * TinyMCE Editor Plugin
  22   *
  23   * @since  1.5
  24   */
  25  class PlgEditorTinymce extends CMSPlugin
  26  {
  27      use DisplayTrait;
  28  
  29      /**
  30       * Base path for editor files
  31       *
  32       * @since  3.5
  33       *
  34       * @deprecated 5.0
  35       */
  36      protected $_basePath = 'media/vendor/tinymce';
  37  
  38      /**
  39       * Load the language file on instantiation.
  40       *
  41       * @var    boolean
  42       * @since  3.1
  43       */
  44      protected $autoloadLanguage = true;
  45  
  46      /**
  47       * Loads the application object
  48       *
  49       * @var    \Joomla\CMS\Application\CMSApplication
  50       * @since  3.2
  51       */
  52      protected $app = null;
  53  
  54      /**
  55       * Initialises the Editor.
  56       *
  57       * @return  void
  58       *
  59       * @since   1.5
  60       */
  61      public function onInit()
  62      {
  63      }
  64  }


Generated: Wed Sep 7 05:41:13 2022 Chilli.vc Blog - For Webmaster,Blog-Writer,System Admin and Domainer