API15

JCategories/getInstance

From Joomla! Documentation

< API15:JCategories
Revision as of 16:52, 22 March 2010 by Doxiki (talk | contribs) (New page: ===Description=== Returns a reference to a JCategories object <span class="editsection" style="font-size:76%;"> <nowiki>[</nowiki>[[Description:JCategories/getInstance|Edit Descripton...)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

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.

Description[edit]

Returns a reference to a JCategories object

[Edit Descripton]

Template:Description:JCategories/getInstance

Syntax[edit]

static getInstance($extension, $options=array())
Parameter Name Default Value Description
$extension Name of the categories extension
$options array() An array of options

Returns[edit]

object

Defined in[edit]

libraries/joomla/application/categories.php

Importing[edit]

jimport( 'joomla.application.categories' );

Source Body[edit]

public static function getInstance($extension, $options = array())
{
        if (isset(self::$instances[$extension]))
        {
                return self::$instances[$extension];
        }
        $classname = ucfirst(substr($extension,4)).'Categories';
        if (!class_exists($classname))
        {
                $path = JPATH_SITE.DS.'components'.DS.$extension.DS.'helpers'.DS.'category.php';
                if (is_file($path))
                {
                        require_once $path;
                } else {
                        return false;
                }
        }
        self::$instances[$extension] = new $classname($options);
        return self::$instances[$extension];
}

[Edit See Also] Template:SeeAlso:JCategories/getInstance

Examples[edit]

<CodeExamplesForm />