API15

JHTMLSelect/option

From Joomla! Documentation

< API15:JHTMLSelect
Revision as of 13:31, 12 May 2013 by JoomlaWikiBot (talk | contribs) (removing red link to edit, no existant pages)

The "API15" 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.

[<! removed edit link to red link >]

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

Syntax[edit]

option($value, $text='', $value_name='value', $text_name='text', $disable=false)
Parameter Name Default Value Description
$value The value of the option
$text The text for the option
$value_name 'value' The returned object property name for the value
$text_name 'text' The returned object property name for the text
$disable false

Returns[edit]

object

Defined in[edit]

libraries/joomla/html/html/select.php

Importing[edit]

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

Source Body[edit]

function option( $value, $text='', $value_name='value', $text_name='text', $disable=false )
{
        $obj = new stdClass;
        $obj->$value_name       = $value;
        $obj->$text_name        = trim( $text ) ? $text : $value;
        $obj->disable           = $disable;
        return $obj;
}

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

Examples[edit]

<CodeExamplesForm />