/**
  * Constructor
  *
  */
 public function __construct()
 {
     parent::__construct();
     if ($this->getParam("pe") == "1") {
         $this->strPeAddon = "&pe=1";
     }
 }
 /**
  * Constructor
  */
 public function __construct()
 {
     parent::__construct();
     //set default action
     if ($this->getParam("action") == "") {
         $this->setAction("myList");
     }
 }
 /**
  * Constructor
  */
 public function __construct()
 {
     parent::__construct();
     $this->arrLanguages = explode(",", class_carrier::getInstance()->getObjConfig()->getConfig("adminlangs"));
     //backwards compatibility
     if ($this->getAction() == "edit") {
         $this->setAction("editUser");
     }
 }
 /**
  * Constructor
  */
 public function __construct()
 {
     parent::__construct();
     if (_xmlLoader_) {
         $this->setArrModuleEntry("modul", "pages_content");
     }
     //If there's anything to unlock, do it now
     if ($this->getParam("unlockid") != "") {
         $objLockmanager = new class_lockmanager($this->getParam("unlockid"));
         $objLockmanager->unlockRecord();
     }
     if ($this->getParam("adminunlockid") != "") {
         $objLockmanager = new class_lockmanager($this->getParam("adminunlockid"));
         $objLockmanager->unlockRecord(true);
     }
 }