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


PHP ClassType::hasAnnotation方法代码示例

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


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

示例1: parseAnnotations

	/**
	 * @param string
	 * @param string
	 * @return array
	 */
	public static function parseAnnotations($class, $method = NULL)
	{
		if (strpos($class, '::') !== FALSE && !$method) {
			list($class, $method) = explode('::', $class);
		}

		$ref = new Reflection\Method($class, $method);
		$cRef = new Reflection\ClassType($class);
		$anntations = (array)$ref->getAnnotation('allowed');

		$role = isset($anntations['role']) ? $anntations['role']
			: ($ref->hasAnnotation('role') ? $ref->getAnnotation('role') : NULL);

		$resource = isset($anntations['resource']) ? $anntations['resource']
			: ($ref->hasAnnotation('resource')
			? $ref->getAnnotation('resource')
				: ($cRef->hasAnnotation('resource') ? $cRef->getAnnotation('resource') : NULL));

		$privilege = isset($anntations['privilege']) ? $anntations['privilege']
			: ($ref->hasAnnotation('privilege') ? $ref->getAnnotation('privilege') : NULL);

		return array(
			static::ROLE => $role,
			static::RESOURCE => $resource,
			static::PRIVILEGE => $privilege,
		);
	}
开发者ID:norbe,项目名称:framework,代码行数:32,代码来源:Authorizator.php

示例2: findByAnnotations

 /**
  * @param array $dirs
  * @param array $annotations
  * @return array
  */
 private function findByAnnotations(array $dirs, array $annotations)
 {
     $loader = $this->createLoader();
     $loader->addDirectory($dirs);
     $loader->rebuild();
     $loader->register();
     $classes = [];
     foreach (array_keys($loader->getIndexedClasses()) as $class) {
         // Skip not existing class
         if (!class_exists($class, TRUE)) {
             continue;
         }
         // Detect by reflection
         $ct = new ClassType($class);
         // Skip abstract
         if ($ct->isAbstract()) {
             continue;
         }
         // Does class has one of the annotation?
         foreach ($annotations as $annotation) {
             if ($ct->hasAnnotation(trim($annotation, '@'))) {
                 $classes[] = $ct->getName();
             }
         }
     }
     return $classes;
 }
开发者ID:minetro,项目名称:service-autoloader,代码行数:32,代码来源:ServiceAutoloadExtension.php


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