Newer
Older

Falko Timme
committed
<?php
/*
Copyright (c) 2007, Till Brehm, projektfarm Gmbh
All rights reserved.
Redistribution and use in source and binary forms, with or without modification,
are permitted provided that the following conditions are met:
* Redistributions of source code must retain the above copyright notice,
this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright notice,
this list of conditions and the following disclaimer in the documentation
and/or other materials provided with the distribution.
* Neither the name of ISPConfig nor the names of its contributors
may be used to endorse or promote products derived from this software without
specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
/*
Form Definition
Tabellendefinition
Datentypen:

Falko Timme
committed
- DOUBLE

Falko Timme
committed
- VARCHAR (kein weiterer Format Check)
- TEXT (kein weiterer Format Check)
- DATE (Datumsformat, Timestamp Umwandlung)
Formtype:
- TEXT (normales Textfeld)
- TEXTAREA (normales Textfeld)
- PASSWORD (Feldinhalt wird nicht angezeigt)
- SELECT (Gibt Werte als option Feld aus)
- RADIO
- CHECKBOX
- FILE
VALUE:
- Wert oder Array
Hinweis:

Falko Timme
committed
*/
$form["title"] = "Additional PHP Versions";
//$form["description"] = "Form to edit additional PHP versions";
$form["name"] = "server_php";
$form["record_name_field"] = "name";
$form["action"] = "server_php_edit.php";
$form["db_table"] = "server_php";
$form["db_table_idx"] = "server_php_id";
$form["db_history"] = "yes";
$form["tab_default"] = "php_name";
$form["list_default"] = "server_php_list.php";
$form["auth"] = 'yes';

Falko Timme
committed
$form["auth_preset"]["userid"] = 0; // 0 = id of the user, > 0 id must match with id of current user
$form["auth_preset"]["groupid"] = 0; // 0 = default groupid of the user, > 0 id must match with groupid of current user
$form["auth_preset"]["perm_user"] = 'riud'; //r = read, i = insert, u = update, d = delete
$form["auth_preset"]["perm_group"] = 'riud'; //r = read, i = insert, u = update, d = delete
$form["auth_preset"]["perm_other"] = ''; //r = read, i = insert, u = update, d = delete
$form["tabs"]['php_name'] = array (
'title' => "Name",
'width' => 80,
'template' => "templates/server_php_name_edit.htm",
'fields' => array (
//#################################
// Beginn Datenbankfelder
//#################################

Falko Timme
committed
'server_id' => array (
'datatype' => 'INTEGER',
'formtype' => 'SELECT',
'default' => '',
'datasource' => array ( 'type' => 'SQL',
'querystring' => 'SELECT server_id,server_name FROM server WHERE mirror_server_id = 0 AND web_server = 1 AND {AUTHSQL} ORDER BY server_name',
'keyfield'=> 'server_id',
'valuefield'=> 'server_name'
),
'value' => ''

Falko Timme
committed
),
'client_id' => array (
'datatype' => 'INTEGER',
'formtype' => 'SELECT',
'default' => '',
'datasource' => array ( 'type' => 'SQL',
'querystring' => "(SELECT 0 AS client_id, '' AS name) UNION ALL (SELECT client_id,CONCAT(IF(client.company_name != '', CONCAT(client.company_name, ' :: '), ''), client.contact_name, ' (', client.username, IF(client.customer_no != '', CONCAT(', ', client.customer_no), ''), ')') as name FROM client WHERE {AUTHSQL} ORDER BY contact_name)",
'keyfield'=> 'client_id',
'valuefield'=> 'name'
),
'value' => array(0 => ' ')

Falko Timme
committed
),
'name' => array (
'datatype' => 'VARCHAR',
'formtype' => 'TEXT',

Falko Timme
committed
'validators' => array(0 => array('type' => 'NOTEMPTY',
'errmsg' => 'server_php_name_error_empty'),

Falko Timme
committed
),
'filters' => array(
0 => array( 'event' => 'SAVE',
'type' => 'STRIPTAGS'),
1 => array( 'event' => 'SAVE',
'type' => 'STRIPNL')
),
'default' => '',
'value' => '',
'separator' => '',
'width' => '40',
'maxlength' => '255'

Falko Timme
committed
),
'active' => array (
'datatype' => 'VARCHAR',
'formtype' => 'CHECKBOX',
'default' => 'y',
'value' => array(0 => 'n', 1 => 'y')
),
//#################################
// ENDE Datenbankfelder
//#################################

Falko Timme
committed
)
);
$form["tabs"]['php_fastcgi'] = array(
'title' => "FastCGI Settings",
'width' => 80,
'template' => "templates/server_php_fastcgi_edit.htm",
'fields' => array(
//#################################
// Begin Datatable fields
//#################################

Falko Timme
committed
'php_fastcgi_binary' => array(
'datatype' => 'VARCHAR',
'formtype' => 'TEXT',
'filters' => array(
0 => array( 'event' => 'SAVE',
'type' => 'STRIPTAGS'),
1 => array( 'event' => 'SAVE',
'type' => 'STRIPNL')
),

Falko Timme
committed
'default' => '',
'value' => '',
'width' => '40',
'maxlength' => '255'
),
'php_fastcgi_ini_dir' => array(
'datatype' => 'VARCHAR',
'formtype' => 'TEXT',
'filters' => array(
0 => array( 'event' => 'SAVE',
'type' => 'STRIPTAGS'),
1 => array( 'event' => 'SAVE',
'type' => 'STRIPNL')
),

Falko Timme
committed
'default' => '',
'value' => '',
'width' => '40',
'maxlength' => '255'
),
//#################################
//#################################

Falko Timme
committed
)
);
$form["tabs"]['php_fpm'] = array(
'title' => "PHP-FPM Settings",
'width' => 80,
'template' => "templates/server_php_fpm_edit.htm",
'fields' => array(
//#################################
// Begin Datatable fields
//#################################

Falko Timme
committed
'php_fpm_init_script' => array(
'datatype' => 'VARCHAR',
'formtype' => 'TEXT',
'filters' => array(
0 => array( 'event' => 'SAVE',
'type' => 'STRIPTAGS'),
1 => array( 'event' => 'SAVE',
'type' => 'STRIPNL')
),

Falko Timme
committed
'default' => '',
'value' => '',
'width' => '40',
'maxlength' => '255'
),
'php_fpm_ini_dir' => array(
'datatype' => 'VARCHAR',
'formtype' => 'TEXT',
'filters' => array(
0 => array( 'event' => 'SAVE',
'type' => 'STRIPTAGS'),
1 => array( 'event' => 'SAVE',
'type' => 'STRIPNL')
),

Falko Timme
committed
'default' => '',
'value' => '',
'width' => '40',
'maxlength' => '255'
),
'php_fpm_pool_dir' => array(
'datatype' => 'VARCHAR',
'formtype' => 'TEXT',
'filters' => array(
0 => array( 'event' => 'SAVE',
'type' => 'STRIPTAGS'),
1 => array( 'event' => 'SAVE',
'type' => 'STRIPNL')
),

Falko Timme
committed
'default' => '',
'value' => '',
'width' => '40',
'maxlength' => '255'
),
'php_fpm_socket_dir' => array(
'datatype' => 'VARCHAR',
'formtype' => 'TEXT',
'filters' => array(
0 => array( 'event' => 'SAVE',
'type' => 'STRIPTAGS'),
1 => array( 'event' => 'SAVE',
'type' => 'STRIPNL')
),
'default' => '',
'value' => '',
'width' => '40',
'maxlength' => '255'
),
//#################################
//#################################

Falko Timme
committed
)
);
'title' => "PHP-CLI settings",
'width' => 80,
'template' => "templates/server_php_cli_edit.htm",
'fields' => array(
//#################################
// Begin Datatable fields
//#################################
'php_cli_binary' => array(
'datatype' => 'VARCHAR',
'formtype' => 'TEXT',
'validators' => array(
0 => array('type' => 'NOTEMPTY',
'errmsg' => 'php_cli_binary_empty'
),
1 => array (
'regex' => '/^\/[a-zA-Z0-9\/\-\_\.\s]*$/',
'errmsg'=> 'php_cli_binary_error_regex'
),
'default' => '',
'value' => '',
'width' => '40',
'maxlength' => '255'
'php_jk_section' => array(
'datatype' => 'VARCHAR',
'formtype' => 'TEXT',
'default' => '',
'validators' => array(
0 => array('type' => 'NOTEMPTY',
'errmsg' => 'php_cli_jk_section_empty'
),
1 => array (
'type' => 'REGEX',
'regex' => '/^[a-zA-Z0-9\-\_]*$/',
'errmsg'=> 'php_cli_jk_section_error_regex'
),
'value' => '',
'width' => '40',
'maxlength' => '255'
'title' => "PHP Sort Priority",
'width' => 80,
'template' => "templates/server_php_sort_edit.htm",
'fields' => array(
'sortprio' => array (
'datatype' => 'INTEGER',
'formtype' => 'TEXT',
'default' => '100',
'value' => '',
'separator' => '',
'width' => '10',
'maxlength' => '20'
),
)
);