Esempio n. 1
0
 /**
  *@desc XmlAnchorCollection constructor
  *@param string $hrefSrc
  *@param string $target
  */
 public function __construct($hrefSrc, $target = '')
 {
     parent::__construct();
     $this->_src = $hrefSrc;
     $this->_target = $target;
 }
Esempio n. 2
0
 /**
  *@desc XmlBlockCollection construction
  *@param string $title
  *@param BlockPosition $position
  */
 public function __construct($title, $position)
 {
     parent::__construct();
     $this->_title = $title;
     $this->_position = $position;
 }
Esempio n. 3
0
 /**
  *@desc XmlFormCollection construction
  *@param Context $context
  *@param string $action
  *@param string $title
  */
 public function __construct($context, $action, $title)
 {
     parent::__construct();
     $this->_context = $context;
     $this->_action = $action;
     $this->_title = $title;
     $this->_formname = "frm" . $this->_context->getRandomNumber(10000);
     $this->_jsValidate = true;
     $this->_decimalSeparator = $this->_context->Language()->getDecimalPoint();
     $this->_dateformat = $this->_context->Language()->getDateFormat();
 }
Esempio n. 4
0
 /**
  *@desc XmlnukeDocument constructor
  *@param string $pageTitle
  *@param string $desc
  */
 public function __construct($pageTitle = "", $desc = "")
 {
     $this->_created = date("Y-m-d H:m:s");
     parent::__construct();
     $this->_pageTitle = $pageTitle;
     $this->_abstract = $desc;
     $this->_keyword = "xmlnuke";
     $this->_groupKeyword = "";
     $this->_menuGroup = array();
     $this->addMenuGroup("Menu", "__DEFAULT__");
 }