mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
0b1f297873
Conflicts: .travis.yml README.md admin/code/LeftAndMain.php admin/css/screen.css admin/scss/screen.scss api/RestfulService.php conf/ConfigureFromEnv.php control/injector/ServiceConfigurationLocator.php control/injector/SilverStripeServiceConfigurationLocator.php core/ClassInfo.php core/Object.php css/AssetUploadField.css css/ComplexTableField_popup.css dev/CSSContentParser.php dev/DevelopmentAdmin.php docs/en/changelogs/index.md docs/en/misc/contributing/code.md docs/en/reference/execution-pipeline.md filesystem/GD.php filesystem/ImagickBackend.php filesystem/Upload.php forms/Form.php forms/FormField.php forms/HtmlEditorConfig.php forms/gridfield/GridFieldDetailForm.php forms/gridfield/GridFieldSortableHeader.php lang/en.yml model/Aggregate.php model/DataList.php model/DataObject.php model/DataQuery.php model/Image.php model/MySQLDatabase.php model/SQLQuery.php model/fieldtypes/HTMLText.php model/fieldtypes/Text.php scss/AssetUploadField.scss search/filters/SearchFilter.php security/Authenticator.php security/LoginForm.php security/Member.php security/MemberAuthenticator.php security/MemberLoginForm.php security/Security.php tests/behat/features/bootstrap/SilverStripe/Framework/Test/Behaviour/CmsFormsContext.php tests/control/HTTPTest.php tests/control/RequestHandlingTest.php tests/filesystem/UploadTest.php tests/forms/FormTest.php tests/forms/NumericFieldTest.php tests/model/DataListTest.php tests/model/DataObjectTest.php tests/model/TextTest.php tests/security/MemberAuthenticatorTest.php tests/security/SecurityDefaultAdminTest.php tests/view/SSViewerCacheBlockTest.php tests/view/SSViewerTest.php
70 lines
1.9 KiB
PHP
70 lines
1.9 KiB
PHP
<?php
|
|
|
|
/**
|
|
* Use the SilverStripe configuration system to lookup config for a
|
|
* particular service.
|
|
*
|
|
* @package framework
|
|
* @subpackage injector
|
|
*/
|
|
class SilverStripeServiceConfigurationLocator extends ServiceConfigurationLocator {
|
|
|
|
/**
|
|
* List of Injector configurations cached from Config in class => config format.
|
|
* If any config is false, this denotes that this class and all its parents
|
|
* have no configuration specified.
|
|
*
|
|
* @var array
|
|
*/
|
|
protected $configs = array();
|
|
|
|
public function locateConfigFor($name) {
|
|
// Check direct or cached result
|
|
$config = $this->configFor($name);
|
|
if($config !== null) return $config;
|
|
|
|
// do parent lookup if it's a class
|
|
if (class_exists($name)) {
|
|
$parents = array_reverse(array_keys(ClassInfo::ancestry($name)));
|
|
array_shift($parents);
|
|
|
|
foreach ($parents as $parent) {
|
|
// have we already got for this?
|
|
$config = $this->configFor($parent);
|
|
if($config !== null) {
|
|
// Cache this result
|
|
$this->configs[$name] = $config;
|
|
return $config;
|
|
}
|
|
}
|
|
}
|
|
|
|
// there is no parent config, so we'll record that as false so we don't do the expensive
|
|
// lookup through parents again
|
|
$this->configs[$name] = false;
|
|
}
|
|
|
|
/**
|
|
* Retrieves the config for a named service without performing a hierarchy walk
|
|
*
|
|
* @param string $name Name of service
|
|
* @return mixed Returns either the configuration data, if there is any. A missing config is denoted
|
|
* by a value of either null (there is no direct config assigned and a hierarchy walk is necessary)
|
|
* or false (there is no config for this class, nor within the hierarchy for this class).
|
|
*/
|
|
protected function configFor($name) {
|
|
|
|
// Return cached result
|
|
if (isset($this->configs[$name])) {
|
|
return $this->configs[$name]; // Potentially false
|
|
}
|
|
|
|
$config = Config::inst()->get('Injector', $name);
|
|
if ($config) {
|
|
$this->configs[$name] = $config;
|
|
return $config;
|
|
} else {
|
|
return null;
|
|
}
|
|
}
|
|
} |