summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 1f73ef0)
raw | patch | inline | side by side (parent: 1f73ef0)
author | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Thu, 1 Apr 2010 13:38:02 +0000 (13:38 +0000) | ||
committer | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Thu, 1 Apr 2010 13:38:02 +0000 (13:38 +0000) |
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@17469 594d385d-05f5-0310-b6e9-bd551577e9d8
gosa-plugins/gofax/gofax/faxreports/class_faxreport.inc | patch | blob | history |
diff --git a/gosa-plugins/gofax/gofax/faxreports/class_faxreport.inc b/gosa-plugins/gofax/gofax/faxreports/class_faxreport.inc
index 511d154203b6267a2f1bfc9aecaf76656241f3b4..d3a28adfcb3424420a11f9951135f86047db584b 100644 (file)
{
/* Definitions */
var $plHeadline = "FAX Reports";
- var $plDescription = "This does something";
+ var $plDescription = "This plugin lists fax reports";
var $plIcon = "plugins/gofax/images/reports.png";
/* For internal use */
var $sort_direction = "down";
var $ui = NULL;
var $range = 20;
- var $view_logged = FALSE;
+ var $view_logged = FALSE;
/* Constant stuff */
var $status= array( "SENT", "MAILED", "SERROR", "RERROR", "SBLOCK", "RBLOCK",
var $fields= array("uid", "queuing_time", "status", "sender_id", "receiver_id", "pages");
/* 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",
+ var $attributes_SO= array("search_for","month","year",
"start","year","month","sort","sort_direction","range");
+
var $objectclasses= array();
var $fax_users = array();
// Get dn to check ACLs for
// Existing ldap-user -> use its dn
// Not existing user -> use ldap base dn
- $dn = $this->config->current['BASE'];
+ $dn = $this->search_base;
if(isset($this->uidToDN[$line['uid']])){
$dn = $this->uidToDN[$line['uid']];
}
// Get dn to check ACLs for
// Existing ldap-user -> use its dn
// Not existing user -> use ldap base dn
- $dn = $this->config->current['BASE'];
+ $dn = $this->search_base;
if(isset($this->uidToDN[$line['uid']])){
$dn = $this->uidToDN[$line['uid']];
}
$this->sort= 0;
}
}
- foreach( array("year", "month", "search_for", "search_base") as $type){
+ foreach( array("year", "month", "search_for") as $type){
if (isset($_POST[$type])){
$faxreportfilter[$type]= $_POST[$type];