Current Directory: /home/astoriaah/www/old15/administrator/components/com_menus/views/item/tmpl
Viewing File: /home/astoriaah/www/old15/administrator/components/com_menus/views/item/tmpl/edit_modules.php
<?php
/**
* @package Joomla.Administrator
* @subpackage com_menus
*
* @copyright Copyright (C) 2005 - 2015 Open Source Matters, Inc. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
defined('_JEXEC') or die;
JHtml::_('behavior.core');
foreach ($this->levels as $key => $value) {
$allLevels[$value->id] = $value->title;
}
JFactory::getDocument()->addScriptDeclaration('
var viewLevels = ' . json_encode($allLevels) . ',
menuId = parseInt(' . $this->item->id . ');
jQuery(document).ready(function() {
jQuery(document).on("click", "input:radio[id^=\'jform_toggle_modules1\']", function (event) {
jQuery(".table tr.no").hide();
});
jQuery(document).on("click", "input:radio[id^=\'jform_toggle_modules0\']", function (event) {
jQuery(".table tr.no").show();
});
});
');
?>
<?php
// Set main fields.
$this->fields = array('toggle_modules');
echo JLayoutHelper::render('joomla.edit.global', $this); ?>
<table class="table table-striped">
<thead>
<tr>
<th class="left">
<?php echo JText::_('COM_MENUS_HEADING_ASSIGN_MODULE');?>
</th>
<th>
<?php echo JText::_('COM_MENUS_HEADING_LEVELS');?>
</th>
<th>
<?php echo JText::_('COM_MENUS_HEADING_POSITION');?>
</th>
<th>
<?php echo JText::_('COM_MENUS_HEADING_DISPLAY');?>
</th>
</tr>
</thead>
<tbody>
<?php foreach ($this->modules as $i => &$module) : ?>
<?php if (is_null($module->menuid)) : ?>
<?php if (!$module->except || $module->menuid < 0) : ?>
<tr class="no row<?php echo $i % 2;?>" id="tr-<?php echo $module->id; ?>" style="display:table-row;">
<?php else : ?>
<tr class="row<?php echo $i % 2;?>" id="tr-<?php echo $module->id; ?>" style="display:table-row;">
<?php endif; ?>
<?php else : ?>
<tr class="row<?php echo $i % 2;?>" id="tr-<?php echo $module->id; ?>" style="display:table-row">
<?php endif; ?>
<td id="<?php echo $module->id; ?>">
<?php $link = 'index.php?option=com_modules&client_id=0&task=module.edit&id=' . $module->id . '&tmpl=component&view=module&layout=modal'; ?>
<a class="modal" href="<?php echo $link;?>" rel="{handler: 'iframe', size: {x: 900, y: 550}}" title="<?php echo JText::_('COM_MENUS_EDIT_MODULE_SETTINGS');?>" id="title-<?php echo $module->id; ?>">
<?php echo $this->escape($module->title); ?></a>
</td>
<td id="access-<?php echo $module->id; ?>">
<?php echo $this->escape($module->access_title); ?>
</td>
<td id="position-<?php echo $module->id; ?>">
<?php echo $this->escape($module->position); ?>
</td>
<td id="menus-<?php echo $module->id; ?>">
<?php if (is_null($module->menuid)) : ?>
<?php if ($module->except):?>
<span class="label label-success">
<?php echo JText::_('JYES'); ?>
</span>
<?php else : ?>
<span class="label label-important">
<?php echo JText::_('JNO'); ?>
</span>
<?php endif;?>
<?php elseif ($module->menuid > 0) : ?>
<span class="label label-success">
<?php echo JText::_('JYES'); ?>
</span>
<?php elseif ($module->menuid < 0) : ?>
<span class="label label-important">
<?php echo JText::_('JNO'); ?>
</span>
<?php else : ?>
<span class="label label-info">
<?php echo JText::_('JALL'); ?>
</span>
<?php endif; ?>
</td>
</tr>
<?php endforeach; ?>
</tbody>
</table>