/**
  * Set node
  */
 function setNode(&$a_node)
 {
     parent::setNode($a_node);
     // this is the PageContent node
     $this->q_node =& $a_node->first_child();
     //... and this the PlaceHolder
 }
 function setNode(&$a_node)
 {
     parent::setNode($a_node);
     // this is the PageContent node
     $this->list_node =& $a_node->first_child();
     // this is the Table node
 }
 /**
  * Set node
  */
 function setNode(&$a_node)
 {
     parent::setNode($a_node);
     // this is the PageContent node
     $this->incl_node =& $a_node->first_child();
     // this is the snippet node
 }
 /**
  * Set node
  */
 function setNode(&$a_node)
 {
     parent::setNode($a_node);
     // this is the PageContent node
     $this->sec_node =& $a_node->first_child();
     // this is the Section node
 }
 /**
  * Set node
  */
 function setNode(&$a_node)
 {
     parent::setNode($a_node);
     // this is the PageContent node
     $this->vrfc_node =& $a_node->first_child();
     // this is the verification node
 }
 /**
  * Set node
  */
 function setNode(&$a_node)
 {
     parent::setNode($a_node);
     // this is the PageContent node
     $this->qover_node = $a_node->first_child();
     // this is the question overview node
 }
 /**
  * Set node
  */
 function setNode(&$a_node)
 {
     parent::setNode($a_node);
     // this is the PageContent node
     $this->res_node =& $a_node->first_child();
     // this is the Resources node
 }
 /**
  * Set node
  */
 function setNode(&$a_node)
 {
     parent::setNode($a_node);
     // this is the PageContent node
     $this->res_node = $a_node->first_child();
     // this is the login page element
 }
 /**
  * Set node
  */
 function setNode(&$a_node)
 {
     parent::setNode($a_node);
     // this is the PageContent node
     $this->amdpl_node =& $a_node->first_child();
     // this is the courses node
 }
 /**
  * Set node
  */
 function setNode(&$a_node)
 {
     parent::setNode($a_node);
     // this is the PageContent node
     $this->cach_node =& $a_node->first_child();
     // this is the consultation hours node
 }
Beispiel #11
0
 /**
  * Set node
  */
 function setNode(&$a_node)
 {
     parent::setNode($a_node);
     // this is the PageContent node
     $this->plug_node =& $a_node->first_child();
     // this is the Plugged node
 }
 /**
  * Set Page Content Node
  *
  * @param	object	$a_node		Page Content DOM Node
  */
 function setNode(&$a_node)
 {
     parent::setNode($a_node);
     // this is the PageContent node
     $childs = $a_node->child_nodes();
     for ($i = 0; $i < count($childs); $i++) {
         if ($childs[$i]->node_name() == "Paragraph") {
             $this->par_node = $childs[$i];
             //... and this the Paragraph node
         }
     }
 }
 /**
  * Set node (and media object node)
  */
 function setNode($a_node)
 {
     parent::setNode($a_node);
     // this is the PageContent node
     $this->iim_node = $a_node->first_child();
     $this->med_alias_node = $this->iim_node->first_child();
     if (is_object($this->med_alias_node) && $this->med_alias_node->myDOMNode != null) {
         $id = $this->med_alias_node->get_attribute("OriginId");
         $mob_id = ilInternalLink::_extractObjIdOfTarget($id);
         if (ilObject::_lookupType($mob_id) == "mob") {
             $this->setMediaObject(new ilObjMediaObject($mob_id));
         }
     }
     include_once "./Services/COPage/classes/class.ilMediaAliasItem.php";
     $this->std_alias_item = new ilMediaAliasItem($this->dom, $this->readHierId(), "Standard", $this->readPCId(), "InteractiveImage");
 }
 /**
  * Set node (in fact this will never be called, since these types of nodes do not exist
  */
 function setNode($a_node)
 {
     parent::setNode($a_node);
     // this is the PageContent node
 }