function __construct($id_or_array = NULL)
 {
     global $g_project_fields;
     $this->fields =& $g_project_fields;
     parent::__construct($id_or_array);
     $this->type = ITEM_PROJECT;
 }
 /**
  * constructor
  */
 function __construct($id_or_array = NULL)
 {
     global $projectperson_fields;
     $this->fields =& $projectperson_fields;
     parent::__construct($id_or_array);
     $this->type = ITEM_PROJECTPERSON;
 }
Beispiel #3
0
 function __construct($id_or_array = false)
 {
     $this->fields =& self::$fields_static;
     parent::__construct($id_or_array);
     if (!$this->type) {
         $this->type = ITEM_TASK;
     }
 }
Beispiel #4
0
 function __construct($id_or_array = NULL)
 {
     global $g_issue_fields;
     $this->fields =& $g_issue_fields;
     parent::__construct($id_or_array);
     if (!$this->type) {
         $this->type = ITEM_ISSUE;
     }
 }
 function __construct($id_or_array = NULL)
 {
     global $g_company_fields;
     $this->fields =& $g_company_fields;
     parent::__construct($id_or_array);
     if (!$this->type) {
         $this->type = ITEM_COMPANY;
     }
 }
Beispiel #6
0
 function __construct($id_or_array = false)
 {
     global $g_file_fields;
     $this->fields =& $g_file_fields;
     parent::__construct($id_or_array);
     if (!$this->type) {
         $this->type = ITEM_FILE;
     }
 }
 /**
  * constructor
  */
 function __construct($id_or_array = NULL)
 {
     global $g_employment_fields;
     $this->fields =& $g_employment_fields;
     parent::__construct($id_or_array);
     if (!$this->type) {
         $this->type = ITEM_EMPLOYMENT;
     }
 }
 function __construct($id_or_array = NULL)
 {
     global $effort_fields;
     $this->fields =& $effort_fields;
     parent::__construct($id_or_array);
     if (!$this->type) {
         $this->type = ITEM_EFFORT;
     }
 }
 /**
  * constructor
  */
 function __construct($id_or_array = NULL)
 {
     global $g_task_person_fields;
     $this->fields =& $g_task_person_fields;
     parent::__construct($id_or_array);
     if (!$this->type) {
         $this->type = ITEM_TASKPERSON;
     }
 }
 function __construct($id_or_array = false)
 {
     global $comment_fields;
     $this->fields =& $comment_fields;
     parent::__construct($id_or_array);
     if (!$this->type) {
         $this->type = ITEM_COMMENT;
     }
     $this->num_children = 0;
 }