get('proces_log_list_count'); $proces_log_list = $this->get('proces_log_list'); $procesLogDao = $this->get('procesLogDao'); $out = ''; if ($title_out = $this->get('title')) { $out .= '
| ' . "ID" . ' | '; $out .= '' . "TYPE" . ' | '; $out .= '' . "PROCES INIT" . ' | '; $out .= '' . "ID_STEP" . ' | '; $out .= '' . "ID_STEP_WSKAZNIK" . ' | '; $out .= '' . "ID_USER" . ' | '; $out .= '' . "ID_STANOWISKA" . ' | '; $out .= '' . "Akcje" . ' | '; $out .= '
| ' . $modelLog->get('ID') . ' | '; $out .= '' . $modelLog->get('TYPE') . ' | '; $out .= '' . $modelLog->get('ID_PROCES_INIT') . ' | '; $out .= '' . $modelLog->get('ID_STEP') . ' | '; $out .= '' . $modelLog->get('ID_STEP_WSKAZNIK') . ' | '; $out .= '' . $modelLog->get('ID_USER') . ' | '; $out .= '' . $modelLog->get('ID_STANOWISKA') . ' | '; $out .= ''; $actions = $procesLogDao->get_model_actions($modelLog); $actions_out = array(); foreach ($actions as $k_task => $v_task_label) { $task = ''; switch ($k_task) { case 'step': $task = 'PROCES_LOG'; break; case 'quit': $task = 'PROCES_LOG_QUIT'; break; case 'hist': $task = 'PROCES_LOG_HIST'; break; } if ($task) { $actions_out[] = App::link($v_task_label, array('task'=>$task, '_log_id'=>$modelLog->get('ID'))); } } $out .= implode(" ", $actions_out); $out .= ' | '; $out .= '
| ' . "Brak danych" . ' | |||||||
| ' . "Brak danych" . ' |