Skip to content
Snippets Groups Projects
emails.inc.php 6.2 KiB
Newer Older
  • Learn to ignore specific revisions
  • Jared Hancock's avatar
    Jared Hancock committed
    <?php
    
    if(!defined('OSTADMININC') || !$thisstaff->isAdmin()) die('Access Denied');
    
    Jared Hancock's avatar
    Jared Hancock committed
    
    $qstr='';
    
    Peter Rotich's avatar
    Peter Rotich committed
    $sortOptions = array(
            'email' => 'email',
            'dept' => 'dept__name',
            'priority' => 'priority__priority_desc',
            'created' => 'created',
            'updated' => 'updated');
    
    
    $orderWays = array('DESC'=>'DESC', 'ASC'=>'ASC');
    $sort = ($_REQUEST['sort'] && $sortOptions[strtolower($_REQUEST['sort'])]) ?  strtolower($_REQUEST['sort']) : 'email';
    if ($sort && $sortOptions[$sort]) {
            $order_column = $sortOptions[$sort];
    
    Peter Rotich's avatar
    Peter Rotich committed
    $order_column = $order_column ? $order_column : 'email';
    
    if ($_REQUEST['order'] && isset($orderWays[strtoupper($_REQUEST['order'])]))
    {
            $order = $orderWays[strtoupper($_REQUEST['order'])];
    } else {
            $order = 'ASC';
    
    Jared Hancock's avatar
    Jared Hancock committed
    $x=$sort.'_sort';
    $$x=' class="'.strtolower($order).'" ';
    
    Peter Rotich's avatar
    Peter Rotich committed
    $page = ($_GET['p'] && is_numeric($_GET['p'])) ? $_GET['p'] : 1;
    $count = EmailModel::objects()->count();
    $pageNav = new Pagenate($count, $page, PAGE_LIMIT);
    $_qstr = $qstr.'&sort='.urlencode($_REQUEST['sort']).'&order='.urlencode($_REQUEST['order']);
    $pageNav->setURL('emails.php', $_qstr);
    $showing = $pageNav->showing().' '._N('email', 'emails', $count);
    
    Jared Hancock's avatar
    Jared Hancock committed
    $qstr.='&order='.($order=='DESC'?'ASC':'DESC');
    
    
    $def_dept_id = $cfg->getDefaultDeptId();
    $def_dept_name = $cfg->getDefaultDept()->getName();
    $def_priority = $cfg->getDefaultPriority()->getDesc();
    
    Jared Hancock's avatar
    Jared Hancock committed
    ?>
    
    <div class="pull-left" style="width:700px;padding-top:5px;">
    
     <h2><?php echo __('Email Addresses');?></h2>
    
    Jared Hancock's avatar
    Jared Hancock committed
     </div>
    
    <div class="pull-right flush-right" style="padding-top:5px;padding-right:5px;">
    
        <b><a href="emails.php?a=add" class="Icon newEmail"><?php echo __('Add New Email');?></a></b></div>
    
    Jared Hancock's avatar
    Jared Hancock committed
    <div class="clear"></div>
    
    <form action="emails.php" method="POST" name="emails">
    
     <?php csrf_token(); ?>
    
    Jared Hancock's avatar
    Jared Hancock committed
     <input type="hidden" name="do" value="mass_process" >
    
     <input type="hidden" id="action" name="a" value="" >
    
    Jared Hancock's avatar
    Jared Hancock committed
     <table class="list" border="0" cellspacing="1" cellpadding="0" width="940">
        <caption><?php echo $showing; ?></caption>
        <thead>
            <tr>
    
                <th width="7">&nbsp;</th>
                <th width="400"><a <?php echo $email_sort; ?> href="emails.php?<?php echo $qstr; ?>&sort=email"><?php echo __('Email');?></a></th>
                <th width="120"><a  <?php echo $priority_sort; ?> href="emails.php?<?php echo $qstr; ?>&sort=priority"><?php echo __('Priority');?></a></th>
                <th width="250"><a  <?php echo $dept_sort; ?> href="emails.php?<?php echo $qstr; ?>&sort=dept"><?php echo __('Department');?></a></th>
                <th width="110" nowrap><a  <?php echo $created_sort; ?>href="emails.php?<?php echo $qstr; ?>&sort=created"><?php echo __('Created');?></a></th>
                <th width="150" nowrap><a  <?php echo $updated_sort; ?>href="emails.php?<?php echo $qstr; ?>&sort=updated"><?php echo __('Last Updated');?></a></th>
    
    Jared Hancock's avatar
    Jared Hancock committed
            </tr>
        </thead>
        <tbody>
        <?php
    
    Peter Rotich's avatar
    Peter Rotich committed
            $ids = ($errors && is_array($_POST['ids'])) ? $_POST['ids'] : null;
            if ($count):
    
    Jared Hancock's avatar
    Jared Hancock committed
                $defaultId=$cfg->getDefaultEmailId();
    
    Peter Rotich's avatar
    Peter Rotich committed
                $emails = EmailModel::objects()
                    ->order_by(sprintf('%s%s',
                                strcasecmp($order, 'DESC') ? '' : '-',
                                $order_column))
                    ->limit($pageNav->getLimit())
                    ->offset($pageNav->getStart());
    
                foreach ($emails as $email) {
                    $id = $email->getId();
    
    Jared Hancock's avatar
    Jared Hancock committed
                    $sel=false;
    
    Peter Rotich's avatar
    Peter Rotich committed
                    if ($ids && in_array($email, $ids))
    
    Jared Hancock's avatar
    Jared Hancock committed
                        $sel=true;
    
    Peter Rotich's avatar
    Peter Rotich committed
                    $default=($id==$defaultId);
    
    Jared Hancock's avatar
    Jared Hancock committed
                    ?>
    
    Peter Rotich's avatar
    Peter Rotich committed
                <tr id="<?php echo $id; ?>">
    
    Jared Hancock's avatar
    Jared Hancock committed
                    <td width=7px>
    
    Peter Rotich's avatar
    Peter Rotich committed
                      <input type="checkbox" class="ckb" name="ids[]"
                        value="<?php echo $id; ?>"
                        <?php echo $sel ? 'checked="checked"' : ''; ?>
                        <?php echo $default?'disabled="disabled"':''; ?>>
    
    Jared Hancock's avatar
    Jared Hancock committed
                    </td>
    
    Peter Rotich's avatar
    Peter Rotich committed
                    <td><span class="ltr"><a href="emails.php?id=<?php echo $id; ?>"><?php
                        echo Format::htmlchars((string) $email); ?></a></span></td>
                    <td><?php echo $email->priority ?: $def_priority; ?></td>
                    <td><a href="departments.php?id=<?php $email->dept_id ?: $def_dept_id; ?>"><?php
                        echo $email->dept ?: $def_dept_name; ?></a></td>
                    <td>&nbsp;<?php echo Format::date($email->created); ?></td>
                    <td>&nbsp;<?php echo Format::datetime($email->updated); ?></td>
    
    Jared Hancock's avatar
    Jared Hancock committed
                </tr>
                <?php
                } //end of while.
            endif; ?>
        <tfoot>
         <tr>
            <td colspan="6">
    
    Peter Rotich's avatar
    Peter Rotich committed
                <?php if ($count){ ?>
    
                <?php echo __('Select');?>:&nbsp;
    
                <a id="selectAll" href="#ckb"><?php echo __('All');?></a>&nbsp;&nbsp;
                <a id="selectNone" href="#ckb"><?php echo __('None');?></a>&nbsp;&nbsp;
                <a id="selectToggle" href="#ckb"><?php echo __('Toggle');?></a>&nbsp;&nbsp;
    
    Jared Hancock's avatar
    Jared Hancock committed
                <?php }else{
    
                    echo __('No help emails found');
    
    Jared Hancock's avatar
    Jared Hancock committed
                } ?>
            </td>
         </tr>
        </tfoot>
    </table>
    <?php
    
    Peter Rotich's avatar
    Peter Rotich committed
    if ($count):
    
        echo '<div>&nbsp;'.__('Page').':'.$pageNav->getPageLinks().'&nbsp;</div>';
    
    <p class="centered" id="actions">
    
        <input class="button" type="submit" name="delete" value="<?php echo __('Delete Email(s)');?>" >
    
    Jared Hancock's avatar
    Jared Hancock committed
    </p>
    <?php
    endif;
    ?>
    </form>
    
    
    <div style="display:none;" class="dialog" id="confirm-action">
    
        <h3><?php echo __('Please Confirm');?></h3>
    
        <a class="close" href=""><i class="icon-remove-circle"></i></a>
    
        <hr/>
        <p class="confirm-action" style="display:none;" id="delete-confirm">
    
            <font color="red"><strong><?php echo sprintf(__('Are you sure you want to DELETE %s?'),
                _N('selected email', 'selected emails', 2)) ;?></strong></font>
            <br><br><?php echo __('Deleted data CANNOT be recovered.');?>
    
        <div><?php echo __('Please confirm to continue.');?></div>
    
        <hr style="margin-top:1em"/>
        <p class="full-width">
    
            <span class="buttons pull-left">
    
                <input type="button" value="<?php echo __('No, Cancel');?>" class="close">
    
            <span class="buttons pull-right">
    
                <input type="button" value="<?php echo __('Yes, Do it!');?>" class="confirm">
    
            </span>
         </p>
        <div class="clear"></div>
    </div>