コード例 #1
0
 function __construct($location, $expression = null)
 {
     $this->expression = $expression;
     parent::__construct($location);
 }
コード例 #2
0
 function __construct($location, $text)
 {
     parent::__construct($location);
     $this->contents = $text;
 }
コード例 #3
0
ファイル: lmbMacroTag.class.php プロジェクト: snowjobgit/limb
 function __construct($location, $tag, $tag_info)
 {
     $this->tag = $tag;
     $this->tag_info = $tag_info;
     parent::__construct($location);
 }