Joomla CMS  3.10.11 (avec JPlatform 13.1 inclus)
Documentation des API du CMS Joomla en version 3.10.11 et du framework Joomla Platform intégré
Référence de la classe Installer
+ Graphe d'héritage de Installer:

Fonctions membres publiques

 __construct ($basepath=__DIR__, $classprefix='\\Joomla\\CMS\\Installer\\Adapter', $adapterfolder='Adapter')
 
 isOverwrite ()
 
 setOverwrite ($state=false)
 
 getRedirectUrl ()
 
 setRedirectUrl ($newurl)
 
 isPackageUninstall ()
 
 setPackageUninstall ($uninstall)
 
 isUpgrade ()
 
 setUpgrade ($state=false)
 
 getManifest ()
 
 getPath ($name, $default=null)
 
 setPath ($name, $value)
 
 pushStep ($step)
 
 abort ($msg=null, $type=null)
 
 install ($path=null)
 
 discover_install ($eid=null)
 
 discover ()
 
 update ($path=null)
 
 uninstall ($type, $identifier, $cid=0)
 
 refreshManifestCache ($eid)
 
 setupInstall ($route='install', $returnAdapter=false)
 
 parseQueries (\SimpleXMLElement $element)
 
 parseSQLFiles ($element)
 
 setSchemaVersion (\SimpleXMLElement $schema, $eid)
 
 parseSchemaUpdates (\SimpleXMLElement $schema, $eid)
 
 parseFiles (\SimpleXMLElement $element, $cid=0, $oldFiles=null, $oldMD5=null)
 
 parseLanguages (\SimpleXMLElement $element, $cid=0)
 
 parseMedia (\SimpleXMLElement $element, $cid=0)
 
 getParams ()
 
 copyFiles ($files, $overwrite=null)
 
 removeFiles ($element, $cid=0)
 
 copyManifest ($cid=1)
 
 findManifest ()
 
 isManifest ($file)
 
 generateManifestCache ()
 
 cleanDiscoveredExtension ($type, $element, $folder='', $client=0)
 
 findDeletedFiles ($oldFiles, $newFiles)
 
 loadMD5Sum ($filename)
 
 getAdapter ($name, $options=array())
 
 getAdapters ($options=array(), array $custom=array())
 
 loadAdapter ($adapter, $options=array())
 
 loadAllAdapters ($options=array())
 

Fonctions membres publiques statiques

static getInstance ($basepath=__DIR__, $classprefix='\\Joomla\\CMS\\Installer\\Adapter', $adapterfolder='Adapter')
 
static parseXMLInstallFile ($path)
 

Champs de données

 $manifestClass = null
 
 $extension = null
 
 $message = null
 
 $manifest = null
 
 $extraQuery = ''
 

Attributs protégés

 $paths = array()
 
 $upgrade = null
 
 $overwrite = false
 
 $stepStack = array()
 
 $extension_message = null
 
 $redirect_url = null
 
 $packageUninstall = false
 

Attributs protégés statiques

static $instance
 
static $instances
 

Description détaillée

Joomla base installer class

Depuis
3.1

Documentation des constructeurs et destructeur

◆ __construct()

__construct (   $basepath = __DIR__,
  $classprefix = '\\Joomla\\CMS\\Installer\\Adapter',
  $adapterfolder = 'Adapter' 
)

Constructor

Paramètres
string$basepathBase Path of the adapters
string$classprefixClass prefix of adapters
string$adapterfolderName of folder to append to base path
Depuis
3.1

Références extension, et Table\getInstance().

Documentation des fonctions membres

◆ abort()

abort (   $msg = null,
  $type = null 
)

Installation abort method

Paramètres
string$msgAbort message from the installer
string$typePackage type if defined
Renvoie
boolean True if successful
Depuis
3.1

Références $db, $query, $step, $type, et null.

◆ cleanDiscoveredExtension()

cleanDiscoveredExtension (   $type,
  $element,
  $folder = '',
  $client = 0 
)

Cleans up discovered extensions if they're being installed some other way

Paramètres
string$typeThe type of extension (component, etc)
string$elementUnique element identifier (e.g. com_content)
string$folderThe folder of the extension (plugins; e.g. system)
integer$clientThe client application (administrator or site)
Renvoie
object Result of query
Depuis
3.1

Références $client, $db, $folder, $query, et $type.

◆ copyFiles()

copyFiles (   $files,
  $overwrite = null 
)

Copyfiles

Copy files from source directory to the target directory

Paramètres
array$filesArray with filenames
boolean$overwriteTrue if existing files can be replaced
Renvoie
boolean True on success
Depuis
3.1

Références $file, $files, $step, elseif, et null.

◆ copyManifest()

copyManifest (   $cid = 1)

Copies the installation manifest file to the extension folder in the given client

Paramètres
integer$cidWhere to copy the installfile [optional: defaults to 1 (admin)]
Renvoie
boolean True on success, False on error
Depuis
3.1

Références $client, $path, et ApplicationHelper\getClientInfo().

◆ discover()

discover ( )

Extension discover method

Asks each adapter to find extensions

Renvoie
InstallerExtension[]
Depuis
3.1

Références $results, et $tmp.

◆ discover_install()

discover_install (   $eid = null)

Discovered package installation method

Paramètres
integer$eidExtension ID
Renvoie
boolean True if successful
Depuis
3.1

Références $dispatcher, $params, $type, extension, JEventDispatcher\getInstance(), PluginHelper\importPlugin(), et null.

◆ findDeletedFiles()

findDeletedFiles (   $oldFiles,
  $newFiles 
)

Compares two "files" entries to find deleted files/folders

Paramètres
array$oldFilesAn array of objects that are the old files
array$newFilesAn array of objects that are the new files
Renvoie
array An array with the delete files and folders in findDeletedFiles[files] and findDeletedFiles[folders] respectively
Depuis
3.1

Références $file, et $files.

◆ findManifest()

findManifest ( )

Tries to find the package manifest file

Renvoie
boolean True on success, False on error
Depuis
3.1

Références $file, $manifest, et null.

◆ generateManifestCache()

generateManifestCache ( )

Generates a manifest cache

Renvoie
string serialised manifest data
Depuis
3.1

Références json_encode.

◆ getAdapter()

getAdapter (   $name,
  $options = array() 
)

Fetches an adapter and adds it to the internal storage if an instance is not set while also ensuring its a valid adapter name

Paramètres
string$nameName of adapter to return
array$optionsAdapter options
Renvoie
InstallerAdapter
Depuis
3.4
Obsolète:
4.0 The internal adapter cache will no longer be supported, use loadAdapter() to fetch an adapter instance

Références $name, et $options.

◆ getAdapters()

getAdapters (   $options = array(),
array  $custom = array() 
)

Gets a list of available install adapters.

Paramètres
array$optionsAn array of options to inject into the adapter
array$customArray of custom install adapters
Renvoie
array An array of available install adapters.
Depuis
3.4
Note
As of 4.0, this method will only return the names of available adapters and will not instantiate them and store to the $_adapters class var.

Références $class, $file, $files, $name, $options, et JLoader\register().

◆ getInstance()

static getInstance (   $basepath = __DIR__,
  $classprefix = '\\Joomla\\CMS\\Installer\\Adapter',
  $adapterfolder = 'Adapter' 
)
static

Returns the global Installer object, only creating it if it doesn't already exist.

Paramètres
string$basepathBase Path of the adapters
string$classprefixClass prefix of adapters
string$adapterfolderName of folder to append to base path
Renvoie
Installer An installer object
Depuis
3.1

◆ getManifest()

getManifest ( )

Get the installation manifest object

Renvoie
Manifest object
Depuis
3.1

Références $manifest.

◆ getParams()

getParams ( )

Method to parse the parameters of an extension, build the JSON string for its default parameters, and return the JSON string.

Renvoie
string JSON string of parameter values
Depuis
3.1
Note
This method must always return a JSON compliant string

Références $field, $fieldsets, $name, $value, json_encode, et null.

◆ getPath()

getPath (   $name,
  $default = null 
)

Get an installer path by name

Paramètres
string$namePath name
string$defaultDefault value
Renvoie
string Path
Depuis
3.1

Références $default, et $name.

◆ getRedirectUrl()

getRedirectUrl ( )

Get the redirect location

Renvoie
string Redirect location (or null)
Depuis
3.1

◆ install()

install (   $path = null)

Package installation method

Paramètres
string$pathPath to package source folder
Renvoie
boolean True if successful
Depuis
3.1

Références $dispatcher, $manifest, $path, JEventDispatcher\getInstance(), et PluginHelper\importPlugin().

Référencé par PackageAdapter\copyBaseFiles().

◆ isManifest()

isManifest (   $file)

Is the XML file a valid Joomla installation manifest file.

Paramètres
string$fileAn xmlfile path to check
Renvoie
|null A , or null if the file failed to parse
Depuis
3.1

Références $file.

◆ isOverwrite()

isOverwrite ( )

Get the allow overwrite switch

Renvoie
boolean Allow overwrite switch
Depuis
3.1

◆ isPackageUninstall()

isPackageUninstall ( )

Get whether this installer is uninstalling extensions which are part of a package

Renvoie
boolean
Depuis
3.7.0

◆ isUpgrade()

isUpgrade ( )

Get the upgrade switch

Renvoie
boolean
Depuis
3.1

◆ loadAdapter()

loadAdapter (   $adapter,
  $options = array() 
)

Method to load an adapter instance

Paramètres
string$adapterAdapter name
array$optionsAdapter options
Renvoie
InstallerAdapter
Depuis
3.4
Exceptions

Références $class, $options, $path, et JLoader\register().

◆ loadAllAdapters()

loadAllAdapters (   $options = array())

Loads all adapters.

Paramètres
array$optionsAdapter options
Renvoie
void
Depuis
3.4
Obsolète:
4.0 Individual adapters should be instantiated as needed
Note
This method is serving as a proxy of the legacy API into the preferred API

Références $options.

◆ loadMD5Sum()

loadMD5Sum (   $filename)

Loads an MD5SUMS file into an associative array

Paramètres
string$filenameFilename to load
Renvoie
array Associative array with filenames as the index and the MD5 as the value
Depuis
3.1

Références $data, $results, et $row.

◆ parseFiles()

parseFiles ( \SimpleXMLElement  $element,
  $cid = 0,
  $oldFiles = null,
  $oldMD5 = null 
)

Method to parse through a files element of the installation manifest and take appropriate action.

Paramètres
\SimpleXMLElement$elementThe XML node to process
integer$cidApplication ID of application to install to
array$oldFilesList of old files (SimpleXMLElement's)
array$oldMD5List of old MD5 sums (indexed by filename with value as MD5)
Renvoie
boolean True on success
Depuis
3.1

Références $client, $file, $folder, $path, et ApplicationHelper\getClientInfo().

◆ parseLanguages()

parseLanguages ( \SimpleXMLElement  $element,
  $cid = 0 
)

Method to parse through a languages element of the installation manifest and take appropriate action.

Paramètres
\SimpleXMLElement$elementThe XML node to process
integer$cidApplication ID of application to install to
Renvoie
boolean True on success
Depuis
3.1

Références $client, $file, $folder, $path, et ApplicationHelper\getClientInfo().

◆ parseMedia()

parseMedia ( \SimpleXMLElement  $element,
  $cid = 0 
)

Method to parse through a media element of the installation manifest and take appropriate action.

Paramètres
\SimpleXMLElement$elementThe XML node to process
integer$cidApplication ID of application to install to
Renvoie
boolean True on success
Depuis
3.1

Références $file, $folder, $path, JPATH_ROOT, et null.

◆ parseQueries()

parseQueries ( \SimpleXMLElement  $element)

Backward compatible method to parse through a queries element of the installation manifest file and take appropriate action.

Paramètres
\SimpleXMLElement$elementThe XML node to process
Renvoie
mixed Number of queries processed or False on error
Depuis
3.1

Références $db, et $query.

◆ parseSchemaUpdates()

parseSchemaUpdates ( \SimpleXMLElement  $schema,
  $eid 
)

Method to process the updates for an item

Paramètres
\SimpleXMLElement$schemaThe XML node to process
integer$eidExtension Identifier
Renvoie
boolean Result of the operations
Depuis
3.1

Références $buffer, $db, $file, $files, $query, $version, elseif, et JDatabaseDriver\splitSql().

◆ parseSQLFiles()

parseSQLFiles (   $element)

Method to extract the name of a discreet installation sql file from the installation manifest file.

Paramètres
object$elementThe XML node to process
Renvoie
mixed Number of queries processed or False on error
Depuis
3.1

Références $buffer, $db, $file, $query, elseif, et JDatabaseDriver\splitSql().

◆ parseXMLInstallFile()

◆ pushStep()

pushStep (   $step)

Pushes a step onto the installer stack for rolling back steps

Paramètres
array$stepInstaller step
Renvoie
void
Depuis
3.1

Références $step.

◆ refreshManifestCache()

refreshManifestCache (   $eid)

Refreshes the manifest cache stored in #__extensions

Paramètres
integer$eidExtension ID
Renvoie
boolean
Depuis
3.1

Références extension.

◆ removeFiles()

removeFiles (   $element,
  $cid = 0 
)

Method to parse through a files element of the installation manifest and remove the files that were installed

Paramètres
object$elementThe XML node to process
integer$cidApplication ID of application to remove from
Renvoie
boolean True on success
Depuis
3.1

Références $client, $file, $files, $folder, $path, ApplicationHelper\getClientInfo(), et null.

◆ setOverwrite()

setOverwrite (   $state = false)

Set the allow overwrite switch

Paramètres
boolean$stateOverwrite switch state
Renvoie
boolean True it state is set, false if it is not
Depuis
3.1

Références $state, et $tmp.

◆ setPackageUninstall()

setPackageUninstall (   $uninstall)

Set whether this installer is uninstalling extensions which are part of a package

Paramètres
boolean$uninstallTrue if a package triggered the uninstall, false otherwise
Renvoie
void
Depuis
3.7.0

Référencé par LibraryAdapter\checkExtensionInFilesystem(), et PackageAdapter\uninstall().

◆ setPath()

setPath (   $name,
  $value 
)

Sets an installer path by name

Paramètres
string$namePath name
string$valuePath
Renvoie
void
Depuis
3.1

Références $name, et $value.

Référencé par PluginAdapter\createExtensionRoot(), et ComponentAdapter\setupUpdates().

◆ setRedirectUrl()

setRedirectUrl (   $newurl)

Set the redirect location

Paramètres
string$newurlNew redirect location
Renvoie
void
Depuis
3.1

◆ setSchemaVersion()

setSchemaVersion ( \SimpleXMLElement  $schema,
  $eid 
)

Set the schema version for an extension by looking at its latest update

Paramètres
\SimpleXMLElement$schemaSchema Tag
integer$eidExtension ID
Renvoie
void
Depuis
3.1

Références $db, $files, $query, et elseif.

◆ setUpgrade()

setUpgrade (   $state = false)

Set the upgrade switch

Paramètres
boolean$stateUpgrade switch state
Renvoie
boolean True if upgrade, false otherwise
Depuis
3.1

Références $state, et $tmp.

◆ setupInstall()

setupInstall (   $route = 'install',
  $returnAdapter = false 
)

Prepare for installation: this method sets the installation directory, finds and checks the installation file and verifies the installation type.

Paramètres
string$routeThe install route being followed
boolean$returnAdapterFlag to return the instantiated adapter
Renvoie
boolean|InstallerAdapter InstallerAdapter object if explicitly requested otherwise boolean
Depuis
3.1

Références $params, $route, et $type.

◆ uninstall()

uninstall (   $type,
  $identifier,
  $cid = 0 
)

Package uninstallation method

Paramètres
string$typePackage type
mixed$identifierPackage identifier for adapter
integer$cidApplication ID; deprecated in 1.6
Renvoie
boolean True if successful
Depuis
3.1

Références $dispatcher, $params, $type, extension, JEventDispatcher\getInstance(), et PluginHelper\importPlugin().

◆ update()

update (   $path = null)

Package update method

Paramètres
string$pathPath to package source folder
Renvoie
boolean True if successful
Depuis
3.1

Références $dispatcher, $manifest, $path, JEventDispatcher\getInstance(), et PluginHelper\importPlugin().

Documentation des champs

◆ $extension

◆ $extension_message

$extension_message = null
protected

◆ $extraQuery

$extraQuery = ''

◆ $instance

$instance
staticprotected

◆ $instances

$instances
staticprotected

◆ $manifest

$manifest = null

◆ $manifestClass

$manifestClass = null

◆ $message

$message = null

◆ $overwrite

$overwrite = false
protected

◆ $packageUninstall

$packageUninstall = false
protected

◆ $paths

$paths = array()
protected

◆ $redirect_url

$redirect_url = null
protected

◆ $stepStack

$stepStack = array()
protected

◆ $upgrade

$upgrade = null
protected

La documentation de cette classe a été générée à partir du fichier suivant :