当前位置: 首页>>代码示例>>PHP>>正文


PHP Zend_Tool_Framework_Registry_Interface::getManifestRepository方法代码示例

本文整理汇总了PHP中Zend_Tool_Framework_Registry_Interface::getManifestRepository方法的典型用法代码示例。如果您正苦于以下问题:PHP Zend_Tool_Framework_Registry_Interface::getManifestRepository方法的具体用法?PHP Zend_Tool_Framework_Registry_Interface::getManifestRepository怎么用?PHP Zend_Tool_Framework_Registry_Interface::getManifestRepository使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Zend_Tool_Framework_Registry_Interface的用法示例。


在下文中一共展示了Zend_Tool_Framework_Registry_Interface::getManifestRepository方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: setRegistry

 /**
  * setRegistry()
  *
  * @param Zend_Tool_Framework_Registry_Interface $registry
  * @return Zend_Tool_Framework_Client_Console_ArgumentParser
  */
 public function setRegistry(Zend_Tool_Framework_Registry_Interface $registry)
 {
     // get the client registry
     $this->_registry = $registry;
     // set manifest repository, request, response for easy access
     $this->_manifestRepository = $this->_registry->getManifestRepository();
     $this->_request = $this->_registry->getRequest();
     $this->_response = $this->_registry->getResponse();
     return $this;
 }
开发者ID:brianbui171,项目名称:website_zend_1.11,代码行数:16,代码来源:ArgumentParser.php

示例2: _respondWithSystemInformation

 /**
  * _respondWithSystemInformation()
  *
  * @param string $providerNameFilter
  * @param string $actionNameFilter
  * @param bool $includeAllSpecialties
  * @return Zend_Tool_Framework_Client_Console_HelpSystem
  */
 protected function _respondWithSystemInformation($providerNameFilter = null, $actionNameFilter = null, $includeAllSpecialties = false)
 {
     $manifest = $this->_registry->getManifestRepository();
     $providerMetadatasSearch = array('type' => 'Tool', 'name' => 'providerName', 'clientName' => 'console');
     if (is_string($providerNameFilter)) {
         $providerMetadatasSearch = array_merge($providerMetadatasSearch, array('providerName' => $providerNameFilter));
     }
     $actionMetadatasSearch = array('type' => 'Tool', 'name' => 'actionName', 'clientName' => 'console');
     if (is_string($actionNameFilter)) {
         $actionMetadatasSearch = array_merge($actionMetadatasSearch, array('actionName' => $actionNameFilter));
     }
     // get the metadata's for the things to display
     $displayProviderMetadatas = $manifest->getMetadatas($providerMetadatasSearch);
     $displayActionMetadatas = $manifest->getMetadatas($actionMetadatasSearch);
     // create index of actionNames
     for ($i = 0; $i < count($displayActionMetadatas); $i++) {
         $displayActionNames[] = $displayActionMetadatas[$i]->getActionName();
     }
     foreach ($displayProviderMetadatas as $providerMetadata) {
         $providerNameDisplayed = false;
         $providerName = $providerMetadata->getProviderName();
         $providerSignature = $providerMetadata->getReference();
         foreach ($providerSignature->getActions() as $actionInfo) {
             $actionName = $actionInfo->getName();
             // check to see if this action name is valid
             if (($foundActionIndex = array_search($actionName, $displayActionNames)) === false) {
                 continue;
             } else {
                 $actionMetadata = $displayActionMetadatas[$foundActionIndex];
             }
             $specialtyMetadata = $manifest->getMetadata(array('type' => 'Tool', 'name' => 'specialtyName', 'providerName' => $providerName, 'specialtyName' => '_Global', 'clientName' => 'console'));
             // lets do the main _Global action first
             $actionableGlobalLongParamMetadata = $manifest->getMetadata(array('type' => 'Tool', 'name' => 'actionableMethodLongParams', 'providerName' => $providerName, 'specialtyName' => '_Global', 'actionName' => $actionName, 'clientName' => 'console'));
             $actionableGlobalMetadatas = $manifest->getMetadatas(array('type' => 'Tool', 'name' => 'actionableMethodLongParams', 'providerName' => $providerName, 'actionName' => $actionName, 'clientName' => 'console'));
             if ($actionableGlobalLongParamMetadata) {
                 if (!$providerNameDisplayed) {
                     $this->_respondWithProviderName($providerMetadata);
                     $providerNameDisplayed = true;
                 }
                 $this->_respondWithCommand($providerMetadata, $actionMetadata, $specialtyMetadata, $actionableGlobalLongParamMetadata);
                 $actionIsGlobal = true;
             } else {
                 $actionIsGlobal = false;
             }
             // check for providers without a _Global action
             $isSingleSpecialProviderAction = false;
             if (!$actionIsGlobal && count($actionableGlobalMetadatas) == 1) {
                 $isSingleSpecialProviderAction = true;
                 $this->_respondWithProviderName($providerMetadata);
                 $providerNameDisplayed = true;
             }
             if ($includeAllSpecialties || $isSingleSpecialProviderAction) {
                 foreach ($providerSignature->getSpecialties() as $specialtyName) {
                     if ($specialtyName == '_Global') {
                         continue;
                     }
                     $specialtyMetadata = $manifest->getMetadata(array('type' => 'Tool', 'name' => 'specialtyName', 'providerName' => $providerMetadata->getProviderName(), 'specialtyName' => $specialtyName, 'clientName' => 'console'));
                     $actionableSpecialtyLongMetadata = $manifest->getMetadata(array('type' => 'Tool', 'name' => 'actionableMethodLongParams', 'providerName' => $providerMetadata->getProviderName(), 'specialtyName' => $specialtyName, 'actionName' => $actionName, 'clientName' => 'console'));
                     if ($actionableSpecialtyLongMetadata) {
                         $this->_respondWithCommand($providerMetadata, $actionMetadata, $specialtyMetadata, $actionableSpecialtyLongMetadata);
                     }
                 }
             }
             // reset the special flag for single provider action with specialty
             $isSingleSpecialProviderAction = false;
             if (!$includeAllSpecialties && count($actionableGlobalMetadatas) > 1) {
                 $this->_response->appendContent('    Note: There are specialties, use ', array('color' => 'yellow', 'separator' => false));
                 $this->_response->appendContent('zf ' . $actionMetadata->getValue() . ' ' . $providerMetadata->getValue() . '.?', array('color' => 'cyan', 'separator' => false));
                 $this->_response->appendContent(' to get specific help on them.', array('color' => 'yellow'));
             }
         }
         if ($providerNameDisplayed) {
             $this->_response->appendContent(null, array('separator' => true));
         }
     }
     return $this;
 }
开发者ID:yonetici,项目名称:pimcore-coreshop-demo,代码行数:85,代码来源:HelpSystem.php


注:本文中的Zend_Tool_Framework_Registry_Interface::getManifestRepository方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。