Base class implements ways of fetching information about the installed eZ Components when installed as tarball.
Source for this file: /Base/src/metadata/tarball.php
Version: | //autogentag// |
public ezcBaseMetaDataTarballReader |
__construct(
)
Creates the reader object and opens the release-info file. |
public string |
getBundleVersion(
)
Returns the version string for the installed eZ Components bundle. |
public array(string=>string). |
getComponentDependencies(
[ $componentName
= null] )
Returns a list of components that $componentName depends on. |
public string |
getComponentVersion(
$componentName
)
Returns the version string of the available $componentName or false when the component is not installed. |
public string |
getRequiredPhpVersion(
)
Returns a PHP version string that describes the required PHP version for this installed eZ Components bundle. |
public bool |
isComponentInstalled(
$componentName
)
Returns whether $componentName is installed |
Creates the reader object and opens the release-info file.
Returns the version string for the installed eZ Components bundle.
A version string such as "2008.2.2" is returned.
Returns a list of components that $componentName depends on.
If $componentName is left empty, all installed components are returned.
The returned array has as keys the component names, and as values the version of the components. It returns null of the $componentName is not found.
Name | Type | Description |
---|---|---|
$componentName |
Returns the version string of the available $componentName or false when the component is not installed.
Name | Type | Description |
---|---|---|
$componentName |
Returns a PHP version string that describes the required PHP version for this installed eZ Components bundle.
Returns whether $componentName is installed
Returns true for every component that exists (because all of them are then available).
Name | Type | Description |
---|---|---|
$componentName |