API16

JHtml/unregister

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]

Removes a key for a method from registry.


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

Syntax[edit]

static unregister($key)
Parameter Name Default Value Description
$key The name of the key

Defined in[edit]

libraries/joomla/html/html.php

Importing[edit]

jimport( 'joomla.html.html' );

Source Body[edit]

public static function unregister($key)
{
        $key = strtolower($key);
        if (isset(self::$registry[$key])) {
                unset(self::$registry[$key]);
                return true;
        }

        return false;
}


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

Examples[edit]

Code Examples[edit]