API16

JHtmlJGrid/publishedOptions

From Joomla! Documentation

< API16:JHtmlJGrid
Revision as of 21:57, 13 May 2013 by JoomlaWikiBot (talk | contribs) (removing red link to edit, no existant pages)

The "API16" namespace is an archived namespace. This page contains information for a Joomla! version which is no longer supported. It exists only as a historical reference, it will not be improved and its content may be incomplete and/or contain broken links.

Description[edit]

Returns an array of standard published state filter options.

[<! removed edit link to red link >]

<! removed transcluded page call, red link never existed >

Syntax[edit]

static publishedOptions()


Returns[edit]

string The HTML code for the select tag

Defined in[edit]

libraries/joomla/html/html/jgrid.php

Importing[edit]

jimport( 'joomla.html.html.jgrid' );

Source Body[edit]

public static function publishedOptions()
{
        // Build the active state filter options.
        $options        = array();
        $options[]      = JHtml::_('select.option', '1', 'JOption_Published');
        $options[]      = JHtml::_('select.option', '0', 'JOption_Unpublished');
        $options[]      = JHtml::_('select.option', '-2', 'JOption_Trash');
        $options[]      = JHtml::_('select.option', '*', 'JOption_All');

        return $options;
}

[<! removed edit link to red link >] <! removed transcluded page call, red link never existed >

Examples[edit]

<CodeExamplesForm />