piler/webui/view/theme/default/templates/ldap/list.tpl

180 lines
11 KiB
Smarty
Raw Normal View History

2013-08-14 23:40:52 +02:00
<div id="deleteconfirm-modal" class="modal hide fade">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" role="dialog" aria-hidden="true"><i class="icon-remove"></i></button>
<h3><?php print $text_confirm; ?> <?php print $text_delete; ?></h3>
</div>
<div class="modal-body">
<p><?php print $text_ldap_delete_confirm_message; ?> <span id="name">ERROR</span>?</p>
</div>
<div class="modal-footer">
<a href="#" class="btn" data-dismiss="modal" aria-hidden="true"><?php print $text_close; ?></a>
<a href="index.php?route=ldap/remove&amp;id=-1&amp;name=Error&amp;confirmed=0" class="btn btn-primary" id="id"><?php print $text_delete; ?></a>
</div>
</div>
<form method="get" name="search1" action="ldap.php" class="form-inline pull-right">
<div class="input-append">
<input type="text" name="search" class="input-medium" value="<?php print $search; ?>" />
<input type="submit" class="btn" value="<?php print $text_search; ?>" />
</div>
</form>
2013-08-14 23:40:52 +02:00
<h4><?php if(isset($id) && ($id > 0)) { print $text_edit_entry; } else { print $text_add_new_entry; } ?></h4>
2013-07-08 11:31:17 +02:00
2013-08-14 23:40:52 +02:00
<?php if(isset($errorstring)){ ?><div class="alert alert-danger"><?php print $text_error; ?>: <?php print $errorstring; ?></div><?php } ?>
2013-07-08 11:31:17 +02:00
<?php if(isset($x)){ ?>
2013-08-14 23:40:52 +02:00
<div class="alert alert-success"><?php print $x; ?></div>
2013-07-08 11:31:17 +02:00
<?php } ?>
<form method="post" name="add1" action="index.php?route=ldap/list" class="form-horizontal">
2013-08-14 23:40:52 +02:00
<?php if(isset($id) && ($id > 0)) { ?>
2013-07-23 22:44:34 +02:00
<input type="hidden" name="id" id="id" value="<?php print $id; ?>" />
<?php } ?>
2013-08-14 23:40:52 +02:00
<div class="control-group<?php if(isset($errors['ldap_type'])){ print " error"; } ?>">
2013-07-12 11:14:09 +02:00
<label class="control-label" for="ldap_type"><?php print $text_ldap_type; ?>:</label>
<div class="controls">
2014-01-15 14:47:30 +01:00
<select name="ldap_type" id="ldap_type" onchange="Piler.fix_ldap_display();" class="span4">
<?php foreach($ldap_types as $k => $v) { ?>
2013-07-23 22:44:34 +02:00
<option value="<?php print $v; ?>"<?php if(isset($a['ldap_type']) && $a['ldap_type'] == $v) { ?> selected="selected"<?php } ?>><?php print $v; ?></option>
<?php } ?>
2013-07-12 11:14:09 +02:00
</select>
</div>
</div>
2013-08-14 23:40:52 +02:00
<div class="control-group<?php if(isset($errors['description'])){ print " error"; } ?>">
2014-01-15 14:47:30 +01:00
<label class="control-label" for="description"><?php print $text_description; ?>:</label>
2013-07-08 11:31:17 +02:00
<div class="controls">
2014-01-15 14:47:30 +01:00
<input type="text" class="text span4" name="description" id="description" placeholder="" value="<?php if(isset($a['description'])) { print $a['description']; } ?>" />
2013-08-14 23:40:52 +02:00
<?php if ( isset($errors['description']) ) { ?><span class="help-inline"><?php print $errors['description']; ?></span><?php } ?>
2013-07-08 11:31:17 +02:00
</div>
</div>
2013-08-14 23:40:52 +02:00
<div class="control-group<?php if(isset($errors['ldap_host'])){ print " error"; } ?>">
2013-07-08 11:31:17 +02:00
<label class="control-label" for="ldap_host"><?php print $text_ldap_host; ?>:</label>
<div class="controls">
2014-01-15 14:47:30 +01:00
<input type="text" class="text span4" name="ldap_host" id="ldap_host" placeholder="" value="<?php if(isset($a['ldap_host'])) { print $a['ldap_host']; } ?>" />
2013-08-14 23:40:52 +02:00
<?php if ( isset($errors['ldap_host']) ) { ?><span class="help-inline"><?php print $errors['ldap_host']; ?></span><?php } ?>
2013-07-08 11:31:17 +02:00
</div>
</div>
2013-08-14 23:40:52 +02:00
<div class="control-group<?php if(isset($errors['ldap_base_dn'])){ print " error"; } ?>">
2013-07-08 11:31:17 +02:00
<label class="control-label" for="ldap_base_dn"><?php print $text_ldap_base_dn; ?>:</label>
<div class="controls">
2014-01-15 14:47:30 +01:00
<input type="text" class="text span4" name="ldap_base_dn" id="ldap_base_dn" placeholder="" value="<?php if(isset($a['ldap_base_dn'])) { print $a['ldap_base_dn']; } ?>" />
2013-08-14 23:40:52 +02:00
<?php if ( isset($errors['ldap_base_dn']) ) { ?><span class="help-inline"><?php print $errors['ldap_base_dn']; ?></span><?php } ?>
2013-07-08 11:31:17 +02:00
</div>
</div>
2013-08-14 23:40:52 +02:00
<div class="control-group<?php if(isset($errors['ldap_bind_dn'])){ print " error"; } ?>">
2013-07-08 11:31:17 +02:00
<label class="control-label" for="ldap_bind_dn"><?php print $text_ldap_bind_dn; ?>:</label>
<div class="controls">
2014-01-15 14:47:30 +01:00
<input type="text" class="text span4" name="ldap_bind_dn" id="ldap_bind_dn" placeholder="" value="<?php if(isset($a['ldap_bind_dn'])) { print $a['ldap_bind_dn']; } ?>" />
2013-08-14 23:40:52 +02:00
<?php if ( isset($errors['ldap_bind_dn']) ) { ?><span class="help-inline"><?php print $errors['ldap_bind_dn']; ?></span><?php } ?>
2013-07-08 11:31:17 +02:00
</div>
</div>
2013-08-14 23:40:52 +02:00
<div class="control-group<?php if(isset($errors['ldap_bind_pw'])){ print " error"; } ?>">
2013-07-08 11:31:17 +02:00
<label class="control-label" for="ldap_bind_pw"><?php print $text_ldap_bind_pw; ?>:</label>
<div class="controls">
2014-01-15 14:47:30 +01:00
<input type="password" class="password span4" name="ldap_bind_pw" id="ldap_bind_pw" placeholder="" value="<?php if(isset($a['ldap_bind_pw'])) { print $a['ldap_bind_pw']; } ?>" /> <input type="button" value="<?php print $text_test_connection; ?>" class="btn btn-danger" onclick="Piler.test_ldap_connection(); return false;" /> <span id="LDAPTEST"></span>
2013-08-14 23:40:52 +02:00
<?php if ( isset($errors['ldap_bind_pw']) ) { ?><span class="help-inline"><?php print $errors['ldap_bind_pw']; ?></span><?php } ?>
2013-07-23 22:44:34 +02:00
</div>
2013-08-14 23:40:52 +02:00
</div>
<div class="control-group<?php if(isset($errors['ldap_auditor_member_dn'])){ print " error"; } ?>">
2013-07-23 22:44:34 +02:00
<label class="control-label" for="ldap_auditor_member_dn"><?php print $text_ldap_auditor_member_dn; ?>:</label>
<div class="controls">
2014-01-15 14:47:30 +01:00
<input type="text" class="text span4" name="ldap_auditor_member_dn" id="ldap_auditor_member_dn" placeholder="" value="<?php if(isset($a['ldap_auditor_member_dn'])) { print $a['ldap_auditor_member_dn']; } ?>" />
2013-08-14 23:40:52 +02:00
<?php if ( isset($errors['ldap_auditor_member_dn']) ) { ?><span class="help-inline"><?php print $errors['ldap_auditor_member_dn']; ?></span><?php } ?>
2013-07-08 11:31:17 +02:00
</div>
</div>
2014-01-15 14:47:30 +01:00
<div id="ldap_mail_attr_id" class="ui-helper-hidden control-group<?php if(isset($errors['ldap_mail_attr'])){ print " error"; } ?>">
<label class="control-label" for="ldap_mail_attr"></label>
<div class="controls">
<input type="text" class="text span4" name="ldap_mail_attr" id="ldap_mail_attr" placeholder="LDAP_MAIL_ATTR" value="<?php if(isset($a['ldap_mail_attr'])) { print $a['ldap_mail_attr']; } ?>" />
<?php if ( isset($errors['ldap_mail_attr']) ) { ?><span class="help-inline"><?php print $errors['ldap_mail_attr']; ?></span><?php } ?>
</div>
</div>
<div id="ldap_account_objectclass_id" class="ui-helper-hidden control-group<?php if(isset($errors['ldap_account_objectclass'])){ print " error"; } ?>">
<label class="control-label" for="ldap_account_objectclass"></label>
<div class="controls">
<input type="text" class="text span4" name="ldap_account_objectclass" id="ldap_account_objectclass" placeholder="LDAP_ACCOUNT_OBJECTCLASS" value="<?php if(isset($a['ldap_account_objectclass'])) { print $a['ldap_account_objectclass']; } ?>" />
<?php if ( isset($errors['ldap_account_objectclass']) ) { ?><span class="help-inline"><?php print $errors['ldap_account_objectclass']; ?></span><?php } ?>
</div>
</div>
<div id="ldap_distributionlist_attr_id" class="ui-helper-hidden control-group<?php if(isset($errors['ldap_distributionlist_attr'])){ print " error"; } ?>">
<label class="control-label" for="ldap_distributionlist_attr"></label>
<div class="controls">
<input type="text" class="text span4" name="ldap_distributionlist_attr" id="ldap_distributionlist_attr" placeholder="LDAP_DISTRIBUTIONLIST_ATTR" value="<?php if(isset($a['ldap_distributionlist_attr'])) { print $a['ldap_distributionlist_attr']; } ?>" />
<?php if ( isset($errors['ldap_distributionlist_attr']) ) { ?><span class="help-inline"><?php print $errors['ldap_distributionlist_attr']; ?></span><?php } ?>
</div>
</div>
<div id="ldap_distributionlist_objectclass_id" class="ui-helper-hidden control-group<?php if(isset($errors['ldap_distributionlist_objectclass'])){ print " error"; } ?>">
<label class="control-label" for="ldap_distributionlist_objectclass"></label>
<div class="controls">
<input type="text" class="text span4" name="ldap_distributionlist_objectclass" id="ldap_distributionlist_objectclass" placeholder="LDAP_DISTRIBUTIONLIST_OBJECTCLASS" value="<?php if(isset($a['ldap_distributionlist_objectclass'])) { print $a['ldap_distributionlist_objectclass']; } ?>" />
<?php if ( isset($errors['ldap_distributionlist_objectclass']) ) { ?><span class="help-inline"><?php print $errors['ldap_distributionlist_objectclass']; ?></span><?php } ?>
</div>
</div>
2013-07-08 11:31:17 +02:00
<div class="form-actions">
2013-08-14 23:40:52 +02:00
<input type="submit" value="<?php if(isset($id) && ($id > 0)) { print $text_modify; } else { print $text_add; } ?>" class="btn btn-primary" />
<?php if(isset($id) && ($id > 0)) { ?>
<a href="index.php?route=ldap/list" class="btn"><?php print $text_cancel; ?></a>
<?php } else { ?>
<input type="reset" value="<?php print $text_clear; ?>" class="btn" onclick="Piler.clear_ldap_test();" />
<?php } ?>
2013-07-08 11:31:17 +02:00
</div>
</form>
2014-01-15 14:47:30 +01:00
<?php if(isset($a['ldap_type']) && $a['ldap_type'] == LDAP_TYPE_GENERIC) { ?>
<script>Piler.fix_ldap_display();</script>
<?php } ?>
2013-07-23 22:44:34 +02:00
<?php if($id == -1) { ?>
2013-07-08 11:31:17 +02:00
<h4><?php print $text_existing_entries; ?></h4>
<div class="listarea">
<?php if(isset($entries)){ ?>
<table id="ss1" class="table table-striped table-condensed">
<tr>
2013-08-14 23:40:52 +02:00
<th><?php print $text_description; ?></th>
<th><?php print $text_ldap_type; ?></th>
<th><?php print $text_ldap_host; ?></th>
2014-01-15 14:47:30 +01:00
<th><?php print $text_ldap_base_dn; ?></th>
<th><?php print $text_ldap_bind_dn; ?></th>
<th><?php print $text_ldap_auditor_member_dn; ?></th>
2013-08-14 23:40:52 +02:00
<th>&nbsp;</th>
<th>&nbsp;</th>
2013-07-08 11:31:17 +02:00
</tr>
<?php foreach($entries as $e) { ?>
<tr>
2013-08-14 23:40:52 +02:00
<td><?php print $e['description']; ?></td>
<td><?php print $e['ldap_type']; ?></td>
<td><?php print $e['ldap_host']; ?></td>
<td><?php print $e['ldap_base_dn']; ?></td>
<td><?php print $e['ldap_bind_dn']; ?></td>
<td><?php print $e['ldap_auditor_member_dn']; ?></td>
<td><a href="index.php?route=ldap/list&amp;id=<?php print $e['id']; ?>"><i class="icon-edit"></i>&nbsp;<?php print $text_edit; ?></a></td>
<td><a href="index.php?route=ldap/remove&amp;id=<?php print $e['id']; ?>&amp;name=<?php print urlencode($e['description']); ?>&amp;confirmed=1" class="confirm-delete" data-id="<?php print $e['id']; ?>" data-name="<?php print $e['description']; ?>"><i class="icon-remove-sign"></i>&nbsp;<?php print $text_remove; ?></a></td>
2013-07-08 11:31:17 +02:00
</tr>
<?php } ?>
2013-07-23 22:44:34 +02:00
</table>
2013-07-08 11:31:17 +02:00
<?php } else { ?>
<div class="alert alert-error lead">
<?php print $text_not_found; ?>
</div>
<?php } ?>
2013-07-23 22:44:34 +02:00
<?php } ?>
2013-07-08 11:31:17 +02:00
</div>