mirror of
https://bitbucket.org/jsuto/piler.git
synced 2024-11-08 15:51:58 +01:00
180 lines
11 KiB
Smarty
180 lines
11 KiB
Smarty
<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&id=-1&name=Error&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>
|
|
|
|
<h4><?php if(isset($id) && ($id > 0)) { print $text_edit_entry; } else { print $text_add_new_entry; } ?></h4>
|
|
|
|
<?php if(isset($errorstring)){ ?><div class="alert alert-danger"><?php print $text_error; ?>: <?php print $errorstring; ?></div><?php } ?>
|
|
<?php if(isset($x)){ ?>
|
|
<div class="alert alert-success"><?php print $x; ?></div>
|
|
<?php } ?>
|
|
|
|
<form method="post" name="add1" action="index.php?route=ldap/list" class="form-horizontal">
|
|
|
|
<?php if(isset($id) && ($id > 0)) { ?>
|
|
<input type="hidden" name="id" id="id" value="<?php print $id; ?>" />
|
|
<?php } ?>
|
|
|
|
<div class="control-group<?php if(isset($errors['ldap_type'])){ print " error"; } ?>">
|
|
<label class="control-label" for="ldap_type"><?php print $text_ldap_type; ?>:</label>
|
|
<div class="controls">
|
|
<select name="ldap_type" id="ldap_type" onchange="Piler.fix_ldap_display();" class="span4">
|
|
<?php while(list($k, $v) = each($ldap_types)) { ?>
|
|
<option value="<?php print $v; ?>"<?php if(isset($a['ldap_type']) && $a['ldap_type'] == $v) { ?> selected="selected"<?php } ?>><?php print $v; ?></option>
|
|
<?php } ?>
|
|
</select>
|
|
</div>
|
|
</div>
|
|
<div class="control-group<?php if(isset($errors['description'])){ print " error"; } ?>">
|
|
<label class="control-label" for="description"><?php print $text_description; ?>:</label>
|
|
<div class="controls">
|
|
<input type="text" class="text span4" name="description" id="description" placeholder="" value="<?php if(isset($a['description'])) { print $a['description']; } ?>" />
|
|
<?php if ( isset($errors['description']) ) { ?><span class="help-inline"><?php print $errors['description']; ?></span><?php } ?>
|
|
</div>
|
|
</div>
|
|
<div class="control-group<?php if(isset($errors['ldap_host'])){ print " error"; } ?>">
|
|
<label class="control-label" for="ldap_host"><?php print $text_ldap_host; ?>:</label>
|
|
<div class="controls">
|
|
<input type="text" class="text span4" name="ldap_host" id="ldap_host" placeholder="" value="<?php if(isset($a['ldap_host'])) { print $a['ldap_host']; } ?>" />
|
|
<?php if ( isset($errors['ldap_host']) ) { ?><span class="help-inline"><?php print $errors['ldap_host']; ?></span><?php } ?>
|
|
</div>
|
|
</div>
|
|
<div class="control-group<?php if(isset($errors['ldap_base_dn'])){ print " error"; } ?>">
|
|
<label class="control-label" for="ldap_base_dn"><?php print $text_ldap_base_dn; ?>:</label>
|
|
<div class="controls">
|
|
<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']; } ?>" />
|
|
<?php if ( isset($errors['ldap_base_dn']) ) { ?><span class="help-inline"><?php print $errors['ldap_base_dn']; ?></span><?php } ?>
|
|
</div>
|
|
</div>
|
|
<div class="control-group<?php if(isset($errors['ldap_bind_dn'])){ print " error"; } ?>">
|
|
<label class="control-label" for="ldap_bind_dn"><?php print $text_ldap_bind_dn; ?>:</label>
|
|
<div class="controls">
|
|
<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']; } ?>" />
|
|
<?php if ( isset($errors['ldap_bind_dn']) ) { ?><span class="help-inline"><?php print $errors['ldap_bind_dn']; ?></span><?php } ?>
|
|
</div>
|
|
</div>
|
|
<div class="control-group<?php if(isset($errors['ldap_bind_pw'])){ print " error"; } ?>">
|
|
<label class="control-label" for="ldap_bind_pw"><?php print $text_ldap_bind_pw; ?>:</label>
|
|
<div class="controls">
|
|
<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>
|
|
<?php if ( isset($errors['ldap_bind_pw']) ) { ?><span class="help-inline"><?php print $errors['ldap_bind_pw']; ?></span><?php } ?>
|
|
</div>
|
|
</div>
|
|
<div class="control-group<?php if(isset($errors['ldap_auditor_member_dn'])){ print " error"; } ?>">
|
|
<label class="control-label" for="ldap_auditor_member_dn"><?php print $text_ldap_auditor_member_dn; ?>:</label>
|
|
<div class="controls">
|
|
<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']; } ?>" />
|
|
<?php if ( isset($errors['ldap_auditor_member_dn']) ) { ?><span class="help-inline"><?php print $errors['ldap_auditor_member_dn']; ?></span><?php } ?>
|
|
</div>
|
|
</div>
|
|
|
|
<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>
|
|
|
|
|
|
<div class="form-actions">
|
|
<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 } ?>
|
|
</div>
|
|
|
|
</form>
|
|
|
|
<?php if(isset($a['ldap_type']) && $a['ldap_type'] == LDAP_TYPE_GENERIC) { ?>
|
|
<script>Piler.fix_ldap_display();</script>
|
|
<?php } ?>
|
|
|
|
|
|
<?php if($id == -1) { ?>
|
|
|
|
<h4><?php print $text_existing_entries; ?></h4>
|
|
|
|
<div class="listarea">
|
|
|
|
<?php if(isset($entries)){ ?>
|
|
|
|
<table id="ss1" class="table table-striped table-condensed">
|
|
<tr>
|
|
<th><?php print $text_description; ?></th>
|
|
<th><?php print $text_ldap_type; ?></th>
|
|
<th><?php print $text_ldap_host; ?></th>
|
|
<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>
|
|
<th> </th>
|
|
<th> </th>
|
|
</tr>
|
|
|
|
<?php foreach($entries as $e) { ?>
|
|
<tr>
|
|
<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&id=<?php print $e['id']; ?>"><i class="icon-edit"></i> <?php print $text_edit; ?></a></td>
|
|
<td><a href="index.php?route=ldap/remove&id=<?php print $e['id']; ?>&name=<?php print urlencode($e['description']); ?>&confirmed=1" class="confirm-delete" data-id="<?php print $e['id']; ?>" data-name="<?php print $e['description']; ?>"><i class="icon-remove-sign"></i> <?php print $text_remove; ?></a></td>
|
|
</tr>
|
|
<?php } ?>
|
|
|
|
</table>
|
|
|
|
<?php } else { ?>
|
|
<div class="alert alert-error lead">
|
|
<?php print $text_not_found; ?>
|
|
</div>
|
|
<?php } ?>
|
|
|
|
<?php } ?>
|
|
|
|
|
|
</div>
|
|
|