AAAAhome/academiac/www/libraries/joomla/html/html/batch.php000064400000010133151372741120017147 0ustar00', 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 11.1 */ 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. $lines = array('', '
', '', JHtml::_('select.radiolist', $options, 'batch[move_copy]', '', 'value', 'text', 'm'), '
'); return implode("\n", $lines); } /** * Display a batch widget for the language selector. * * @return string The necessary HTML for the widget. * * @since 11.3 */ public static function language() { // Create the batch selector to change the language on a selection list. $lines = array( '', '' ); return implode("\n", $lines); } /** * 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 11.4 */ public static function user($noUser = true) { $optionNo = ''; if ($noUser) { $optionNo = ''; } // Create the batch selector to select a user on a selection list. $lines = array( '', '' ); return implode("\n", $lines); } }