예제 #1
0
 /**
  * Initializes the configuration manager and the FLOW3 settings
  *
  * @return void
  * @author Robert Lemke <*****@*****.**>
  * @see initialize()
  */
 public function initializeConfiguration()
 {
     $this->configurationManager = new \F3\FLOW3\Configuration\ConfigurationManager($this->context);
     $this->configurationManager->injectConfigurationSource(new \F3\FLOW3\Configuration\Source\YamlSource());
     $this->configurationManager->setPackages(array('FLOW3' => $this->FLOW3Package));
     $this->settings = $this->configurationManager->getConfiguration(\F3\FLOW3\Configuration\ConfigurationManager::CONFIGURATION_TYPE_SETTINGS, 'FLOW3');
 }