Skip to content
Snippets Groups Projects
helptopics.php 3.88 KiB
Newer Older
  • Learn to ignore specific revisions
  • Jared Hancock's avatar
    Jared Hancock committed
    <?php
    /*********************************************************************
        helptopics.php
    
        Help Topics.
    
        Peter Rotich <peter@osticket.com>
        Copyright (c)  2006-2012 osTicket
        http://www.osticket.com
    
        Released under the GNU General Public License WITHOUT ANY WARRANTY.
        See LICENSE.TXT for details.
    
        vim: expandtab sw=4 ts=4 sts=4:
    **********************************************************************/
    require('admin.inc.php');
    include_once(INCLUDE_DIR.'class.topic.php');
    
    $topic=null;
    if($_REQUEST['id'] && !($topic=Topic::lookup($_REQUEST['id'])))
        $errors['err']='Unknown or invalid help topic ID.';
    
    if($_POST){
        switch(strtolower($_POST['do'])){
            case 'update':
                if(!$topic){
                    $errors['err']='Unknown or invalid help topic.';
                }elseif($topic->update($_POST,$errors)){
                    $msg='Help topic updated successfully';
                }elseif(!$errors['err']){
                    $errors['err']='Error updating help topic. Try again!';
                }
                break;
            case 'create':
                if(($id=Topic::create($_POST,$errors))){
                    $msg='Help topic added successfully';
                    $_REQUEST['a']=null;
                }elseif(!$errors['err']){
                    $errors['err']='Unable to add help topic. Correct error(s) below and try again.';
                }
                break;
            case 'mass_process':
                if(!$_POST['ids'] || !is_array($_POST['ids']) || !count($_POST['ids'])) {
                    $errors['err']='You must select at least one help topic';
                }else{
                    $count=count($_POST['ids']);
                    if($_POST['enable']){
    
                        $sql='UPDATE '.TOPIC_TABLE.' SET isactive=1 WHERE topic_id IN ('.
    
                            implode(',', db_input($_POST['ids'])).')';
    
    Jared Hancock's avatar
    Jared Hancock committed
                        if(db_query($sql) && ($num=db_affected_rows())){
                            if($num==$count)
                                $msg='Selected help topics enabled';
                            else
                                $warn="$num of $count selected help topics enabled";
                        }else{
                            $errors['err']='Unable to enable selected help topics.';
                        }
                    }elseif($_POST['disable']){
    
                        $sql='UPDATE '.TOPIC_TABLE.' SET isactive=0  WHERE topic_id IN ('.
    
                            implode(',', db_input($_POST['ids'])).')';
    
    Jared Hancock's avatar
    Jared Hancock committed
                        if(db_query($sql) && ($num=db_affected_rows())) {
                            if($num==$count)
                                $msg='Selected help topics disabled';
                            else
                                $warn="$num of $count selected help topics disabled";
                        }else{
                            $errors['err']='Unable to disable selected help topic(s)';
                        }
    
                    }elseif($_POST['delete']){
                        $i=0;
                        foreach($_POST['ids'] as $k=>$v) {
                            if(($t=Topic::lookup($v)) && $t->delete())
                                $i++;
                        }
    
                        if($i && $i==$count)
                            $msg='Selected help topics deleted successfully';
                        elseif($i>0)
                            $warn="$i of $count selected help topics deleted";
                        elseif(!$errors['err'])
                            $errors['err']='Unable to delete selected help topics';
                        
                    }else {
                        $errors['err']='Unknown action';
                    }
                }
                break;
            default:
                $errors['err']='Unknown action';
                break;
        }
    }
    
    $page='helptopics.inc.php';
    if($topic || ($_REQUEST['a'] && !strcasecmp($_REQUEST['a'],'add')))
        $page='helptopic.inc.php';
    
    
    $nav->setTabActive('manage');
    
    Jared Hancock's avatar
    Jared Hancock committed
    require(STAFFINC_DIR.'header.inc.php');
    require(STAFFINC_DIR.$page);
    include(STAFFINC_DIR.'footer.inc.php');
    ?>