Use edit.php to create/edit domains
model/DomainHandler.php: - add webformConfig() configs/menu.conf: - change url_edit_domain to edit.php?table=domain - drop url_create_domain (use url_edit_domain instead) templates/*: - replace #url_create_domain# with #url_edit_domain# - replace ? with & create-domain.php: - deleted :-) git-svn-id: https://svn.code.sf.net/p/postfixadmin/code/trunk@1276 a1433add-5e2c-0410-b055-b7f2511e0802pull/2/head
parent
9cf7c7799a
commit
8f267c1b7f
@ -1,149 +0,0 @@
|
||||
<?php
|
||||
/**
|
||||
* Postfix Admin
|
||||
*
|
||||
* LICENSE
|
||||
* This source file is subject to the GPL license that is bundled with
|
||||
* this package in the file LICENSE.TXT.
|
||||
*
|
||||
* Further details on the project are available at :
|
||||
* http://www.postfixadmin.com or http://postfixadmin.sf.net
|
||||
*
|
||||
* @version $Id$
|
||||
* @license GNU GPL v2 or later.
|
||||
*
|
||||
* File: create-domain.php
|
||||
* Allows administrators to create or edit domains.
|
||||
*/
|
||||
|
||||
require_once('common.php');
|
||||
|
||||
authentication_require_role('global-admin');
|
||||
|
||||
$error = 0;
|
||||
$mode = 'create';
|
||||
|
||||
$edit = safepost('edit', safeget('edit'));
|
||||
$new = 0;
|
||||
if ($edit == "") $new = 1;
|
||||
|
||||
$listview = 'list-domain.php';
|
||||
|
||||
$handler = new DomainHandler($new);
|
||||
$form_fields = $handler->getStruct();
|
||||
$id_field = $handler->getId_field();
|
||||
|
||||
|
||||
if ($edit != "") {
|
||||
$mode = 'edit';
|
||||
|
||||
if (!$handler->init($edit)) {
|
||||
flash_error(join("<br />", $handler->errormsg));
|
||||
header ("Location: $listview");
|
||||
exit;
|
||||
}
|
||||
|
||||
if ($_SERVER['REQUEST_METHOD'] == "GET") { # read values from database
|
||||
if (!$handler->view()) {
|
||||
flash_error(join("<br />", $handler->errormsg));
|
||||
header ("Location: $listview");
|
||||
exit;
|
||||
} else {
|
||||
$values = $handler->return;
|
||||
$values[$id_field] = $edit;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
if ($_SERVER['REQUEST_METHOD'] == "POST") {
|
||||
|
||||
foreach($form_fields as $key => $field) {
|
||||
if ($field['editable'] == 0) {
|
||||
$values[$key] = $field['default'];
|
||||
} else {
|
||||
if($field['type'] == 'bool') {
|
||||
$values[$key] = safepost($key, 0); # isset() for unchecked checkboxes is always false
|
||||
} else {
|
||||
$values[$key] = safepost($key);
|
||||
}
|
||||
}
|
||||
}
|
||||
if ($edit != "") $values[$id_field] = $edit;
|
||||
|
||||
if (!$handler->init($values[$id_field])) {
|
||||
$error = 1;
|
||||
$errormsg = $handler->errormsg;
|
||||
}
|
||||
|
||||
if (!$handler->set($values)) {
|
||||
$error = 1;
|
||||
$errormsg = $handler->errormsg;
|
||||
}
|
||||
|
||||
if ($error != 1) {
|
||||
if (!$handler->store()) {
|
||||
$errormsg = $handler->errormsg;
|
||||
} else {
|
||||
flash_info($PALANG['pAdminCreate_domain_result_success'] . " (" . $values[$id_field] . ")");
|
||||
# TODO: - use a sprintf string
|
||||
# TODO: - get the success message from DomainHandler
|
||||
# TODO: - use a different success message for create and edit
|
||||
|
||||
if (count($handler->errormsg)) { # might happen if domain_postcreation fails
|
||||
flash_error(join("<br />", $handler->errormsg));
|
||||
}
|
||||
|
||||
if ($edit != "") {
|
||||
header ("Location: $listview");
|
||||
exit;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
if ($error != 1 && $new) { # no error and not in edit mode - reset fields to default for new item
|
||||
$values = array();
|
||||
foreach (array_keys($form_fields) as $key) {
|
||||
$values[$key] = $form_fields[$key]['default'];
|
||||
}
|
||||
}
|
||||
|
||||
$errormsg = $handler->errormsg;
|
||||
$fielderror = array();
|
||||
|
||||
foreach($form_fields as $key => $field) {
|
||||
if($form_fields[$key]['display_in_form']) {
|
||||
|
||||
if (isset($errormsg[$key])) {
|
||||
$fielderror[$key] = $errormsg[$key];
|
||||
unset ($errormsg[$key]);
|
||||
} else {
|
||||
$fielderror[$key] = '';
|
||||
}
|
||||
|
||||
$smarty->assign ("value_$key", $values[$key]);
|
||||
}
|
||||
}
|
||||
|
||||
foreach($errormsg as $msg) { # output the remaining error messages (not related to a field) with flash_error
|
||||
flash_error($msg);
|
||||
}
|
||||
|
||||
if ($mode == 'edit') {
|
||||
$smarty->assign('formtitle', Lang::read('pAdminEdit_domain_welcome'));
|
||||
$smarty->assign('submitbutton', Lang::read('save'));
|
||||
} else {
|
||||
$smarty->assign('formtitle', Lang::read('pAdminCreate_domain_welcome'));
|
||||
$smarty->assign('submitbutton', Lang::read('pAdminCreate_domain_button'));
|
||||
}
|
||||
|
||||
$smarty->assign ('struct', $form_fields);
|
||||
$smarty->assign ('fielderror', $fielderror);
|
||||
$smarty->assign ('mode', $mode);
|
||||
$smarty->assign ('table', 'domain');
|
||||
$smarty->assign ('smarty_template', 'editform');
|
||||
$smarty->display ('index.tpl');
|
||||
|
||||
/* vim: set expandtab softtabstop=4 tabstop=4 shiftwidth=4: */
|
||||
?>
|
Loading…
Reference in New Issue