API16

API16:JHtmlJGrid/publishedOptions

From Joomla! Documentation

Revision as of 22:51, 22 March 2010 by Doxiki (talk | contribs) (New page: ===Description=== Returns an array of standard published state filter options. <span class="editsection" style="font-size:76%;"> <nowiki>[</nowiki>[[Description:JHtmlJGrid/publishedOp...)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Description

Returns an array of standard published state filter options.

[Edit Descripton]

Template:Description:JHtmlJGrid/publishedOptions

Syntax

static publishedOptions()


Returns

string The HTML code for the select tag

Defined in

libraries/joomla/html/html/jgrid.php

Importing

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

Source Body

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;
}

[Edit See Also] Template:SeeAlso:JHtmlJGrid/publishedOptions

Examples

<CodeExamplesForm />