芝麻web文件管理V1.00
编辑当前文件:/home/pulsehostuk9/public_html/status.pulsehost.co.uk/app/controllers/admin/AdminTaxCreate.php
insert('taxes', [ 'name' => $_POST['name'], 'description' => $_POST['description'], 'value' => $_POST['value'], 'value_type' => $_POST['value_type'], 'type' => $_POST['type'], 'billing_type' => $_POST['billing_type'], 'countries' => json_encode($_POST['countries']), 'datetime' => get_date(), ]); /* Set a nice success message */ Alerts::add_success(sprintf(l('global.success_message.create1'), '
' . $_POST['name'] . '
')); redirect('admin/taxes'); } } /* Main View */ $data = []; $view = new \Altum\View('admin/tax-create/index', (array) $this); $this->add_view_content('content', $view->run($data)); } }