phpldapadmin/edit.php

61 lines
1.9 KiB
PHP
Raw Permalink Normal View History

2009-06-30 09:22:30 +00:00
<?php
2009-06-30 09:24:29 +00:00
// $Header: /cvsroot/phpldapadmin/phpldapadmin/edit.php,v 1.52 2005/03/05 06:27:06 wurley Exp $
2009-06-30 08:05:37 +00:00
2009-06-30 09:24:29 +00:00
/**
2009-06-30 08:05:37 +00:00
* Displays the specified dn from the specified server for editing
2009-06-30 08:09:20 +00:00
* in its template as determined by get_template(). This is a simple
* shell for displaying entries. The real work is done by the templates
* found in tempaltes/modification/
2009-06-30 08:05:37 +00:00
*
* Variables that come in as GET vars:
* - dn (rawurlencoded)
* - server_id
2009-06-30 08:09:20 +00:00
* - use_default_template (optional) If set, use the default template no matter what
* - Other vars may be set and used by the modification templates
2009-06-30 09:24:29 +00:00
*
* @package phpLDAPadmin
*/
/**
2009-06-30 08:05:37 +00:00
*/
2009-06-30 09:22:30 +00:00
require_once realpath( 'common.php' );
require_once realpath( 'templates/template_config.php' );
2009-06-30 08:05:37 +00:00
2009-06-30 09:24:29 +00:00
$server_id = (isset($_GET['server_id']) ? $_GET['server_id'] : '');
$ldapserver = new LDAPServer($server_id);
if( ! $ldapserver->haveAuthInfo())
pla_error( $lang['not_enough_login_info'] );
2009-06-30 08:09:20 +00:00
$dn = isset( $_GET['dn'] ) ? $_GET['dn'] : false;
$dn !== false or pla_error( $lang['missing_dn_in_query_string'] );
2009-06-30 09:24:29 +00:00
2009-06-30 08:07:14 +00:00
$decoded_dn = rawurldecode( $dn );
$encoded_dn = rawurlencode( $decoded_dn );
2009-06-30 09:24:29 +00:00
// Template authors may wish to present the user with a link back to the default, generic
2009-06-30 09:22:30 +00:00
// template for editing. They may use this as the target of the href to do so.
$default_href = "edit.php?server_id=$server_id&amp;dn=$encoded_dn&amp;use_default_template=true";
2009-06-30 08:09:20 +00:00
$use_default_template = isset( $_GET['use_default_template'] ) ? true : false;
if( $use_default_template ) {
require realpath( 'templates/modification/default.php' );
2009-06-30 09:24:29 +00:00
} else {
$template = get_template( $ldapserver, $dn );
2009-06-30 08:09:20 +00:00
$template_file = "templates/modification/$template.php";
2009-06-30 09:24:29 +00:00
2009-06-30 08:09:20 +00:00
if( file_exists( realpath( $template_file ) ) )
require realpath( $template_file );
2009-06-30 09:24:29 +00:00
2009-06-30 08:09:20 +00:00
else {
echo "\n\n";
2009-06-30 09:24:29 +00:00
echo $lang['missing_template_file'];
2009-06-30 08:09:20 +00:00
echo " <b>$template_file</b>. ";
echo $lang['using_default'];
echo "<br />\n\n";
require realpath( 'templates/modification/default.php' );
2009-06-30 08:07:14 +00:00
}
2009-06-30 08:05:37 +00:00
}
?>