71 lines
2.5 KiB
PHP
71 lines
2.5 KiB
PHP
<?php
|
|
// $Header: /cvsroot/phpldapadmin/phpldapadmin/htdocs/template_engine.php,v 1.45.2.2 2008/12/12 12:20:22 wurley Exp $
|
|
|
|
/**
|
|
* Template render engine.
|
|
* @param dn $dn DN of the object being edited. (For editing existing entries)
|
|
* @param dn $container DN where the new object will be created. (For creating new entries)
|
|
* @param string $template to use for new entry. (For creating new entries)
|
|
* @todo schema attr keys should be in lowercase.
|
|
* @package phpLDAPadmin
|
|
* @author The phpLDAPadmin development team
|
|
*/
|
|
/**
|
|
*/
|
|
|
|
require_once './common.php';
|
|
|
|
$entry = array();
|
|
$entry['dn']['encode'] = get_request('dn','REQUEST');
|
|
$entry['dn']['string'] = rawurldecode($entry['dn']['encode']);
|
|
$entry['template'] = get_request('template','REQUEST',false,'');
|
|
|
|
# If we have a DN, then this is to edit the entry.
|
|
if ($entry['dn']['string']) {
|
|
$ldapserver->dnExists($entry['dn']['string'])
|
|
or error(sprintf('%s (%s)',_('No such entry'),pretty_print_dn($entry['dn']['string'])),'error','index.php');
|
|
|
|
$tree = get_cached_item($ldapserver->server_id,'tree');
|
|
|
|
if ($tree) {
|
|
$entry['dn']['tree'] = $tree->getEntry($entry['dn']['string']);
|
|
|
|
if (! $entry['dn']['tree']) {
|
|
/*
|
|
* The entry doesn't exists in the tree because it
|
|
* may be filtered ; as we ask for its display, we
|
|
* add all the same the entry in the tree
|
|
*/
|
|
$tree->addEntry($entry['dn']['string']);
|
|
$entry['dn']['tree'] = $tree->getEntry($entry['dn']['string']);
|
|
|
|
}
|
|
|
|
if ($entry['dn']['tree']) {
|
|
eval('$reader = new '.$_SESSION[APPCONFIG]->GetValue('appearance', 'entry_reader').'($ldapserver);');
|
|
$entry['dn']['tree']->accept($reader);
|
|
|
|
eval('$writer = new '.$_SESSION[APPCONFIG]->GetValue('appearance', 'entry_writer').'($ldapserver);');
|
|
$entry['dn']['tree']->accept($writer);
|
|
}
|
|
}
|
|
|
|
} else {
|
|
if ($ldapserver->isReadOnly())
|
|
error(_('You cannot perform updates while server is in read-only mode'),'error','index.php');
|
|
|
|
# Create a new empty entry
|
|
$entryfactoryclass = $_SESSION[APPCONFIG]->GetValue('appearance','entry_factory');
|
|
eval('$entry_factory = new '.$entryfactoryclass.'();');
|
|
$entry['dn']['tree'] = $entry_factory->newCreatingEntry('');
|
|
|
|
# Init the entry with incoming data
|
|
eval('$reader = new '.$_SESSION[APPCONFIG]->GetValue('appearance', 'entry_reader').'($ldapserver);');
|
|
$entry['dn']['tree']->accept($reader);
|
|
|
|
# Display the creating entry
|
|
eval('$writer = new '.$_SESSION[APPCONFIG]->GetValue('appearance', 'entry_writer').'($ldapserver);');
|
|
$entry['dn']['tree']->accept($writer);
|
|
}
|
|
?>
|