summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 36e42c2)
raw | patch | inline | side by side (parent: 36e42c2)
author | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Tue, 29 Nov 2005 08:12:18 +0000 (08:12 +0000) | ||
committer | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Tue, 29 Nov 2005 08:12:18 +0000 (08:12 +0000) |
Looks like mailQueue addon now.
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@2112 594d385d-05f5-0310-b6e9-bd551577e9d8
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@2112 594d385d-05f5-0310-b6e9-bd551577e9d8
plugins/gofon/fonreports/class_fonreport.inc | patch | blob | history |
diff --git a/plugins/gofon/fonreports/class_fonreport.inc b/plugins/gofon/fonreports/class_fonreport.inc
index 4a08c04cac148f37c0856b7bfa892e699c602c23..4979edcc1ab4a4385869116ac2409d9eee65478a 100644 (file)
/* Call parent execute */
plugin::execute();
+ /* Get template engine */
+ $smarty= get_smarty();
+
+ $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");
+
+ /* Prepare template */
+ $current= date("Y");
+ $years= array();
+ for ($y= $current - 5; $y<=$current; $y++){
+ $years[]= $y;
+ }
+
+ $smarty->assign("plug" , "?plug=".validate($_GET['plug']));
+ $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" , "");
+
+ /* Connecting, selecting database */
+ if (!isset($this->config->data['SERVERS']['FON'])){
+ print_red("There is no asterisk database defined. Can't query anything.");
+ return($smarty->fetch(get_template_path('contents.tpl', TRUE)));
+ }elseif(!is_callable("mysql_connect")){
+ print_red("There is no mysql extension available. Can't establish database connection.");
+ return($smarty->fetch(get_template_path('contents.tpl', TRUE)));
+ }else{
+
+ $cfg= $this->config->data['SERVERS']['FON'];
+ $link = @mysql_pconnect($cfg['SERVER'], $cfg['LOGIN'], $cfg['PASSWORD']);
+ if ($link === FALSE){
+ print_red(_("Can't connect to phone database, no reports can be shown!. Check server,username and password combination."));
+ return($smarty->fetch(get_template_path('contents.tpl', TRUE)));
+ }
+ if (! @mysql_select_db("gophone")){
+ print_red(_("Can't select phone (gophone) database for report generation!"));
+ return($smarty->fetch(get_template_path('contents.tpl', TRUE)));
+ }
+ }
+
+
if(isset($_POST['EntryPerPage'])){
$this->range = $_POST['EntryPerPage'];
}
- /* Get template engine */
- $smarty= get_smarty();
$fonfilter= get_global("fonfilter");
foreach( array("year", "month", "search_for", "search_base") as $type){
if (isset($_POST[$type])){
"WHERE calldate <= $end AND ".
"calldate >= $start ORDER BY ".$this->fields[$this->sort]." $desc;";
- /* Connecting, selecting database */
- if (!isset($this->config->data['SERVERS']['FON'])){
- return ("");
- }
-
- if(!is_callable("mysql_connect")){
- print_red("There is no mysql extension available.");
- return;
- }
-
$cfg= $this->config->data['SERVERS']['FON'];
$link = @mysql_pconnect($cfg['SERVER'], $cfg['LOGIN'], $cfg['PASSWORD']);
- if ($link === FALSE){
- print_red(_("Can't connect to phone database, no reports can be shown!"));
- return;
- }
- if (! @mysql_select_db("gophone")){
- print_red(_("Can't select phone database for report generation!"));
- return;
- }
@DEBUG (DEBUG_MYSQL, __LINE__, __FUNCTION__, __FILE__,
$query, "Database query");
$result = @mysql_query($query);
if ($result === false){
print_red(_("Query for phone database failed!"));
- return;
+ return($smarty->fetch(get_template_path('contents.tpl', TRUE)));
}
$report_list= array();
while ($line = mysql_fetch_array($result, MYSQL_ASSOC)) {
}
$this->report_list= $report_list;
- mysql_close($link);
-# }
+ @mysql_close($link);
+# }
/* Generate output */
$mod= 0;
$output.= "<tr style=\"height:22px; $col\">$val</tr>";
}
- /* Prepare template */
- $smarty->assign("search_for", $this->search_for);
- $smarty->assign("bases", $this->config->idepartments);
- $smarty->assign("base_select", $this->search_base);
- $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");
- $smarty->assign("months", $months);
- $smarty->assign("month_select", $this->month);
- $current= date("Y");
- $years= array();
- for ($y= $current - 5; $y<=$current; $y++){
- $years[]= $y;
- }
- $smarty->assign("years", $years);
- $smarty->assign("year_select", $this->year);
if ($output != ""){
$smarty->assign("search_result", $output);
}
/* Show main page */
- $smarty->assign("plug", "?plug=".validate($_GET['plug']));
- $smarty->assign("launchimage", get_template_path('images/launch.png'));
- $smarty->assign("search_image", get_template_path('images/search.png'));
for($i= 0; $i<7; $i++){
$smarty->assign("mode$i", "");
}