* @version $Id$ * @access public * @license http://opensource.org/licenses/gpl-3.0.html * 'Workshoprep' (as Workshop Report) module is used by 'Workshop' modules */ //////////// Check Inclusion de pages //////////// if (!class_exists('auth')) { include_once("../lib/lib_common.php"); ReloadIndex('admin'); } //////////// if(isset($_POST['id'])) $id=$_POST['id']; if(isset($_GET['id'])) $id=$_GET['id']; //////////// Check Droits utilisateur //////////// if (!$l21auth->hasRight('workshop')) ReloadIndex('admin'); if(!$l21auth->isWorkgroupOrganiser($l21auth->GetSessionElement('id'), $sql_object, $id) && !$l21auth->isSuperAdmin()) ReloadIndex('admin'); //////////// $req_det= SQL_getoneCompleteWorkshopRep($id); $result=$sql_object->DBSelect($req_det); // Do record exists? if(!isset($result[0]['workrep_title'])) redirect_to('@module_default'); $workrep_title=formatText($result[0]['workrep_title'], '2HTML'); $workrep_workshop_name=formatText($result[0]['workshop_denomination'], '2HTML'); $workshop_title=' ('.$workrep_workshop_name.')'; $work_id=$result[0]['workrep_workshop_id']; if(isset($_POST['valider'])) { $workshop_report_object = new workshop_report; $link_confirm="confirm.php?rub=".$rub."&todo=".$todo."&id=".$work_id; $result=$workshop_report_object->DeleteWorkshopReport($id, $sql_object); if($result) { header("Location: ".safe_redirect($link_confirm)); exit; } else system_error(); } $rub_link="index.php?rub=workshop"; ?>