\JInstallerAdapterLanguage
Language installer
Synopsis
class JInstallerAdapterLanguage
extends JAdapterInstance
{
- // members
- protected $core;
- // Inherited members from JAdapterInstance
- protected JAdapter $parent;
- protected JDatabaseDriver $db;
- // Inherited members from JObject
- protected $_errors;
- // methods
- public boolean install()
- protected boolean _install()
- public boolean update()
- public mixed uninstall()
- public boolean discover()
- public integer discover_install()
- public boolean refreshManifestCache()
- // Inherited methods from JAdapterInstance
- public void __construct()
- public JAdapter getParent()
- // 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
Tasks
Tasks
Line | Task |
---|---|
625 | remove code: $this->parent->extension->params = $this->parent->getParams(); |
Members
protected
- $_errors
—
array
An array of error messages or Exception objects. - $core
—
boolean
Core language pack flag - $db
—
JDatabaseDriver
Database - $parent
—
JAdapter
Parent
Methods
protected
- _install() — Install function that is designed to handle individual clients
public
- discover() — Custom discover method Finds language files
- discover_install() — Custom discover install method Basically updates the manifest cache and leaves everything alone
- install() — Custom install method
- refreshManifestCache() — Refreshes the extension table cache
- uninstall() — Custom uninstall method
- update() — Custom update method
Inherited from JAdapterInstance
public
- getParent() — Retrieves the parent object
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.