API16:JAdapter/setAdapter
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
Set an adapter by name
[<! removed edit link to red link >]
<! removed transcluded page call, red link never existed >
Syntax
setAdapter($name, &$adapter=null)
| Parameter Name | Default Value | Description |
|---|---|---|
| $name | $name Adapter name | |
| &$adapter | null | $adapter Adapter object |
Returns
boolean True if successful
Defined in
libraries/joomla/base/adapter.php
Importing
jimport( 'joomla.base.adapter' );
Source Body
public function setAdapter($name, &$adapter = null) { if (!is_object($adapter)) { // Try to load the adapter object require_once $this->_basepath.DS.$this->_adapterfolder.DS.strtolower($name).'.php'; $class = $this->_classprefix.ucfirst($name); if (!class_exists($class)) { return false; } $adapter = new $class($this, $this->_db); } $this->_adapters[$name] =& $adapter; return true; }
[<! removed edit link to red link >] <! removed transcluded page call, red link never existed >
Examples
<CodeExamplesForm />
