mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-08 09:05:16 +01:00
32 lines
1.4 KiB
PHP
32 lines
1.4 KiB
PHP
<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>
|