コード例 #1
0
ファイル: NgRepeat.php プロジェクト: krzksz/phcompile
 /**
  * Creates new ng-repeat directive.
  *
  * @param PhCompile $phCompile PhCompile object.
  */
 public function __construct(PhCompile $phCompile)
 {
     parent::__construct($phCompile);
     $this->setName('ng-repeat');
     $this->setRestrict('A');
     $this->setPriority(1000);
 }
コード例 #2
0
ファイル: NgSrc.php プロジェクト: krzksz/phcompile
 /**
  * Creates new ng-src directive.
  *
  * @param PhCompile $phCompile PhCompile object.
  */
 public function __construct(PhCompile $phCompile)
 {
     parent::__construct($phCompile);
     $this->setName('ng-src');
     $this->setRestrict('A');
 }