コード例 #1
0
 /**
  * Constructor to create a valid object
  *
  * @param string $strSystemid (use "" on new objects)
  */
 public function __construct($strSystemid = "")
 {
     if (class_module_system_setting::getConfigValue("_tags_defaultprivate_") == "true") {
         $this->intPrivate = 1;
     }
     parent::__construct($strSystemid);
 }
コード例 #2
0
 /**
  * Constructor to create a valid object
  *
  * @param string $strSystemid (use "" on new objects)
  */
 public function __construct($strSystemid = "")
 {
     //base class
     parent::__construct($strSystemid);
     $this->objSortManager = new class_pages_sortmanager($this);
 }
コード例 #3
0
 /**
  * Constructor to create a valid object
  *
  * @param string $strSystemid (use "" on new objects)
  */
 public function __construct($strSystemid = "")
 {
     //init the object with the language currently selected - admin or portal
     if (defined("_admin_") && _admin_ === true) {
         $this->setStrLanguage($this->getStrAdminLanguageToWorkOn());
     } else {
         $this->setStrLanguage($this->getStrPortalLanguage());
     }
     //base class
     parent::__construct($strSystemid);
     $this->objSortManager = new class_pages_sortmanager($this);
 }
コード例 #4
0
 /**
  * Constructor to create a valid object
  *
  * @param string $strSystemid (use "" on new objects)
  */
 public function __construct($strSystemid = "")
 {
     parent::__construct($strSystemid);
     $this->objTag = new class_module_tags_tag($this->getStrTagId());
 }
コード例 #5
0
 /**
  * Constructor to create a valid object
  *
  * @param string $strSystemid (use "" on new objects)
  */
 public function __construct($strSystemid = "")
 {
     $this->strLoginstatus = self::$LOGINSTATUS_LOGGEDOUT;
     //base class
     parent::__construct($strSystemid);
 }