2009-06-30 08:09:20 +00:00
|
|
|
<?php
|
2009-06-30 09:40:37 +00:00
|
|
|
// $Header: /cvsroot/phpldapadmin/phpldapadmin/htdocs/create_form.php,v 1.30.2.1 2005/10/09 09:07:21 wurley Exp $
|
2009-06-30 09:22:30 +00:00
|
|
|
|
2009-06-30 09:29:51 +00:00
|
|
|
/**
|
2009-06-30 08:05:37 +00:00
|
|
|
* The menu where the user chooses an RDN, Container, and Template for creating a new entry.
|
|
|
|
* After submitting this form, the user is taken to their chosen Template handler.
|
|
|
|
*
|
2009-06-30 09:29:51 +00:00
|
|
|
* Variables that come in via common.php
|
|
|
|
* - server_id
|
2009-06-30 08:09:20 +00:00
|
|
|
* Variables that come in as GET vars
|
2009-06-30 08:05:37 +00:00
|
|
|
* - container (rawurlencoded) (optional)
|
2009-06-30 09:29:51 +00:00
|
|
|
*
|
|
|
|
* @package phpLDAPadmin
|
|
|
|
*/
|
|
|
|
/**
|
2009-06-30 08:05:37 +00:00
|
|
|
*/
|
|
|
|
|
2009-06-30 09:22:30 +00:00
|
|
|
require './common.php';
|
2009-06-30 09:29:51 +00:00
|
|
|
require TMPLDIR.'template_config.php';
|
|
|
|
|
|
|
|
if( $ldapserver->isReadOnly() )
|
|
|
|
pla_error( $lang['no_updates_in_read_only_mode'] );
|
|
|
|
if( ! $ldapserver->haveAuthInfo())
|
|
|
|
pla_error( $lang['not_enough_login_info'] );
|
2009-06-30 08:05:37 +00:00
|
|
|
|
2009-06-30 08:07:14 +00:00
|
|
|
$step = isset( $_REQUEST['step'] ) ? $_REQUEST['step'] : 1; // defaults to 1
|
|
|
|
$container = $_REQUEST['container'];
|
|
|
|
|
2009-06-30 09:29:51 +00:00
|
|
|
$server_menu_html = server_select_list($ldapserver->server_id,true);
|
2009-06-30 08:05:37 +00:00
|
|
|
|
2009-06-30 09:22:30 +00:00
|
|
|
include './header.php'; ?>
|
2009-06-30 08:05:37 +00:00
|
|
|
|
|
|
|
<body>
|
|
|
|
|
2009-06-30 08:09:20 +00:00
|
|
|
<h3 class="title"><?php echo $lang['createf_create_object']?></h3>
|
|
|
|
<h3 class="subtitle"><?php echo $lang['createf_choose_temp']?></h3>
|
2009-06-30 09:29:51 +00:00
|
|
|
<center><h3><?php echo $lang['createf_select_temp']?></h3></center>
|
|
|
|
|
|
|
|
<form action="creation_template.php" method="post">
|
2009-06-30 08:05:37 +00:00
|
|
|
<input type="hidden" name="container" value="<?php echo htmlspecialchars( $container ); ?>" />
|
|
|
|
<table class="create">
|
|
|
|
<tr>
|
2009-06-30 09:22:30 +00:00
|
|
|
<td class="heading"><?php echo $lang['server']; ?>:</td>
|
2009-06-30 08:05:37 +00:00
|
|
|
<td><?php echo $server_menu_html; ?></td>
|
|
|
|
</tr>
|
|
|
|
|
|
|
|
<tr>
|
2009-06-30 09:29:51 +00:00
|
|
|
<td class="heading"><?php echo $lang['template']; ?>:</td>
|
|
|
|
<td>
|
|
|
|
|
|
|
|
<table class="template_display">
|
|
|
|
<tr>
|
|
|
|
<td>
|
|
|
|
<table class="templates">
|
|
|
|
|
|
|
|
<?php
|
|
|
|
$i = -1;
|
|
|
|
|
|
|
|
if ($config->GetValue('template_engine','enable')) {
|
|
|
|
$template_xml = new Templates($ldapserver->server_id);
|
|
|
|
|
|
|
|
if ($config->GetValue('template_engine','disable_old'))
|
2009-06-30 09:40:37 +00:00
|
|
|
$templates = $template_xml->getTemplates();
|
2009-06-30 09:29:51 +00:00
|
|
|
|
|
|
|
else
|
2009-06-30 09:40:37 +00:00
|
|
|
$templates = array_merge($template_xml->getTemplates(),$templates);
|
2009-06-30 09:29:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
# Remove non-visable templates.
|
|
|
|
foreach ($templates as $index => $template)
|
|
|
|
if (isset($template['visible']) && (! $template['visible']))
|
|
|
|
unset ($templates[$index]);
|
|
|
|
|
|
|
|
$templates['custom']['title'] = 'Custom';
|
|
|
|
$templates['custom']['icon'] = 'images/object.png';
|
|
|
|
|
|
|
|
$count = count( $templates );
|
|
|
|
foreach( $templates as $name => $template ) {
|
|
|
|
$i++;
|
|
|
|
|
|
|
|
# If the template doesnt have a title, we'll use the desc field.
|
|
|
|
$template['desc'] = isset($template['title']) ? $template['title'] : $template['desc'];
|
|
|
|
|
|
|
|
# Balance the columns properly
|
|
|
|
if( ( count( $templates ) % 2 == 0 && $i == intval( $count / 2 ) ) ||
|
|
|
|
( count( $templates ) % 2 == 1 && $i == intval( $count / 2 ) + 1 ) )
|
2009-06-30 08:05:37 +00:00
|
|
|
|
2009-06-30 09:29:51 +00:00
|
|
|
echo "</table></td><td><table class=\"templates\">";
|
|
|
|
|
|
|
|
# Check and see if this template should be shown in the list
|
|
|
|
$isValid = false;
|
|
|
|
|
|
|
|
if( isset($template['regexp'] ) ) {
|
|
|
|
if( @preg_match( "/".$template['regexp']."/i", $container ) ) {
|
|
|
|
$isValid = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
} else {
|
|
|
|
$isValid = true;
|
|
|
|
|
|
|
|
if (isset($template['invalid']) && $template['invalid'])
|
|
|
|
$isValid = false;
|
|
|
|
} ?>
|
|
|
|
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
|
|
|
|
<tr>
|
|
|
|
<?php
|
|
|
|
if (isset($template['invalid']) && $template['invalid'] || (isset($template['handler']) && ! file_exists(TMPLDIR.'creation/'.$template['handler']))) {
|
|
|
|
?>
|
|
|
|
<td class="icon">
|
|
|
|
<img src="images/error.png" />
|
|
|
|
</td>
|
|
|
|
<?php
|
|
|
|
} else {
|
|
|
|
?>
|
|
|
|
|
|
|
|
<td>
|
|
|
|
<input type="radio" name="template" value="<?php echo htmlspecialchars($name);?>"
|
|
|
|
id="<?php echo htmlspecialchars($name); ?>"
|
|
|
|
|
|
|
|
<?php
|
|
|
|
if( 0 == strcasecmp( 'Custom', $name ) ) echo ' checked';
|
|
|
|
if( ! $isValid ) echo ' disabled';
|
|
|
|
?> />
|
|
|
|
|
|
|
|
</td>
|
|
|
|
<?php
|
|
|
|
}
|
|
|
|
?>
|
|
|
|
|
|
|
|
<td class="icon">
|
|
|
|
<label for="<?php echo htmlspecialchars($name);?>">
|
|
|
|
<img src="<?php echo $template['icon']; ?>" />
|
|
|
|
</label>
|
|
|
|
</td>
|
|
|
|
|
|
|
|
<td>
|
|
|
|
<label for="<?php echo htmlspecialchars($name);?>">
|
|
|
|
|
|
|
|
<?php if( 0 == strcasecmp( 'Custom', $template['desc'] ) ) echo '<b>';
|
|
|
|
|
|
|
|
if( ! $isValid )
|
|
|
|
if (isset($template['invalid']) && $template['invalid'])
|
|
|
|
printf('<span style="color: gray"><acronym title="%s">',$lang['template_invalid']);
|
|
|
|
else
|
|
|
|
printf('<span style="color: gray"><acronym title="%s">',$lang['template_restricted']);
|
|
|
|
|
|
|
|
echo htmlspecialchars( $template['desc'] );
|
|
|
|
|
|
|
|
if( ! $isValid ) echo "</acronym></span>";
|
|
|
|
if( 0 == strcasecmp( 'Custom', $template['desc'] ) ) echo '</b>'; ?>
|
|
|
|
|
|
|
|
</label>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
|
|
|
|
<?php } // end foreach ?>
|
|
|
|
|
|
|
|
</table>
|
|
|
|
</td>
|
|
|
|
</tr>
|
2009-06-30 08:05:37 +00:00
|
|
|
</table>
|
2009-06-30 09:29:51 +00:00
|
|
|
</td>
|
|
|
|
</tr>
|
2009-06-30 08:05:37 +00:00
|
|
|
|
2009-06-30 09:29:51 +00:00
|
|
|
<tr>
|
|
|
|
<td colspan="2"><center><input type="submit" name="submit" value="<?php echo $lang['proceed_gt']?>" /></center></td>
|
|
|
|
</tr>
|
2009-06-30 08:05:37 +00:00
|
|
|
|
2009-06-30 09:29:51 +00:00
|
|
|
</table>
|
|
|
|
</form>
|
2009-06-30 08:05:37 +00:00
|
|
|
</body>
|
|
|
|
</html>
|