Skip to content
Snippets Groups Projects
templates.php 5.77 KiB
Newer Older
  • Learn to ignore specific revisions
  • Jared Hancock's avatar
    Jared Hancock committed
    <?php
    /*********************************************************************
        templates.php
    
        Email Templates
    
        Peter Rotich <peter@osticket.com>
    
        Copyright (c)  2006-2013 osTicket
    
    Jared Hancock's avatar
    Jared Hancock committed
        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.template.php');
    $template=null;
    
    if($_REQUEST['tpl_id'] &&
            !($template=EmailTemplateGroup::lookup($_REQUEST['tpl_id'])))
        $errors['err']='Unknown or invalid template group ID.';
    elseif($_REQUEST['id'] &&
            !($template=EmailTemplate::lookup($_REQUEST['id'])))
    
    Jared Hancock's avatar
    Jared Hancock committed
        $errors['err']='Unknown or invalid template ID.';
    
    if($_POST){
        switch(strtolower($_POST['do'])){
            case 'updatetpl':
                if(!$template){
                    $errors['err']='Unknown or invalid template';
    
                }elseif($template->update($_POST,$errors)){
    
    Jared Hancock's avatar
    Jared Hancock committed
                    $msg='Message template updated successfully';
    
                    // Drop drafts for this template for ALL users
                    Draft::deleteForNamespace('tpl.'.$template->getCodeName()
                        .'.'.$template->getTplId());
    
    Jared Hancock's avatar
    Jared Hancock committed
                }elseif(!$errors['err']){
                    $errors['err']='Error updating message template. Try again!';
                }
                break;
    
            case 'implement':
                if(!$template){
                    $errors['err']='Unknown or invalid template';
                }elseif($new = EmailTemplate::add($_POST,$errors)){
                    $template = $new;
                    $msg='Message template updated successfully';
    
                    // Drop drafts for this user for this template
                    Draft::deleteForNamespace('tpl.'.$new->getCodeName()
                        .$new->getTplId(), $thisstaff->getId());
    
                }elseif(!$errors['err']){
                    $errors['err']='Error updating message template. Try again!';
                }
                break;
    
    Jared Hancock's avatar
    Jared Hancock committed
            case 'update':
                if(!$template){
                    $errors['err']='Unknown or invalid template';
                }elseif($template->update($_POST,$errors)){
                    $msg='Template updated successfully';
                }elseif(!$errors['err']){
                    $errors['err']='Error updating template. Try again!';
                }
                break;
            case 'add':
    
                if(($new=EmailTemplateGroup::add($_POST,$errors))){
                    $template=$new;
    
    Jared Hancock's avatar
    Jared Hancock committed
                    $msg='Template added successfully';
                    $_REQUEST['a']=null;
                }elseif(!$errors['err']){
                    $errors['err']='Unable to add template. 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 template to process.';
    
    Jared Hancock's avatar
    Jared Hancock committed
                    $count=count($_POST['ids']);
    
                    switch(strtolower($_POST['a'])) {
                        case 'enable':
    
                            $sql='UPDATE '.EMAIL_TEMPLATE_GRP_TABLE.' SET isactive=1 '
    
                                .' WHERE tpl_id IN ('.implode(',', db_input($_POST['ids'])).')';
                            if(db_query($sql) && ($num=db_affected_rows())){
                                if($num==$count)
                                    $msg = 'Selected templates enabled';
                                else
                                    $warn = "$num of $count selected templates enabled";
                            } else {
                                $errors['err'] = 'Unable to enable selected templates';
                            }
                            break;
                        case 'disable':
                            $i=0;
                            foreach($_POST['ids'] as $k=>$v) {
    
                                if(($t=EmailTemplateGroup::lookup($v)) && !$t->isInUse() && $t->disable())
    
                                    $i++;
                            }
                            if($i && $i==$count)
                                $msg = 'Selected templates disabled';
                            elseif($i)
                                $warn = "$i of $count selected templates disabled (in-use templates can't be disabled)";
    
    Jared Hancock's avatar
    Jared Hancock committed
                            else
    
                                $errors['err'] = "Unable to disable selected templates (in-use or default template can't be disabled)";
                            break;
                        case 'delete':
                            $i=0;
                            foreach($_POST['ids'] as $k=>$v) {
    
                                if(($t=EmailTemplateGroup::lookup($v)) && !$t->isInUse() && $t->delete())
    
                            if($i && $i==$count)
                                $msg = 'Selected templates deleted successfully';
                            elseif($i>0)
                                $warn = "$i of $count selected templates deleted";
                            elseif(!$errors['err'])
                                $errors['err'] = 'Unable to delete selected templates';
                            break;
                        default:
                            $errors['err']='Unknown template action';
    
    Jared Hancock's avatar
    Jared Hancock committed
                    }
                }
                break;
            default:
                $errors['err']='Unknown action';
                break;
        }
    }
    
    $page='templates.inc.php';
    if($template && !strcasecmp($_REQUEST['a'],'manage')){
        $page='tpl.inc.php';
    
    }elseif($template && !strcasecmp($_REQUEST['a'],'implement')){
        $page='tpl.inc.php';
    
    Jared Hancock's avatar
    Jared Hancock committed
    }elseif($template || !strcasecmp($_REQUEST['a'],'add')){
        $page='template.inc.php';
    }
    
    $nav->setTabActive('emails');
    require(STAFFINC_DIR.'header.inc.php');
    require(STAFFINC_DIR.$page);
    include(STAFFINC_DIR.'footer.inc.php');
    ?>