function build($id, $entitled, $description, $fixing_url, $module, $status, $creation_date, $fixing_date, $auth, $poster_id, $fixer_id, $id_in_module, $identifier, $type, $poster_login = '', $fixer_login = '')
 {
     parent::build($id, $entitled, $fixing_url, $status, $creation_date, $id_in_module, $identifier, $type);
     $this->description = $description;
     $this->module = $module;
     $this->fixing_date = $fixing_date;
     $this->auth = $auth;
     $this->poster_id = $poster_id;
     $this->fixer_id = $fixer_id;
     $this->poster_login = $poster_login;
     $this->fixer_login = $fixer_login;
     $this->must_regenerate_cache = false;
 }
Example #2
0
 /**
  * Запуск калькулятора
  */
 public function run($constructFullChart = true)
 {
     //$this->_loadSignes();
     //var_dump($this->_signesTable);
     //exit();
     //
     // Построение структур данных у человека
     $this->person->build();
     // Расчет ГУА
     $this->gua = $this->_getGua($this->person);
     // Построение чарта человека
     $this->_buildPersonChart($this->person);
     if ($this->event != null) {
         // Построение структур данных события
         $this->event->build();
     }
     // Построение чарта события
     $this->_buildEventChart($this->event);
     // Генерируем полный чарт с информацией о каждой ячейке
     if ($constructFullChart) {
         $this->_constructFullChart();
     }
 }
 function build($id, $entitled, $properties, $fixing_url, $current_status, $creation_date, $id_in_module, $identifier, $type, $priority)
 {
     parent::build($id, $entitled, $fixing_url, $current_status, $creation_date, $id_in_module, $identifier, $type);
     $this->set_priority($priority);
     $this->set_properties($properties);
 }