ExtensionInstaller

Base class for different extension installers.

All extension have this in common:

  • Upload ZIP file or grab files from web (e.g. git repo)
  • Read config.xml
  • If config.xml is valid and the extension compatible with current version of LimeSurvey, then -- Copy files to correct folder (depends on extension type) -- Insert database row (depends on extension type)
since 2018-09-24
author

LimeSurvey GmbH

package

Default

Methods

When installation procedure was not completed, abort changes.

abort(): void

Order the file fetcher to fetch files.

fetchFiles(): void
Throws
\Exception

Get the configuration from temp dir.

getConfig(): \ExtensionConfig|null

Before an extension is installed, we need to read the config file. That's why the extension if fetched into a temp folder first.

Response

\ExtensionConfig|null

Install extension, which includes moving files from temp dir to final dir, and creating the necessary database changes.

install(): void
abstract

setFileFetcher

setFileFetcher(\LimeSurvey\ExtensionInstaller\FileFetcher $fileFetcher): void

Uninstall the extension.

uninstall(): void
abstract

Update extension.

update(): void
abstract

Properties

Class responsible for fetching files from source.

fileFetcher :\LimeSurvey\ExtensionInstaller\FileFetcher