Exemplo n.º 1
0
 /**
  *@param 
  *@return PageXml
  *@desc 
  */
 public function CreatePage()
 {
     //parent::CreatePage();
     $this->_px = new PageXml();
     $this->_px->setTitle("XMLNuke Administration Tool");
     $this->_px->setAbstract("XMLNuke Administration Tool");
     $this->_mainBlock = $this->_px->addBlockCenter("Menu");
     $this->_help = $this->_px->addParagraph($this->_mainBlock);
     return $this->_px;
 }
Exemplo n.º 2
0
 /**
  *@param 
  *@return PageXml
  *@desc 
  */
 public function CreatePageOld()
 {
     $this->_px = parent::CreatePage();
     $this->_px->setTitle("XMLNuke Administration Tool");
     $this->_px->setAbstract("XMLNuke Administration Tool");
     $this->_mainBlock = $this->_px->addBlockCenter("Menu");
     $this->_help = $this->_px->addParagraph($this->_mainBlock);
     $this->_menu = $this->_px->addParagraph($this->_mainBlock);
     $this->_px->addHref($this->_menu, "module:Xmlnuke.Admin.ControlPanel?lang=" . $this->_context->Language()->getName(), "Menu", null);
     return $this->_px;
 }