Files
Froxlor/lib/formfields/admin/customer/formfield.customer_add.php
2023-12-31 18:01:39 +01:00

324 lines
9.4 KiB
PHP

<?php
/**
* This file is part of the Froxlor project.
* Copyright (c) 2010 the Froxlor Team (see authors).
*
* 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 2
* 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, you can also view it online at
* https://files.froxlor.org/misc/COPYING.txt
*
* @copyright the authors
* @author Froxlor team <team@froxlor.org>
* @license https://files.froxlor.org/misc/COPYING.txt GPLv2
*/
use Froxlor\Language;
use Froxlor\Settings;
use Froxlor\System\Crypt;
return [
'customer_add' => [
'title' => lng('admin.customer_add'),
'image' => 'fa-solid fa-user-plus',
'self_overview' => ['section' => 'customers', 'page' => 'customers'],
'id' => 'customer_add',
'sections' => [
'section_a' => [
'title' => lng('admin.accountdata'),
'image' => 'icons/user_add.png',
'fields' => [
'new_loginname' => [
'label' => lng('login.username'),
'type' => 'text',
'placeholder' => lng('admin.username_default_msg')
],
'createstdsubdomain' => [
'label' => lng('admin.stdsubdomain_add') . '?',
'type' => 'checkbox',
'value' => '1',
'checked' => Settings::Get('system.createstdsubdom_default')
],
'store_defaultindex' => [
'label' => lng('admin.store_defaultindex') . '?',
'type' => 'checkbox',
'value' => '1',
'checked' => true
],
'new_customer_password' => [
'label' => lng('login.password'),
'type' => 'password',
'autocomplete' => 'off',
'placeholder' => lng('admin.password_default_msg'),
'next_to' => [
'new_customer_password_suggestion' => [
'next_to_prefix' => lng('customer.generated_pwd') . ':',
'type' => 'text',
'visible' => (Settings::Get('panel.password_regex') == ''),
'value' => Crypt::generatePassword(),
'readonly' => true
]
]
],
'sendpassword' => [
'label' => lng('admin.sendpassword'),
'type' => 'checkbox',
'value' => '1',
'checked' => true
],
'def_language' => [
'label' => lng('login.language'),
'type' => 'select',
'select_var' => Language::getLanguages(),
'selected' => Settings::Get('panel.standardlanguage')
],
'api_allowed' => [
'label' => lng('usersettings.api_allowed.title'),
'desc' => lng('usersettings.api_allowed.description'),
'type' => 'checkbox',
'value' => '1',
'checked' => Settings::Get('api.enabled') == '1' && Settings::Get('api.customer_default'),
'visible' => Settings::Get('api.enabled') == '1'
],
]
],
'section_b' => [
'title' => lng('admin.contactdata'),
'image' => 'icons/user_add.png',
'fields' => [
'gender' => [
'label' => lng('gender.title'),
'type' => 'select',
'select_var' => [
0 => lng('gender.undef'),
1 => lng('gender.male'),
2 => lng('gender.female')
]
],
'firstname' => [
'label' => lng('customer.firstname'),
'desc' => lng('customer.nameorcompany_desc'),
'type' => 'text',
'mandatory' => true
],
'name' => [
'label' => lng('customer.lastname'),
'desc' => lng('customer.nameorcompany_desc'),
'type' => 'text',
'mandatory' => true
],
'company' => [
'label' => lng('customer.company'),
'desc' => lng('customer.nameorcompany_desc'),
'type' => 'text',
'mandatory' => true
],
'street' => [
'label' => lng('customer.street'),
'type' => 'text'
],
'zipcode' => [
'label' => lng('customer.zipcode') . ' / ' . lng('customer.city'),
'type' => 'text',
'next_to' => [
'city' => [
'next_to_prefix' => ' / ',
'type' => 'text'
]
]
],
'phone' => [
'label' => lng('customer.phone'),
'type' => 'text'
],
'fax' => [
'label' => lng('customer.fax'),
'type' => 'text'
],
'email' => [
'label' => lng('customer.email'),
'type' => 'text',
'mandatory' => true
],
'customernumber' => [
'label' => lng('customer.customernumber'),
'type' => 'text'
],
'custom_notes' => [
'label' => lng('usersettings.custom_notes.title'),
'desc' => lng('usersettings.custom_notes.description'),
'type' => 'textarea',
'cols' => 60,
'rows' => 12
],
'custom_notes_show' => [
'label' => lng('usersettings.custom_notes.show'),
'type' => 'checkbox',
'value' => '1',
'checked' => false
]
]
],
'section_cpre' => [
'visible' => !empty($hosting_plans),
'title' => lng('admin.plans.use_plan'),
'image' => 'icons/user_add.png',
'fields' => [
'use_plan' => [
'label' => lng('admin.plans.use_plan'),
'type' => 'select',
'select_var' => $hosting_plans
]
]
],
'section_c' => [
'title' => lng('admin.servicedata'),
'image' => 'icons/user_add.png',
'fields' => [
'diskspace' => [
'label' => lng('customer.diskspace') . ' (' . lng('customer.mib') . ')',
'desc' => lng('panel.use_checkbox_for_unlimited'),
'type' => 'textul',
'value' => 0,
'maxlength' => 16,
'mandatory' => true
],
'traffic' => [
'label' => lng('customer.traffic') . ' (' . lng('customer.gib') . ')',
'desc' => lng('panel.use_checkbox_for_unlimited'),
'type' => 'textul',
'value' => 0,
'maxlength' => 14,
'mandatory' => true
],
'subdomains' => [
'label' => lng('customer.subdomains'),
'desc' => lng('panel.use_checkbox_for_unlimited'),
'type' => 'textul',
'value' => 0,
'maxlength' => 9,
'mandatory' => true
],
'emails' => [
'label' => lng('customer.emails'),
'desc' => lng('panel.use_checkbox_for_unlimited'),
'type' => 'textul',
'value' => 0,
'maxlength' => 9,
'mandatory' => true
],
'email_accounts' => [
'label' => lng('customer.accounts'),
'desc' => lng('panel.use_checkbox_for_unlimited'),
'type' => 'textul',
'value' => 0,
'maxlength' => 9,
'mandatory' => true
],
'email_forwarders' => [
'label' => lng('customer.forwarders'),
'desc' => lng('panel.use_checkbox_for_unlimited'),
'type' => 'textul',
'value' => 0,
'maxlength' => 9,
'mandatory' => true
],
'email_quota' => [
'label' => lng('customer.email_quota') . ' (' . lng('customer.mib') . ')',
'desc' => lng('panel.use_checkbox_for_unlimited'),
'type' => 'textul',
'value' => 0,
'maxlength' => 9,
'visible' => Settings::Get('system.mail_quota_enabled') == '1',
'mandatory' => true
],
'email_imap' => [
'label' => lng('customer.email_imap'),
'type' => 'checkbox',
'value' => '1',
'checked' => true,
'mandatory' => true
],
'email_pop3' => [
'label' => lng('customer.email_pop3'),
'type' => 'checkbox',
'value' => '1',
'checked' => true,
'mandatory' => true
],
'ftps' => [
'label' => lng('customer.ftps'),
'desc' => lng('panel.use_checkbox_for_unlimited'),
'type' => 'textul',
'value' => 0,
'maxlength' => 9
],
'mysqls' => [
'label' => lng('customer.mysqls'),
'desc' => lng('panel.use_checkbox_for_unlimited'),
'type' => 'textul',
'value' => 0,
'maxlength' => 9,
'mandatory' => true
],
'allowed_mysqlserver' => [
'visible' => count($mysql_servers) > 1,
'label' => lng('customer.mysqlserver'),
'type' => 'checkbox',
'values' => $mysql_servers,
'value' => [0],
'is_array' => 1
],
'phpenabled' => [
'label' => lng('admin.phpenabled') . '?',
'type' => 'checkbox',
'value' => '1',
'checked' => true
],
'allowed_phpconfigs' => [
'visible' => (((int)Settings::Get('system.mod_fcgid') == 1 || (int)Settings::Get('phpfpm.enabled') == 1)),
'label' => lng('admin.phpsettings.title'),
'type' => 'checkbox',
'values' => $phpconfigs,
'value' => ((int)Settings::Get('system.mod_fcgid') == 1 ?
[Settings::Get('system.mod_fcgid_defaultini')]
: ((int)Settings::Get('phpfpm.enabled') == 1 ?
[Settings::Get('phpfpm.defaultini')]
: null)),
'is_array' => 1
],
'perlenabled' => [
'label' => lng('admin.perlenabled') . '?',
'type' => 'checkbox',
'value' => '1',
'checked' => false
],
'dnsenabled' => [
'label' => lng('admin.dnsenabled') . '?',
'type' => 'checkbox',
'value' => '1',
'checked' => Settings::Get('system.dnsenabled') == '1',
'visible' => Settings::Get('system.dnsenabled') == '1'
],
'logviewenabled' => [
'label' => lng('admin.logviewenabled') . '?',
'type' => 'checkbox',
'value' => '1',
'checked' => true
],
]
]
]
]
];