| Server IP : 54.36.91.62 / Your IP : 216.73.217.112 Web Server : Apache System : Linux webm013.cluster127.gra.hosting.ovh.net 5.15.206-ovh-vps-grsec-zfs-classid #1 SMP Fri May 15 02:41:25 UTC 2026 x86_64 User : coopiak ( 151928) PHP Version : 8.3.23 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/coopiak/amisdesseniors-fr/administrator/components/com_rsform/views/menus/tmpl/ |
Upload File : |
<?php
/**
* @package RSForm! Pro
* @copyright (C) 2007-2019 www.rsjoomla.com
* @license GPL, http://www.gnu.org/copyleft/gpl.html
*/
defined('_JEXEC') or die;
use Joomla\CMS\Language\Text;
?>
<form action="index.php" method="post" name="adminForm" id="adminForm">
<p><?php echo Text::sprintf('RSFP_ADD_TO_MENU', $this->formTitle); ?></p>
<table class="table table-striped">
<thead>
<tr>
<th width="20"><?php echo Text::_('#'); ?></th>
<th class="title" nowrap="nowrap"><?php echo Text::_('RSFP_TITLE'); ?></th>
<th class="title" nowrap="nowrap"><?php echo Text::_('RSFP_TYPE'); ?></th>
<th width="3%"><?php echo Text::_('ID'); ?></th>
</tr>
</thead>
<?php
$i = 0;
$k = 0;
foreach ($this->menus as $menu) { ?>
<tr class="row<?php echo $k; ?>">
<td align="center" width="30"><?php echo $this->pagination->getRowOffset($i); ?></td>
<td><a href="index.php?option=com_rsform&task=forms.setmenu&menutype=<?php echo urlencode($menu->menutype); ?>&formId=<?php echo $this->formId; ?>"><?php echo $this->escape($menu->title); ?></a></td>
<td><?php echo $this->escape($menu->menutype); ?></td>
<td align="center"><?php echo $menu->id; ?></td>
</tr>
<?php
$i++;
$k=1-$k;
}
?>
<tfoot>
<tr>
<td colspan="4">
<?php echo $this->pagination->getListFooter(); ?>
</td>
</tr>
</tfoot>
</table>
<input type="hidden" name="option" value="com_rsform" />
<input type="hidden" name="view" value="menus" />
<input type="hidden" name="task" value="" />
<input type="hidden" name="formId" value="<?php echo $this->formId; ?>" />
</form>