[ Index ]

PHP Cross Reference of Joomla 4.2.2 documentation

title

Body

[close]

/administrator/components/com_admin/tmpl/sysinfo/ -> default_directory.php (source)

   1  <?php
   2  
   3  /**
   4   * @package     Joomla.Administrator
   5   * @subpackage  com_admin
   6   *
   7   * @copyright   (C) 2008 Open Source Matters, Inc. <https://www.joomla.org>
   8   * @license     GNU General Public License version 2 or later; see LICENSE.txt
   9   */
  10  
  11  defined('_JEXEC') or die;
  12  
  13  use Joomla\CMS\HTML\HTMLHelper;
  14  use Joomla\CMS\Language\Text;
  15  
  16  /** @var \Joomla\Component\Admin\Administrator\View\Sysinfo\HtmlView $this */
  17  
  18  ?>
  19  <div class="sysinfo">
  20      <table class="table">
  21          <caption class="visually-hidden">
  22              <?php echo Text::_('COM_ADMIN_DIRECTORY_PERMISSIONS'); ?>
  23          </caption>
  24          <thead>
  25              <tr>
  26                  <th scope="col" class="w-60">
  27                      <?php echo Text::_('COM_ADMIN_DIRECTORY'); ?>
  28                  </th>
  29                  <th scope="col">
  30                      <?php echo Text::_('COM_ADMIN_STATUS'); ?>
  31                  </th>
  32              </tr>
  33          </thead>
  34          <tbody>
  35              <?php foreach ($this->directory as $dir => $info) : ?>
  36                  <tr>
  37                      <th scope="row">
  38                          <?php echo '&#x200E;' . HTMLHelper::_('directory.message', $dir, $info['message']); ?>
  39                      </th>
  40                      <td>
  41                          <?php echo HTMLHelper::_('directory.writable', $info['writable']); ?>
  42                      </td>
  43                  </tr>
  44              <?php endforeach; ?>
  45          </tbody>
  46      </table>
  47  </div>


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