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


PHP PresenterComponentReflection::parseAnnotation方法代码示例

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


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

示例1: checkRequirements

 /**
  * This allows me to implement a basic access control for presenters.
  *
  * This method is called for every presenter run,
  * once it's created before the presenter startup,
  * and for every other lifecycle methods, like render, action and signals.
  */
 public function checkRequirements($element)
 {
     $user = PresenterComponentReflection::parseAnnotation($element, 'User');
     if ($user === FALSE) {
         return;
         // not protected
     }
     if (!$this->getUser()->isLoggedIn()) {
         $this->forbiddenAccess();
     }
 }
开发者ID:martinmayer,项目名称:notejam,代码行数:18,代码来源:BasePresenter.php

示例2: getPersistentComponents

 /**
  * Returns array of persistent components.
  * This default implementation detects components by class-level annotation @persistent(cmp1, cmp2).
  * @return array
  */
 public static function getPersistentComponents()
 {
     return (array) PresenterComponentReflection::parseAnnotation(new \ReflectionClass(get_called_class()), 'persistent');
 }
开发者ID:voda,项目名称:application,代码行数:9,代码来源:Presenter.php

示例3: getPersistentParams

 /**
  * Returns array of classes persistent parameters. They have public visibility and are non-static.
  * This default implementation detects persistent parameters by annotation @persistent.
  * @return array
  */
 public static function getPersistentParams()
 {
     $rc = new \ReflectionClass(get_called_class());
     $params = array();
     foreach ($rc->getProperties(\ReflectionProperty::IS_PUBLIC) as $rp) {
         if (!$rp->isStatic() && PresenterComponentReflection::parseAnnotation($rp, 'persistent')) {
             $params[] = $rp->getName();
         }
     }
     return $params;
 }
开发者ID:jave007,项目名称:test,代码行数:16,代码来源:PresenterComponent.php


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