public function perform_action() { $input = FWS_Props::get()->input(); $db = FWS_Props::get()->db(); $functions = FWS_Props::get()->functions(); $locale = FWS_Props::get()->locale(); $title = $input->get_var('entry_title', 'post', FWS_Input::STRING); $description = $input->get_var('entry_description', 'post', FWS_Input::STRING); $entry_info_link = $input->get_var('entry_info_link', 'post', FWS_Input::STRING); $category = $input->get_var('category', 'post', FWS_Input::INTEGER); $start_version = $input->get_var('start_version', 'post', FWS_Input::STRING); $fixed_version = $input->get_var('fixed_version', 'post', FWS_Input::STRING); $status = $input->correct_var('status', 'post', FWS_Input::STRING, array('open', 'running', 'fixed', 'not_tested', 'not_reproducable', 'need_info'), 'open'); $type = $input->correct_var('type', 'post', FWS_Input::STRING, array('bug', 'feature', 'improvement', 'test'), 'bug'); $priority = $input->correct_var('priority', 'post', FWS_Input::STRING, array('current', 'next', 'anytime'), 'anytime'); @(list($start_project_id, $start_version_id) = explode(',', $start_version)); $time = time(); // create entry $entry = new TDL_Objects_Entry(TDL_TB_ENTRIES); $entry->set_project_id($start_project_id); $entry->set_entry_title($title); $entry->set_entry_description($description); $entry->set_entry_category($category); $entry->set_entry_start_date($time); $entry->set_entry_start_version($start_version_id); $entry->set_entry_changed_date($time); $entry->set_entry_status($status); $entry->set_entry_info_link($entry_info_link); $entry->set_entry_type($type); $entry->set_entry_priority($priority); // determine fixed-inputs $fixed_version_id = 0; if ($fixed_version == 0 || $status != 'fixed') { $entry->set_entry_fixed_date(0); $entry->set_entry_fixed_version(0); } else { @(list(, $fixed_version_id) = explode(',', $fixed_version)); $entry->set_entry_fixed_date($time); $entry->set_entry_fixed_version($fixed_version_id); } // check for errors if (!$entry->check('create')) { return $entry->errors(); } // create the object $entry->create(); // update config $db->update(TDL_TB_CONFIG, ' WHERE is_selected = 1', array('last_start_version' => $start_version_id, 'last_fixed_version' => $fixed_version_id, 'last_category' => $category, 'last_type' => $type, 'last_priority' => $priority, 'last_status' => $status)); $url = new TDL_URL(); $this->add_link($locale->_('Back'), $url->set(TDL_URL_ACTION, 'view_entries')); $this->set_success_msg('Der Eintrag wurde erfolgreich erstellt!'); $this->set_redirect(true, TDL_URL::get_entry_url()); $this->set_action_performed(true); return ''; }
public function perform_action() { $input = FWS_Props::get()->input(); $locale = FWS_Props::get()->locale(); $id_str = $input->get_predef(TDL_URL_IDS, 'get'); $ids = FWS_Array_Utils::advanced_explode(',', $id_str); if (!FWS_Array_Utils::is_numeric($ids) || count($ids) == 0) { return TDL_GENERAL_ERROR; } // read variables from post $status = $input->correct_var('status', 'post', FWS_Input::STRING, array('open', 'fixed', 'running', 'not_tested', 'not_reproducable', 'need_info'), 'open'); $fixed_version = $input->get_var('fixed_version', 'post', FWS_Input::STRING); if ($status == 'fixed') { @(list(, $fixed_version_id) = explode(',', $fixed_version)); $fixed_date = time(); } else { $fixed_date = 0; $fixed_version_id = 0; } // update entries foreach ($ids as $id) { // build object $entry = new TDL_Objects_Entry(TDL_TB_ENTRIES); $entry->set_id($id); $entry->set_entry_status($status); $entry->set_entry_fixed_version($fixed_version_id); $entry->set_entry_fixed_date($fixed_date); $entry->set_entry_changed_date(time()); // write to db if (!$entry->check('update')) { return $entry->errors(); } $entry->update(); } $this->set_show_status_page(false); $this->set_success_msg($locale->_('The status has been changed successfully')); $this->set_action_performed(true); $this->set_redirect(true, TDL_URL::get_mod_url(-1)); return ''; }
public function perform_action() { $input = FWS_Props::get()->input(); $locale = FWS_Props::get()->locale(); $id_str = $input->get_predef(TDL_URL_IDS, 'get'); $ids = FWS_Array_Utils::advanced_explode(',', $id_str); if (!FWS_Array_Utils::is_numeric($ids) || count($ids) == 0) { return TDL_GENERAL_ERROR; } // delete the entries foreach ($ids as $id) { $entry = new TDL_Objects_Entry(TDL_TB_ENTRIES); $entry->set_id($id); if (!$entry->check('delete')) { return $entry->errors(); } $entry->delete(); } $this->set_success_msg($locale->_('The entries have been deleted successfully')); $this->set_redirect(false); $this->set_action_performed(true); return ''; }
public function perform_action() { $input = FWS_Props::get()->input(); $functions = FWS_Props::get()->functions(); $locale = FWS_Props::get()->locale(); // check id $id = $input->get_predef(TDL_URL_IDS, 'get'); if ($id == null) { return TDL_GENERAL_ERROR; } $ids = FWS_Array_Utils::advanced_explode(',', $id); if (count($ids) == 0) { return TDL_GENERAL_ERROR; } $multiple = count($ids) > 1; $time = time(); if (!$multiple) { $title = $input->get_var('entry_title', 'post', FWS_Input::STRING); $description = $input->get_var('entry_description', 'post', FWS_Input::STRING); $info_link = $input->get_var('entry_info_link', 'post', FWS_Input::STRING); } $category = $input->get_var('category', 'post', FWS_Input::INTEGER); $start_version = $input->get_var('start_version', 'post', FWS_Input::STRING); $fixed_version = $input->get_var('fixed_version', 'post', FWS_Input::STRING); $status = $input->correct_var('status', 'post', FWS_Input::STRING, array('open', 'running', 'fixed', 'not_tested', 'not_reproducable', 'need_info'), 'open'); $type = $input->correct_var('type', 'post', FWS_Input::STRING, array('bug', 'feature', 'improvement', 'test'), 'bug'); $priority = $input->correct_var('priority', 'post', FWS_Input::STRING, array('current', 'next', 'anytime'), 'anytime'); if ($multiple) { if (!$input->isset_var('use_start_version', 'post')) { $start_version = 0; } if (!$input->isset_var('use_fixed_version', 'post')) { $fixed_version = 0; } if (!$input->isset_var('use_category', 'post')) { $category = 0; } } if (!$multiple || $input->isset_var('use_start_version', 'post')) { @(list($start_project_id, $start_version_id) = explode(',', $start_version)); } if ($fixed_version == 0 || $status != 'fixed') { $fixed_date = 0; $fixed_version_id = 0; } else { @(list(, $fixed_version_id) = explode(',', $fixed_version)); $fixed_date = $time; } // update entries foreach ($ids as $id) { $entry = new TDL_Objects_Entry(TDL_TB_ENTRIES); $entry->set_id($id); if (isset($start_project_id)) { $entry->set_project_id($start_project_id); } if (!$multiple) { $entry->set_entry_title($title); $entry->set_entry_description($description); $entry->set_entry_info_link($info_link); } if (!$multiple || $input->isset_var('use_start_version', 'post')) { $entry->set_entry_start_version($start_version_id); } if (!$multiple || $input->isset_var('use_fixed_version', 'post')) { $entry->set_entry_fixed_version($fixed_version_id); $entry->set_entry_fixed_date($fixed_date); } if (!$multiple || $input->isset_var('use_category', 'post')) { $entry->set_entry_category($category); } if (!$multiple || $input->isset_var('use_status', 'post')) { $entry->set_entry_status($status); } if (!$multiple || $input->isset_var('use_type', 'post')) { $entry->set_entry_type($type); } if (!$multiple || $input->isset_var('use_priority', 'post')) { $entry->set_entry_priority($priority); } if (!$multiple || $input->get_var('change_lastchange_date', 'post', FWS_Input::INT_BOOL) == 1) { $entry->set_entry_changed_date($time); } if (!$entry->check('update')) { return $entry->errors(); } $entry->update(); } if ($multiple) { $msg = $locale->_('The entries have been edited successfully'); } else { $msg = $locale->_('The entry has been edited successfully'); } $this->set_success_msg($msg); $this->set_redirect(true, TDL_URL::get_entry_url()); $this->set_action_performed(true); return ''; }