?
Path : /home/admin/public_html/old/administrator/components/com_menus/views/items/tmpl/ |
Current File : /home/admin/public_html/old/administrator/components/com_menus/views/items/tmpl/default_batch.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 * * @deprecated 3.4 Use default_batch_body and default_batch_footer */ defined('_JEXEC') or die; $options = array( JHtml::_('select.option', 'c', JText::_('JLIB_HTML_BATCH_COPY')), JHtml::_('select.option', 'm', JText::_('JLIB_HTML_BATCH_MOVE')) ); $published = $this->state->get('filter.published'); ?> <div class="modal hide fade" id="collapseModal"> <div class="modal-header"> <button type="button" class="close" data-dismiss="modal">×</button> <h3><?php echo JText::_('COM_MENUS_BATCH_OPTIONS'); ?></h3> </div> <div class="modal-body modal-batch"> <p><?php echo JText::_('COM_MENUS_BATCH_TIP'); ?></p> <div class="row-fluid"> <div class="control-group span6"> <div class="controls"> <?php echo JHtml::_('batch.language'); ?> </div> </div> <div class="control-group span6"> <div class="controls"> <?php echo JHtml::_('batch.access'); ?> </div> </div> </div> <div class="row-fluid"> <?php if ($published >= 0) : ?> <div id="batch-choose-action" class="combo control-group"> <label id="batch-choose-action-lbl" class="control-label" for="batch-choose-action"> <?php echo JText::_('COM_MENUS_BATCH_MENU_LABEL'); ?> </label> <div class="controls"> <select name="batch[menu_id]" id="batch-menu-id"> <option value=""><?php echo JText::_('JSELECT') ?></option> <?php echo JHtml::_('select.options', JHtml::_('menu.menuitems', array('published' => $published))); ?> </select> </div> </div> <div id="batch-copy-move" class="control-group radio"> <?php echo JHtml::_('select.radiolist', $options, 'batch[move_copy]', '', 'value', 'text', 'm'); ?> </div> <?php endif; ?> </div> </div> <div class="modal-footer"> <button class="btn" type="button" onclick="document.getElementById('batch-menu-id').value='';document.getElementById('batch-access').value='';document.getElementById('batch-language-id').value=''" data-dismiss="modal"> <?php echo JText::_('JCANCEL'); ?> </button> <button class="btn btn-primary" type="submit" onclick="Joomla.submitbutton('item.batch');"> <?php echo JText::_('JGLOBAL_BATCH_PROCESS'); ?> </button> </div> </div>