addContextsFromDirectory( dirname(dirname(__FILE__)) . '/Context/Zf/', 'Zend_Tool_Project_Context_Zf_' ); self::$_isInitialized = true; } // load up the extending providers required context classes if ($contextClasses = $this->getContextClasses()) { $this->_loadContextClassesIntoRegistry($contextClasses); } } public function getContextClasses() { return array(); } /** * _getProject is designed to find if there is project file in the context of where * the client has been called from.. The search order is as follows.. * - traversing downwards from (PWD) - current working directory * - if an enpoint variable has been registered in teh client registry - key=workingDirectory * - if an ENV variable with the key ZFPROJECT_PATH is found * * @ * @return Zend_Tool_Project_Profile */ protected function _loadProfile($loadProfileFlag = self::NO_PROFILE_THROW_EXCEPTION, $projectDirectory = null) { if ($projectDirectory == null) { $projectDirectory = getcwd(); } $profile = new Zend_Tool_Project_Profile(); $profile->setAttribute('projectDirectory', $projectDirectory); if ($profile->isLoadableFromFile()) { $profile->loadFromFile(); $this->_loadedProfile = $profile; } if ($this->_loadedProfile == null) { if ($loadProfileFlag == self::NO_PROFILE_THROW_EXCEPTION) { throw new Zend_Tool_Project_Provider_Exception('A project profile was not found.'); } elseif ($loadProfileFlag == self::NO_PROFILE_RETURN_FALSE) { return false; } } return $profile; } /** * Load the project profile from the current working directory, if not throw exception * * @return Zend_Tool_Project_Profile */ protected function _loadProfileRequired() { $profile = $this->_loadProfile(); if ($profile === false) { require_once 'Zend/Tool/Project/Provider/Exception.php'; throw new Zend_Tool_Project_Provider_Exception('A project profile was not found in the current working directory.'); } return $profile; } /** * Return the currently loaded profile * * @return Zend_Tool_Project_Profile */ protected function _getProfile($loadProfileFlag = self::NO_PROFILE_THROW_EXCEPTION) { if (!$this->_loadedProfile) { if (($this->_loadProfile($loadProfileFlag) === false) && ($loadProfileFlag === self::NO_PROFILE_RETURN_FALSE)) { return false; } } return $this->_loadedProfile; } /** * _storeProfile() * * This method will store the profile into its proper location * */ protected function _storeProfile() { $projectProfileFile = $this->_loadedProfile->search('ProjectProfileFile'); $name = $projectProfileFile->getContext()->getPath(); $this->_registry->getResponse()->appendContent('Updating project profile \'' . $name . '\''); $projectProfileFile->getContext()->save(); } /** * _loadContextClassesIntoRegistry() - This is called by the constructor * so that child providers can provide a list of contexts to load into the * context repository * * @param array $contextClasses */ private function _loadContextClassesIntoRegistry($contextClasses) { $registry = Zend_Tool_Project_Context_Repository::getInstance(); foreach ($contextClasses as $contextClass) { $registry->addContextClass($contextClass); } } }