芝麻web文件管理V1.00
编辑当前文件:/home/asmplong/www/ancien-site-2019/site/libraries/joomla/html/html/batch.php
', JText::_('JLIB_HTML_BATCH_ACCESS_LABEL'), '', JHtml::_('access.assetgrouplist', 'batch[assetgroup_id]', '', 'class="inputbox"', array('title' => JText::_('JLIB_HTML_BATCH_NOCHANGE'), 'id' => 'batch-access')) ); return implode("\n", $lines); } /** * Displays a batch widget for moving or copying items. * * @param string $extension The extension that owns the category. * @param string $published The published state of categories to be shown in the list. * * @return string The necessary HTML for the widget. * @since 11.1 */ public static function item($extension, $published) { // Create the copy/move options. $options = array( JHtml::_('select.option', 'c', JText::_('JLIB_HTML_BATCH_COPY')), JHtml::_('select.option', 'm', JText::_('JLIB_HTML_BATCH_MOVE')) ); // Create the batch selector to change select the category by which to move or copy. $lines = array( '
', JText::_('JLIB_HTML_BATCH_MENU_LABEL'), '
', '
', '
', '
'.JText::_('JSELECT').'
', JHtml::_('select.options', JHtml::_('category.options', $extension, array('published' => (int) $published))), '
', JHTML::_( 'select.radiolist', $options, 'batch[move_copy]', '', 'value', 'text', 'm'), '
' ); return implode("\n", $lines); } }