\JInstallerExtension
Extension object
Synopsis
class JInstallerExtension
extends JObject
{
- // members
- public $filename;
- public $type;
- public $id;
- public $published;
- public $client;
- public $group;
- public $manifest_cache;
- public $params;
- // Inherited members from JObject
- protected $_errors;
- // methods
- public void __construct()
- // Inherited methods from JObject
- public void __construct()
- public string __toString()
- public mixed def()
- public mixed get()
- public array getProperties()
- public string getError()
- public array getErrors()
- public mixed set()
- public boolean setProperties()
- public void setError()
Hierarchy
Members
protected
- $_errors
—
array
An array of error messages or Exception objects.
public
- $client
—
string
String representation of client. Valid for modules, templates and languages. - $filename
—
string
Filename of the extension - $group
—
string
The group name of the plugin. Not used for other known extension types (only plugins) - $id
—
string
Unique Identifier for the extension - $manifest_cache
—
An object representation of the manifest file stored metadata - $params
—
An object representation of the extension params - $published
—
boolean
The status of the extension - $type
—
string
Type of the extension
Methods
Inherited from JObject
public
- __toString() — Magic method to convert the object to a string gracefully.
- def() — Sets a default value if not alreay assigned
- get() — Returns a property of the object or the default value if the property is not set.
- getError() — Get the most recent error message.
- getErrors() — Return all errors, if any.
- getProperties() — Returns an associative array of object properties.
- set() — Modifies a property of the object, creating it if it does not already exist.
- setError() — Add an error message.
- setProperties() — Set the object properties based on a named array/hash.