X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;ds=sidebyside;f=plugins%2Fgofax%2Ffaxreports%2Fclass_faxreport.inc;h=8846a396ffb1d9cba60863bcaf4f956ea1633866;hb=38d31b530c376c6863229931f8139dae911e179b;hp=fcb8448e2dbb852d31caceebd8eebc6acb3438f1;hpb=5e2e1c9804c178909e0d6733124724083136cb08;p=gosa.git diff --git a/plugins/gofax/faxreports/class_faxreport.inc b/plugins/gofax/faxreports/class_faxreport.inc index fcb8448e2..8846a396f 100644 --- a/plugins/gofax/faxreports/class_faxreport.inc +++ b/plugins/gofax/faxreports/class_faxreport.inc @@ -3,357 +3,376 @@ class faxreport extends plugin { /* Definitions */ - var $plHeadline= "FAX Reports"; - var $plDescription= "This does something"; + var $plHeadline = "FAX Reports"; + var $plDescription = "This does something"; /* For internal use */ - var $start= 0; - var $search_for= "*"; - var $search_base= ""; - var $year= ""; - var $month= ""; - var $sort= 1; - var $sort_direction= "down"; - var $report_list= array(); - var $userfilter= ""; - var $ui= NULL; - - var $range = 20; + var $start = 0; + var $search_for = "*"; + var $search_base = ""; + var $year = ""; + var $month = ""; + var $sort = 1; + var $sort_direction = "down"; + var $report_list = array(); + var $ui = NULL; + var $range = 20; /* Constant stuff */ var $status= array( "SENT", "MAILED", "SERROR", "RERROR", "SBLOCK", "RBLOCK", - "DELETED", "REQUEUED", "DISABLED", "PRINTED", "DIVERTED", - "UNDEFINED", "UNDEFINED", "UNDEFINED", "UNDEFINED", - "UNDEFINED"); + "DELETED", "REQUEUED", "DISABLED", "PRINTED", "DIVERTED", + "UNDEFINED", "UNDEFINED", "UNDEFINED", "UNDEFINED", + "UNDEFINED"); var $fields= array("uid", "queuing_time", "status", "sender_id", "receiver_id", "pages"); - /* attribute list for save action */ - var $attributes= array("search_for","search_base","month","year"); + /* these vars will be stored in session to be able to remember last search config */ + var $attributes_SO= array("search_for","search_base","month","year","start","year","month","sort","sort_direction","range"); var $objectclasses= array(); + /* Create class */ function faxreport ($config, $ui) { - /* Include config object */ - $this->config= $config; - $this->ui= $ui; - - /* Try to get matching search base for user provided - by 'dn' */ - $tmp= preg_replace ("/^[^,]+,[^,]+,/", "", $ui->dn); - $sb= array_search($tmp, $this->config->departments); - if ($sb === FALSE){ - $sb= "/"; - } - $this->search_base= $sb; - - /* Get global filter config */ - if (!is_global("faxreportfilter")){ - $ui= get_userinfo(); - $base= get_base_from_people($ui->dn); - $faxfilter= array("year" => date("Y"), - "month" => date("m"), - "search_base" => $base, - "search_for" => "*"); - register_global("faxreportfilter", $faxfilter); - $this->year = date("Y"); - $this->month = date("m"); - $this->search_base = $base; - $this->search_for = "*"; - }else{ - $this->year = $_SESSION['faxreportfilter']['year']; - $this->month = $_SESSION['faxreportfilter']['month']; - $this->search_base = $_SESSION['faxreportfilter']['search_base']; - $this->search_for = $_SESSION['faxreportfilter']['search_for']; - } + /* Include config object */ + $this->config = $config; + $this->ui = $ui; + $this->search_base = get_base_from_people($ui->dn); + $this->year = date("Y"); + $this->month = date("m"); + + /* Get global filter config and set class vars , + or create a filter */ + if (!is_global("faxreportfilter")){ + $faxreportfilter = array(); + foreach($this->attributes_SO as $name){ + $faxreportfilter[$name] = $this->$name; + } + register_global("faxreportfilter",$faxreportfilter); + }else{ + $faxreportfilter = get_global("faxreportfilter"); + foreach($this->attributes_SO as $name){ + $this->$name = $faxreportfilter[$name]; + } + } } + + /* Create Filter & Search & Display results */ function execute() { - /* Call parent execute */ - plugin::execute(); - - $months= array(); - $months[1]= _("January"); $months[2]= _("February"); $months[3]= _("March"); $months[4]= _("April"); - $months[5]= _("May"); $months[6]= _("June"); $months[7]= _("July"); $months[8]= _("August"); - $months[9]= _("September"); $months[10]= _("October"); $months[11]= _("November"); $months[12]= _("December"); - - $current= date("Y"); - $years= array(); - for ($y= $current - 5; $y<=$current; $y++){ - $years[]= $y; - } - - /* Get template engine */ - $faxfilter= get_global("faxreportfilter"); - foreach( array("year", "month", "search_for", "search_base") as $type){ - if (isset($_POST[$type])){ - $faxfilter[$type]= $_POST[$type]; - } - $this->$type= $faxfilter[$type]; - } - register_global("faxreportfilter", $faxfilter); - $smarty= get_smarty(); - $smarty->assign("launchimage" , get_template_path('images/launch.png')); - $smarty->assign("search_image" , get_template_path('images/search.png')); - $smarty->assign("search_for" , $this->search_for); - $smarty->assign("bases" , $this->config->idepartments); + /* Call parent execute */ + plugin::execute(); + + /************ + Variable initialisation + ************/ + + /* Create months */ + $months= array(); + for($i = 1 ; $i <= 12 ; $i ++ ){ + $months[$i] = _(date("F",gmmktime(0,0,0,$i))); + } + + /* Create years */ + $current= date("Y"); + $years= array(); + for ($y= $current - 5; $y<=$current; $y++){ + $years[]= $y; + } + + + /************ + Set smarty defaults + ************/ + + $smarty= get_smarty(); + $smarty->assign("launchimage" , get_template_path('images/launch.png')); + $smarty->assign("search_image" , get_template_path('images/search.png')); + $smarty->assign("search_for" , $this->search_for); + $smarty->assign("bases" , $this->config->idepartments); $smarty->assign("base_select" , $this->search_base); - $smarty->assign("months" , $months); - $smarty->assign("month_select" , $this->month); - $smarty->assign("years" , $years); - $smarty->assign("year_select" , $this->year); - $smarty->assign("search_result" , ""); - - /* Some checks */ - if(!isset($this->config->data['SERVERS']['FAX'])){ - print_red(_("Can't connect to fax database, no reports can be shown!")); - return($smarty->fetch(get_template_path('contents.tpl', TRUE))); - }elseif(!is_callable("mysql_connect")){ - print_red(_("There is no mysql extension available, please check your php setup.")); - return($smarty->fetch(get_template_path('contents.tpl', TRUE))); - }else{ - /* Connecting, selecting database */ - $cfg = $this->config->data['SERVERS']['FAX']; - $link = @mysql_pconnect($cfg['SERVER'], $cfg['LOGIN'], $cfg['PASSWORD']); - if ($link === FALSE){ - print_red(_("Can't connect to fax database, no reports can be shown!")); - return($smarty->fetch(get_template_path('contents.tpl', TRUE))); - } - if (! @mysql_select_db("gofax")){ - print_red(_("Can't select fax database for report generation!")); - return($smarty->fetch(get_template_path('contents.tpl', TRUE))); - } - - if (! mysql_query("SELECT * FROM faxlog;")){ - print_red(_("Can't select fax database for report generation!")); - return($smarty->fetch(get_template_path('contents.tpl', TRUE))); - } - } - - if(isset($_POST['EntriesPerPage'])){ - $this->range = $_POST['EntriesPerPage']; - } - - - /* Adapt sorting */ - if (isset($_GET['sort'])){ - if ($this->sort == (int)$_GET['sort']){ - if ($this->sort_direction == "down"){ - $this->sort_direction= "up"; - } else { - $this->sort_direction= "down"; - } - } - $this->sort= (int)$_GET['sort']; - if ($this->sort < 0 || $this->sort > 5){ - $this->sort= 0; - } - } - - /* Do detail view? */ - if (isset($_GET['detail'])){ - $query = "SELECT id,uid,date_format(queuing_time, '%Y%m%d%H%i%s') as queuing_time,status,sender_id,sender_msn,receiver_id,". - "receiver_msn,pages,status_message,transfer_time FROM faxlog ". - "WHERE id=".$_GET['detail'].";"; - - /* Connecting, selecting database */ - $cfg= $this->config->data['SERVERS']['FAX']; - - - $link = @mysql_pconnect($cfg['SERVER'], $cfg['LOGIN'], $cfg['PASSWORD']); - if ($link === FALSE){ - print_red(_("Can't connect to fax database, no reports can be shown!")); - return($smarty->fetch(get_template_path('contents.tpl', TRUE))); - } - if (! @mysql_select_db("gofax")){ - print_red(_("Can't select fax database for report generation!")); - return($smarty->fetch(get_template_path('contents.tpl', TRUE))); - } - - @DEBUG (DEBUG_MYSQL, __LINE__, __FUNCTION__, __FILE__, - $query, "Database query"); - $result = @mysql_query($query); - if ($result === false){ - print_red(_("Query for fax database failed!")); - return($smarty->fetch(get_template_path('contents.tpl', TRUE))); - } - - $line = mysql_fetch_array($result, MYSQL_ASSOC); - mysql_close($link); - - if (!preg_match ("/'".$line["uid"]."'/", $this->userfilter)){ - print_red (_("You have no permission to retrieve informations about this fax id!")); - return($smarty->fetch(get_template_path('contents.tpl', TRUE))); - } - - $parts= array( "id", "uid", "queuing_time", "status", "sender_id", "sender_msn", - "receiver_id", "receiver_msn", "pages", "status_message", "transfer_time" ); - foreach ($parts as $vname) { - $final="fax_$vname"; - if ($line[$vname] != ""){ - $smarty->assign("$final", $line[$vname]); - } else { - $smarty->assign("$final", "-"); - } - } - $queuing_time= $line['queuing_time']; - - $_SESSION['fuserfilter']= $this->userfilter; - $smarty->assign("plug", "?plug=".validate($_GET['plug'])); - $smarty->assign("detail", validate($_GET['detail'])); - - $format= _("Y-M-D"); - $date= preg_replace("/Y/", substr($queuing_time,0,4), $format); - $date= preg_replace("/M/", substr($queuing_time,4,2), $date); - $date= preg_replace("/D/", substr($queuing_time,6,2), $date); - $smarty->assign("date", $date); - $smarty->assign("time", substr($queuing_time,8,2).":". - substr($queuing_time,10,2).":". - substr($queuing_time,12,2)); - return($smarty->fetch(get_template_path('detail.tpl', TRUE))); - } - - /* Search button has been pressed */ - if ($this->search_for != ""){ - $this->start= 0; - - if (is_integer (strpos($this->search_for, "*"))){ - $s= $this->search_for; - } else { - $s= "*".$this->search_for."*"; - } - $ldap= $this->config->get_ldap_link(); - $ldap->cd ($this->search_base); - - /* Perform ldap search for potential users */ - $ldap->search ("(&(objectClass=gosaAccount)(!(objectClass=gosaUserTemplate))". - "(objectClass=goFaxAccount)". - "(|(uid=$s)(l=$s)(homePhone=$s)". - "(telephoneNumber=$s)(facsimileTelephoneNumber=$s)(mobile=$s)". - "(pager=$s)(cn=$s)(givenName=$s)(sn=$s)(personalTitle=$s)". - "(title=$s)))"); - - $fax_users= array(); - while ($attrs= $ldap->fetch()){ - - if (chkacl ($this->acl, "faxreport") == ""){ - $fax_users[]= $attrs["uid"][0]; - } - } - - /* Prepare SQL query */ - $this->userfilter= ""; - foreach ($fax_users as $user){ - $this->userfilter.= "uid = '$user' OR "; - } - $this->userfilter= preg_replace("/OR $/", "", $this->userfilter); - } - - /* Perform SQL query */ - if ($this->userfilter){ - if ($this->sort_direction == "down"){ - $desc= "DESC"; - } else { - $desc= ""; - } - $start= date ("YmdHis", mktime(0,0,0,$this->month,1,$this->year)); - $end= date ("YmdHis", mktime(23,59,59,$this->month+1,0,$this->year)); - $query = "SELECT id,uid,date_format(queuing_time, '%Y%m%d%H%i%s') as queuing_time,status,sender_id,receiver_id,pages FROM faxlog ". - "WHERE ( ".$this->userfilter." ) AND queuing_time <= $end AND ". - "queuing_time >= $start ORDER BY ".$this->fields[$this->sort]." $desc;"; - - if(!is_callable("mysql_connect")){ - print_red("There is no mysql extension configured in your php setup."); - return($smarty->fetch(get_template_path('contents.tpl', TRUE))); - } - - /* Connecting, selecting database */ - $cfg= $this->config->data['SERVERS']['FAX']; - $link = @mysql_pconnect($cfg['SERVER'], $cfg['LOGIN'], $cfg['PASSWORD']); - if ($link === FALSE){ - print_red(_("Can't connect to fax database, no reports can be shown!")); + $smarty->assign("months" , $months); + $smarty->assign("month_select" , $this->month); + $smarty->assign("years" , $years); + $smarty->assign("year_select" , $this->year); + $smarty->assign("search_result" , ""); + + + /************ + Check database accessibility + ************/ + + /* Some checks */ + if(!isset($this->config->data['SERVERS']['FAX'])){ + print_red(_("Can't connect to fax database, no reports can be shown!")); return($smarty->fetch(get_template_path('contents.tpl', TRUE))); - } - if (! @mysql_select_db("gofax")){ - print_red(_("Can't select fax database for report generation!")); + }elseif(!is_callable("mysql_connect")){ + print_red(_("There is no mysql extension available, please check your php setup.")); return($smarty->fetch(get_template_path('contents.tpl', TRUE))); - } - - @DEBUG (DEBUG_MYSQL, __LINE__, __FUNCTION__, __FILE__, - $query, "Database query"); - $result = @mysql_query($query); - if ($result === false){ - print_red(_("Query for fax database failed!")); - return($smarty->fetch(get_template_path('contents.tpl', TRUE))); - } - - $report_list= array(); - while ($line = mysql_fetch_array($result, MYSQL_ASSOC)) { - $hour= substr($line["queuing_time"], 8, 2); - $minute=substr($line["queuing_time"], 10, 2); - $format= _("Y-M-D"); - $date= preg_replace("/Y/", substr($line["queuing_time"], 0, 4), $format); - $date= preg_replace("/M/", substr($line["queuing_time"], 4, 2), $date); - $date= preg_replace("/D/", substr($line["queuing_time"], 6, 2), $date); - - - $report_list[]= "\"\" ".$line["uid"]."". - "$date $hour:$minute". - "".$this->status[$line["status"]]."". - "".$line["sender_id"]."". - "".$line["receiver_id"]."". - "".$line["pages"].""; - } - - $this->report_list= $report_list; - mysql_close($link); - } - - /* Generate output */ - $mod= 0; - if (isset($_GET['start'])){ - $this->start= (int)$_GET['start']; - } - - $output= ""; - foreach ($this->report_list as $val){ - if ($mod < $this->start) { - $mod++; - continue; - } - if ($mod >= ($this->start + $this->range)){ - $mod++; - break; - } - if ( ($mod++) & 1){ - $col= "background-color: #ECECEC;"; - } else { - $col= "background-color: #F5F5F5;"; - } - $output.= "$val"; - } - - - if (isset($fax_users) && count($fax_users)){ - $smarty->assign("search_result", $output); - $smarty->assign("range_selector", range_selector(count($this->report_list), $this->start, $this->range,"EntriesPerPage")); - }else{ - $smarty->assign("search_result", ""); - } - - - - /* Show main page */ + }else{ + /* Connecting, selecting database */ + $cfg = $this->config->data['SERVERS']['FAX']; + $link = @mysql_pconnect($cfg['SERVER'], $cfg['LOGIN'], $cfg['PASSWORD']); + if ($link === FALSE){ + print_red(_("Can't connect to fax database, no reports can be shown!")); + return($smarty->fetch(get_template_path('contents.tpl', TRUE))); + } + if (! @mysql_select_db("gofax")){ + print_red(_("Can't select fax database for report generation!")); + return($smarty->fetch(get_template_path('contents.tpl', TRUE))); + } + + if (! mysql_query("SELECT * FROM faxlog;")){ + print_red(_("Can't select fax database for report generation!")); + return($smarty->fetch(get_template_path('contents.tpl', TRUE))); + } + } + + + /************ + Perform a deatil view + ************/ + + /* Do detail view? */ + if (isset($_GET['detail'])){ + + /* Create query */ + $query = "SELECT id,uid,date_format(queuing_time, '%Y%m%d%H%i%s') as queuing_time,status,sender_id,sender_msn,receiver_id,". + "receiver_msn,pages,status_message,transfer_time FROM faxlog WHERE id=".$_GET['detail'].";"; + + /* Connecting, selecting database */ + $cfg= $this->config->data['SERVERS']['FAX']; + + /* Check if everything went ok*/ + $result = @mysql_query($query); + if ($result === false){ + print_red(_("Query for fax database failed!")); + @DEBUG (DEBUG_MYSQL, __LINE__, __FUNCTION__, __FILE__,$query, "Database query failed"); + return($smarty->fetch(get_template_path('contents.tpl', TRUE))); + } + + $line = mysql_fetch_array($result, MYSQL_ASSOC); + mysql_close($link); + + if (!preg_match ("/'".$line["uid"]."'/", $this->userfilter)){ + print_red (_("You have no permission to retrieve informations about this fax id!")); + return($smarty->fetch(get_template_path('contents.tpl', TRUE))); + } + + $parts= array( "id", "uid", "queuing_time", "status", "sender_id", "sender_msn", + "receiver_id", "receiver_msn", "pages", "status_message", "transfer_time" ); + foreach ($parts as $vname) { + $final="fax_$vname"; + if ($line[$vname] != ""){ + $smarty->assign("$final", $line[$vname]); + } else { + $smarty->assign("$final", "-"); + } + } + $queuing_time= $line['queuing_time']; + + $_SESSION['fuserfilter']= $this->userfilter; + $smarty->assign("plug", "?plug=".validate($_GET['plug'])); + $smarty->assign("detail", validate($_GET['detail'])); + + $format= _("Y-M-D"); + $date= preg_replace("/Y/", substr($queuing_time,0,4), $format); + $date= preg_replace("/M/", substr($queuing_time,4,2), $date); + $date= preg_replace("/D/", substr($queuing_time,6,2), $date); + $smarty->assign("date", $date); + $smarty->assign("time", substr($queuing_time,8,2).":". + substr($queuing_time,10,2).":". + substr($queuing_time,12,2)); + return($smarty->fetch(get_template_path('detail.tpl', TRUE))); + } + + + /************ + Search for uids matching the filter + ************/ + + /* Search button has been pressed */ + if ($this->search_for != ""){ + + if (is_integer (strpos($this->search_for, "*"))){ + $s= $this->search_for; + } else { + $s= "*".$this->search_for."*"; + } + $ldap= $this->config->get_ldap_link(); + $ldap->cd ($this->search_base); + + /* Perform ldap search for potential users */ + $ldap->search ("(&(objectClass=gosaAccount)(!(objectClass=gosaUserTemplate))". + "(objectClass=goFaxAccount)". + "(|(uid=$s)(l=$s)(homePhone=$s)". + "(telephoneNumber=$s)(facsimileTelephoneNumber=$s)(mobile=$s)". + "(pager=$s)(cn=$s)(givenName=$s)(sn=$s)(personalTitle=$s)". + "(title=$s)))"); + + $fax_users= array(); + while ($attrs= $ldap->fetch()){ + + if (chkacl ($this->acl, "faxreport") == ""){ + $fax_users[]= $attrs["uid"][0]; + } + } + + /* Prepare SQL query */ + $this->userfilter= ""; + foreach ($fax_users as $user){ + $this->userfilter.= "uid = '$user' OR "; + } + $this->userfilter= preg_replace("/OR $/", "", $this->userfilter); + } + + + /************ + Create filter + ************/ + + /* Perform SQL query */ + if ($this->userfilter){ + if ($this->sort_direction == "down"){ + $desc= "DESC"; + } else { + $desc= ""; + } + $start= date ("YmdHis", mktime(0,0,0,$this->month,1,$this->year)); + $end= date ("YmdHis", mktime(23,59,59,$this->month+1,0,$this->year)); + $query = "SELECT id,uid,date_format(queuing_time, '%Y%m%d%H%i%s') as queuing_time,status,sender_id,receiver_id,pages FROM faxlog ". + "WHERE ( ".$this->userfilter." ) AND queuing_time <= $end AND ". + "queuing_time >= $start ORDER BY ".$this->fields[$this->sort]." $desc;"; + + if(!is_callable("mysql_connect")){ + print_red("There is no mysql extension configured in your php setup."); + return($smarty->fetch(get_template_path('contents.tpl', TRUE))); + } + + + /************ + Create results + ************/ + + /* Connecting, selecting database */ + $cfg= $this->config->data['SERVERS']['FAX']; + $link = @mysql_pconnect($cfg['SERVER'], $cfg['LOGIN'], $cfg['PASSWORD']); + + @DEBUG (DEBUG_MYSQL, __LINE__, __FUNCTION__, __FILE__,$query, "Database query"); + $result = @mysql_query($query); + if ($result === false){ + print_red(_("Query for fax database failed!")); + return($smarty->fetch(get_template_path('contents.tpl', TRUE))); + } + + $report_list= array(); + while ($line = mysql_fetch_array($result, MYSQL_ASSOC)) { + $hour= substr($line["queuing_time"], 8, 2); + $minute=substr($line["queuing_time"], 10, 2); + $format= _("Y-M-D"); + $date= preg_replace("/Y/", substr($line["queuing_time"], 0, 4), $format); + $date= preg_replace("/M/", substr($line["queuing_time"], 4, 2), $date); + $date= preg_replace("/D/", substr($line["queuing_time"], 6, 2), $date); + + + $report_list[]= "\"\" ".$line["uid"]."". + "$date $hour:$minute". + "".$this->status[$line["status"]]."". + "".$line["sender_id"]."". + "".$line["receiver_id"]."". + "".$line["pages"].""; + } + + $this->report_list= $report_list; + mysql_close($link); + } + + + /************ + Create output out of results + ************/ + + /* Generate output */ + $mod= 0; + $output= ""; + foreach ($this->report_list as $val){ + if ($mod < $this->start) { + $mod++; + continue; + } + if ($mod >= ($this->start + $this->range)){ + $mod++; + break; + } + if ( ($mod++) & 1){ + $col= "background-color: #ECECEC;"; + } else { + $col= "background-color: #F5F5F5;"; + } + $output.= "$val"; + } + + + /************ + Display results + ************/ + + if (isset($fax_users) && count($fax_users)){ + $smarty->assign("search_result", $output); + $smarty->assign("range_selector", range_selector(count($this->report_list), $this->start, $this->range,"EntriesPerPage")); + }else{ + $smarty->assign("search_result", ""); + } + + /* Show main page */ $smarty->assign("plug", "?plug=".validate($_GET['plug'])); - for($i= 0; $i<7; $i++){ - $smarty->assign("mode$i", ""); - } - $smarty->assign("mode".$this->sort, "\"\"sort_direction. - ".png\" border=0 align=middle>"); + for($i= 0; $i<7; $i++){ + $smarty->assign("mode$i", ""); + } + $smarty->assign("mode".$this->sort, "\"\"sort_direction. + ".png\" border=0 align=middle>"); return($smarty->fetch(get_template_path('contents.tpl', TRUE))); } + + /* Save ui input, and store it in $_SESSION + to remember last search next time*/ + function save_object() + { + $faxreportfilter = get_global("faxreportfilter"); + if(isset($_POST['EntriesPerPage'])){ + $this->range = $_POST['EntriesPerPage']; + } + + if (isset($_GET['start'])){ + $this->start= (int)$_GET['start']; + } + + /* Adapt sorting */ + if (isset($_GET['sort'])){ + if ($this->sort == (int)$_GET['sort']){ + if ($this->sort_direction == "down"){ + $this->sort_direction= "up"; + } else { + $this->sort_direction= "down"; + } + } + $this->sort= (int)$_GET['sort']; + if ($this->sort < 0 || $this->sort > 5){ + $this->sort= 0; + } + } + foreach( array("year", "month", "search_for", "search_base") as $type){ + if (isset($_POST[$type])){ + $faxreportfilter[$type]= $_POST[$type]; + } + $this->$type= $faxreportfilter[$type]; + } + foreach($this->attributes_SO as $name){ + $faxreportfilter[$name] = $this->$name; + } + register_global("faxreportfilter",$faxreportfilter); + } } // vim:tabstop=2:expandtab:shiftwidth=2:filetype=php:syntax:ruler: ?>