API16:JAdapter/loadAllAdapters
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
Loads all adapters
[<! removed edit link to red link >]
<! removed transcluded page call, red link never existed >
Syntax
loadAllAdapters()
Defined in
libraries/joomla/base/adapter.php
Importing
jimport( 'joomla.base.adapter' );
Source Body
public function loadAllAdapters() { $list = JFolder::files($this->_basepath.DS.$this->_adapterfolder); foreach($list as $filename) { if(JFile::getExt($filename) == 'php') { // Try to load the adapter object require_once $this->_basepath.DS.$this->_adapterfolder.DS.$filename; $name = JFile::stripExt($filename); $class = $this->_classprefix.ucfirst($name); if (!class_exists($class)) { continue; // skip to next one } $adapter = new $class($this, $this->_db); $this->_adapters[$name] = clone $adapter; } } }
[<! removed edit link to red link >] <! removed transcluded page call, red link never existed >
Examples
<CodeExamplesForm />
