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


PHP Zend_Loader_PluginLoader::getPaths方法代码示例

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


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

示例1: testRemovePrefixPathThrowsExceptionIfPathNotRegisteredInPrefix

 /**
  * @group ZF-9721
  */
 public function testRemovePrefixPathThrowsExceptionIfPathNotRegisteredInPrefix()
 {
     try {
         $loader = new Zend_Loader_PluginLoader(array('My_Namespace_' => 'My/Namespace/'));
         $loader->removePrefixPath('My_Namespace_', 'ZF9721');
         $this->fail();
     } catch (Exception $e) {
         $this->assertType('Zend_Loader_PluginLoader_Exception', $e);
         $this->assertContains('Prefix My_Namespace_ / Path ZF9721', $e->getMessage());
     }
     $this->assertEquals(1, count($loader->getPaths('My_Namespace_')));
 }
开发者ID:omusico,项目名称:logica,代码行数:15,代码来源:PluginLoaderTest.php

示例2: testPrefixesEndingInBackslashDenoteNamespacedClasses

 /**
  * @group ZF-7350
  */
 public function testPrefixesEndingInBackslashDenoteNamespacedClasses()
 {
     if (version_compare(PHP_VERSION, '5.3.0', '<')) {
         $this->markTestSkipped(__CLASS__ . '::' . __METHOD__ . ' requires PHP 5.3.0 or greater');
         return;
     }
     $loader = new Zend_Loader_PluginLoader(array());
     $loader->addPrefixPath('Zfns\\', dirname(__FILE__) . '/_files/Zfns');
     try {
         $className = $loader->load('Foo');
     } catch (Exception $e) {
         $paths = $loader->getPaths();
         $this->fail(sprintf("Failed loading helper; paths: %s", var_export($paths, 1)));
     }
     $this->assertEquals('Zfns\\Foo', $className);
     $this->assertEquals('Zfns\\Foo', $loader->getClassName('Foo'));
 }
开发者ID:travisj,项目名称:zf,代码行数:20,代码来源:PluginLoaderTest.php

示例3: testWin32UnderscoreSpacedShortNamesWillLoad

 /**
  * @issue ZF-2741
  */
 public function testWin32UnderscoreSpacedShortNamesWillLoad()
 {
     $loader = new Zend_Loader_PluginLoader(array());
     $loader->addPrefixPath('Zend_Filter', $this->libPath . '/Zend/Filter');
     try {
         // Plugin loader will attempt to load "c:\path\to\library/Zend/Filter/Word\UnderscoreToDash.php"
         $className = $loader->load('Word_UnderscoreToDash');
     } catch (Exception $e) {
         $paths = $loader->getPaths();
         $this->fail(sprintf("Failed loading helper; paths: %s", var_export($paths, 1)));
     }
     $this->assertEquals($className, $loader->getClassName('Word_UnderscoreToDash'));
 }
开发者ID:lortnus,项目名称:zf1,代码行数:16,代码来源:PluginLoaderTest.php

示例4: getPaths

 /**
  * Get path stack
  *
  * @param  string $prefix
  * @return false|array False if prefix does not exist, array otherwise
  */
 public function getPaths($prefix = null)
 {
     // To return the same result as in the past.
     return array_reverse(parent::getPaths($prefix));
 }
开发者ID:GemsTracker,项目名称:MUtil,代码行数:11,代码来源:PluginLoader.php

示例5: testClassFilesAreSearchedInLifoOrder

 public function testClassFilesAreSearchedInLifoOrder()
 {
     $loader = new Zend_Loader_PluginLoader(array());
     $loader->addPrefixPath('Zend_View_Helper', $this->libPath . '/Zend/View/Helper');
     $loader->addPrefixPath('ZfTest', dirname(__FILE__) . '/_files/ZfTest');
     try {
         $className = $loader->load('FormSubmit');
     } catch (Exception $e) {
         $paths = $loader->getPaths();
         $this->fail(sprintf("Failed loading helper; paths: %s", var_export($paths, 1)));
     }
     $this->assertEquals($className, $loader->getClassName('FormSubmit'));
     $this->assertEquals('ZfTest_FormSubmit', $loader->getClassName('FormSubmit'));
 }
开发者ID:jorgenils,项目名称:zend-framework,代码行数:14,代码来源:PluginLoaderTest.php


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