[ Index ]

PHP Cross Reference of Joomla 4.2.2 documentation

title

Body

[close]

/components/com_users/tmpl/remind/ -> default.php (source)

   1  <?php
   2  
   3  /**
   4   * @package     Joomla.Site
   5   * @subpackage  com_users
   6   *
   7   * @copyright   (C) 2009 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  use Joomla\CMS\Router\Route;
  16  
  17  HTMLHelper::_('behavior.keepalive');
  18  HTMLHelper::_('behavior.formvalidator');
  19  
  20  ?>
  21  <div class="com-users-remind remind">
  22      <?php if ($this->params->get('show_page_heading')) : ?>
  23          <div class="page-header">
  24              <h1>
  25                  <?php echo $this->escape($this->params->get('page_heading')); ?>
  26              </h1>
  27          </div>
  28      <?php endif; ?>
  29      <form id="user-registration" action="<?php echo Route::_('index.php?option=com_users&task=remind.remind'); ?>" method="post" class="com-users-remind__form form-validate form-horizontal well">
  30          <?php foreach ($this->form->getFieldsets() as $fieldset) : ?>
  31              <fieldset>
  32                  <?php if (isset($fieldset->label)) : ?>
  33                      <legend><?php echo Text::_($fieldset->label); ?></legend>
  34                  <?php endif; ?>
  35                  <?php echo $this->form->renderFieldset($fieldset->name); ?>
  36              </fieldset>
  37          <?php endforeach; ?>
  38          <div class="com-users-remind__submit control-group">
  39              <div class="controls">
  40                  <button type="submit" class="btn btn-primary validate">
  41                      <?php echo Text::_('JSUBMIT'); ?>
  42                  </button>
  43              </div>
  44          </div>
  45          <?php echo HTMLHelper::_('form.token'); ?>
  46      </form>
  47  </div>


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