0byt3m1n1
Path:
/
data
/
applications
/
aps
/
helpcenterlive
/
2.1.5-3
/
standard
/
htdocs
/
admin
/
[
Home
]
File: assigns.php
<?php // Copyright (c) 2005 Help Center Live. All Rights Reserved // This file is part of Help Center Live. // Help Center Live 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; either version 2 of the License, or // (at your option) any later version. // Help Center Live is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // You should have received a copy of the GNU General Public License // along with Help Center Live; if not, write to the Free Software // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA // Contributors: Michael Bird // File Comments: // This file allows administration of the assigning of operators to departments include_once('../class/include.php'); $inc = new Includer(); $inc->auth(); $inc->template(); $inc->assign(); // Check to see if the person is not logged in $GLOBALS['auth']->check_logout(); // Define the three sets of links in the template if ($GLOBALS['auth']->admin()) { $GLOBALS['template']->links('conf', 'conf'); } else { header('Location: '.$GLOBALS['conf']['url'].'/admin/index.php'); } $GLOBALS['template']->assign('links_main', array( array('title' => $GLOBALS['lang']['view_all'], 'url' => $GLOBALS['conf']['url'].'/admin/assigns.php'), array('title' => $GLOBALS['lang']['operators'], 'url' => $GLOBALS['conf']['url'].'/admin/operators.php'), array('title' => $GLOBALS['lang']['departments'], 'url' => $GLOBALS['conf']['url'].'/admin/departments.php') )); if (isset($_POST['edit'])) { $GLOBALS['template']->assign('text', $GLOBALS['lang']['assigns_updated']); $GLOBALS['assign']->delete_department(addslashes($_POST['id'])); // Loop through all the posted variables. Ones that have their name and values as numbers // are departments being assigned foreach ($_POST as $key => $val) { if (is_numeric($key) && is_numeric($val) && is_numeric($_POST['poll_'.$key])) { $GLOBALS['assign']->insert($key, $val, $_POST['poll_'.$key]); } } } else { $GLOBALS['template']->assign('text', ''); } // Grab a list of the assigns already in place $GLOBALS['template']->assign('assigns', $GLOBALS['assign']->listall()); // Assign the page's title and the content template that needs to be used $GLOBALS['template']->assign('title', $GLOBALS['lang']['assigns']); $GLOBALS['template']->assign('content', 'admin_assigns.tpl'); // Include the javascript files $GLOBALS['template']->assign('javascript', 'misc'); // Display the output $GLOBALS['template']->display('admin.tpl'); // do events that need to be done at the end of the file $inc->finished(); ?>