removed mods directory from the ATutor codebase
[atutor.git] / mods / job_board / admin / view_post.php
diff --git a/mods/job_board/admin/view_post.php b/mods/job_board/admin/view_post.php
deleted file mode 100644 (file)
index e0ce8af..0000000
+++ /dev/null
@@ -1,56 +0,0 @@
-<?php
-/***********************************************************************/
-/* ATutor                                                                                                                         */
-/***********************************************************************/
-/* Copyright (c) 2002-2009                                                                                        */
-/* Adaptive Technology Resource Centre / Inclusive Design Institute       */
-/* http://atutor.ca                                                                                                       */
-/*                                                                                                                                        */
-/* This program is free software. You can redistribute it and/or          */
-/* modify it under the terms of the GNU General Public License            */
-/* as published by the Free Software Foundation.                                          */
-/***********************************************************************/
-// $Id$
-
-define(AT_INCLUDE_PATH, '../../../include/');
-include(AT_INCLUDE_PATH.'vitals.inc.php');
-include(AT_JB_INCLUDE.'classes/Job.class.php');
-$_custom_css = $_base_path . AT_JB_BASENAME . 'module.css'; // use a custom stylesheet
-
-admin_authenticate(AT_ADMIN_PRIV_JOB_BOARD);
-
-/* 
- * Add the submenu on this page so that user can go back to the listing.
- * Reason why this is not included in module.php is because we don't want the 
- * 'view_post' submenu to show on job_board/index.php
- */
-$_pages[AT_JB_BASENAME.'index_admin.php']['children'] = array(AT_JB_BASENAME.'admin/view_post.php');
-
-$jid = intval($_REQUEST['jid']);
-$job = new Job();
-$job_post = $job->getJob($jid);
-
-if($_GET['action']=='delete'){
-       $hidden_vars['jid'] = $jid;
-       $job_post = $job->getJob($jid);
-       $msg->addConfirm(array('DELETE', $job_post['title']), $hidden_vars);
-}
-//handle delete 
-if (isset($_POST['submit_no'])) {
-       $msg->addFeedback('CANCELLED');
-       header('Location: ../index_admin.php');
-       exit;
-} else if (isset($_POST['submit_yes'])) {
-       $job->removeJob($jid);
-       $msg->addFeedback('JB_POST_DELETED');
-       header('Location: ../index_admin.php');
-       exit;
-}
-
-include(AT_INCLUDE_PATH.'header.inc.php');
-$msg->printConfirm();
-$savant->assign('job_obj', $job);
-$savant->assign('job_post', $job_post);
-$savant->display('jb_view_post.tmpl.php');
-include(AT_INCLUDE_PATH.'footer.inc.php'); 
-?>