Back to CategoryNode class

Method getParams

public \Joomla\Registry\Registry
getParams
()
Returns the category parameters
Returns
  • \Joomla\Registry\Registry
Since
  • 1.6
Class: CategoryNode
Project: Joomla

Method getParams - Source code

/**
 * Returns the category parameters
 *
 * @return  Registry
 *
 * @since   1.6
 */
public function getParams()
{
    if (!$this->params instanceof Registry) {
        $this->params = new Registry($this->params);
    }
    return $this->params;
}