Adapter
Extends CMSObjectAdapter Class Retains common adapter pattern functions Class harvested from joomla.installer.installer
since |
1.6 |
---|---|
deprecated |
5.0 Will be removed without replacement |
package |
Joomla CMS |
Methods
__construct
Class constructor, overridden in descendant classes.
__construct(mixed properties = null) : mixed
since |
1.7.0 |
---|
Arguments
- properties
mixed
Either and associative array or another object to set the initial properties of the object.
Response
mixed
__toString
Magic method to convert the object to a string gracefully.
__toString() : string
since |
1.7.0 |
---|---|
deprecated |
3.1.4 Classes should provide their own __toString() implementation. |
Response
string
The classname.
def
Sets a default value if not already assigned
def(string property, mixed default = null) : mixed
since |
1.7.0 |
---|
Arguments
- property
string
The name of the property.- default
mixed
The default value.
Response
mixed
get
Returns a property of the object or the default value if the property is not set.
get(string property, mixed default = null) : mixed
since |
1.7.0 |
---|---|
see | CMSObject::getProperties() |
Arguments
- property
string
The name of the property.- default
mixed
The default value.
Response
mixed
The value of the property.
getAdapter
Return an adapter.
getAdapter(string name, array options = array()) : static|bool
since |
1.6 |
---|
Arguments
- name
string
Name of adapter to return- options
array
Adapter options
Response
static|bool
Adapter of type 'name' or false
getDbo
Get the database connector object
getDbo() : \Joomla\Database\DatabaseDriver
since |
1.6 |
---|
Response
\Joomla\Database\DatabaseDriver
Database connector object
getError
Get the most recent error message.
getError(int i = null, bool toString = true) : string
since |
1.7.0 |
---|---|
deprecated |
3.1.4 JError has been deprecated |
Arguments
- i
int
Option error index.- toString
bool
Indicates if Exception objects should return their error message.
Response
string
Error message
getErrors
Return all errors, if any.
getErrors() : array
since |
1.7.0 |
---|---|
deprecated |
3.1.4 JError has been deprecated |
Response
array
Array of error messages.
getProperties
Returns an associative array of object properties.
getProperties(bool public = true) : array
since |
1.7.0 |
---|---|
see | CMSObject::get() |
Arguments
- public
bool
If true, returns only the public properties.
Response
array
loadAllAdapters
Loads all adapters.
loadAllAdapters(array options = array()) : void
since |
1.6 |
---|
Arguments
- options
array
Adapter options
set
Modifies a property of the object, creating it if it does not already exist.
set(string property, mixed value = null) : mixed
since |
1.7.0 |
---|
Arguments
- property
string
The name of the property.- value
mixed
The value of the property to set.
Response
mixed
Previous value of the property.
setAdapter
Set an adapter by name
setAdapter(string name, object &adapter = null, array options = array()) : bool
since |
1.6 |
---|
Arguments
- name
string
Adapter name- adapter
object
Adapter object- options
array
Adapter options
Response
bool
True if successful
setError
Add an error message.
setError(string error) : void
since |
1.7.0 |
---|---|
deprecated |
3.1.4 JError has been deprecated |
Arguments
- error
string
Error message.
setProperties
Set the object properties based on a named array/hash.
setProperties(mixed properties) : bool
since |
1.7.0 |
---|---|
see | CMSObject::set() |
Arguments
- properties
mixed
Either an associative array or another object.
Response
bool
Properties
_db
Database Connector Object
since |
1.6 |
---|
Type(s)
\Joomla\Database\DatabaseDriver
_errors
An array of error messages or Exception objects.