// *** IMSP Intergration Preferences ***
-
$prefGroups['imspauth'] = array(
'column' => _("Other Information"),
'label' => _("Alternate IMSP Login"),
'desc' => _("Alternate IMSP Password")
);
-
-
// *** SyncML Preferences ***
$prefGroups['syncml'] = array(
'column' => _("Other Information"),
'type' => 'special'
);
+// *** ActiveSync Preferences ***
+$prefGroups['activesync'] = array(
+ 'column' => _("Other Information"),
+ 'label' => _("ActiveSync"),
+ 'desc' => _("Manage your ActiveSync devices."),
+ 'members' => array('activesyncmanagement')
+);
+$_prefs['activesyncmanagement'] = array(
+ 'type' => 'special'
+);
// *** Internal Preferences ***
if (empty($conf['imsp']['enabled'])) {
$ui->suppressGroups[] = 'imspauth';
}
+
+ if (empty($conf['activesync']['enabled'])) {
+ $ui->suppressGroups[] = 'activesync';
+ }
}
/**