Ejemplo n.º 1
0
 function __construct($id_or_array = NULL)
 {
     global $g_project_fields;
     $this->fields =& $g_project_fields;
     parent::__construct($id_or_array);
     $this->type = ITEM_PROJECT;
 }
Ejemplo n.º 2
0
 /**
  * constructor
  */
 function __construct($id_or_array = NULL)
 {
     global $projectperson_fields;
     $this->fields =& $projectperson_fields;
     parent::__construct($id_or_array);
     $this->type = ITEM_PROJECTPERSON;
 }
Ejemplo n.º 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;
     }
 }
Ejemplo n.º 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;
     }
 }
Ejemplo n.º 5
0
 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;
     }
 }
Ejemplo n.º 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;
     }
 }
Ejemplo n.º 7
0
 /**
  * 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;
     }
 }
Ejemplo n.º 8
0
 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;
     }
 }
Ejemplo n.º 9
0
 /**
  * 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;
     }
 }
Ejemplo n.º 10
0
 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;
 }