API16:JCategories/ construct
From Joomla! Documentation
This Namespace has been archived - Please Do Not Edit or Create Pages in this namespace. Pages contain information for a Joomla! version which is no longer supported. It exists only as a historical reference, will not be improved and its content may be incomplete.
Contents |
Description
Class constructor
Description:JCategories/ construct
Syntax
__construct($options)
| Parameter Name | Default Value | Description |
|---|---|---|
| $options |
Returns
boolean True on success
Defined in
libraries/joomla/application/categories.php
Importing
jimport( 'joomla.application.categories' );
Source Body
public function __construct($options) { $this->_extension = $options['extension']; $this->_table = $options['table']; $this->_field = (isset($options['field'])&&$options['field'])?$options['field']:'catid'; $this->_key = (isset($options['key'])&&$options['key'])?$options['key']:'id'; $this->_options = $options; return true; }
[Edit See Also] SeeAlso:JCategories/ construct
Examples
<CodeExamplesForm />
