API15

JHTMLSelect/optgroup

From Joomla! Documentation

< API15:JHTMLSelect

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]

optgroup($text, $value_name= 'value', $text_name= 'text')
Parameter Name Default Value Description
$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

Returns[edit]

object

Defined in[edit]

libraries/joomla/html/html/select.php

Importing[edit]

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

Source Body[edit]

function optgroup( $text, $value_name = 'value', $text_name = 'text' )
{
        $obj = new stdClass;
        $obj->$value_name       = '<OPTGROUP>';
        $obj->$text_name        = $text;
        return $obj;
}

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

Examples[edit]

Code Examples[edit]