mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-12-26 00:29:38 +01:00
Add new not yet functional hook to setup for contact apps setup.
This commit is contained in:
parent
bd9153e50c
commit
7508a0d03f
31
addressbook/setup/config.inc.php
Normal file
31
addressbook/setup/config.inc.php
Normal file
@ -0,0 +1,31 @@
|
||||
<tr bgcolor="FFFFFF">
|
||||
<td colspan="2"> </td>
|
||||
</tr>
|
||||
|
||||
<tr bgcolor="486591">
|
||||
<td colspan="2"><font color="fefefe"> <b>Addressbook/Contact settings (section not yet functional)</b></font></td>
|
||||
</tr>
|
||||
<tr bgcolor="e6e6e6">
|
||||
<td>Contact application:</td>
|
||||
<? if (!$current_config["contact_application"]) { $current_config["contact_application"] = "addressbook"; } ?>
|
||||
<td><input name="newsettings[contact_application]" value="<?php echo $current_config["contact_application"]; ?>"></td>
|
||||
</tr>
|
||||
<?php $selected[$current_config["contact_repository"]] = " selected"; ?>
|
||||
<tr bgcolor="e6e6e6">
|
||||
<td>Select where you want to store/retrieve contacts.</td>
|
||||
<td>
|
||||
<select name="newsettings[contact_repository]">
|
||||
<option value="sql"<?php echo $selected["sql"]; ?>>SQL</option>
|
||||
<option value="ldap"<?php echo $selected["ldap"]; ?>>LDAP</option>
|
||||
</select>
|
||||
</td>
|
||||
</tr>
|
||||
<tr bgcolor="e6e6e6">
|
||||
<td>LDAP host for contacts:</td>
|
||||
<? if (!$current_config["ldap_contact_host"]) { $current_config["ldap_contact_host"] = $current_config["ldap_host"]; } ?>
|
||||
<td><input name="newsettings[ldap_contact_host]" value="<?php echo $current_config["ldap_contact_host"]; ?>"></td>
|
||||
</tr>
|
||||
<tr bgcolor="e6e6e6">
|
||||
<td>LDAP context for contacts:</td>
|
||||
<td><input name="newsettings[ldap_contact_context]" value="<?php echo $current_config["ldap_contact_context"]; ?>" size="40"></td>
|
||||
</tr>
|
Loading…
Reference in New Issue
Block a user