<?php _setView(ROOT_PATH . "/apps/" . $_GET['m'] . "/admin/addservice.php"); _setTitle($langArray['edit']); if (!isset($_GET['id']) || !is_numeric($_GET['id'])) { refresh('?m=' . $_GET['m'] . '&c=service', 'INVALID ID', 'error'); } $cms = new service(); if (isset($_POST['edit'])) { $status = $cms->edit($_GET['id']); if ($status !== true) { abr('error', $status); } else { refresh("?m=" . $_GET['m'] . "&c=service", $langArray['edit_complete']); } } else { $user_info = $cms->get($_GET['id']); abr('user_info', $user_info); } require_once ROOT_PATH . '/apps/lists/leftlist_admin.php';
require 'subclasses/service.php'; $dbh_service = new service(); $object_name = 'dbh_service'; require 'components/create_form_data.php'; extract($arr_form_data); if ($_POST['btn_cancel']) { log_action('Pressed cancel button'); redirect("listview_service.php?{$query_string}"); } if ($_POST['btn_submit']) { log_action('Pressed submit button'); $message .= $dbh_service->sanitize($arr_form_data)->lst_error; extract($arr_form_data); if ($dbh_service->check_uniqueness_for_editing($arr_form_data)->is_unique) { //Good, no duplicate in database } else { $message = "Record already exists with the same primary identifiers!"; } if ($message == "") { $dbh_service->edit($arr_form_data); redirect("listview_service.php?{$query_string}"); } } } require 'subclasses/service_html.php'; $html = new service_html(); $html->draw_header('Edit Service', $message, $message_type); $html->draw_listview_referrer_info($filter_field_used, $filter_used, $page_from, $filter_sort_asc, $filter_sort_desc); $html->draw_hidden('service_id'); $html->draw_controls('edit'); $html->draw_footer();