summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 3b67b3c)
raw | patch | inline | side by side (parent: 3b67b3c)
author | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Fri, 22 Feb 2008 13:23:39 +0000 (13:23 +0000) | ||
committer | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Fri, 22 Feb 2008 13:23:39 +0000 (13:23 +0000) |
-Fixed phone detection.
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@9076 594d385d-05f5-0310-b6e9-bd551577e9d8
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@9076 594d385d-05f5-0310-b6e9-bd551577e9d8
gosa-plugins/gofon/gofon/phoneaccount/class_phoneAccount.inc | patch | blob | history |
diff --git a/gosa-plugins/gofon/gofon/phoneaccount/class_phoneAccount.inc b/gosa-plugins/gofon/gofon/phoneaccount/class_phoneAccount.inc
index b368a54376d2d74480d98535f08b59489b7b9fe0..22404b77d8a19129f196b4ccee7203e2d688ed36 100644 (file)
/* Get available phone hardware
* Search for all available phone hardware
*/
- $ldap= $this->config->get_ldap_link();
- $ldap->cd($this->config->current['BASE']);
- $ldap->search("(objectClass=goFonHardware)", array('cn', 'description'));
- while ($attrs= $ldap->fetch()){
+ $tmp = get_sub_list("(objectClass=goFonHardware)","",array(get_ou("phoneou")),
+ $this->config->current['BASE'],array("cn","description"), GL_NO_ACL_CHECK);
+ foreach($tmp as $attrs){
$cn= $attrs['cn'][0];
+ $description= "";
if (isset($attrs['description'])){
$description= " - ".$attrs['description'][0];
- } else {
- $description= "";
}
$this->hardware_list[$cn]= "$cn$description";
}
+ $this->hardware_list["automatic"]= _("automatic");
+ ksort($this->hardware_list);
+
+
+ /* Collect all usd phones
+ goFonHardware set.
+ */
+ $deps_a = array(
+ get_people_ou(),
+ get_ou("ogroupou"),
+ get_ou("serverou"),
+ get_ou("terminalou"),
+ get_ou("workstationou"),
+ get_ou("printerou"),
+ get_ou("componentou"),
+ get_ou("phoneou"));
+
+ $tmp = get_sub_list("(goFonHardware=*)","",$deps_a,$this->config->current['BASE'],
+ array('cn','dn','goFonHardware'),GL_NO_ACL_CHECK);
+ foreach($tmp as $attrs){
+ $cn = $attrs['goFonHardware'][0];
+ if(isset($this->hardware_list[$cn])){
+ $this->used_hardware[$cn]= $cn;
+ }
+ }
/* Get available Macros
* Search for all Marcos that are visible and create
* an array with name and parameters
*/
- $ldap->search("(&(objectClass=goFonMacro)(goFonMacroVisible=1))", array("*"));
+ $tmp = get_sub_list("(&(objectClass=goFonMacro)(goFonMacroVisible=1))","",array(get_ou("macroou")),
+ $this->config->current['BASE'],array("displayName","goFonMacroParameter","dn"), GL_NONE);
+
/* Add none for no macro*/
$this->macros['none']=_("no macro");
$this->macro ="none";
/* Fetch all Macros*/
- while ($attrs= $ldap->fetch()){
+ foreach($tmp as $attrs){
/* unset Count, we don't need that here */
unset($attrs['displayName']['count']);
}
- /* Colorize phones
- * Used phones will be colored in grey,
- * so we must detect which phones are currently in use.
- */
- $ldap->cd($this->config->current['BASE']);
- $ldap->search("(goFonHardware=*)",array('cn','dn','goFonHardware'));
- while($attrs = $ldap->fetch()){
- $cn = $attrs['goFonHardware'][0];
- if(isset($this->hardware_list[$cn])){
- $this->used_hardware[$cn]= $cn;
- }
- }
- $this->hardware_list["automatic"]= _("automatic");
- ksort($this->hardware_list);
$this->a_old_telenums = $this->phoneNumbers;
/* Get voicemail PIN from MySQL DB
restore_error_handler();
/* Prepare some basic attributes */
+ $oldnums = array();
foreach($this->a_old_telenums as $tele){
$oldnums[]= preg_replace("/[^0-9]/","",$tele);
}