[ Index ]

PHP Cross Reference of Joomla 4.2.2 documentation

title

Body

[close]

/administrator/modules/mod_loginsupport/tmpl/ -> default.php (source)

   1  <?php
   2  
   3  /**
   4   * @package     Joomla.Administrator
   5   * @subpackage  mod_loginsupport
   6   *
   7   * @copyright   (C) 2019 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  ?>
  17  <section class="loginsupport">
  18      <p><?php echo Text::_('MOD_LOGINSUPPORT_HEADLINE'); ?></p>
  19      <ul class="list-unstyled">
  20          <li>
  21              <?php echo HTMLHelper::link(
  22                  $params->get('forum_url'),
  23                  Text::_('MOD_LOGINSUPPORT_FORUM'),
  24                  [
  25                      'target' => '_blank',
  26                      'rel'    => 'nofollow noopener',
  27                      'title'  => Text::sprintf('JBROWSERTARGET_NEW_TITLE', Text::_('MOD_LOGINSUPPORT_FORUM'))
  28                  ]
  29              ); ?>
  30          </li>
  31          <li>
  32              <?php echo HTMLHelper::link(
  33                  $params->get('documentation_url'),
  34                  Text::_('MOD_LOGINSUPPORT_DOCUMENTATION'),
  35                  [
  36                      'target' => '_blank',
  37                      'rel'    => 'nofollow noopener',
  38                      'title'  => Text::sprintf('JBROWSERTARGET_NEW_TITLE', Text::_('MOD_LOGINSUPPORT_DOCUMENTATION'))
  39                  ]
  40              ); ?>
  41          </li>
  42          <li>
  43              <?php echo HTMLHelper::link(
  44                  $params->get('news_url'),
  45                  Text::_('MOD_LOGINSUPPORT_NEWS'),
  46                  [
  47                      'target' => '_blank',
  48                      'rel'    => 'nofollow noopener',
  49                      'title'  => Text::sprintf('JBROWSERTARGET_NEW_TITLE', Text::_('MOD_LOGINSUPPORT_NEWS'))
  50                  ]
  51              ); ?>
  52          </li>
  53      </ul>
  54  </section>


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