silverstripe-framework/src/Core/Manifest/ModuleLoader.php
2017-03-28 14:13:47 +13:00

89 lines
1.7 KiB
PHP

<?php
namespace SilverStripe\Core\Manifest;
/**
* Module manifest holder
*/
class ModuleLoader
{
/**
* @var self
*/
private static $instance;
/**
* @var ModuleManifest[] Module manifests
*/
protected $manifests = array();
/**
* @return self
*/
public static function instance()
{
return self::$instance ? self::$instance : self::$instance = new self();
}
/**
* Get module by name from the current manifest.
* Alias for ::instance()->getManifest()->getModule()
*
* @param string $module
* @return Module
*/
public static function getModule($module)
{
return static::instance()->getManifest()->getModule($module);
}
/**
* Returns the currently active class manifest instance that is used for
* loading classes.
*
* @return ModuleManifest
*/
public function getManifest()
{
return $this->manifests[count($this->manifests) - 1];
}
/**
* Returns true if this class loader has a manifest.
*
* @return bool
*/
public function hasManifest()
{
return (bool)$this->manifests;
}
/**
* Pushes a module manifest instance onto the top of the stack.
*
* @param ModuleManifest $manifest
*/
public function pushManifest(ModuleManifest $manifest)
{
$this->manifests[] = $manifest;
}
/**
* @return ModuleManifest
*/
public function popManifest()
{
return array_pop($this->manifests);
}
/**
* Check number of manifests
*
* @return int
*/
public function countManifests()
{
return count($this->manifests);
}
}