コード例 #1
0
ファイル: link_anonymous.php プロジェクト: bmdevel/ezc
 /**
  * Construct RST document node
  *
  * @param ezcDocumentRstToken $token
  * @return void
  */
 public function __construct(ezcDocumentRstToken $token)
 {
     parent::__construct($token, self::LINK_ANONYMOUS);
 }
コード例 #2
0
ファイル: link_reference.php プロジェクト: axelmdev/ecommerce
 /**
  * Construct RST document node
  *
  * @param ezcDocumentRstToken $token
  * @return void
  */
 public function __construct(ezcDocumentRstToken $token)
 {
     parent::__construct($token, self::LINK_REFERENCE);
 }
コード例 #3
0
ファイル: reference.php プロジェクト: jackalope/jr_cr_demo
 /**
  * Construct RST document node
  * 
  * @param ezcDocumentRstToken $token 
  * @param int $footnoteType 
  * @return void
  */
 public function __construct(ezcDocumentRstToken $token, $footnoteType = ezcDocumentRstFootnoteNode::NUMBERED)
 {
     parent::__construct($token, self::REFERENCE);
     $this->footnoteType = $footnoteType;
 }