Back to ActionsDropdown class

Method unfeature

public static void
unfeature
(mixed $id, mixed $prefix = '')
Append an unfeature item to the current dropdown menu
Parameters
  • string $id ID of corresponding checkbox of the record
  • string $prefix The task prefix
Returns
  • void
Since
  • 3.2

Method unfeature - Source code

/**
 * Append an unfeature item to the current dropdown menu
 *
 * @param   string  $id      ID of corresponding checkbox of the record
 * @param   string  $prefix  The task prefix
 *
 * @return  void
 *
 * @since   3.2
 */
public static function unfeature($id, $prefix = '')
{
    $task = ($prefix ? $prefix . '.' : '') . 'unfeatured';
    static::addCustomItem(Text::_('JUNFEATURE'), 'unfeatured', $id, $task);
}