當前位置: 首頁>>代碼示例>>PHP>>正文


PHP ilXmlWriter::__construct方法代碼示例

本文整理匯總了PHP中ilXmlWriter::__construct方法的典型用法代碼示例。如果您正苦於以下問題:PHP ilXmlWriter::__construct方法的具體用法?PHP ilXmlWriter::__construct怎麽用?PHP ilXmlWriter::__construct使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在ilXmlWriter的用法示例。


在下文中一共展示了ilXmlWriter::__construct方法的8個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: __construct

 /**
  * Constructor
  */
 public function __construct($a_add_header)
 {
     $this->add_header = $a_add_header;
     parent::__construct();
 }
開發者ID:arlendotcn,項目名稱:ilias,代碼行數:8,代碼來源:class.ilLPXmlWriter.php

示例2: __construct

 /**
  * constructor
  * @param	string	xml version
  * @param	string	output encoding
  * @param	string	input encoding
  * @access	public
  */
 public function __construct()
 {
     parent::__construct();
 }
開發者ID:Walid-Synakene,項目名稱:ilias,代碼行數:11,代碼來源:class.ilForumXMLWriter.php

示例3: __construct

 /**
  * constructor
  * @param	string	xml version
  * @param	string	output encoding
  * @param	string	input encoding
  * @access	public
  */
 public function __construct(ilObjCategory $cat = null)
 {
     global $ilias;
     parent::__construct();
     $this->category = $cat;
 }
開發者ID:arlendotcn,項目名稱:ilias,代碼行數:13,代碼來源:class.ilCategoryXmlWriter.php

示例4: __construct

 /**
  * constructor
  * @param	string	xml version
  * @param	string	output encoding
  * @param	string	input encoding
  * @access	public
  */
 public function __construct(ilContainerReference $ref = null)
 {
     parent::__construct();
     $this->ref = $ref;
 }
開發者ID:arlendotcn,項目名稱:ilias,代碼行數:12,代碼來源:class.ilContainerReferenceXmlWriter.php

示例5:

 function __construct($test_id, $anonymized = false)
 {
     parent::__construct();
     $this->test_id = $test_id;
     $this->anonymized = $anonymized;
 }
開發者ID:arlendotcn,項目名稱:ilias,代碼行數:6,代碼來源:class.ilTestResultsToXML.php

示例6: __construct

 /**
  * Constructor
  */
 public function __construct($a_ref_id)
 {
     parent::__construct();
     $this->source = $a_ref_id;
     $this->exp_options = ilExportOptions::getInstance();
 }
開發者ID:arlendotcn,項目名稱:ilias,代碼行數:9,代碼來源:class.ilContainerXmlWriter.php

示例7: __construct

 /**
  *  Constructor
  */
 public function __construct()
 {
     parent::__construct();
     $this->initRbacOperations();
 }
開發者ID:Walid-Synakene,項目名稱:ilias,代碼行數:8,代碼來源:class.ilRoleXmlExport.php

示例8: __construct

 /**
  * Constructor
  */
 public function __construct($a_tpl_id)
 {
     parent::__construct();
     include_once './Services/DidacticTemplate/classes/class.ilDidacticTemplateSetting.php';
     $this->tpl = new ilDidacticTemplateSetting($a_tpl_id);
 }
開發者ID:arlendotcn,項目名稱:ilias,代碼行數:9,代碼來源:class.ilDidacticTemplateXmlWriter.php


注:本文中的ilXmlWriter::__construct方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。