[ Index ]

PHP Cross Reference of Joomla 4.2.2 documentation

title

Body

[close]

/libraries/src/WebAsset/AssetItem/ -> TableColumnsAssetItem.php (source)

   1  <?php
   2  
   3  /**
   4   * Joomla! Content Management System
   5   *
   6   * @copyright  (C) 2022 Open Source Matters, Inc. <https://www.joomla.org>
   7   * @license    GNU General Public License version 2 or later; see LICENSE.txt
   8   */
   9  
  10  namespace Joomla\CMS\WebAsset\AssetItem;
  11  
  12  use Joomla\CMS\Document\Document;
  13  use Joomla\CMS\Language\Text;
  14  use Joomla\CMS\WebAsset\WebAssetAttachBehaviorInterface;
  15  use Joomla\CMS\WebAsset\WebAssetItem;
  16  
  17  // phpcs:disable PSR1.Files.SideEffects
  18  \defined('JPATH_PLATFORM') or die;
  19  // phpcs:enable PSR1.Files.SideEffects
  20  
  21  /**
  22   * Web Asset Item class for tables.column asset
  23   *
  24   * @since  4.2.0
  25   */
  26  class TableColumnsAssetItem extends WebAssetItem implements WebAssetAttachBehaviorInterface
  27  {
  28      /**
  29       * Method called when asset attached to the Document.
  30       * Used to add the language strings required by the script.
  31       *
  32       * @param   Document  $doc  Active document
  33       *
  34       * @return  void
  35       *
  36       * @since   4.2.0
  37       */
  38      public function onAttachCallback(Document $doc)
  39      {
  40          // Add table-columns.js language strings
  41          Text::script('JGLOBAL_COLUMNS');
  42      }
  43  }


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