API16

JHtml/setFormatOptions

From Joomla! Documentation

< API16:JHtml

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]

Set format related options.


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

Syntax[edit]

static setFormatOptions($options)
Parameter Name Default Value Description
$options Option key/value pairs.

Defined in[edit]

libraries/joomla/html/html.php

Importing[edit]

jimport( 'joomla.html.html' );

Source Body[edit]

public static function setFormatOptions($options)
{
        foreach ($options as $key => $val) {
                if (isset(self::$formatOptions[$key])) {
                        self::$formatOptions[$key] = $val;
                }
        }
}


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

Examples[edit]

Code Examples[edit]