<?php if(!defined('OSTSTAFFINC') || !$thisstaff || !$thisstaff->isStaff()) die('Access Denied'); $qstr=''; $select='SELECT staff.*,CONCAT_WS(" ",firstname,lastname) as name,dept.name as dept '; $from='FROM '.STAFF_TABLE.' staff '. 'LEFT JOIN '.DEPT_TABLE.' dept ON(staff.dept_id=dept.dept_id) '; $where='WHERE staff.isvisible=1 '; $agents = Staff::objects() ->filter(array('isvisible'=>1)) ->select_related('dept'); if($_REQUEST['q']) { $searchTerm=$_REQUEST['q']; if($searchTerm){ $query=db_real_escape($searchTerm,false); //escape the term ONLY...no quotes. if(is_numeric($searchTerm)){ $agents->filter(Q::any(array( 'phone__contains'=>$searchTerm, 'phone_ext__contains'=>$searchTerm, 'mobile__contains'=>$searchTerm, ))); }elseif(strpos($searchTerm,'@') && Validator::is_email($searchTerm)){ $agents->filter(array('email'=>$searchTerm)); }else{ $agents->filter(Q::any(array( 'email__contains'=>$searchTerm, 'lastname__contains'=>$searchTerm, 'firstname__contains'=>$searchTerm, ))); } } } if($_REQUEST['did'] && is_numeric($_REQUEST['did'])) { $agents->filter(array('dept'=>$_REQUEST['did'])); $qstr.='&did='.urlencode($_REQUEST['did']); } $sortOptions=array('name'=>'firstname,lastname','email'=>'email','dept'=>'dept__name', 'phone'=>'phone','mobile'=>'mobile','ext'=>'phone_ext', 'created'=>'created','login'=>'lastlogin'); $orderWays=array('DESC'=>'-','ASC'=>''); $sort=($_REQUEST['sort'] && $sortOptions[strtolower($_REQUEST['sort'])])?strtolower($_REQUEST['sort']):'name'; //Sorting options... if($sort && $sortOptions[$sort]) { $order_column =$sortOptions[$sort]; } $order_column = $order_column ?: 'firstname,lastname'; if($_REQUEST['order'] && $orderWays[strtoupper($_REQUEST['order'])]) { $order=$orderWays[strtoupper($_REQUEST['order'])]; } $x=$sort.'_sort'; $$x=' class="'.strtolower($_REQUEST['order'] ?: 'desc').'" '; foreach (explode(',', $order_column) as $C) { $agents->order_by($order.$C); } $total=$agents->count(); $page=($_GET['p'] && is_numeric($_GET['p']))?$_GET['p']:1; $pageNav=new Pagenate($total, $page, PAGE_LIMIT); $pageNav->setURL('directory.php',$qstr.'&sort='.urlencode($_REQUEST['sort']).'&order='.urlencode($_REQUEST['order'])); $pageNav->paginate($agents); //Ok..lets roll...create the actual query $qstr.='&order='.($order=='-'?'ASC':'DESC'); ?> <h2><?php echo __('Agents');?> <i class="help-tip icon-question-sign" href="#staff_members"></i></h2> <div class="pull-left" style="width:700px"> <form action="directory.php" method="GET" name="filter"> <input type="text" name="q" value="<?php echo Format::htmlchars($_REQUEST['q']); ?>" > <select name="did" id="did"> <option value="0">— <?php echo __('All Departments');?> —</option> <?php foreach (Dept::getDepartments(array('nonempty'=>1)) as $id=>$name) { $sel=($_REQUEST['did'] && $_REQUEST['did']==$id)?'selected="selected"':''; echo sprintf('<option value="%d" %s>%s</option>',$id,$sel,$name); } ?> </select> <input type="submit" name="submit" value="<?php echo __('Filter');?>"/> <i class="help-tip icon-question-sign" href="#apply_filtering_criteria"></i> </form> </div> <div class="clear"></div> <?php if ($agents->exists(true)) $showing=$pageNav->showing(); else $showing=__('No agents found!'); ?> <table class="list" border="0" cellspacing="1" cellpadding="0" width="940"> <caption><?php echo $showing; ?></caption> <thead> <tr> <th width="160"><a <?php echo $name_sort; ?> href="directory.php?<?php echo $qstr; ?>&sort=name"><?php echo __('Name');?></a></th> <th width="150"><a <?php echo $dept_sort; ?>href="directory.php?<?php echo $qstr; ?>&sort=dept"><?php echo __('Department');?></a></th> <th width="180"><a <?php echo $email_sort; ?>href="directory.php?<?php echo $qstr; ?>&sort=email"><?php echo __('Email Address');?></a></th> <th width="120"><a <?php echo $phone_sort; ?> href="directory.php?<?php echo $qstr; ?>&sort=phone"><?php echo __('Phone Number');?></a></th> <th width="80"><a <?php echo $ext_sort; ?> href="directory.php?<?php echo $qstr; ?>&sort=ext"><?php echo __(/* As in a phone number `extension` */ 'Extension');?></a></th> <th width="120"><a <?php echo $mobile_sort; ?> href="directory.php?<?php echo $qstr; ?>&sort=mobile"><?php echo __('Mobile Number');?></a></th> </tr> </thead> <tbody> <?php $ids=($errors && is_array($_POST['ids']))?$_POST['ids']:null; foreach ($agents as $A) { ?> <tr id="<?php echo $A->staff_id; ?>"> <td> <?php echo Format::htmlchars($A->getName()); ?></td> <td> <?php echo Format::htmlchars((string) $A->dept); ?></td> <td> <?php echo Format::htmlchars($A->email); ?></td> <td> <?php echo Format::phone($A->phone); ?></td> <td> <?php echo $A->phone_ext; ?></td> <td> <?php echo Format::phone($A->mobile); ?></td> </tr> <?php } // end of foreach ?> <tfoot> <tr> <td colspan="6"> <?php if ($agents->exists(true)) { echo '<div> '.__('Page').':'.$pageNav->getPageLinks().' </div>'; ?> <?php } else { echo __('No agents found!'); } ?> </td> </tr> </tfoot> </table>