[ Index ]

PHP Cross Reference of Joomla 4.2.2 documentation

title

Body

[close]

/components/com_contenthistory/src/Dispatcher/ -> Dispatcher.php (source)

   1  <?php
   2  
   3  /**
   4   * @package     Joomla.Site
   5   * @subpackage  com_contenthistory
   6   *
   7   * @copyright   (C) 2017 Open Source Matters, Inc. <https://www.joomla.org>
   8   * @license     GNU General Public License version 2 or later; see LICENSE.txt
   9   */
  10  
  11  namespace Joomla\Component\Contenthistory\Site\Dispatcher;
  12  
  13  use Joomla\CMS\Access\Exception\NotAllowed;
  14  use Joomla\CMS\Dispatcher\ComponentDispatcher;
  15  use Joomla\CMS\MVC\Controller\BaseController;
  16  
  17  // phpcs:disable PSR1.Files.SideEffects
  18  \defined('_JEXEC') or die;
  19  // phpcs:enable PSR1.Files.SideEffects
  20  
  21  /**
  22   * ComponentDispatcher class for com_contenthistory
  23   *
  24   * @since  4.0.0
  25   */
  26  class Dispatcher extends ComponentDispatcher
  27  {
  28      /**
  29       * Load the language
  30       *
  31       * @since   4.0.0
  32       *
  33       * @return  void
  34       */
  35      protected function loadLanguage()
  36      {
  37          // Load common and local language files.
  38          $this->app->getLanguage()->load($this->option, JPATH_ADMINISTRATOR) ||
  39          $this->app->getLanguage()->load($this->option, JPATH_SITE);
  40      }
  41  
  42      /**
  43       * Method to check component access permission
  44       *
  45       * @since   4.0.0
  46       *
  47       * @return  void
  48       *
  49       * @throws  \Exception|NotAllowed
  50       */
  51      protected function checkAccess()
  52      {
  53          // Check the user has permission to access this component if in the backend
  54          if ($this->app->getIdentity()->guest) {
  55              throw new NotAllowed($this->app->getLanguage()->_('JERROR_ALERTNOAUTHOR'), 403);
  56          }
  57      }
  58  
  59      /**
  60       * Get a controller from the component
  61       *
  62       * @param   string  $name    Controller name
  63       * @param   string  $client  Optional client (like Administrator, Site etc.)
  64       * @param   array   $config  Optional controller config
  65       *
  66       * @return  BaseController
  67       *
  68       * @since   4.0.0
  69       */
  70      public function getController(string $name, string $client = '', array $config = array()): BaseController
  71      {
  72          $config['base_path'] = JPATH_COMPONENT_ADMINISTRATOR;
  73          $client = 'Administrator';
  74  
  75          return parent::getController($name, $client, $config);
  76      }
  77  }


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