API15:JInstaller/setupInstall
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
Prepare for installation: this method sets the installation directory, finds and checks the installation file and verifies the installation type
Description:JInstaller/setupInstall
Syntax
setupInstall()
Returns
boolean True on success
Defined in
libraries/joomla/installer/installer.php
Importing
jimport( 'joomla.installer.installer' );
Source Body
function setupInstall() { // We need to find the installation manifest file if (!$this->_findManifest()) { return false; } // Load the adapter(s) for the install manifest $root =& $this->_manifest->document; $type = $root->attributes('type'); // Needed for legacy reasons ... to be deprecated in next minor release if ($type == 'mambot') { $type = 'plugin'; } // Lazy load the adapter if (!isset($this->_adapters[$type]) || !is_object($this->_adapters[$type])) { if (!$this->setAdapter($type)) { return false; } } return true; }
[Edit See Also] SeeAlso:JInstaller/setupInstall
Examples
<CodeExamplesForm />
