';
}
/**
* 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
''
. '';
}
}