本文整理匯總了PHP中ilLMObject::ilLMObject方法的典型用法代碼示例。如果您正苦於以下問題:PHP ilLMObject::ilLMObject方法的具體用法?PHP ilLMObject::ilLMObject怎麽用?PHP ilLMObject::ilLMObject使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類ilLMObject
的用法示例。
在下文中一共展示了ilLMObject::ilLMObject方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: ilLMPageObject
/**
* Constructor
* @access public
*/
function ilLMPageObject(&$a_content_obj, $a_id = 0, $a_halt = true)
{
global $ilias, $ilBench;
$ilBench->start("ContentPresentation", "ilLMPageObject_Constructor");
parent::ilLMObject($a_content_obj, $a_id);
$this->setType("pg");
$this->id = $a_id;
$this->is_alias = false;
$this->contains_int_link = false;
$this->mobs_contained = array();
$this->files_contained = array();
$this->halt_on_error = $a_halt;
if ($a_id != 0) {
$this->read();
}
$ilBench->stop("ContentPresentation", "ilLMPageObject_Constructor");
}
示例2: ilStructureObject
/**
* Constructor
* @access public
*/
function ilStructureObject(&$a_content_obj, $a_id = 0)
{
$this->setType("st");
parent::ilLMObject($a_content_obj, $a_id);
}