for more details. * * Copyright 2007-2010 Rejo Zenger * Copyright 2010-2014 Poweradmin Development Team * * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ /** * Script that handles requests to add new records to zone templates * * @package Poweradmin * @copyright 2007-2010 Rejo Zenger * @copyright 2010-2014 Poweradmin Development Team * @license http://opensource.org/licenses/GPL-3.0 GPL */ require_once("inc/toolkit.inc.php"); include_once("inc/header.inc.php"); /* Check and make sure all post values have made it through if not set them. */ $zone_templ_id = "-1"; if ((isset($_GET['id'])) && (v_num($_GET['id']))) { $zone_templ_id = $_GET['id']; } $ttl = $dns_ttl; if ((isset($_POST['ttl'])) && (v_num($_POST['ttl']))) { $ttl = $_POST['ttl']; } $prio = ""; if ((isset($_POST['prio'])) && (v_num($_POST['prio']))) { $prio = $_POST['prio']; } if (isset($_POST['name'])) { $name = $_POST['name']; } else { $name = ""; } if (isset($_POST['type'])) { $type = $_POST['type']; } else { $type = ""; } if (isset($_POST['content'])) { $content = $_POST['content']; } else { $content = ""; } if ($zone_templ_id == "-1") { error(ERR_INV_INPUT); include_once("inc/footer.inc.php"); exit; } $templ_details = get_zone_templ_details($zone_templ_id); $owner = get_zone_templ_is_owner($zone_templ_id, $_SESSION['userid']); /* If the form as been submitted process it! */ if (isset($_POST["commit"])) { if (!(verify_permission('zone_master_add')) || !$owner) { error(ERR_PERM_ADD_RECORD); } else { if (add_zone_templ_record($zone_templ_id, $name, $type, $content, $ttl, $prio)) { success(_('The record was successfully added.')); $name = $type = $content = $ttl = $prio = ""; } } } /* Display form to add a record */ echo "

" . _('Add record to zone template') . " \"" . $templ_details['name'] . "\"

\n"; if (!(verify_permission('zone_master_add')) || !$owner) { error(ERR_PERM_ADD_RECORD); } else { echo "
\n"; echo " \n"; echo " \n"; echo " \n"; echo " \n"; echo " \n"; echo " \n"; echo " \n"; echo " \n"; echo " \n"; echo " \n"; echo " \n"; echo " \n"; echo " \n"; echo " \n"; echo " \n"; echo " \n"; echo " \n"; echo " \n"; echo " \n"; echo " \n"; echo " \n"; echo " \n"; echo " \n"; echo " \n"; echo " \n"; echo " \n"; echo "
" . _('Name') . " " . _('Type') . "" . _('Content') . "" . _('Priority') . "" . _('TTL') . "
IN\n"; echo " \n"; echo " \n"; echo "

Hint:
" . _('The following placeholders can be used in template records') . "

     * [ZONE] - " . _('substituted with current zone name') . "
"; echo "     * [SERIAL] - " . _('substituted with current date and 2 numbers') . " (YYYYMMDD + 00)
\n"; echo "
\n"; echo " \n"; echo "
\n"; } include_once("inc/footer.inc.php");