function __construct($orderID, $revision)
 {
     parent::__construct();
     $this->orderID = $orderID;
     $this->revision = $revision;
     $this->loadOrder();
     $this->loadOrderItems();
 }
 function __construct($deptID = 0)
 {
     parent::__construct();
     $this->deptID = $deptID;
     $this->loadLineManagers();
     $this->loadCategories();
     $this->loadCategoryItems();
 }
 function __construct($objChallengeStruct = "")
 {
     parent::__construct();
     $this->objChallengeStruct = $objChallengeStruct;
     $path = "../" . PHOTO_DIR;
     $this->createPath($path);
     $thumbpath = "../" . THUMBNAIL_PHOTO_DIR;
     $this->createPath($thumbpath);
 }
 function __construct($employeeID = 0, $accessLevel = AL_EMPLOYEE)
 {
     parent::__construct();
     $this->employeeID = $employeeID;
     $this->accessLevel = $accessLevel;
     if ($accessLevel == AL_MANAGER) {
         $this->loadAllOrdersForManager();
     } else {
         $this->loadAllOrdersForEmployee();
     }
 }
 function __construct()
 {
     parent::__construct();
     $this->buildChallengesList();
 }
 function __construct()
 {
     parent::__construct();
 }
 function __construct($employeeID = 0)
 {
     parent::__construct();
     $this->employeeID = $employeeID;
 }
 function __construct($idUser)
 {
     parent::__construct();
     $this->isError = !$this->getUser($idUser);
 }
 function __construct($employeeID = 0)
 {
     parent::__construct();
     $this->employeeID = $employeeID;
     //$this->loadAllOrdersForAuthorization();
 }
 function __construct()
 {
     parent::__construct();
     $this->buildUsersList();
 }
 function __construct()
 {
     parent::__construct();
     $path = "../" . ATTACHMENTS_DIR;
     $this->createPath($path);
 }
 function __construct()
 {
     parent::__construct();
     $this->buildPhotoChallengeMenu();
 }