' . 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. * * @return string The necessary HTML for the widget. * * @since 1.7 */ public static function item($extension) { // 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. return '' . '
' . '' . '
' . '
' . JHtml::_('select.radiolist', $options, 'batch[move_copy]', '', 'value', 'text', 'm') . '

'; } /** * Display a batch widget for the language selector. * * @return string The necessary HTML for the widget. * * @since 2.5 */ public static function language() { JHtml::_('bootstrap.tooltip'); // Create the batch selector to change the language on a selection list. return '' . ''; } /** * Display a batch widget for the user selector. * * @param boolean $noUser Choose to display a "no user" option * * @return string The necessary HTML for the widget. * * @since 2.5 */ public static function user($noUser = true) { JHtml::_('bootstrap.tooltip'); $optionNo = ''; if ($noUser) { $optionNo = ''; } // Create the batch selector to select a user on a selection list. return '' . ''; } /** * Display a batch widget for the tag selector. * * @return string The necessary HTML for the widget. * * @since 3.1 */ public static function tag() { JHtml::_('bootstrap.tooltip'); // Create the batch selector to tag items on a selection list. return '' . ''; } }