Release of v5.0.0-beta4

Add fallback option to ensure that all JCB tables and fields exist. Move the powers autoloader to its own file.
This commit is contained in:
Robot 2024-04-22 01:15:03 +02:00
parent 00f14c3bba
commit 0193ab735c
Signed by: Robot
GPG Key ID: 14DECD44E7E1BB95
95 changed files with 11151 additions and 6749 deletions

View File

@ -1,3 +1,8 @@
# v5.0.0-beta4
- Add fallback option to ensure that all JCB tables and fields exist.
- Move the powers autoloader to its own file.
# v5.0.0-beta3 # v5.0.0-beta3
- Add Joomla powers for namespace dynamic management. - Add Joomla powers for namespace dynamic management.

View File

@ -20,6 +20,7 @@ use Joomla\CMS\Version;
use Joomla\CMS\HTML\HTMLHelper as Html; use Joomla\CMS\HTML\HTMLHelper as Html;
use Joomla\Filesystem\Folder; use Joomla\Filesystem\Folder;
use Joomla\Database\DatabaseInterface; use Joomla\Database\DatabaseInterface;
use VDM\Joomla\Componentbuilder\Table\Schema;
// No direct access to this file // No direct access to this file
defined('_JEXEC') or die; defined('_JEXEC') or die;
@ -570,96 +571,17 @@ class Com_ComponentbuilderInstallerScript implements InstallerScriptInterface
\VDM\Component\Componentbuilder\Administrator\Helper\ComponentbuilderHelper::removeFolder($jcb_power); \VDM\Component\Componentbuilder\Administrator\Helper\ComponentbuilderHelper::removeFolder($jcb_power);
} }
} }
$app = $this->app;
// Define the required limits with specific messages for success and warning scenarios // Check that the required configuration are set for PHP
$requiredConfigs = [ $this->phpConfigurationCheck($this->app);
'upload_max_filesize' => [
'value' => '128M',
'success' => 'The upload_max_filesize is appropriately set to handle large files, which is essential for uploading substantial components and media.',
'warning' => 'The current upload_max_filesize may not support large file uploads effectively, potentially causing failures during component installation.'
],
'post_max_size' => [
'value' => '128M',
'success' => 'The post_max_size setting is sufficient to manage large data submissions, ensuring smooth data processing within forms and uploads.',
'warning' => 'An insufficient post_max_size can lead to truncated data submissions, affecting form functionality and data integrity.'
],
'max_execution_time' => [
'value' => 60,
'success' => 'Max execution time is set high enough to execute complex operations without premature termination, which is crucial for lengthy operations.',
'warning' => 'A low max execution time could lead to script timeouts, especially during intensive operations, which might interrupt execution and cause failures during the compiling of a large extension.'
],
'max_input_vars' => [
'value' => 7000,
'success' => 'The max_input_vars setting supports a high number of input variables, facilitating complex forms and detailed component configurations.',
'warning' => 'Too few max_input_vars may result in lost data during processing complex forms, which can lead to incomplete configurations and operational issues.'
],
'max_input_time' => [
'value' => 60,
'success' => 'Max input time is adequate for processing inputs efficiently during high-load operations, ensuring no premature timeouts.',
'warning' => 'An insufficient max input time could result in incomplete data processing during input-heavy operations, potentially leading to errors and data loss.'
],
'memory_limit' => [
'value' => '256M',
'success' => 'The memory limit is set high to accommodate extensive operations and data processing, which enhances overall performance and stability.',
'warning' => 'A low memory limit can lead to frequent crashes and performance issues, particularly when processing large amounts of data or complex calculations.'
]
];
// Helper function to convert PHP INI memory values to bytes
function convertToBytes($value) {
$value = trim($value);
$lastChar = strtolower($value[strlen($value) - 1]);
$numValue = substr($value, 0, -1);
switch ($lastChar)
{
case 'g':
return $numValue * 1024 * 1024 * 1024;
case 'm':
return $numValue * 1024 * 1024;
case 'k':
return $numValue * 1024;
default:
return (int) $value;
}
}
$showHelp = false;
// Check each configuration and provide detailed feedback
foreach ($requiredConfigs as $configName => $configDetails)
{
$currentValue = ini_get($configName);
if ($currentValue === false)
{
$app->enqueueMessage("Error: Unable to retrieve current setting for '{$configName}'.", 'error');
continue;
}
$isMemoryValue = strpbrk($configDetails['value'], 'KMG') !== false;
$requiredValueBytes = $isMemoryValue ? convertToBytes($configDetails['value']) : (int)$configDetails['value'];
$currentValueBytes = $isMemoryValue ? convertToBytes($currentValue) : (int)$currentValue;
$conditionMet = $currentValueBytes >= $requiredValueBytes;
$messageType = $conditionMet ? 'message' : 'warning';
$messageText = $conditionMet ?
"Success: {$configName} is set to {$currentValue}. " . $configDetails['success'] :
"Warning: {$configName} configuration should be at least {$configDetails['value']} but is currently {$currentValue}. " . $configDetails['warning'];
$showHelp = ($showHelp || $messageType === 'warning') ? true : false;
$app->enqueueMessage($messageText, $messageType);
}
if ($showHelp)
{
$app->enqueueMessage('To optimize your Joomla Component Builder (JCB) development environment, specific PHP settings must be enhanced. These settings are crucial for ensuring the successful installation and compilation of extensions. We\'ve identified that certain configurations currently do not meet the recommended standards. To adjust these settings and prevent potential issues, please consult our detailed guide available at <a href="https://git.vdm.dev/joomla/Component-Builder/wiki/PHP-Settings" target="_blank">JCB PHP Settings Wiki</a>.
', 'notice');
}
} }
// do any install needed // do any install needed
if ($type === 'install') if ($type === 'install')
{ {
// Check that the required configuration are set for PHP
$this->phpConfigurationCheck($this->app);
} }
return true; return true;
@ -695,11 +617,11 @@ class Com_ComponentbuilderInstallerScript implements InstallerScriptInterface
// rules // rules
'', '',
// fieldMappings // fieldMappings
'{"common": {"core_content_item_id": "id","core_title": "system_name","core_state": "published","core_alias": "null","core_created_time": "created","core_modified_time": "modified","core_body": "php_postflight_install","core_hits": "hits","core_publish_up": "null","core_publish_down": "null","core_access": "access","core_params": "params","core_featured": "null","core_metadata": "metadata","core_language": "null","core_images": "null","core_urls": "null","core_version": "version","core_ordering": "ordering","core_metakey": "metakey","core_metadesc": "metadesc","core_catid": "null","core_xreference": "null","asset_id": "asset_id"},"special": {"system_name":"system_name","name_code":"name_code","short_description":"short_description","companyname":"companyname","add_jcb_powers_path":"add_jcb_powers_path","add_sales_server":"add_sales_server","sql_uninstall":"sql_uninstall","php_postflight_install":"php_postflight_install","php_site_event":"php_site_event","mvc_versiondate":"mvc_versiondate","remove_line_breaks":"remove_line_breaks","add_placeholders":"add_placeholders","php_helper_both":"php_helper_both","php_admin_event":"php_admin_event","description":"description","css_admin":"css_admin","author":"author","php_preflight_install":"php_preflight_install","email":"email","php_method_uninstall":"php_method_uninstall","website":"website","debug_linenr":"debug_linenr","add_license":"add_license","backup_folder_path":"backup_folder_path","license_type":"license_type","crowdin_project_identifier":"crowdin_project_identifier","whmcs_key":"whmcs_key","php_helper_admin":"php_helper_admin","whmcs_url":"whmcs_url","php_helper_site":"php_helper_site","whmcs_buy_link":"whmcs_buy_link","javascript":"javascript","license":"license","css_site":"css_site","bom":"bom","image":"image","php_preflight_update":"php_preflight_update","copyright":"copyright","php_postflight_update":"php_postflight_update","sql":"sql","addreadme":"addreadme","component_version":"component_version","update_server_url":"update_server_url","preferred_joomla_version":"preferred_joomla_version","add_powers":"add_powers","add_backup_folder_path":"add_backup_folder_path","translation_tool":"translation_tool","crowdin_username":"crowdin_username","buildcompsql":"buildcompsql","add_php_helper_admin":"add_php_helper_admin","add_admin_event":"add_admin_event","add_php_helper_site":"add_php_helper_site","add_site_event":"add_site_event","add_namespace_prefix":"add_namespace_prefix","add_javascript":"add_javascript","namespace_prefix":"namespace_prefix","add_css_admin":"add_css_admin","add_css_site":"add_css_site","add_menu_prefix":"add_menu_prefix","dashboard_type":"dashboard_type","menu_prefix":"menu_prefix","dashboard":"dashboard","add_php_preflight_install":"add_php_preflight_install","add_php_preflight_update":"add_php_preflight_update","toignore":"toignore","add_php_postflight_install":"add_php_postflight_install","add_php_postflight_update":"add_php_postflight_update","add_php_method_uninstall":"add_php_method_uninstall","export_key":"export_key","add_sql":"add_sql","joomla_source_link":"joomla_source_link","add_sql_uninstall":"add_sql_uninstall","export_buy_link":"export_buy_link","assets_table_fix":"assets_table_fix","readme":"readme","add_update_server":"add_update_server","update_server_target":"update_server_target","emptycontributors":"emptycontributors","number":"number","update_server":"update_server","sales_server":"sales_server","add_git_folder_path":"add_git_folder_path","git_folder_path":"git_folder_path","jcb_powers_path":"jcb_powers_path","creatuserhelper":"creatuserhelper","crowdin_project_api_key":"crowdin_project_api_key","adduikit":"adduikit","crowdin_account_api_key":"crowdin_account_api_key","addfootable":"addfootable","buildcomp":"buildcomp","add_email_helper":"add_email_helper","guid":"guid","add_php_helper_both":"add_php_helper_both","name":"name"}}', '{"common": {"core_content_item_id": "id","core_title": "system_name","core_state": "published","core_alias": "null","core_created_time": "created","core_modified_time": "modified","core_body": "php_site_event","core_hits": "hits","core_publish_up": "null","core_publish_down": "null","core_access": "access","core_params": "params","core_featured": "null","core_metadata": "metadata","core_language": "null","core_images": "null","core_urls": "null","core_version": "version","core_ordering": "ordering","core_metakey": "metakey","core_metadesc": "metadesc","core_catid": "null","core_xreference": "null","asset_id": "asset_id"},"special": {"system_name":"system_name","name_code":"name_code","short_description":"short_description","companyname":"companyname","php_site_event":"php_site_event","component_version":"component_version","php_admin_event":"php_admin_event","crowdin_username":"crowdin_username","php_preflight_install":"php_preflight_install","remove_line_breaks":"remove_line_breaks","description":"description","php_method_uninstall":"php_method_uninstall","debug_linenr":"debug_linenr","mvc_versiondate":"mvc_versiondate","css_admin":"css_admin","addreadme":"addreadme","php_postflight_install":"php_postflight_install","add_placeholders":"add_placeholders","sql":"sql","author":"author","update_server_url":"update_server_url","email":"email","add_backup_folder_path":"add_backup_folder_path","website":"website","translation_tool":"translation_tool","add_license":"add_license","buildcompsql":"buildcompsql","license_type":"license_type","php_helper_admin":"php_helper_admin","php_helper_site":"php_helper_site","whmcs_key":"whmcs_key","javascript":"javascript","whmcs_url":"whmcs_url","css_site":"css_site","whmcs_buy_link":"whmcs_buy_link","license":"license","php_preflight_update":"php_preflight_update","bom":"bom","php_postflight_update":"php_postflight_update","image":"image","php_method_install":"php_method_install","copyright":"copyright","sql_uninstall":"sql_uninstall","preferred_joomla_version":"preferred_joomla_version","add_powers":"add_powers","add_sales_server":"add_sales_server","backup_folder_path":"backup_folder_path","add_jcb_powers_path":"add_jcb_powers_path","crowdin_project_identifier":"crowdin_project_identifier","add_php_helper_admin":"add_php_helper_admin","add_admin_event":"add_admin_event","add_php_helper_site":"add_php_helper_site","add_site_event":"add_site_event","add_namespace_prefix":"add_namespace_prefix","add_javascript":"add_javascript","namespace_prefix":"namespace_prefix","add_css_admin":"add_css_admin","add_css_site":"add_css_site","add_menu_prefix":"add_menu_prefix","dashboard_type":"dashboard_type","menu_prefix":"menu_prefix","dashboard":"dashboard","add_php_preflight_install":"add_php_preflight_install","add_php_preflight_update":"add_php_preflight_update","toignore":"toignore","add_php_postflight_install":"add_php_postflight_install","add_php_postflight_update":"add_php_postflight_update","add_php_method_uninstall":"add_php_method_uninstall","export_key":"export_key","add_php_method_install":"add_php_method_install","joomla_source_link":"joomla_source_link","add_sql":"add_sql","export_buy_link":"export_buy_link","add_sql_uninstall":"add_sql_uninstall","assets_table_fix":"assets_table_fix","readme":"readme","add_update_server":"add_update_server","emptycontributors":"emptycontributors","update_server_target":"update_server_target","number":"number","update_server":"update_server","sales_server":"sales_server","add_git_folder_path":"add_git_folder_path","git_folder_path":"git_folder_path","jcb_powers_path":"jcb_powers_path","creatuserhelper":"creatuserhelper","adduikit":"adduikit","crowdin_project_api_key":"crowdin_project_api_key","addfootable":"addfootable","crowdin_account_api_key":"crowdin_account_api_key","add_email_helper":"add_email_helper","buildcomp":"buildcomp","add_php_helper_both":"add_php_helper_both","guid":"guid","php_helper_both":"php_helper_both","name":"name"}}',
// router // router
'', '',
// contentHistoryOptions // contentHistoryOptions
'{"formFile": "administrator/components/com_componentbuilder/forms/joomla_component.xml","hideFields": ["asset_id","checked_out","checked_out_time"],"ignoreChanges": ["modified_by","modified","checked_out","checked_out_time","version","hits"],"convertToInt": ["published","ordering","version","hits","add_jcb_powers_path","add_sales_server","mvc_versiondate","remove_line_breaks","add_placeholders","debug_linenr","add_license","license_type","addreadme","preferred_joomla_version","add_powers","add_backup_folder_path","translation_tool","add_php_helper_admin","add_admin_event","add_php_helper_site","add_site_event","add_javascript","add_css_admin","add_css_site","dashboard_type","add_php_preflight_install","add_php_preflight_update","add_php_postflight_install","add_php_postflight_update","add_php_method_uninstall","add_sql","add_sql_uninstall","assets_table_fix","add_update_server","update_server_target","emptycontributors","number","update_server","sales_server","add_git_folder_path","creatuserhelper","adduikit","addfootable","buildcomp","add_email_helper","add_php_helper_both"],"displayLookup": [{"sourceColumn": "created_by","targetTable": "#__users","targetColumn": "id","displayColumn": "name"},{"sourceColumn": "access","targetTable": "#__viewlevels","targetColumn": "id","displayColumn": "title"},{"sourceColumn": "modified_by","targetTable": "#__users","targetColumn": "id","displayColumn": "name"},{"sourceColumn": "dashboard","targetTable": "#__componentbuilder_custom_admin_view","targetColumn": "","displayColumn": "system_name"},{"sourceColumn": "update_server","targetTable": "#__componentbuilder_server","targetColumn": "id","displayColumn": "name"},{"sourceColumn": "sales_server","targetTable": "#__componentbuilder_server","targetColumn": "id","displayColumn": "name"}]}' '{"formFile": "administrator/components/com_componentbuilder/forms/joomla_component.xml","hideFields": ["asset_id","checked_out","checked_out_time"],"ignoreChanges": ["modified_by","modified","checked_out","checked_out_time","version","hits"],"convertToInt": ["published","ordering","version","hits","remove_line_breaks","debug_linenr","mvc_versiondate","addreadme","add_placeholders","add_backup_folder_path","translation_tool","add_license","license_type","preferred_joomla_version","add_powers","add_sales_server","add_jcb_powers_path","add_php_helper_admin","add_admin_event","add_php_helper_site","add_site_event","add_javascript","add_css_admin","add_css_site","dashboard_type","add_php_preflight_install","add_php_preflight_update","add_php_postflight_install","add_php_postflight_update","add_php_method_uninstall","add_php_method_install","add_sql","add_sql_uninstall","assets_table_fix","add_update_server","emptycontributors","update_server_target","number","update_server","sales_server","add_git_folder_path","creatuserhelper","adduikit","addfootable","add_email_helper","buildcomp","add_php_helper_both"],"displayLookup": [{"sourceColumn": "created_by","targetTable": "#__users","targetColumn": "id","displayColumn": "name"},{"sourceColumn": "access","targetTable": "#__viewlevels","targetColumn": "id","displayColumn": "title"},{"sourceColumn": "modified_by","targetTable": "#__users","targetColumn": "id","displayColumn": "name"},{"sourceColumn": "dashboard","targetTable": "#__componentbuilder_custom_admin_view","targetColumn": "","displayColumn": "system_name"},{"sourceColumn": "update_server","targetTable": "#__componentbuilder_server","targetColumn": "id","displayColumn": "name"},{"sourceColumn": "sales_server","targetTable": "#__componentbuilder_server","targetColumn": "id","displayColumn": "name"}]}'
); );
// Install Joomla module Content Types. // Install Joomla module Content Types.
$this->setContentType( $this->setContentType(
@ -1578,6 +1500,10 @@ class Com_ComponentbuilderInstallerScript implements InstallerScriptInterface
); );
// Check that the database is up-to date
$this->databaseSchemaCheck($this->app);
echo '<div style="background-color: #fff;" class="alert alert-info"><a target="_blank" href="https://dev.vdm.io" title="Component Builder"> echo '<div style="background-color: #fff;" class="alert alert-info"><a target="_blank" href="https://dev.vdm.io" title="Component Builder">
<img src="components/com_componentbuilder/assets/images/vdm-component.jpg"/> <img src="components/com_componentbuilder/assets/images/vdm-component.jpg"/>
</a></div>'; </a></div>';
@ -2401,11 +2327,11 @@ class Com_ComponentbuilderInstallerScript implements InstallerScriptInterface
// rules // rules
'', '',
// fieldMappings // fieldMappings
'{"common": {"core_content_item_id": "id","core_title": "system_name","core_state": "published","core_alias": "null","core_created_time": "created","core_modified_time": "modified","core_body": "php_postflight_install","core_hits": "hits","core_publish_up": "null","core_publish_down": "null","core_access": "access","core_params": "params","core_featured": "null","core_metadata": "metadata","core_language": "null","core_images": "null","core_urls": "null","core_version": "version","core_ordering": "ordering","core_metakey": "metakey","core_metadesc": "metadesc","core_catid": "null","core_xreference": "null","asset_id": "asset_id"},"special": {"system_name":"system_name","name_code":"name_code","short_description":"short_description","companyname":"companyname","add_jcb_powers_path":"add_jcb_powers_path","add_sales_server":"add_sales_server","sql_uninstall":"sql_uninstall","php_postflight_install":"php_postflight_install","php_site_event":"php_site_event","mvc_versiondate":"mvc_versiondate","remove_line_breaks":"remove_line_breaks","add_placeholders":"add_placeholders","php_helper_both":"php_helper_both","php_admin_event":"php_admin_event","description":"description","css_admin":"css_admin","author":"author","php_preflight_install":"php_preflight_install","email":"email","php_method_uninstall":"php_method_uninstall","website":"website","debug_linenr":"debug_linenr","add_license":"add_license","backup_folder_path":"backup_folder_path","license_type":"license_type","crowdin_project_identifier":"crowdin_project_identifier","whmcs_key":"whmcs_key","php_helper_admin":"php_helper_admin","whmcs_url":"whmcs_url","php_helper_site":"php_helper_site","whmcs_buy_link":"whmcs_buy_link","javascript":"javascript","license":"license","css_site":"css_site","bom":"bom","image":"image","php_preflight_update":"php_preflight_update","copyright":"copyright","php_postflight_update":"php_postflight_update","sql":"sql","addreadme":"addreadme","component_version":"component_version","update_server_url":"update_server_url","preferred_joomla_version":"preferred_joomla_version","add_powers":"add_powers","add_backup_folder_path":"add_backup_folder_path","translation_tool":"translation_tool","crowdin_username":"crowdin_username","buildcompsql":"buildcompsql","add_php_helper_admin":"add_php_helper_admin","add_admin_event":"add_admin_event","add_php_helper_site":"add_php_helper_site","add_site_event":"add_site_event","add_namespace_prefix":"add_namespace_prefix","add_javascript":"add_javascript","namespace_prefix":"namespace_prefix","add_css_admin":"add_css_admin","add_css_site":"add_css_site","add_menu_prefix":"add_menu_prefix","dashboard_type":"dashboard_type","menu_prefix":"menu_prefix","dashboard":"dashboard","add_php_preflight_install":"add_php_preflight_install","add_php_preflight_update":"add_php_preflight_update","toignore":"toignore","add_php_postflight_install":"add_php_postflight_install","add_php_postflight_update":"add_php_postflight_update","add_php_method_uninstall":"add_php_method_uninstall","export_key":"export_key","add_sql":"add_sql","joomla_source_link":"joomla_source_link","add_sql_uninstall":"add_sql_uninstall","export_buy_link":"export_buy_link","assets_table_fix":"assets_table_fix","readme":"readme","add_update_server":"add_update_server","update_server_target":"update_server_target","emptycontributors":"emptycontributors","number":"number","update_server":"update_server","sales_server":"sales_server","add_git_folder_path":"add_git_folder_path","git_folder_path":"git_folder_path","jcb_powers_path":"jcb_powers_path","creatuserhelper":"creatuserhelper","crowdin_project_api_key":"crowdin_project_api_key","adduikit":"adduikit","crowdin_account_api_key":"crowdin_account_api_key","addfootable":"addfootable","buildcomp":"buildcomp","add_email_helper":"add_email_helper","guid":"guid","add_php_helper_both":"add_php_helper_both","name":"name"}}', '{"common": {"core_content_item_id": "id","core_title": "system_name","core_state": "published","core_alias": "null","core_created_time": "created","core_modified_time": "modified","core_body": "php_site_event","core_hits": "hits","core_publish_up": "null","core_publish_down": "null","core_access": "access","core_params": "params","core_featured": "null","core_metadata": "metadata","core_language": "null","core_images": "null","core_urls": "null","core_version": "version","core_ordering": "ordering","core_metakey": "metakey","core_metadesc": "metadesc","core_catid": "null","core_xreference": "null","asset_id": "asset_id"},"special": {"system_name":"system_name","name_code":"name_code","short_description":"short_description","companyname":"companyname","php_site_event":"php_site_event","component_version":"component_version","php_admin_event":"php_admin_event","crowdin_username":"crowdin_username","php_preflight_install":"php_preflight_install","remove_line_breaks":"remove_line_breaks","description":"description","php_method_uninstall":"php_method_uninstall","debug_linenr":"debug_linenr","mvc_versiondate":"mvc_versiondate","css_admin":"css_admin","addreadme":"addreadme","php_postflight_install":"php_postflight_install","add_placeholders":"add_placeholders","sql":"sql","author":"author","update_server_url":"update_server_url","email":"email","add_backup_folder_path":"add_backup_folder_path","website":"website","translation_tool":"translation_tool","add_license":"add_license","buildcompsql":"buildcompsql","license_type":"license_type","php_helper_admin":"php_helper_admin","php_helper_site":"php_helper_site","whmcs_key":"whmcs_key","javascript":"javascript","whmcs_url":"whmcs_url","css_site":"css_site","whmcs_buy_link":"whmcs_buy_link","license":"license","php_preflight_update":"php_preflight_update","bom":"bom","php_postflight_update":"php_postflight_update","image":"image","php_method_install":"php_method_install","copyright":"copyright","sql_uninstall":"sql_uninstall","preferred_joomla_version":"preferred_joomla_version","add_powers":"add_powers","add_sales_server":"add_sales_server","backup_folder_path":"backup_folder_path","add_jcb_powers_path":"add_jcb_powers_path","crowdin_project_identifier":"crowdin_project_identifier","add_php_helper_admin":"add_php_helper_admin","add_admin_event":"add_admin_event","add_php_helper_site":"add_php_helper_site","add_site_event":"add_site_event","add_namespace_prefix":"add_namespace_prefix","add_javascript":"add_javascript","namespace_prefix":"namespace_prefix","add_css_admin":"add_css_admin","add_css_site":"add_css_site","add_menu_prefix":"add_menu_prefix","dashboard_type":"dashboard_type","menu_prefix":"menu_prefix","dashboard":"dashboard","add_php_preflight_install":"add_php_preflight_install","add_php_preflight_update":"add_php_preflight_update","toignore":"toignore","add_php_postflight_install":"add_php_postflight_install","add_php_postflight_update":"add_php_postflight_update","add_php_method_uninstall":"add_php_method_uninstall","export_key":"export_key","add_php_method_install":"add_php_method_install","joomla_source_link":"joomla_source_link","add_sql":"add_sql","export_buy_link":"export_buy_link","add_sql_uninstall":"add_sql_uninstall","assets_table_fix":"assets_table_fix","readme":"readme","add_update_server":"add_update_server","emptycontributors":"emptycontributors","update_server_target":"update_server_target","number":"number","update_server":"update_server","sales_server":"sales_server","add_git_folder_path":"add_git_folder_path","git_folder_path":"git_folder_path","jcb_powers_path":"jcb_powers_path","creatuserhelper":"creatuserhelper","adduikit":"adduikit","crowdin_project_api_key":"crowdin_project_api_key","addfootable":"addfootable","crowdin_account_api_key":"crowdin_account_api_key","add_email_helper":"add_email_helper","buildcomp":"buildcomp","add_php_helper_both":"add_php_helper_both","guid":"guid","php_helper_both":"php_helper_both","name":"name"}}',
// router // router
'', '',
// contentHistoryOptions // contentHistoryOptions
'{"formFile": "administrator/components/com_componentbuilder/forms/joomla_component.xml","hideFields": ["asset_id","checked_out","checked_out_time"],"ignoreChanges": ["modified_by","modified","checked_out","checked_out_time","version","hits"],"convertToInt": ["published","ordering","version","hits","add_jcb_powers_path","add_sales_server","mvc_versiondate","remove_line_breaks","add_placeholders","debug_linenr","add_license","license_type","addreadme","preferred_joomla_version","add_powers","add_backup_folder_path","translation_tool","add_php_helper_admin","add_admin_event","add_php_helper_site","add_site_event","add_javascript","add_css_admin","add_css_site","dashboard_type","add_php_preflight_install","add_php_preflight_update","add_php_postflight_install","add_php_postflight_update","add_php_method_uninstall","add_sql","add_sql_uninstall","assets_table_fix","add_update_server","update_server_target","emptycontributors","number","update_server","sales_server","add_git_folder_path","creatuserhelper","adduikit","addfootable","buildcomp","add_email_helper","add_php_helper_both"],"displayLookup": [{"sourceColumn": "created_by","targetTable": "#__users","targetColumn": "id","displayColumn": "name"},{"sourceColumn": "access","targetTable": "#__viewlevels","targetColumn": "id","displayColumn": "title"},{"sourceColumn": "modified_by","targetTable": "#__users","targetColumn": "id","displayColumn": "name"},{"sourceColumn": "dashboard","targetTable": "#__componentbuilder_custom_admin_view","targetColumn": "","displayColumn": "system_name"},{"sourceColumn": "update_server","targetTable": "#__componentbuilder_server","targetColumn": "id","displayColumn": "name"},{"sourceColumn": "sales_server","targetTable": "#__componentbuilder_server","targetColumn": "id","displayColumn": "name"}]}' '{"formFile": "administrator/components/com_componentbuilder/forms/joomla_component.xml","hideFields": ["asset_id","checked_out","checked_out_time"],"ignoreChanges": ["modified_by","modified","checked_out","checked_out_time","version","hits"],"convertToInt": ["published","ordering","version","hits","remove_line_breaks","debug_linenr","mvc_versiondate","addreadme","add_placeholders","add_backup_folder_path","translation_tool","add_license","license_type","preferred_joomla_version","add_powers","add_sales_server","add_jcb_powers_path","add_php_helper_admin","add_admin_event","add_php_helper_site","add_site_event","add_javascript","add_css_admin","add_css_site","dashboard_type","add_php_preflight_install","add_php_preflight_update","add_php_postflight_install","add_php_postflight_update","add_php_method_uninstall","add_php_method_install","add_sql","add_sql_uninstall","assets_table_fix","add_update_server","emptycontributors","update_server_target","number","update_server","sales_server","add_git_folder_path","creatuserhelper","adduikit","addfootable","add_email_helper","buildcomp","add_php_helper_both"],"displayLookup": [{"sourceColumn": "created_by","targetTable": "#__users","targetColumn": "id","displayColumn": "name"},{"sourceColumn": "access","targetTable": "#__viewlevels","targetColumn": "id","displayColumn": "title"},{"sourceColumn": "modified_by","targetTable": "#__users","targetColumn": "id","displayColumn": "name"},{"sourceColumn": "dashboard","targetTable": "#__componentbuilder_custom_admin_view","targetColumn": "","displayColumn": "system_name"},{"sourceColumn": "update_server","targetTable": "#__componentbuilder_server","targetColumn": "id","displayColumn": "name"},{"sourceColumn": "sales_server","targetTable": "#__componentbuilder_server","targetColumn": "id","displayColumn": "name"}]}'
); );
// Update Joomla module Content Types. // Update Joomla module Content Types.
$this->setContentType( $this->setContentType(
@ -3277,10 +3203,14 @@ class Com_ComponentbuilderInstallerScript implements InstallerScriptInterface
// Check that the database is up-to date
$this->databaseSchemaCheck($this->app);
echo '<div style="background-color: #fff;" class="alert alert-info"><a target="_blank" href="https://dev.vdm.io" title="Component Builder"> echo '<div style="background-color: #fff;" class="alert alert-info"><a target="_blank" href="https://dev.vdm.io" title="Component Builder">
<img src="components/com_componentbuilder/assets/images/vdm-component.jpg"/> <img src="components/com_componentbuilder/assets/images/vdm-component.jpg"/>
</a> </a>
<h3>Upgrade to Version 5.0.0-beta3 Was Successful! Let us know if anything is not working as expected.</h3></div>'; <h3>Upgrade to Version 5.0.0-beta4 Was Successful! Let us know if anything is not working as expected.</h3></div>';
// Add/Update component in the action logs extensions table. // Add/Update component in the action logs extensions table.
$this->setActionLogsExtensions(); $this->setActionLogsExtensions();
@ -4913,6 +4843,173 @@ class Com_ComponentbuilderInstallerScript implements InstallerScriptInterface
} }
} }
/**
* Define the required limits with specific messages for success and warning scenarios
*
* @var array
* @since 3.2.1
*/
protected array $requiredPHPConfigs = [
'upload_max_filesize' => [
'value' => '128M',
'success' => 'The upload_max_filesize is appropriately set to handle large files, which is essential for uploading substantial components and media.',
'warning' => 'The current upload_max_filesize may not support large file uploads effectively, potentially causing failures during component installation.'
],
'post_max_size' => [
'value' => '128M',
'success' => 'The post_max_size setting is sufficient to manage large data submissions, ensuring smooth data processing within forms and uploads.',
'warning' => 'An insufficient post_max_size can lead to truncated data submissions, affecting form functionality and data integrity.'
],
'max_execution_time' => [
'value' => 60,
'success' => 'Max execution time is set high enough to execute complex operations without premature termination, which is crucial for lengthy operations.',
'warning' => 'A low max execution time could lead to script timeouts, especially during intensive operations, which might interrupt execution and cause failures during the compiling of a large extension.'
],
'max_input_vars' => [
'value' => 7000,
'success' => 'The max_input_vars setting supports a high number of input variables, facilitating complex forms and detailed component configurations.',
'warning' => 'Too few max_input_vars may result in lost data during processing complex forms, which can lead to incomplete configurations and operational issues.'
],
'max_input_time' => [
'value' => 60,
'success' => 'Max input time is adequate for processing inputs efficiently during high-load operations, ensuring no premature timeouts.',
'warning' => 'An insufficient max input time could result in incomplete data processing during input-heavy operations, potentially leading to errors and data loss.'
],
'memory_limit' => [
'value' => '256M',
'success' => 'The memory limit is set high to accommodate extensive operations and data processing, which enhances overall performance and stability.',
'warning' => 'A low memory limit can lead to frequent crashes and performance issues, particularly when processing large amounts of data or complex calculations.'
]
];
/**
* Helper function to convert PHP INI memory values to bytes
*
* @param string $value The value to convert
*
* @return int The bytes value
* @since 3.2.1
*/
protected function convertToBytes(string $value): int
{
$value = trim($value);
$lastChar = strtolower($value[strlen($value) - 1]);
$numValue = substr($value, 0, -1);
switch ($lastChar)
{
case 'g':
return $numValue * 1024 * 1024 * 1024;
case 'm':
return $numValue * 1024 * 1024;
case 'k':
return $numValue * 1024;
default:
return (int) $value;
}
}
/**
* Check that the required configurations are set for PHP
*
* @param $app The application
*
* @return void
* @since 3.2.1
*/
protected function phpConfigurationCheck($app): void
{
$showHelp = false;
// Check each configuration and provide detailed feedback
foreach ($this->requiredPHPConfigs as $configName => $configDetails)
{
$currentValue = ini_get($configName);
if ($currentValue === false)
{
$app->enqueueMessage("Error: Unable to retrieve current setting for '{$configName}'.", 'error');
continue;
}
$isMemoryValue = strpbrk($configDetails['value'], 'KMG') !== false;
$requiredValueBytes = $isMemoryValue ? $this->convertToBytes($configDetails['value']) : (int) $configDetails['value'];
$currentValueBytes = $isMemoryValue ? $this->convertToBytes($currentValue) : (int) $currentValue;
$conditionMet = $currentValueBytes >= $requiredValueBytes;
$messageType = $conditionMet ? 'message' : 'warning';
$messageText = $conditionMet ?
"Success: {$configName} is set to {$currentValue}. " . $configDetails['success'] :
"Warning: {$configName} configuration should be at least {$configDetails['value']} but is currently {$currentValue}. " . $configDetails['warning'];
$showHelp = ($showHelp || $messageType === 'warning') ? true : false;
$app->enqueueMessage($messageText, $messageType);
}
if ($showHelp)
{
$app->enqueueMessage('To optimize your Joomla Component Builder (JCB) development environment, specific PHP settings must be enhanced.<br>These settings are crucial for ensuring the successful installation and compilation of extensions.<br>We\'ve identified that certain configurations currently do not meet the recommended standards.<br>To adjust these settings and prevent potential issues, please consult our detailed guide available at <a href="https://git.vdm.dev/joomla/Component-Builder/wiki/PHP-Settings" target="_blank">JCB PHP Settings Wiki</a>.
', 'notice');
}
}
/**
* Make sure that the componentbuilder database schema is up to date.
*
* @return void
* @since 3.2.1
*/
protected function databaseSchemaCheck($app): void
{
// try to load the schema class
try
{
// make sure the class is loaded
$this->ensureClassExists(
Schema::class
);
// instantiate the schema class and check/update the database
$messages = (new Schema())->update();
}
catch (\Exception $e)
{
$app->enqueueMessage($e->getMessage(), 'warning');
return;
}
foreach ($messages as $message)
{
$app->enqueueMessage($message, 'message');
}
}
/**
* Ensures that a class in the namespace is available.
* If the class is not already loaded, it attempts to load it.
*
* @param mixed $className The class name to load.
*
* @return void
* @since 3.2.1
*/
protected function ensureClassExists($className): void
{
if (!class_exists($className, true))
{
// The power autoloader for this project admin area.
$power_autoloader = JPATH_ADMINISTRATOR . '/componenents/com_componentbuilder/src/Helper/PowerloaderHelper.php';
if (file_exists($power_autoloader))
{
require_once $power_autoloader;
}
// Check again if the class now exists after requiring it
if (!class_exists($className, true))
{
throw new \Exception($errorMessage);
}
}
}
/** /**
* Method to move folders into place. * Method to move folders into place.
* *

View File

@ -9,7 +9,7 @@ The Component Builder for [Joomla](https://extensions.joomla.org/extension/compo
Whether you're a seasoned [Joomla](https://extensions.joomla.org/extension/component-builder/) developer, or have just started, Component Builder will save you lots of time and money. A real must have! Whether you're a seasoned [Joomla](https://extensions.joomla.org/extension/component-builder/) developer, or have just started, Component Builder will save you lots of time and money. A real must have!
You can install it quite easily and with no limitations. On [gitea](https://git.vdm.dev/joomla/Component-Builder/tags) is the latest release (5.0.0-beta3) with **ALL** its features and **ALL** concepts totally open-source and free! You can install it quite easily and with no limitations. On [gitea](https://git.vdm.dev/joomla/Component-Builder/tags) is the latest release (5.0.0-beta4) with **ALL** its features and **ALL** concepts totally open-source and free!
> Watch Quick Build of a Hello World component in [JCB on Youtube](https://www.youtube.com/watch?v=IQfsLYIeblk&list=PLQRGFI8XZ_wtGvPQZWBfDzzlERLQgpMRE&index=45) > Watch Quick Build of a Hello World component in [JCB on Youtube](https://www.youtube.com/watch?v=IQfsLYIeblk&list=PLQRGFI8XZ_wtGvPQZWBfDzzlERLQgpMRE&index=45)
@ -144,14 +144,14 @@ TODO
+ *Author*: [Llewellyn van der Merwe](mailto:joomla@vdm.io) + *Author*: [Llewellyn van der Merwe](mailto:joomla@vdm.io)
+ *Name*: [Component Builder](https://git.vdm.dev/joomla/Component-Builder) + *Name*: [Component Builder](https://git.vdm.dev/joomla/Component-Builder)
+ *First Build*: 30th April, 2015 + *First Build*: 30th April, 2015
+ *Last Build*: 16th April, 2024 + *Last Build*: 21st April, 2024
+ *Version*: 5.0.0-beta3 + *Version*: 5.0.0-beta4
+ *Copyright*: Copyright (C) 2015 Vast Development Method. All rights reserved. + *Copyright*: Copyright (C) 2015 Vast Development Method. All rights reserved.
+ *License*: GNU General Public License version 2 or later; see LICENSE.txt + *License*: GNU General Public License version 2 or later; see LICENSE.txt
+ *Line count*: **743151** + *Line count*: **754312**
+ *Field count*: **2095** + *Field count*: **2097**
+ *File count*: **5279** + *File count*: **5298**
+ *Folder count*: **530** + *Folder count*: **531**
> This **component** was build with a [Joomla](https://extensions.joomla.org/extension/component-builder/) [Automated Component Builder](https://www.joomlacomponentbuilder.com). > This **component** was build with a [Joomla](https://extensions.joomla.org/extension/component-builder/) [Automated Component Builder](https://www.joomlacomponentbuilder.com).
> Developed by [Llewellyn van der Merwe](mailto:joomla@vdm.io) > Developed by [Llewellyn van der Merwe](mailto:joomla@vdm.io)

View File

@ -9,7 +9,7 @@ The Component Builder for [Joomla](https://extensions.joomla.org/extension/compo
Whether you're a seasoned [Joomla](https://extensions.joomla.org/extension/component-builder/) developer, or have just started, Component Builder will save you lots of time and money. A real must have! Whether you're a seasoned [Joomla](https://extensions.joomla.org/extension/component-builder/) developer, or have just started, Component Builder will save you lots of time and money. A real must have!
You can install it quite easily and with no limitations. On [gitea](https://git.vdm.dev/joomla/Component-Builder/tags) is the latest release (5.0.0-beta3) with **ALL** its features and **ALL** concepts totally open-source and free! You can install it quite easily and with no limitations. On [gitea](https://git.vdm.dev/joomla/Component-Builder/tags) is the latest release (5.0.0-beta4) with **ALL** its features and **ALL** concepts totally open-source and free!
> Watch Quick Build of a Hello World component in [JCB on Youtube](https://www.youtube.com/watch?v=IQfsLYIeblk&list=PLQRGFI8XZ_wtGvPQZWBfDzzlERLQgpMRE&index=45) > Watch Quick Build of a Hello World component in [JCB on Youtube](https://www.youtube.com/watch?v=IQfsLYIeblk&list=PLQRGFI8XZ_wtGvPQZWBfDzzlERLQgpMRE&index=45)
@ -144,14 +144,14 @@ TODO
+ *Author*: [Llewellyn van der Merwe](mailto:joomla@vdm.io) + *Author*: [Llewellyn van der Merwe](mailto:joomla@vdm.io)
+ *Name*: [Component Builder](https://git.vdm.dev/joomla/Component-Builder) + *Name*: [Component Builder](https://git.vdm.dev/joomla/Component-Builder)
+ *First Build*: 30th April, 2015 + *First Build*: 30th April, 2015
+ *Last Build*: 16th April, 2024 + *Last Build*: 21st April, 2024
+ *Version*: 5.0.0-beta3 + *Version*: 5.0.0-beta4
+ *Copyright*: Copyright (C) 2015 Vast Development Method. All rights reserved. + *Copyright*: Copyright (C) 2015 Vast Development Method. All rights reserved.
+ *License*: GNU General Public License version 2 or later; see LICENSE.txt + *License*: GNU General Public License version 2 or later; see LICENSE.txt
+ *Line count*: **743151** + *Line count*: **754312**
+ *Field count*: **2095** + *Field count*: **2097**
+ *File count*: **5279** + *File count*: **5298**
+ *Folder count*: **530** + *Folder count*: **531**
> This **component** was build with a [Joomla](https://extensions.joomla.org/extension/component-builder/) [Automated Component Builder](https://www.joomlacomponentbuilder.com). > This **component** was build with a [Joomla](https://extensions.joomla.org/extension/component-builder/) [Automated Component Builder](https://www.joomlacomponentbuilder.com).
> Developed by [Llewellyn van der Merwe](mailto:joomla@vdm.io) > Developed by [Llewellyn van der Merwe](mailto:joomla@vdm.io)

View File

@ -15,7 +15,14 @@ defined('_JEXEC') or die('Restricted access');
###BOM### ###BOM###
// No direct access to this file // No direct access to this file
defined('_JEXEC') or die('Restricted access');###ADMIN_POWER_HELPER### defined('_JEXEC') or die('Restricted access');
// The power autoloader for this project admin area.
$power_autoloader = JPATH_ADMINISTRATOR . '/components/com_###component###/helpers/powerloader.php';
if (file_exists($power_autoloader))
{
require_once $power_autoloader;
}
###ADMIN_HELPER_CLASS_HEADER### ###ADMIN_HELPER_CLASS_HEADER###

View File

@ -15,7 +15,14 @@ defined('_JEXEC') or die('Restricted access');
###BOM### ###BOM###
// No direct access to this file // No direct access to this file
defined('_JEXEC') or die('Restricted access');###SITE_POWER_HELPER### defined('_JEXEC') or die('Restricted access');
// The power autoloader for this project site area.
$power_autoloader = JPATH_SITE . '/components/com_###component###/helpers/powerloader.php';
if (file_exists($power_autoloader))
{
require_once $power_autoloader;
}
###SITE_HELPER_CLASS_HEADER### ###SITE_HELPER_CLASS_HEADER###

View File

@ -0,0 +1,18 @@
<?php
/**
* @package Joomla.Component.Builder
*
* @created 30th April, 2015
* @author Llewellyn van der Merwe <https://dev.vdm.io>
* @git Joomla Component Builder <https://git.vdm.dev/joomla/Component-Builder>
* @copyright Copyright (C) 2015 Vast Development Method. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
// No direct access to this file
defined('_JEXEC') or die('Restricted access');
?>
###BOM###
// No direct access to this file
defined('_JEXEC') or die;###ADMIN_POWER_HELPER###

View File

@ -0,0 +1,18 @@
<?php
/**
* @package Joomla.Component.Builder
*
* @created 30th April, 2015
* @author Llewellyn van der Merwe <https://dev.vdm.io>
* @git Joomla Component Builder <https://git.vdm.dev/joomla/Component-Builder>
* @copyright Copyright (C) 2015 Vast Development Method. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
// No direct access to this file
defined('_JEXEC') or die('Restricted access');
?>
###BOM###
// No direct access to this file
defined('_JEXEC') or die;###SITE_POWER_HELPER###

View File

@ -15,7 +15,14 @@ defined('_JEXEC') or die('Restricted access');
###BOM### ###BOM###
// No direct access to this file // No direct access to this file
defined('_JEXEC') or die('Restricted access');###ADMIN_POWER_HELPER### defined('_JEXEC') or die('Restricted access');
// The power autoloader for this project admin area.
$power_autoloader = JPATH_ADMINISTRATOR . '/components/com_###component###/helpers/powerloader.php';
if (file_exists($power_autoloader))
{
require_once $power_autoloader;
}
###ADMIN_COMPONENT_HEADER### ###ADMIN_COMPONENT_HEADER###

View File

@ -15,7 +15,14 @@ defined('_JEXEC') or die('Restricted access');
###BOM### ###BOM###
// No direct access to this file // No direct access to this file
defined('_JEXEC') or die('Restricted access');###ADMIN_POWER_HELPER### defined('_JEXEC') or die('Restricted access');
// The power autoloader for this project site area.
$power_autoloader = JPATH_SITE . '/components/com_###component###/helpers/powerloader.php';
if (file_exists($power_autoloader))
{
require_once $power_autoloader;
}
###SITE_COMPONENT_HEADER### ###SITE_COMPONENT_HEADER###

View File

@ -236,5 +236,5 @@ class Com_###Component###InstallerScript
return $nr; return $nr;
} }
return false; return false;
}###MOVEFOLDERSMETHOD### }###INSTALLERMETHODS###
} }

View File

@ -164,6 +164,20 @@
"newName": "category.php", "newName": "category.php",
"type": "file" "type": "file"
}, },
"autoloader.php": {
"naam": "autoloader.php",
"path": "c0mp0n3nt/admin/helpers",
"rename": "new",
"newName": "powerloader.php",
"type": "file"
},
"autoloader_site.php": {
"naam": "autoloader_site.php",
"path": "c0mp0n3nt/site/helpers",
"rename": "new",
"newName": "powerloader.php",
"type": "file"
},
"script.php": { "script.php": {
"naam": "script.php", "naam": "script.php",
"path": "c0mp0n3nt/", "path": "c0mp0n3nt/",

View File

@ -0,0 +1,18 @@
<?php
/**
* @package Joomla.Component.Builder
*
* @created 4th September 2022
* @author Llewellyn van der Merwe <https://dev.vdm.io>
* @git Joomla Component Builder <https://git.vdm.dev/joomla/Component-Builder>
* @copyright Copyright (C) 2015 Vast Development Method. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
// No direct access to this JCB template file (EVER)
defined('_JCB_TEMPLATE') or die;
?>
###BOM###
// No direct access to this file
defined('_JEXEC') or die;###ADMIN_POWER_HELPER###

View File

@ -15,7 +15,12 @@ defined('_JCB_TEMPLATE') or die;
###BOM### ###BOM###
namespace ###NAMESPACEPREFIX###\Component\###ComponentNamespace###\Administrator\Helper; namespace ###NAMESPACEPREFIX###\Component\###ComponentNamespace###\Administrator\Helper;
###ADMIN_POWER_HELPER### // The power autoloader for this project admin area.
$power_autoloader = JPATH_ADMINISTRATOR . '/components/com_###component###/src/Helper/PowerloaderHelper.php';
if (file_exists($power_autoloader))
{
require_once $power_autoloader;
}
###ADMIN_HELPER_CLASS_HEADER### ###ADMIN_HELPER_CLASS_HEADER###

View File

@ -14,7 +14,12 @@ defined('_JCB_TEMPLATE') or die;
?> ?>
###BOM### ###BOM###
###ADMIN_POWER_HELPER### // The power autoloader for this project admin area.
$power_autoloader = JPATH_ADMINISTRATOR . '/components/com_###component###/src/Helper/PowerloaderHelper.php';
if (file_exists($power_autoloader))
{
require_once $power_autoloader;
}
// (soon) use Joomla\CMS\Association\AssociationExtensionInterface; // (soon) use Joomla\CMS\Association\AssociationExtensionInterface;
use Joomla\CMS\Categories\CategoryFactoryInterface; use Joomla\CMS\Categories\CategoryFactoryInterface;

View File

@ -1095,5 +1095,5 @@ class Com_###Component###InstallerScript implements InstallerScriptInterface
); );
} }
} }
}###MOVEFOLDERSMETHOD### }###INSTALLERMETHODS###
} }

View File

@ -0,0 +1,18 @@
<?php
/**
* @package Joomla.Component.Builder
*
* @created 4th September 2022
* @author Llewellyn van der Merwe <https://dev.vdm.io>
* @git Joomla Component Builder <https://git.vdm.dev/joomla/Component-Builder>
* @copyright Copyright (C) 2015 Vast Development Method. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
// No direct access to this JCB template file (EVER)
defined('_JCB_TEMPLATE') or die;
?>
###BOM###
// No direct access to this file
defined('_JEXEC') or die;###SITE_POWER_HELPER###

View File

@ -15,7 +15,12 @@ defined('_JCB_TEMPLATE') or die;
###BOM### ###BOM###
namespace ###NAMESPACEPREFIX###\Component\###ComponentNamespace###\Site\Helper; namespace ###NAMESPACEPREFIX###\Component\###ComponentNamespace###\Site\Helper;
###SITE_POWER_HELPER### // The power autoloader for this project site area.
$power_autoloader = JPATH_SITE . '/components/com_###component###/src/Helper/PowerloaderHelper.php';
if (file_exists($power_autoloader))
{
require_once $power_autoloader;
}
###SITE_HELPER_CLASS_HEADER### ###SITE_HELPER_CLASS_HEADER###

View File

@ -161,6 +161,20 @@
"newName": "[[[Component]]]Helper.php", "newName": "[[[Component]]]Helper.php",
"type": "file" "type": "file"
}, },
"ADMIN_AUTOLOADER_CLASS.php": {
"naam": "ADMIN_AUTOLOADER_CLASS.php",
"path": "c0mp0n3nt/admin/src/Helper",
"rename": "new",
"newName": "PowerloaderHelper.php",
"type": "file"
},
"SITE_AUTOLOADER_CLASS.php": {
"naam": "SITE_AUTOLOADER_CLASS.php",
"path": "c0mp0n3nt/site/src/Helper",
"rename": "new",
"newName": "PowerloaderHelper.php",
"type": "file"
},
"INSTALLER_SCRIPT.php": { "INSTALLER_SCRIPT.php": {
"naam": "INSTALLER_SCRIPT.php", "naam": "INSTALLER_SCRIPT.php",
"path": "c0mp0n3nt/", "path": "c0mp0n3nt/",

View File

@ -889,7 +889,7 @@
class="text_area span12" class="text_area span12"
filter="raw" filter="raw"
hint="COM_COMPONENTBUILDER_ADMIN_VIEW_SQL_HINT" hint="COM_COMPONENTBUILDER_ADMIN_VIEW_SQL_HINT"
required="true" showon="add_sql:1"
/> />
<!-- Note_category_menu_switch Field. Type: Note. A None Database Field. (joomla) --> <!-- Note_category_menu_switch Field. Type: Note. A None Database Field. (joomla) -->
<field type="note" name="note_category_menu_switch" label="COM_COMPONENTBUILDER_ADMIN_VIEW_NOTE_CATEGORY_MENU_SWITCH_LABEL" description="COM_COMPONENTBUILDER_ADMIN_VIEW_NOTE_CATEGORY_MENU_SWITCH_DESCRIPTION" heading="h4" class="alert alert-info note_category_menu_switch" /> <field type="note" name="note_category_menu_switch" label="COM_COMPONENTBUILDER_ADMIN_VIEW_NOTE_CATEGORY_MENU_SWITCH_LABEL" description="COM_COMPONENTBUILDER_ADMIN_VIEW_NOTE_CATEGORY_MENU_SWITCH_DESCRIPTION" heading="h4" class="alert alert-info note_category_menu_switch" />

File diff suppressed because it is too large Load Diff

View File

@ -201,7 +201,8 @@
name="addreadme" name="addreadme"
label="COM_COMPONENTBUILDER_JOOMLA_MODULE_ADDREADME_LABEL" label="COM_COMPONENTBUILDER_JOOMLA_MODULE_ADDREADME_LABEL"
class="btn-group btn-group-yesno" class="btn-group btn-group-yesno"
default="0"> default="0"
required="true">
<!-- Option Set. --> <!-- Option Set. -->
<option value="1"> <option value="1">
COM_COMPONENTBUILDER_JOOMLA_MODULE_YES</option> COM_COMPONENTBUILDER_JOOMLA_MODULE_YES</option>
@ -360,6 +361,7 @@
class="list_class" class="list_class"
multiple="false" multiple="false"
default="0" default="0"
showon="add_sales_server:1"
button="true" button="true"
/> />
<!-- Custom_get Field. Type: Customgets. (custom) --> <!-- Custom_get Field. Type: Customgets. (custom) -->
@ -386,6 +388,7 @@
editor="codemirror|none" editor="codemirror|none"
filter="raw" filter="raw"
validate="code" validate="code"
showon="add_php_preflight_update:1"
/> />
<!-- Note_mod_file_options Field. Type: Note. A None Database Field. (joomla) --> <!-- Note_mod_file_options Field. Type: Note. A None Database Field. (joomla) -->
<field type="note" name="note_mod_file_options" label="COM_COMPONENTBUILDER_JOOMLA_MODULE_NOTE_MOD_FILE_OPTIONS_LABEL" description="COM_COMPONENTBUILDER_JOOMLA_MODULE_NOTE_MOD_FILE_OPTIONS_DESCRIPTION" heading="h4" class="alert alert-info note_mod_file_options" /> <field type="note" name="note_mod_file_options" label="COM_COMPONENTBUILDER_JOOMLA_MODULE_NOTE_MOD_FILE_OPTIONS_LABEL" description="COM_COMPONENTBUILDER_JOOMLA_MODULE_NOTE_MOD_FILE_OPTIONS_DESCRIPTION" heading="h4" class="alert alert-info note_mod_file_options" />
@ -404,6 +407,7 @@
editor="codemirror|none" editor="codemirror|none"
filter="raw" filter="raw"
validate="code" validate="code"
showon="add_php_preflight_uninstall:1"
/> />
<!-- Mod_code Field. Type: Editor. (joomla) --> <!-- Mod_code Field. Type: Editor. (joomla) -->
<field <field
@ -437,6 +441,7 @@
editor="codemirror|none" editor="codemirror|none"
filter="raw" filter="raw"
validate="code" validate="code"
showon="add_php_postflight_install:1"
/> />
<!-- Add_class_helper Field. Type: List. (joomla) --> <!-- Add_class_helper Field. Type: List. (joomla) -->
<field <field
@ -471,6 +476,7 @@
editor="codemirror|none" editor="codemirror|none"
filter="raw" filter="raw"
validate="code" validate="code"
showon="add_php_postflight_update:1"
/> />
<!-- Add_class_helper_header Field. Type: Radio. (joomla) --> <!-- Add_class_helper_header Field. Type: Radio. (joomla) -->
<field <field
@ -501,6 +507,7 @@
editor="codemirror|none" editor="codemirror|none"
filter="raw" filter="raw"
validate="code" validate="code"
showon="add_php_method_uninstall:1"
/> />
<!-- Class_helper_header Field. Type: Editor. (joomla) --> <!-- Class_helper_header Field. Type: Editor. (joomla) -->
<field <field
@ -530,7 +537,7 @@
class="text_area span12" class="text_area span12"
filter="raw" filter="raw"
hint="COM_COMPONENTBUILDER_JOOMLA_MODULE_SQL_HINT" hint="COM_COMPONENTBUILDER_JOOMLA_MODULE_SQL_HINT"
required="true" showon="add_sql:1"
/> />
<!-- Class_helper_code Field. Type: Editor. (joomla) --> <!-- Class_helper_code Field. Type: Editor. (joomla) -->
<field <field
@ -559,7 +566,7 @@
class="text_area span12" class="text_area span12"
filter="raw" filter="raw"
hint="COM_COMPONENTBUILDER_JOOMLA_MODULE_SQL_UNINSTALL_HINT" hint="COM_COMPONENTBUILDER_JOOMLA_MODULE_SQL_UNINSTALL_HINT"
required="true" showon="add_sql_uninstall:1"
/> />
<!-- Fields Field. Type: Subform. (joomla) --> <!-- Fields Field. Type: Subform. (joomla) -->
<field <field
@ -764,6 +771,7 @@
buttons="false" buttons="false"
editor="none" editor="none"
filter="raw" filter="raw"
showon="addreadme:1"
/> />
<!-- Add_php_script_construct Field. Type: Radio. (joomla) --> <!-- Add_php_script_construct Field. Type: Radio. (joomla) -->
<field <field
@ -786,13 +794,13 @@
label="COM_COMPONENTBUILDER_JOOMLA_MODULE_UPDATE_SERVER_URL_LABEL" label="COM_COMPONENTBUILDER_JOOMLA_MODULE_UPDATE_SERVER_URL_LABEL"
size="60" size="60"
maxlength="150" maxlength="150"
default=""
description="COM_COMPONENTBUILDER_JOOMLA_MODULE_UPDATE_SERVER_URL_DESCRIPTION" description="COM_COMPONENTBUILDER_JOOMLA_MODULE_UPDATE_SERVER_URL_DESCRIPTION"
class="text_area span12" class="text_area span12"
filter="url" filter="url"
validated="url" validated="url"
message="COM_COMPONENTBUILDER_JOOMLA_MODULE_UPDATE_SERVER_URL_MESSAGE" message="COM_COMPONENTBUILDER_JOOMLA_MODULE_UPDATE_SERVER_URL_MESSAGE"
hint="COM_COMPONENTBUILDER_JOOMLA_MODULE_UPDATE_SERVER_URL_HINT" hint="COM_COMPONENTBUILDER_JOOMLA_MODULE_UPDATE_SERVER_URL_HINT"
showon="add_update_server:1"
/> />
<!-- Php_script_construct Field. Type: Editor. (joomla) --> <!-- Php_script_construct Field. Type: Editor. (joomla) -->
<field <field
@ -809,6 +817,7 @@
editor="codemirror|none" editor="codemirror|none"
filter="raw" filter="raw"
validate="code" validate="code"
showon="add_php_script_construct:1"
/> />
<!-- Note_update_server_note_ftp Field. Type: Note. A None Database Field. (joomla) --> <!-- Note_update_server_note_ftp Field. Type: Note. A None Database Field. (joomla) -->
<field type="note" name="note_update_server_note_ftp" label="COM_COMPONENTBUILDER_JOOMLA_MODULE_NOTE_UPDATE_SERVER_NOTE_FTP_LABEL" description="COM_COMPONENTBUILDER_JOOMLA_MODULE_NOTE_UPDATE_SERVER_NOTE_FTP_DESCRIPTION" heading="h4" class="alert alert-success note_update_server_note_ftp" /> <field type="note" name="note_update_server_note_ftp" label="COM_COMPONENTBUILDER_JOOMLA_MODULE_NOTE_UPDATE_SERVER_NOTE_FTP_LABEL" description="COM_COMPONENTBUILDER_JOOMLA_MODULE_NOTE_UPDATE_SERVER_NOTE_FTP_DESCRIPTION" heading="h4" class="alert alert-success note_update_server_note_ftp" />
@ -843,6 +852,7 @@
editor="codemirror|none" editor="codemirror|none"
filter="raw" filter="raw"
validate="code" validate="code"
showon="add_php_preflight_install:1"
/> />
<!-- Add_sales_server Field. Type: Radio. (joomla) --> <!-- Add_sales_server Field. Type: Radio. (joomla) -->
<field <field

View File

@ -198,6 +198,7 @@
class="list_class" class="list_class"
multiple="false" multiple="false"
default="0" default="0"
showon="add_sales_server:1"
button="true" button="true"
/> />
<!-- Note_update_server_note_zip Field. Type: Note. A None Database Field. (joomla) --> <!-- Note_update_server_note_zip Field. Type: Note. A None Database Field. (joomla) -->
@ -304,7 +305,8 @@
name="addreadme" name="addreadme"
label="COM_COMPONENTBUILDER_JOOMLA_PLUGIN_ADDREADME_LABEL" label="COM_COMPONENTBUILDER_JOOMLA_PLUGIN_ADDREADME_LABEL"
class="btn-group btn-group-yesno" class="btn-group btn-group-yesno"
default="0"> default="0"
required="true">
<!-- Option Set. --> <!-- Option Set. -->
<option value="1"> <option value="1">
COM_COMPONENTBUILDER_JOOMLA_PLUGIN_YES</option> COM_COMPONENTBUILDER_JOOMLA_PLUGIN_YES</option>
@ -407,6 +409,7 @@
editor="codemirror|none" editor="codemirror|none"
filter="raw" filter="raw"
validate="code" validate="code"
showon="add_php_postflight_install:1"
/> />
<!-- Plugin_version Field. Type: Text. (joomla) --> <!-- Plugin_version Field. Type: Text. (joomla) -->
<field <field
@ -438,6 +441,7 @@
editor="codemirror|none" editor="codemirror|none"
filter="raw" filter="raw"
validate="code" validate="code"
showon="add_php_postflight_update:1"
/> />
<!-- Fields Field. Type: Subform. (joomla) --> <!-- Fields Field. Type: Subform. (joomla) -->
<field <field
@ -646,6 +650,7 @@
editor="codemirror|none" editor="codemirror|none"
filter="raw" filter="raw"
validate="code" validate="code"
showon="add_php_method_uninstall:1"
/> />
<!-- Add_php_script_construct Field. Type: Radio. (joomla) --> <!-- Add_php_script_construct Field. Type: Radio. (joomla) -->
<field <field
@ -672,7 +677,7 @@
class="text_area span12" class="text_area span12"
filter="raw" filter="raw"
hint="COM_COMPONENTBUILDER_JOOMLA_PLUGIN_SQL_HINT" hint="COM_COMPONENTBUILDER_JOOMLA_PLUGIN_SQL_HINT"
required="true" showon="add_sql:1"
/> />
<!-- Php_script_construct Field. Type: Editor. (joomla) --> <!-- Php_script_construct Field. Type: Editor. (joomla) -->
<field <field
@ -689,6 +694,7 @@
editor="codemirror|none" editor="codemirror|none"
filter="raw" filter="raw"
validate="code" validate="code"
showon="add_php_script_construct:1"
/> />
<!-- Sql_uninstall Field. Type: Textarea. (joomla) --> <!-- Sql_uninstall Field. Type: Textarea. (joomla) -->
<field <field
@ -701,7 +707,7 @@
class="text_area span12" class="text_area span12"
filter="raw" filter="raw"
hint="COM_COMPONENTBUILDER_JOOMLA_PLUGIN_SQL_UNINSTALL_HINT" hint="COM_COMPONENTBUILDER_JOOMLA_PLUGIN_SQL_UNINSTALL_HINT"
required="true" showon="add_sql_uninstall:1"
/> />
<!-- Add_php_preflight_install Field. Type: Radio. (joomla) --> <!-- Add_php_preflight_install Field. Type: Radio. (joomla) -->
<field <field
@ -728,6 +734,7 @@
buttons="false" buttons="false"
editor="none" editor="none"
filter="raw" filter="raw"
showon="addreadme:1"
/> />
<!-- Php_preflight_install Field. Type: Editor. (joomla) --> <!-- Php_preflight_install Field. Type: Editor. (joomla) -->
<field <field
@ -744,6 +751,7 @@
editor="codemirror|none" editor="codemirror|none"
filter="raw" filter="raw"
validate="code" validate="code"
showon="add_php_preflight_install:1"
/> />
<!-- Update_server_url Field. Type: Url. (joomla) --> <!-- Update_server_url Field. Type: Url. (joomla) -->
<field <field
@ -752,13 +760,13 @@
label="COM_COMPONENTBUILDER_JOOMLA_PLUGIN_UPDATE_SERVER_URL_LABEL" label="COM_COMPONENTBUILDER_JOOMLA_PLUGIN_UPDATE_SERVER_URL_LABEL"
size="60" size="60"
maxlength="150" maxlength="150"
default=""
description="COM_COMPONENTBUILDER_JOOMLA_PLUGIN_UPDATE_SERVER_URL_DESCRIPTION" description="COM_COMPONENTBUILDER_JOOMLA_PLUGIN_UPDATE_SERVER_URL_DESCRIPTION"
class="text_area span12" class="text_area span12"
filter="url" filter="url"
validated="url" validated="url"
message="COM_COMPONENTBUILDER_JOOMLA_PLUGIN_UPDATE_SERVER_URL_MESSAGE" message="COM_COMPONENTBUILDER_JOOMLA_PLUGIN_UPDATE_SERVER_URL_MESSAGE"
hint="COM_COMPONENTBUILDER_JOOMLA_PLUGIN_UPDATE_SERVER_URL_HINT" hint="COM_COMPONENTBUILDER_JOOMLA_PLUGIN_UPDATE_SERVER_URL_HINT"
showon="add_update_server:1"
/> />
<!-- Add_php_preflight_update Field. Type: Radio. (joomla) --> <!-- Add_php_preflight_update Field. Type: Radio. (joomla) -->
<field <field
@ -791,6 +799,7 @@
editor="codemirror|none" editor="codemirror|none"
filter="raw" filter="raw"
validate="code" validate="code"
showon="add_php_preflight_update:1"
/> />
<!-- Note_update_server_note_other Field. Type: Note. A None Database Field. (joomla) --> <!-- Note_update_server_note_other Field. Type: Note. A None Database Field. (joomla) -->
<field type="note" name="note_update_server_note_other" label="COM_COMPONENTBUILDER_JOOMLA_PLUGIN_NOTE_UPDATE_SERVER_NOTE_OTHER_LABEL" description="COM_COMPONENTBUILDER_JOOMLA_PLUGIN_NOTE_UPDATE_SERVER_NOTE_OTHER_DESCRIPTION" heading="h4" class="alert alert-success note_update_server_note_other" /> <field type="note" name="note_update_server_note_other" label="COM_COMPONENTBUILDER_JOOMLA_PLUGIN_NOTE_UPDATE_SERVER_NOTE_OTHER_LABEL" description="COM_COMPONENTBUILDER_JOOMLA_PLUGIN_NOTE_UPDATE_SERVER_NOTE_OTHER_DESCRIPTION" heading="h4" class="alert alert-success note_update_server_note_other" />
@ -837,6 +846,7 @@
editor="codemirror|none" editor="codemirror|none"
filter="raw" filter="raw"
validate="code" validate="code"
showon="add_php_preflight_uninstall:1"
/> />
<!-- Guid Field. Type: Text. (joomla) --> <!-- Guid Field. Type: Text. (joomla) -->
<field <field

View File

@ -5737,11 +5737,12 @@ COM_COMPONENTBUILDER_JOOMLA_COMPONENT_ADD_NAMESPACE_PREFIX_LABEL="Add Namespace
COM_COMPONENTBUILDER_JOOMLA_COMPONENT_ADD_PHP_HELPER_ADMIN_LABEL="Add PHP (helper_admin Class)" COM_COMPONENTBUILDER_JOOMLA_COMPONENT_ADD_PHP_HELPER_ADMIN_LABEL="Add PHP (helper_admin Class)"
COM_COMPONENTBUILDER_JOOMLA_COMPONENT_ADD_PHP_HELPER_BOTH_LABEL="Add PHP (helper Classes - Both admin & site)" COM_COMPONENTBUILDER_JOOMLA_COMPONENT_ADD_PHP_HELPER_BOTH_LABEL="Add PHP (helper Classes - Both admin & site)"
COM_COMPONENTBUILDER_JOOMLA_COMPONENT_ADD_PHP_HELPER_SITE_LABEL="Add PHP (helper_site Class)" COM_COMPONENTBUILDER_JOOMLA_COMPONENT_ADD_PHP_HELPER_SITE_LABEL="Add PHP (helper_site Class)"
COM_COMPONENTBUILDER_JOOMLA_COMPONENT_ADD_PHP_METHOD_UNINSTALL_LABEL="Add PHP Method (uninstall)" COM_COMPONENTBUILDER_JOOMLA_COMPONENT_ADD_PHP_METHOD_INSTALL_LABEL="Add PHP Methods to Class (in install/update class)"
COM_COMPONENTBUILDER_JOOMLA_COMPONENT_ADD_PHP_POSTFLIGHT_INSTALL_LABEL="Add PHP Postflight (install)" COM_COMPONENTBUILDER_JOOMLA_COMPONENT_ADD_PHP_METHOD_UNINSTALL_LABEL="Add PHP to the uninstall method"
COM_COMPONENTBUILDER_JOOMLA_COMPONENT_ADD_PHP_POSTFLIGHT_UPDATE_LABEL="Add PHP Postflight (update)" COM_COMPONENTBUILDER_JOOMLA_COMPONENT_ADD_PHP_POSTFLIGHT_INSTALL_LABEL="Add PHP in the postflight install (event)"
COM_COMPONENTBUILDER_JOOMLA_COMPONENT_ADD_PHP_PREFLIGHT_INSTALL_LABEL="Add PHP Preflight (install)" COM_COMPONENTBUILDER_JOOMLA_COMPONENT_ADD_PHP_POSTFLIGHT_UPDATE_LABEL="Add PHP in the postflight update (event)"
COM_COMPONENTBUILDER_JOOMLA_COMPONENT_ADD_PHP_PREFLIGHT_UPDATE_LABEL="Add PHP Preflight (update)" COM_COMPONENTBUILDER_JOOMLA_COMPONENT_ADD_PHP_PREFLIGHT_INSTALL_LABEL="Add PHP in the preflight install (event)"
COM_COMPONENTBUILDER_JOOMLA_COMPONENT_ADD_PHP_PREFLIGHT_UPDATE_LABEL="Add PHP in the preflight update (event)"
COM_COMPONENTBUILDER_JOOMLA_COMPONENT_ADD_PLACEHOLDERS_DESCRIPTION="Should JCB insert the custom code placeholders? This is only applicable if this component has custom code." COM_COMPONENTBUILDER_JOOMLA_COMPONENT_ADD_PLACEHOLDERS_DESCRIPTION="Should JCB insert the custom code placeholders? This is only applicable if this component has custom code."
COM_COMPONENTBUILDER_JOOMLA_COMPONENT_ADD_PLACEHOLDERS_LABEL="Custom Code Placeholders" COM_COMPONENTBUILDER_JOOMLA_COMPONENT_ADD_PLACEHOLDERS_LABEL="Custom Code Placeholders"
COM_COMPONENTBUILDER_JOOMLA_COMPONENT_ADD_POWERS_DESCRIPTION="Should JCB add any powers that are connected to this component? This may be helpful if you are loading powers via another component, and would like to avoid adding it to both, just remember that in this case you need to load the powers via a plugin." COM_COMPONENTBUILDER_JOOMLA_COMPONENT_ADD_POWERS_DESCRIPTION="Should JCB add any powers that are connected to this component? This may be helpful if you are loading powers via another component, and would like to avoid adding it to both, just remember that in this case you need to load the powers via a plugin."
@ -5976,16 +5977,18 @@ COM_COMPONENTBUILDER_JOOMLA_COMPONENT_PHP_HELPER_BOTH_DESCRIPTION="Add The PHP a
COM_COMPONENTBUILDER_JOOMLA_COMPONENT_PHP_HELPER_BOTH_LABEL="PHP (for both admin & site)" COM_COMPONENTBUILDER_JOOMLA_COMPONENT_PHP_HELPER_BOTH_LABEL="PHP (for both admin & site)"
COM_COMPONENTBUILDER_JOOMLA_COMPONENT_PHP_HELPER_SITE_DESCRIPTION="Add the PHP abstract Methods to add to the component helper class. Only Methods! as it will directly be add as methods to the helper class! Do not add the php tags." COM_COMPONENTBUILDER_JOOMLA_COMPONENT_PHP_HELPER_SITE_DESCRIPTION="Add the PHP abstract Methods to add to the component helper class. Only Methods! as it will directly be add as methods to the helper class! Do not add the php tags."
COM_COMPONENTBUILDER_JOOMLA_COMPONENT_PHP_HELPER_SITE_LABEL="PHP (site helper)" COM_COMPONENTBUILDER_JOOMLA_COMPONENT_PHP_HELPER_SITE_LABEL="PHP (site helper)"
COM_COMPONENTBUILDER_JOOMLA_COMPONENT_PHP_METHOD_INSTALL_DESCRIPTION="PHP methods that should be added to the install/update class of the component."
COM_COMPONENTBUILDER_JOOMLA_COMPONENT_PHP_METHOD_INSTALL_LABEL="PHP Class Methods (in install/update class)"
COM_COMPONENTBUILDER_JOOMLA_COMPONENT_PHP_METHOD_UNINSTALL_DESCRIPTION="PHP script that should run during uninstall." COM_COMPONENTBUILDER_JOOMLA_COMPONENT_PHP_METHOD_UNINSTALL_DESCRIPTION="PHP script that should run during uninstall."
COM_COMPONENTBUILDER_JOOMLA_COMPONENT_PHP_METHOD_UNINSTALL_LABEL="PHP Method (uninstall)" COM_COMPONENTBUILDER_JOOMLA_COMPONENT_PHP_METHOD_UNINSTALL_LABEL="PHP in the uninstall method"
COM_COMPONENTBUILDER_JOOMLA_COMPONENT_PHP_POSTFLIGHT_INSTALL_DESCRIPTION="PHP script that should run postflight during install." COM_COMPONENTBUILDER_JOOMLA_COMPONENT_PHP_POSTFLIGHT_INSTALL_DESCRIPTION="PHP code that should run postflight during install."
COM_COMPONENTBUILDER_JOOMLA_COMPONENT_PHP_POSTFLIGHT_INSTALL_LABEL="PHP Postflight (install)" COM_COMPONENTBUILDER_JOOMLA_COMPONENT_PHP_POSTFLIGHT_INSTALL_LABEL="PHP in the postflight install (event)"
COM_COMPONENTBUILDER_JOOMLA_COMPONENT_PHP_POSTFLIGHT_UPDATE_DESCRIPTION="PHP script that should run postflight during update." COM_COMPONENTBUILDER_JOOMLA_COMPONENT_PHP_POSTFLIGHT_UPDATE_DESCRIPTION="PHP code that should run postflight during update."
COM_COMPONENTBUILDER_JOOMLA_COMPONENT_PHP_POSTFLIGHT_UPDATE_LABEL="PHP Postflight (update)" COM_COMPONENTBUILDER_JOOMLA_COMPONENT_PHP_POSTFLIGHT_UPDATE_LABEL="PHP in the postflight update (event)"
COM_COMPONENTBUILDER_JOOMLA_COMPONENT_PHP_PREFLIGHT_INSTALL_DESCRIPTION="PHP script that should run preflight during install." COM_COMPONENTBUILDER_JOOMLA_COMPONENT_PHP_PREFLIGHT_INSTALL_DESCRIPTION="PHP code that should run preflight during install."
COM_COMPONENTBUILDER_JOOMLA_COMPONENT_PHP_PREFLIGHT_INSTALL_LABEL="PHP Preflight (install)" COM_COMPONENTBUILDER_JOOMLA_COMPONENT_PHP_PREFLIGHT_INSTALL_LABEL="PHP in the preflight install (event)"
COM_COMPONENTBUILDER_JOOMLA_COMPONENT_PHP_PREFLIGHT_UPDATE_DESCRIPTION="PHP script that should run preflight during update." COM_COMPONENTBUILDER_JOOMLA_COMPONENT_PHP_PREFLIGHT_UPDATE_DESCRIPTION="PHP code that should run preflight during update."
COM_COMPONENTBUILDER_JOOMLA_COMPONENT_PHP_PREFLIGHT_UPDATE_LABEL="PHP Preflight (update)" COM_COMPONENTBUILDER_JOOMLA_COMPONENT_PHP_PREFLIGHT_UPDATE_LABEL="PHP in the preflight update (event)"
COM_COMPONENTBUILDER_JOOMLA_COMPONENT_PHP_SITE_EVENT_DESCRIPTION="PHP script for the global helper site event method." COM_COMPONENTBUILDER_JOOMLA_COMPONENT_PHP_SITE_EVENT_DESCRIPTION="PHP script for the global helper site event method."
COM_COMPONENTBUILDER_JOOMLA_COMPONENT_PHP_SITE_EVENT_LABEL="Global Helper Site Event (method)" COM_COMPONENTBUILDER_JOOMLA_COMPONENT_PHP_SITE_EVENT_LABEL="Global Helper Site Event (method)"
COM_COMPONENTBUILDER_JOOMLA_COMPONENT_PREFERRED_JOOMLA_VERSION_LABEL="Preferred Joomla Version" COM_COMPONENTBUILDER_JOOMLA_COMPONENT_PREFERRED_JOOMLA_VERSION_LABEL="Preferred Joomla Version"
@ -6225,12 +6228,12 @@ COM_COMPONENTBUILDER_JOOMLA_MODULE_ADD_CLASS_HELPER_DESCRIPTION="You can add a h
COM_COMPONENTBUILDER_JOOMLA_MODULE_ADD_CLASS_HELPER_HEADER_DESCRIPTION="You can add your own custom helper header script." COM_COMPONENTBUILDER_JOOMLA_MODULE_ADD_CLASS_HELPER_HEADER_DESCRIPTION="You can add your own custom helper header script."
COM_COMPONENTBUILDER_JOOMLA_MODULE_ADD_CLASS_HELPER_HEADER_LABEL="Add Class Helper Header" COM_COMPONENTBUILDER_JOOMLA_MODULE_ADD_CLASS_HELPER_HEADER_LABEL="Add Class Helper Header"
COM_COMPONENTBUILDER_JOOMLA_MODULE_ADD_CLASS_HELPER_LABEL="Add Class Helper" COM_COMPONENTBUILDER_JOOMLA_MODULE_ADD_CLASS_HELPER_LABEL="Add Class Helper"
COM_COMPONENTBUILDER_JOOMLA_MODULE_ADD_PHP_METHOD_UNINSTALL_LABEL="Add PHP Method (uninstall)" COM_COMPONENTBUILDER_JOOMLA_MODULE_ADD_PHP_METHOD_UNINSTALL_LABEL="Add PHP to the uninstall method"
COM_COMPONENTBUILDER_JOOMLA_MODULE_ADD_PHP_POSTFLIGHT_INSTALL_LABEL="Add PHP Postflight (install)" COM_COMPONENTBUILDER_JOOMLA_MODULE_ADD_PHP_POSTFLIGHT_INSTALL_LABEL="Add PHP in the postflight install (event)"
COM_COMPONENTBUILDER_JOOMLA_MODULE_ADD_PHP_POSTFLIGHT_UPDATE_LABEL="Add PHP Postflight (update)" COM_COMPONENTBUILDER_JOOMLA_MODULE_ADD_PHP_POSTFLIGHT_UPDATE_LABEL="Add PHP in the postflight update (event)"
COM_COMPONENTBUILDER_JOOMLA_MODULE_ADD_PHP_PREFLIGHT_INSTALL_LABEL="Add PHP Preflight (install)" COM_COMPONENTBUILDER_JOOMLA_MODULE_ADD_PHP_PREFLIGHT_INSTALL_LABEL="Add PHP in the preflight install (event)"
COM_COMPONENTBUILDER_JOOMLA_MODULE_ADD_PHP_PREFLIGHT_UNINSTALL_LABEL="Add PHP Preflight (uninstall)" COM_COMPONENTBUILDER_JOOMLA_MODULE_ADD_PHP_PREFLIGHT_UNINSTALL_LABEL="Add PHP in the preflight uninstall (event)"
COM_COMPONENTBUILDER_JOOMLA_MODULE_ADD_PHP_PREFLIGHT_UPDATE_LABEL="Add PHP Preflight (update)" COM_COMPONENTBUILDER_JOOMLA_MODULE_ADD_PHP_PREFLIGHT_UPDATE_LABEL="Add PHP in the preflight update (event)"
COM_COMPONENTBUILDER_JOOMLA_MODULE_ADD_PHP_SCRIPT_CONSTRUCT_LABEL="Add PHP Script Construct" COM_COMPONENTBUILDER_JOOMLA_MODULE_ADD_PHP_SCRIPT_CONSTRUCT_LABEL="Add PHP Script Construct"
COM_COMPONENTBUILDER_JOOMLA_MODULE_ADD_SALES_SERVER_LABEL="Add Sales Server" COM_COMPONENTBUILDER_JOOMLA_MODULE_ADD_SALES_SERVER_LABEL="Add Sales Server"
COM_COMPONENTBUILDER_JOOMLA_MODULE_ADD_SQL_LABEL="Add MySQL - (Install)" COM_COMPONENTBUILDER_JOOMLA_MODULE_ADD_SQL_LABEL="Add MySQL - (Install)"
@ -6412,17 +6415,17 @@ COM_COMPONENTBUILDER_JOOMLA_MODULE_PATH_LABEL="Path"
COM_COMPONENTBUILDER_JOOMLA_MODULE_PATH_MESSAGE="Error! Please add extra field path here." COM_COMPONENTBUILDER_JOOMLA_MODULE_PATH_MESSAGE="Error! Please add extra field path here."
COM_COMPONENTBUILDER_JOOMLA_MODULE_PERMISSION="Permissions" COM_COMPONENTBUILDER_JOOMLA_MODULE_PERMISSION="Permissions"
COM_COMPONENTBUILDER_JOOMLA_MODULE_PHP_METHOD_UNINSTALL_DESCRIPTION="PHP script that should run during uninstall." COM_COMPONENTBUILDER_JOOMLA_MODULE_PHP_METHOD_UNINSTALL_DESCRIPTION="PHP script that should run during uninstall."
COM_COMPONENTBUILDER_JOOMLA_MODULE_PHP_METHOD_UNINSTALL_LABEL="PHP Method (uninstall)" COM_COMPONENTBUILDER_JOOMLA_MODULE_PHP_METHOD_UNINSTALL_LABEL="PHP in the uninstall method"
COM_COMPONENTBUILDER_JOOMLA_MODULE_PHP_POSTFLIGHT_INSTALL_DESCRIPTION="PHP script that should run postflight during install." COM_COMPONENTBUILDER_JOOMLA_MODULE_PHP_POSTFLIGHT_INSTALL_DESCRIPTION="PHP code that should run postflight during install."
COM_COMPONENTBUILDER_JOOMLA_MODULE_PHP_POSTFLIGHT_INSTALL_LABEL="PHP Postflight (install)" COM_COMPONENTBUILDER_JOOMLA_MODULE_PHP_POSTFLIGHT_INSTALL_LABEL="PHP in the postflight install (event)"
COM_COMPONENTBUILDER_JOOMLA_MODULE_PHP_POSTFLIGHT_UPDATE_DESCRIPTION="PHP script that should run postflight during update." COM_COMPONENTBUILDER_JOOMLA_MODULE_PHP_POSTFLIGHT_UPDATE_DESCRIPTION="PHP code that should run postflight during update."
COM_COMPONENTBUILDER_JOOMLA_MODULE_PHP_POSTFLIGHT_UPDATE_LABEL="PHP Postflight (update)" COM_COMPONENTBUILDER_JOOMLA_MODULE_PHP_POSTFLIGHT_UPDATE_LABEL="PHP in the postflight update (event)"
COM_COMPONENTBUILDER_JOOMLA_MODULE_PHP_PREFLIGHT_INSTALL_DESCRIPTION="PHP script that should run preflight during install." COM_COMPONENTBUILDER_JOOMLA_MODULE_PHP_PREFLIGHT_INSTALL_DESCRIPTION="PHP code that should run preflight during install."
COM_COMPONENTBUILDER_JOOMLA_MODULE_PHP_PREFLIGHT_INSTALL_LABEL="PHP Preflight (install)" COM_COMPONENTBUILDER_JOOMLA_MODULE_PHP_PREFLIGHT_INSTALL_LABEL="PHP in the preflight install (event)"
COM_COMPONENTBUILDER_JOOMLA_MODULE_PHP_PREFLIGHT_UNINSTALL_DESCRIPTION="PHP script that should run preflight during uninstall." COM_COMPONENTBUILDER_JOOMLA_MODULE_PHP_PREFLIGHT_UNINSTALL_DESCRIPTION="PHP code that should run preflight during uninstall."
COM_COMPONENTBUILDER_JOOMLA_MODULE_PHP_PREFLIGHT_UNINSTALL_LABEL="PHP Preflight (uninstall)" COM_COMPONENTBUILDER_JOOMLA_MODULE_PHP_PREFLIGHT_UNINSTALL_LABEL="PHP in the preflight uninstall (event)"
COM_COMPONENTBUILDER_JOOMLA_MODULE_PHP_PREFLIGHT_UPDATE_DESCRIPTION="PHP script that should run preflight during update." COM_COMPONENTBUILDER_JOOMLA_MODULE_PHP_PREFLIGHT_UPDATE_DESCRIPTION="PHP code that should run preflight during update."
COM_COMPONENTBUILDER_JOOMLA_MODULE_PHP_PREFLIGHT_UPDATE_LABEL="PHP Preflight (update)" COM_COMPONENTBUILDER_JOOMLA_MODULE_PHP_PREFLIGHT_UPDATE_LABEL="PHP in the preflight update (event)"
COM_COMPONENTBUILDER_JOOMLA_MODULE_PHP_SCRIPT_CONSTRUCT_DESCRIPTION="PHP script that should run in __construct of script." COM_COMPONENTBUILDER_JOOMLA_MODULE_PHP_SCRIPT_CONSTRUCT_DESCRIPTION="PHP script that should run in __construct of script."
COM_COMPONENTBUILDER_JOOMLA_MODULE_PHP_SCRIPT_CONSTRUCT_LABEL="PHP Script Construct" COM_COMPONENTBUILDER_JOOMLA_MODULE_PHP_SCRIPT_CONSTRUCT_LABEL="PHP Script Construct"
COM_COMPONENTBUILDER_JOOMLA_MODULE_PUBLISHING="Publishing" COM_COMPONENTBUILDER_JOOMLA_MODULE_PUBLISHING="Publishing"
@ -6645,12 +6648,12 @@ COM_COMPONENTBUILDER_JOOMLA_PLUGIN_ADDRULEPATH_DESCRIPTION="Set other rule path"
COM_COMPONENTBUILDER_JOOMLA_PLUGIN_ADDRULEPATH_LABEL="Other Rule Path" COM_COMPONENTBUILDER_JOOMLA_PLUGIN_ADDRULEPATH_LABEL="Other Rule Path"
COM_COMPONENTBUILDER_JOOMLA_PLUGIN_ADD_HEAD_DESCRIPTION="You can add your own custom header script, combined with the default header script that make the extended class work." COM_COMPONENTBUILDER_JOOMLA_PLUGIN_ADD_HEAD_DESCRIPTION="You can add your own custom header script, combined with the default header script that make the extended class work."
COM_COMPONENTBUILDER_JOOMLA_PLUGIN_ADD_HEAD_LABEL="Add Custom Class Header" COM_COMPONENTBUILDER_JOOMLA_PLUGIN_ADD_HEAD_LABEL="Add Custom Class Header"
COM_COMPONENTBUILDER_JOOMLA_PLUGIN_ADD_PHP_METHOD_UNINSTALL_LABEL="Add PHP Method (uninstall)" COM_COMPONENTBUILDER_JOOMLA_PLUGIN_ADD_PHP_METHOD_UNINSTALL_LABEL="Add PHP to the uninstall method"
COM_COMPONENTBUILDER_JOOMLA_PLUGIN_ADD_PHP_POSTFLIGHT_INSTALL_LABEL="Add PHP Postflight (install)" COM_COMPONENTBUILDER_JOOMLA_PLUGIN_ADD_PHP_POSTFLIGHT_INSTALL_LABEL="Add PHP in the postflight install (event)"
COM_COMPONENTBUILDER_JOOMLA_PLUGIN_ADD_PHP_POSTFLIGHT_UPDATE_LABEL="Add PHP Postflight (update)" COM_COMPONENTBUILDER_JOOMLA_PLUGIN_ADD_PHP_POSTFLIGHT_UPDATE_LABEL="Add PHP in the postflight update (event)"
COM_COMPONENTBUILDER_JOOMLA_PLUGIN_ADD_PHP_PREFLIGHT_INSTALL_LABEL="Add PHP Preflight (install)" COM_COMPONENTBUILDER_JOOMLA_PLUGIN_ADD_PHP_PREFLIGHT_INSTALL_LABEL="Add PHP in the preflight install (event)"
COM_COMPONENTBUILDER_JOOMLA_PLUGIN_ADD_PHP_PREFLIGHT_UNINSTALL_LABEL="Add PHP Preflight (uninstall)" COM_COMPONENTBUILDER_JOOMLA_PLUGIN_ADD_PHP_PREFLIGHT_UNINSTALL_LABEL="Add PHP in the preflight uninstall (event)"
COM_COMPONENTBUILDER_JOOMLA_PLUGIN_ADD_PHP_PREFLIGHT_UPDATE_LABEL="Add PHP Preflight (update)" COM_COMPONENTBUILDER_JOOMLA_PLUGIN_ADD_PHP_PREFLIGHT_UPDATE_LABEL="Add PHP in the preflight update (event)"
COM_COMPONENTBUILDER_JOOMLA_PLUGIN_ADD_PHP_SCRIPT_CONSTRUCT_LABEL="Add PHP Script Construct" COM_COMPONENTBUILDER_JOOMLA_PLUGIN_ADD_PHP_SCRIPT_CONSTRUCT_LABEL="Add PHP Script Construct"
COM_COMPONENTBUILDER_JOOMLA_PLUGIN_ADD_SALES_SERVER_LABEL="Add Sales Server" COM_COMPONENTBUILDER_JOOMLA_PLUGIN_ADD_SALES_SERVER_LABEL="Add Sales Server"
COM_COMPONENTBUILDER_JOOMLA_PLUGIN_ADD_SQL_LABEL="Add MySQL - (Install)" COM_COMPONENTBUILDER_JOOMLA_PLUGIN_ADD_SQL_LABEL="Add MySQL - (Install)"
@ -6872,17 +6875,17 @@ COM_COMPONENTBUILDER_JOOMLA_PLUGIN_PATH_LABEL="Path"
COM_COMPONENTBUILDER_JOOMLA_PLUGIN_PATH_MESSAGE="Error! Please add extra field path here." COM_COMPONENTBUILDER_JOOMLA_PLUGIN_PATH_MESSAGE="Error! Please add extra field path here."
COM_COMPONENTBUILDER_JOOMLA_PLUGIN_PERMISSION="Permissions" COM_COMPONENTBUILDER_JOOMLA_PLUGIN_PERMISSION="Permissions"
COM_COMPONENTBUILDER_JOOMLA_PLUGIN_PHP_METHOD_UNINSTALL_DESCRIPTION="PHP script that should run during uninstall." COM_COMPONENTBUILDER_JOOMLA_PLUGIN_PHP_METHOD_UNINSTALL_DESCRIPTION="PHP script that should run during uninstall."
COM_COMPONENTBUILDER_JOOMLA_PLUGIN_PHP_METHOD_UNINSTALL_LABEL="PHP Method (uninstall)" COM_COMPONENTBUILDER_JOOMLA_PLUGIN_PHP_METHOD_UNINSTALL_LABEL="PHP in the uninstall method"
COM_COMPONENTBUILDER_JOOMLA_PLUGIN_PHP_POSTFLIGHT_INSTALL_DESCRIPTION="PHP script that should run postflight during install." COM_COMPONENTBUILDER_JOOMLA_PLUGIN_PHP_POSTFLIGHT_INSTALL_DESCRIPTION="PHP code that should run postflight during install."
COM_COMPONENTBUILDER_JOOMLA_PLUGIN_PHP_POSTFLIGHT_INSTALL_LABEL="PHP Postflight (install)" COM_COMPONENTBUILDER_JOOMLA_PLUGIN_PHP_POSTFLIGHT_INSTALL_LABEL="PHP in the postflight install (event)"
COM_COMPONENTBUILDER_JOOMLA_PLUGIN_PHP_POSTFLIGHT_UPDATE_DESCRIPTION="PHP script that should run postflight during update." COM_COMPONENTBUILDER_JOOMLA_PLUGIN_PHP_POSTFLIGHT_UPDATE_DESCRIPTION="PHP code that should run postflight during update."
COM_COMPONENTBUILDER_JOOMLA_PLUGIN_PHP_POSTFLIGHT_UPDATE_LABEL="PHP Postflight (update)" COM_COMPONENTBUILDER_JOOMLA_PLUGIN_PHP_POSTFLIGHT_UPDATE_LABEL="PHP in the postflight update (event)"
COM_COMPONENTBUILDER_JOOMLA_PLUGIN_PHP_PREFLIGHT_INSTALL_DESCRIPTION="PHP script that should run preflight during install." COM_COMPONENTBUILDER_JOOMLA_PLUGIN_PHP_PREFLIGHT_INSTALL_DESCRIPTION="PHP code that should run preflight during install."
COM_COMPONENTBUILDER_JOOMLA_PLUGIN_PHP_PREFLIGHT_INSTALL_LABEL="PHP Preflight (install)" COM_COMPONENTBUILDER_JOOMLA_PLUGIN_PHP_PREFLIGHT_INSTALL_LABEL="PHP in the preflight install (event)"
COM_COMPONENTBUILDER_JOOMLA_PLUGIN_PHP_PREFLIGHT_UNINSTALL_DESCRIPTION="PHP script that should run preflight during uninstall." COM_COMPONENTBUILDER_JOOMLA_PLUGIN_PHP_PREFLIGHT_UNINSTALL_DESCRIPTION="PHP code that should run preflight during uninstall."
COM_COMPONENTBUILDER_JOOMLA_PLUGIN_PHP_PREFLIGHT_UNINSTALL_LABEL="PHP Preflight (uninstall)" COM_COMPONENTBUILDER_JOOMLA_PLUGIN_PHP_PREFLIGHT_UNINSTALL_LABEL="PHP in the preflight uninstall (event)"
COM_COMPONENTBUILDER_JOOMLA_PLUGIN_PHP_PREFLIGHT_UPDATE_DESCRIPTION="PHP script that should run preflight during update." COM_COMPONENTBUILDER_JOOMLA_PLUGIN_PHP_PREFLIGHT_UPDATE_DESCRIPTION="PHP code that should run preflight during update."
COM_COMPONENTBUILDER_JOOMLA_PLUGIN_PHP_PREFLIGHT_UPDATE_LABEL="PHP Preflight (update)" COM_COMPONENTBUILDER_JOOMLA_PLUGIN_PHP_PREFLIGHT_UPDATE_LABEL="PHP in the preflight update (event)"
COM_COMPONENTBUILDER_JOOMLA_PLUGIN_PHP_SCRIPT_CONSTRUCT_DESCRIPTION="PHP script that should run in __construct of script." COM_COMPONENTBUILDER_JOOMLA_PLUGIN_PHP_SCRIPT_CONSTRUCT_DESCRIPTION="PHP script that should run in __construct of script."
COM_COMPONENTBUILDER_JOOMLA_PLUGIN_PHP_SCRIPT_CONSTRUCT_LABEL="PHP Script Construct" COM_COMPONENTBUILDER_JOOMLA_PLUGIN_PHP_SCRIPT_CONSTRUCT_LABEL="PHP Script Construct"
COM_COMPONENTBUILDER_JOOMLA_PLUGIN_PLUGIN="Plugin" COM_COMPONENTBUILDER_JOOMLA_PLUGIN_PLUGIN="Plugin"

View File

@ -20,7 +20,7 @@ use VDM\Joomla\Utilities\ArrayHelper;
defined('_JEXEC') or die; defined('_JEXEC') or die;
// set the defaults // set the defaults
$items = $displayData->vycfields; $items = $displayData->vxtfields;
$user = Factory::getApplication()->getIdentity(); $user = Factory::getApplication()->getIdentity();
$id = $displayData->item->id; $id = $displayData->item->id;
// set the edit URL // set the edit URL

View File

@ -35,7 +35,9 @@ $fields = $displayData->get($fields_tab_layout) ?: array(
'add_php_postflight_update', 'add_php_postflight_update',
'php_postflight_update', 'php_postflight_update',
'add_php_method_uninstall', 'add_php_method_uninstall',
'php_method_uninstall' 'php_method_uninstall',
'add_php_method_install',
'php_method_install'
); );
$hiddenFields = $displayData->get('hidden_fields') ?: []; $hiddenFields = $displayData->get('hidden_fields') ?: [];

View File

@ -21,7 +21,7 @@ use VDM\Joomla\Utilities\GetHelper;
defined('_JEXEC') or die; defined('_JEXEC') or die;
// set the defaults // set the defaults
$items = $displayData->vymlinked_components; $items = $displayData->vydlinked_components;
$user = Factory::getApplication()->getIdentity(); $user = Factory::getApplication()->getIdentity();
$id = $displayData->item->id; $id = $displayData->item->id;
// set the edit URL // set the edit URL

View File

@ -9,116 +9,13 @@
* @license GNU General Public License version 2 or later; see LICENSE.txt * @license GNU General Public License version 2 or later; see LICENSE.txt
*/ */
// The power autoloader for this project admin area.
$power_autoloader = JPATH_ADMINISTRATOR . '/components/com_componentbuilder/src/Helper/PowerloaderHelper.php';
// add the autoloader for the composer classes if (file_exists($power_autoloader))
$composer_autoloader = JPATH_LIBRARIES . '/phpseclib3/vendor/autoload.php';
if (file_exists($composer_autoloader))
{ {
require_once $composer_autoloader; require_once $power_autoloader;
} }
// register additional namespace
\spl_autoload_register(function ($class) {
// project-specific base directories and namespace prefix
$search = [
'libraries/vendor_jcb/VDM.Joomla.Gitea' => 'VDM\\Joomla\\Gitea',
'libraries/vendor_jcb/VDM.Joomla.FOF' => 'VDM\\Joomla\\FOF',
'libraries/vendor_jcb/VDM.Joomla' => 'VDM\\Joomla',
'libraries/vendor_jcb/VDM.Minify' => 'VDM\\Minify',
'libraries/vendor_jcb/VDM.Psr' => 'VDM\\Psr'
];
// Start the search and load if found
$found = false;
$found_base_dir = "";
$found_len = 0;
foreach ($search as $base_dir => $prefix)
{
// does the class use the namespace prefix?
$len = strlen($prefix);
if (strncmp($prefix, $class, $len) === 0)
{
// we have a match so load the values
$found = true;
$found_base_dir = $base_dir;
$found_len = $len;
// done here
break;
}
}
// check if we found a match
if (!$found)
{
// not found so move to the next registered autoloader
return;
}
// get the relative class name
$relative_class = substr($class, $found_len);
// replace the namespace prefix with the base directory, replace namespace
// separators with directory separators in the relative class name, append
// with .php
$file = JPATH_ROOT . '/' . $found_base_dir . '/src' . str_replace('\\', '/', $relative_class) . '.php';
// if the file exists, require it
if (file_exists($file))
{
require $file;
}
});
// add the autoloader for the composer classes
$composer_autoloader = JPATH_LIBRARIES . '/phpseclib3/vendor/autoload.php';
if (file_exists($composer_autoloader))
{
require_once $composer_autoloader;
}
// register additional namespace
\spl_autoload_register(function ($class) {
// project-specific base directories and namespace prefix
$search = [
'libraries/vendor_jcb/VDM.Joomla.Gitea' => 'VDM\\Joomla\\Gitea',
'libraries/vendor_jcb/VDM.Joomla.FOF' => 'VDM\\Joomla\\FOF',
'libraries/vendor_jcb/VDM.Joomla' => 'VDM\\Joomla',
'libraries/vendor_jcb/VDM.Minify' => 'VDM\\Minify',
'libraries/vendor_jcb/VDM.Psr' => 'VDM\\Psr'
];
// Start the search and load if found
$found = false;
$found_base_dir = "";
$found_len = 0;
foreach ($search as $base_dir => $prefix)
{
// does the class use the namespace prefix?
$len = strlen($prefix);
if (strncmp($prefix, $class, $len) === 0)
{
// we have a match so load the values
$found = true;
$found_base_dir = $base_dir;
$found_len = $len;
// done here
break;
}
}
// check if we found a match
if (!$found)
{
// not found so move to the next registered autoloader
return;
}
// get the relative class name
$relative_class = substr($class, $found_len);
// replace the namespace prefix with the base directory, replace namespace
// separators with directory separators in the relative class name, append
// with .php
$file = JPATH_ROOT . '/' . $found_base_dir . '/src' . str_replace('\\', '/', $relative_class) . '.php';
// if the file exists, require it
if (file_exists($file))
{
require $file;
}
});
// (soon) use Joomla\CMS\Association\AssociationExtensionInterface; // (soon) use Joomla\CMS\Association\AssociationExtensionInterface;
use Joomla\CMS\Categories\CategoryFactoryInterface; use Joomla\CMS\Categories\CategoryFactoryInterface;
use Joomla\CMS\Component\Router\RouterFactoryInterface; use Joomla\CMS\Component\Router\RouterFactoryInterface;

View File

@ -18,6 +18,7 @@ CREATE TABLE IF NOT EXISTS `#__componentbuilder_joomla_component` (
`add_php_helper_admin` TINYINT(1) NOT NULL DEFAULT 0, `add_php_helper_admin` TINYINT(1) NOT NULL DEFAULT 0,
`add_php_helper_both` TINYINT(1) NOT NULL DEFAULT 0, `add_php_helper_both` TINYINT(1) NOT NULL DEFAULT 0,
`add_php_helper_site` TINYINT(1) NOT NULL DEFAULT 0, `add_php_helper_site` TINYINT(1) NOT NULL DEFAULT 0,
`add_php_method_install` TINYINT(1) NOT NULL DEFAULT 0,
`add_php_method_uninstall` TINYINT(1) NOT NULL DEFAULT 0, `add_php_method_uninstall` TINYINT(1) NOT NULL DEFAULT 0,
`add_php_postflight_install` TINYINT(1) NOT NULL DEFAULT 0, `add_php_postflight_install` TINYINT(1) NOT NULL DEFAULT 0,
`add_php_postflight_update` TINYINT(1) NOT NULL DEFAULT 0, `add_php_postflight_update` TINYINT(1) NOT NULL DEFAULT 0,
@ -78,6 +79,7 @@ CREATE TABLE IF NOT EXISTS `#__componentbuilder_joomla_component` (
`php_helper_admin` MEDIUMTEXT NOT NULL, `php_helper_admin` MEDIUMTEXT NOT NULL,
`php_helper_both` MEDIUMTEXT NOT NULL, `php_helper_both` MEDIUMTEXT NOT NULL,
`php_helper_site` MEDIUMTEXT NOT NULL, `php_helper_site` MEDIUMTEXT NOT NULL,
`php_method_install` MEDIUMTEXT NOT NULL,
`php_method_uninstall` MEDIUMTEXT NOT NULL, `php_method_uninstall` MEDIUMTEXT NOT NULL,
`php_postflight_install` MEDIUMTEXT NOT NULL, `php_postflight_install` MEDIUMTEXT NOT NULL,
`php_postflight_update` MEDIUMTEXT NOT NULL, `php_postflight_update` MEDIUMTEXT NOT NULL,
@ -101,7 +103,7 @@ CREATE TABLE IF NOT EXISTS `#__componentbuilder_joomla_component` (
`whmcs_buy_link` VARCHAR(255) NOT NULL DEFAULT '', `whmcs_buy_link` VARCHAR(255) NOT NULL DEFAULT '',
`whmcs_key` VARCHAR(255) NOT NULL DEFAULT '', `whmcs_key` VARCHAR(255) NOT NULL DEFAULT '',
`whmcs_url` VARCHAR(255) NOT NULL DEFAULT '', `whmcs_url` VARCHAR(255) NOT NULL DEFAULT '',
`params` text NULL, `params` TEXT NULL,
`published` TINYINT(3) NOT NULL DEFAULT 1, `published` TINYINT(3) NOT NULL DEFAULT 1,
`created_by` INT(10) unsigned NOT NULL DEFAULT 0, `created_by` INT(10) unsigned NOT NULL DEFAULT 0,
`modified_by` INT(10) unsigned NOT NULL DEFAULT 0, `modified_by` INT(10) unsigned NOT NULL DEFAULT 0,
@ -117,18 +119,18 @@ CREATE TABLE IF NOT EXISTS `#__componentbuilder_joomla_component` (
PRIMARY KEY (`id`), PRIMARY KEY (`id`),
KEY `idx_system_name` (`system_name`), KEY `idx_system_name` (`system_name`),
KEY `idx_name_code` (`name_code`), KEY `idx_name_code` (`name_code`),
KEY `idx_add_jcb_powers_path` (`add_jcb_powers_path`),
KEY `idx_add_sales_server` (`add_sales_server`),
KEY `idx_mvc_versiondate` (`mvc_versiondate`),
KEY `idx_remove_line_breaks` (`remove_line_breaks`), KEY `idx_remove_line_breaks` (`remove_line_breaks`),
KEY `idx_add_placeholders` (`add_placeholders`),
KEY `idx_debug_linenr` (`debug_linenr`), KEY `idx_debug_linenr` (`debug_linenr`),
KEY `idx_add_license` (`add_license`), KEY `idx_mvc_versiondate` (`mvc_versiondate`),
KEY `idx_license_type` (`license_type`),
KEY `idx_addreadme` (`addreadme`), KEY `idx_addreadme` (`addreadme`),
KEY `idx_add_powers` (`add_powers`), KEY `idx_add_placeholders` (`add_placeholders`),
KEY `idx_add_backup_folder_path` (`add_backup_folder_path`), KEY `idx_add_backup_folder_path` (`add_backup_folder_path`),
KEY `idx_translation_tool` (`translation_tool`), KEY `idx_translation_tool` (`translation_tool`),
KEY `idx_add_license` (`add_license`),
KEY `idx_license_type` (`license_type`),
KEY `idx_add_powers` (`add_powers`),
KEY `idx_add_sales_server` (`add_sales_server`),
KEY `idx_add_jcb_powers_path` (`add_jcb_powers_path`),
KEY `idx_add_php_helper_admin` (`add_php_helper_admin`), KEY `idx_add_php_helper_admin` (`add_php_helper_admin`),
KEY `idx_add_admin_event` (`add_admin_event`), KEY `idx_add_admin_event` (`add_admin_event`),
KEY `idx_add_php_helper_site` (`add_php_helper_site`), KEY `idx_add_php_helper_site` (`add_php_helper_site`),
@ -145,19 +147,20 @@ CREATE TABLE IF NOT EXISTS `#__componentbuilder_joomla_component` (
KEY `idx_add_php_postflight_install` (`add_php_postflight_install`), KEY `idx_add_php_postflight_install` (`add_php_postflight_install`),
KEY `idx_add_php_postflight_update` (`add_php_postflight_update`), KEY `idx_add_php_postflight_update` (`add_php_postflight_update`),
KEY `idx_add_php_method_uninstall` (`add_php_method_uninstall`), KEY `idx_add_php_method_uninstall` (`add_php_method_uninstall`),
KEY `idx_add_php_method_install` (`add_php_method_install`),
KEY `idx_add_sql` (`add_sql`), KEY `idx_add_sql` (`add_sql`),
KEY `idx_add_sql_uninstall` (`add_sql_uninstall`), KEY `idx_add_sql_uninstall` (`add_sql_uninstall`),
KEY `idx_assets_table_fix` (`assets_table_fix`), KEY `idx_assets_table_fix` (`assets_table_fix`),
KEY `idx_add_update_server` (`add_update_server`), KEY `idx_add_update_server` (`add_update_server`),
KEY `idx_update_server_target` (`update_server_target`),
KEY `idx_emptycontributors` (`emptycontributors`), KEY `idx_emptycontributors` (`emptycontributors`),
KEY `idx_update_server_target` (`update_server_target`),
KEY `idx_add_git_folder_path` (`add_git_folder_path`), KEY `idx_add_git_folder_path` (`add_git_folder_path`),
KEY `idx_creatuserhelper` (`creatuserhelper`), KEY `idx_creatuserhelper` (`creatuserhelper`),
KEY `idx_adduikit` (`adduikit`), KEY `idx_adduikit` (`adduikit`),
KEY `idx_addfootable` (`addfootable`), KEY `idx_addfootable` (`addfootable`),
KEY `idx_add_email_helper` (`add_email_helper`), KEY `idx_add_email_helper` (`add_email_helper`),
KEY `idx_guid` (`guid`),
KEY `idx_add_php_helper_both` (`add_php_helper_both`), KEY `idx_add_php_helper_both` (`add_php_helper_both`),
KEY `idx_guid` (`guid`),
KEY `idx_access` (`access`), KEY `idx_access` (`access`),
KEY `idx_checkout` (`checked_out`), KEY `idx_checkout` (`checked_out`),
KEY `idx_createdby` (`created_by`), KEY `idx_createdby` (`created_by`),
@ -210,7 +213,7 @@ CREATE TABLE IF NOT EXISTS `#__componentbuilder_joomla_module` (
`update_server` INT(11) NOT NULL DEFAULT 0, `update_server` INT(11) NOT NULL DEFAULT 0,
`update_server_target` TINYINT(1) NOT NULL DEFAULT 0, `update_server_target` TINYINT(1) NOT NULL DEFAULT 0,
`update_server_url` VARCHAR(255) NOT NULL DEFAULT '', `update_server_url` VARCHAR(255) NOT NULL DEFAULT '',
`params` text NULL, `params` TEXT NULL,
`published` TINYINT(3) NOT NULL DEFAULT 1, `published` TINYINT(3) NOT NULL DEFAULT 1,
`created_by` INT(10) unsigned NOT NULL DEFAULT 0, `created_by` INT(10) unsigned NOT NULL DEFAULT 0,
`modified_by` INT(10) unsigned NOT NULL DEFAULT 0, `modified_by` INT(10) unsigned NOT NULL DEFAULT 0,
@ -288,7 +291,7 @@ CREATE TABLE IF NOT EXISTS `#__componentbuilder_joomla_plugin` (
`update_server` INT(11) NOT NULL DEFAULT 0, `update_server` INT(11) NOT NULL DEFAULT 0,
`update_server_target` TINYINT(1) NOT NULL DEFAULT 0, `update_server_target` TINYINT(1) NOT NULL DEFAULT 0,
`update_server_url` VARCHAR(255) NOT NULL DEFAULT '', `update_server_url` VARCHAR(255) NOT NULL DEFAULT '',
`params` text NULL, `params` TEXT NULL,
`published` TINYINT(3) NOT NULL DEFAULT 1, `published` TINYINT(3) NOT NULL DEFAULT 1,
`created_by` INT(10) unsigned NOT NULL DEFAULT 0, `created_by` INT(10) unsigned NOT NULL DEFAULT 0,
`modified_by` INT(10) unsigned NOT NULL DEFAULT 0, `modified_by` INT(10) unsigned NOT NULL DEFAULT 0,
@ -333,7 +336,7 @@ CREATE TABLE IF NOT EXISTS `#__componentbuilder_joomla_power` (
`guid` VARCHAR(36) NOT NULL DEFAULT '', `guid` VARCHAR(36) NOT NULL DEFAULT '',
`settings` TEXT NOT NULL, `settings` TEXT NOT NULL,
`system_name` VARCHAR(255) NOT NULL DEFAULT '', `system_name` VARCHAR(255) NOT NULL DEFAULT '',
`params` text NULL, `params` TEXT NULL,
`published` TINYINT(3) NOT NULL DEFAULT 1, `published` TINYINT(3) NOT NULL DEFAULT 1,
`created_by` INT(10) unsigned NOT NULL DEFAULT 0, `created_by` INT(10) unsigned NOT NULL DEFAULT 0,
`modified_by` INT(10) unsigned NOT NULL DEFAULT 0, `modified_by` INT(10) unsigned NOT NULL DEFAULT 0,
@ -381,7 +384,7 @@ CREATE TABLE IF NOT EXISTS `#__componentbuilder_power` (
`system_name` VARCHAR(255) NOT NULL DEFAULT '', `system_name` VARCHAR(255) NOT NULL DEFAULT '',
`type` VARCHAR(64) NOT NULL DEFAULT '', `type` VARCHAR(64) NOT NULL DEFAULT '',
`use_selection` TEXT NULL, `use_selection` TEXT NULL,
`params` text NULL, `params` TEXT NULL,
`published` TINYINT(3) NOT NULL DEFAULT 1, `published` TINYINT(3) NOT NULL DEFAULT 1,
`created_by` INT(10) unsigned NOT NULL DEFAULT 0, `created_by` INT(10) unsigned NOT NULL DEFAULT 0,
`modified_by` INT(10) unsigned NOT NULL DEFAULT 0, `modified_by` INT(10) unsigned NOT NULL DEFAULT 0,
@ -504,7 +507,7 @@ CREATE TABLE IF NOT EXISTS `#__componentbuilder_admin_view` (
`sql` MEDIUMTEXT NOT NULL, `sql` MEDIUMTEXT NOT NULL,
`system_name` VARCHAR(255) NOT NULL DEFAULT '', `system_name` VARCHAR(255) NOT NULL DEFAULT '',
`type` INT(11) NOT NULL DEFAULT 0, `type` INT(11) NOT NULL DEFAULT 0,
`params` text NULL, `params` TEXT NULL,
`published` TINYINT(3) NOT NULL DEFAULT 1, `published` TINYINT(3) NOT NULL DEFAULT 1,
`created_by` INT(10) unsigned NOT NULL DEFAULT 0, `created_by` INT(10) unsigned NOT NULL DEFAULT 0,
`modified_by` INT(10) unsigned NOT NULL DEFAULT 0, `modified_by` INT(10) unsigned NOT NULL DEFAULT 0,
@ -603,7 +606,7 @@ CREATE TABLE IF NOT EXISTS `#__componentbuilder_custom_admin_view` (
`php_view` MEDIUMTEXT NOT NULL, `php_view` MEDIUMTEXT NOT NULL,
`snippet` INT(11) NOT NULL DEFAULT 0, `snippet` INT(11) NOT NULL DEFAULT 0,
`system_name` VARCHAR(255) NOT NULL DEFAULT '', `system_name` VARCHAR(255) NOT NULL DEFAULT '',
`params` text NULL, `params` TEXT NULL,
`published` TINYINT(3) NOT NULL DEFAULT 1, `published` TINYINT(3) NOT NULL DEFAULT 1,
`created_by` INT(10) unsigned NOT NULL DEFAULT 0, `created_by` INT(10) unsigned NOT NULL DEFAULT 0,
`modified_by` INT(10) unsigned NOT NULL DEFAULT 0, `modified_by` INT(10) unsigned NOT NULL DEFAULT 0,
@ -678,7 +681,7 @@ CREATE TABLE IF NOT EXISTS `#__componentbuilder_site_view` (
`php_view` MEDIUMTEXT NOT NULL, `php_view` MEDIUMTEXT NOT NULL,
`snippet` INT(11) NOT NULL DEFAULT 0, `snippet` INT(11) NOT NULL DEFAULT 0,
`system_name` VARCHAR(255) NOT NULL DEFAULT '', `system_name` VARCHAR(255) NOT NULL DEFAULT '',
`params` text NULL, `params` TEXT NULL,
`published` TINYINT(3) NOT NULL DEFAULT 1, `published` TINYINT(3) NOT NULL DEFAULT 1,
`created_by` INT(10) unsigned NOT NULL DEFAULT 0, `created_by` INT(10) unsigned NOT NULL DEFAULT 0,
`modified_by` INT(10) unsigned NOT NULL DEFAULT 0, `modified_by` INT(10) unsigned NOT NULL DEFAULT 0,
@ -727,7 +730,7 @@ CREATE TABLE IF NOT EXISTS `#__componentbuilder_template` (
`php_view` MEDIUMTEXT NOT NULL, `php_view` MEDIUMTEXT NOT NULL,
`snippet` INT(11) NOT NULL DEFAULT 0, `snippet` INT(11) NOT NULL DEFAULT 0,
`template` TEXT NOT NULL, `template` TEXT NOT NULL,
`params` text NULL, `params` TEXT NULL,
`published` TINYINT(3) NOT NULL DEFAULT 1, `published` TINYINT(3) NOT NULL DEFAULT 1,
`created_by` INT(10) unsigned NOT NULL DEFAULT 0, `created_by` INT(10) unsigned NOT NULL DEFAULT 0,
`modified_by` INT(10) unsigned NOT NULL DEFAULT 0, `modified_by` INT(10) unsigned NOT NULL DEFAULT 0,
@ -763,7 +766,7 @@ CREATE TABLE IF NOT EXISTS `#__componentbuilder_layout` (
`name` VARCHAR(255) NOT NULL DEFAULT '', `name` VARCHAR(255) NOT NULL DEFAULT '',
`php_view` MEDIUMTEXT NOT NULL, `php_view` MEDIUMTEXT NOT NULL,
`snippet` INT(11) NOT NULL DEFAULT 0, `snippet` INT(11) NOT NULL DEFAULT 0,
`params` text NULL, `params` TEXT NULL,
`published` TINYINT(3) NOT NULL DEFAULT 1, `published` TINYINT(3) NOT NULL DEFAULT 1,
`created_by` INT(10) unsigned NOT NULL DEFAULT 0, `created_by` INT(10) unsigned NOT NULL DEFAULT 0,
`modified_by` INT(10) unsigned NOT NULL DEFAULT 0, `modified_by` INT(10) unsigned NOT NULL DEFAULT 0,
@ -824,7 +827,7 @@ CREATE TABLE IF NOT EXISTS `#__componentbuilder_dynamic_get` (
`view_selection` TEXT NOT NULL, `view_selection` TEXT NOT NULL,
`view_table_main` INT(11) NOT NULL DEFAULT 0, `view_table_main` INT(11) NOT NULL DEFAULT 0,
`where` TEXT NOT NULL, `where` TEXT NOT NULL,
`params` text NULL, `params` TEXT NULL,
`published` TINYINT(3) NOT NULL DEFAULT 1, `published` TINYINT(3) NOT NULL DEFAULT 1,
`created_by` INT(10) unsigned NOT NULL DEFAULT 0, `created_by` INT(10) unsigned NOT NULL DEFAULT 0,
`modified_by` INT(10) unsigned NOT NULL DEFAULT 0, `modified_by` INT(10) unsigned NOT NULL DEFAULT 0,
@ -873,7 +876,7 @@ CREATE TABLE IF NOT EXISTS `#__componentbuilder_custom_code` (
`target` TINYINT(1) NOT NULL DEFAULT 0, `target` TINYINT(1) NOT NULL DEFAULT 0,
`to_line` VARCHAR(100) NOT NULL DEFAULT '', `to_line` VARCHAR(100) NOT NULL DEFAULT '',
`type` TINYINT(1) NOT NULL DEFAULT 0, `type` TINYINT(1) NOT NULL DEFAULT 0,
`params` text NULL, `params` TEXT NULL,
`published` TINYINT(3) NOT NULL DEFAULT 1, `published` TINYINT(3) NOT NULL DEFAULT 1,
`created_by` INT(10) unsigned NOT NULL DEFAULT 0, `created_by` INT(10) unsigned NOT NULL DEFAULT 0,
`modified_by` INT(10) unsigned NOT NULL DEFAULT 0, `modified_by` INT(10) unsigned NOT NULL DEFAULT 0,
@ -909,7 +912,7 @@ CREATE TABLE IF NOT EXISTS `#__componentbuilder_class_property` (
`joomla_plugin_group` INT(11) NOT NULL DEFAULT 0, `joomla_plugin_group` INT(11) NOT NULL DEFAULT 0,
`name` VARCHAR(255) NOT NULL DEFAULT '', `name` VARCHAR(255) NOT NULL DEFAULT '',
`visibility` VARCHAR(255) NOT NULL DEFAULT '', `visibility` VARCHAR(255) NOT NULL DEFAULT '',
`params` text NULL, `params` TEXT NULL,
`published` TINYINT(3) NOT NULL DEFAULT 1, `published` TINYINT(3) NOT NULL DEFAULT 1,
`created_by` INT(10) unsigned NOT NULL DEFAULT 0, `created_by` INT(10) unsigned NOT NULL DEFAULT 0,
`modified_by` INT(10) unsigned NOT NULL DEFAULT 0, `modified_by` INT(10) unsigned NOT NULL DEFAULT 0,
@ -944,7 +947,7 @@ CREATE TABLE IF NOT EXISTS `#__componentbuilder_class_method` (
`joomla_plugin_group` INT(11) NOT NULL DEFAULT 0, `joomla_plugin_group` INT(11) NOT NULL DEFAULT 0,
`name` VARCHAR(255) NOT NULL DEFAULT '', `name` VARCHAR(255) NOT NULL DEFAULT '',
`visibility` VARCHAR(255) NOT NULL DEFAULT '', `visibility` VARCHAR(255) NOT NULL DEFAULT '',
`params` text NULL, `params` TEXT NULL,
`published` TINYINT(3) NOT NULL DEFAULT 1, `published` TINYINT(3) NOT NULL DEFAULT 1,
`created_by` INT(10) unsigned NOT NULL DEFAULT 0, `created_by` INT(10) unsigned NOT NULL DEFAULT 0,
`modified_by` INT(10) unsigned NOT NULL DEFAULT 0, `modified_by` INT(10) unsigned NOT NULL DEFAULT 0,
@ -973,7 +976,7 @@ CREATE TABLE IF NOT EXISTS `#__componentbuilder_placeholder` (
`asset_id` INT(10) unsigned NOT NULL DEFAULT 0 COMMENT 'FK to the #__assets table.', `asset_id` INT(10) unsigned NOT NULL DEFAULT 0 COMMENT 'FK to the #__assets table.',
`target` VARCHAR(255) NOT NULL DEFAULT '', `target` VARCHAR(255) NOT NULL DEFAULT '',
`value` TEXT NOT NULL, `value` TEXT NOT NULL,
`params` text NULL, `params` TEXT NULL,
`published` TINYINT(3) NOT NULL DEFAULT 1, `published` TINYINT(3) NOT NULL DEFAULT 1,
`created_by` INT(10) unsigned NOT NULL DEFAULT 0, `created_by` INT(10) unsigned NOT NULL DEFAULT 0,
`modified_by` INT(10) unsigned NOT NULL DEFAULT 0, `modified_by` INT(10) unsigned NOT NULL DEFAULT 0,
@ -1006,7 +1009,7 @@ CREATE TABLE IF NOT EXISTS `#__componentbuilder_library` (
`php_setdocument` MEDIUMTEXT NOT NULL, `php_setdocument` MEDIUMTEXT NOT NULL,
`target` TINYINT(1) NOT NULL DEFAULT 1, `target` TINYINT(1) NOT NULL DEFAULT 1,
`type` TINYINT(1) NOT NULL DEFAULT 0, `type` TINYINT(1) NOT NULL DEFAULT 0,
`params` text NULL, `params` TEXT NULL,
`published` TINYINT(3) NOT NULL DEFAULT 1, `published` TINYINT(3) NOT NULL DEFAULT 1,
`created_by` INT(10) unsigned NOT NULL DEFAULT 0, `created_by` INT(10) unsigned NOT NULL DEFAULT 0,
`modified_by` INT(10) unsigned NOT NULL DEFAULT 0, `modified_by` INT(10) unsigned NOT NULL DEFAULT 0,
@ -1045,7 +1048,7 @@ CREATE TABLE IF NOT EXISTS `#__componentbuilder_snippet` (
`type` INT(11) NOT NULL DEFAULT 0, `type` INT(11) NOT NULL DEFAULT 0,
`url` VARCHAR(255) NOT NULL DEFAULT '', `url` VARCHAR(255) NOT NULL DEFAULT '',
`usage` TEXT NOT NULL, `usage` TEXT NOT NULL,
`params` text NULL, `params` TEXT NULL,
`published` TINYINT(3) NOT NULL DEFAULT 1, `published` TINYINT(3) NOT NULL DEFAULT 1,
`created_by` INT(10) unsigned NOT NULL DEFAULT 0, `created_by` INT(10) unsigned NOT NULL DEFAULT 0,
`modified_by` INT(10) unsigned NOT NULL DEFAULT 0, `modified_by` INT(10) unsigned NOT NULL DEFAULT 0,
@ -1076,7 +1079,7 @@ CREATE TABLE IF NOT EXISTS `#__componentbuilder_validation_rule` (
`name` VARCHAR(255) NOT NULL DEFAULT '', `name` VARCHAR(255) NOT NULL DEFAULT '',
`php` MEDIUMTEXT NOT NULL, `php` MEDIUMTEXT NOT NULL,
`short_description` VARCHAR(255) NOT NULL DEFAULT '', `short_description` VARCHAR(255) NOT NULL DEFAULT '',
`params` text NULL, `params` TEXT NULL,
`published` TINYINT(3) NOT NULL DEFAULT 1, `published` TINYINT(3) NOT NULL DEFAULT 1,
`created_by` INT(10) unsigned NOT NULL DEFAULT 0, `created_by` INT(10) unsigned NOT NULL DEFAULT 0,
`modified_by` INT(10) unsigned NOT NULL DEFAULT 0, `modified_by` INT(10) unsigned NOT NULL DEFAULT 0,
@ -1125,7 +1128,7 @@ CREATE TABLE IF NOT EXISTS `#__componentbuilder_field` (
`on_save_model_field` TEXT NOT NULL, `on_save_model_field` TEXT NOT NULL,
`store` INT(11) NOT NULL DEFAULT 0, `store` INT(11) NOT NULL DEFAULT 0,
`xml` TEXT NOT NULL, `xml` TEXT NOT NULL,
`params` text NULL, `params` TEXT NULL,
`published` TINYINT(3) NOT NULL DEFAULT 1, `published` TINYINT(3) NOT NULL DEFAULT 1,
`created_by` INT(10) unsigned NOT NULL DEFAULT 0, `created_by` INT(10) unsigned NOT NULL DEFAULT 0,
`modified_by` INT(10) unsigned NOT NULL DEFAULT 0, `modified_by` INT(10) unsigned NOT NULL DEFAULT 0,
@ -1178,7 +1181,7 @@ CREATE TABLE IF NOT EXISTS `#__componentbuilder_fieldtype` (
`properties` TEXT NOT NULL, `properties` TEXT NOT NULL,
`short_description` VARCHAR(255) NOT NULL DEFAULT '', `short_description` VARCHAR(255) NOT NULL DEFAULT '',
`store` INT(11) NOT NULL DEFAULT 0, `store` INT(11) NOT NULL DEFAULT 0,
`params` text NULL, `params` TEXT NULL,
`published` TINYINT(3) NOT NULL DEFAULT 1, `published` TINYINT(3) NOT NULL DEFAULT 1,
`created_by` INT(10) unsigned NOT NULL DEFAULT 0, `created_by` INT(10) unsigned NOT NULL DEFAULT 0,
`modified_by` INT(10) unsigned NOT NULL DEFAULT 0, `modified_by` INT(10) unsigned NOT NULL DEFAULT 0,
@ -1217,7 +1220,7 @@ CREATE TABLE IF NOT EXISTS `#__componentbuilder_language_translation` (
`plugins` TEXT NULL, `plugins` TEXT NULL,
`source` MEDIUMTEXT NOT NULL, `source` MEDIUMTEXT NOT NULL,
`translation` TEXT NULL, `translation` TEXT NULL,
`params` text NULL, `params` TEXT NULL,
`published` TINYINT(3) NOT NULL DEFAULT 1, `published` TINYINT(3) NOT NULL DEFAULT 1,
`created_by` INT(10) unsigned NOT NULL DEFAULT 0, `created_by` INT(10) unsigned NOT NULL DEFAULT 0,
`modified_by` INT(10) unsigned NOT NULL DEFAULT 0, `modified_by` INT(10) unsigned NOT NULL DEFAULT 0,
@ -1242,7 +1245,7 @@ CREATE TABLE IF NOT EXISTS `#__componentbuilder_language` (
`asset_id` INT(10) unsigned NOT NULL DEFAULT 0 COMMENT 'FK to the #__assets table.', `asset_id` INT(10) unsigned NOT NULL DEFAULT 0 COMMENT 'FK to the #__assets table.',
`langtag` VARCHAR(64) NOT NULL DEFAULT '', `langtag` VARCHAR(64) NOT NULL DEFAULT '',
`name` VARCHAR(255) NOT NULL DEFAULT '', `name` VARCHAR(255) NOT NULL DEFAULT '',
`params` text NULL, `params` TEXT NULL,
`published` TINYINT(3) NOT NULL DEFAULT 1, `published` TINYINT(3) NOT NULL DEFAULT 1,
`created_by` INT(10) unsigned NOT NULL DEFAULT 0, `created_by` INT(10) unsigned NOT NULL DEFAULT 0,
`modified_by` INT(10) unsigned NOT NULL DEFAULT 0, `modified_by` INT(10) unsigned NOT NULL DEFAULT 0,
@ -1278,7 +1281,7 @@ CREATE TABLE IF NOT EXISTS `#__componentbuilder_server` (
`secret` TEXT NOT NULL, `secret` TEXT NOT NULL,
`signature` TEXT NOT NULL, `signature` TEXT NOT NULL,
`username` TEXT NOT NULL, `username` TEXT NOT NULL,
`params` text NULL, `params` TEXT NULL,
`published` TINYINT(3) NOT NULL DEFAULT 1, `published` TINYINT(3) NOT NULL DEFAULT 1,
`created_by` INT(10) unsigned NOT NULL DEFAULT 0, `created_by` INT(10) unsigned NOT NULL DEFAULT 0,
`modified_by` INT(10) unsigned NOT NULL DEFAULT 0, `modified_by` INT(10) unsigned NOT NULL DEFAULT 0,
@ -1315,7 +1318,7 @@ CREATE TABLE IF NOT EXISTS `#__componentbuilder_help_document` (
`title` CHAR(64) NOT NULL DEFAULT '', `title` CHAR(64) NOT NULL DEFAULT '',
`type` TINYINT(1) NOT NULL DEFAULT 0, `type` TINYINT(1) NOT NULL DEFAULT 0,
`url` VARCHAR(255) NOT NULL DEFAULT '', `url` VARCHAR(255) NOT NULL DEFAULT '',
`params` text NULL, `params` TEXT NULL,
`published` TINYINT(3) NOT NULL DEFAULT 1, `published` TINYINT(3) NOT NULL DEFAULT 1,
`created_by` INT(10) unsigned NOT NULL DEFAULT 0, `created_by` INT(10) unsigned NOT NULL DEFAULT 0,
`modified_by` INT(10) unsigned NOT NULL DEFAULT 0, `modified_by` INT(10) unsigned NOT NULL DEFAULT 0,
@ -1344,7 +1347,7 @@ CREATE TABLE IF NOT EXISTS `#__componentbuilder_admin_fields` (
`asset_id` INT(10) unsigned NOT NULL DEFAULT 0 COMMENT 'FK to the #__assets table.', `asset_id` INT(10) unsigned NOT NULL DEFAULT 0 COMMENT 'FK to the #__assets table.',
`addfields` MEDIUMTEXT NOT NULL, `addfields` MEDIUMTEXT NOT NULL,
`admin_view` INT(11) NOT NULL DEFAULT 0, `admin_view` INT(11) NOT NULL DEFAULT 0,
`params` text NULL, `params` TEXT NULL,
`published` TINYINT(3) NOT NULL DEFAULT 1, `published` TINYINT(3) NOT NULL DEFAULT 1,
`created_by` INT(10) unsigned NOT NULL DEFAULT 0, `created_by` INT(10) unsigned NOT NULL DEFAULT 0,
`modified_by` INT(10) unsigned NOT NULL DEFAULT 0, `modified_by` INT(10) unsigned NOT NULL DEFAULT 0,
@ -1370,7 +1373,7 @@ CREATE TABLE IF NOT EXISTS `#__componentbuilder_admin_fields_conditions` (
`asset_id` INT(10) unsigned NOT NULL DEFAULT 0 COMMENT 'FK to the #__assets table.', `asset_id` INT(10) unsigned NOT NULL DEFAULT 0 COMMENT 'FK to the #__assets table.',
`addconditions` MEDIUMTEXT NOT NULL, `addconditions` MEDIUMTEXT NOT NULL,
`admin_view` INT(11) NOT NULL DEFAULT 0, `admin_view` INT(11) NOT NULL DEFAULT 0,
`params` text NULL, `params` TEXT NULL,
`published` TINYINT(3) NOT NULL DEFAULT 1, `published` TINYINT(3) NOT NULL DEFAULT 1,
`created_by` INT(10) unsigned NOT NULL DEFAULT 0, `created_by` INT(10) unsigned NOT NULL DEFAULT 0,
`modified_by` INT(10) unsigned NOT NULL DEFAULT 0, `modified_by` INT(10) unsigned NOT NULL DEFAULT 0,
@ -1396,7 +1399,7 @@ CREATE TABLE IF NOT EXISTS `#__componentbuilder_admin_fields_relations` (
`asset_id` INT(10) unsigned NOT NULL DEFAULT 0 COMMENT 'FK to the #__assets table.', `asset_id` INT(10) unsigned NOT NULL DEFAULT 0 COMMENT 'FK to the #__assets table.',
`addrelations` MEDIUMTEXT NOT NULL, `addrelations` MEDIUMTEXT NOT NULL,
`admin_view` INT(11) NOT NULL DEFAULT 0, `admin_view` INT(11) NOT NULL DEFAULT 0,
`params` text NULL, `params` TEXT NULL,
`published` TINYINT(3) NOT NULL DEFAULT 1, `published` TINYINT(3) NOT NULL DEFAULT 1,
`created_by` INT(10) unsigned NOT NULL DEFAULT 0, `created_by` INT(10) unsigned NOT NULL DEFAULT 0,
`modified_by` INT(10) unsigned NOT NULL DEFAULT 0, `modified_by` INT(10) unsigned NOT NULL DEFAULT 0,
@ -1422,7 +1425,7 @@ CREATE TABLE IF NOT EXISTS `#__componentbuilder_admin_custom_tabs` (
`asset_id` INT(10) unsigned NOT NULL DEFAULT 0 COMMENT 'FK to the #__assets table.', `asset_id` INT(10) unsigned NOT NULL DEFAULT 0 COMMENT 'FK to the #__assets table.',
`admin_view` INT(11) NOT NULL DEFAULT 0, `admin_view` INT(11) NOT NULL DEFAULT 0,
`tabs` TEXT NOT NULL, `tabs` TEXT NOT NULL,
`params` text NULL, `params` TEXT NULL,
`published` TINYINT(3) NOT NULL DEFAULT 1, `published` TINYINT(3) NOT NULL DEFAULT 1,
`created_by` INT(10) unsigned NOT NULL DEFAULT 0, `created_by` INT(10) unsigned NOT NULL DEFAULT 0,
`modified_by` INT(10) unsigned NOT NULL DEFAULT 0, `modified_by` INT(10) unsigned NOT NULL DEFAULT 0,
@ -1448,7 +1451,7 @@ CREATE TABLE IF NOT EXISTS `#__componentbuilder_component_admin_views` (
`asset_id` INT(10) unsigned NOT NULL DEFAULT 0 COMMENT 'FK to the #__assets table.', `asset_id` INT(10) unsigned NOT NULL DEFAULT 0 COMMENT 'FK to the #__assets table.',
`addadmin_views` TEXT NOT NULL, `addadmin_views` TEXT NOT NULL,
`joomla_component` INT(11) NOT NULL DEFAULT 0, `joomla_component` INT(11) NOT NULL DEFAULT 0,
`params` text NULL, `params` TEXT NULL,
`published` TINYINT(3) NOT NULL DEFAULT 1, `published` TINYINT(3) NOT NULL DEFAULT 1,
`created_by` INT(10) unsigned NOT NULL DEFAULT 0, `created_by` INT(10) unsigned NOT NULL DEFAULT 0,
`modified_by` INT(10) unsigned NOT NULL DEFAULT 0, `modified_by` INT(10) unsigned NOT NULL DEFAULT 0,
@ -1474,7 +1477,7 @@ CREATE TABLE IF NOT EXISTS `#__componentbuilder_component_site_views` (
`asset_id` INT(10) unsigned NOT NULL DEFAULT 0 COMMENT 'FK to the #__assets table.', `asset_id` INT(10) unsigned NOT NULL DEFAULT 0 COMMENT 'FK to the #__assets table.',
`addsite_views` TEXT NOT NULL, `addsite_views` TEXT NOT NULL,
`joomla_component` INT(11) NOT NULL DEFAULT 0, `joomla_component` INT(11) NOT NULL DEFAULT 0,
`params` text NULL, `params` TEXT NULL,
`published` TINYINT(3) NOT NULL DEFAULT 1, `published` TINYINT(3) NOT NULL DEFAULT 1,
`created_by` INT(10) unsigned NOT NULL DEFAULT 0, `created_by` INT(10) unsigned NOT NULL DEFAULT 0,
`modified_by` INT(10) unsigned NOT NULL DEFAULT 0, `modified_by` INT(10) unsigned NOT NULL DEFAULT 0,
@ -1500,7 +1503,7 @@ CREATE TABLE IF NOT EXISTS `#__componentbuilder_component_custom_admin_views` (
`asset_id` INT(10) unsigned NOT NULL DEFAULT 0 COMMENT 'FK to the #__assets table.', `asset_id` INT(10) unsigned NOT NULL DEFAULT 0 COMMENT 'FK to the #__assets table.',
`addcustom_admin_views` TEXT NOT NULL, `addcustom_admin_views` TEXT NOT NULL,
`joomla_component` INT(11) NOT NULL DEFAULT 0, `joomla_component` INT(11) NOT NULL DEFAULT 0,
`params` text NULL, `params` TEXT NULL,
`published` TINYINT(3) NOT NULL DEFAULT 1, `published` TINYINT(3) NOT NULL DEFAULT 1,
`created_by` INT(10) unsigned NOT NULL DEFAULT 0, `created_by` INT(10) unsigned NOT NULL DEFAULT 0,
`modified_by` INT(10) unsigned NOT NULL DEFAULT 0, `modified_by` INT(10) unsigned NOT NULL DEFAULT 0,
@ -1526,7 +1529,7 @@ CREATE TABLE IF NOT EXISTS `#__componentbuilder_component_updates` (
`asset_id` INT(10) unsigned NOT NULL DEFAULT 0 COMMENT 'FK to the #__assets table.', `asset_id` INT(10) unsigned NOT NULL DEFAULT 0 COMMENT 'FK to the #__assets table.',
`joomla_component` INT(11) NOT NULL DEFAULT 0, `joomla_component` INT(11) NOT NULL DEFAULT 0,
`version_update` TEXT NOT NULL, `version_update` TEXT NOT NULL,
`params` text NULL, `params` TEXT NULL,
`published` TINYINT(3) NOT NULL DEFAULT 1, `published` TINYINT(3) NOT NULL DEFAULT 1,
`created_by` INT(10) unsigned NOT NULL DEFAULT 0, `created_by` INT(10) unsigned NOT NULL DEFAULT 0,
`modified_by` INT(10) unsigned NOT NULL DEFAULT 0, `modified_by` INT(10) unsigned NOT NULL DEFAULT 0,
@ -1552,7 +1555,7 @@ CREATE TABLE IF NOT EXISTS `#__componentbuilder_component_mysql_tweaks` (
`asset_id` INT(10) unsigned NOT NULL DEFAULT 0 COMMENT 'FK to the #__assets table.', `asset_id` INT(10) unsigned NOT NULL DEFAULT 0 COMMENT 'FK to the #__assets table.',
`joomla_component` INT(11) NOT NULL DEFAULT 0, `joomla_component` INT(11) NOT NULL DEFAULT 0,
`sql_tweak` TEXT NOT NULL, `sql_tweak` TEXT NOT NULL,
`params` text NULL, `params` TEXT NULL,
`published` TINYINT(3) NOT NULL DEFAULT 1, `published` TINYINT(3) NOT NULL DEFAULT 1,
`created_by` INT(10) unsigned NOT NULL DEFAULT 0, `created_by` INT(10) unsigned NOT NULL DEFAULT 0,
`modified_by` INT(10) unsigned NOT NULL DEFAULT 0, `modified_by` INT(10) unsigned NOT NULL DEFAULT 0,
@ -1578,7 +1581,7 @@ CREATE TABLE IF NOT EXISTS `#__componentbuilder_component_custom_admin_menus` (
`asset_id` INT(10) unsigned NOT NULL DEFAULT 0 COMMENT 'FK to the #__assets table.', `asset_id` INT(10) unsigned NOT NULL DEFAULT 0 COMMENT 'FK to the #__assets table.',
`addcustommenus` TEXT NOT NULL, `addcustommenus` TEXT NOT NULL,
`joomla_component` INT(11) NOT NULL DEFAULT 0, `joomla_component` INT(11) NOT NULL DEFAULT 0,
`params` text NULL, `params` TEXT NULL,
`published` TINYINT(3) NOT NULL DEFAULT 1, `published` TINYINT(3) NOT NULL DEFAULT 1,
`created_by` INT(10) unsigned NOT NULL DEFAULT 0, `created_by` INT(10) unsigned NOT NULL DEFAULT 0,
`modified_by` INT(10) unsigned NOT NULL DEFAULT 0, `modified_by` INT(10) unsigned NOT NULL DEFAULT 0,
@ -1610,7 +1613,7 @@ CREATE TABLE IF NOT EXISTS `#__componentbuilder_component_router` (
`mode_constructor_after_parent` TINYINT(1) NOT NULL DEFAULT 0, `mode_constructor_after_parent` TINYINT(1) NOT NULL DEFAULT 0,
`mode_constructor_before_parent` TINYINT(1) NOT NULL DEFAULT 0, `mode_constructor_before_parent` TINYINT(1) NOT NULL DEFAULT 0,
`mode_methods` TINYINT(1) NOT NULL DEFAULT 0, `mode_methods` TINYINT(1) NOT NULL DEFAULT 0,
`params` text NULL, `params` TEXT NULL,
`published` TINYINT(3) NOT NULL DEFAULT 1, `published` TINYINT(3) NOT NULL DEFAULT 1,
`created_by` INT(10) unsigned NOT NULL DEFAULT 0, `created_by` INT(10) unsigned NOT NULL DEFAULT 0,
`modified_by` INT(10) unsigned NOT NULL DEFAULT 0, `modified_by` INT(10) unsigned NOT NULL DEFAULT 0,
@ -1636,7 +1639,7 @@ CREATE TABLE IF NOT EXISTS `#__componentbuilder_component_config` (
`asset_id` INT(10) unsigned NOT NULL DEFAULT 0 COMMENT 'FK to the #__assets table.', `asset_id` INT(10) unsigned NOT NULL DEFAULT 0 COMMENT 'FK to the #__assets table.',
`addconfig` TEXT NOT NULL, `addconfig` TEXT NOT NULL,
`joomla_component` INT(11) NOT NULL DEFAULT 0, `joomla_component` INT(11) NOT NULL DEFAULT 0,
`params` text NULL, `params` TEXT NULL,
`published` TINYINT(3) NOT NULL DEFAULT 1, `published` TINYINT(3) NOT NULL DEFAULT 1,
`created_by` INT(10) unsigned NOT NULL DEFAULT 0, `created_by` INT(10) unsigned NOT NULL DEFAULT 0,
`modified_by` INT(10) unsigned NOT NULL DEFAULT 0, `modified_by` INT(10) unsigned NOT NULL DEFAULT 0,
@ -1663,7 +1666,7 @@ CREATE TABLE IF NOT EXISTS `#__componentbuilder_component_dashboard` (
`dashboard_tab` TEXT NOT NULL, `dashboard_tab` TEXT NOT NULL,
`joomla_component` INT(11) NOT NULL DEFAULT 0, `joomla_component` INT(11) NOT NULL DEFAULT 0,
`php_dashboard_methods` MEDIUMTEXT NOT NULL, `php_dashboard_methods` MEDIUMTEXT NOT NULL,
`params` text NULL, `params` TEXT NULL,
`published` TINYINT(3) NOT NULL DEFAULT 1, `published` TINYINT(3) NOT NULL DEFAULT 1,
`created_by` INT(10) unsigned NOT NULL DEFAULT 0, `created_by` INT(10) unsigned NOT NULL DEFAULT 0,
`modified_by` INT(10) unsigned NOT NULL DEFAULT 0, `modified_by` INT(10) unsigned NOT NULL DEFAULT 0,
@ -1692,7 +1695,7 @@ CREATE TABLE IF NOT EXISTS `#__componentbuilder_component_files_folders` (
`addfolders` TEXT NOT NULL, `addfolders` TEXT NOT NULL,
`addfoldersfullpath` TEXT NOT NULL, `addfoldersfullpath` TEXT NOT NULL,
`joomla_component` INT(11) NOT NULL DEFAULT 0, `joomla_component` INT(11) NOT NULL DEFAULT 0,
`params` text NULL, `params` TEXT NULL,
`published` TINYINT(3) NOT NULL DEFAULT 1, `published` TINYINT(3) NOT NULL DEFAULT 1,
`created_by` INT(10) unsigned NOT NULL DEFAULT 0, `created_by` INT(10) unsigned NOT NULL DEFAULT 0,
`modified_by` INT(10) unsigned NOT NULL DEFAULT 0, `modified_by` INT(10) unsigned NOT NULL DEFAULT 0,
@ -1718,7 +1721,7 @@ CREATE TABLE IF NOT EXISTS `#__componentbuilder_component_placeholders` (
`asset_id` INT(10) unsigned NOT NULL DEFAULT 0 COMMENT 'FK to the #__assets table.', `asset_id` INT(10) unsigned NOT NULL DEFAULT 0 COMMENT 'FK to the #__assets table.',
`addplaceholders` TEXT NOT NULL, `addplaceholders` TEXT NOT NULL,
`joomla_component` INT(11) NOT NULL DEFAULT 0, `joomla_component` INT(11) NOT NULL DEFAULT 0,
`params` text NULL, `params` TEXT NULL,
`published` TINYINT(3) NOT NULL DEFAULT 1, `published` TINYINT(3) NOT NULL DEFAULT 1,
`created_by` INT(10) unsigned NOT NULL DEFAULT 0, `created_by` INT(10) unsigned NOT NULL DEFAULT 0,
`modified_by` INT(10) unsigned NOT NULL DEFAULT 0, `modified_by` INT(10) unsigned NOT NULL DEFAULT 0,
@ -1744,7 +1747,7 @@ CREATE TABLE IF NOT EXISTS `#__componentbuilder_component_plugins` (
`asset_id` INT(10) unsigned NOT NULL DEFAULT 0 COMMENT 'FK to the #__assets table.', `asset_id` INT(10) unsigned NOT NULL DEFAULT 0 COMMENT 'FK to the #__assets table.',
`addjoomla_plugins` TEXT NOT NULL, `addjoomla_plugins` TEXT NOT NULL,
`joomla_component` INT(11) NOT NULL DEFAULT 0, `joomla_component` INT(11) NOT NULL DEFAULT 0,
`params` text NULL, `params` TEXT NULL,
`published` TINYINT(3) NOT NULL DEFAULT 1, `published` TINYINT(3) NOT NULL DEFAULT 1,
`created_by` INT(10) unsigned NOT NULL DEFAULT 0, `created_by` INT(10) unsigned NOT NULL DEFAULT 0,
`modified_by` INT(10) unsigned NOT NULL DEFAULT 0, `modified_by` INT(10) unsigned NOT NULL DEFAULT 0,
@ -1770,7 +1773,7 @@ CREATE TABLE IF NOT EXISTS `#__componentbuilder_component_modules` (
`asset_id` INT(10) unsigned NOT NULL DEFAULT 0 COMMENT 'FK to the #__assets table.', `asset_id` INT(10) unsigned NOT NULL DEFAULT 0 COMMENT 'FK to the #__assets table.',
`addjoomla_modules` TEXT NOT NULL, `addjoomla_modules` TEXT NOT NULL,
`joomla_component` INT(11) NOT NULL DEFAULT 0, `joomla_component` INT(11) NOT NULL DEFAULT 0,
`params` text NULL, `params` TEXT NULL,
`published` TINYINT(3) NOT NULL DEFAULT 1, `published` TINYINT(3) NOT NULL DEFAULT 1,
`created_by` INT(10) unsigned NOT NULL DEFAULT 0, `created_by` INT(10) unsigned NOT NULL DEFAULT 0,
`modified_by` INT(10) unsigned NOT NULL DEFAULT 0, `modified_by` INT(10) unsigned NOT NULL DEFAULT 0,
@ -1796,7 +1799,7 @@ CREATE TABLE IF NOT EXISTS `#__componentbuilder_snippet_type` (
`asset_id` INT(10) unsigned NOT NULL DEFAULT 0 COMMENT 'FK to the #__assets table.', `asset_id` INT(10) unsigned NOT NULL DEFAULT 0 COMMENT 'FK to the #__assets table.',
`description` VARCHAR(255) NOT NULL DEFAULT '', `description` VARCHAR(255) NOT NULL DEFAULT '',
`name` VARCHAR(255) NOT NULL DEFAULT '', `name` VARCHAR(255) NOT NULL DEFAULT '',
`params` text NULL, `params` TEXT NULL,
`published` TINYINT(3) NOT NULL DEFAULT 1, `published` TINYINT(3) NOT NULL DEFAULT 1,
`created_by` INT(10) unsigned NOT NULL DEFAULT 0, `created_by` INT(10) unsigned NOT NULL DEFAULT 0,
`modified_by` INT(10) unsigned NOT NULL DEFAULT 0, `modified_by` INT(10) unsigned NOT NULL DEFAULT 0,
@ -1822,7 +1825,7 @@ CREATE TABLE IF NOT EXISTS `#__componentbuilder_library_config` (
`asset_id` INT(10) unsigned NOT NULL DEFAULT 0 COMMENT 'FK to the #__assets table.', `asset_id` INT(10) unsigned NOT NULL DEFAULT 0 COMMENT 'FK to the #__assets table.',
`addconfig` TEXT NOT NULL, `addconfig` TEXT NOT NULL,
`library` INT(11) NOT NULL DEFAULT 0, `library` INT(11) NOT NULL DEFAULT 0,
`params` text NULL, `params` TEXT NULL,
`published` TINYINT(3) NOT NULL DEFAULT 1, `published` TINYINT(3) NOT NULL DEFAULT 1,
`created_by` INT(10) unsigned NOT NULL DEFAULT 0, `created_by` INT(10) unsigned NOT NULL DEFAULT 0,
`modified_by` INT(10) unsigned NOT NULL DEFAULT 0, `modified_by` INT(10) unsigned NOT NULL DEFAULT 0,
@ -1852,7 +1855,7 @@ CREATE TABLE IF NOT EXISTS `#__componentbuilder_library_files_folders_urls` (
`addfoldersfullpath` TEXT NOT NULL, `addfoldersfullpath` TEXT NOT NULL,
`addurls` TEXT NOT NULL, `addurls` TEXT NOT NULL,
`library` INT(11) NOT NULL DEFAULT 0, `library` INT(11) NOT NULL DEFAULT 0,
`params` text NULL, `params` TEXT NULL,
`published` TINYINT(3) NOT NULL DEFAULT 1, `published` TINYINT(3) NOT NULL DEFAULT 1,
`created_by` INT(10) unsigned NOT NULL DEFAULT 0, `created_by` INT(10) unsigned NOT NULL DEFAULT 0,
`modified_by` INT(10) unsigned NOT NULL DEFAULT 0, `modified_by` INT(10) unsigned NOT NULL DEFAULT 0,
@ -1880,7 +1883,7 @@ CREATE TABLE IF NOT EXISTS `#__componentbuilder_class_extends` (
`extension_type` VARCHAR(64) NOT NULL DEFAULT '', `extension_type` VARCHAR(64) NOT NULL DEFAULT '',
`head` TEXT NULL, `head` TEXT NULL,
`name` VARCHAR(255) NOT NULL DEFAULT '', `name` VARCHAR(255) NOT NULL DEFAULT '',
`params` text NULL, `params` TEXT NULL,
`published` TINYINT(3) NOT NULL DEFAULT 1, `published` TINYINT(3) NOT NULL DEFAULT 1,
`created_by` INT(10) unsigned NOT NULL DEFAULT 0, `created_by` INT(10) unsigned NOT NULL DEFAULT 0,
`modified_by` INT(10) unsigned NOT NULL DEFAULT 0, `modified_by` INT(10) unsigned NOT NULL DEFAULT 0,
@ -1906,7 +1909,7 @@ CREATE TABLE IF NOT EXISTS `#__componentbuilder_joomla_module_updates` (
`asset_id` INT(10) unsigned NOT NULL DEFAULT 0 COMMENT 'FK to the #__assets table.', `asset_id` INT(10) unsigned NOT NULL DEFAULT 0 COMMENT 'FK to the #__assets table.',
`joomla_module` INT(11) NOT NULL DEFAULT 0, `joomla_module` INT(11) NOT NULL DEFAULT 0,
`version_update` TEXT NOT NULL, `version_update` TEXT NOT NULL,
`params` text NULL, `params` TEXT NULL,
`published` TINYINT(3) NOT NULL DEFAULT 1, `published` TINYINT(3) NOT NULL DEFAULT 1,
`created_by` INT(10) unsigned NOT NULL DEFAULT 0, `created_by` INT(10) unsigned NOT NULL DEFAULT 0,
`modified_by` INT(10) unsigned NOT NULL DEFAULT 0, `modified_by` INT(10) unsigned NOT NULL DEFAULT 0,
@ -1936,7 +1939,7 @@ CREATE TABLE IF NOT EXISTS `#__componentbuilder_joomla_module_files_folders_urls
`addfoldersfullpath` TEXT NOT NULL, `addfoldersfullpath` TEXT NOT NULL,
`addurls` TEXT NOT NULL, `addurls` TEXT NOT NULL,
`joomla_module` INT(11) NOT NULL DEFAULT 0, `joomla_module` INT(11) NOT NULL DEFAULT 0,
`params` text NULL, `params` TEXT NULL,
`published` TINYINT(3) NOT NULL DEFAULT 1, `published` TINYINT(3) NOT NULL DEFAULT 1,
`created_by` INT(10) unsigned NOT NULL DEFAULT 0, `created_by` INT(10) unsigned NOT NULL DEFAULT 0,
`modified_by` INT(10) unsigned NOT NULL DEFAULT 0, `modified_by` INT(10) unsigned NOT NULL DEFAULT 0,
@ -1962,7 +1965,7 @@ CREATE TABLE IF NOT EXISTS `#__componentbuilder_joomla_plugin_group` (
`asset_id` INT(10) unsigned NOT NULL DEFAULT 0 COMMENT 'FK to the #__assets table.', `asset_id` INT(10) unsigned NOT NULL DEFAULT 0 COMMENT 'FK to the #__assets table.',
`class_extends` INT(11) NOT NULL DEFAULT 0, `class_extends` INT(11) NOT NULL DEFAULT 0,
`name` VARCHAR(255) NOT NULL DEFAULT '', `name` VARCHAR(255) NOT NULL DEFAULT '',
`params` text NULL, `params` TEXT NULL,
`published` TINYINT(3) NOT NULL DEFAULT 1, `published` TINYINT(3) NOT NULL DEFAULT 1,
`created_by` INT(10) unsigned NOT NULL DEFAULT 0, `created_by` INT(10) unsigned NOT NULL DEFAULT 0,
`modified_by` INT(10) unsigned NOT NULL DEFAULT 0, `modified_by` INT(10) unsigned NOT NULL DEFAULT 0,
@ -1989,7 +1992,7 @@ CREATE TABLE IF NOT EXISTS `#__componentbuilder_joomla_plugin_updates` (
`asset_id` INT(10) unsigned NOT NULL DEFAULT 0 COMMENT 'FK to the #__assets table.', `asset_id` INT(10) unsigned NOT NULL DEFAULT 0 COMMENT 'FK to the #__assets table.',
`joomla_plugin` INT(11) NOT NULL DEFAULT 0, `joomla_plugin` INT(11) NOT NULL DEFAULT 0,
`version_update` TEXT NOT NULL, `version_update` TEXT NOT NULL,
`params` text NULL, `params` TEXT NULL,
`published` TINYINT(3) NOT NULL DEFAULT 1, `published` TINYINT(3) NOT NULL DEFAULT 1,
`created_by` INT(10) unsigned NOT NULL DEFAULT 0, `created_by` INT(10) unsigned NOT NULL DEFAULT 0,
`modified_by` INT(10) unsigned NOT NULL DEFAULT 0, `modified_by` INT(10) unsigned NOT NULL DEFAULT 0,
@ -2019,7 +2022,7 @@ CREATE TABLE IF NOT EXISTS `#__componentbuilder_joomla_plugin_files_folders_urls
`addfoldersfullpath` TEXT NOT NULL, `addfoldersfullpath` TEXT NOT NULL,
`addurls` TEXT NOT NULL, `addurls` TEXT NOT NULL,
`joomla_plugin` INT(11) NOT NULL DEFAULT 0, `joomla_plugin` INT(11) NOT NULL DEFAULT 0,
`params` text NULL, `params` TEXT NULL,
`published` TINYINT(3) NOT NULL DEFAULT 1, `published` TINYINT(3) NOT NULL DEFAULT 1,
`created_by` INT(10) unsigned NOT NULL DEFAULT 0, `created_by` INT(10) unsigned NOT NULL DEFAULT 0,
`modified_by` INT(10) unsigned NOT NULL DEFAULT 0, `modified_by` INT(10) unsigned NOT NULL DEFAULT 0,
@ -2444,7 +2447,7 @@ INSERT INTO `#__componentbuilder_field` (`id`, `add_css_view`, `add_css_views`,
(195, '', '', '', '', '', '', '', '', 255, '', 'CHAR', '', '', '', 'Meter', 'NOT NULL', '', 13, '\"<field \\r\\n\\ttype=\\\"meter\\\" \\r\\n\\tname=\\\"meter\\\" \\r\\n\\tlabel=\\\"Meter\\\" \\r\\n\\twidth=\\\"330px\\\" \\r\\n\\tcolor=\\\"\\\" \\r\\n\\tdefault=\\\"9\\\" \\r\\n\\tanimated=\\\"1\\\" \\r\\n\\tactive=\\\"1\\\" \\r\\n\\tdescription=\\\"Enter some description\\\" \\r\\n\\tclass=\\\"\\\" \\r\\n\\tmin=\\\"1\\\" \\r\\n\\tmax=\\\"20\\\" \\r\\n\\tstep=\\\"1\\\" \\r\\n\\/>\"', 1, '2015-05-08 00:07:08', '2015-08-25 21:15:22', 1, '', 8, '7df21d68-709f-4f61-bf47-81dde8b40561', '', '', '', '', ''), (195, '', '', '', '', '', '', '', '', 255, '', 'CHAR', '', '', '', 'Meter', 'NOT NULL', '', 13, '\"<field \\r\\n\\ttype=\\\"meter\\\" \\r\\n\\tname=\\\"meter\\\" \\r\\n\\tlabel=\\\"Meter\\\" \\r\\n\\twidth=\\\"330px\\\" \\r\\n\\tcolor=\\\"\\\" \\r\\n\\tdefault=\\\"9\\\" \\r\\n\\tanimated=\\\"1\\\" \\r\\n\\tactive=\\\"1\\\" \\r\\n\\tdescription=\\\"Enter some description\\\" \\r\\n\\tclass=\\\"\\\" \\r\\n\\tmin=\\\"1\\\" \\r\\n\\tmax=\\\"20\\\" \\r\\n\\tstep=\\\"1\\\" \\r\\n\\/>\"', 1, '2015-05-08 00:07:08', '2015-08-25 21:15:22', 1, '', 8, '7df21d68-709f-4f61-bf47-81dde8b40561', '', '', '', '', ''),
(196, '', '', '', '', '', '', '', '', 64, '', 'VARCHAR', '', '', '', 'Mobile Phone', 'NOT NULL', '', 23, '\"<field type=\\\"text\\\" \\r\\nname=\\\"mobile_phone\\\" \\r\\nlabel=\\\"Mobile Phone\\\" \\r\\nsize=\\\"10\\\" \\r\\nmaxlength=\\\"50\\\" \\r\\ndefault=\\\"\\\" \\r\\ndescription=\\\"Enter Mobile Phone Number\\\" \\r\\nclass=\\\"text_area\\\" \\r\\nfilter=\\\"STRING\\\" \\r\\nvalidated=\\\"tel\\\" \\r\\nrequired=\\\"true\\\" \\r\\nmessage=\\\"Error! Please add mobile phone number here.\\\" \\r\\nhint=\\\"Mobile Phone Here\\\" \\/>\"', 1, '2015-04-07 22:12:58', '2016-03-28 14:00:02', 2, '', 7, '65933a19-243a-48b2-aae9-34e2da710051', '', '', '', '', ''), (196, '', '', '', '', '', '', '', '', 64, '', 'VARCHAR', '', '', '', 'Mobile Phone', 'NOT NULL', '', 23, '\"<field type=\\\"text\\\" \\r\\nname=\\\"mobile_phone\\\" \\r\\nlabel=\\\"Mobile Phone\\\" \\r\\nsize=\\\"10\\\" \\r\\nmaxlength=\\\"50\\\" \\r\\ndefault=\\\"\\\" \\r\\ndescription=\\\"Enter Mobile Phone Number\\\" \\r\\nclass=\\\"text_area\\\" \\r\\nfilter=\\\"STRING\\\" \\r\\nvalidated=\\\"tel\\\" \\r\\nrequired=\\\"true\\\" \\r\\nmessage=\\\"Error! Please add mobile phone number here.\\\" \\r\\nhint=\\\"Mobile Phone Here\\\" \\/>\"', 1, '2015-04-07 22:12:58', '2016-03-28 14:00:02', 2, '', 7, '65933a19-243a-48b2-aae9-34e2da710051', '', '', '', '', ''),
(197, '', '', '', '', '', '', '', '', 11, '', 'INT', '', '', '', 'Module (show archived also)', 'NOT NULL', '', 6, '\"<field\\n\\ttype=\\\"modules\\\"\\n\\tname=\\\"module\\\"\\n\\tlabel=\\\"Module\\\"\\n\\tclass=\\\"list_class\\\"\\n\\trequired=\\\"true\\\"\\n\\textends=\\\"list\\\"\\n\\tbutton=\\\"true\\\"\\n\\ttable=\\\"#__###component###_module\\\"\\n\\tcomponent=\\\"com_###component###\\\"\\n\\tview=\\\"module\\\"\\n\\tviews=\\\"modules\\\"\\n\\tvalue_field=\\\"name\\\"\\n\\tkey_field=\\\"id\\\"\\n\\tprime_php=\\\"1\\\"\\n\\ttype_php_1=\\\"__.o0=base64=Oo.__JGRiID0gSkZhY3Rvcnk6OmdldERCTygpOw0KCQkkcXVlcnkgPSAkZGItPmdldFF1ZXJ5KHRydWUpOw0KCQkkcXVlcnktPnNlbGVjdCgkZGItPnF1b3RlTmFtZShhcnJheSgnYS4jIyNJRCMjIycsJ2EuIyMjVEVYVCMjIycpLGFycmF5KCcjIyNJRCMjIycsJyMjI0NPREVfVEVYVCMjIycpKSk7DQoJCSRxdWVyeS0+ZnJvbSgkZGItPnF1b3RlTmFtZSgnIyMjVEFCTEUjIyMnLCAnYScpKTsNCgkJJHF1ZXJ5LT53aGVyZSgkZGItPnF1b3RlTmFtZSgnYS5wdWJsaXNoZWQnKSAuICcgPj0gMScpOw0KCQkkcXVlcnktPm9yZGVyKCdhLiMjI1RFWFQjIyMgQVNDJyk7DQoJCSRkYi0+c2V0UXVlcnkoKHN0cmluZykkcXVlcnkpOw0KCQkkaXRlbXMgPSAkZGItPmxvYWRPYmplY3RMaXN0KCk7DQoJCSRvcHRpb25zID0gYXJyYXkoKTsNCgkJaWYgKCRpdGVtcykNCgkJew0KCQkJZm9yZWFjaCgkaXRlbXMgYXMgJGl0ZW0pDQoJCQl7DQoJCQkJJG9wdGlvbnNbXSA9IEpIdG1sOjpfKCdzZWxlY3Qub3B0aW9uJywgJGl0ZW0tPiMjI0lEIyMjLCAkaXRlbS0+IyMjQ09ERV9URVhUIyMjKTsNCgkJCX0NCgkJfQ0KCQlyZXR1cm4gJG9wdGlvbnM7\\\"\\n\\/>\"', 1, '2015-04-24 07:50:46', '2020-03-23 20:21:04', 9, '', 6, 'c9369556-2ed2-41ff-886a-1905e1a039e1', '', '', '', '', ''), (197, '', '', '', '', '', '', '', '', 11, '', 'INT', '', '', '', 'Module (show archived also)', 'NOT NULL', '', 6, '\"<field\\n\\ttype=\\\"modules\\\"\\n\\tname=\\\"module\\\"\\n\\tlabel=\\\"Module\\\"\\n\\tclass=\\\"list_class\\\"\\n\\trequired=\\\"true\\\"\\n\\textends=\\\"list\\\"\\n\\tbutton=\\\"true\\\"\\n\\ttable=\\\"#__###component###_module\\\"\\n\\tcomponent=\\\"com_###component###\\\"\\n\\tview=\\\"module\\\"\\n\\tviews=\\\"modules\\\"\\n\\tvalue_field=\\\"name\\\"\\n\\tkey_field=\\\"id\\\"\\n\\tprime_php=\\\"1\\\"\\n\\ttype_php_1=\\\"__.o0=base64=Oo.__JGRiID0gSkZhY3Rvcnk6OmdldERCTygpOw0KCQkkcXVlcnkgPSAkZGItPmdldFF1ZXJ5KHRydWUpOw0KCQkkcXVlcnktPnNlbGVjdCgkZGItPnF1b3RlTmFtZShhcnJheSgnYS4jIyNJRCMjIycsJ2EuIyMjVEVYVCMjIycpLGFycmF5KCcjIyNJRCMjIycsJyMjI0NPREVfVEVYVCMjIycpKSk7DQoJCSRxdWVyeS0+ZnJvbSgkZGItPnF1b3RlTmFtZSgnIyMjVEFCTEUjIyMnLCAnYScpKTsNCgkJJHF1ZXJ5LT53aGVyZSgkZGItPnF1b3RlTmFtZSgnYS5wdWJsaXNoZWQnKSAuICcgPj0gMScpOw0KCQkkcXVlcnktPm9yZGVyKCdhLiMjI1RFWFQjIyMgQVNDJyk7DQoJCSRkYi0+c2V0UXVlcnkoKHN0cmluZykkcXVlcnkpOw0KCQkkaXRlbXMgPSAkZGItPmxvYWRPYmplY3RMaXN0KCk7DQoJCSRvcHRpb25zID0gYXJyYXkoKTsNCgkJaWYgKCRpdGVtcykNCgkJew0KCQkJZm9yZWFjaCgkaXRlbXMgYXMgJGl0ZW0pDQoJCQl7DQoJCQkJJG9wdGlvbnNbXSA9IEpIdG1sOjpfKCdzZWxlY3Qub3B0aW9uJywgJGl0ZW0tPiMjI0lEIyMjLCAkaXRlbS0+IyMjQ09ERV9URVhUIyMjKTsNCgkJCX0NCgkJfQ0KCQlyZXR1cm4gJG9wdGlvbnM7\\\"\\n\\/>\"', 1, '2015-04-24 07:50:46', '2020-03-23 20:21:04', 9, '', 6, 'c9369556-2ed2-41ff-886a-1905e1a039e1', '', '', '', '', ''),
(198, '', '', '', '', '', '', '', '', '', '', 'MEDIUMTEXT', '', '', '', 'MySQL - (Install)', 'NOT NULL', 2, 25, '\"<field\\n\\ttype=\\\"textarea\\\"\\n\\tname=\\\"sql\\\"\\n\\tlabel=\\\"MySQL - (Install)\\\"\\n\\trows=\\\"30\\\"\\n\\tcols=\\\"15\\\"\\n\\tdescription=\\\"Add your MySQL here!\\\"\\n\\tclass=\\\"text_area span12\\\"\\n\\tfilter=\\\"raw\\\"\\n\\thint=\\\"\\/\\/ Add MySQL Table Dump Here\\\"\\n\\trequired=\\\"true\\\"\\n\\/>\"', 1, '2015-05-11 12:36:14', '2018-05-11 03:32:01', 2, '', 5, '5eb879c0-f6e3-45b6-b220-cb5131422a83', '', '', '', '', ''), (198, '', '', '', '', '', '', '', '', '', '', 'MEDIUMTEXT', '', '', '', 'MySQL - (Install)', 'NOT NULL', 2, 25, '\"<field\\n\\ttype=\\\"textarea\\\"\\n\\tname=\\\"sql\\\"\\n\\tlabel=\\\"MySQL - (Install)\\\"\\n\\trows=\\\"30\\\"\\n\\tcols=\\\"15\\\"\\n\\tdescription=\\\"Add your MySQL here!\\\"\\n\\tclass=\\\"text_area span12\\\"\\n\\tfilter=\\\"raw\\\"\\n\\thint=\\\"\\/\\/ Add MySQL Table Dump Here\\\"\\n\\tshowon=\\\"add_sql:1\\\"\\n\\/>\"', 1, '2015-05-11 12:36:14', '2024-04-19 08:14:22', 3, '', 5, '5eb879c0-f6e3-45b6-b220-cb5131422a83', '', '', '', '', ''),
(199, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', 2, '', '', 'Name (Key - Required)', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"name\\\"\\n\\tlabel=\\\"Name\\\"\\n\\tsize=\\\"40\\\"\\n\\tmaxlength=\\\"150\\\"\\n\\tdescription=\\\"Enter Name Here\\\"\\n\\tclass=\\\"text_area\\\"\\n\\treadonly=\\\"false\\\"\\n\\tdisabled=\\\"false\\\"\\n\\trequired=\\\"true\\\"\\n\\tfilter=\\\"STRING\\\"\\n\\tmessage=\\\"Error! Please add name here.\\\"\\n\\thint=\\\"Name Here\\\"\\n\\/>\"', 1, '2015-03-19 17:30:59', '2023-06-19 22:38:40', 10, '', 4, '5d3d34dd-4876-4c6a-86ab-b4e162f22c08', '', '', '', '', ''), (199, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', 2, '', '', 'Name (Key - Required)', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"name\\\"\\n\\tlabel=\\\"Name\\\"\\n\\tsize=\\\"40\\\"\\n\\tmaxlength=\\\"150\\\"\\n\\tdescription=\\\"Enter Name Here\\\"\\n\\tclass=\\\"text_area\\\"\\n\\treadonly=\\\"false\\\"\\n\\tdisabled=\\\"false\\\"\\n\\trequired=\\\"true\\\"\\n\\tfilter=\\\"STRING\\\"\\n\\tmessage=\\\"Error! Please add name here.\\\"\\n\\thint=\\\"Name Here\\\"\\n\\/>\"', 1, '2015-03-19 17:30:59', '2023-06-19 22:38:40', 10, '', 4, '5d3d34dd-4876-4c6a-86ab-b4e162f22c08', '', '', '', '', ''),
(200, '', '', '', '', '', '', '', '', 64, '', 'CHAR', 2, '', '', 'Name (list of records)', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"name_list\\\"\\n\\tlabel=\\\"Name (list of records)<br \\/>\\r\\n<small><a href=\'https:\\/\\/docs.joomla.org\\/J3.x:File_Structure_and_Naming_Conventions\' target=\'_blank\'>Naming Conventions<\\/a><\\/small>\\\"\\n\\tsize=\\\"40\\\"\\n\\tmaxlength=\\\"150\\\"\\n\\tdescription=\\\"The name of the list of records in this view\\\"\\n\\tclass=\\\"inputbox\\\"\\n\\treadonly=\\\"false\\\"\\n\\tdisabled=\\\"false\\\"\\n\\trequired=\\\"true\\\"\\n\\tfilter=\\\"STRING\\\"\\n\\tmessage=\\\"Error! Please add list of records name here.\\\"\\n\\thint=\\\"List of Records Name Here\\\"\\n\\/>\"', 1, '2015-03-19 17:30:59', '2021-08-30 08:31:09', 3, '', 3, 'c73c3033-f4d9-475a-977b-9e447b88272f', '', '', '', '', ''), (200, '', '', '', '', '', '', '', '', 64, '', 'CHAR', 2, '', '', 'Name (list of records)', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"name_list\\\"\\n\\tlabel=\\\"Name (list of records)<br \\/>\\r\\n<small><a href=\'https:\\/\\/docs.joomla.org\\/J3.x:File_Structure_and_Naming_Conventions\' target=\'_blank\'>Naming Conventions<\\/a><\\/small>\\\"\\n\\tsize=\\\"40\\\"\\n\\tmaxlength=\\\"150\\\"\\n\\tdescription=\\\"The name of the list of records in this view\\\"\\n\\tclass=\\\"inputbox\\\"\\n\\treadonly=\\\"false\\\"\\n\\tdisabled=\\\"false\\\"\\n\\trequired=\\\"true\\\"\\n\\tfilter=\\\"STRING\\\"\\n\\tmessage=\\\"Error! Please add list of records name here.\\\"\\n\\thint=\\\"List of Records Name Here\\\"\\n\\/>\"', 1, '2015-03-19 17:30:59', '2021-08-30 08:31:09', 3, '', 3, 'c73c3033-f4d9-475a-977b-9e447b88272f', '', '', '', '', ''),
(201, '', '', '', '', '', '', '', '', 64, '', 'CHAR', 2, '', '', 'Name (single record)', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"name_single\\\"\\n\\tlabel=\\\"Name (single record)<br \\/>\\r\\n<small><a href=\'https:\\/\\/docs.joomla.org\\/J3.x:File_Structure_and_Naming_Conventions\' target=\'_blank\'>Naming Conventions<\\/a><\\/small>\\\"\\n\\tsize=\\\"40\\\"\\n\\tmaxlength=\\\"150\\\"\\n\\tdescription=\\\"Type null if single record view is not to be set\\\"\\n\\tclass=\\\"inputbox\\\"\\n\\treadonly=\\\"false\\\"\\n\\tdisabled=\\\"false\\\"\\n\\trequired=\\\"true\\\"\\n\\tfilter=\\\"STRING\\\"\\n\\tmessage=\\\"Error! Please add single record name here.\\\"\\n\\thint=\\\"Single Record Name Here\\\"\\n\\/>\"', 1, '2015-03-19 17:30:59', '2021-08-30 08:29:29', 3, '', 2, '7568fcc2-bd06-438c-9666-fe3bde32306f', '', '', '', '', ''), (201, '', '', '', '', '', '', '', '', 64, '', 'CHAR', 2, '', '', 'Name (single record)', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"name_single\\\"\\n\\tlabel=\\\"Name (single record)<br \\/>\\r\\n<small><a href=\'https:\\/\\/docs.joomla.org\\/J3.x:File_Structure_and_Naming_Conventions\' target=\'_blank\'>Naming Conventions<\\/a><\\/small>\\\"\\n\\tsize=\\\"40\\\"\\n\\tmaxlength=\\\"150\\\"\\n\\tdescription=\\\"Type null if single record view is not to be set\\\"\\n\\tclass=\\\"inputbox\\\"\\n\\treadonly=\\\"false\\\"\\n\\tdisabled=\\\"false\\\"\\n\\trequired=\\\"true\\\"\\n\\tfilter=\\\"STRING\\\"\\n\\tmessage=\\\"Error! Please add single record name here.\\\"\\n\\thint=\\\"Single Record Name Here\\\"\\n\\/>\"', 1, '2015-03-19 17:30:59', '2021-08-30 08:29:29', 3, '', 2, '7568fcc2-bd06-438c-9666-fe3bde32306f', '', '', '', '', ''),
@ -2478,7 +2481,7 @@ INSERT INTO `#__componentbuilder_field` (`id`, `add_css_view`, `add_css_views`,
(229, '', '', '', '', '', '', 'Other', 3, 1, '', 'TINYINT', 2, '', '', 'Release Period Type (email)', 'NOT NULL', '', 11, '\"<field \\r\\n\\ttype=\\\"list\\\" \\r\\n\\tname=\\\"release_period_type\\\" \\r\\n\\tlabel=\\\"Release Period Type\\\" \\r\\n\\tdescription=\\\"Select the period type to use in release of this email.\\\" \\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\tmultiple=\\\"false\\\" \\r\\n\\toption=\\\"1|Minute,2|Hour,3|Day,4|Week (7 days),5|Month (30 days)\\\" \\r\\n\\tdefault=\\\"3\\\" \\r\\n\\/>\"', 1, '2015-05-05 23:57:28', '2016-02-05 22:58:58', 6, '', 120, 'b5795715-eb89-46f6-8a5f-faddb08b5ca1', '', '', '', '', ''), (229, '', '', '', '', '', '', 'Other', 3, 1, '', 'TINYINT', 2, '', '', 'Release Period Type (email)', 'NOT NULL', '', 11, '\"<field \\r\\n\\ttype=\\\"list\\\" \\r\\n\\tname=\\\"release_period_type\\\" \\r\\n\\tlabel=\\\"Release Period Type\\\" \\r\\n\\tdescription=\\\"Select the period type to use in release of this email.\\\" \\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\tmultiple=\\\"false\\\" \\r\\n\\toption=\\\"1|Minute,2|Hour,3|Day,4|Week (7 days),5|Month (30 days)\\\" \\r\\n\\tdefault=\\\"3\\\" \\r\\n\\/>\"', 1, '2015-05-05 23:57:28', '2016-02-05 22:58:58', 6, '', 120, 'b5795715-eb89-46f6-8a5f-faddb08b5ca1', '', '', '', '', ''),
(230, '', '', '', '', '', '', '', '', '', '', 'MEDIUMTEXT', '', '', '', 'PHP (getItem - JModelForm)', 'NOT NULL', 2, 8, '\"<field\\n\\ttype=\\\"editor\\\"\\n\\tname=\\\"php_getitem\\\"\\n\\tlabel=\\\"PHP getItem Method<br \\/><small>Target (object) $item values.<\\/small>\\\"\\n\\tdescription=\\\"Add PHP Here that should run in the getItem Method. Do not add the php tags.\\\"\\n\\twidth=\\\"100%\\\"\\n\\theight=\\\"450px\\\"\\n\\tcols=\\\"15\\\"\\n\\trows=\\\"30\\\"\\n\\tbuttons=\\\"no\\\"\\n\\tsyntax=\\\"php\\\"\\n\\teditor=\\\"codemirror|none\\\"\\n\\tfilter=\\\"raw\\\"\\n\\tvalidate=\\\"code\\\"\\n\\/>\"', 1, '2015-05-11 12:36:14', '2019-07-08 14:12:29', 7, '', 119, 'a921c373-45bb-4919-a840-5b13511102cb', '', '', '', '', ''), (230, '', '', '', '', '', '', '', '', '', '', 'MEDIUMTEXT', '', '', '', 'PHP (getItem - JModelForm)', 'NOT NULL', 2, 8, '\"<field\\n\\ttype=\\\"editor\\\"\\n\\tname=\\\"php_getitem\\\"\\n\\tlabel=\\\"PHP getItem Method<br \\/><small>Target (object) $item values.<\\/small>\\\"\\n\\tdescription=\\\"Add PHP Here that should run in the getItem Method. Do not add the php tags.\\\"\\n\\twidth=\\\"100%\\\"\\n\\theight=\\\"450px\\\"\\n\\tcols=\\\"15\\\"\\n\\trows=\\\"30\\\"\\n\\tbuttons=\\\"no\\\"\\n\\tsyntax=\\\"php\\\"\\n\\teditor=\\\"codemirror|none\\\"\\n\\tfilter=\\\"raw\\\"\\n\\tvalidate=\\\"code\\\"\\n\\/>\"', 1, '2015-05-11 12:36:14', '2019-07-08 14:12:29', 7, '', 119, 'a921c373-45bb-4919-a840-5b13511102cb', '', '', '', '', ''),
(231, '', '', '', '', '', '', '', '', '', '', 'MEDIUMTEXT', '', '', '', 'PHP (getItems - JModelAdmin)', 'NOT NULL', 2, 8, '\"<field\\n\\ttype=\\\"editor\\\"\\n\\tname=\\\"php_getitems\\\"\\n\\tlabel=\\\"PHP getItems Method<br \\/><small>Target (array) $items values.<\\/small>\\\"\\n\\tdescription=\\\"Add PHP Here that should run in the getItems Method. Do not add the php tags.\\\"\\n\\twidth=\\\"100%\\\"\\n\\theight=\\\"450px\\\"\\n\\tcols=\\\"15\\\"\\n\\trows=\\\"30\\\"\\n\\tbuttons=\\\"no\\\"\\n\\tsyntax=\\\"php\\\"\\n\\teditor=\\\"codemirror|none\\\"\\n\\tfilter=\\\"raw\\\"\\n\\tvalidate=\\\"code\\\"\\n\\/>\"', 1, '2015-05-11 12:36:14', '2019-07-08 14:13:10', 6, '', 118, '0ec2dbcd-8acc-438f-ad28-906fc7b6474e', '', '', '', '', ''), (231, '', '', '', '', '', '', '', '', '', '', 'MEDIUMTEXT', '', '', '', 'PHP (getItems - JModelAdmin)', 'NOT NULL', 2, 8, '\"<field\\n\\ttype=\\\"editor\\\"\\n\\tname=\\\"php_getitems\\\"\\n\\tlabel=\\\"PHP getItems Method<br \\/><small>Target (array) $items values.<\\/small>\\\"\\n\\tdescription=\\\"Add PHP Here that should run in the getItems Method. Do not add the php tags.\\\"\\n\\twidth=\\\"100%\\\"\\n\\theight=\\\"450px\\\"\\n\\tcols=\\\"15\\\"\\n\\trows=\\\"30\\\"\\n\\tbuttons=\\\"no\\\"\\n\\tsyntax=\\\"php\\\"\\n\\teditor=\\\"codemirror|none\\\"\\n\\tfilter=\\\"raw\\\"\\n\\tvalidate=\\\"code\\\"\\n\\/>\"', 1, '2015-05-11 12:36:14', '2019-07-08 14:13:10', 6, '', 118, '0ec2dbcd-8acc-438f-ad28-906fc7b6474e', '', '', '', '', ''),
(232, '', '', '', '', '', '', '', '', '', '', 'MEDIUMTEXT', '', '', '', 'PHP (helper_admin)', 'NOT NULL', 2, 8, '\"<field\\n\\ttype=\\\"editor\\\"\\n\\tname=\\\"php_helper_admin\\\"\\n\\tlabel=\\\"PHP (admin helper)\\\"\\n\\tdescription=\\\"Add the PHP abstract Methods to add to the component helper class. Only Methods! as it will directly be add as methods to the helper class! Do not add the php tags.\\\"\\n\\twidth=\\\"100%\\\"\\n\\theight=\\\"550px\\\"\\n\\tcols=\\\"15\\\"\\n\\trows=\\\"80\\\"\\n\\tbuttons=\\\"no\\\"\\n\\tsyntax=\\\"php\\\"\\n\\teditor=\\\"codemirror|none\\\"\\n\\tfilter=\\\"raw\\\"\\n\\tvalidate=\\\"code\\\"\\n\\/>\"', 1, '2015-05-11 12:36:14', '2019-07-08 14:13:19', 5, '', 117, '16a76125-d200-4bbf-aa00-91da3513a8f8', '', '', '', '', ''), (232, '', '', '', '', '', '', '', '', '', '', 'MEDIUMTEXT', '', '', '', 'PHP (helper_admin)', 'NOT NULL', 2, 8, '\"<field\\n\\ttype=\\\"editor\\\"\\n\\tname=\\\"php_helper_admin\\\"\\n\\tlabel=\\\"PHP (admin helper)\\\"\\n\\tdescription=\\\"Add the PHP abstract Methods to add to the component helper class. Only Methods! as it will directly be add as methods to the helper class! Do not add the php tags.\\\"\\n\\twidth=\\\"100%\\\"\\n\\theight=\\\"550px\\\"\\n\\tcols=\\\"15\\\"\\n\\trows=\\\"80\\\"\\n\\tbuttons=\\\"no\\\"\\n\\tsyntax=\\\"php\\\"\\n\\teditor=\\\"codemirror|none\\\"\\n\\tfilter=\\\"raw\\\"\\n\\tvalidate=\\\"code\\\"\\n\\tshowon=\\\"add_php_helper_admin:1\\\"\\n\\/>\"', 1, '2015-05-11 12:36:14', '2024-04-19 08:09:08', 6, '', 117, '16a76125-d200-4bbf-aa00-91da3513a8f8', '', '', '', '', ''),
(233, '', '', '', '', '', '', '', '', '', '', 'MEDIUMTEXT', '', '', '', 'PHP (postSaveHook - edit)', 'NOT NULL', 2, 8, '\"<field\\n\\ttype=\\\"editor\\\"\\n\\tname=\\\"php_postsavehook\\\"\\n\\tlabel=\\\"PHP postSaveHook Method<br \\/><small>Target (object) $model for the data model object and (array) $validData for the validated data.<\\/small>\\\"\\n\\tdescription=\\\"Add PHP Here that should run in the postSaveHook Method. Do not add the php tags.\\\"\\n\\twidth=\\\"100%\\\"\\n\\theight=\\\"450px\\\"\\n\\tcols=\\\"15\\\"\\n\\trows=\\\"30\\\"\\n\\tbuttons=\\\"no\\\"\\n\\tsyntax=\\\"php\\\"\\n\\teditor=\\\"codemirror|none\\\"\\n\\tfilter=\\\"raw\\\"\\n\\tvalidate=\\\"code\\\"\\n\\/>\"', 1, '2015-05-11 12:36:14', '2019-07-08 14:13:24', 4, '', 116, 'b97daa06-7589-43e1-aaf9-c9506756f7b4', '', '', '', '', ''), (233, '', '', '', '', '', '', '', '', '', '', 'MEDIUMTEXT', '', '', '', 'PHP (postSaveHook - edit)', 'NOT NULL', 2, 8, '\"<field\\n\\ttype=\\\"editor\\\"\\n\\tname=\\\"php_postsavehook\\\"\\n\\tlabel=\\\"PHP postSaveHook Method<br \\/><small>Target (object) $model for the data model object and (array) $validData for the validated data.<\\/small>\\\"\\n\\tdescription=\\\"Add PHP Here that should run in the postSaveHook Method. Do not add the php tags.\\\"\\n\\twidth=\\\"100%\\\"\\n\\theight=\\\"450px\\\"\\n\\tcols=\\\"15\\\"\\n\\trows=\\\"30\\\"\\n\\tbuttons=\\\"no\\\"\\n\\tsyntax=\\\"php\\\"\\n\\teditor=\\\"codemirror|none\\\"\\n\\tfilter=\\\"raw\\\"\\n\\tvalidate=\\\"code\\\"\\n\\/>\"', 1, '2015-05-11 12:36:14', '2019-07-08 14:13:24', 4, '', 116, 'b97daa06-7589-43e1-aaf9-c9506756f7b4', '', '', '', '', ''),
(234, '', '', '', '', '', '', '', '', '', '', 'MEDIUMTEXT', '', '', '', 'PHP (save - edit)', 'NOT NULL', 2, 8, '\"<field\\n\\ttype=\\\"editor\\\"\\n\\tname=\\\"php_save\\\"\\n\\tlabel=\\\"PHP save Method<br \\/><small>Target (array) $data values<\\/small>\\\"\\n\\tdescription=\\\"Add PHP Here that should run in the save Method. Do not add the php tags.\\\"\\n\\twidth=\\\"100%\\\"\\n\\theight=\\\"450px\\\"\\n\\tcols=\\\"15\\\"\\n\\trows=\\\"30\\\"\\n\\tbuttons=\\\"no\\\"\\n\\tsyntax=\\\"php\\\"\\n\\teditor=\\\"codemirror|none\\\"\\n\\tfilter=\\\"raw\\\"\\n\\tvalidate=\\\"code\\\"\\n\\/>\"', 1, '2015-05-11 12:36:14', '2019-07-08 14:18:48', 4, '', 115, '8ac3beb5-c100-41d6-8d2e-dd3e57f3701a', '', '', '', '', ''), (234, '', '', '', '', '', '', '', '', '', '', 'MEDIUMTEXT', '', '', '', 'PHP (save - edit)', 'NOT NULL', 2, 8, '\"<field\\n\\ttype=\\\"editor\\\"\\n\\tname=\\\"php_save\\\"\\n\\tlabel=\\\"PHP save Method<br \\/><small>Target (array) $data values<\\/small>\\\"\\n\\tdescription=\\\"Add PHP Here that should run in the save Method. Do not add the php tags.\\\"\\n\\twidth=\\\"100%\\\"\\n\\theight=\\\"450px\\\"\\n\\tcols=\\\"15\\\"\\n\\trows=\\\"30\\\"\\n\\tbuttons=\\\"no\\\"\\n\\tsyntax=\\\"php\\\"\\n\\teditor=\\\"codemirror|none\\\"\\n\\tfilter=\\\"raw\\\"\\n\\tvalidate=\\\"code\\\"\\n\\/>\"', 1, '2015-05-11 12:36:14', '2019-07-08 14:18:48', 4, '', 115, '8ac3beb5-c100-41d6-8d2e-dd3e57f3701a', '', '', '', '', ''),
(235, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'Point (answer point)', 'NOT NULL', '', 10, '\"<field \\r\\n\\ttype=\\\"integer\\\" \\r\\n\\tname=\\\"point\\\" \\r\\n\\tlabel=\\\"Point Received\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tdescription=\\\"The point for this answer received.\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\tfirst=\\\"0\\\" \\r\\n\\tlast=\\\"100\\\" \\r\\n\\tstep=\\\"1\\\" \\r\\n\\tfilter=\\\"INT\\\" \\r\\n\\/>\"', 1, '2015-05-03 00:09:17', '2016-12-08 18:12:42', 5, '', 114, '5145b754-1136-497b-ab9d-4767a1b198e0', '', '', '', '', ''), (235, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'Point (answer point)', 'NOT NULL', '', 10, '\"<field \\r\\n\\ttype=\\\"integer\\\" \\r\\n\\tname=\\\"point\\\" \\r\\n\\tlabel=\\\"Point Received\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tdescription=\\\"The point for this answer received.\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\tfirst=\\\"0\\\" \\r\\n\\tlast=\\\"100\\\" \\r\\n\\tstep=\\\"1\\\" \\r\\n\\tfilter=\\\"INT\\\" \\r\\n\\/>\"', 1, '2015-05-03 00:09:17', '2016-12-08 18:12:42', 5, '', 114, '5145b754-1136-497b-ab9d-4767a1b198e0', '', '', '', '', ''),
@ -2539,7 +2542,7 @@ INSERT INTO `#__componentbuilder_field` (`id`, `add_css_view`, `add_css_views`,
(290, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Javascript (view-footer)', 'NOT NULL', 2, 8, '\"<field\\n\\ttype=\\\"editor\\\"\\n\\tname=\\\"javascript_view_footer\\\"\\n\\tlabel=\\\"Javascript (edit view footer)\\\"\\n\\tdescription=\\\"Add JavaScript for the edit view that is loaded in the footer inside script tags. Do not add the script tags.\\\"\\n\\twidth=\\\"100%\\\"\\n\\theight=\\\"450px\\\"\\n\\tcols=\\\"15\\\"\\n\\trows=\\\"30\\\"\\n\\tbuttons=\\\"no\\\"\\n\\tsyntax=\\\"javascript\\\"\\n\\teditor=\\\"codemirror|none\\\"\\n\\tfilter=\\\"raw\\\"\\n\\tvalidate=\\\"code\\\"\\n\\/>\"', 1, '2015-05-12 19:37:51', '2019-07-08 14:13:34', 3, '', 296, 'a99c1f40-4b41-4167-ad29-85133375aa7a', '', '', '', '', ''), (290, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Javascript (view-footer)', 'NOT NULL', 2, 8, '\"<field\\n\\ttype=\\\"editor\\\"\\n\\tname=\\\"javascript_view_footer\\\"\\n\\tlabel=\\\"Javascript (edit view footer)\\\"\\n\\tdescription=\\\"Add JavaScript for the edit view that is loaded in the footer inside script tags. Do not add the script tags.\\\"\\n\\twidth=\\\"100%\\\"\\n\\theight=\\\"450px\\\"\\n\\tcols=\\\"15\\\"\\n\\trows=\\\"30\\\"\\n\\tbuttons=\\\"no\\\"\\n\\tsyntax=\\\"javascript\\\"\\n\\teditor=\\\"codemirror|none\\\"\\n\\tfilter=\\\"raw\\\"\\n\\tvalidate=\\\"code\\\"\\n\\/>\"', 1, '2015-05-12 19:37:51', '2019-07-08 14:13:34', 3, '', 296, 'a99c1f40-4b41-4167-ad29-85133375aa7a', '', '', '', '', ''),
(291, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Javascript (views-footer)', 'NOT NULL', 2, 8, '\"<field\\n\\ttype=\\\"editor\\\"\\n\\tname=\\\"javascript_views_footer\\\"\\n\\tlabel=\\\"Javascript (list view footer)\\\"\\n\\tdescription=\\\"Add JavaScript for the list view that is loaded in the footer inside script tags. Do not add the script tags.\\\"\\n\\twidth=\\\"100%\\\"\\n\\theight=\\\"450px\\\"\\n\\tcols=\\\"15\\\"\\n\\trows=\\\"30\\\"\\n\\tbuttons=\\\"no\\\"\\n\\tsyntax=\\\"javascript\\\"\\n\\teditor=\\\"codemirror|none\\\"\\n\\tfilter=\\\"raw\\\"\\n\\tvalidate=\\\"code\\\"\\n\\/>\"', 1, '2015-05-12 19:38:05', '2019-07-08 14:13:40', 3, '', 297, '34bf9926-34a4-49a3-a29e-b602b1e5f9b2', '', '', '', '', ''), (291, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Javascript (views-footer)', 'NOT NULL', 2, 8, '\"<field\\n\\ttype=\\\"editor\\\"\\n\\tname=\\\"javascript_views_footer\\\"\\n\\tlabel=\\\"Javascript (list view footer)\\\"\\n\\tdescription=\\\"Add JavaScript for the list view that is loaded in the footer inside script tags. Do not add the script tags.\\\"\\n\\twidth=\\\"100%\\\"\\n\\theight=\\\"450px\\\"\\n\\tcols=\\\"15\\\"\\n\\trows=\\\"30\\\"\\n\\tbuttons=\\\"no\\\"\\n\\tsyntax=\\\"javascript\\\"\\n\\teditor=\\\"codemirror|none\\\"\\n\\tfilter=\\\"raw\\\"\\n\\tvalidate=\\\"code\\\"\\n\\/>\"', 1, '2015-05-12 19:38:05', '2019-07-08 14:13:40', 3, '', 297, '34bf9926-34a4-49a3-a29e-b602b1e5f9b2', '', '', '', '', ''),
(292, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Add CSS', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"add_css\\\" \\r\\n\\tlabel=\\\"Add CSS\\\" \\r\\n\\tdescription=\\\"\\\" \\r\\n\\tclass=\\\"btn-group btn-group-yesno\\\" \\r\\n\\toption=\\\"1|Yes,0|No\\\" \\r\\n\\tdefault=\\\"0\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\/>\"', 1, '2015-05-12 19:43:43', '2018-01-15 11:50:37', 2, '', 298, '14c857e3-e684-49a3-8b34-1cf7448ed0c4', '', '', '', '', ''), (292, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Add CSS', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"add_css\\\" \\r\\n\\tlabel=\\\"Add CSS\\\" \\r\\n\\tdescription=\\\"\\\" \\r\\n\\tclass=\\\"btn-group btn-group-yesno\\\" \\r\\n\\toption=\\\"1|Yes,0|No\\\" \\r\\n\\tdefault=\\\"0\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\/>\"', 1, '2015-05-12 19:43:43', '2018-01-15 11:50:37', 2, '', 298, '14c857e3-e684-49a3-8b34-1cf7448ed0c4', '', '', '', '', ''),
(293, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'CSS (admin)', 'NOT NULL', 2, 8, '\"<field\\n\\ttype=\\\"editor\\\"\\n\\tname=\\\"css_admin\\\"\\n\\tlabel=\\\"CSS (admin)\\\"\\n\\tdescription=\\\"Add CSS for the entire back-end of your component. Do not add the style tags.\\\"\\n\\twidth=\\\"100%\\\"\\n\\theight=\\\"450px\\\"\\n\\tcols=\\\"15\\\"\\n\\trows=\\\"30\\\"\\n\\tbuttons=\\\"no\\\"\\n\\tsyntax=\\\"css\\\"\\n\\teditor=\\\"codemirror|none\\\"\\n\\tfilter=\\\"raw\\\"\\n\\tvalidate=\\\"code\\\"\\n\\/>\"', 1, '2015-05-12 19:44:54', '2019-07-08 14:13:48', 5, '', 299, '33c588ca-83b2-419d-b87f-b9f4e5e4ea54', '', '', '', '', ''), (293, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'CSS (admin)', 'NOT NULL', 2, 8, '\"<field\\n\\ttype=\\\"editor\\\"\\n\\tname=\\\"css_admin\\\"\\n\\tlabel=\\\"CSS (admin)\\\"\\n\\tdescription=\\\"Add CSS for the entire back-end of your component. Do not add the style tags.\\\"\\n\\twidth=\\\"100%\\\"\\n\\theight=\\\"450px\\\"\\n\\tcols=\\\"15\\\"\\n\\trows=\\\"30\\\"\\n\\tbuttons=\\\"no\\\"\\n\\tsyntax=\\\"css\\\"\\n\\teditor=\\\"codemirror|none\\\"\\n\\tfilter=\\\"raw\\\"\\n\\tvalidate=\\\"code\\\"\\n\\tshowon=\\\"add_css_admin:1\\\"\\n\\/>\"', 1, '2015-05-12 19:44:54', '2024-04-19 08:11:54', 6, '', 299, '33c588ca-83b2-419d-b87f-b9f4e5e4ea54', '', '', '', '', ''),
(294, '', '', '', '', '', '', '', '', 64, '', 'CHAR', '', '', '', 'Licensing Template', 'NOT NULL', '', 30, '\"<field\\n\\ttype=\\\"filelist\\\"\\n\\tname=\\\"bom\\\"\\n\\tlabel=\\\"Licensing Template\\\"\\n\\tdirectory=\\\"administrator\\/components\\/com_###component###\\/compiler\\\"\\n\\tdefault=\\\"default.txt\\\"\\n\\tdescription=\\\"Select the file that should be used for licensing all files (files found in: administrator\\/components\\/com_###component###\\/compiler)\\\"\\n\\tfilter=\\\"\\\\.txt\\\"\\n\\thide_none=\\\"true\\\"\\n\\thide_default=\\\"true\\\"\\n\\/>\"', 1, '2015-05-13 14:50:23', '2018-08-18 06:48:43', 3, '', 302, 'b659c01d-accd-4049-bd4c-083000740d5a', '', '', '', '', ''), (294, '', '', '', '', '', '', '', '', 64, '', 'CHAR', '', '', '', 'Licensing Template', 'NOT NULL', '', 30, '\"<field\\n\\ttype=\\\"filelist\\\"\\n\\tname=\\\"bom\\\"\\n\\tlabel=\\\"Licensing Template\\\"\\n\\tdirectory=\\\"administrator\\/components\\/com_###component###\\/compiler\\\"\\n\\tdefault=\\\"default.txt\\\"\\n\\tdescription=\\\"Select the file that should be used for licensing all files (files found in: administrator\\/components\\/com_###component###\\/compiler)\\\"\\n\\tfilter=\\\"\\\\.txt\\\"\\n\\thide_none=\\\"true\\\"\\n\\thide_default=\\\"true\\\"\\n\\/>\"', 1, '2015-05-13 14:50:23', '2018-08-18 06:48:43', 3, '', 302, 'b659c01d-accd-4049-bd4c-083000740d5a', '', '', '', '', ''),
(295, '', '', '', '', '', '', '', '', 64, '', 'CHAR', '', '', '', 'File', 'NOT NULL', '', 6, '\"<field\\n\\ttype=\\\"customfilelist\\\"\\n\\tname=\\\"file\\\"\\n\\tlabel=\\\"File\\\"\\n\\tdescription=\\\"Add the files to custom folder\\\"\\n\\tclass=\\\"list_class\\\"\\n\\tmultiple=\\\"false\\\"\\n\\tdefault=\\\"0\\\"\\n\\trequired=\\\"true\\\"\\n\\treadonly=\\\"\\\"\\n\\tdisabled=\\\"\\\"\\n\\textends=\\\"list\\\"\\n\\tbutton=\\\"false\\\"\\n\\ttype_php_1=\\\"__.o0=base64=Oo.__Ly8gZ2V0IGN1c3RvbSBmb2xkZXIgZmlsZXMNCgkJJGxvY2FsZm9sZGVyID0gW1tbQ29tcG9uZW50SGVscGVyXV1dOjpnZXRQYXJhbXMoJ2NvbV8jIyNjb21wb25lbnQjIyMnKS0+Z2V0KCdjdXN0b21fZm9sZGVyX3BhdGgnLCBKUEFUSF9DT01QT05FTlRfQURNSU5JU1RSQVRPUiAuICcvY3VzdG9tJyk7DQoJCS8vIHNldCB0aGUgZGVmYXVsdA0KCQkkb3B0aW9uc1tdID0gSHRtbDo6Xygnc2VsZWN0Lm9wdGlvbicsICcnLCBUZXh0OjpzcHJpbnRmKCdQbGVhc2UgYWRkIGZpbGVzIHRvICglcyknLCRsb2NhbGZvbGRlcikpOw0KCQkvLyBzZXR1cCB0aGUgZm9sZGVyIGlmIGl0IGRvZXMgbm90IGV4aXN0DQoJCWlmICghXEpGb2xkZXI6OmV4aXN0cygkbG9jYWxmb2xkZXIpKQ0KCQl7DQoJCQlcSkZvbGRlcjo6Y3JlYXRlKCRsb2NhbGZvbGRlcik7DQoJCX0NCgkJLy8gbm93IGNoZWNrIGlmIHRoZXJlIGFyZSBmaWxlcyBpbiB0aGUgZm9sZGVyDQoJCWlmICgkZmlsZXMgPSBcSkZvbGRlcjo6ZmlsZXMoJGxvY2FsZm9sZGVyKSkNCgkJew0KCQkJJG9wdGlvbnMgPSBhcnJheSgpOw0KCQkJZm9yZWFjaCAoJGZpbGVzIGFzICRmaWxlKQ0KCQkJew0KCQkJCSRvcHRpb25zW10gPSBIdG1sOjpfKCdzZWxlY3Qub3B0aW9uJywgJGZpbGUsICRmaWxlKTsNCgkJCX0NCgkJfQ0KCQlyZXR1cm4gJG9wdGlvbnM7\\\"\\n\\/>\"', 1, '2015-05-13 15:15:40', '2024-03-20 11:28:57', 4, '', 300, '071ef0b2-94f6-4d75-9fd8-c7fbdce500b5', '', '', '', '', ''), (295, '', '', '', '', '', '', '', '', 64, '', 'CHAR', '', '', '', 'File', 'NOT NULL', '', 6, '\"<field\\n\\ttype=\\\"customfilelist\\\"\\n\\tname=\\\"file\\\"\\n\\tlabel=\\\"File\\\"\\n\\tdescription=\\\"Add the files to custom folder\\\"\\n\\tclass=\\\"list_class\\\"\\n\\tmultiple=\\\"false\\\"\\n\\tdefault=\\\"0\\\"\\n\\trequired=\\\"true\\\"\\n\\treadonly=\\\"\\\"\\n\\tdisabled=\\\"\\\"\\n\\textends=\\\"list\\\"\\n\\tbutton=\\\"false\\\"\\n\\ttype_php_1=\\\"__.o0=base64=Oo.__Ly8gZ2V0IGN1c3RvbSBmb2xkZXIgZmlsZXMNCgkJJGxvY2FsZm9sZGVyID0gW1tbQ29tcG9uZW50SGVscGVyXV1dOjpnZXRQYXJhbXMoJ2NvbV8jIyNjb21wb25lbnQjIyMnKS0+Z2V0KCdjdXN0b21fZm9sZGVyX3BhdGgnLCBKUEFUSF9DT01QT05FTlRfQURNSU5JU1RSQVRPUiAuICcvY3VzdG9tJyk7DQoJCS8vIHNldCB0aGUgZGVmYXVsdA0KCQkkb3B0aW9uc1tdID0gSHRtbDo6Xygnc2VsZWN0Lm9wdGlvbicsICcnLCBUZXh0OjpzcHJpbnRmKCdQbGVhc2UgYWRkIGZpbGVzIHRvICglcyknLCRsb2NhbGZvbGRlcikpOw0KCQkvLyBzZXR1cCB0aGUgZm9sZGVyIGlmIGl0IGRvZXMgbm90IGV4aXN0DQoJCWlmICghXEpGb2xkZXI6OmV4aXN0cygkbG9jYWxmb2xkZXIpKQ0KCQl7DQoJCQlcSkZvbGRlcjo6Y3JlYXRlKCRsb2NhbGZvbGRlcik7DQoJCX0NCgkJLy8gbm93IGNoZWNrIGlmIHRoZXJlIGFyZSBmaWxlcyBpbiB0aGUgZm9sZGVyDQoJCWlmICgkZmlsZXMgPSBcSkZvbGRlcjo6ZmlsZXMoJGxvY2FsZm9sZGVyKSkNCgkJew0KCQkJJG9wdGlvbnMgPSBhcnJheSgpOw0KCQkJZm9yZWFjaCAoJGZpbGVzIGFzICRmaWxlKQ0KCQkJew0KCQkJCSRvcHRpb25zW10gPSBIdG1sOjpfKCdzZWxlY3Qub3B0aW9uJywgJGZpbGUsICRmaWxlKTsNCgkJCX0NCgkJfQ0KCQlyZXR1cm4gJG9wdGlvbnM7\\\"\\n\\/>\"', 1, '2015-05-13 15:15:40', '2024-03-20 11:28:57', 4, '', 300, '071ef0b2-94f6-4d75-9fd8-c7fbdce500b5', '', '', '', '', ''),
(296, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Target Path', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"path\\\" \\r\\n\\tlabel=\\\"Target Path\\\" \\r\\n\\tdescription=\\\"Path in relation to the folder structure in the install package, <b>unzip the compiled zip file<\\/b> to see the structure. \\\"\\r\\n\\tsize=\\\"40\\\" \\r\\n\\tmaxlength=\\\"150\\\"\\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\treadonly=\\\"false\\\" \\r\\n\\tdisabled=\\\"false\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\tfilter=\\\"PATH\\\" \\r\\n\\tvalidate=\\\"\\\" \\r\\n\\tmessage=\\\"Error! Please add target path.\\\" \\r\\n\\thint=\\\"Target Path Here\\\" \\r\\n\\/>\"', 1, '2015-05-13 15:19:13', '2018-02-14 21:36:06', 3, '', 303, 'd626e1f0-47b4-4aed-8c75-700a9566488f', '', '', '', '', ''), (296, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Target Path', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"path\\\" \\r\\n\\tlabel=\\\"Target Path\\\" \\r\\n\\tdescription=\\\"Path in relation to the folder structure in the install package, <b>unzip the compiled zip file<\\/b> to see the structure. \\\"\\r\\n\\tsize=\\\"40\\\" \\r\\n\\tmaxlength=\\\"150\\\"\\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\treadonly=\\\"false\\\" \\r\\n\\tdisabled=\\\"false\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\tfilter=\\\"PATH\\\" \\r\\n\\tvalidate=\\\"\\\" \\r\\n\\tmessage=\\\"Error! Please add target path.\\\" \\r\\n\\thint=\\\"Target Path Here\\\" \\r\\n\\/>\"', 1, '2015-05-13 15:19:13', '2018-02-14 21:36:06', 3, '', 303, 'd626e1f0-47b4-4aed-8c75-700a9566488f', '', '', '', '', ''),
@ -2777,7 +2780,7 @@ INSERT INTO `#__componentbuilder_field` (`id`, `add_css_view`, `add_css_views`,
(559, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Custom Get (dynamic)', 'NOT NULL', '', 6, '\"<field\\n\\ttype=\\\"customgets\\\"\\n\\tname=\\\"custom_get\\\"\\n\\tlabel=\\\"Custom Gets\\\"\\n\\tlayout=\\\"joomla.form.field.list-fancy-select\\\"\\n\\tdescription=\\\"Select the custom get methods\\\"\\n\\tmultiple=\\\"true\\\"\\n\\textends=\\\"list\\\"\\n\\ttable=\\\"#__###component###_dynamic_get\\\"\\n\\tcomponent=\\\"com_###component###\\\"\\n\\tview=\\\"dynamic_get\\\"\\n\\tviews=\\\"dynamic_gets\\\"\\n\\tvalue_field=\\\"name\\\"\\n\\tkey_field=\\\"id\\\"\\n\\ttype_php_1=\\\"__.o0=base64=Oo.__JGRiID0gSkZhY3Rvcnk6OmdldERCTygpOw0KJHF1ZXJ5ID0gJGRiLT5nZXRRdWVyeSh0cnVlKTsNCiRxdWVyeS0+c2VsZWN0KCRkYi0+cXVvdGVOYW1lKGFycmF5KCdhLiMjI0lEIyMjJywnYS4jIyNURVhUIyMjJywnYS5nZXR0eXBlJyksYXJyYXkoJyMjI0lEIyMjJywnIyMjQ09ERV9URVhUIyMjJywndHlwZScpKSk7DQokcXVlcnktPmZyb20oJGRiLT5xdW90ZU5hbWUoJyMjI1RBQkxFIyMjJywgJ2EnKSk7DQokcXVlcnktPndoZXJlKCRkYi0+cXVvdGVOYW1lKCdhLnB1Ymxpc2hlZCcpIC4gJyA9IDEnKTtcblx0XHQkcXVlcnktPndoZXJlKCcoICcuJGRiLT5xdW90ZU5hbWUoJ2EuZ2V0dHlwZScpIC4gJyA9IDMgT1IgJyAuICRkYi0+cXVvdGVOYW1lKCdhLmdldHR5cGUnKSAuICcgPSA0ICknKTtcblx0XHQkcXVlcnktPm9yZGVyKCdhLiMjI1RFWFQjIyMgQVNDJyk7DQokZGItPnNldFF1ZXJ5KChzdHJpbmcpJHF1ZXJ5KTsNCiRpdGVtcyA9ICRkYi0+bG9hZE9iamVjdExpc3QoKTsNCiRvcHRpb25zID0gYXJyYXkoKTsNCmlmICgkaXRlbXMpDQp7DQpcdCRtb2RlbCA9ICMjI0NvbXBvbmVudCMjI0hlbHBlcjo6Z2V0TW9kZWwoJ2R5bmFtaWNfZ2V0cycpOw0KXHRmb3JlYWNoKCRpdGVtcyBhcyAkaXRlbSkNClx0e1xuXHRcdFx0XHQkdHlwZSA9ICRtb2RlbC0+c2VsZWN0aW9uVHJhbnNsYXRpb24oJGl0ZW0tPnR5cGUsJ2dldHR5cGUnKTsNClx0XHQkb3B0aW9uc1tdID0gSkh0bWw6Ol8oJ3NlbGVjdC5vcHRpb24nLCAkaXRlbS0+IyMjSUQjIyMsICRpdGVtLT4jIyNDT0RFX1RFWFQjIyMgLiAnICgnIC4gSlRleHQ6Ol8oJHR5cGUpIC4gJyknICk7DQpcdH0NCn0NCg0KcmV0dXJuICRvcHRpb25zOw==\\\"\\n\\/>\"', 1, '2015-06-01 22:02:10', '2024-03-26 13:25:02', 11, '', 403, 'bed7693b-ccd1-4803-b065-5e20fac13881', '', '', '', '', ''), (559, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Custom Get (dynamic)', 'NOT NULL', '', 6, '\"<field\\n\\ttype=\\\"customgets\\\"\\n\\tname=\\\"custom_get\\\"\\n\\tlabel=\\\"Custom Gets\\\"\\n\\tlayout=\\\"joomla.form.field.list-fancy-select\\\"\\n\\tdescription=\\\"Select the custom get methods\\\"\\n\\tmultiple=\\\"true\\\"\\n\\textends=\\\"list\\\"\\n\\ttable=\\\"#__###component###_dynamic_get\\\"\\n\\tcomponent=\\\"com_###component###\\\"\\n\\tview=\\\"dynamic_get\\\"\\n\\tviews=\\\"dynamic_gets\\\"\\n\\tvalue_field=\\\"name\\\"\\n\\tkey_field=\\\"id\\\"\\n\\ttype_php_1=\\\"__.o0=base64=Oo.__JGRiID0gSkZhY3Rvcnk6OmdldERCTygpOw0KJHF1ZXJ5ID0gJGRiLT5nZXRRdWVyeSh0cnVlKTsNCiRxdWVyeS0+c2VsZWN0KCRkYi0+cXVvdGVOYW1lKGFycmF5KCdhLiMjI0lEIyMjJywnYS4jIyNURVhUIyMjJywnYS5nZXR0eXBlJyksYXJyYXkoJyMjI0lEIyMjJywnIyMjQ09ERV9URVhUIyMjJywndHlwZScpKSk7DQokcXVlcnktPmZyb20oJGRiLT5xdW90ZU5hbWUoJyMjI1RBQkxFIyMjJywgJ2EnKSk7DQokcXVlcnktPndoZXJlKCRkYi0+cXVvdGVOYW1lKCdhLnB1Ymxpc2hlZCcpIC4gJyA9IDEnKTtcblx0XHQkcXVlcnktPndoZXJlKCcoICcuJGRiLT5xdW90ZU5hbWUoJ2EuZ2V0dHlwZScpIC4gJyA9IDMgT1IgJyAuICRkYi0+cXVvdGVOYW1lKCdhLmdldHR5cGUnKSAuICcgPSA0ICknKTtcblx0XHQkcXVlcnktPm9yZGVyKCdhLiMjI1RFWFQjIyMgQVNDJyk7DQokZGItPnNldFF1ZXJ5KChzdHJpbmcpJHF1ZXJ5KTsNCiRpdGVtcyA9ICRkYi0+bG9hZE9iamVjdExpc3QoKTsNCiRvcHRpb25zID0gYXJyYXkoKTsNCmlmICgkaXRlbXMpDQp7DQpcdCRtb2RlbCA9ICMjI0NvbXBvbmVudCMjI0hlbHBlcjo6Z2V0TW9kZWwoJ2R5bmFtaWNfZ2V0cycpOw0KXHRmb3JlYWNoKCRpdGVtcyBhcyAkaXRlbSkNClx0e1xuXHRcdFx0XHQkdHlwZSA9ICRtb2RlbC0+c2VsZWN0aW9uVHJhbnNsYXRpb24oJGl0ZW0tPnR5cGUsJ2dldHR5cGUnKTsNClx0XHQkb3B0aW9uc1tdID0gSkh0bWw6Ol8oJ3NlbGVjdC5vcHRpb24nLCAkaXRlbS0+IyMjSUQjIyMsICRpdGVtLT4jIyNDT0RFX1RFWFQjIyMgLiAnICgnIC4gSlRleHQ6Ol8oJHR5cGUpIC4gJyknICk7DQpcdH0NCn0NCg0KcmV0dXJuICRvcHRpb25zOw==\\\"\\n\\/>\"', 1, '2015-06-01 22:02:10', '2024-03-26 13:25:02', 11, '', 403, 'bed7693b-ccd1-4803-b065-5e20fac13881', '', '', '', '', ''),
(560, 1, '', 1, '', 'I2pmb3JtX2R5bmFtaWNfZ2V0X2Noem4gew0Kd2lkdGg6IDEwMCUgIWltcG9ydGFudDsNCn0NCi5qZm9ybV9keW5hbWljX2dldF9pbnB1dF93aWR0aCB7DQp3aWR0aDogOTAlICFpbXBvcnRhbnQ7DQp9', '', '', '', 11, '', 'INT', 2, 'alF1ZXJ5KCcjamZvcm1fZHluYW1pY19nZXQnKS5jbG9zZXN0KCcuaW5wdXQtYXBwZW5kJykuYWRkQ2xhc3MoJ2pmb3JtX2R5bmFtaWNfZ2V0X2lucHV0X3dpZHRoJyk7', '', 'Dynamic Get (snippet)', 'NOT NULL', '', 6, '\"<field \\r\\n\\ttype=\\\"dynamicgets\\\" \\r\\n\\tname=\\\"dynamic_get\\\" \\r\\n\\tlabel=\\\"Dynamic Get (snippet)\\\" \\r\\n\\tdescription=\\\"Select a dynamic get\\\" \\r\\n\\tmultiple=\\\"false\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\trequired=\\\"false\\\" \\r\\n\\treadonly=\\\"\\\" \\r\\n\\tdisabled=\\\"\\\" \\r\\n\\textends=\\\"list\\\" \\r\\n\\ttable=\\\"#__###component###_dynamic_get\\\" \\r\\n\\tcomponent=\\\"com_###component###\\\" \\r\\n\\tview=\\\"dynamic_get\\\" \\r\\n\\tviews=\\\"dynamic_gets\\\" \\r\\n\\tvalue_field=\\\"name\\\" \\r\\n\\tkey_field=\\\"id\\\" \\r\\n\\ttype_php_1=\\\"$db = JFactory::getDBO();\\\" \\r\\n\\ttype_php_2=\\\"$query = $db->getQuery(true);\\\" \\r\\n\\ttype_php_3=\\\"$query->select($db->quoteName(array(\'a.###ID###\',\'a.###TEXT###\',\'a.gettype\'),array(\'###ID###\',\'###CODE_TEXT###\',\'type\')));\\\" \\r\\n\\ttype_php_4=\\\"$query->from($db->quoteName(\'###TABLE###\', \'a\'));\\\" \\r\\n\\ttype_php_5=\\\"$query->where($db->quoteName(\'a.published\') . \' = 1\');\\\\n$query->order(\'a.###TEXT### ASC\');\\\" \\r\\n\\ttype_php_6=\\\"$db->setQuery((string)$query);\\\" \\r\\n\\ttype_php_7=\\\"$items = $db->loadObjectList();\\\" \\r\\n\\ttype_php_8=\\\"$options = array();\\\" \\r\\n\\ttype_php_9=\\\"if ($items)\\\" \\r\\n\\ttype_php_10=\\\"{\\\" \\r\\n\\ttype_php_11=\\\"\\\\t$model = ###Component###Helper::getModel(\'dynamic_gets\');\\\" \\r\\n\\ttype_php_12=\\\"\\\\tforeach($items as $item)\\\" \\r\\n\\ttype_php_13=\\\"\\\\t{\\\\n\\\\t\\\\t\\\\t\\\\t$type = $model->selectionTranslation($item->type,\'gettype\');\\\" \\r\\n\\ttype_php_14=\\\"\\\\t\\\\t$options[] = JHtml::_(\'select.option\', $item->###ID###, $item->###CODE_TEXT### . \' (\' . JText::_($type) . \')\' );\\\" \\r\\n\\ttype_php_15=\\\"\\\\t}\\\" \\r\\n\\ttype_php_16=\\\"}\\\" \\r\\n\\ttype_php_17=\\\"\\\" \\r\\n\\ttype_php_18=\\\"return $options;\\\"\\r\\n\\/>\"', 1, '2015-06-01 22:51:20', '2017-11-22 21:42:34', 6, '', 404, 'c37aa662-719c-4ed5-bbf2-e36672a3ce33', '', '', '', '', ''), (560, 1, '', 1, '', 'I2pmb3JtX2R5bmFtaWNfZ2V0X2Noem4gew0Kd2lkdGg6IDEwMCUgIWltcG9ydGFudDsNCn0NCi5qZm9ybV9keW5hbWljX2dldF9pbnB1dF93aWR0aCB7DQp3aWR0aDogOTAlICFpbXBvcnRhbnQ7DQp9', '', '', '', 11, '', 'INT', 2, 'alF1ZXJ5KCcjamZvcm1fZHluYW1pY19nZXQnKS5jbG9zZXN0KCcuaW5wdXQtYXBwZW5kJykuYWRkQ2xhc3MoJ2pmb3JtX2R5bmFtaWNfZ2V0X2lucHV0X3dpZHRoJyk7', '', 'Dynamic Get (snippet)', 'NOT NULL', '', 6, '\"<field \\r\\n\\ttype=\\\"dynamicgets\\\" \\r\\n\\tname=\\\"dynamic_get\\\" \\r\\n\\tlabel=\\\"Dynamic Get (snippet)\\\" \\r\\n\\tdescription=\\\"Select a dynamic get\\\" \\r\\n\\tmultiple=\\\"false\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\trequired=\\\"false\\\" \\r\\n\\treadonly=\\\"\\\" \\r\\n\\tdisabled=\\\"\\\" \\r\\n\\textends=\\\"list\\\" \\r\\n\\ttable=\\\"#__###component###_dynamic_get\\\" \\r\\n\\tcomponent=\\\"com_###component###\\\" \\r\\n\\tview=\\\"dynamic_get\\\" \\r\\n\\tviews=\\\"dynamic_gets\\\" \\r\\n\\tvalue_field=\\\"name\\\" \\r\\n\\tkey_field=\\\"id\\\" \\r\\n\\ttype_php_1=\\\"$db = JFactory::getDBO();\\\" \\r\\n\\ttype_php_2=\\\"$query = $db->getQuery(true);\\\" \\r\\n\\ttype_php_3=\\\"$query->select($db->quoteName(array(\'a.###ID###\',\'a.###TEXT###\',\'a.gettype\'),array(\'###ID###\',\'###CODE_TEXT###\',\'type\')));\\\" \\r\\n\\ttype_php_4=\\\"$query->from($db->quoteName(\'###TABLE###\', \'a\'));\\\" \\r\\n\\ttype_php_5=\\\"$query->where($db->quoteName(\'a.published\') . \' = 1\');\\\\n$query->order(\'a.###TEXT### ASC\');\\\" \\r\\n\\ttype_php_6=\\\"$db->setQuery((string)$query);\\\" \\r\\n\\ttype_php_7=\\\"$items = $db->loadObjectList();\\\" \\r\\n\\ttype_php_8=\\\"$options = array();\\\" \\r\\n\\ttype_php_9=\\\"if ($items)\\\" \\r\\n\\ttype_php_10=\\\"{\\\" \\r\\n\\ttype_php_11=\\\"\\\\t$model = ###Component###Helper::getModel(\'dynamic_gets\');\\\" \\r\\n\\ttype_php_12=\\\"\\\\tforeach($items as $item)\\\" \\r\\n\\ttype_php_13=\\\"\\\\t{\\\\n\\\\t\\\\t\\\\t\\\\t$type = $model->selectionTranslation($item->type,\'gettype\');\\\" \\r\\n\\ttype_php_14=\\\"\\\\t\\\\t$options[] = JHtml::_(\'select.option\', $item->###ID###, $item->###CODE_TEXT### . \' (\' . JText::_($type) . \')\' );\\\" \\r\\n\\ttype_php_15=\\\"\\\\t}\\\" \\r\\n\\ttype_php_16=\\\"}\\\" \\r\\n\\ttype_php_17=\\\"\\\" \\r\\n\\ttype_php_18=\\\"return $options;\\\"\\r\\n\\/>\"', 1, '2015-06-01 22:51:20', '2017-11-22 21:42:34', 6, '', 404, 'c37aa662-719c-4ed5-bbf2-e36672a3ce33', '', '', '', '', ''),
(561, '', '', '', '', '', '', '', '', '', '', '', '', '', '', 'Note - Add PHP Language String', 'NOT NULL', '', 14, '\"<field\\n\\ttype=\\\"note\\\"\\n\\tname=\\\"note_add_php_language_string\\\"\\n\\tlabel=\\\"Add PHP Language String\\\"\\n\\tdescription=\\\"<code>&lt;?php echo Text::_(&apos;Text&apos;); ?&gt;<\\/code><br \\/>\\r\\n<code>&lt;?php echo Text::sprintf(&apos;Hello %s&apos;, $this->user->name); ?&gt;<\\/code><br \\/>\\r\\n<b>Just get UPPERCASE language string:<\\/b><br \\/>\\r\\n<code>&lt;?php echo JustTEXT::_(&apos;Text&apos;); ?&gt;<\\/code>\\\"\\n\\theading=\\\"h4\\\"\\n\\/>\"', 1, '2015-06-03 15:23:13', '2024-04-08 07:54:26', 16, '', 539, 'edaac8c1-d2df-4e51-9d48-e1d7259984a3', '', '', '', '', ''), (561, '', '', '', '', '', '', '', '', '', '', '', '', '', '', 'Note - Add PHP Language String', 'NOT NULL', '', 14, '\"<field\\n\\ttype=\\\"note\\\"\\n\\tname=\\\"note_add_php_language_string\\\"\\n\\tlabel=\\\"Add PHP Language String\\\"\\n\\tdescription=\\\"<code>&lt;?php echo Text::_(&apos;Text&apos;); ?&gt;<\\/code><br \\/>\\r\\n<code>&lt;?php echo Text::sprintf(&apos;Hello %s&apos;, $this->user->name); ?&gt;<\\/code><br \\/>\\r\\n<b>Just get UPPERCASE language string:<\\/b><br \\/>\\r\\n<code>&lt;?php echo JustTEXT::_(&apos;Text&apos;); ?&gt;<\\/code>\\\"\\n\\theading=\\\"h4\\\"\\n\\/>\"', 1, '2015-06-03 15:23:13', '2024-04-08 07:54:26', 16, '', 539, 'edaac8c1-d2df-4e51-9d48-e1d7259984a3', '', '', '', '', ''),
(562, '', '', '', '', '', '', '', '', '', '', 'MEDIUMTEXT', '', '', '', 'PHP (helper_site)', 'NOT NULL', 2, 8, '\"<field\\n\\ttype=\\\"editor\\\"\\n\\tname=\\\"php_helper_site\\\"\\n\\tlabel=\\\"PHP (site helper)\\\"\\n\\tdescription=\\\"Add the PHP abstract Methods to add to the component helper class. Only Methods! as it will directly be add as methods to the helper class! Do not add the php tags.\\\"\\n\\twidth=\\\"100%\\\"\\n\\theight=\\\"550px\\\"\\n\\tcols=\\\"15\\\"\\n\\trows=\\\"80\\\"\\n\\tbuttons=\\\"no\\\"\\n\\tsyntax=\\\"php\\\"\\n\\teditor=\\\"codemirror|none\\\"\\n\\tfilter=\\\"raw\\\"\\n\\tvalidate=\\\"code\\\"\\n\\/>\"', 1, '2015-06-07 22:39:33', '2019-07-08 14:14:42', 4, '', 540, 'f4134f92-7dc5-4729-9a16-bfaa51de27f9', '', '', '', '', ''), (562, '', '', '', '', '', '', '', '', '', '', 'MEDIUMTEXT', '', '', '', 'PHP (helper_site)', 'NOT NULL', 2, 8, '\"<field\\n\\ttype=\\\"editor\\\"\\n\\tname=\\\"php_helper_site\\\"\\n\\tlabel=\\\"PHP (site helper)\\\"\\n\\tdescription=\\\"Add the PHP abstract Methods to add to the component helper class. Only Methods! as it will directly be add as methods to the helper class! Do not add the php tags.\\\"\\n\\twidth=\\\"100%\\\"\\n\\theight=\\\"550px\\\"\\n\\tcols=\\\"15\\\"\\n\\trows=\\\"80\\\"\\n\\tbuttons=\\\"no\\\"\\n\\tsyntax=\\\"php\\\"\\n\\teditor=\\\"codemirror|none\\\"\\n\\tfilter=\\\"raw\\\"\\n\\tvalidate=\\\"code\\\"\\n\\tshowon=\\\"add_php_helper_site:1\\\"\\n\\/>\"', 1, '2015-06-07 22:39:33', '2024-04-19 08:09:34', 5, '', 540, 'f4134f92-7dc5-4729-9a16-bfaa51de27f9', '', '', '', '', ''),
(563, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Add PHP (helper_site Class)', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"add_php_helper_site\\\" \\r\\n\\tlabel=\\\"Add PHP (helper_site Class)\\\" \\r\\n\\tdescription=\\\"\\\" \\r\\n\\tclass=\\\"btn-group btn-group-yesno\\\" \\r\\n\\toption=\\\"1|Yes,0|No\\\" \\r\\n\\tdefault=\\\"0\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\/>\"', 1, '2015-06-07 22:39:54', '2015-08-25 21:15:22', 2, '', 548, 'ff624860-89db-4465-97f1-962bf09dcc9f', '', '', '', '', ''), (563, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Add PHP (helper_site Class)', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"add_php_helper_site\\\" \\r\\n\\tlabel=\\\"Add PHP (helper_site Class)\\\" \\r\\n\\tdescription=\\\"\\\" \\r\\n\\tclass=\\\"btn-group btn-group-yesno\\\" \\r\\n\\toption=\\\"1|Yes,0|No\\\" \\r\\n\\tdefault=\\\"0\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\/>\"', 1, '2015-06-07 22:39:54', '2015-08-25 21:15:22', 2, '', 548, 'ff624860-89db-4465-97f1-962bf09dcc9f', '', '', '', '', ''),
(564, '', '', '', '', '', '', '', '', 11, '', 'TINYINT', 2, '', '', 'Site Menu', 'NOT NULL', '', 3, '\"<field\\n\\ttype=\\\"checkbox\\\"\\n\\tname=\\\"menu\\\"\\n\\tlabel=\\\"Add Menu\\\"\\n\\tvalue=\\\"1\\\"\\n\\tdefault=\\\"1\\\"\\n\\tdescription=\\\"Select if the view should show have a menu link.\\\"\\n\\tclass=\\\"inputbox\\\"\\n\\/>\"', 1, '2015-06-09 19:58:37', '2019-06-11 12:15:59', 3, '', 549, '5ad1beb3-ad4c-4704-a1fd-be7045e3478a', '', '', '', '', ''), (564, '', '', '', '', '', '', '', '', 11, '', 'TINYINT', 2, '', '', 'Site Menu', 'NOT NULL', '', 3, '\"<field\\n\\ttype=\\\"checkbox\\\"\\n\\tname=\\\"menu\\\"\\n\\tlabel=\\\"Add Menu\\\"\\n\\tvalue=\\\"1\\\"\\n\\tdefault=\\\"1\\\"\\n\\tdescription=\\\"Select if the view should show have a menu link.\\\"\\n\\tclass=\\\"inputbox\\\"\\n\\/>\"', 1, '2015-06-09 19:58:37', '2019-06-11 12:15:59', 3, '', 549, '5ad1beb3-ad4c-4704-a1fd-be7045e3478a', '', '', '', '', ''),
(565, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Add PHP (custom view script)', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"add_php_view\\\" \\r\\n\\tlabel=\\\"Add PHP (custom view script)\\\" \\r\\n\\tdescription=\\\"\\\" \\r\\n\\tclass=\\\"btn-group btn-group-yesno\\\" \\r\\n\\toption=\\\"1|Yes,0|No\\\" \\r\\n\\tdefault=\\\"0\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\/>\"', 1, '2015-06-10 14:53:09', '2015-08-25 21:15:22', 2, '', 547, '8b09aaf9-546c-4f03-8b1f-3170ba4b5491', '', '', '', '', ''), (565, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Add PHP (custom view script)', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"add_php_view\\\" \\r\\n\\tlabel=\\\"Add PHP (custom view script)\\\" \\r\\n\\tdescription=\\\"\\\" \\r\\n\\tclass=\\\"btn-group btn-group-yesno\\\" \\r\\n\\toption=\\\"1|Yes,0|No\\\" \\r\\n\\tdefault=\\\"0\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\/>\"', 1, '2015-06-10 14:53:09', '2015-08-25 21:15:22', 2, '', 547, '8b09aaf9-546c-4f03-8b1f-3170ba4b5491', '', '', '', '', ''),
@ -3046,10 +3049,10 @@ INSERT INTO `#__componentbuilder_field` (`id`, `add_css_view`, `add_css_views`,
(829, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'File Name', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"filename\\\" \\r\\n\\tlabel=\\\"File Name\\\" \\r\\n\\tsize=\\\"80\\\" \\r\\n\\tmaxlength=\\\"550\\\" \\r\\nrequired=\\\"true\\\"\\r\\n\\tdescription=\\\"Enter the file name.\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\tfilter=\\\"STRING\\\"\\r\\n\\tmessage=\\\"Error! Please add file name here.\\\" \\r\\n\\thint=\\\"the_file_name.mp3\\\" \\r\\n\\tescape=\\\"false\\\"\\r\\n\\/>\"', 1, '2015-10-29 22:56:18', '2015-11-11 21:53:04', 4, '', 621, 'dd76a17b-ccd9-4bd2-90a9-6fac01eb9de3', '', '', '', '', ''), (829, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'File Name', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"filename\\\" \\r\\n\\tlabel=\\\"File Name\\\" \\r\\n\\tsize=\\\"80\\\" \\r\\n\\tmaxlength=\\\"550\\\" \\r\\nrequired=\\\"true\\\"\\r\\n\\tdescription=\\\"Enter the file name.\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\tfilter=\\\"STRING\\\"\\r\\n\\tmessage=\\\"Error! Please add file name here.\\\" \\r\\n\\thint=\\\"the_file_name.mp3\\\" \\r\\n\\tescape=\\\"false\\\"\\r\\n\\/>\"', 1, '2015-10-29 22:56:18', '2015-11-11 21:53:04', 4, '', 621, 'dd76a17b-ccd9-4bd2-90a9-6fac01eb9de3', '', '', '', '', ''),
(830, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'Sermon (dynamic)', 'NOT NULL', '', 6, '\"<field \\r\\n\\ttype=\\\"sermon\\\" \\r\\n\\tname=\\\"sermon\\\" \\r\\n\\tlabel=\\\"Sermon\\\" \\r\\n\\tdescription=\\\"Select a sermon.\\\" \\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\tmultiple=\\\"false\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\treadonly=\\\"\\\" \\r\\n\\tdisabled=\\\"\\\" \\r\\n\\textends=\\\"list\\\" \\r\\n\\tbutton=\\\"true\\\" \\r\\n\\ttable=\\\"#__###component###_sermon\\\" \\r\\n\\tcomponent=\\\"com_###component###\\\" \\r\\n\\tview=\\\"sermon\\\" \\r\\n\\tviews=\\\"sermons\\\" \\r\\n\\tvalue_field=\\\"name\\\" \\r\\n\\tkey_field=\\\"id\\\" \\r\\n\\ttype_php_1=\\\"$db = JFactory::getDBO();\\\" \\r\\n\\ttype_php_2=\\\"$query = $db->getQuery(true);\\\" \\r\\n\\ttype_php_3=\\\"$query->select($db->quoteName(array(\'a.###ID###\',\'a.###TEXT###\'),array(\'###ID###\',\'###CODE_TEXT###\')));\\\" \\r\\n\\ttype_php_4=\\\"$query->from($db->quoteName(\'###TABLE###\', \'a\'));\\\" \\r\\n\\ttype_php_5=\\\"$query->where($db->quoteName(\'a.published\') . \' = 1\');\\\" \\r\\n\\ttype_php_6=\\\"$query->order(\'a.###TEXT### ASC\');\\\" \\r\\n\\ttype_php_7=\\\"$db->setQuery((string)$query);\\\" \\r\\n\\ttype_php_8=\\\"$items = $db->loadObjectList();\\\" \\r\\n\\ttype_php_9=\\\"$options = array();\\\" \\r\\n\\ttype_php_10=\\\"if ($items)\\\" \\r\\n\\ttype_php_11=\\\"{\\\" \\r\\n\\ttype_php_12=\\\"\\\\t$options[] = JHtml::_(\'select.option\', \'\', \'Select a sermon\');\\\" \\r\\n\\ttype_php_13=\\\"\\\\tforeach($items as $item)\\\" \\r\\n\\ttype_php_14=\\\"\\\\t{\\\" \\r\\n\\ttype_php_15=\\\"\\\\t\\\\t$options[] = JHtml::_(\'select.option\', $item->###ID###, $item->###CODE_TEXT###);\\\" \\r\\n\\ttype_php_16=\\\"\\\\t}\\\" \\r\\n\\ttype_php_17=\\\"}\\\" \\r\\n\\ttype_php_18=\\\"\\\" \\r\\n\\ttype_php_19=\\\"return $options;\\\" \\r\\n\\/>\"', 1, '2015-10-29 23:03:50', '0000-00-00 00:00:00', 1, '', 630, '65900ddf-3f15-41ea-a8a7-5a4a77975c7d', '', '', '', '', ''), (830, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'Sermon (dynamic)', 'NOT NULL', '', 6, '\"<field \\r\\n\\ttype=\\\"sermon\\\" \\r\\n\\tname=\\\"sermon\\\" \\r\\n\\tlabel=\\\"Sermon\\\" \\r\\n\\tdescription=\\\"Select a sermon.\\\" \\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\tmultiple=\\\"false\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\treadonly=\\\"\\\" \\r\\n\\tdisabled=\\\"\\\" \\r\\n\\textends=\\\"list\\\" \\r\\n\\tbutton=\\\"true\\\" \\r\\n\\ttable=\\\"#__###component###_sermon\\\" \\r\\n\\tcomponent=\\\"com_###component###\\\" \\r\\n\\tview=\\\"sermon\\\" \\r\\n\\tviews=\\\"sermons\\\" \\r\\n\\tvalue_field=\\\"name\\\" \\r\\n\\tkey_field=\\\"id\\\" \\r\\n\\ttype_php_1=\\\"$db = JFactory::getDBO();\\\" \\r\\n\\ttype_php_2=\\\"$query = $db->getQuery(true);\\\" \\r\\n\\ttype_php_3=\\\"$query->select($db->quoteName(array(\'a.###ID###\',\'a.###TEXT###\'),array(\'###ID###\',\'###CODE_TEXT###\')));\\\" \\r\\n\\ttype_php_4=\\\"$query->from($db->quoteName(\'###TABLE###\', \'a\'));\\\" \\r\\n\\ttype_php_5=\\\"$query->where($db->quoteName(\'a.published\') . \' = 1\');\\\" \\r\\n\\ttype_php_6=\\\"$query->order(\'a.###TEXT### ASC\');\\\" \\r\\n\\ttype_php_7=\\\"$db->setQuery((string)$query);\\\" \\r\\n\\ttype_php_8=\\\"$items = $db->loadObjectList();\\\" \\r\\n\\ttype_php_9=\\\"$options = array();\\\" \\r\\n\\ttype_php_10=\\\"if ($items)\\\" \\r\\n\\ttype_php_11=\\\"{\\\" \\r\\n\\ttype_php_12=\\\"\\\\t$options[] = JHtml::_(\'select.option\', \'\', \'Select a sermon\');\\\" \\r\\n\\ttype_php_13=\\\"\\\\tforeach($items as $item)\\\" \\r\\n\\ttype_php_14=\\\"\\\\t{\\\" \\r\\n\\ttype_php_15=\\\"\\\\t\\\\t$options[] = JHtml::_(\'select.option\', $item->###ID###, $item->###CODE_TEXT###);\\\" \\r\\n\\ttype_php_16=\\\"\\\\t}\\\" \\r\\n\\ttype_php_17=\\\"}\\\" \\r\\n\\ttype_php_18=\\\"\\\" \\r\\n\\ttype_php_19=\\\"return $options;\\\" \\r\\n\\/>\"', 1, '2015-10-29 23:03:50', '0000-00-00 00:00:00', 1, '', 630, '65900ddf-3f15-41ea-a8a7-5a4a77975c7d', '', '', '', '', ''),
(831, '', '', '', '', '', '', '', '', 64, '', 'INT', '', '', '', 'Counter', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"counter\\\" \\r\\n\\tlabel=\\\"Counter\\\" \\r\\n\\tsize=\\\"5\\\" \\r\\n\\tmaxlength=\\\"15\\\" \\r\\nrequired=\\\"true\\\"\\r\\n\\tdescription=\\\"Enter number.\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\tfilter=\\\"INT\\\" \\r\\n\\tmessage=\\\"Error! Please add a number.\\\" \\r\\n\\thint=\\\"Number Here.\\\" \\r\\n\\/>\"', 1, '2015-10-29 23:07:47', '2015-10-29 23:15:13', 2, '', 104, '0d88fa6b-a273-4a4b-81f3-1681a029c9d4', '', '', '', '', ''), (831, '', '', '', '', '', '', '', '', 64, '', 'INT', '', '', '', 'Counter', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"counter\\\" \\r\\n\\tlabel=\\\"Counter\\\" \\r\\n\\tsize=\\\"5\\\" \\r\\n\\tmaxlength=\\\"15\\\" \\r\\nrequired=\\\"true\\\"\\r\\n\\tdescription=\\\"Enter number.\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\tfilter=\\\"INT\\\" \\r\\n\\tmessage=\\\"Error! Please add a number.\\\" \\r\\n\\thint=\\\"Number Here.\\\" \\r\\n\\/>\"', 1, '2015-10-29 23:07:47', '2015-10-29 23:15:13', 2, '', 104, '0d88fa6b-a273-4a4b-81f3-1681a029c9d4', '', '', '', '', ''),
(832, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Add Global Admin Event', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"add_admin_event\\\" \\r\\n\\tlabel=\\\"Add Global Admin Event\\\" \\r\\n\\tdescription=\\\"\\\" \\r\\n\\tclass=\\\"btn-group btn-group-yesno\\\" \\r\\n\\toption=\\\"1|Yes,0|No\\\" \\r\\n\\tdefault=\\\"0\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\/>\"', 1, '2015-10-30 12:47:57', '2015-10-30 13:01:42', 3, '', 631, 'f114341a-d271-4917-a5eb-8d5acdf0232d', '', '', '', '', ''), (832, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Add Global Admin Event', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"add_admin_event\\\"\\n\\tlabel=\\\"Add Global Admin Event\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"1|Yes,0|No\\\"\\n\\tdefault=\\\"0\\\"\\n\\trequired=\\\"true\\\"\\n\\/>\"', 1, '2015-10-30 12:47:57', '2024-04-19 08:22:20', 4, '', 631, 'f114341a-d271-4917-a5eb-8d5acdf0232d', '', '', '', '', ''),
(833, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Add Global Site Event', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"add_site_event\\\" \\r\\n\\tlabel=\\\"Add Global Site Event\\\" \\r\\n\\tdescription=\\\"\\\" \\r\\n\\tclass=\\\"btn-group btn-group-yesno\\\" \\r\\n\\toption=\\\"1|Yes,0|No\\\" \\r\\n\\tdefault=\\\"0\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\/>\"', 1, '2015-10-30 12:48:36', '2015-10-30 13:01:58', 2, '', 631, '8b68326a-0e09-4df9-807e-4c32c3c9600a', '', '', '', '', ''), (833, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Add Global Site Event', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"add_site_event\\\" \\r\\n\\tlabel=\\\"Add Global Site Event\\\" \\r\\n\\tdescription=\\\"\\\" \\r\\n\\tclass=\\\"btn-group btn-group-yesno\\\" \\r\\n\\toption=\\\"1|Yes,0|No\\\" \\r\\n\\tdefault=\\\"0\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\/>\"', 1, '2015-10-30 12:48:36', '2015-10-30 13:01:58', 2, '', 631, '8b68326a-0e09-4df9-807e-4c32c3c9600a', '', '', '', '', ''),
(834, '', '', '', '', '', '', '', '', '', '', 'MEDIUMTEXT', '', '', '', 'PHP Global Helper Admin Event', 'NOT NULL', 2, 8, '\"<field\\n\\ttype=\\\"editor\\\"\\n\\tname=\\\"php_admin_event\\\"\\n\\tlabel=\\\"Global Helper Admin Event (method)\\\"\\n\\tdescription=\\\"PHP script for the global helper admin event method.\\\"\\n\\twidth=\\\"100%\\\"\\n\\theight=\\\"450px\\\"\\n\\tcols=\\\"15\\\"\\n\\trows=\\\"30\\\"\\n\\tbuttons=\\\"no\\\"\\n\\tsyntax=\\\"php\\\"\\n\\teditor=\\\"codemirror|none\\\"\\n\\tfilter=\\\"raw\\\"\\n\\tvalidate=\\\"code\\\"\\n\\/>\"', 1, '2015-10-30 12:52:26', '2019-07-08 14:17:00', 3, '', 373, 'a8b0ea74-9315-4f24-be43-836f249645f3', '', '', '', '', ''), (834, '', '', '', '', '', '', '', '', '', '', 'MEDIUMTEXT', '', '', '', 'PHP Global Helper Admin Event', 'NOT NULL', 2, 8, '\"<field\\n\\ttype=\\\"editor\\\"\\n\\tname=\\\"php_admin_event\\\"\\n\\tlabel=\\\"Global Helper Admin Event (method)\\\"\\n\\tdescription=\\\"PHP script for the global helper admin event method.\\\"\\n\\twidth=\\\"100%\\\"\\n\\theight=\\\"450px\\\"\\n\\tcols=\\\"15\\\"\\n\\trows=\\\"30\\\"\\n\\tbuttons=\\\"no\\\"\\n\\tsyntax=\\\"php\\\"\\n\\teditor=\\\"codemirror|none\\\"\\n\\tfilter=\\\"raw\\\"\\n\\tvalidate=\\\"code\\\"\\n\\trequired=\\\"add_admin_event:1\\\"\\n\\/>\"', 1, '2015-10-30 12:52:26', '2024-04-19 08:22:50', 4, '', 373, 'a8b0ea74-9315-4f24-be43-836f249645f3', '', '', '', '', ''),
(835, '', '', '', '', '', '', '', '', '', '', 'MEDIUMTEXT', '', '', '', 'PHP Global Helper Site Event', 'NOT NULL', 2, 8, '\"<field\\n\\ttype=\\\"editor\\\"\\n\\tname=\\\"php_site_event\\\"\\n\\tlabel=\\\"Global Helper Site Event (method)\\\"\\n\\tdescription=\\\"PHP script for the global helper site event method.\\\"\\n\\twidth=\\\"100%\\\"\\n\\theight=\\\"450px\\\"\\n\\tcols=\\\"15\\\"\\n\\trows=\\\"30\\\"\\n\\tbuttons=\\\"no\\\"\\n\\tsyntax=\\\"php\\\"\\n\\teditor=\\\"codemirror|none\\\"\\n\\tfilter=\\\"raw\\\"\\n\\tvalidate=\\\"code\\\"\\n\\/>\"', 1, '2015-10-30 12:53:10', '2019-07-08 14:17:13', 3, '', 373, 'a052df3d-54b4-4da7-a0f6-f18703d1047b', '', '', '', '', ''), (835, '', '', '', '', '', '', '', '', '', '', 'MEDIUMTEXT', '', '', '', 'PHP Global Helper Site Event', 'NOT NULL', 2, 8, '\"<field\\n\\ttype=\\\"editor\\\"\\n\\tname=\\\"php_site_event\\\"\\n\\tlabel=\\\"Global Helper Site Event (method)\\\"\\n\\tdescription=\\\"PHP script for the global helper site event method.\\\"\\n\\twidth=\\\"100%\\\"\\n\\theight=\\\"450px\\\"\\n\\tcols=\\\"15\\\"\\n\\trows=\\\"30\\\"\\n\\tbuttons=\\\"no\\\"\\n\\tsyntax=\\\"php\\\"\\n\\teditor=\\\"codemirror|none\\\"\\n\\tfilter=\\\"raw\\\"\\n\\tvalidate=\\\"code\\\"\\n\\tshowon=\\\"add_site_event:1\\\"\\n\\/>\"', 1, '2015-10-30 12:53:10', '2024-04-19 08:23:46', 4, '', 373, 'a052df3d-54b4-4da7-a0f6-f18703d1047b', '', '', '', '', ''),
(836, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Add to External Source Button', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"add_to_button\\\" \\r\\n\\tlabel=\\\"External Source Button\\\" \\r\\n\\tdescription=\\\"Allow add to external source button to show, this will expose the external source links.\\\" \\r\\n\\tclass=\\\"btn-group btn-group-yesno\\\" \\r\\n\\toption=\\\"1|Yes,0|No\\\" \\r\\n\\tdefault=\\\"0\\\" \\r\\n\\trequired=\\\"\\\" \\r\\n\\/>\"', 1, '2015-10-31 12:59:03', '2016-11-21 15:40:08', 3, '', 632, '6d7035f9-b4a1-45fd-bfa2-2ccfa6e06287', '', '', '', '', ''), (836, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Add to External Source Button', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"add_to_button\\\" \\r\\n\\tlabel=\\\"External Source Button\\\" \\r\\n\\tdescription=\\\"Allow add to external source button to show, this will expose the external source links.\\\" \\r\\n\\tclass=\\\"btn-group btn-group-yesno\\\" \\r\\n\\toption=\\\"1|Yes,0|No\\\" \\r\\n\\tdefault=\\\"0\\\" \\r\\n\\trequired=\\\"\\\" \\r\\n\\/>\"', 1, '2015-10-31 12:59:03', '2016-11-21 15:40:08', 3, '', 632, '6d7035f9-b4a1-45fd-bfa2-2ccfa6e06287', '', '', '', '', ''),
(837, '', '', 1, '', '', '', '', '', '', '', 'TEXT', '', 'PD9waHANCgkvLyBzZXR1cCB0aGUgcmV0dXJuIHVybA0KCSRleHRlcm5hbHNvdXJjZXNVUkwgPSBKVVJJOjpyb290KCkgLiAnYWRtaW5pc3RyYXRvci9pbmRleC5waHA/b3B0aW9uPWNvbV9bW1tjb21wb25lbnRdXV0mdmlldz1leHRlcm5hbF9zb3VyY2VzJzsNCj8+DQoNCmpRdWVyeSgnLmV4dGVybmFsLXNvdXJjZScpLm9uKCdjbGljaycsZnVuY3Rpb24gKGUpDQp7DQoJZS5wcmV2ZW50RGVmYXVsdCgpOw0KCWxvY2F0aW9uLmhyZWY9Ijw/cGhwIGVjaG8gJGV4dGVybmFsc291cmNlc1VSTDsgPz4iOw0KfSk7DQoNCi8vIGxvYWQgdGhlIGF1dG8gc2VybW9ucyBpZiBzZXQgb3Igbm90aWNlIGlmIG5vbmUgaXMgZm91bmQNCnZhciBhdXRvX3Nlcm1vbnMgPSBqUXVlcnkoJyNqZm9ybV9hdXRvX3Nlcm1vbnMnKS52YWwoKTsNCnZhciBodG1sRHJvcE5vdGUgPSAnPGgxPjw/cGhwIGVjaG8gSlRleHQ6Ol8oJ05vIEZpbGVzIExpbmtlZCBZZXQnKTsgPz48L2gxPic7DQpodG1sRHJvcE5vdGUgKz0gJzxkaXYgY2xhc3M9ImFsZXJ0IGFsZXJ0LXdhcm5pbmciPjw/cGhwIGVjaG8gSlRleHQ6Ol8oJ0Fsd2F5cyBiZXR0ZXIgdG8gYWRkIHRoZSBmaWxlcyB0byBFeHRlcm5hbCBTb3VyY2UgYW5kIGxldCB0aGUgc3lzdGVtIGNyZWF0ZSB0aGUgc2VybW9uIGZvciB5b3UuIFBsZWFzZSByZWFkIGluc3RydWN0aW9ucyBiZWxvdyBjYXJlZnVsbHkuJyk7ID8+PC9kaXY+JzsNCmlmIChhdXRvX3Nlcm1vbnMgIT0gMSAmJiBhdXRvX3Nlcm1vbnMubGVuZ3RoID4gMCkNCnsNCglodG1sRHJvcE5vdGUgPSAnPGgxPjw/cGhwIGVjaG8gSlRleHQ6Ol8oJ1RoZSBGaWxlcyBMaW5rZWQgZnJvbSBFeHRlcm5hbCBTb3VyY2UnKTsgPz48L2gxPic7DQoJYXV0b19zZXJtb25zID0galF1ZXJ5LnBhcnNlSlNPTihhdXRvX3Nlcm1vbnMpOw0KCWh0bWxEcm9wTm90ZSArPSAnPGRpdiBjbGFzcz0iYWxlcnQgYWxlcnQtc3VjY2VzcyI+PHVsPic7DQoJalF1ZXJ5LmVhY2goYXV0b19zZXJtb25zLCBmdW5jdGlvbihmaWxlbmFtZSxmaWxlS2V5KSB7DQoJCWh0bWxEcm9wTm90ZSArPSAnPGxpPjxiPjw/cGhwIGVjaG8gSlRleHQ6Ol8oJ0Rvd25sb2FkIE5hbWUnKTsgPz46PC9iPiAnOw0KCQlodG1sRHJvcE5vdGUgKz0gZmlsZW5hbWU7DQoJCWh0bWxEcm9wTm90ZSArPSAnPGJyIC8+PGI+PD9waHAgZWNobyBKVGV4dDo6XygnRXh0ZXJuYWwgU291cmNlIFJlbGF0aW9uJyk7ID8+OjwvYj4gJzsNCgkJaHRtbERyb3BOb3RlICs9IGZpbGVLZXkucmVwbGFjZSgiVkRNX3BMZUtfaDB1RXIvIiwgIiIpOw0KCQlodG1sRHJvcE5vdGUgKz0gJzwvbGk+JzsNCgl9KTsNCglodG1sRHJvcE5vdGUgKz0gJzwvdWw+PC9kaXY+JzsNCn0NCmpRdWVyeSgnLm5vdGVfYXV0b19leHRlcm5hbHNvdXJjZScpLmNsb3Nlc3QoJy5jb250cm9sLWdyb3VwJykucHJlcGVuZChodG1sRHJvcE5vdGUpOw==', '', 'Dropbox Auto Sermon Values', 'NOT NULL', '', 9, '\"<field \\r\\n\\ttype=\\\"hidden\\\" \\r\\n\\tname=\\\"auto_sermons\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\/>\"', 1, '2015-11-01 23:02:46', '2016-11-04 01:39:59', 11, '', 633, '463acf01-a1ac-4b85-89f1-4ea2b54b03fe', '', '', '', '', ''), (837, '', '', 1, '', '', '', '', '', '', '', 'TEXT', '', 'PD9waHANCgkvLyBzZXR1cCB0aGUgcmV0dXJuIHVybA0KCSRleHRlcm5hbHNvdXJjZXNVUkwgPSBKVVJJOjpyb290KCkgLiAnYWRtaW5pc3RyYXRvci9pbmRleC5waHA/b3B0aW9uPWNvbV9bW1tjb21wb25lbnRdXV0mdmlldz1leHRlcm5hbF9zb3VyY2VzJzsNCj8+DQoNCmpRdWVyeSgnLmV4dGVybmFsLXNvdXJjZScpLm9uKCdjbGljaycsZnVuY3Rpb24gKGUpDQp7DQoJZS5wcmV2ZW50RGVmYXVsdCgpOw0KCWxvY2F0aW9uLmhyZWY9Ijw/cGhwIGVjaG8gJGV4dGVybmFsc291cmNlc1VSTDsgPz4iOw0KfSk7DQoNCi8vIGxvYWQgdGhlIGF1dG8gc2VybW9ucyBpZiBzZXQgb3Igbm90aWNlIGlmIG5vbmUgaXMgZm91bmQNCnZhciBhdXRvX3Nlcm1vbnMgPSBqUXVlcnkoJyNqZm9ybV9hdXRvX3Nlcm1vbnMnKS52YWwoKTsNCnZhciBodG1sRHJvcE5vdGUgPSAnPGgxPjw/cGhwIGVjaG8gSlRleHQ6Ol8oJ05vIEZpbGVzIExpbmtlZCBZZXQnKTsgPz48L2gxPic7DQpodG1sRHJvcE5vdGUgKz0gJzxkaXYgY2xhc3M9ImFsZXJ0IGFsZXJ0LXdhcm5pbmciPjw/cGhwIGVjaG8gSlRleHQ6Ol8oJ0Fsd2F5cyBiZXR0ZXIgdG8gYWRkIHRoZSBmaWxlcyB0byBFeHRlcm5hbCBTb3VyY2UgYW5kIGxldCB0aGUgc3lzdGVtIGNyZWF0ZSB0aGUgc2VybW9uIGZvciB5b3UuIFBsZWFzZSByZWFkIGluc3RydWN0aW9ucyBiZWxvdyBjYXJlZnVsbHkuJyk7ID8+PC9kaXY+JzsNCmlmIChhdXRvX3Nlcm1vbnMgIT0gMSAmJiBhdXRvX3Nlcm1vbnMubGVuZ3RoID4gMCkNCnsNCglodG1sRHJvcE5vdGUgPSAnPGgxPjw/cGhwIGVjaG8gSlRleHQ6Ol8oJ1RoZSBGaWxlcyBMaW5rZWQgZnJvbSBFeHRlcm5hbCBTb3VyY2UnKTsgPz48L2gxPic7DQoJYXV0b19zZXJtb25zID0galF1ZXJ5LnBhcnNlSlNPTihhdXRvX3Nlcm1vbnMpOw0KCWh0bWxEcm9wTm90ZSArPSAnPGRpdiBjbGFzcz0iYWxlcnQgYWxlcnQtc3VjY2VzcyI+PHVsPic7DQoJalF1ZXJ5LmVhY2goYXV0b19zZXJtb25zLCBmdW5jdGlvbihmaWxlbmFtZSxmaWxlS2V5KSB7DQoJCWh0bWxEcm9wTm90ZSArPSAnPGxpPjxiPjw/cGhwIGVjaG8gSlRleHQ6Ol8oJ0Rvd25sb2FkIE5hbWUnKTsgPz46PC9iPiAnOw0KCQlodG1sRHJvcE5vdGUgKz0gZmlsZW5hbWU7DQoJCWh0bWxEcm9wTm90ZSArPSAnPGJyIC8+PGI+PD9waHAgZWNobyBKVGV4dDo6XygnRXh0ZXJuYWwgU291cmNlIFJlbGF0aW9uJyk7ID8+OjwvYj4gJzsNCgkJaHRtbERyb3BOb3RlICs9IGZpbGVLZXkucmVwbGFjZSgiVkRNX3BMZUtfaDB1RXIvIiwgIiIpOw0KCQlodG1sRHJvcE5vdGUgKz0gJzwvbGk+JzsNCgl9KTsNCglodG1sRHJvcE5vdGUgKz0gJzwvdWw+PC9kaXY+JzsNCn0NCmpRdWVyeSgnLm5vdGVfYXV0b19leHRlcm5hbHNvdXJjZScpLmNsb3Nlc3QoJy5jb250cm9sLWdyb3VwJykucHJlcGVuZChodG1sRHJvcE5vdGUpOw==', '', 'Dropbox Auto Sermon Values', 'NOT NULL', '', 9, '\"<field \\r\\n\\ttype=\\\"hidden\\\" \\r\\n\\tname=\\\"auto_sermons\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\/>\"', 1, '2015-11-01 23:02:46', '2016-11-04 01:39:59', 11, '', 633, '463acf01-a1ac-4b85-89f1-4ea2b54b03fe', '', '', '', '', ''),
(838, '', '', '', '', '', '', '', '', 1, '', 'INT', 2, '', '', 'Auto Sermons State', 'NOT NULL', '', 11, '\"<field \\r\\n\\ttype=\\\"list\\\" \\r\\n\\tname=\\\"sermon_state\\\" \\r\\n\\tlabel=\\\"Auto Sermons State\\\" \\r\\n\\tdescription=\\\"Set the state in which sermons so be loaded at initial build.\\\" \\r\\n\\tclass=\\\"chzn-color-state\\\" \\r\\n\\tmultiple=\\\"false\\\" \\r\\n\\tfilter=\\\"intval\\\" \\r\\n\\trequired=\\\"\\\" \\r\\n\\toption=\\\"1|Published,0|Unpublished,2|Archived,-2|Trashed\\\" \\r\\n\\tdefault=\\\"1\\\" \\r\\n\\/>\"', 1, '2015-11-04 23:41:39', '0000-00-00 00:00:00', 1, '', 634, '9f540a41-db71-49b2-9226-7d9e42032353', '', '', '', '', ''), (838, '', '', '', '', '', '', '', '', 1, '', 'INT', 2, '', '', 'Auto Sermons State', 'NOT NULL', '', 11, '\"<field \\r\\n\\ttype=\\\"list\\\" \\r\\n\\tname=\\\"sermon_state\\\" \\r\\n\\tlabel=\\\"Auto Sermons State\\\" \\r\\n\\tdescription=\\\"Set the state in which sermons so be loaded at initial build.\\\" \\r\\n\\tclass=\\\"chzn-color-state\\\" \\r\\n\\tmultiple=\\\"false\\\" \\r\\n\\tfilter=\\\"intval\\\" \\r\\n\\trequired=\\\"\\\" \\r\\n\\toption=\\\"1|Published,0|Unpublished,2|Archived,-2|Trashed\\\" \\r\\n\\tdefault=\\\"1\\\" \\r\\n\\/>\"', 1, '2015-11-04 23:41:39', '0000-00-00 00:00:00', 1, '', 634, '9f540a41-db71-49b2-9226-7d9e42032353', '', '', '', '', ''),
@ -3186,9 +3189,9 @@ INSERT INTO `#__componentbuilder_field` (`id`, `add_css_view`, `add_css_views`,
(969, '', '', '', '', '', '', '', '', '', '', 'CHAR', '', '', '', 'Compiler Folder Path - Note', 'NOT NULL', '', 14, '\"<field \\r\\n\\ttype=\\\"note\\\" \\r\\n\\tname=\\\"note_compiler_folder_path\\\" \\r\\n\\tlabel=\\\"Moving The Compiler Folder\\\" \\r\\n\\tdescription=\\\"The compiler folder is where all files and folders that is used to build your component is stored, the default location is [administrator\\/components\\/com_componentbuilder\\/compiler]. You can move this folder by adding your own path here. Remember to move all the content of the compiler folder to this new location or it will not work.\\\" \\r\\n\\theading=\\\"h4\\\" \\r\\n\\tclass=\\\"alert alert-info\\\" \\r\\n\\/>\"', 1, '2015-11-24 23:46:41', '0000-00-00 00:00:00', 1, '', 642, '7459c947-0796-4d42-9998-18f84c2d7e07', '', '', '', '', ''), (969, '', '', '', '', '', '', '', '', '', '', 'CHAR', '', '', '', 'Compiler Folder Path - Note', 'NOT NULL', '', 14, '\"<field \\r\\n\\ttype=\\\"note\\\" \\r\\n\\tname=\\\"note_compiler_folder_path\\\" \\r\\n\\tlabel=\\\"Moving The Compiler Folder\\\" \\r\\n\\tdescription=\\\"The compiler folder is where all files and folders that is used to build your component is stored, the default location is [administrator\\/components\\/com_componentbuilder\\/compiler]. You can move this folder by adding your own path here. Remember to move all the content of the compiler folder to this new location or it will not work.\\\" \\r\\n\\theading=\\\"h4\\\" \\r\\n\\tclass=\\\"alert alert-info\\\" \\r\\n\\/>\"', 1, '2015-11-24 23:46:41', '0000-00-00 00:00:00', 1, '', 642, '7459c947-0796-4d42-9998-18f84c2d7e07', '', '', '', '', ''),
(970, '', '', '', '', '', '', 1, '', 1, '', 'TINYINT', 2, '', '', 'Add Pagination', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"pagination\\\" \\r\\n\\tlabel=\\\"Add Pagination\\\" \\r\\n\\tdescription=\\\"Set if the query and its related views should use pagination.\\\" \\r\\n\\tclass=\\\"btn-group btn-group-yesno\\\" \\r\\n\\toption=\\\"1|Yes,0|No\\\" \\r\\n\\tdefault=\\\"1\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\/>\"', 1, '2015-11-29 00:44:58', '2015-11-29 01:00:27', 2, '', 643, 'b99a8df9-27ce-4502-9f44-863799cd2cc9', '', '', '', '', ''), (970, '', '', '', '', '', '', 1, '', 1, '', 'TINYINT', 2, '', '', 'Add Pagination', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"pagination\\\" \\r\\n\\tlabel=\\\"Add Pagination\\\" \\r\\n\\tdescription=\\\"Set if the query and its related views should use pagination.\\\" \\r\\n\\tclass=\\\"btn-group btn-group-yesno\\\" \\r\\n\\toption=\\\"1|Yes,0|No\\\" \\r\\n\\tdefault=\\\"1\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\/>\"', 1, '2015-11-29 00:44:58', '2015-11-29 01:00:27', 2, '', 643, 'b99a8df9-27ce-4502-9f44-863799cd2cc9', '', '', '', '', ''),
(971, '', '', 1, '', '', '', '', '', '', '', 'TEXT', '', 'alF1ZXJ5KCdpbnB1dC5mb3JtLWZpZWxkLXJlcGVhdGFibGUnKS5vbigndmFsdWUtdXBkYXRlJywgZnVuY3Rpb24oZSwgdmFsdWUpew0KCWlmICh2YWx1ZSkNCgl7DQoJCWJ1aWxkVGFibGUodmFsdWUsZS5jdXJyZW50VGFyZ2V0LmlkKTsNCgl9DQp9KTsNCg0KalF1ZXJ5KGRvY3VtZW50KS5yZWFkeShmdW5jdGlvbigpIHsgICAgDQoJdmFyIHZhbHVlc19hID0galF1ZXJ5KCcjamZvcm1fc2VsZWN0aW9uJykudmFsKCk7DQoJaWYgKHZhbHVlc19hKQ0KCXsNCgkJdmFsdWVzX2EgPSBqUXVlcnkucGFyc2VKU09OKHZhbHVlc19hKTsNCgkJYnVpbGRUYWJsZSh2YWx1ZXNfYSwnamZvcm1fc2VsZWN0aW9uJyk7DQoJfQ0KfSk7DQoNCmZ1bmN0aW9uIGJ1aWxkVGFibGUoYXJyYXksaWQpew0KCWpRdWVyeSgnI3RhYmxlXycraWQpLnJlbW92ZSgpOw0KCWpRdWVyeSgnIycraWQpLmNsb3Nlc3QoJy5jb250cm9sLWdyb3VwJykuYXBwZW5kKCc8dGFibGUgc3R5bGU9Im1hcmdpbjogNXB4IDAgMjBweDsiIGNsYXNzPSJ0YWJsZSIgaWQ9InRhYmxlXycraWQrJyI+Jyk7DQoJalF1ZXJ5KCcjdGFibGVfJytpZCkuYXBwZW5kKHRhYmxlSGVhZGVyKGFycmF5KSk7DQoJalF1ZXJ5KCcjdGFibGVfJytpZCkuYXBwZW5kKHRhYmxlQm9keShhcnJheSkpOyAgDQoJalF1ZXJ5KCcjdGFibGVfJytpZCkuYXBwZW5kKCc8L3RhYmxlPicpOw0KfQ0KDQpmdW5jdGlvbiB0YWJsZUhlYWRlcihhcnJheSl7DQoJdmFyIGhlYWRlciA9ICc8dGhlYWQ+PHRyPic7DQoJCWpRdWVyeS5lYWNoKGFycmF5LCBmdW5jdGlvbihrZXksIHZhbHVlKSB7DQoJCQloZWFkZXIgKz0gJzx0aCBzdHlsZT0icGFkZGluZzogMTBweDsgdGV4dC1hbGlnbjogY2VudGVyOyBib3JkZXI6IDFweCBzb2xpZCByZ2IoMjIxLCAyMjEsIDIyMSk7Ij4nK2NhcGl0YWxpemVGaXJzdExldHRlcihrZXkpKyc8L3RoPic7DQoJCX0pOw0KCQloZWFkZXIgKz0gJzwvdHI+PC90aGVhZD4nOw0KCXJldHVybiBoZWFkZXI7DQp9DQoNCmZ1bmN0aW9uIHRhYmxlQm9keShhcnJheSl7DQoJdmFyIGJvZHkgPSAnPHRib2R5Pic7DQoJdmFyIHJvd3MgPSBuZXcgQXJyYXkoKTsNCglqUXVlcnkuZWFjaChhcnJheSwgZnVuY3Rpb24oa2V5LCB2YWx1ZSkgew0KCQlqUXVlcnkuZWFjaCh2YWx1ZSwgZnVuY3Rpb24oaSwgbGluZSkgew0KCQkJaWYoIHJvd3NbaV0gPT09IHVuZGVmaW5lZCApIHsNCgkJCQlyb3dzW2ldID0gJzx0ZCBzdHlsZT0icGFkZGluZzogMTBweDsgdGV4dC1hbGlnbjogY2VudGVyOyBib3JkZXI6IDFweCBzb2xpZCByZ2IoMjIxLCAyMjEsIDIyMSk7Ij4nICsgbGluZSArICc8L3RkPic7DQoJCQl9DQoJCQllbHNlDQoJCQl7DQoJCQkJcm93c1tpXSA9IHJvd3NbaV0gKyAnPHRkIHN0eWxlPSJwYWRkaW5nOiAxMHB4OyB0ZXh0LWFsaWduOiBjZW50ZXI7IGJvcmRlcjogMXB4IHNvbGlkIHJnYigyMjEsIDIyMSwgMjIxKTsiPicgKyBsaW5lICsgJzwvdGQ+JzsNCgkJCX0NCgkJfSk7DQoJfSk7DQoJLy8gbm93IGxvYWQgdG8gYm9keSB0aGUgcm93cw0KCWpRdWVyeS5lYWNoKHJvd3MsIGZ1bmN0aW9uKGEsIHJvdykgew0KCQlib2R5ICs9ICc8dHI+JyArIHJvdyArICc8L3RyPic7DQoJfSk7DQoJYm9keSArPSAnPC90Ym9keT4nOw0KCXJldHVybiBib2R5OyAgICAgICAgICAgICAgICAgICAgICAgICAgICANCn0NCg0KZnVuY3Rpb24gY2FwaXRhbGl6ZUZpcnN0TGV0dGVyKHN0cmluZykgew0KICAgIHJldHVybiBzdHJpbmcuY2hhckF0KDApLnRvVXBwZXJDYXNlKCkgKyBzdHJpbmcuc2xpY2UoMSk7DQp9', '', 'Selection (repeatable)', 'NOT NULL', '', 19, '\"<field \\r\\n\\ttype=\\\"repeatable\\\" \\r\\n\\tname=\\\"selection\\\" \\r\\n\\tlabel=\\\"Selection\\\" \\r\\n\\tdescription=\\\"\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tid=\\\"selection\\\" \\r\\n\\tclass=\\\"selections\\\" \\r\\n\\tselect=\\\"Add\\\" \\r\\n\\ticon=\\\"list\\\" \\r\\n\\tmaximum=\\\"100\\\" \\r\\n\\tfields=\\\"244\\\" \\r\\n\\/>\"', 1, '2015-11-29 04:27:33', '2017-02-09 16:26:23', 4, '', 599, 'b9207068-ef48-4673-b2cb-853102fc36ae', '', '', '', '', ''), (971, '', '', 1, '', '', '', '', '', '', '', 'TEXT', '', 'alF1ZXJ5KCdpbnB1dC5mb3JtLWZpZWxkLXJlcGVhdGFibGUnKS5vbigndmFsdWUtdXBkYXRlJywgZnVuY3Rpb24oZSwgdmFsdWUpew0KCWlmICh2YWx1ZSkNCgl7DQoJCWJ1aWxkVGFibGUodmFsdWUsZS5jdXJyZW50VGFyZ2V0LmlkKTsNCgl9DQp9KTsNCg0KalF1ZXJ5KGRvY3VtZW50KS5yZWFkeShmdW5jdGlvbigpIHsgICAgDQoJdmFyIHZhbHVlc19hID0galF1ZXJ5KCcjamZvcm1fc2VsZWN0aW9uJykudmFsKCk7DQoJaWYgKHZhbHVlc19hKQ0KCXsNCgkJdmFsdWVzX2EgPSBqUXVlcnkucGFyc2VKU09OKHZhbHVlc19hKTsNCgkJYnVpbGRUYWJsZSh2YWx1ZXNfYSwnamZvcm1fc2VsZWN0aW9uJyk7DQoJfQ0KfSk7DQoNCmZ1bmN0aW9uIGJ1aWxkVGFibGUoYXJyYXksaWQpew0KCWpRdWVyeSgnI3RhYmxlXycraWQpLnJlbW92ZSgpOw0KCWpRdWVyeSgnIycraWQpLmNsb3Nlc3QoJy5jb250cm9sLWdyb3VwJykuYXBwZW5kKCc8dGFibGUgc3R5bGU9Im1hcmdpbjogNXB4IDAgMjBweDsiIGNsYXNzPSJ0YWJsZSIgaWQ9InRhYmxlXycraWQrJyI+Jyk7DQoJalF1ZXJ5KCcjdGFibGVfJytpZCkuYXBwZW5kKHRhYmxlSGVhZGVyKGFycmF5KSk7DQoJalF1ZXJ5KCcjdGFibGVfJytpZCkuYXBwZW5kKHRhYmxlQm9keShhcnJheSkpOyAgDQoJalF1ZXJ5KCcjdGFibGVfJytpZCkuYXBwZW5kKCc8L3RhYmxlPicpOw0KfQ0KDQpmdW5jdGlvbiB0YWJsZUhlYWRlcihhcnJheSl7DQoJdmFyIGhlYWRlciA9ICc8dGhlYWQ+PHRyPic7DQoJCWpRdWVyeS5lYWNoKGFycmF5LCBmdW5jdGlvbihrZXksIHZhbHVlKSB7DQoJCQloZWFkZXIgKz0gJzx0aCBzdHlsZT0icGFkZGluZzogMTBweDsgdGV4dC1hbGlnbjogY2VudGVyOyBib3JkZXI6IDFweCBzb2xpZCByZ2IoMjIxLCAyMjEsIDIyMSk7Ij4nK2NhcGl0YWxpemVGaXJzdExldHRlcihrZXkpKyc8L3RoPic7DQoJCX0pOw0KCQloZWFkZXIgKz0gJzwvdHI+PC90aGVhZD4nOw0KCXJldHVybiBoZWFkZXI7DQp9DQoNCmZ1bmN0aW9uIHRhYmxlQm9keShhcnJheSl7DQoJdmFyIGJvZHkgPSAnPHRib2R5Pic7DQoJdmFyIHJvd3MgPSBuZXcgQXJyYXkoKTsNCglqUXVlcnkuZWFjaChhcnJheSwgZnVuY3Rpb24oa2V5LCB2YWx1ZSkgew0KCQlqUXVlcnkuZWFjaCh2YWx1ZSwgZnVuY3Rpb24oaSwgbGluZSkgew0KCQkJaWYoIHJvd3NbaV0gPT09IHVuZGVmaW5lZCApIHsNCgkJCQlyb3dzW2ldID0gJzx0ZCBzdHlsZT0icGFkZGluZzogMTBweDsgdGV4dC1hbGlnbjogY2VudGVyOyBib3JkZXI6IDFweCBzb2xpZCByZ2IoMjIxLCAyMjEsIDIyMSk7Ij4nICsgbGluZSArICc8L3RkPic7DQoJCQl9DQoJCQllbHNlDQoJCQl7DQoJCQkJcm93c1tpXSA9IHJvd3NbaV0gKyAnPHRkIHN0eWxlPSJwYWRkaW5nOiAxMHB4OyB0ZXh0LWFsaWduOiBjZW50ZXI7IGJvcmRlcjogMXB4IHNvbGlkIHJnYigyMjEsIDIyMSwgMjIxKTsiPicgKyBsaW5lICsgJzwvdGQ+JzsNCgkJCX0NCgkJfSk7DQoJfSk7DQoJLy8gbm93IGxvYWQgdG8gYm9keSB0aGUgcm93cw0KCWpRdWVyeS5lYWNoKHJvd3MsIGZ1bmN0aW9uKGEsIHJvdykgew0KCQlib2R5ICs9ICc8dHI+JyArIHJvdyArICc8L3RyPic7DQoJfSk7DQoJYm9keSArPSAnPC90Ym9keT4nOw0KCXJldHVybiBib2R5OyAgICAgICAgICAgICAgICAgICAgICAgICAgICANCn0NCg0KZnVuY3Rpb24gY2FwaXRhbGl6ZUZpcnN0TGV0dGVyKHN0cmluZykgew0KICAgIHJldHVybiBzdHJpbmcuY2hhckF0KDApLnRvVXBwZXJDYXNlKCkgKyBzdHJpbmcuc2xpY2UoMSk7DQp9', '', 'Selection (repeatable)', 'NOT NULL', '', 19, '\"<field \\r\\n\\ttype=\\\"repeatable\\\" \\r\\n\\tname=\\\"selection\\\" \\r\\n\\tlabel=\\\"Selection\\\" \\r\\n\\tdescription=\\\"\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tid=\\\"selection\\\" \\r\\n\\tclass=\\\"selections\\\" \\r\\n\\tselect=\\\"Add\\\" \\r\\n\\ticon=\\\"list\\\" \\r\\n\\tmaximum=\\\"100\\\" \\r\\n\\tfields=\\\"244\\\" \\r\\n\\/>\"', 1, '2015-11-29 04:27:33', '2017-02-09 16:26:23', 4, '', 599, 'b9207068-ef48-4673-b2cb-853102fc36ae', '', '', '', '', ''),
(972, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Readme (editor)', 'NOT NULL', 2, 8, '\"<field\\n\\ttype=\\\"editor\\\"\\n\\tname=\\\"readme\\\"\\n\\tlabel=\\\"README.md\\\"\\n\\tdefault=\\\"You can use all the normal markdown, including the place-holders.\\\"\\n\\twidth=\\\"100%\\\"\\n\\theight=\\\"1200px\\\"\\n\\tcols=\\\"\\\"\\n\\trows=\\\"\\\"\\n\\tbuttons=\\\"false\\\"\\n\\thide=\\\"\\\"\\n\\teditor=\\\"none\\\"\\n\\tfilter=\\\"raw\\\"\\n\\/>\"', 1, '2015-11-30 06:29:56', '2019-07-08 14:17:20', 13, '', 644, '87a4b892-c4cb-4032-8511-e18ba8c8c202', '', '', '', '', ''), (972, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Readme (editor)', 'NOT NULL', 2, 8, '\"<field\\n\\ttype=\\\"editor\\\"\\n\\tname=\\\"readme\\\"\\n\\tlabel=\\\"README.md\\\"\\n\\tdefault=\\\"You can use all the normal markdown, including the place-holders.\\\"\\n\\twidth=\\\"100%\\\"\\n\\theight=\\\"1200px\\\"\\n\\tbuttons=\\\"false\\\"\\n\\teditor=\\\"none\\\"\\n\\tfilter=\\\"raw\\\"\\n\\tshowon=\\\"addreadme:1\\\"\\n\\/>\"', 1, '2015-11-30 06:29:56', '2024-04-19 08:26:34', 14, '', 644, '87a4b892-c4cb-4032-8511-e18ba8c8c202', '', '', '', '', ''),
(973, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'add Readme', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"addReadme\\\" \\r\\n\\tlabel=\\\"Add README\\\" \\r\\n\\tdescription=\\\"\\\" \\r\\n\\tclass=\\\"btn-group btn-group-yesno\\\" \\r\\n\\toption=\\\"1|Yes,0|No\\\" \\r\\n\\tdefault=\\\"0\\\" \\r\\n\\trequired=\\\"\\\" \\r\\n\\/>\"', 1, '2015-11-30 06:30:34', '2015-11-30 06:30:47', 2, '', 644, '03de1a61-d639-4d48-8ce6-fcf16c8f6270', '', '', '', '', ''), (973, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'add Readme', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"addreadme\\\"\\n\\tlabel=\\\"Add README\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"1|Yes,0|No\\\"\\n\\tdefault=\\\"0\\\"\\n\\trequired=\\\"true\\\"\\n\\/>\"', 1, '2015-11-30 06:30:34', '2024-04-19 08:25:19', 4, '', 644, '03de1a61-d639-4d48-8ce6-fcf16c8f6270', '', '', '', '', ''),
(974, '', '', '', '', '', '', '', '', '', '', '', '', '', '', 'add Readme Note', 'NOT NULL', '', 14, '\"<field\\n\\ttype=\\\"note\\\"\\n\\tname=\\\"note_readme\\\"\\n\\tlabel=\\\"Demo README (with all place-holders)\\\"\\n\\tdescription=\\\"[CUSTOMCODE=markdownCheatsheet]\\\"\\n\\theading=\\\"h4\\\"\\n\\/>\"', 1, '2015-11-30 08:06:36', '2020-06-01 22:41:22', 35, '', 645, '4d28e56e-bc8d-4a7f-a431-870e9b5e10b9', '', '', '', '', ''), (974, '', '', '', '', '', '', '', '', '', '', '', '', '', '', 'add Readme Note', 'NOT NULL', '', 14, '\"<field\\n\\ttype=\\\"note\\\"\\n\\tname=\\\"note_readme\\\"\\n\\tlabel=\\\"Demo README (with all place-holders)\\\"\\n\\tdescription=\\\"[CUSTOMCODE=markdownCheatsheet]\\\"\\n\\theading=\\\"h4\\\"\\n\\tshowon=\\\"addreadme:1\\\"\\n\\/>\"', 1, '2015-11-30 08:06:36', '2024-04-19 08:25:52', 36, '', 645, '4d28e56e-bc8d-4a7f-a431-870e9b5e10b9', '', '', '', '', ''),
(975, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', 2, '', '', 'Form - Unique Code', 'NOT NULL', '', 24, '\"<field\\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"name\\\" \\r\\n\\tlabel=\\\"Unique Code\\\" \\r\\n\\tsize=\\\"60\\\" \\r\\n\\tmaxlength=\\\"150\\\" \\r\\n\\tdescription=\\\"Enter Field Name Here. It is the unique name of the field. Used in code, not seen!\\\"\\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\treadonly=\\\"false\\\" \\r\\n\\tdisabled=\\\"false\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\tfilter=\\\"WORD\\\" \\r\\n\\tmessage=\\\"Error! Please add field name here.\\\" \\r\\n\\thint=\\\"Unique Code Name Here\\\" \\r\\n\\/>\"', 1, '2015-12-04 01:26:11', '2016-06-12 17:51:29', 7, '', 242, '77fc2110-c0e9-427e-bc5a-39e4ada8aede', '', '', '', '', ''), (975, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', 2, '', '', 'Form - Unique Code', 'NOT NULL', '', 24, '\"<field\\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"name\\\" \\r\\n\\tlabel=\\\"Unique Code\\\" \\r\\n\\tsize=\\\"60\\\" \\r\\n\\tmaxlength=\\\"150\\\" \\r\\n\\tdescription=\\\"Enter Field Name Here. It is the unique name of the field. Used in code, not seen!\\\"\\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\treadonly=\\\"false\\\" \\r\\n\\tdisabled=\\\"false\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\tfilter=\\\"WORD\\\" \\r\\n\\tmessage=\\\"Error! Please add field name here.\\\" \\r\\n\\thint=\\\"Unique Code Name Here\\\" \\r\\n\\/>\"', 1, '2015-12-04 01:26:11', '2016-06-12 17:51:29', 7, '', 242, '77fc2110-c0e9-427e-bc5a-39e4ada8aede', '', '', '', '', ''),
(976, '', '', '', '', '', '', '', '', 7, '', 'INT', 2, '', '', 'Form - Size', 'NOT NULL', '', 24, '\"<field\\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"size\\\" \\r\\n\\tlabel=\\\"Size\\\" \\r\\n\\tsize=\\\"60\\\" \\r\\n\\tmaxlength=\\\"150\\\" \\r\\n\\tdescription=\\\"Enter Field Size Here. It is the width of the text box in characters. If omitted the width is determined by the browser. The value of size does not limit the number of characters that may be entered.\\\"\\r\\n\\tclass=\\\"text_area\\\"\\r\\n\\tfilter=\\\"INT\\\" \\r\\n\\tmessage=\\\"Error! Please add field size here.\\\" \\r\\n\\thint=\\\"Only Numbers\\\" \\r\\n\\/>\"', 1, '2015-12-04 01:28:11', '2015-12-04 08:44:42', 4, '', 242, '1893300a-c442-42e2-b7f3-20065f878430', '', '', '', '', ''), (976, '', '', '', '', '', '', '', '', 7, '', 'INT', 2, '', '', 'Form - Size', 'NOT NULL', '', 24, '\"<field\\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"size\\\" \\r\\n\\tlabel=\\\"Size\\\" \\r\\n\\tsize=\\\"60\\\" \\r\\n\\tmaxlength=\\\"150\\\" \\r\\n\\tdescription=\\\"Enter Field Size Here. It is the width of the text box in characters. If omitted the width is determined by the browser. The value of size does not limit the number of characters that may be entered.\\\"\\r\\n\\tclass=\\\"text_area\\\"\\r\\n\\tfilter=\\\"INT\\\" \\r\\n\\tmessage=\\\"Error! Please add field size here.\\\" \\r\\n\\thint=\\\"Only Numbers\\\" \\r\\n\\/>\"', 1, '2015-12-04 01:28:11', '2015-12-04 08:44:42', 4, '', 242, '1893300a-c442-42e2-b7f3-20065f878430', '', '', '', '', ''),
(977, '', '', '', '', '', '', '', '', 7, '', 'INT', 2, '', '', 'Form - Maxlength', 'NOT NULL', '', 24, '\"<field\\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"maxlength\\\" \\r\\n\\tlabel=\\\"Max Length\\\" \\r\\n\\tsize=\\\"60\\\" \\r\\n\\tmaxlength=\\\"150\\\" \\r\\n\\tdescription=\\\"Enter Field Max Length Here. It limits the number of characters that may be entered.\\\"\\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\tfilter=\\\"INT\\\"\\r\\n\\tmessage=\\\"Error! Please add field max length here.\\\" \\r\\n\\thint=\\\"Only Numbers\\\" \\r\\n\\/>\"', 1, '2015-12-04 01:29:15', '2015-12-04 08:45:20', 4, '', 242, '99814dc5-bd0d-4e81-90fe-3ea1b42a3142', '', '', '', '', ''), (977, '', '', '', '', '', '', '', '', 7, '', 'INT', 2, '', '', 'Form - Maxlength', 'NOT NULL', '', 24, '\"<field\\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"maxlength\\\" \\r\\n\\tlabel=\\\"Max Length\\\" \\r\\n\\tsize=\\\"60\\\" \\r\\n\\tmaxlength=\\\"150\\\" \\r\\n\\tdescription=\\\"Enter Field Max Length Here. It limits the number of characters that may be entered.\\\"\\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\tfilter=\\\"INT\\\"\\r\\n\\tmessage=\\\"Error! Please add field max length here.\\\" \\r\\n\\thint=\\\"Only Numbers\\\" \\r\\n\\/>\"', 1, '2015-12-04 01:29:15', '2015-12-04 08:45:20', 4, '', 242, '99814dc5-bd0d-4e81-90fe-3ea1b42a3142', '', '', '', '', ''),
@ -3239,15 +3242,15 @@ INSERT INTO `#__componentbuilder_field` (`id`, `add_css_view`, `add_css_views`,
(1022, 1, '', '', '', 'Lm15c3FsX3VwZGF0ZSB7IHdpZHRoOiAxMDAlOyBoZWlnaHQ6IDM5MnB4OyB9', '', '', '', '', '', 'TEXT', '', '', '', 'MySQL (version update)', 'NOT NULL', '', 25, '\"<field \\r\\n\\ttype=\\\"textarea\\\" \\r\\n\\tname=\\\"mysql\\\" \\r\\n\\tlabel=\\\"MySQL\\\" \\r\\n\\trows=\\\"30\\\" \\r\\n\\tcols=\\\"15\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tdescription=\\\"Update Dump\\\" \\r\\n\\tclass=\\\"text_area mysql_update\\\" \\r\\n\\tfilter=\\\"raw\\\" \\r\\n\\thint=\\\"\\/\\/ MySQL for update or blank for none\\\"\\r\\n\\/>\"', 1, '2015-12-17 17:36:45', '2017-10-26 02:17:40', 9, '', 653, '98d5f71a-5236-4c20-845f-26d89e0c6f68', '', '', '', '', ''), (1022, 1, '', '', '', 'Lm15c3FsX3VwZGF0ZSB7IHdpZHRoOiAxMDAlOyBoZWlnaHQ6IDM5MnB4OyB9', '', '', '', '', '', 'TEXT', '', '', '', 'MySQL (version update)', 'NOT NULL', '', 25, '\"<field \\r\\n\\ttype=\\\"textarea\\\" \\r\\n\\tname=\\\"mysql\\\" \\r\\n\\tlabel=\\\"MySQL\\\" \\r\\n\\trows=\\\"30\\\" \\r\\n\\tcols=\\\"15\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tdescription=\\\"Update Dump\\\" \\r\\n\\tclass=\\\"text_area mysql_update\\\" \\r\\n\\tfilter=\\\"raw\\\" \\r\\n\\thint=\\\"\\/\\/ MySQL for update or blank for none\\\"\\r\\n\\/>\"', 1, '2015-12-17 17:36:45', '2017-10-26 02:17:40', 9, '', 653, '98d5f71a-5236-4c20-845f-26d89e0c6f68', '', '', '', '', ''),
(1023, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Version Update (controler)', 'NOT NULL', '', 35, '\"<field\\n\\ttype=\\\"subform\\\"\\n\\tname=\\\"version_update\\\"\\n\\tlabel=\\\"Version Updates\\\"\\n\\tlayout=\\\"repeatablejcb\\\"\\n\\tmultiple=\\\"true\\\"\\n\\tfields=\\\"1021,1022,1024\\\"\\n\\tdescription=\\\"Add Version Updates Here!\\\"\\n\\tdefault=\\\"\\\"\\n\\ticon=\\\"list\\\"\\n\\/>\"', 1, '2015-12-17 17:39:17', '2021-12-16 06:54:40', 7, '', 653, '7d49445c-4e95-4fd5-a2a4-a20bbcd4d812', '', '', '', '', ''), (1023, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Version Update (controler)', 'NOT NULL', '', 35, '\"<field\\n\\ttype=\\\"subform\\\"\\n\\tname=\\\"version_update\\\"\\n\\tlabel=\\\"Version Updates\\\"\\n\\tlayout=\\\"repeatablejcb\\\"\\n\\tmultiple=\\\"true\\\"\\n\\tfields=\\\"1021,1022,1024\\\"\\n\\tdescription=\\\"Add Version Updates Here!\\\"\\n\\tdefault=\\\"\\\"\\n\\ticon=\\\"list\\\"\\n\\/>\"', 1, '2015-12-17 17:39:17', '2021-12-16 06:54:40', 7, '', 653, '7d49445c-4e95-4fd5-a2a4-a20bbcd4d812', '', '', '', '', ''),
(1024, 1, '', '', '', 'LnZlcnNpb25fdXJsIHsgbWluLXdpZHRoOiAxMDAlOyB9', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Version URL', 'NOT NULL', '', 27, '\"<field \\r\\n\\ttype=\\\"url\\\" \\r\\n\\tname=\\\"url\\\" \\r\\n\\tlabel=\\\"Version URL\\\" \\r\\n\\tsize=\\\"60\\\" \\r\\n\\tmaxlength=\\\"150\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tdescription=\\\"Enter Download Link\\\" \\r\\n\\tclass=\\\"text_area version_url\\\" \\r\\n\\treadonly=\\\"\\\" \\r\\n\\tdisabled=\\\"\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\tfilter=\\\"raw\\\" \\r\\n\\tvalidated=\\\"url\\\" \\r\\n\\tmessage=\\\"Error! Please add url here.\\\" \\r\\n\\thint=\\\"http:\\/\\/www.example.com\\/file.zip\\\" \\r\\n\\/>\"', 1, '2015-12-22 09:08:12', '2017-10-26 02:25:07', 5, '', 378, '09b62f71-d765-4f48-806d-6dd7dc5ceaaf', '', '', '', '', ''), (1024, 1, '', '', '', 'LnZlcnNpb25fdXJsIHsgbWluLXdpZHRoOiAxMDAlOyB9', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Version URL', 'NOT NULL', '', 27, '\"<field \\r\\n\\ttype=\\\"url\\\" \\r\\n\\tname=\\\"url\\\" \\r\\n\\tlabel=\\\"Version URL\\\" \\r\\n\\tsize=\\\"60\\\" \\r\\n\\tmaxlength=\\\"150\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tdescription=\\\"Enter Download Link\\\" \\r\\n\\tclass=\\\"text_area version_url\\\" \\r\\n\\treadonly=\\\"\\\" \\r\\n\\tdisabled=\\\"\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\tfilter=\\\"raw\\\" \\r\\n\\tvalidated=\\\"url\\\" \\r\\n\\tmessage=\\\"Error! Please add url here.\\\" \\r\\n\\thint=\\\"http:\\/\\/www.example.com\\/file.zip\\\" \\r\\n\\/>\"', 1, '2015-12-22 09:08:12', '2017-10-26 02:25:07', 5, '', 378, '09b62f71-d765-4f48-806d-6dd7dc5ceaaf', '', '', '', '', ''),
(1025, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Update Server URL', 'NOT NULL', '', 27, '\"<field\\n\\ttype=\\\"url\\\"\\n\\tname=\\\"update_server_url\\\"\\n\\tlabel=\\\"Update Server\\\"\\n\\tsize=\\\"60\\\"\\n\\tmaxlength=\\\"150\\\"\\n\\tdefault=\\\"\\\"\\n\\tdescription=\\\"Enter Update Server URL\\\"\\n\\tclass=\\\"text_area span12\\\"\\n\\tfilter=\\\"url\\\"\\n\\tvalidated=\\\"url\\\"\\n\\tmessage=\\\"Error! Please add url here.\\\"\\n\\thint=\\\"http:\\/\\/www.example.com\\/update\\/extension_name.xml\\\"\\n\\/>\"', 1, '2015-12-22 09:10:04', '2019-07-23 20:29:03', 4, '', 378, 'e6c263b1-da39-4a73-8585-637dc3a5b8eb', '', '', '', '', ''), (1025, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Update Server URL', 'NOT NULL', '', 27, '\"<field\\n\\ttype=\\\"url\\\"\\n\\tname=\\\"update_server_url\\\"\\n\\tlabel=\\\"Update Server\\\"\\n\\tsize=\\\"60\\\"\\n\\tmaxlength=\\\"150\\\"\\n\\tdescription=\\\"Enter Update Server URL\\\"\\n\\tclass=\\\"text_area span12\\\"\\n\\tfilter=\\\"url\\\"\\n\\tvalidated=\\\"url\\\"\\n\\tmessage=\\\"Error! Please add url here.\\\"\\n\\thint=\\\"http:\\/\\/www.example.com\\/update\\/extension_name.xml\\\"\\n\\tshowon=\\\"add_update_server:1\\\"\\n\\/>\"', 1, '2015-12-22 09:10:04', '2024-04-19 08:27:36', 5, '', 378, 'e6c263b1-da39-4a73-8585-637dc3a5b8eb', '', '', '', '', ''),
(1026, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Add Update Server', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"add_update_server\\\" \\r\\n\\tlabel=\\\"Add Update Server\\\" \\r\\n\\tdescription=\\\"\\\" \\r\\n\\tclass=\\\"btn-group btn-group-yesno\\\" \\r\\n\\toption=\\\"1|Yes,0|No\\\" \\r\\n\\tdefault=\\\"0\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\/>\"', 1, '2015-12-22 19:23:52', '2015-08-25 21:15:22', 1, '', 192, 'db2835aa-b0c3-4c9a-abe6-5b09568fffda', '', '', '', '', ''), (1026, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Add Update Server', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"add_update_server\\\"\\n\\tlabel=\\\"Add Update Server\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"1|Yes,0|No\\\"\\n\\tdefault=\\\"0\\\"\\n\\trequired=\\\"true\\\"\\n\\/>\"', 1, '2015-12-22 19:23:52', '2024-04-19 08:27:16', 2, '', 192, 'db2835aa-b0c3-4c9a-abe6-5b09568fffda', '', '', '', '', ''),
(1027, '', '', '', '', '', '', '', '', 11, '', 'INT', '', '', '', 'Update Server (gateway)', 'NOT NULL', '', 6, '\"<field \\r\\n\\ttype=\\\"servers\\\" \\r\\n\\tname=\\\"update_server\\\"\\r\\n\\tlabel=\\\"Update Server\\\" \\r\\n\\tdescription=\\\"Select your update server for this component.\\\" \\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\tmultiple=\\\"false\\\" \\r\\n\\tdefault=\\\"0\\\" \\r\\n\\tbutton=\\\"true\\\"\\r\\n\\textends=\\\"list\\\" \\r\\n\\ttable=\\\"#__###component###_server\\\" \\r\\n\\tcomponent=\\\"com_###component###\\\" \\r\\n\\tview=\\\"server\\\" \\r\\n\\tviews=\\\"servers\\\" \\r\\n\\tvalue_field=\\\"name\\\" \\r\\n\\tkey_field=\\\"id\\\" \\r\\n\\tprime_php=\\\"1\\\"\\r\\n\\ttype_php_1=\\\"$db = JFactory::getDBO();\\\" \\r\\n\\ttype_php_2=\\\"$query = $db->getQuery(true);\\\" \\r\\n\\ttype_php_3=\\\"$query->select($db->quoteName(array(\'a.###ID###\',\'a.###TEXT###\',\'a.protocol\'),array(\'###ID###\',\'name\', \'protocol\')));\\\" \\r\\n\\ttype_php_4=\\\"$query->from($db->quoteName(\'###TABLE###\', \'a\'));\\\" \\r\\n\\ttype_php_5=\\\"$query->where($db->quoteName(\'a.published\') . \' >= 1\');\\\" \\r\\n\\ttype_php_6=\\\"$query->order(\'a.###TEXT### ASC\');\\\" \\r\\n\\ttype_php_7=\\\"$db->setQuery((string)$query);\\\" \\r\\n\\ttype_php_8=\\\"$items = $db->loadObjectList();\\\" \\r\\n\\ttype_php_9=\\\"$options = array();\\\" \\r\\n\\ttype_php_10=\\\"if ($items)\\\" \\r\\n\\ttype_php_11=\\\"{\\\" \\r\\n\\ttype_php_12=\\\"\\\\t$options[] = JHtml::_(\'select.option\', \'\', \'Select an option\');\\\" \\r\\n\\ttype_php_13=\\\"\\\\tforeach($items as $item)\\\" \\r\\n\\ttype_php_14=\\\"\\\\t{\\\\n\\\\t\\\\t\\\\t$item->protocol = ($item->protocol == 2) ? JText::_(\'SFTP\') : JText::_(\'FTP\');\\\" \\r\\n\\ttype_php_15=\\\"\\\\t\\\\t$options[] = JHtml::_(\'select.option\', $item->###ID###, $item->name.\' [\'.$item->protocol.\']\');\\\" \\r\\n\\ttype_php_16=\\\"\\\\t}\\\" \\r\\n\\ttype_php_17=\\\"}\\\" \\r\\n\\ttype_php_18=\\\"\\\" \\r\\n\\ttype_php_19=\\\"return $options;\\\" \\r\\n\\/>\"', 1, '2015-12-23 09:26:11', '2018-02-20 21:28:52', 21, '', 192, '33fb33c3-1ff2-4d4c-8fe8-6aaa93c1646a', '', '', '', '', ''), (1027, '', '', '', '', '', '', '', '', 11, '', 'INT', '', '', '', 'Update Server (gateway)', 'NOT NULL', '', 6, '\"<field \\r\\n\\ttype=\\\"servers\\\" \\r\\n\\tname=\\\"update_server\\\"\\r\\n\\tlabel=\\\"Update Server\\\" \\r\\n\\tdescription=\\\"Select your update server for this component.\\\" \\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\tmultiple=\\\"false\\\" \\r\\n\\tdefault=\\\"0\\\" \\r\\n\\tbutton=\\\"true\\\"\\r\\n\\textends=\\\"list\\\" \\r\\n\\ttable=\\\"#__###component###_server\\\" \\r\\n\\tcomponent=\\\"com_###component###\\\" \\r\\n\\tview=\\\"server\\\" \\r\\n\\tviews=\\\"servers\\\" \\r\\n\\tvalue_field=\\\"name\\\" \\r\\n\\tkey_field=\\\"id\\\" \\r\\n\\tprime_php=\\\"1\\\"\\r\\n\\ttype_php_1=\\\"$db = JFactory::getDBO();\\\" \\r\\n\\ttype_php_2=\\\"$query = $db->getQuery(true);\\\" \\r\\n\\ttype_php_3=\\\"$query->select($db->quoteName(array(\'a.###ID###\',\'a.###TEXT###\',\'a.protocol\'),array(\'###ID###\',\'name\', \'protocol\')));\\\" \\r\\n\\ttype_php_4=\\\"$query->from($db->quoteName(\'###TABLE###\', \'a\'));\\\" \\r\\n\\ttype_php_5=\\\"$query->where($db->quoteName(\'a.published\') . \' >= 1\');\\\" \\r\\n\\ttype_php_6=\\\"$query->order(\'a.###TEXT### ASC\');\\\" \\r\\n\\ttype_php_7=\\\"$db->setQuery((string)$query);\\\" \\r\\n\\ttype_php_8=\\\"$items = $db->loadObjectList();\\\" \\r\\n\\ttype_php_9=\\\"$options = array();\\\" \\r\\n\\ttype_php_10=\\\"if ($items)\\\" \\r\\n\\ttype_php_11=\\\"{\\\" \\r\\n\\ttype_php_12=\\\"\\\\t$options[] = JHtml::_(\'select.option\', \'\', \'Select an option\');\\\" \\r\\n\\ttype_php_13=\\\"\\\\tforeach($items as $item)\\\" \\r\\n\\ttype_php_14=\\\"\\\\t{\\\\n\\\\t\\\\t\\\\t$item->protocol = ($item->protocol == 2) ? JText::_(\'SFTP\') : JText::_(\'FTP\');\\\" \\r\\n\\ttype_php_15=\\\"\\\\t\\\\t$options[] = JHtml::_(\'select.option\', $item->###ID###, $item->name.\' [\'.$item->protocol.\']\');\\\" \\r\\n\\ttype_php_16=\\\"\\\\t}\\\" \\r\\n\\ttype_php_17=\\\"}\\\" \\r\\n\\ttype_php_18=\\\"\\\" \\r\\n\\ttype_php_19=\\\"return $options;\\\" \\r\\n\\/>\"', 1, '2015-12-23 09:26:11', '2018-02-20 21:28:52', 21, '', 192, '33fb33c3-1ff2-4d4c-8fe8-6aaa93c1646a', '', '', '', '', ''),
(1028, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'Programs Menu Item', 'NOT NULL', '', 33, '\"<field \\r\\n\\ttype=\\\"menuitem\\\" \\r\\n\\tname=\\\"programs_menu\\\" \\r\\n\\tlabel=\\\"Programs Menu Item\\\" \\r\\n\\tdescription=\\\"Select the menu item you would like your programs view to be linked to.\\\" \\r\\n\\tfilter=\\\"int\\\" \\r\\n\\tpublished=\\\"1\\\"\\r\\n\\/>\"', 1, '2016-01-02 15:44:28', '2015-11-14 15:15:11', 1, '', 637, '93660a37-62e2-4d61-a73c-98bdfa83c5bd', '', '', '', '', ''), (1028, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'Programs Menu Item', 'NOT NULL', '', 33, '\"<field \\r\\n\\ttype=\\\"menuitem\\\" \\r\\n\\tname=\\\"programs_menu\\\" \\r\\n\\tlabel=\\\"Programs Menu Item\\\" \\r\\n\\tdescription=\\\"Select the menu item you would like your programs view to be linked to.\\\" \\r\\n\\tfilter=\\\"int\\\" \\r\\n\\tpublished=\\\"1\\\"\\r\\n\\/>\"', 1, '2016-01-02 15:44:28', '2015-11-14 15:15:11', 1, '', 637, '93660a37-62e2-4d61-a73c-98bdfa83c5bd', '', '', '', '', ''),
(1029, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'Register Menu Item', 'NOT NULL', '', 33, '\"<field \\r\\n\\ttype=\\\"menuitem\\\" \\r\\n\\tname=\\\"register_menu\\\" \\r\\n\\tlabel=\\\"Register Menu Item\\\" \\r\\n\\tdescription=\\\"Select the menu item you would like your register view to be linked to.\\\" \\r\\n\\tfilter=\\\"int\\\" \\r\\n\\tpublished=\\\"1\\\"\\r\\n\\/>\"', 1, '2016-01-02 15:48:25', '2015-11-14 15:15:11', 1, '', 637, '4ce53cfe-3e0b-4dde-9c38-6475ec64fdf6', '', '', '', '', ''), (1029, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'Register Menu Item', 'NOT NULL', '', 33, '\"<field \\r\\n\\ttype=\\\"menuitem\\\" \\r\\n\\tname=\\\"register_menu\\\" \\r\\n\\tlabel=\\\"Register Menu Item\\\" \\r\\n\\tdescription=\\\"Select the menu item you would like your register view to be linked to.\\\" \\r\\n\\tfilter=\\\"int\\\" \\r\\n\\tpublished=\\\"1\\\"\\r\\n\\/>\"', 1, '2016-01-02 15:48:25', '2015-11-14 15:15:11', 1, '', 637, '4ce53cfe-3e0b-4dde-9c38-6475ec64fdf6', '', '', '', '', ''),
(1030, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'Doassessment Menu Item', 'NOT NULL', '', 33, '\"<field \\r\\n\\ttype=\\\"menuitem\\\" \\r\\n\\tname=\\\"doassessment_menu\\\" \\r\\n\\tlabel=\\\"Doassessment Menu Item\\\" \\r\\n\\tdescription=\\\"Select the menu item you would like your do assessment view to be linked to.\\\" \\r\\n\\tfilter=\\\"int\\\" \\r\\n\\tpublished=\\\"1\\\"\\r\\n\\/>\"', 1, '2016-01-02 16:20:44', '2015-11-14 15:15:11', 1, '', 637, 'a6626a9d-e89c-4350-8fc1-7f979d3f5c3d', '', '', '', '', ''), (1030, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'Doassessment Menu Item', 'NOT NULL', '', 33, '\"<field \\r\\n\\ttype=\\\"menuitem\\\" \\r\\n\\tname=\\\"doassessment_menu\\\" \\r\\n\\tlabel=\\\"Doassessment Menu Item\\\" \\r\\n\\tdescription=\\\"Select the menu item you would like your do assessment view to be linked to.\\\" \\r\\n\\tfilter=\\\"int\\\" \\r\\n\\tpublished=\\\"1\\\"\\r\\n\\/>\"', 1, '2016-01-02 16:20:44', '2015-11-14 15:15:11', 1, '', 637, 'a6626a9d-e89c-4350-8fc1-7f979d3f5c3d', '', '', '', '', ''),
(1031, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'Event Menu Item', 'NOT NULL', '', 33, '\"<field \\r\\n\\ttype=\\\"menuitem\\\" \\r\\n\\tname=\\\"event_menu\\\" \\r\\n\\tlabel=\\\"Event Menu Item\\\" \\r\\n\\tdescription=\\\"Select the menu item you would like your event view to be linked to.\\\" \\r\\n\\tfilter=\\\"int\\\" \\r\\n\\tpublished=\\\"1\\\"\\r\\n\\/>\"', 1, '2016-01-02 16:23:19', '2015-11-14 15:15:11', 1, '', 637, 'c0dfd19c-40fc-4332-bcf5-ab0f04aaf2ea', '', '', '', '', ''), (1031, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'Event Menu Item', 'NOT NULL', '', 33, '\"<field \\r\\n\\ttype=\\\"menuitem\\\" \\r\\n\\tname=\\\"event_menu\\\" \\r\\n\\tlabel=\\\"Event Menu Item\\\" \\r\\n\\tdescription=\\\"Select the menu item you would like your event view to be linked to.\\\" \\r\\n\\tfilter=\\\"int\\\" \\r\\n\\tpublished=\\\"1\\\"\\r\\n\\/>\"', 1, '2016-01-02 16:23:19', '2015-11-14 15:15:11', 1, '', 637, 'c0dfd19c-40fc-4332-bcf5-ab0f04aaf2ea', '', '', '', '', ''),
(1032, '', '', '', '', '', '', '', '', 11, '', 'INT', '', '', '', 'Sales Server (gateway)', 'NOT NULL', '', 6, '\"\\ttype=\\\"servers\\\" \\r\\n\\tname=\\\"sales_server\\\" \\r\\n\\tlabel=\\\"Sales Server\\\" \\r\\n\\tdescription=\\\"Select your sales server for this component\\\" \\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\tmultiple=\\\"false\\\" \\r\\n\\tdefault=\\\"0\\\" \\r\\n\\textends=\\\"list\\\" \\r\\n\\tbutton=\\\"true\\\" \\r\\n\\ttable=\\\"#__###component###_server\\\" \\r\\n\\tcomponent=\\\"com_###component###\\\" \\r\\n\\tview=\\\"server\\\" \\r\\n\\tviews=\\\"servers\\\" \\r\\n\\tvalue_field=\\\"name\\\" \\r\\n\\tkey_field=\\\"id\\\" \\r\\n\\ttype_php_1=\\\"$db = JFactory::getDBO();\\\" \\r\\n\\ttype_php_2=\\\"$query = $db->getQuery(true);\\\" \\r\\n\\ttype_php_3=\\\"$query->select($db->quoteName(array(\'a.###ID###\',\'a.###TEXT###\',\'a.protocol\'),array(\'###ID###\',\'###CODE_TEXT###\', \'protocol\')));\\\" \\r\\n\\ttype_php_4=\\\"$query->from($db->quoteName(\'###TABLE###\', \'a\'));\\\" \\r\\n\\ttype_php_5=\\\"$query->where($db->quoteName(\'a.published\') . \' >= 1\');\\\" \\r\\n\\ttype_php_6=\\\"$query->order(\'a.###TEXT### ASC\');\\\" \\r\\n\\ttype_php_7=\\\"$db->setQuery((string)$query);\\\" \\r\\n\\ttype_php_8=\\\"$items = $db->loadObjectList();\\\" \\r\\n\\ttype_php_9=\\\"$options = array();\\\" \\r\\n\\ttype_php_10=\\\"if ($items)\\\" \\r\\n\\ttype_php_11=\\\"{\\\" \\r\\n\\ttype_php_12=\\\"\\\\t$options[] = JHtml::_(\'select.option\', \'\', \'Select an option\');\\\" \\r\\n\\ttype_php_13=\\\"\\\\tforeach($items as $item)\\\" \\r\\n\\ttype_php_14=\\\"\\\\t{\\\\n\\\\t\\\\t\\\\t$item->protocol = ($item->protocol == 2) ? JText::_(\'SFTP\') : JText::_(\'FTP\');\\\" \\r\\n\\ttype_php_15=\\\"\\\\t\\\\t$options[] = JHtml::_(\'select.option\', $item->###ID###, $item->###CODE_TEXT###.\' [\'.$item->protocol.\']\');\\\" \\r\\n\\ttype_php_16=\\\"\\\\t}\\\" \\r\\n\\ttype_php_17=\\\"}\\\" \\r\\n\\ttype_php_18=\\\"\\\" \\r\\n\\ttype_php_19=\\\"return $options;\\\" \\r\\n\\/>\"', 1, '2016-01-06 07:47:20', '2018-02-19 15:21:52', 10, '', 192, '4553e8c2-3446-4e11-a967-0504509087a4', '', '', '', '', ''), (1032, '', '', '', '', '', '', '', '', 11, '', 'INT', '', '', '', 'Sales Server (gateway)', 'NOT NULL', '', 6, '\"<field\\n\\ttype=\\\"servers\\\"\\n\\tname=\\\"sales_server\\\"\\n\\tlabel=\\\"Sales Server\\\"\\n\\tdescription=\\\"Select your sales server for this component\\\"\\n\\tclass=\\\"list_class\\\"\\n\\tmultiple=\\\"false\\\"\\n\\tdefault=\\\"0\\\"\\n\\tshowon=\\\"add_sales_server:1\\\"\\n\\textends=\\\"list\\\"\\n\\tbutton=\\\"true\\\"\\n\\ttable=\\\"#__###component###_server\\\"\\n\\tcomponent=\\\"com_###component###\\\"\\n\\tview=\\\"server\\\"\\n\\tviews=\\\"servers\\\"\\n\\tvalue_field=\\\"name\\\"\\n\\tkey_field=\\\"id\\\"\\n\\ttype_php_1=\\\"__.o0=base64=Oo.__JGRiID0gRmFjdG9yeTo6Z2V0REJPKCk7DQokcXVlcnkgPSAkZGItPmdldFF1ZXJ5KHRydWUpOw0KJHF1ZXJ5LT5zZWxlY3QoJGRiLT5xdW90ZU5hbWUoYXJyYXkoJ2EuIyMjSUQjIyMnLCdhLiMjI1RFWFQjIyMnLCdhLnByb3RvY29sJyksYXJyYXkoJyMjI0lEIyMjJywnIyMjQ09ERV9URVhUIyMjJywgJ3Byb3RvY29sJykpKTsNCiRxdWVyeS0+ZnJvbSgkZGItPnF1b3RlTmFtZSgnIyMjVEFCTEUjIyMnLCAnYScpKTsNCiRxdWVyeS0+d2hlcmUoJGRiLT5xdW90ZU5hbWUoJ2EucHVibGlzaGVkJykgLiAnID49IDEnKTsNCiRxdWVyeS0+b3JkZXIoJ2EuIyMjVEVYVCMjIyBBU0MnKTsNCiRkYi0+c2V0UXVlcnkoKHN0cmluZykkcXVlcnkpOw0KJGl0ZW1zID0gJGRiLT5sb2FkT2JqZWN0TGlzdCgpOw0KJG9wdGlvbnMgPSBhcnJheSgpOw0KaWYgKCRpdGVtcykNCnsNCgkkb3B0aW9uc1tdID0gSHRtbDo6Xygnc2VsZWN0Lm9wdGlvbicsICcnLCAnU2VsZWN0IGFuIG9wdGlvbicpOw0KCWZvcmVhY2goJGl0ZW1zIGFzICRpdGVtKQ0KCXsNCgkJJGl0ZW0tPnByb3RvY29sID0gKCRpdGVtLT5wcm90b2NvbCA9PSAyKSA\\/IFRleHQ6Ol8oJ1NGVFAnKSA6IFRleHQ6Ol8oJ0ZUUCcpOw0KCQkkb3B0aW9uc1tdID0gSHRtbDo6Xygnc2VsZWN0Lm9wdGlvbicsICRpdGVtLT4jIyNJRCMjIywgJGl0ZW0tPiMjI0NPREVfVEVYVCMjIy4nIFsnLiRpdGVtLT5wcm90b2NvbC4nXScpOw0KCX0NCn0NCg0KcmV0dXJuICRvcHRpb25zOw==\\\"\\n\\/>\"', 1, '2016-01-06 07:47:20', '2024-04-19 08:30:27', 12, '', 192, '4553e8c2-3446-4e11-a967-0504509087a4', '', '', '', '', ''),
(1033, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Add Sales Server', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"add_sales_server\\\" \\r\\n\\tlabel=\\\"Add Sales Server\\\" \\r\\n\\tdescription=\\\"\\\" \\r\\n\\tclass=\\\"btn-group btn-group-yesno\\\" \\r\\n\\toption=\\\"1|Yes,0|No\\\" \\r\\n\\tdefault=\\\"0\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\/>\"', 1, '2016-01-06 07:52:15', '2015-08-25 21:15:22', 1, '', 192, '378a9839-97ce-4bdb-8961-a9164738a3bf', '', '', '', '', ''), (1033, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Add Sales Server', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"add_sales_server\\\"\\n\\tlabel=\\\"Add Sales Server\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"1|Yes,0|No\\\"\\n\\tdefault=\\\"0\\\"\\n\\trequired=\\\"true\\\"\\n\\/>\"', 1, '2016-01-06 07:52:15', '2024-04-19 08:30:17', 3, '', 192, '378a9839-97ce-4bdb-8961-a9164738a3bf', '', '', '', '', ''),
(1034, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Add MySql (tweak)', 'NOT NULL', '', 11, '\"<field \\r\\n\\ttype=\\\"list\\\" \\r\\n\\tname=\\\"add_sql\\\" \\r\\n\\tlabel=\\\"Add MySQL\\\" \\r\\n\\tdescription=\\\"if set in view\\\" \\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\tmultiple=\\\"false\\\" \\r\\n\\tfilter=\\\"INT\\\" \\r\\n\\trequired=\\\"\\\" \\r\\n\\toption=\\\"0|No don\'t add any,1|Yes include based on options\\\" \\r\\n\\tdefault=\\\"0\\\" \\r\\n\\/>\"', 1, '2016-01-06 14:50:50', '2017-10-26 02:39:06', 6, '', 190, 'b89086a8-c357-4a56-b42e-a5769ba5d8cb', '', '', '', '', ''), (1034, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Add MySql (tweak)', 'NOT NULL', '', 11, '\"<field \\r\\n\\ttype=\\\"list\\\" \\r\\n\\tname=\\\"add_sql\\\" \\r\\n\\tlabel=\\\"Add MySQL\\\" \\r\\n\\tdescription=\\\"if set in view\\\" \\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\tmultiple=\\\"false\\\" \\r\\n\\tfilter=\\\"INT\\\" \\r\\n\\trequired=\\\"\\\" \\r\\n\\toption=\\\"0|No don\'t add any,1|Yes include based on options\\\" \\r\\n\\tdefault=\\\"0\\\" \\r\\n\\/>\"', 1, '2016-01-06 14:50:50', '2017-10-26 02:39:06', 6, '', 190, 'b89086a8-c357-4a56-b42e-a5769ba5d8cb', '', '', '', '', ''),
(1035, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Add MySql Options (tweak)', 'NOT NULL', '', 11, '\"<field \\r\\n\\ttype=\\\"list\\\" \\r\\n\\tname=\\\"add_sql_options\\\" \\r\\n\\tlabel=\\\"Options\\\" \\r\\n\\tdescription=\\\"if being added\\\" \\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\tmultiple=\\\"false\\\" \\r\\n\\tfilter=\\\"INT\\\" \\r\\n\\trequired=\\\"\\\" \\r\\n\\toption=\\\"|Select an option,1|All,2|ID Based\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\/>\"', 1, '2016-01-07 08:28:18', '2016-01-07 08:28:42', 2, '', 190, 'a26e8bea-2e4e-434b-a3cb-394b83680d3c', '', '', '', '', ''), (1035, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Add MySql Options (tweak)', 'NOT NULL', '', 11, '\"<field \\r\\n\\ttype=\\\"list\\\" \\r\\n\\tname=\\\"add_sql_options\\\" \\r\\n\\tlabel=\\\"Options\\\" \\r\\n\\tdescription=\\\"if being added\\\" \\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\tmultiple=\\\"false\\\" \\r\\n\\tfilter=\\\"INT\\\" \\r\\n\\trequired=\\\"\\\" \\r\\n\\toption=\\\"|Select an option,1|All,2|ID Based\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\/>\"', 1, '2016-01-07 08:28:18', '2016-01-07 08:28:42', 2, '', 190, 'a26e8bea-2e4e-434b-a3cb-394b83680d3c', '', '', '', '', ''),
(1036, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'MySql (tweak)', 'NOT NULL', '', 35, '\"<field \\r\\n\\ttype=\\\"subform\\\" \\r\\n\\tname=\\\"sql_tweak\\\" \\r\\n\\tlabel=\\\"MySql (tweak)\\\" \\r\\n\\tdescription=\\\"Tweak the view MySql dump settings.\\\" \\r\\n\\tlayout=\\\"joomla.form.field.subform.repeatable-table\\\" \\r\\n\\tmultiple=\\\"true\\\" \\r\\n\\tfields=\\\"1837,1034,1035,1037\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\ticon=\\\"list\\\" \\r\\n\\tmaximum=\\\"50\\\" \\r\\n\\/>\"', 1, '2016-01-07 08:33:47', '2017-10-26 02:52:28', 3, '', 201, 'ce203691-6577-4c0d-90fb-539d07ea76c3', '', '', '', '', ''), (1036, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'MySql (tweak)', 'NOT NULL', '', 35, '\"<field \\r\\n\\ttype=\\\"subform\\\" \\r\\n\\tname=\\\"sql_tweak\\\" \\r\\n\\tlabel=\\\"MySql (tweak)\\\" \\r\\n\\tdescription=\\\"Tweak the view MySql dump settings.\\\" \\r\\n\\tlayout=\\\"joomla.form.field.subform.repeatable-table\\\" \\r\\n\\tmultiple=\\\"true\\\" \\r\\n\\tfields=\\\"1837,1034,1035,1037\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\ticon=\\\"list\\\" \\r\\n\\tmaximum=\\\"50\\\" \\r\\n\\/>\"', 1, '2016-01-07 08:33:47', '2017-10-26 02:52:28', 3, '', 201, 'ce203691-6577-4c0d-90fb-539d07ea76c3', '', '', '', '', ''),
@ -3592,18 +3595,18 @@ INSERT INTO `#__componentbuilder_field` (`id`, `add_css_view`, `add_css_views`,
(1375, '', '', '', '', '', '', '', '', '', '', 'MEDIUMTEXT', '', '', '', 'PHP (script - after state change)', 'NOT NULL', 2, 8, '\"<field\\n\\ttype=\\\"editor\\\"\\n\\tname=\\\"php_after_publish\\\"\\n\\tlabel=\\\"PHP publish Method after<small>Target (array) $pks is an array of record primary keys and $value is the published state.<\\/small>\\\"\\n\\tdescription=\\\"Add PHP Here that should run in the publish Method after the item\'s published state has been changed. Do not add the php tags.\\\"\\n\\twidth=\\\"100%\\\"\\n\\theight=\\\"450px\\\"\\n\\tcols=\\\"15\\\"\\n\\trows=\\\"30\\\"\\n\\tbuttons=\\\"no\\\"\\n\\tsyntax=\\\"php\\\"\\n\\teditor=\\\"codemirror|none\\\"\\n\\tfilter=\\\"raw\\\"\\n\\tvalidate=\\\"code\\\"\\n\\/>\"', 1, '2016-09-07 20:45:16', '2019-07-08 14:18:04', 5, '', 119, '8dfde218-c13c-4e7e-be62-d651cafc9d43', '', '', '', '', ''), (1375, '', '', '', '', '', '', '', '', '', '', 'MEDIUMTEXT', '', '', '', 'PHP (script - after state change)', 'NOT NULL', 2, 8, '\"<field\\n\\ttype=\\\"editor\\\"\\n\\tname=\\\"php_after_publish\\\"\\n\\tlabel=\\\"PHP publish Method after<small>Target (array) $pks is an array of record primary keys and $value is the published state.<\\/small>\\\"\\n\\tdescription=\\\"Add PHP Here that should run in the publish Method after the item\'s published state has been changed. Do not add the php tags.\\\"\\n\\twidth=\\\"100%\\\"\\n\\theight=\\\"450px\\\"\\n\\tcols=\\\"15\\\"\\n\\trows=\\\"30\\\"\\n\\tbuttons=\\\"no\\\"\\n\\tsyntax=\\\"php\\\"\\n\\teditor=\\\"codemirror|none\\\"\\n\\tfilter=\\\"raw\\\"\\n\\tvalidate=\\\"code\\\"\\n\\/>\"', 1, '2016-09-07 20:45:16', '2019-07-08 14:18:04', 5, '', 119, '8dfde218-c13c-4e7e-be62-d651cafc9d43', '', '', '', '', ''),
(1376, '', '', '', '', '', '', '', '', 255, '', 'CHAR', '', '', '', 'Views (admin)', 'NOT NULL', '', 6, '\"<field\\n\\ttype=\\\"adminviewfolderlist\\\"\\n\\tname=\\\"admin_view\\\"\\n\\tlabel=\\\"Admin Views\\\"\\n\\tdescription=\\\"Select the view being target.\\\"\\n\\tclass=\\\"list_class\\\"\\n\\tlayout=\\\"joomla.form.field.list-fancy-select\\\"\\n\\tmultiple=\\\"false\\\"\\n\\tdefault=\\\"\\\"\\n\\trequired=\\\"true\\\"\\n\\treadonly=\\\"\\\"\\n\\tdisabled=\\\"\\\"\\n\\textends=\\\"list\\\"\\n\\tbutton=\\\"false\\\"\\n\\ttype_php_1=\\\"__.o0=base64=Oo.__Ly8gZ2V0IGN1c3RvbSBmb2xkZXIgZmlsZXMNCgkJJGxvY2FsZm9sZGVycyA9IFtdOw0KCQkkbG9jYWxmb2xkZXJzW10gPSBKUEFUSF9BRE1JTklTVFJBVE9SIC4gJy9jb21wb25lbnRzL2NvbV9bW1tjb21wb25lbnRdXV0vdmlld3MnOw0KCQkkbG9jYWxmb2xkZXJzW10gPSBKUEFUSF9BRE1JTklTVFJBVE9SIC4gJy9jb21wb25lbnRzL2NvbV9bW1tjb21wb25lbnRdXV0vc3JjL1ZpZXcnOw0KCQkvLyBzZXQgdGhlIGRlZmF1bHQNCgkJJG9wdGlvbnMgPSBbXTsNCgkJLy8gbm93IGNoZWNrIGlmIHRoZXJlIGFyZSBmaWxlcyBpbiB0aGUgZm9sZGVyDQoJCWZvcmVhY2ggKCRsb2NhbGZvbGRlcnMgYXMgJGxvY2FsZm9sZGVyKQ0KCQl7DQoJCQlpZiAoaXNfZGlyKCRsb2NhbGZvbGRlcikgJiYgJGZvbGRlcnMgPSBcSm9vbWxhXEZpbGVzeXN0ZW1cRm9sZGVyOjpmb2xkZXJzKCRsb2NhbGZvbGRlcikpDQoJCQl7DQoJCQkJaWYgKCR0aGlzLT5tdWx0aXBsZSA9PT0gZmFsc2UpDQoJCQkJew0KCQkJCQkkb3B0aW9uc1tdID0gSHRtbDo6Xygnc2VsZWN0Lm9wdGlvbicsICcnLCBUZXh0OjpfKCdTZWxlY3QgYW4gYWRtaW4gdmlldycpKTsNCgkJCQl9DQoJCQkJZm9yZWFjaCAoJGZvbGRlcnMgYXMgJGZvbGRlcikNCgkJCQl7DQoJCQkJCSRvcHRpb25zW10gPSBIdG1sOjpfKCdzZWxlY3Qub3B0aW9uJywgJGZvbGRlciwgU3VwZXJfX18xZjI4Y2I1M182MGQ5XzRkYjFfYjUxN18zYzdkYzZiNDI5ZWZfX19Qb3dlcjo6c2FmZSgkZm9sZGVyLCAnVycpKTsNCgkJCQl9DQoJCQl9DQoJCX0NCgkJcmV0dXJuICRvcHRpb25zOw==\\\"\\n\\/>\"', 1, '2016-10-17 23:28:49', '2024-03-26 13:24:23', 14, '', 300, 'd7f97213-2aa1-457c-9e60-d691cfcd905f', '', '', '', '', ''), (1376, '', '', '', '', '', '', '', '', 255, '', 'CHAR', '', '', '', 'Views (admin)', 'NOT NULL', '', 6, '\"<field\\n\\ttype=\\\"adminviewfolderlist\\\"\\n\\tname=\\\"admin_view\\\"\\n\\tlabel=\\\"Admin Views\\\"\\n\\tdescription=\\\"Select the view being target.\\\"\\n\\tclass=\\\"list_class\\\"\\n\\tlayout=\\\"joomla.form.field.list-fancy-select\\\"\\n\\tmultiple=\\\"false\\\"\\n\\tdefault=\\\"\\\"\\n\\trequired=\\\"true\\\"\\n\\treadonly=\\\"\\\"\\n\\tdisabled=\\\"\\\"\\n\\textends=\\\"list\\\"\\n\\tbutton=\\\"false\\\"\\n\\ttype_php_1=\\\"__.o0=base64=Oo.__Ly8gZ2V0IGN1c3RvbSBmb2xkZXIgZmlsZXMNCgkJJGxvY2FsZm9sZGVycyA9IFtdOw0KCQkkbG9jYWxmb2xkZXJzW10gPSBKUEFUSF9BRE1JTklTVFJBVE9SIC4gJy9jb21wb25lbnRzL2NvbV9bW1tjb21wb25lbnRdXV0vdmlld3MnOw0KCQkkbG9jYWxmb2xkZXJzW10gPSBKUEFUSF9BRE1JTklTVFJBVE9SIC4gJy9jb21wb25lbnRzL2NvbV9bW1tjb21wb25lbnRdXV0vc3JjL1ZpZXcnOw0KCQkvLyBzZXQgdGhlIGRlZmF1bHQNCgkJJG9wdGlvbnMgPSBbXTsNCgkJLy8gbm93IGNoZWNrIGlmIHRoZXJlIGFyZSBmaWxlcyBpbiB0aGUgZm9sZGVyDQoJCWZvcmVhY2ggKCRsb2NhbGZvbGRlcnMgYXMgJGxvY2FsZm9sZGVyKQ0KCQl7DQoJCQlpZiAoaXNfZGlyKCRsb2NhbGZvbGRlcikgJiYgJGZvbGRlcnMgPSBcSm9vbWxhXEZpbGVzeXN0ZW1cRm9sZGVyOjpmb2xkZXJzKCRsb2NhbGZvbGRlcikpDQoJCQl7DQoJCQkJaWYgKCR0aGlzLT5tdWx0aXBsZSA9PT0gZmFsc2UpDQoJCQkJew0KCQkJCQkkb3B0aW9uc1tdID0gSHRtbDo6Xygnc2VsZWN0Lm9wdGlvbicsICcnLCBUZXh0OjpfKCdTZWxlY3QgYW4gYWRtaW4gdmlldycpKTsNCgkJCQl9DQoJCQkJZm9yZWFjaCAoJGZvbGRlcnMgYXMgJGZvbGRlcikNCgkJCQl7DQoJCQkJCSRvcHRpb25zW10gPSBIdG1sOjpfKCdzZWxlY3Qub3B0aW9uJywgJGZvbGRlciwgU3VwZXJfX18xZjI4Y2I1M182MGQ5XzRkYjFfYjUxN18zYzdkYzZiNDI5ZWZfX19Qb3dlcjo6c2FmZSgkZm9sZGVyLCAnVycpKTsNCgkJCQl9DQoJCQl9DQoJCX0NCgkJcmV0dXJuICRvcHRpb25zOw==\\\"\\n\\/>\"', 1, '2016-10-17 23:28:49', '2024-03-26 13:24:23', 14, '', 300, 'd7f97213-2aa1-457c-9e60-d691cfcd905f', '', '', '', '', ''),
(1377, '', '', '', '', '', '', '', '', 255, '', 'CHAR', '', '', '', 'Views (site)', 'NOT NULL', '', 6, '\"<field\\n\\ttype=\\\"siteviewfolderlist\\\"\\n\\tname=\\\"site_view\\\"\\n\\tlabel=\\\"Site Views\\\"\\n\\tdescription=\\\"Select the view being target.\\\"\\n\\tclass=\\\"list_class\\\"\\n\\tlayout=\\\"joomla.form.field.list-fancy-select\\\"\\n\\tmultiple=\\\"false\\\"\\n\\trequired=\\\"true\\\"\\n\\textends=\\\"list\\\"\\n\\tbutton=\\\"false\\\"\\n\\ttype_php_1=\\\"__.o0=base64=Oo.__Ly8gZ2V0IGN1c3RvbSBmb2xkZXIgZmlsZXMNCgkJJGxvY2FsZm9sZGVycyA9IFtdOw0KCQkkbG9jYWxmb2xkZXJzW10gPSBKUEFUSF9TSVRFIC4gJy9jb21wb25lbnRzL2NvbV9bW1tjb21wb25lbnRdXV0vdmlld3MnOw0KCQkkbG9jYWxmb2xkZXJzW10gPSBKUEFUSF9TSVRFIC4gJy9jb21wb25lbnRzL2NvbV9bW1tjb21wb25lbnRdXV0vc3JjL1ZpZXcnOw0KCQkvLyBzZXQgdGhlIGRlZmF1bHQNCgkJJG9wdGlvbnMgPSBbXTsNCgkJLy8gbm93IGNoZWNrIGlmIHRoZXJlIGFyZSBmaWxlcyBpbiB0aGUgZm9sZGVyDQoJCWZvcmVhY2ggKCRsb2NhbGZvbGRlcnMgYXMgJGxvY2FsZm9sZGVyKQ0KCQl7DQoJCQlpZiAoaXNfZGlyKCRsb2NhbGZvbGRlcikgJiYgJGZvbGRlcnMgPSBcSm9vbWxhXEZpbGVzeXN0ZW1cRm9sZGVyOjpmb2xkZXJzKCRsb2NhbGZvbGRlcikpDQoJCQl7DQoJCQkJaWYgKCR0aGlzLT5tdWx0aXBsZSA9PT0gZmFsc2UpDQoJCQkJew0KCQkJCQkkb3B0aW9uc1tdID0gSHRtbDo6Xygnc2VsZWN0Lm9wdGlvbicsICcnLCBUZXh0OjpfKCdTZWxlY3QgYSBzaXRlIHZpZXcnKSk7DQoJCQkJfQ0KCQkJCWZvcmVhY2ggKCRmb2xkZXJzIGFzICRmb2xkZXIpDQoJCQkJew0KCQkJCQkkb3B0aW9uc1tdID0gSHRtbDo6Xygnc2VsZWN0Lm9wdGlvbicsICRmb2xkZXIsIFN1cGVyX19fMWYyOGNiNTNfNjBkOV80ZGIxX2I1MTdfM2M3ZGM2YjQyOWVmX19fUG93ZXI6OnNhZmUoJGZvbGRlciwgJ1cnKSk7DQoJCQkJfQ0KCQkJfQ0KCQl9DQoJCXJldHVybiAkb3B0aW9uczs=\\\"\\n\\/>\"', 1, '2016-10-17 23:38:27', '2024-03-26 13:24:14', 13, '', 300, 'd52f96cd-df76-494b-8c25-146bb434b6af', '', '', '', '', ''), (1377, '', '', '', '', '', '', '', '', 255, '', 'CHAR', '', '', '', 'Views (site)', 'NOT NULL', '', 6, '\"<field\\n\\ttype=\\\"siteviewfolderlist\\\"\\n\\tname=\\\"site_view\\\"\\n\\tlabel=\\\"Site Views\\\"\\n\\tdescription=\\\"Select the view being target.\\\"\\n\\tclass=\\\"list_class\\\"\\n\\tlayout=\\\"joomla.form.field.list-fancy-select\\\"\\n\\tmultiple=\\\"false\\\"\\n\\trequired=\\\"true\\\"\\n\\textends=\\\"list\\\"\\n\\tbutton=\\\"false\\\"\\n\\ttype_php_1=\\\"__.o0=base64=Oo.__Ly8gZ2V0IGN1c3RvbSBmb2xkZXIgZmlsZXMNCgkJJGxvY2FsZm9sZGVycyA9IFtdOw0KCQkkbG9jYWxmb2xkZXJzW10gPSBKUEFUSF9TSVRFIC4gJy9jb21wb25lbnRzL2NvbV9bW1tjb21wb25lbnRdXV0vdmlld3MnOw0KCQkkbG9jYWxmb2xkZXJzW10gPSBKUEFUSF9TSVRFIC4gJy9jb21wb25lbnRzL2NvbV9bW1tjb21wb25lbnRdXV0vc3JjL1ZpZXcnOw0KCQkvLyBzZXQgdGhlIGRlZmF1bHQNCgkJJG9wdGlvbnMgPSBbXTsNCgkJLy8gbm93IGNoZWNrIGlmIHRoZXJlIGFyZSBmaWxlcyBpbiB0aGUgZm9sZGVyDQoJCWZvcmVhY2ggKCRsb2NhbGZvbGRlcnMgYXMgJGxvY2FsZm9sZGVyKQ0KCQl7DQoJCQlpZiAoaXNfZGlyKCRsb2NhbGZvbGRlcikgJiYgJGZvbGRlcnMgPSBcSm9vbWxhXEZpbGVzeXN0ZW1cRm9sZGVyOjpmb2xkZXJzKCRsb2NhbGZvbGRlcikpDQoJCQl7DQoJCQkJaWYgKCR0aGlzLT5tdWx0aXBsZSA9PT0gZmFsc2UpDQoJCQkJew0KCQkJCQkkb3B0aW9uc1tdID0gSHRtbDo6Xygnc2VsZWN0Lm9wdGlvbicsICcnLCBUZXh0OjpfKCdTZWxlY3QgYSBzaXRlIHZpZXcnKSk7DQoJCQkJfQ0KCQkJCWZvcmVhY2ggKCRmb2xkZXJzIGFzICRmb2xkZXIpDQoJCQkJew0KCQkJCQkkb3B0aW9uc1tdID0gSHRtbDo6Xygnc2VsZWN0Lm9wdGlvbicsICRmb2xkZXIsIFN1cGVyX19fMWYyOGNiNTNfNjBkOV80ZGIxX2I1MTdfM2M3ZGM2YjQyOWVmX19fUG93ZXI6OnNhZmUoJGZvbGRlciwgJ1cnKSk7DQoJCQkJfQ0KCQkJfQ0KCQl9DQoJCXJldHVybiAkb3B0aW9uczs=\\\"\\n\\/>\"', 1, '2016-10-17 23:38:27', '2024-03-26 13:24:14', 13, '', 300, 'd52f96cd-df76-494b-8c25-146bb434b6af', '', '', '', '', ''),
(1378, '', '', '', '', '', '', '', '', '', '', 'MEDIUMTEXT', '', '', '', 'PHP Preflight (uninstall)', 'NOT NULL', 2, 8, '\"<field\\n\\ttype=\\\"editor\\\"\\n\\tname=\\\"php_preflight_uninstall\\\"\\n\\tlabel=\\\"PHP Preflight (uninstall)\\\"\\n\\tdescription=\\\"PHP script that should run preflight during uninstall.\\\"\\n\\twidth=\\\"100%\\\"\\n\\theight=\\\"450px\\\"\\n\\tcols=\\\"15\\\"\\n\\trows=\\\"30\\\"\\n\\tbuttons=\\\"no\\\"\\n\\tsyntax=\\\"php\\\"\\n\\teditor=\\\"codemirror|none\\\"\\n\\tfilter=\\\"raw\\\"\\n\\tvalidate=\\\"code\\\"\\n\\/>\"', 1, '2016-10-18 20:05:30', '2019-07-22 11:48:53', 2, '', 373, '628147c3-5f93-4a49-a1bc-ac6685e06b64', '', '', '', '', ''), (1378, '', '', '', '', '', '', '', '', '', '', 'MEDIUMTEXT', '', '', '', 'PHP in the preflight uninstall (event)', 'NOT NULL', 2, 8, '\"<field\\n\\ttype=\\\"editor\\\"\\n\\tname=\\\"php_preflight_uninstall\\\"\\n\\tlabel=\\\"PHP in the preflight uninstall (event)\\\"\\n\\tdescription=\\\"PHP code that should run preflight during uninstall.\\\"\\n\\twidth=\\\"100%\\\"\\n\\theight=\\\"450px\\\"\\n\\tcols=\\\"15\\\"\\n\\trows=\\\"30\\\"\\n\\tbuttons=\\\"no\\\"\\n\\tsyntax=\\\"php\\\"\\n\\teditor=\\\"codemirror|none\\\"\\n\\tfilter=\\\"raw\\\"\\n\\tvalidate=\\\"code\\\"\\n\\tshowon=\\\"add_php_preflight_uninstall:1\\\"\\n\\/>\"', 1, '2016-10-18 20:05:30', '2024-04-19 09:05:37', 4, '', 373, '628147c3-5f93-4a49-a1bc-ac6685e06b64', '', '', '', '', ''),
(1379, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Add PHP Preflight (uninstall)', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"add_php_preflight_uninstall\\\" \\r\\n\\tlabel=\\\"Add PHP Preflight (uninstall)\\\" \\r\\n\\tdescription=\\\"\\\" \\r\\n\\tclass=\\\"btn-group btn-group-yesno\\\" \\r\\n\\toption=\\\"1|Yes,0|No\\\" \\r\\n\\tdefault=\\\"0\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\/>\"', 1, '2016-10-18 20:05:35', '2016-02-18 12:54:44', 1, '', 188, '3bb6d77d-05bf-4447-a6bb-4af197ec9290', '', '', '', '', ''), (1379, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Add PHP in the preflight uninstall (event)', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"add_php_preflight_uninstall\\\"\\n\\tlabel=\\\"Add PHP in the preflight uninstall (event)\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"1|Yes,0|No\\\"\\n\\tdefault=\\\"0\\\"\\n\\trequired=\\\"true\\\"\\n\\/>\"', 1, '2016-10-18 20:05:35', '2024-04-19 09:05:03', 3, '', 188, '3bb6d77d-05bf-4447-a6bb-4af197ec9290', '', '', '', '', ''),
(1380, '', '', '', '', '', '', '', '', '', '', 'MEDIUMTEXT', '', '', '', 'PHP Preflight (install)', 'NOT NULL', 2, 8, '\"<field\\n\\ttype=\\\"editor\\\"\\n\\tname=\\\"php_preflight_install\\\"\\n\\tlabel=\\\"PHP Preflight (install)\\\"\\n\\tdescription=\\\"PHP script that should run preflight during install.\\\"\\n\\twidth=\\\"100%\\\"\\n\\theight=\\\"450px\\\"\\n\\tcols=\\\"15\\\"\\n\\trows=\\\"30\\\"\\n\\tbuttons=\\\"no\\\"\\n\\tsyntax=\\\"php\\\"\\n\\teditor=\\\"codemirror|none\\\"\\n\\tfilter=\\\"raw\\\"\\n\\tvalidate=\\\"code\\\"\\n\\/>\"', 1, '2016-10-18 20:07:38', '2019-07-08 14:18:10', 3, '', 373, '3ca01651-a5c3-46c3-b7a8-bfb0d9f6e105', '', '', '', '', ''), (1380, '', '', '', '', '', '', '', '', '', '', 'MEDIUMTEXT', '', '', '', 'PHP in the preflight install (event)', 'NOT NULL', 2, 8, '\"<field\\n\\ttype=\\\"editor\\\"\\n\\tname=\\\"php_preflight_install\\\"\\n\\tlabel=\\\"PHP in the preflight install (event)\\\"\\n\\tdescription=\\\"PHP code that should run preflight during install.\\\"\\n\\twidth=\\\"100%\\\"\\n\\theight=\\\"450px\\\"\\n\\tcols=\\\"15\\\"\\n\\trows=\\\"30\\\"\\n\\tbuttons=\\\"no\\\"\\n\\tsyntax=\\\"php\\\"\\n\\teditor=\\\"codemirror|none\\\"\\n\\tfilter=\\\"raw\\\"\\n\\tvalidate=\\\"code\\\"\\n\\tshowon=\\\"add_php_preflight_install:1\\\"\\n\\/>\"', 1, '2016-10-18 20:07:38', '2024-04-19 09:06:06', 5, '', 373, '3ca01651-a5c3-46c3-b7a8-bfb0d9f6e105', '', '', '', '', ''),
(1381, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Add PHP Preflight (install)', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"add_php_preflight_install\\\" \\r\\n\\tlabel=\\\"Add PHP Preflight (install)\\\" \\r\\n\\tdescription=\\\"\\\" \\r\\n\\tclass=\\\"btn-group btn-group-yesno\\\" \\r\\n\\toption=\\\"1|Yes,0|No\\\" \\r\\n\\tdefault=\\\"0\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\/>\"', 1, '2016-10-18 20:07:52', '2016-02-18 12:54:44', 1, '', 188, 'd5d03647-f29e-44a4-9e63-5feb9f4adbae', '', '', '', '', ''), (1381, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Add PHP in the preflight install (event)', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"add_php_preflight_install\\\"\\n\\tlabel=\\\"Add PHP in the preflight install (event)\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"1|Yes,0|No\\\"\\n\\tdefault=\\\"0\\\"\\n\\trequired=\\\"true\\\"\\n\\/>\"', 1, '2016-10-18 20:07:52', '2024-04-19 09:06:20', 3, '', 188, 'd5d03647-f29e-44a4-9e63-5feb9f4adbae', '', '', '', '', ''),
(1382, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Add PHP Preflight (update)', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"add_php_preflight_update\\\" \\r\\n\\tlabel=\\\"Add PHP Preflight (update)\\\" \\r\\n\\tdescription=\\\"\\\" \\r\\n\\tclass=\\\"btn-group btn-group-yesno\\\" \\r\\n\\toption=\\\"1|Yes,0|No\\\" \\r\\n\\tdefault=\\\"0\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\/>\"', 1, '2016-10-18 20:08:21', '2016-02-18 12:54:44', 1, '', 188, '365d08ee-fe6e-47c4-b567-a001212f2cb6', '', '', '', '', ''), (1382, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Add PHP in the preflight update (event)', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"add_php_preflight_update\\\"\\n\\tlabel=\\\"Add PHP in the preflight update (event)\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"1|Yes,0|No\\\"\\n\\tdefault=\\\"0\\\"\\n\\trequired=\\\"true\\\"\\n\\/>\"', 1, '2016-10-18 20:08:21', '2024-04-19 09:06:37', 3, '', 188, '365d08ee-fe6e-47c4-b567-a001212f2cb6', '', '', '', '', ''),
(1383, '', '', '', '', '', '', '', '', '', '', 'MEDIUMTEXT', '', '', '', 'PHP Preflight (update)', 'NOT NULL', 2, 8, '\"<field\\n\\ttype=\\\"editor\\\"\\n\\tname=\\\"php_preflight_update\\\"\\n\\tlabel=\\\"PHP Preflight (update)\\\"\\n\\tdescription=\\\"PHP script that should run preflight during update.\\\"\\n\\twidth=\\\"100%\\\"\\n\\theight=\\\"450px\\\"\\n\\tcols=\\\"15\\\"\\n\\trows=\\\"30\\\"\\n\\tbuttons=\\\"no\\\"\\n\\tsyntax=\\\"php\\\"\\n\\teditor=\\\"codemirror|none\\\"\\n\\tfilter=\\\"raw\\\"\\n\\tvalidate=\\\"code\\\"\\n\\/>\"', 1, '2016-10-18 20:08:49', '2019-07-08 14:18:21', 4, '', 373, '9f9b030b-31ba-4ae9-88da-76efd8a140dc', '', '', '', '', ''), (1383, '', '', '', '', '', '', '', '', '', '', 'MEDIUMTEXT', '', '', '', 'PHP in the preflight update (event)', 'NOT NULL', 2, 8, '\"<field\\n\\ttype=\\\"editor\\\"\\n\\tname=\\\"php_preflight_update\\\"\\n\\tlabel=\\\"PHP in the preflight update (event)\\\"\\n\\tdescription=\\\"PHP code that should run preflight during update.\\\"\\n\\twidth=\\\"100%\\\"\\n\\theight=\\\"450px\\\"\\n\\tcols=\\\"15\\\"\\n\\trows=\\\"30\\\"\\n\\tbuttons=\\\"no\\\"\\n\\tsyntax=\\\"php\\\"\\n\\teditor=\\\"codemirror|none\\\"\\n\\tfilter=\\\"raw\\\"\\n\\tvalidate=\\\"code\\\"\\n\\tshowon=\\\"add_php_preflight_update:1\\\"\\n\\/>\"', 1, '2016-10-18 20:08:49', '2024-04-19 09:06:50', 7, '', 373, '9f9b030b-31ba-4ae9-88da-76efd8a140dc', '', '', '', '', ''),
(1384, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Add PHP Postflight (update)', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"add_php_postflight_update\\\" \\r\\n\\tlabel=\\\"Add PHP Postflight (update)\\\" \\r\\n\\tdescription=\\\"\\\" \\r\\n\\tclass=\\\"btn-group btn-group-yesno\\\" \\r\\n\\toption=\\\"1|Yes,0|No\\\" \\r\\n\\tdefault=\\\"0\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\/>\"', 1, '2016-10-18 20:09:20', '2016-02-18 12:54:44', 1, '', 188, '22a668bc-d169-4346-9929-3819673c67ac', '', '', '', '', ''), (1384, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Add PHP in the postflight update (event)', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"add_php_postflight_update\\\"\\n\\tlabel=\\\"Add PHP in the postflight update (event)\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"1|Yes,0|No\\\"\\n\\tdefault=\\\"0\\\"\\n\\trequired=\\\"true\\\"\\n\\/>\"', 1, '2016-10-18 20:09:20', '2024-04-19 09:01:50', 4, '', 188, '22a668bc-d169-4346-9929-3819673c67ac', '', '', '', '', ''),
(1385, '', '', '', '', '', '', '', '', '', '', 'MEDIUMTEXT', '', '', '', 'PHP Postflight (update)', 'NOT NULL', 2, 8, '\"<field\\n\\ttype=\\\"editor\\\"\\n\\tname=\\\"php_postflight_update\\\"\\n\\tlabel=\\\"PHP Postflight (update)\\\"\\n\\tdescription=\\\"PHP script that should run postflight during update.\\\"\\n\\twidth=\\\"100%\\\"\\n\\theight=\\\"450px\\\"\\n\\tcols=\\\"15\\\"\\n\\trows=\\\"30\\\"\\n\\tbuttons=\\\"no\\\"\\n\\tsyntax=\\\"php\\\"\\n\\teditor=\\\"codemirror|none\\\"\\n\\tfilter=\\\"raw\\\"\\n\\tvalidate=\\\"code\\\"\\n\\/>\"', 1, '2016-10-18 20:09:39', '2019-07-08 14:18:26', 3, '', 373, 'ade283c3-937e-4502-a040-c69d6ddb3c50', '', '', '', '', ''), (1385, '', '', '', '', '', '', '', '', '', '', 'MEDIUMTEXT', '', '', '', 'PHP in the postflight update (event)', 'NOT NULL', 2, 8, '\"<field\\n\\ttype=\\\"editor\\\"\\n\\tname=\\\"php_postflight_update\\\"\\n\\tlabel=\\\"PHP in the postflight update (event)\\\"\\n\\tdescription=\\\"PHP code that should run postflight during update.\\\"\\n\\twidth=\\\"100%\\\"\\n\\theight=\\\"450px\\\"\\n\\tcols=\\\"15\\\"\\n\\trows=\\\"30\\\"\\n\\tbuttons=\\\"no\\\"\\n\\tsyntax=\\\"php\\\"\\n\\teditor=\\\"codemirror|none\\\"\\n\\tfilter=\\\"raw\\\"\\n\\tvalidate=\\\"code\\\"\\n\\tshowon=\\\"add_php_postflight_update:1\\\"\\n\\/>\"', 1, '2016-10-18 20:09:39', '2024-04-19 09:02:23', 5, '', 373, 'ade283c3-937e-4502-a040-c69d6ddb3c50', '', '', '', '', ''),
(1386, '', '', '', '', '', '', '', '', '', '', 'MEDIUMTEXT', '', '', '', 'PHP Postflight (install)', 'NOT NULL', 2, 8, '\"<field\\n\\ttype=\\\"editor\\\"\\n\\tname=\\\"php_postflight_install\\\"\\n\\tlabel=\\\"PHP Postflight (install)\\\"\\n\\tdescription=\\\"PHP script that should run postflight during install.\\\"\\n\\twidth=\\\"100%\\\"\\n\\theight=\\\"450px\\\"\\n\\tcols=\\\"15\\\"\\n\\trows=\\\"30\\\"\\n\\tbuttons=\\\"no\\\"\\n\\tsyntax=\\\"php\\\"\\n\\teditor=\\\"codemirror|none\\\"\\n\\tfilter=\\\"raw\\\"\\n\\tvalidate=\\\"code\\\"\\n\\/>\"', 1, '2016-10-18 20:10:13', '2019-07-08 14:19:16', 3, '', 373, '8d837989-4a21-4943-bb4c-4d4abb9a7a55', '', '', '', '', ''), (1386, '', '', '', '', '', '', '', '', '', '', 'MEDIUMTEXT', '', '', '', 'PHP in the postflight install (event)', 'NOT NULL', 2, 8, '\"<field\\n\\ttype=\\\"editor\\\"\\n\\tname=\\\"php_postflight_install\\\"\\n\\tlabel=\\\"PHP in the postflight install (event)\\\"\\n\\tdescription=\\\"PHP code that should run postflight during install.\\\"\\n\\twidth=\\\"100%\\\"\\n\\theight=\\\"450px\\\"\\n\\tcols=\\\"15\\\"\\n\\trows=\\\"30\\\"\\n\\tbuttons=\\\"no\\\"\\n\\tsyntax=\\\"php\\\"\\n\\teditor=\\\"codemirror|none\\\"\\n\\tfilter=\\\"raw\\\"\\n\\tvalidate=\\\"code\\\"\\n\\tshowon=\\\"add_php_postflight_install:1\\\"\\n\\/>\"', 1, '2016-10-18 20:10:13', '2024-04-19 09:03:04', 6, '', 373, '8d837989-4a21-4943-bb4c-4d4abb9a7a55', '', '', '', '', ''),
(1387, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Add PHP Postflight (install)', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"add_php_postflight_install\\\" \\r\\n\\tlabel=\\\"Add PHP Postflight (install)\\\" \\r\\n\\tdescription=\\\"\\\" \\r\\n\\tclass=\\\"btn-group btn-group-yesno\\\" \\r\\n\\toption=\\\"1|Yes,0|No\\\" \\r\\n\\tdefault=\\\"0\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\/>\"', 1, '2016-10-18 20:10:25', '2016-02-18 12:54:44', 1, '', 188, '3c1db8b4-65f2-4f6f-8391-5883f564eabe', '', '', '', '', ''), (1387, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Add PHP in the postflight install (event)', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"add_php_postflight_install\\\"\\n\\tlabel=\\\"Add PHP in the postflight install (event)\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"1|Yes,0|No\\\"\\n\\tdefault=\\\"0\\\"\\n\\trequired=\\\"true\\\"\\n\\/>\"', 1, '2016-10-18 20:10:25', '2024-04-19 09:02:43', 3, '', 188, '3c1db8b4-65f2-4f6f-8391-5883f564eabe', '', '', '', '', ''),
(1388, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Add PHP Method (uninstall)', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"add_php_method_uninstall\\\" \\r\\n\\tlabel=\\\"Add PHP Method (uninstall)\\\" \\r\\n\\tdescription=\\\"\\\" \\r\\n\\tclass=\\\"btn-group btn-group-yesno\\\" \\r\\n\\toption=\\\"1|Yes,0|No\\\" \\r\\n\\tdefault=\\\"0\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\/>\"', 1, '2016-10-18 20:10:46', '2016-10-18 22:31:14', 2, '', 188, '70a2d820-64af-4f51-8b1a-522aed9572bf', '', '', '', '', ''), (1388, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Add PHP to the uninstall method', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"add_php_method_uninstall\\\"\\n\\tlabel=\\\"Add PHP to the uninstall method\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"1|Yes,0|No\\\"\\n\\tdefault=\\\"0\\\"\\n\\trequired=\\\"true\\\"\\n\\/>\"', 1, '2016-10-18 20:10:46', '2024-04-19 08:37:58', 4, '', 188, '70a2d820-64af-4f51-8b1a-522aed9572bf', '', '', '', '', ''),
(1389, '', '', '', '', '', '', '', '', '', '', 'MEDIUMTEXT', '', '', '', 'PHP Method (uninstall)', 'NOT NULL', 2, 8, '\"<field\\n\\ttype=\\\"editor\\\"\\n\\tname=\\\"php_method_uninstall\\\"\\n\\tlabel=\\\"PHP Method (uninstall)\\\"\\n\\tdescription=\\\"PHP script that should run during uninstall.\\\"\\n\\twidth=\\\"100%\\\"\\n\\theight=\\\"450px\\\"\\n\\tcols=\\\"15\\\"\\n\\trows=\\\"30\\\"\\n\\tbuttons=\\\"no\\\"\\n\\tsyntax=\\\"php\\\"\\n\\teditor=\\\"codemirror|none\\\"\\n\\tfilter=\\\"raw\\\"\\n\\tvalidate=\\\"code\\\"\\n\\/>\"', 1, '2016-10-18 20:11:08', '2019-07-08 14:19:21', 4, '', 373, 'e76cf555-112a-4021-9a1e-b4ee52d7be8a', '', '', '', '', ''), (1389, '', '', '', '', '', '', '', '', '', '', 'MEDIUMTEXT', '', '', '', 'PHP in the uninstall method', 'NOT NULL', 2, 8, '\"<field\\n\\ttype=\\\"editor\\\"\\n\\tname=\\\"php_method_uninstall\\\"\\n\\tlabel=\\\"PHP in the uninstall method\\\"\\n\\tdescription=\\\"PHP script that should run during uninstall.\\\"\\n\\twidth=\\\"100%\\\"\\n\\theight=\\\"450px\\\"\\n\\tcols=\\\"15\\\"\\n\\trows=\\\"30\\\"\\n\\tbuttons=\\\"no\\\"\\n\\tsyntax=\\\"php\\\"\\n\\teditor=\\\"codemirror|none\\\"\\n\\tfilter=\\\"raw\\\"\\n\\tvalidate=\\\"code\\\"\\n\\tshowon=\\\"add_php_method_uninstall:1\\\"\\n\\/>\"', 1, '2016-10-18 20:11:08', '2024-04-19 08:39:09', 6, '', 373, 'e76cf555-112a-4021-9a1e-b4ee52d7be8a', '', '', '', '', ''),
(1390, '', '', '', '', '', '', '', '', '', '', 'CHAR', '', '', '', 'Note - MySql (tweak)', 'NOT NULL', '', 14, '\"<field \\r\\n\\ttype=\\\"note\\\" \\r\\n\\tname=\\\"note_mysql_tweak_options\\\" \\r\\n\\tlabel=\\\" MySql Tweak Options\\\" \\r\\n\\tdescription=\\\"In each admin view you can add data from a MySQL Table (this is done in the admin view MySQL tab). Here you can limit that data in relation to this component. This feature is useful when an admin view with demo data is used in more then one component, and you would like to exclude some demo data without creating a new admin view.<span id=\'jform_button_mysql_tweak_options\'><\\/span>\\\" \\r\\n\\theading=\\\"h4\\\" \\r\\n\\tclass=\\\"alert alert-info\\\" \\r\\n\\/>\"', 1, '2016-10-18 21:37:16', '2017-10-26 15:34:24', 5, '', 306, 'a8e6ebca-db4a-413b-a311-16fe560eb493', '', '', '', '', ''), (1390, '', '', '', '', '', '', '', '', '', '', 'CHAR', '', '', '', 'Note - MySql (tweak)', 'NOT NULL', '', 14, '\"<field \\r\\n\\ttype=\\\"note\\\" \\r\\n\\tname=\\\"note_mysql_tweak_options\\\" \\r\\n\\tlabel=\\\" MySql Tweak Options\\\" \\r\\n\\tdescription=\\\"In each admin view you can add data from a MySQL Table (this is done in the admin view MySQL tab). Here you can limit that data in relation to this component. This feature is useful when an admin view with demo data is used in more then one component, and you would like to exclude some demo data without creating a new admin view.<span id=\'jform_button_mysql_tweak_options\'><\\/span>\\\" \\r\\n\\theading=\\\"h4\\\" \\r\\n\\tclass=\\\"alert alert-info\\\" \\r\\n\\/>\"', 1, '2016-10-18 21:37:16', '2017-10-26 15:34:24', 5, '', 306, 'a8e6ebca-db4a-413b-a311-16fe560eb493', '', '', '', '', ''),
(1391, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'Notice (custom)', 'NOT NULL', '', 6, '\"<field \\r\\n\\ttype=\\\"noticing\\\" \\r\\n\\tname=\\\"notice\\\" \\r\\n\\tlabel=\\\"Notice\\\" \\r\\n\\tdescription=\\\"The notice being tracked\\\" \\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\tmultiple=\\\"false\\\" \\r\\n\\tdefault=\\\"0\\\" \\r\\n\\trequired=\\\"\\\" \\r\\n\\treadonly=\\\"\\\" \\r\\n\\tdisabled=\\\"\\\" \\r\\n\\tshowon=\\\"\\\" \\r\\n\\tonchange=\\\"\\\" \\r\\n\\textends=\\\"list\\\" \\r\\n\\tbutton=\\\"true\\\" \\r\\n\\ttable=\\\"#__###component###_notice\\\" \\r\\n\\tcomponent=\\\"com_###component###\\\" \\r\\n\\tview=\\\"notice\\\" \\r\\n\\tviews=\\\"notices\\\" \\r\\n\\tvalue_field=\\\"title\\\" \\r\\n\\tkey_field=\\\"id\\\" \\r\\n\\ttype_php_1=\\\"$db = JFactory::getDBO();\\\" \\r\\n\\ttype_php_2=\\\"$query = $db->getQuery(true);\\\" \\r\\n\\ttype_php_3=\\\"$query->select($db->quoteName(array(\'a.###ID###\',\'a.###TEXT###\'),array(\'###ID###\',\'###CODE_TEXT###\')));\\\" \\r\\n\\ttype_php_4=\\\"$query->from($db->quoteName(\'###TABLE###\', \'a\'));\\\" \\r\\n\\ttype_php_5=\\\"$query->where($db->quoteName(\'a.published\') . \' = 1\');\\\" \\r\\n\\ttype_php_6=\\\"$query->order(\'a.###TEXT### ASC\');\\\" \\r\\n\\ttype_php_7=\\\"$db->setQuery((string)$query);\\\" \\r\\n\\ttype_php_8=\\\"$items = $db->loadObjectList();\\\" \\r\\n\\ttype_php_9=\\\"$options = array();\\\" \\r\\n\\ttype_php_10=\\\"if ($items)\\\" \\r\\n\\ttype_php_11=\\\"{\\\" \\r\\n\\ttype_php_12=\\\"\\\\t$options[] = JHtml::_(\'select.option\', \'\', \'Select a notice\');\\\" \\r\\n\\ttype_php_13=\\\"\\\\tforeach($items as $item)\\\" \\r\\n\\ttype_php_14=\\\"\\\\t{\\\" \\r\\n\\ttype_php_15=\\\"\\\\t\\\\t$options[] = JHtml::_(\'select.option\', $item->###ID###, $item->###CODE_TEXT###);\\\" \\r\\n\\ttype_php_16=\\\"\\\\t}\\\" \\r\\n\\ttype_php_17=\\\"}\\\" \\r\\n\\ttype_php_18=\\\"\\\" \\r\\n\\ttype_php_19=\\\"return $options;\\\" \\r\\n\\/>\"', 1, '2016-10-21 17:45:51', '2016-10-31 16:26:46', 4, '', 725, '7bc075cc-3058-43af-a458-a68812ac647c', '', '', '', '', ''), (1391, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'Notice (custom)', 'NOT NULL', '', 6, '\"<field \\r\\n\\ttype=\\\"noticing\\\" \\r\\n\\tname=\\\"notice\\\" \\r\\n\\tlabel=\\\"Notice\\\" \\r\\n\\tdescription=\\\"The notice being tracked\\\" \\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\tmultiple=\\\"false\\\" \\r\\n\\tdefault=\\\"0\\\" \\r\\n\\trequired=\\\"\\\" \\r\\n\\treadonly=\\\"\\\" \\r\\n\\tdisabled=\\\"\\\" \\r\\n\\tshowon=\\\"\\\" \\r\\n\\tonchange=\\\"\\\" \\r\\n\\textends=\\\"list\\\" \\r\\n\\tbutton=\\\"true\\\" \\r\\n\\ttable=\\\"#__###component###_notice\\\" \\r\\n\\tcomponent=\\\"com_###component###\\\" \\r\\n\\tview=\\\"notice\\\" \\r\\n\\tviews=\\\"notices\\\" \\r\\n\\tvalue_field=\\\"title\\\" \\r\\n\\tkey_field=\\\"id\\\" \\r\\n\\ttype_php_1=\\\"$db = JFactory::getDBO();\\\" \\r\\n\\ttype_php_2=\\\"$query = $db->getQuery(true);\\\" \\r\\n\\ttype_php_3=\\\"$query->select($db->quoteName(array(\'a.###ID###\',\'a.###TEXT###\'),array(\'###ID###\',\'###CODE_TEXT###\')));\\\" \\r\\n\\ttype_php_4=\\\"$query->from($db->quoteName(\'###TABLE###\', \'a\'));\\\" \\r\\n\\ttype_php_5=\\\"$query->where($db->quoteName(\'a.published\') . \' = 1\');\\\" \\r\\n\\ttype_php_6=\\\"$query->order(\'a.###TEXT### ASC\');\\\" \\r\\n\\ttype_php_7=\\\"$db->setQuery((string)$query);\\\" \\r\\n\\ttype_php_8=\\\"$items = $db->loadObjectList();\\\" \\r\\n\\ttype_php_9=\\\"$options = array();\\\" \\r\\n\\ttype_php_10=\\\"if ($items)\\\" \\r\\n\\ttype_php_11=\\\"{\\\" \\r\\n\\ttype_php_12=\\\"\\\\t$options[] = JHtml::_(\'select.option\', \'\', \'Select a notice\');\\\" \\r\\n\\ttype_php_13=\\\"\\\\tforeach($items as $item)\\\" \\r\\n\\ttype_php_14=\\\"\\\\t{\\\" \\r\\n\\ttype_php_15=\\\"\\\\t\\\\t$options[] = JHtml::_(\'select.option\', $item->###ID###, $item->###CODE_TEXT###);\\\" \\r\\n\\ttype_php_16=\\\"\\\\t}\\\" \\r\\n\\ttype_php_17=\\\"}\\\" \\r\\n\\ttype_php_18=\\\"\\\" \\r\\n\\ttype_php_19=\\\"return $options;\\\" \\r\\n\\/>\"', 1, '2016-10-21 17:45:51', '2016-10-31 16:26:46', 4, '', 725, '7bc075cc-3058-43af-a458-a68812ac647c', '', '', '', '', ''),
(1392, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Notice (full width)', 'NOT NULL', '', 25, '\"<field \\r\\n\\ttype=\\\"textarea\\\" \\r\\n\\tname=\\\"notice\\\" \\r\\n\\tlabel=\\\"Notice\\\" \\r\\n\\trows=\\\"11\\\" \\r\\n\\tcols=\\\"10\\\" \\r\\n\\tdescription=\\\"Add Notice Here\\\" \\r\\n\\tclass=\\\"text_area span12\\\" \\r\\n\\tfilter=\\\"HTML\\\" \\r\\n\\thint=\\\"Add Notice Here\\\" \\r\\n\\/>\"', 1, '2016-10-21 21:44:25', '2016-10-21 21:44:31', 2, '', 265, '1b033aac-1a10-4e58-bbd2-77d5f96e841a', '', '', '', '', ''), (1392, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Notice (full width)', 'NOT NULL', '', 25, '\"<field \\r\\n\\ttype=\\\"textarea\\\" \\r\\n\\tname=\\\"notice\\\" \\r\\n\\tlabel=\\\"Notice\\\" \\r\\n\\trows=\\\"11\\\" \\r\\n\\tcols=\\\"10\\\" \\r\\n\\tdescription=\\\"Add Notice Here\\\" \\r\\n\\tclass=\\\"text_area span12\\\" \\r\\n\\tfilter=\\\"HTML\\\" \\r\\n\\thint=\\\"Add Notice Here\\\" \\r\\n\\/>\"', 1, '2016-10-21 21:44:25', '2016-10-21 21:44:31', 2, '', 265, '1b033aac-1a10-4e58-bbd2-77d5f96e841a', '', '', '', '', ''),
@ -3722,7 +3725,7 @@ INSERT INTO `#__componentbuilder_field` (`id`, `add_css_view`, `add_css_views`,
(1505, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'Email Send (error note)', 'NOT NULL', '', 14, '\"<field \\r\\n\\ttype=\\\"note\\\" \\r\\n\\tname=\\\"note_emailsend_error\\\" \\r\\n\\tlabel=\\\"Email Error!\\\" \\r\\n\\tdescription=\\\"The email could not be send, please make sure that you have a valid email address set.\\\" \\r\\n\\theading=\\\"h4\\\" \\r\\n\\tclass=\\\"alert alert-error\\\" \\r\\n\\tshowon=\\\"emailsend:0\\\" \\r\\n\\/>\"', 1, '2016-11-22 15:04:51', '2016-11-22 15:25:29', 5, '', 745, '951da0fc-b151-457a-b283-06ccd77e0504', '', '', '', '', ''), (1505, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'Email Send (error note)', 'NOT NULL', '', 14, '\"<field \\r\\n\\ttype=\\\"note\\\" \\r\\n\\tname=\\\"note_emailsend_error\\\" \\r\\n\\tlabel=\\\"Email Error!\\\" \\r\\n\\tdescription=\\\"The email could not be send, please make sure that you have a valid email address set.\\\" \\r\\n\\theading=\\\"h4\\\" \\r\\n\\tclass=\\\"alert alert-error\\\" \\r\\n\\tshowon=\\\"emailsend:0\\\" \\r\\n\\/>\"', 1, '2016-11-22 15:04:51', '2016-11-22 15:25:29', 5, '', 745, '951da0fc-b151-457a-b283-06ccd77e0504', '', '', '', '', ''),
(1506, '', '', '', '', '', '', '', '', '', '', '', '', '', '', 'Document Placeholders', 'NOT NULL', '', 14, '\"<field\\n\\ttype=\\\"note\\\"\\n\\tname=\\\"note_document_placeholders\\\"\\n\\tlabel=\\\"Document Placeholders\\\"\\n\\tdescription=\\\"<div id=\'document_placeholders\'>Loading placeholders.<span class=\'loading-dots\' ><\\/span><\\/div>\\r\\n<script type=\'text\\/javascript\'>\\r\\njQuery(document).ready(function($) {\\r\\n\\t\\/\\/ get token from the form\\r\\n\\t$(\'form :input\').each(function(index, elm){\\r\\n\\t\\tif (elm.name.length == 32 && elm.type == \'hidden\')\\r\\n\\t\\t{\\r\\n\\t\\t\\tvalue = $(elm).val();\\r\\n\\t\\t\\tif (1 == value)\\r\\n\\t\\t\\t{\\r\\n\\t\\t\\t\\ttoken = elm.name;\\r\\n\\t\\t\\t}\\r\\n\\t\\t}\\r\\n\\t});\\r\\n\\t\\/\\/ nice little dot trick :)\\r\\n\\tvar x=0;\\r\\n\\tsetInterval(function() {\\r\\n\\t\\tvar dots = \'\';\\r\\n\\t\\tx++;\\r\\n\\t\\tfor (var y=0; y < x%11; y++) {\\r\\n\\t\\t\\tdots+=\'.\';\\r\\n\\t\\t}\\r\\n\\t\\tjQuery(\'.loading-dots\').text(dots);\\r\\n\\t} , 500);\\r\\n\\t\\/\\/ now get the place holders\\r\\n\\tgetPlaceHolders(\'document\', token);\\r\\n});\\r\\nfunction getPlaceHolders_server(getType, token){\\r\\n\\tvar getUrl = \'index.php?option=com_###component###&task=ajax.getPlaceHolders&format=json\';\\r\\n\\tif(token.length > 0 && getType.length > 0){\\r\\n\\t\\tvar request = \'token=\'+token+\'&getType=\'+getType;\\r\\n\\t}\\r\\n\\treturn jQuery.ajax({\\r\\n\\t\\ttype: \'GET\',\\r\\n\\t\\turl: getUrl,\\r\\n\\t\\tdataType: \'jsonp\',\\r\\n\\t\\tdata: request,\\r\\n\\t\\tjsonp: \'callback\'\\r\\n\\t});\\r\\n}\\r\\nfunction getPlaceHolders(getType, token){\\r\\n\\tgetPlaceHolders_server(getType, token).done(function(result) {\\r\\n\\t\\tif(result){\\r\\n\\t\\t\\tjQuery(\'#\'+getType+\'_placeholders\').html(result);\\r\\n\\t\\t} else {\\r\\n\\t\\t\\tjQuery(\'#\'+getType+\'_placeholders\').html(\'<div class=\\\\\'alert alert-error\\\\\'><h4 class=\\\\\'alert-heading\\\\\'>Placeholders not found!<\\/h4><div class=\\\\\'alert-message\\\\\'>There was an error, please try again later. If this error continues, contact your system administrator.<\\/div><\\/div>\');\\r\\n\\t\\t}\\r\\n\\t})\\r\\n}\\r\\n<\\/script>\\\"\\n\\theading=\\\"h3\\\"\\n\\/>\"', 1, '2016-11-22 17:35:36', '2018-09-08 10:38:52', 7, '', 742, '2ad1601a-c143-4691-8a28-71bb211023b3', '', '', '', '', ''), (1506, '', '', '', '', '', '', '', '', '', '', '', '', '', '', 'Document Placeholders', 'NOT NULL', '', 14, '\"<field\\n\\ttype=\\\"note\\\"\\n\\tname=\\\"note_document_placeholders\\\"\\n\\tlabel=\\\"Document Placeholders\\\"\\n\\tdescription=\\\"<div id=\'document_placeholders\'>Loading placeholders.<span class=\'loading-dots\' ><\\/span><\\/div>\\r\\n<script type=\'text\\/javascript\'>\\r\\njQuery(document).ready(function($) {\\r\\n\\t\\/\\/ get token from the form\\r\\n\\t$(\'form :input\').each(function(index, elm){\\r\\n\\t\\tif (elm.name.length == 32 && elm.type == \'hidden\')\\r\\n\\t\\t{\\r\\n\\t\\t\\tvalue = $(elm).val();\\r\\n\\t\\t\\tif (1 == value)\\r\\n\\t\\t\\t{\\r\\n\\t\\t\\t\\ttoken = elm.name;\\r\\n\\t\\t\\t}\\r\\n\\t\\t}\\r\\n\\t});\\r\\n\\t\\/\\/ nice little dot trick :)\\r\\n\\tvar x=0;\\r\\n\\tsetInterval(function() {\\r\\n\\t\\tvar dots = \'\';\\r\\n\\t\\tx++;\\r\\n\\t\\tfor (var y=0; y < x%11; y++) {\\r\\n\\t\\t\\tdots+=\'.\';\\r\\n\\t\\t}\\r\\n\\t\\tjQuery(\'.loading-dots\').text(dots);\\r\\n\\t} , 500);\\r\\n\\t\\/\\/ now get the place holders\\r\\n\\tgetPlaceHolders(\'document\', token);\\r\\n});\\r\\nfunction getPlaceHolders_server(getType, token){\\r\\n\\tvar getUrl = \'index.php?option=com_###component###&task=ajax.getPlaceHolders&format=json\';\\r\\n\\tif(token.length > 0 && getType.length > 0){\\r\\n\\t\\tvar request = \'token=\'+token+\'&getType=\'+getType;\\r\\n\\t}\\r\\n\\treturn jQuery.ajax({\\r\\n\\t\\ttype: \'GET\',\\r\\n\\t\\turl: getUrl,\\r\\n\\t\\tdataType: \'jsonp\',\\r\\n\\t\\tdata: request,\\r\\n\\t\\tjsonp: \'callback\'\\r\\n\\t});\\r\\n}\\r\\nfunction getPlaceHolders(getType, token){\\r\\n\\tgetPlaceHolders_server(getType, token).done(function(result) {\\r\\n\\t\\tif(result){\\r\\n\\t\\t\\tjQuery(\'#\'+getType+\'_placeholders\').html(result);\\r\\n\\t\\t} else {\\r\\n\\t\\t\\tjQuery(\'#\'+getType+\'_placeholders\').html(\'<div class=\\\\\'alert alert-error\\\\\'><h4 class=\\\\\'alert-heading\\\\\'>Placeholders not found!<\\/h4><div class=\\\\\'alert-message\\\\\'>There was an error, please try again later. If this error continues, contact your system administrator.<\\/div><\\/div>\');\\r\\n\\t\\t}\\r\\n\\t})\\r\\n}\\r\\n<\\/script>\\\"\\n\\theading=\\\"h3\\\"\\n\\/>\"', 1, '2016-11-22 17:35:36', '2018-09-08 10:38:52', 7, '', 742, '2ad1601a-c143-4691-8a28-71bb211023b3', '', '', '', '', ''),
(1507, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Add PHP (helper Classes - Both admin & site)', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"add_php_helper_both\\\" \\r\\n\\tlabel=\\\"Add PHP (helper Classes - Both admin & site)\\\" \\r\\n\\tdescription=\\\"\\\" \\r\\n\\tclass=\\\"btn-group btn-group-yesno\\\" \\r\\n\\toption=\\\"1|Yes,0|No\\\" \\r\\n\\tdefault=\\\"0\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\/>\"', 1, '2016-11-24 13:55:19', '2015-08-25 21:15:22', 1, '', 186, '5dabe624-329e-48d6-82cf-1f417df55467', '', '', '', '', ''), (1507, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Add PHP (helper Classes - Both admin & site)', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"add_php_helper_both\\\" \\r\\n\\tlabel=\\\"Add PHP (helper Classes - Both admin & site)\\\" \\r\\n\\tdescription=\\\"\\\" \\r\\n\\tclass=\\\"btn-group btn-group-yesno\\\" \\r\\n\\toption=\\\"1|Yes,0|No\\\" \\r\\n\\tdefault=\\\"0\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\/>\"', 1, '2016-11-24 13:55:19', '2015-08-25 21:15:22', 1, '', 186, '5dabe624-329e-48d6-82cf-1f417df55467', '', '', '', '', ''),
(1508, '', '', '', '', '', '', '', '', '', '', 'MEDIUMTEXT', '', '', '', 'PHP (helper_both)', 'NOT NULL', 2, 8, '\"<field\\n\\ttype=\\\"editor\\\"\\n\\tname=\\\"php_helper_both\\\"\\n\\tlabel=\\\"PHP (for both admin & site)\\\"\\n\\tdescription=\\\"Add The PHP abstract Methods to add to the component helper class. Only Methods! as it will directly be add as methods to the helper class! Do not add the php tags.\\\"\\n\\twidth=\\\"100%\\\"\\n\\theight=\\\"550px\\\"\\n\\tcols=\\\"15\\\"\\n\\trows=\\\"80\\\"\\n\\tbuttons=\\\"no\\\"\\n\\tsyntax=\\\"php\\\"\\n\\teditor=\\\"codemirror|none\\\"\\n\\tfilter=\\\"raw\\\"\\n\\tvalidate=\\\"code\\\"\\n\\/>\"', 1, '2016-11-24 13:56:26', '2019-07-08 14:19:26', 3, '', 117, '16ec7ebd-d07a-4134-8537-d7b65bcd8bac', '', '', '', '', ''), (1508, '', '', '', '', '', '', '', '', '', '', 'MEDIUMTEXT', '', '', '', 'PHP (helper_both)', 'NOT NULL', 2, 8, '\"<field\\n\\ttype=\\\"editor\\\"\\n\\tname=\\\"php_helper_both\\\"\\n\\tlabel=\\\"PHP (for both admin & site)\\\"\\n\\tdescription=\\\"Add The PHP abstract Methods to add to the component helper class. Only Methods! as it will directly be add as methods to the helper class! Do not add the php tags.\\\"\\n\\twidth=\\\"100%\\\"\\n\\theight=\\\"550px\\\"\\n\\tcols=\\\"15\\\"\\n\\trows=\\\"80\\\"\\n\\tbuttons=\\\"no\\\"\\n\\tsyntax=\\\"php\\\"\\n\\teditor=\\\"codemirror|none\\\"\\n\\tfilter=\\\"raw\\\"\\n\\tvalidate=\\\"code\\\"\\n\\tshowon=\\\"add_php_helper_both:1\\\"\\n\\/>\"', 1, '2016-11-24 13:56:26', '2024-04-19 08:10:40', 4, '', 117, '16ec7ebd-d07a-4134-8537-d7b65bcd8bac', '', '', '', '', ''),
(1509, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Add JED Listing Server', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"add_jed_server\\\" \\r\\n\\tlabel=\\\"Add JED Listing Server\\\" \\r\\n\\tdescription=\\\"\\\" \\r\\n\\tclass=\\\"btn-group btn-group-yesno\\\" \\r\\n\\toption=\\\"1|Yes,0|No\\\" \\r\\n\\tdefault=\\\"0\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\/>\"', 1, '2016-11-25 03:50:29', '2015-08-25 21:15:22', 1, '', 192, '9e0f162d-ac95-457b-a99b-fae825d3cf37', '', '', '', '', ''), (1509, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Add JED Listing Server', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"add_jed_server\\\" \\r\\n\\tlabel=\\\"Add JED Listing Server\\\" \\r\\n\\tdescription=\\\"\\\" \\r\\n\\tclass=\\\"btn-group btn-group-yesno\\\" \\r\\n\\toption=\\\"1|Yes,0|No\\\" \\r\\n\\tdefault=\\\"0\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\/>\"', 1, '2016-11-25 03:50:29', '2015-08-25 21:15:22', 1, '', 192, '9e0f162d-ac95-457b-a99b-fae825d3cf37', '', '', '', '', ''),
(1510, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'JED Listing Server FTP (Signature)', 'NOT NULL', 3, 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"jed_server_ftp\\\" \\r\\n\\tlabel=\\\"JED Listing Server FTP <br \\/><small>(encrypted field)<\\/small>\\\" \\r\\n\\tsize=\\\"250\\\" \\r\\n\\tmaxlength=\\\"250\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tdescription=\\\"The FTP details for the jed server XML location.\\\" \\r\\n\\tclass=\\\"text_area span12\\\" \\r\\n\\tfilter=\\\"STRING\\\" \\r\\n\\tmessage=\\\"Error! Please add some text here.\\\" \\r\\n\\thint=\\\"host=HOSTNAME&port=PORT_INT&options[type]=FTP_BINARY&options[timeout]=15&username=user@name.com&password=password\\\" \\r\\n\\/>\"', 1, '2016-11-25 03:51:27', '2017-06-16 07:54:28', 2, '', 192, '972d98d3-0de8-4b70-bbb3-ae3d3f54988f', '', '', '', '', ''), (1510, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'JED Listing Server FTP (Signature)', 'NOT NULL', 3, 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"jed_server_ftp\\\" \\r\\n\\tlabel=\\\"JED Listing Server FTP <br \\/><small>(encrypted field)<\\/small>\\\" \\r\\n\\tsize=\\\"250\\\" \\r\\n\\tmaxlength=\\\"250\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tdescription=\\\"The FTP details for the jed server XML location.\\\" \\r\\n\\tclass=\\\"text_area span12\\\" \\r\\n\\tfilter=\\\"STRING\\\" \\r\\n\\tmessage=\\\"Error! Please add some text here.\\\" \\r\\n\\thint=\\\"host=HOSTNAME&port=PORT_INT&options[type]=FTP_BINARY&options[timeout]=15&username=user@name.com&password=password\\\" \\r\\n\\/>\"', 1, '2016-11-25 03:51:27', '2017-06-16 07:54:28', 2, '', 192, '972d98d3-0de8-4b70-bbb3-ae3d3f54988f', '', '', '', '', ''),
(1511, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'JED Server Target', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"jed_server_target\\\" \\r\\n\\tlabel=\\\"JED Listing Server Target\\\" \\r\\n\\tdescription=\\\"Select the type of way you would like the JED server to be set.\\\" \\r\\n\\tclass=\\\"btn-group btn-group-yesno\\\" \\r\\n\\toption=\\\"1|FTP,2|ZIP,3|Other\\\" \\r\\n\\tdefault=\\\"1\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\/>\"', 1, '2016-11-25 03:51:59', '2016-11-22 05:16:21', 1, '', 192, '4b7994f7-194f-4396-9b3e-e26aa93462c8', '', '', '', '', ''), (1511, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'JED Server Target', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"jed_server_target\\\" \\r\\n\\tlabel=\\\"JED Listing Server Target\\\" \\r\\n\\tdescription=\\\"Select the type of way you would like the JED server to be set.\\\" \\r\\n\\tclass=\\\"btn-group btn-group-yesno\\\" \\r\\n\\toption=\\\"1|FTP,2|ZIP,3|Other\\\" \\r\\n\\tdefault=\\\"1\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\/>\"', 1, '2016-11-25 03:51:59', '2016-11-22 05:16:21', 1, '', 192, '4b7994f7-194f-4396-9b3e-e26aa93462c8', '', '', '', '', ''),
@ -4038,7 +4041,7 @@ INSERT INTO `#__componentbuilder_field` (`id`, `add_css_view`, `add_css_views`,
(1821, '', '', '', '', '', '', '', '', '', '', 'CHAR', '', '', '', 'Folders or Files to Ignore (note)', 'NOT NULL', '', 14, '\"<field \\r\\n\\ttype=\\\"note\\\" \\r\\n\\tname=\\\"to_ignore_note\\\" \\r\\n\\tlabel=\\\"Repository Folders or Files to Ignore\\\" \\r\\n\\tdescription=\\\"During compilation JCB deletes all files and folders from the repository folder, and then adds the newly created files and folders back into the repository folder. Yet there may be files or folders you may not want deleted, like the <b>.git<\\/b> folder, since JCB does not dynamically create that folder and so it will not be placed back, but simply delete it, unless you add it in this text field below, so that it will be ignored, and therefore not deleted in the first place. You can add multiple folders and files, separated by commas. Like: <code>.git, .hg<\\/code>\\\" \\r\\n\\theading=\\\"h4\\\" \\r\\n\\tclass=\\\"alert alert-info\\\" \\r\\n\\/>\"', 1, '2017-09-08 00:00:45', '2017-09-13 12:26:29', 2, '', 807, '4051d6b3-31f2-46ac-a5ce-350021e7d4e7', '', '', '', '', ''), (1821, '', '', '', '', '', '', '', '', '', '', 'CHAR', '', '', '', 'Folders or Files to Ignore (note)', 'NOT NULL', '', 14, '\"<field \\r\\n\\ttype=\\\"note\\\" \\r\\n\\tname=\\\"to_ignore_note\\\" \\r\\n\\tlabel=\\\"Repository Folders or Files to Ignore\\\" \\r\\n\\tdescription=\\\"During compilation JCB deletes all files and folders from the repository folder, and then adds the newly created files and folders back into the repository folder. Yet there may be files or folders you may not want deleted, like the <b>.git<\\/b> folder, since JCB does not dynamically create that folder and so it will not be placed back, but simply delete it, unless you add it in this text field below, so that it will be ignored, and therefore not deleted in the first place. You can add multiple folders and files, separated by commas. Like: <code>.git, .hg<\\/code>\\\" \\r\\n\\theading=\\\"h4\\\" \\r\\n\\tclass=\\\"alert alert-info\\\" \\r\\n\\/>\"', 1, '2017-09-08 00:00:45', '2017-09-13 12:26:29', 2, '', 807, '4051d6b3-31f2-46ac-a5ce-350021e7d4e7', '', '', '', '', ''),
(1822, '', '', '', '', '', '', '', '', '', '', 'CHAR', '', '', '', 'Dynamic Builder Option (xml) - Note', 'NOT NULL', '', 14, '\"<field \\r\\n\\ttype=\\\"note\\\" \\r\\n\\tname=\\\"note_buildcomp_dynamic_xml\\\" \\r\\n\\tlabel=\\\"Dynamic Builder (xml) Option\\\" \\r\\n\\tdescription=\\\"You can dynamically build the components back-end views and fields by adding the xml here (default Joomla xml form format). Fields for the given view will be created, and added to the existing fields and tables of this component.\\\" \\r\\n\\theading=\\\"h4\\\" \\r\\n\\tclass=\\\"alert alert-info\\\"\\r\\n\\/>\"', 1, '2017-10-05 16:48:29', '2017-10-26 15:46:10', 4, '', 751, '0808c2ae-bd19-4c57-96b4-a63d71712c8c', '', '', '', '', ''), (1822, '', '', '', '', '', '', '', '', '', '', 'CHAR', '', '', '', 'Dynamic Builder Option (xml) - Note', 'NOT NULL', '', 14, '\"<field \\r\\n\\ttype=\\\"note\\\" \\r\\n\\tname=\\\"note_buildcomp_dynamic_xml\\\" \\r\\n\\tlabel=\\\"Dynamic Builder (xml) Option\\\" \\r\\n\\tdescription=\\\"You can dynamically build the components back-end views and fields by adding the xml here (default Joomla xml form format). Fields for the given view will be created, and added to the existing fields and tables of this component.\\\" \\r\\n\\theading=\\\"h4\\\" \\r\\n\\tclass=\\\"alert alert-info\\\"\\r\\n\\/>\"', 1, '2017-10-05 16:48:29', '2017-10-26 15:46:10', 4, '', 751, '0808c2ae-bd19-4c57-96b4-a63d71712c8c', '', '', '', '', ''),
(1823, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Add Javascript (admin)', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"add_javascript\\\" \\r\\n\\tlabel=\\\"Add Javascript\\\" \\r\\n\\tdescription=\\\"\\\" \\r\\n\\tclass=\\\"btn-group btn-group-yesno\\\" \\r\\n\\toption=\\\"1|Yes,0|No\\\" \\r\\n\\tdefault=\\\"0\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\/>\"', 1, '2017-10-06 13:30:47', '2015-08-25 21:15:22', 1, '', 298, '7d31d363-03b6-4ca7-bbf4-df9a879e3006', '', '', '', '', ''), (1823, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Add Javascript (admin)', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"add_javascript\\\" \\r\\n\\tlabel=\\\"Add Javascript\\\" \\r\\n\\tdescription=\\\"\\\" \\r\\n\\tclass=\\\"btn-group btn-group-yesno\\\" \\r\\n\\toption=\\\"1|Yes,0|No\\\" \\r\\n\\tdefault=\\\"0\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\/>\"', 1, '2017-10-06 13:30:47', '2015-08-25 21:15:22', 1, '', 298, '7d31d363-03b6-4ca7-bbf4-df9a879e3006', '', '', '', '', ''),
(1824, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Javascript (admin)', 'NOT NULL', 2, 8, '\"<field\\n\\ttype=\\\"editor\\\"\\n\\tname=\\\"javascript\\\"\\n\\tlabel=\\\"Javascript\\\"\\n\\tdescription=\\\"Add JavaScript for the entire back-end. Do not add the script tags.\\\"\\n\\twidth=\\\"100%\\\"\\n\\theight=\\\"450px\\\"\\n\\tcols=\\\"15\\\"\\n\\trows=\\\"30\\\"\\n\\tbuttons=\\\"no\\\"\\n\\tsyntax=\\\"javascript\\\"\\n\\teditor=\\\"codemirror|none\\\"\\n\\tfilter=\\\"raw\\\"\\n\\tvalidate=\\\"code\\\"\\n\\/>\"', 1, '2017-10-06 13:33:40', '2019-07-08 14:19:57', 3, '', 72, '3be0d9ca-afd6-47bc-87e5-8cb73e9f5e61', '', '', '', '', ''), (1824, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Javascript (admin)', 'NOT NULL', 2, 8, '\"<field\\n\\ttype=\\\"editor\\\"\\n\\tname=\\\"javascript\\\"\\n\\tlabel=\\\"Javascript\\\"\\n\\tdescription=\\\"Add JavaScript for the entire back-end. Do not add the script tags.\\\"\\n\\twidth=\\\"100%\\\"\\n\\theight=\\\"450px\\\"\\n\\tcols=\\\"15\\\"\\n\\trows=\\\"30\\\"\\n\\tbuttons=\\\"no\\\"\\n\\tsyntax=\\\"javascript\\\"\\n\\teditor=\\\"codemirror|none\\\"\\n\\tfilter=\\\"raw\\\"\\n\\tvalidate=\\\"code\\\"\\n\\tshowon=\\\"add_javascript:1\\\"\\n\\/>\"', 1, '2017-10-06 13:33:40', '2024-04-19 08:12:33', 4, '', 72, '3be0d9ca-afd6-47bc-87e5-8cb73e9f5e61', '', '', '', '', ''),
(1825, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'Admin_View (readonly)', 'NOT NULL', '', 6, '\"<field\\n\\ttype=\\\"adminviewsreadonly\\\"\\n\\tname=\\\"admin_view\\\"\\n\\tlabel=\\\"View\\\"\\n\\tdescription=\\\"Select an admin view\\\"\\n\\tclass=\\\"list_class\\\"\\n\\tmultiple=\\\"false\\\"\\n\\tdefault=\\\"\\\"\\n\\trequired=\\\"true\\\"\\n\\treadonly=\\\"true\\\"\\n\\tdisabled=\\\"\\\"\\n\\textends=\\\"list\\\"\\n\\tbutton=\\\"false\\\"\\n\\ttable=\\\"#__###component###_admin_view\\\"\\n\\tcomponent=\\\"com_###component###\\\"\\n\\tview=\\\"admin_view\\\"\\n\\tviews=\\\"admin_views\\\"\\n\\tvalue_field=\\\"system_name\\\"\\n\\tkey_field=\\\"id\\\"\\n\\tprime_php=\\\"1\\\"\\n\\ttype_php_1=\\\"$db = Factory::getDBO();\\r\\n$query = $db->getQuery(true);\\r\\n$query->select($db->quoteName(array(\'a.###ID###\',\'a.###TEXT###\'),array(\'###ID###\',\'###CODE_TEXT###\')));\\r\\n$query->from($db->quoteName(\'###TABLE###\', \'a\'));\\r\\n$query->order(\'a.###TEXT### ASC\');\\r\\n$db->setQuery((string)$query);\\r\\n$items = $db->loadObjectList();\\r\\n$options = array();\\r\\nif ($items)\\r\\n{\\r\\n\\\\t$options[] = Html::_(\'select.option\', \'\', \'Select an option\');\\r\\n\\\\tforeach($items as $item)\\r\\n\\\\t{\\r\\n\\\\t\\\\t$options[] = Html::_(\'select.option\', $item->###ID###, $item->###CODE_TEXT###);\\r\\n\\\\t}\\r\\n}\\r\\n\\r\\nreturn $options;\\\"\\n\\/>\"', 1, '2017-10-12 11:40:04', '2018-05-08 13:52:31', 8, '', 164, '3ac1327d-75d6-4a16-913d-ef4fdf54c11c', '', '', '', '', ''), (1825, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'Admin_View (readonly)', 'NOT NULL', '', 6, '\"<field\\n\\ttype=\\\"adminviewsreadonly\\\"\\n\\tname=\\\"admin_view\\\"\\n\\tlabel=\\\"View\\\"\\n\\tdescription=\\\"Select an admin view\\\"\\n\\tclass=\\\"list_class\\\"\\n\\tmultiple=\\\"false\\\"\\n\\tdefault=\\\"\\\"\\n\\trequired=\\\"true\\\"\\n\\treadonly=\\\"true\\\"\\n\\tdisabled=\\\"\\\"\\n\\textends=\\\"list\\\"\\n\\tbutton=\\\"false\\\"\\n\\ttable=\\\"#__###component###_admin_view\\\"\\n\\tcomponent=\\\"com_###component###\\\"\\n\\tview=\\\"admin_view\\\"\\n\\tviews=\\\"admin_views\\\"\\n\\tvalue_field=\\\"system_name\\\"\\n\\tkey_field=\\\"id\\\"\\n\\tprime_php=\\\"1\\\"\\n\\ttype_php_1=\\\"$db = Factory::getDBO();\\r\\n$query = $db->getQuery(true);\\r\\n$query->select($db->quoteName(array(\'a.###ID###\',\'a.###TEXT###\'),array(\'###ID###\',\'###CODE_TEXT###\')));\\r\\n$query->from($db->quoteName(\'###TABLE###\', \'a\'));\\r\\n$query->order(\'a.###TEXT### ASC\');\\r\\n$db->setQuery((string)$query);\\r\\n$items = $db->loadObjectList();\\r\\n$options = array();\\r\\nif ($items)\\r\\n{\\r\\n\\\\t$options[] = Html::_(\'select.option\', \'\', \'Select an option\');\\r\\n\\\\tforeach($items as $item)\\r\\n\\\\t{\\r\\n\\\\t\\\\t$options[] = Html::_(\'select.option\', $item->###ID###, $item->###CODE_TEXT###);\\r\\n\\\\t}\\r\\n}\\r\\n\\r\\nreturn $options;\\\"\\n\\/>\"', 1, '2017-10-12 11:40:04', '2018-05-08 13:52:31', 8, '', 164, '3ac1327d-75d6-4a16-913d-ef4fdf54c11c', '', '', '', '', ''),
(1826, '', '', '', '', '', '', '', '', '', '', 'CHAR', '', '', '', 'Create Edit Buttons', 'NOT NULL', '', 14, '\"<field \\r\\n\\ttype=\\\"note\\\" \\r\\n\\tname=\\\"note_create_edit_buttons\\\" \\r\\n\\tdescription=\\\"Some Shortcut Buttons<hr \\/><div id=\'jform_create_edit_buttons\'><\\/div>\\\" \\r\\n\\/>\"', 1, '2017-10-12 15:22:34', '2017-10-14 14:07:46', 9, '', 808, '47193a81-064c-4813-920a-3903fc06e7a4', '', '', '', '', ''), (1826, '', '', '', '', '', '', '', '', '', '', 'CHAR', '', '', '', 'Create Edit Buttons', 'NOT NULL', '', 14, '\"<field \\r\\n\\ttype=\\\"note\\\" \\r\\n\\tname=\\\"note_create_edit_buttons\\\" \\r\\n\\tdescription=\\\"Some Shortcut Buttons<hr \\/><div id=\'jform_create_edit_buttons\'><\\/div>\\\" \\r\\n\\/>\"', 1, '2017-10-12 15:22:34', '2017-10-14 14:07:46', 9, '', 808, '47193a81-064c-4813-920a-3903fc06e7a4', '', '', '', '', ''),
(1827, '', '', '', '', '', '', '', '', '', '', 'CHAR', '', '', '', 'Create Edit Notice', 'NOT NULL', '', 14, '\"<field \\r\\n\\ttype=\\\"note\\\" \\r\\n\\tname=\\\"note_create_edit_notice\\\" \\r\\n\\tlabel=\\\"Fields &amp; Conditions\\\"\\r\\n\\theading=\\\"h4\\\"\\r\\n\\tdescription=\\\"<h5>Welcome to the new improved fields and conditions layout.<\\/h5><div class=\'note_create_edit_notice_p\'><p>We had to remove the repeatable fields layouts since Joomla has depreciated it. With this new improved layout we trust your experience will be better then ever before.<\\/p><p>You can still <a href=\'https:\\/\\/youtu.be\\/CdSKSCTzmRA?list=PLQRGFI8XZ_wtGvPQZWBfDzzlERLQgpMRE&t=32m28s\' target=\'_blank\'>watch the tutorials<\\/a>, and though it was made during the time repeatable fields were still being used, the various concepts and layouts still look mostly the same.<\\/p><\\/div>\\\" \\r\\n\\tclass=\\\"alert alert-info\\\"\\r\\n\\/>\"', 1, '2017-10-12 22:07:52', '2018-03-27 16:10:31', 10, '', 808, '8fe29b92-3950-4bb6-935a-88307f3b7eaf', '', '', '', '', ''), (1827, '', '', '', '', '', '', '', '', '', '', 'CHAR', '', '', '', 'Create Edit Notice', 'NOT NULL', '', 14, '\"<field \\r\\n\\ttype=\\\"note\\\" \\r\\n\\tname=\\\"note_create_edit_notice\\\" \\r\\n\\tlabel=\\\"Fields &amp; Conditions\\\"\\r\\n\\theading=\\\"h4\\\"\\r\\n\\tdescription=\\\"<h5>Welcome to the new improved fields and conditions layout.<\\/h5><div class=\'note_create_edit_notice_p\'><p>We had to remove the repeatable fields layouts since Joomla has depreciated it. With this new improved layout we trust your experience will be better then ever before.<\\/p><p>You can still <a href=\'https:\\/\\/youtu.be\\/CdSKSCTzmRA?list=PLQRGFI8XZ_wtGvPQZWBfDzzlERLQgpMRE&t=32m28s\' target=\'_blank\'>watch the tutorials<\\/a>, and though it was made during the time repeatable fields were still being used, the various concepts and layouts still look mostly the same.<\\/p><\\/div>\\\" \\r\\n\\tclass=\\\"alert alert-info\\\"\\r\\n\\/>\"', 1, '2017-10-12 22:07:52', '2018-03-27 16:10:31', 10, '', 808, '8fe29b92-3950-4bb6-935a-88307f3b7eaf', '', '', '', '', ''),
@ -4156,7 +4159,7 @@ INSERT INTO `#__componentbuilder_field` (`id`, `add_css_view`, `add_css_views`,
(1939, '', '', '', '', '', '', '', '', 64, '', 'CHAR', '', '', '', 'Folder (full path)', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"folderpath\\\" \\r\\n\\tlabel=\\\"Folder Path\\\" \\r\\n\\tsize=\\\"70\\\" \\r\\n\\tmaxlength=\\\"300\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tdescription=\\\"Full System Path\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\trequired=\\\"false\\\" \\r\\n\\tfilter=\\\"PATH\\\" \\r\\n\\tmessage=\\\"Error! Please add folder path here.\\\" \\r\\n\\thint=\\\"\\/home\\/user\\/folder\\\" \\r\\n\\/>\"', 1, '2018-02-16 15:01:03', '2018-02-16 17:26:14', 6, '', 304, '2e74cf93-18f9-409c-8678-27915f427543', '', '', '', '', ''), (1939, '', '', '', '', '', '', '', '', 64, '', 'CHAR', '', '', '', 'Folder (full path)', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"folderpath\\\" \\r\\n\\tlabel=\\\"Folder Path\\\" \\r\\n\\tsize=\\\"70\\\" \\r\\n\\tmaxlength=\\\"300\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tdescription=\\\"Full System Path\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\trequired=\\\"false\\\" \\r\\n\\tfilter=\\\"PATH\\\" \\r\\n\\tmessage=\\\"Error! Please add folder path here.\\\" \\r\\n\\thint=\\\"\\/home\\/user\\/folder\\\" \\r\\n\\/>\"', 1, '2018-02-16 15:01:03', '2018-02-16 17:26:14', 6, '', 304, '2e74cf93-18f9-409c-8678-27915f427543', '', '', '', '', ''),
(1940, '', '', '', '', '', '', '', '', 64, '', 'CHAR', '', '', '', 'File (full path)', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"filepath\\\" \\r\\n\\tlabel=\\\"File Path\\\" \\r\\n\\tsize=\\\"70\\\" \\r\\n\\tmaxlength=\\\"300\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tdescription=\\\"Full System Path\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\trequired=\\\"false\\\" \\r\\n\\tfilter=\\\"PATH\\\" \\r\\n\\tmessage=\\\"Error! Please add folder path here.\\\" \\r\\n\\thint=\\\"\\/home\\/user\\/folder\\/file.php\\\" \\r\\n\\/>\"', 1, '2018-02-16 15:01:12', '2018-02-16 17:26:21', 6, '', 300, '958f842f-4178-47e8-a703-380c71a599ab', '', '', '', '', ''), (1940, '', '', '', '', '', '', '', '', 64, '', 'CHAR', '', '', '', 'File (full path)', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"filepath\\\" \\r\\n\\tlabel=\\\"File Path\\\" \\r\\n\\tsize=\\\"70\\\" \\r\\n\\tmaxlength=\\\"300\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tdescription=\\\"Full System Path\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\trequired=\\\"false\\\" \\r\\n\\tfilter=\\\"PATH\\\" \\r\\n\\tmessage=\\\"Error! Please add folder path here.\\\" \\r\\n\\thint=\\\"\\/home\\/user\\/folder\\/file.php\\\" \\r\\n\\/>\"', 1, '2018-02-16 15:01:12', '2018-02-16 17:26:21', 6, '', 300, '958f842f-4178-47e8-a703-380c71a599ab', '', '', '', '', ''),
(1941, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'Cronjob Backup type', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"cronjob_backup_type\\\" \\r\\n\\tlabel=\\\"Cronjob Backup type\\\" \\r\\n\\tdescription=\\\"Select how you would like to backup JCB\\\" \\r\\n\\tclass=\\\"btn-group btn-group-yesno\\\" \\r\\n\\toption=\\\"1|Local Folder,2|Remote Server\\\" \\r\\n\\tdefault=\\\"1\\\" \\r\\n\\/>\"', 1, '2018-02-19 15:06:13', '0000-00-00 00:00:00', 1, '', 824, '4d36b626-59ab-4eac-8b62-ee65a21e8323', '', '', '', '', ''), (1941, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'Cronjob Backup type', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"cronjob_backup_type\\\" \\r\\n\\tlabel=\\\"Cronjob Backup type\\\" \\r\\n\\tdescription=\\\"Select how you would like to backup JCB\\\" \\r\\n\\tclass=\\\"btn-group btn-group-yesno\\\" \\r\\n\\toption=\\\"1|Local Folder,2|Remote Server\\\" \\r\\n\\tdefault=\\\"1\\\" \\r\\n\\/>\"', 1, '2018-02-19 15:06:13', '0000-00-00 00:00:00', 1, '', 824, '4d36b626-59ab-4eac-8b62-ee65a21e8323', '', '', '', '', ''),
(1942, '', '', '', '', '', '', '', '', 11, '', 'INT', '', '', '', 'Cronjob Backup Server (gateway)', 'NOT NULL', '', 6, '\"<field \\r\\n\\ttype=\\\"servers\\\" \\r\\n\\tname=\\\"cronjob_backup_server\\\"\\r\\n\\tlabel=\\\"Cronjob Backup Server\\\" \\r\\n\\tdescription=\\\"Select your backup server for JCB package backups.\\\" \\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\tmultiple=\\\"false\\\" \\r\\n\\tshowon=\\\"cronjob_backup_type:2\\\"\\r\\n\\tdefault=\\\"0\\\" \\r\\n\\tbutton=\\\"true\\\"\\r\\n\\textends=\\\"list\\\" \\r\\n\\ttable=\\\"#__###component###_server\\\" \\r\\n\\tcomponent=\\\"com_###component###\\\" \\r\\n\\tview=\\\"server\\\" \\r\\n\\tviews=\\\"servers\\\" \\r\\n\\tvalue_field=\\\"name\\\" \\r\\n\\tkey_field=\\\"id\\\" \\r\\n\\ttype_php_1=\\\"$db = JFactory::getDBO();\\\" \\r\\n\\ttype_php_2=\\\"$query = $db->getQuery(true);\\\" \\r\\n\\ttype_php_3=\\\"$query->select($db->quoteName(array(\'a.###ID###\',\'a.###TEXT###\',\'a.protocol\'),array(\'###ID###\',\'name\', \'protocol\')));\\\" \\r\\n\\ttype_php_4=\\\"$query->from($db->quoteName(\'###TABLE###\', \'a\'));\\\" \\r\\n\\ttype_php_5=\\\"$query->where($db->quoteName(\'a.published\') . \' >= 1\');\\\" \\r\\n\\ttype_php_6=\\\"$query->order(\'a.###TEXT### ASC\');\\\" \\r\\n\\ttype_php_7=\\\"$db->setQuery((string)$query);\\\" \\r\\n\\ttype_php_8=\\\"$items = $db->loadObjectList();\\\" \\r\\n\\ttype_php_9=\\\"$options = array();\\\" \\r\\n\\ttype_php_10=\\\"if ($items)\\\" \\r\\n\\ttype_php_11=\\\"{\\\" \\r\\n\\ttype_php_12=\\\"\\\\t$options[] = JHtml::_(\'select.option\', \'\', \'Select an option\');\\\" \\r\\n\\ttype_php_13=\\\"\\\\tforeach($items as $item)\\\" \\r\\n\\ttype_php_14=\\\"\\\\t{\\\\n\\\\t\\\\t\\\\t$item->protocol = ($item->protocol == 2) ? JText::_(\'SFTP\') : JText::_(\'FTP\');\\\" \\r\\n\\ttype_php_15=\\\"\\\\t\\\\t$options[] = JHtml::_(\'select.option\', $item->###ID###, $item->name.\' [\'.$item->protocol.\']\');\\\" \\r\\n\\ttype_php_16=\\\"\\\\t}\\\" \\r\\n\\ttype_php_17=\\\"}\\\" \\r\\n\\ttype_php_18=\\\"\\\" \\r\\n\\ttype_php_19=\\\"return $options;\\\" \\r\\n\\/>\"', 1, '2018-02-19 15:12:39', '2018-02-20 21:28:20', 8, '', 192, 'c3a3cd2c-05cd-4ded-8df2-9d38ba064ac6', '', '', '', '', ''), (1942, '', '', '', '', '', '', '', '', 11, '', 'INT', '', '', '', 'Cronjob Backup Server (gateway)', 'NOT NULL', '', 6, '\"<field\\n\\ttype=\\\"servers\\\"\\n\\tname=\\\"cronjob_backup_server\\\"\\n\\tlabel=\\\"Cronjob Backup Server\\\"\\n\\tdescription=\\\"Select your backup server for JCB package backups.\\\"\\n\\tclass=\\\"list_class\\\"\\n\\tmultiple=\\\"false\\\"\\n\\tdefault=\\\"0\\\"\\n\\tshowon=\\\"cronjob_backup_type:2\\\"\\n\\textends=\\\"list\\\"\\n\\tbutton=\\\"true\\\"\\n\\ttable=\\\"#__###component###_server\\\"\\n\\tcomponent=\\\"com_###component###\\\"\\n\\tview=\\\"server\\\"\\n\\tviews=\\\"servers\\\"\\n\\tvalue_field=\\\"name\\\"\\n\\tkey_field=\\\"id\\\"\\n\\ttype_php_1=\\\"__.o0=base64=Oo.__JGRiID0gRmFjdG9yeTo6Z2V0REJPKCk7DQokcXVlcnkgPSAkZGItPmdldFF1ZXJ5KHRydWUpOw0KJHF1ZXJ5LT5zZWxlY3QoJGRiLT5xdW90ZU5hbWUoYXJyYXkoJ2EuIyMjSUQjIyMnLCdhLiMjI1RFWFQjIyMnLCdhLnByb3RvY29sJyksYXJyYXkoJyMjI0lEIyMjJywnbmFtZScsICdwcm90b2NvbCcpKSk7DQokcXVlcnktPmZyb20oJGRiLT5xdW90ZU5hbWUoJyMjI1RBQkxFIyMjJywgJ2EnKSk7DQokcXVlcnktPndoZXJlKCRkYi0+cXVvdGVOYW1lKCdhLnB1Ymxpc2hlZCcpIC4gJyA+PSAxJyk7DQokcXVlcnktPm9yZGVyKCdhLiMjI1RFWFQjIyMgQVNDJyk7DQokZGItPnNldFF1ZXJ5KChzdHJpbmcpJHF1ZXJ5KTsNCiRpdGVtcyA9ICRkYi0+bG9hZE9iamVjdExpc3QoKTsNCiRvcHRpb25zID0gYXJyYXkoKTsNCmlmICgkaXRlbXMpDQp7DQoJJG9wdGlvbnNbXSA9IEh0bWw6Ol8oJ3NlbGVjdC5vcHRpb24nLCAnJywgJ1NlbGVjdCBhbiBvcHRpb24nKTsNCglmb3JlYWNoKCRpdGVtcyBhcyAkaXRlbSkNCgl7DQoJCSRpdGVtLT5wcm90b2NvbCA9ICgkaXRlbS0+cHJvdG9jb2wgPT0gMikgPyBUZXh0OjpfKCdTRlRQJykgOiBUZXh0OjpfKCdGVFAnKTsNCgkJJG9wdGlvbnNbXSA9IEh0bWw6Ol8oJ3NlbGVjdC5vcHRpb24nLCAkaXRlbS0+IyMjSUQjIyMsICRpdGVtLT5uYW1lLicgWycuJGl0ZW0tPnByb3RvY29sLiddJyk7DQoJfQ0KfQ0KDQpyZXR1cm4gJG9wdGlvbnM7\\\"\\n\\/>\"', 1, '2018-02-19 15:12:39', '2024-04-19 08:31:49', 9, '', 192, 'c3a3cd2c-05cd-4ded-8df2-9d38ba064ac6', '', '', '', '', ''),
(1943, '', '', '', '', '', '', 'Other', '0000-00-00 00:00:00', '', '', 'DATETIME', '', '', '', 'Start Publishing', 'NOT NULL', '', 1, '\"<field \\r\\n\\ttype=\\\"calendar\\\" \\r\\n\\tname=\\\"publish_up\\\"\\r\\n\\tdescription=\\\"An optional date to Start Publishing the item.\\\"\\r\\n\\tlabel=\\\"Start Publishing\\\" \\r\\n\\tsize=\\\"22\\\"\\r\\n\\tformat=\\\"%Y-%m-%d %H:%M:%S\\\"\\r\\n\\tfilter=\\\"user_utc\\\"\\r\\n\\/>\"', 1, '2018-02-21 08:15:52', '2018-02-21 08:25:28', 3, '', 167, '9381a727-a5b0-4a9f-9aaa-c13203f4990b', '', '', '', '', ''), (1943, '', '', '', '', '', '', 'Other', '0000-00-00 00:00:00', '', '', 'DATETIME', '', '', '', 'Start Publishing', 'NOT NULL', '', 1, '\"<field \\r\\n\\ttype=\\\"calendar\\\" \\r\\n\\tname=\\\"publish_up\\\"\\r\\n\\tdescription=\\\"An optional date to Start Publishing the item.\\\"\\r\\n\\tlabel=\\\"Start Publishing\\\" \\r\\n\\tsize=\\\"22\\\"\\r\\n\\tformat=\\\"%Y-%m-%d %H:%M:%S\\\"\\r\\n\\tfilter=\\\"user_utc\\\"\\r\\n\\/>\"', 1, '2018-02-21 08:15:52', '2018-02-21 08:25:28', 3, '', 167, '9381a727-a5b0-4a9f-9aaa-c13203f4990b', '', '', '', '', ''),
(1944, '', '', '', '', '', '', 'Other', '0000-00-00 00:00:00', '', '', 'DATETIME', '', '', '', 'Finish Publishing', 'NOT NULL', '', 1, '\"<field \\r\\n\\ttype=\\\"calendar\\\" \\r\\n\\tname=\\\"publish_down\\\"\\r\\n\\tdescription=\\\"An optional date to Finish Publishing the item.\\\"\\r\\n\\tlabel=\\\"Finish Publishing\\\" \\r\\n\\tsize=\\\"22\\\"\\r\\n\\tformat=\\\"%Y-%m-%d %H:%M:%S\\\"\\r\\n\\tfilter=\\\"user_utc\\\"\\r\\n\\/>\"', 1, '2018-02-21 08:18:35', '2018-02-21 08:25:39', 2, '', 167, '880a4c93-d04c-4dcd-9bdd-d3061ed6c34e', '', '', '', '', ''), (1944, '', '', '', '', '', '', 'Other', '0000-00-00 00:00:00', '', '', 'DATETIME', '', '', '', 'Finish Publishing', 'NOT NULL', '', 1, '\"<field \\r\\n\\ttype=\\\"calendar\\\" \\r\\n\\tname=\\\"publish_down\\\"\\r\\n\\tdescription=\\\"An optional date to Finish Publishing the item.\\\"\\r\\n\\tlabel=\\\"Finish Publishing\\\" \\r\\n\\tsize=\\\"22\\\"\\r\\n\\tformat=\\\"%Y-%m-%d %H:%M:%S\\\"\\r\\n\\tfilter=\\\"user_utc\\\"\\r\\n\\/>\"', 1, '2018-02-21 08:18:35', '2018-02-21 08:25:39', 2, '', 167, '880a4c93-d04c-4dcd-9bdd-d3061ed6c34e', '', '', '', '', ''),
(1945, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'Initiation Type (sync)', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"type\\\" \\r\\n\\tlabel=\\\"Initiation Type<br \\/><small>(do not change)<\\/small>\\\" \\r\\n\\tdescription=\\\"Owners allows sync access.<br \\/>Partners request sync access.\\\" \\r\\n\\tclass=\\\"btn-group btn-group-yesno\\\" \\r\\n\\toption=\\\"1|Owner,2|Partner\\\" \\r\\n\\tdefault=\\\"2\\\" \\r\\n\\treadonly=\\\"true\\\"\\r\\n\\tmessage=\\\"You must select a type.\\\" \\r\\n\\/>\"', 1, '2018-02-21 14:35:22', '2018-02-22 14:31:18', 6, '', 825, '484ad0a4-4013-49b5-bbaf-02421a49ca47', '', '', '', '', ''), (1945, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'Initiation Type (sync)', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"type\\\" \\r\\n\\tlabel=\\\"Initiation Type<br \\/><small>(do not change)<\\/small>\\\" \\r\\n\\tdescription=\\\"Owners allows sync access.<br \\/>Partners request sync access.\\\" \\r\\n\\tclass=\\\"btn-group btn-group-yesno\\\" \\r\\n\\toption=\\\"1|Owner,2|Partner\\\" \\r\\n\\tdefault=\\\"2\\\" \\r\\n\\treadonly=\\\"true\\\"\\r\\n\\tmessage=\\\"You must select a type.\\\" \\r\\n\\/>\"', 1, '2018-02-21 14:35:22', '2018-02-22 14:31:18', 6, '', 825, '484ad0a4-4013-49b5-bbaf-02421a49ca47', '', '', '', '', ''),
@ -4246,7 +4249,7 @@ INSERT INTO `#__componentbuilder_field` (`id`, `add_css_view`, `add_css_views`,
(2029, '', '', '', '', '', '', '', '', 64, '', 'VARCHAR', '', '', '', 'JCB Package Directories', 'NOT NULL', '', 11, '\"<field\\n\\ttype=\\\"list\\\"\\n\\tname=\\\"jcb_package_directories\\\"\\n\\tlabel=\\\"Directories\\\"\\n\\tdescription=\\\"Here you can manage what package directories show in the JCB package import area. \\\"\\n\\tmessage=\\\"\\\"\\n\\tclass=\\\"list_class\\\"\\n\\tmultiple=\\\"true\\\"\\n\\toption=\\\"vdm|VDM Packages,jcb|JCB Community Packages\\\"\\n\\tdefault=\\\"\\\"\\n\\tshowon=\\\"manage_jcb_package_directories:1\\\"\\n\\/>\"', 1, '2018-05-03 13:29:50', '2018-05-03 13:32:28', 3, '', 856, '678cdd29-9ee5-4270-9fbe-bb7e398eed13', '', '', '', '', ''), (2029, '', '', '', '', '', '', '', '', 64, '', 'VARCHAR', '', '', '', 'JCB Package Directories', 'NOT NULL', '', 11, '\"<field\\n\\ttype=\\\"list\\\"\\n\\tname=\\\"jcb_package_directories\\\"\\n\\tlabel=\\\"Directories\\\"\\n\\tdescription=\\\"Here you can manage what package directories show in the JCB package import area. \\\"\\n\\tmessage=\\\"\\\"\\n\\tclass=\\\"list_class\\\"\\n\\tmultiple=\\\"true\\\"\\n\\toption=\\\"vdm|VDM Packages,jcb|JCB Community Packages\\\"\\n\\tdefault=\\\"\\\"\\n\\tshowon=\\\"manage_jcb_package_directories:1\\\"\\n\\/>\"', 1, '2018-05-03 13:29:50', '2018-05-03 13:32:28', 3, '', 856, '678cdd29-9ee5-4270-9fbe-bb7e398eed13', '', '', '', '', ''),
(2030, '', '', '', '', '', '', '', '', 64, '', 'VARCHAR', '', '', '', 'Manage JCB Package Directories', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"manage_jcb_package_directories\\\"\\n\\tlabel=\\\"Manage JCB Package Directories\\\"\\n\\tdescription=\\\"Here you can choose to manually select what directories should show, or turn them off altogether.\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"0|None,2|Show All,1|Manual Selection\\\"\\n\\tdefault=\\\"2\\\"\\n\\trequired=\\\"true\\\"\\n\\/>\"', 1, '2018-05-03 13:37:37', '2018-05-03 13:32:28', 1, '', 856, 'bc7bf6c7-a457-4197-99da-b0b1d2e53556', '', '', '', '', ''), (2030, '', '', '', '', '', '', '', '', 64, '', 'VARCHAR', '', '', '', 'Manage JCB Package Directories', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"manage_jcb_package_directories\\\"\\n\\tlabel=\\\"Manage JCB Package Directories\\\"\\n\\tdescription=\\\"Here you can choose to manually select what directories should show, or turn them off altogether.\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"0|None,2|Show All,1|Manual Selection\\\"\\n\\tdefault=\\\"2\\\"\\n\\trequired=\\\"true\\\"\\n\\/>\"', 1, '2018-05-03 13:37:37', '2018-05-03 13:32:28', 1, '', 856, 'bc7bf6c7-a457-4197-99da-b0b1d2e53556', '', '', '', '', ''),
(2031, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Add MySql - (Uninstall)', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"add_sql_uninstall\\\"\\n\\tlabel=\\\"Add MySQL - (Uninstall)\\\"\\n\\tdescription=\\\"\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"1|Yes,0|No\\\"\\n\\tdefault=\\\"0\\\"\\n\\trequired=\\\"true\\\"\\n\\/>\"', 1, '2018-05-11 03:28:22', '2018-05-11 03:27:39', 1, '', 190, 'f22fd59e-4d06-4578-b0bb-a624b8efd145', '', '', '', '', ''), (2031, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Add MySql - (Uninstall)', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"add_sql_uninstall\\\"\\n\\tlabel=\\\"Add MySQL - (Uninstall)\\\"\\n\\tdescription=\\\"\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"1|Yes,0|No\\\"\\n\\tdefault=\\\"0\\\"\\n\\trequired=\\\"true\\\"\\n\\/>\"', 1, '2018-05-11 03:28:22', '2018-05-11 03:27:39', 1, '', 190, 'f22fd59e-4d06-4578-b0bb-a624b8efd145', '', '', '', '', ''),
(2032, '', '', '', '', '', '', '', '', '', '', 'MEDIUMTEXT', '', '', '', 'MySQL - (Uninstall)', 'NOT NULL', 2, 25, '\"<field\\n\\ttype=\\\"textarea\\\"\\n\\tname=\\\"sql_uninstall\\\"\\n\\tlabel=\\\"MySQL - (Uninstall)\\\"\\n\\trows=\\\"30\\\"\\n\\tcols=\\\"15\\\"\\n\\tdescription=\\\"Add your MySQL here for uninstall!\\\"\\n\\tclass=\\\"text_area span12\\\"\\n\\tfilter=\\\"raw\\\"\\n\\thint=\\\"\\/\\/ Add MySQL to uninstall Here\\\"\\n\\trequired=\\\"true\\\"\\n\\/>\"', 1, '2018-05-11 03:30:39', '2015-08-25 21:15:22', 1, '', 5, 'b877b188-693c-43a3-9121-a37a3943d7c1', '', '', '', '', ''), (2032, '', '', '', '', '', '', '', '', '', '', 'MEDIUMTEXT', '', '', '', 'MySQL - (Uninstall)', 'NOT NULL', 2, 25, '\"<field\\n\\ttype=\\\"textarea\\\"\\n\\tname=\\\"sql_uninstall\\\"\\n\\tlabel=\\\"MySQL - (Uninstall)\\\"\\n\\trows=\\\"30\\\"\\n\\tcols=\\\"15\\\"\\n\\tdescription=\\\"Add your MySQL here for uninstall!\\\"\\n\\tclass=\\\"text_area span12\\\"\\n\\tfilter=\\\"raw\\\"\\n\\thint=\\\"\\/\\/ Add MySQL to uninstall Here\\\"\\n\\tshowon=\\\"add_sql_uninstall:1\\\"\\n\\/>\"', 1, '2018-05-11 03:30:39', '2024-04-19 08:16:19', 2, '', 5, 'b877b188-693c-43a3-9121-a37a3943d7c1', '', '', '', '', ''),
(2033, '', '', '', '', '', '', '', '', '', '', '', '', '', '', 'List Subcriptions', 'NOT NULL', '', 14, '\"<field\\n\\ttype=\\\"note\\\"\\n\\tname=\\\"note_display_message_subscribers\\\"\\n\\tdescription=\\\"<div id=\'display_message_subscribers\' >List of subscribers will show-up here!<\\/div>\\\"\\n\\/>\"', 1, '2018-05-14 19:41:41', '0000-00-00 00:00:00', 1, '', 857, '2869f4cc-9e30-4b7e-8861-5750284edca0', '', '', '', '', ''), (2033, '', '', '', '', '', '', '', '', '', '', '', '', '', '', 'List Subcriptions', 'NOT NULL', '', 14, '\"<field\\n\\ttype=\\\"note\\\"\\n\\tname=\\\"note_display_message_subscribers\\\"\\n\\tdescription=\\\"<div id=\'display_message_subscribers\' >List of subscribers will show-up here!<\\/div>\\\"\\n\\/>\"', 1, '2018-05-14 19:41:41', '0000-00-00 00:00:00', 1, '', 857, '2869f4cc-9e30-4b7e-8861-5750284edca0', '', '', '', '', ''),
(2034, '', '', '', '', '', '', '', '', '', '', '', '', '', '', 'Email Placeholders', 'NOT NULL', '', 14, '\"<field\\n\\ttype=\\\"note\\\"\\n\\tname=\\\"note_email_placeholders\\\"\\n\\tlabel=\\\"Email Placeholders\\\"\\n\\tdescription=\\\"<div id=\'email_placeholders\'>Loading placeholders.<span class=\'loading-dots\' ><\\/span><\\/div>\\r\\n<script type=\'text\\/javascript\'>\\r\\njQuery(document).ready(function($) {\\r\\n\\t\\/\\/ get token from the form\\r\\n\\t$(\'form :input\').each(function(index, elm){\\r\\n\\t\\tif (elm.name.length == 32 && elm.type == \'hidden\')\\r\\n\\t\\t{\\r\\n\\t\\t\\tvalue = $(elm).val();\\r\\n\\t\\t\\tif (1 == value)\\r\\n\\t\\t\\t{\\r\\n\\t\\t\\t\\ttoken = elm.name;\\r\\n\\t\\t\\t}\\r\\n\\t\\t}\\r\\n\\t});\\r\\n\\t\\/\\/ nice little dot trick :)\\r\\n\\tvar x=0;\\r\\n\\tsetInterval(function() {\\r\\n\\t\\tvar dots = \'\';\\r\\n\\t\\tx++;\\r\\n\\t\\tfor (var y=0; y < x%11; y++) {\\r\\n\\t\\t\\tdots+=\'.\';\\r\\n\\t\\t}\\r\\n\\t\\tjQuery(\'.loading-dots\').text(dots);\\r\\n\\t} , 500);\\r\\n\\t\\/\\/ now get the place holders\\r\\n\\tgetPlaceHolders(\'email\', token);\\r\\n});\\r\\nfunction getPlaceHolders_server(getType, token){\\r\\n\\tvar getUrl = \'index.php?option=com_###component###&task=ajax.getPlaceHolders&format=json\';\\r\\n\\tif(token.length > 0 && getType.length > 0){\\r\\n\\t\\tvar request = \'token=\'+token+\'&getType=\'+getType;\\r\\n\\t}\\r\\n\\treturn jQuery.ajax({\\r\\n\\t\\ttype: \'GET\',\\r\\n\\t\\turl: getUrl,\\r\\n\\t\\tdataType: \'jsonp\',\\r\\n\\t\\tdata: request,\\r\\n\\t\\tjsonp: \'callback\'\\r\\n\\t});\\r\\n}\\r\\nfunction getPlaceHolders(getType, token){\\r\\n\\tgetPlaceHolders_server(getType, token).done(function(result) {\\r\\n\\t\\tif(result){\\r\\n\\t\\t\\tjQuery(\'#\'+getType+\'_placeholders\').html(result);\\r\\n\\t\\t} else {\\r\\n\\t\\t\\tjQuery(\'#\'+getType+\'_placeholders\').html(\'<div class=\\\\\'alert alert-error\\\\\'><h4 class=\\\\\'alert-heading\\\\\'>Placeholders not found!<\\/h4><div class=\\\\\'alert-message\\\\\'>There was an error, please try again later. If this error continues, contact your system administrator.<\\/div><\\/div>\');\\r\\n\\t\\t}\\r\\n\\t})\\r\\n}\\r\\n<\\/script>\\\"\\n\\theading=\\\"h3\\\"\\n\\/>\"', 1, '2018-05-15 16:20:35', '2018-05-15 16:22:36', 2, '', 742, 'b1bde7ab-8107-4abf-84da-14e414edb5f1', '', '', '', '', ''), (2034, '', '', '', '', '', '', '', '', '', '', '', '', '', '', 'Email Placeholders', 'NOT NULL', '', 14, '\"<field\\n\\ttype=\\\"note\\\"\\n\\tname=\\\"note_email_placeholders\\\"\\n\\tlabel=\\\"Email Placeholders\\\"\\n\\tdescription=\\\"<div id=\'email_placeholders\'>Loading placeholders.<span class=\'loading-dots\' ><\\/span><\\/div>\\r\\n<script type=\'text\\/javascript\'>\\r\\njQuery(document).ready(function($) {\\r\\n\\t\\/\\/ get token from the form\\r\\n\\t$(\'form :input\').each(function(index, elm){\\r\\n\\t\\tif (elm.name.length == 32 && elm.type == \'hidden\')\\r\\n\\t\\t{\\r\\n\\t\\t\\tvalue = $(elm).val();\\r\\n\\t\\t\\tif (1 == value)\\r\\n\\t\\t\\t{\\r\\n\\t\\t\\t\\ttoken = elm.name;\\r\\n\\t\\t\\t}\\r\\n\\t\\t}\\r\\n\\t});\\r\\n\\t\\/\\/ nice little dot trick :)\\r\\n\\tvar x=0;\\r\\n\\tsetInterval(function() {\\r\\n\\t\\tvar dots = \'\';\\r\\n\\t\\tx++;\\r\\n\\t\\tfor (var y=0; y < x%11; y++) {\\r\\n\\t\\t\\tdots+=\'.\';\\r\\n\\t\\t}\\r\\n\\t\\tjQuery(\'.loading-dots\').text(dots);\\r\\n\\t} , 500);\\r\\n\\t\\/\\/ now get the place holders\\r\\n\\tgetPlaceHolders(\'email\', token);\\r\\n});\\r\\nfunction getPlaceHolders_server(getType, token){\\r\\n\\tvar getUrl = \'index.php?option=com_###component###&task=ajax.getPlaceHolders&format=json\';\\r\\n\\tif(token.length > 0 && getType.length > 0){\\r\\n\\t\\tvar request = \'token=\'+token+\'&getType=\'+getType;\\r\\n\\t}\\r\\n\\treturn jQuery.ajax({\\r\\n\\t\\ttype: \'GET\',\\r\\n\\t\\turl: getUrl,\\r\\n\\t\\tdataType: \'jsonp\',\\r\\n\\t\\tdata: request,\\r\\n\\t\\tjsonp: \'callback\'\\r\\n\\t});\\r\\n}\\r\\nfunction getPlaceHolders(getType, token){\\r\\n\\tgetPlaceHolders_server(getType, token).done(function(result) {\\r\\n\\t\\tif(result){\\r\\n\\t\\t\\tjQuery(\'#\'+getType+\'_placeholders\').html(result);\\r\\n\\t\\t} else {\\r\\n\\t\\t\\tjQuery(\'#\'+getType+\'_placeholders\').html(\'<div class=\\\\\'alert alert-error\\\\\'><h4 class=\\\\\'alert-heading\\\\\'>Placeholders not found!<\\/h4><div class=\\\\\'alert-message\\\\\'>There was an error, please try again later. If this error continues, contact your system administrator.<\\/div><\\/div>\');\\r\\n\\t\\t}\\r\\n\\t})\\r\\n}\\r\\n<\\/script>\\\"\\n\\theading=\\\"h3\\\"\\n\\/>\"', 1, '2018-05-15 16:20:35', '2018-05-15 16:22:36', 2, '', 742, 'b1bde7ab-8107-4abf-84da-14e414edb5f1', '', '', '', '', ''),
(2035, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', 2, '', '', 'Not Relationship (project)', 'NOT NULL', '', 11, '\"<field\\n\\ttype=\\\"list\\\"\\n\\tname=\\\"not_relationship\\\"\\n\\tlabel=\\\"Not in Relationship\\\"\\n\\tdescription=\\\"with the project\\\"\\n\\tclass=\\\"list_class\\\"\\n\\tmultiple=\\\"true\\\"\\n\\tfilter=\\\"INT\\\"\\n\\toption=\\\"1|Admin,2|Push,3|Pull,4|Forked,5|Stargazer,6|Watcher\\\"\\n\\tdefault=\\\"\\\"\\n\\/>\"', 1, '2018-05-15 16:33:57', '2018-05-11 04:18:40', 1, '', 846, 'a0b5f119-9fa0-4fb9-8d86-115ba05bf5fb', '', '', '', '', ''), (2035, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', 2, '', '', 'Not Relationship (project)', 'NOT NULL', '', 11, '\"<field\\n\\ttype=\\\"list\\\"\\n\\tname=\\\"not_relationship\\\"\\n\\tlabel=\\\"Not in Relationship\\\"\\n\\tdescription=\\\"with the project\\\"\\n\\tclass=\\\"list_class\\\"\\n\\tmultiple=\\\"true\\\"\\n\\tfilter=\\\"INT\\\"\\n\\toption=\\\"1|Admin,2|Push,3|Pull,4|Forked,5|Stargazer,6|Watcher\\\"\\n\\tdefault=\\\"\\\"\\n\\/>\"', 1, '2018-05-15 16:33:57', '2018-05-11 04:18:40', 1, '', 846, 'a0b5f119-9fa0-4fb9-8d86-115ba05bf5fb', '', '', '', '', ''),
@ -4812,8 +4815,8 @@ INSERT INTO `#__componentbuilder_field` (`id`, `add_css_view`, `add_css_views`,
(2595, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'Joomla Plugins (readonly - JCB)', 'NOT NULL', '', 6, '\"<field\\n\\ttype=\\\"joomlaplugins\\\"\\n\\tname=\\\"joomla_plugin\\\"\\n\\tlabel=\\\"Joomla Plugins\\\"\\n\\tclass=\\\"list_class span12\\\"\\n\\tmultiple=\\\"false\\\"\\n\\tdefault=\\\"0\\\"\\n\\treadonly=\\\"true\\\"\\n\\textends=\\\"list\\\"\\n\\ttable=\\\"#__###component###_joomla_plugin\\\"\\n\\tcomponent=\\\"com_###component###\\\"\\n\\tview=\\\"joomla_plugin\\\"\\n\\tviews=\\\"joomla_plugins\\\"\\n\\tvalue_field=\\\"system_name\\\"\\n\\tkey_field=\\\"id\\\"\\n\\ttype_php_1=\\\"__.o0=base64=Oo.__Ly8gR2V0IHRoZSB1c2VyIG9iamVjdC4NCgkJJHVzZXIgPSBKRmFjdG9yeTo6Z2V0VXNlcigpOw0KCQkvLyBHZXQgdGhlIGRhdGFic2Ugb2JqZWN0Lg0KCQkkZGIgPSBKRmFjdG9yeTo6Z2V0REJPKCk7DQoJCSRxdWVyeSA9ICRkYi0+Z2V0UXVlcnkodHJ1ZSk7DQoJCSRxdWVyeS0+c2VsZWN0KCRkYi0+cXVvdGVOYW1lKGFycmF5KCdhLiMjI0lEIyMjJywnYS4jIyNURVhUIyMjJywnYS5uYW1lJywnYi5uYW1lJywnYy5uYW1lJyksYXJyYXkoJyMjI0lEIyMjJywnIyMjQ09ERV9URVhUIyMjJywnbmFtZScsJ2NsYXNzX2V4dGVuZHNfbmFtZScsJ2pvb21sYV9wbHVnaW5fZ3JvdXBfbmFtZScpKSk7DQoJCSRxdWVyeS0+ZnJvbSgkZGItPnF1b3RlTmFtZSgnIyMjVEFCTEUjIyMnLCAnYScpKTsNCgkJJHF1ZXJ5LT5qb2luKCdMRUZUJywgJGRiLT5xdW90ZU5hbWUoJyNfX1tbW2NvbXBvbmVudF1dXV9jbGFzc19leHRlbmRzJywgJ2InKSAuICcgT04gKCcgLiAkZGItPnF1b3RlTmFtZSgnYS5jbGFzc19leHRlbmRzJykgLiAnID0gJyAuICRkYi0+cXVvdGVOYW1lKCdiLmlkJykgLiAnKScpOw0KCQkkcXVlcnktPmpvaW4oJ0xFRlQnLCAkZGItPnF1b3RlTmFtZSgnI19fW1tbY29tcG9uZW50XV1dX2pvb21sYV9wbHVnaW5fZ3JvdXAnLCAnYycpIC4gJyBPTiAoJyAuICRkYi0+cXVvdGVOYW1lKCdhLmpvb21sYV9wbHVnaW5fZ3JvdXAnKSAuICcgPSAnIC4gJGRiLT5xdW90ZU5hbWUoJ2MuaWQnKSAuICcpJyk7DQoJCSRxdWVyeS0+d2hlcmUoJGRiLT5xdW90ZU5hbWUoJ2EucHVibGlzaGVkJykgLiAnID49IDEnKTsNCgkJJHF1ZXJ5LT5vcmRlcignYS4jIyNURVhUIyMjIEFTQycpOw0KCQkvLyBJbXBsZW1lbnQgVmlldyBMZXZlbCBBY2Nlc3MgKGlmIHNldCBpbiB0YWJsZSkNCgkJaWYgKCEkdXNlci0+YXV0aG9yaXNlKCdjb3JlLm9wdGlvbnMnLCAnW1tbY29tX2NvbXBvbmVudF1dXScpKQ0KCQl7DQoJCQkkY29sdW1ucyA9ICRkYi0+Z2V0VGFibGVDb2x1bW5zKCcjIyNUQUJMRSMjIycpOw0KCQkJaWYoaXNzZXQoJGNvbHVtbnNbJ2FjY2VzcyddKSkNCgkJCXsNCgkJCQkkZ3JvdXBzID0gaW1wbG9kZSgnLCcsICR1c2VyLT5nZXRBdXRob3Jpc2VkVmlld0xldmVscygpKTsNCgkJCQkkcXVlcnktPndoZXJlKCdhLmFjY2VzcyBJTiAoJyAuICRncm91cHMgLiAnKScpOw0KCQkJfQ0KCQl9DQoJCSRkYi0+c2V0UXVlcnkoKHN0cmluZykkcXVlcnkpOw0KCQkkaXRlbXMgPSAkZGItPmxvYWRPYmplY3RMaXN0KCk7DQoJCSRvcHRpb25zID0gYXJyYXkoKTsNCgkJaWYgKCRpdGVtcykNCgkJew0KCQkJJG9wdGlvbnNbXSA9IEpIdG1sOjpfKCdzZWxlY3Qub3B0aW9uJywgJycsICdTZWxlY3QgYSBwbHVnaW4nKTsNCgkJCWZvcmVhY2goJGl0ZW1zIGFzICRpdGVtKQ0KCQkJew0KCQkJCS8vIHNldCBhIGZ1bGwgY2xhc3MgbmFtZQ0KCQkJCSRvcHRpb25zW10gPSBKSHRtbDo6Xygnc2VsZWN0Lm9wdGlvbicsICRpdGVtLT4jIyNJRCMjIywgJyggJyAuICRpdGVtLT4jIyNDT0RFX1RFWFQjIyMgLiAnICkgY2xhc3MgUGxnJyAuIHVjZmlyc3QoJGl0ZW0tPmpvb21sYV9wbHVnaW5fZ3JvdXBfbmFtZSkgLiAkaXRlbS0+bmFtZSAuICcgZXh0ZW5kcyAnIC4gJGl0ZW0tPmNsYXNzX2V4dGVuZHNfbmFtZSk7DQoJCQl9DQoJCX0NCgkJcmV0dXJuICRvcHRpb25zOw==\\\"\\n\\/>\"', 1, '2019-07-23 11:57:58', '2019-08-21 02:14:21', 3, '', 937, 'd5aeaa99-9fba-4b67-b850-68e19256520a', '', '', '', '', ''), (2595, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'Joomla Plugins (readonly - JCB)', 'NOT NULL', '', 6, '\"<field\\n\\ttype=\\\"joomlaplugins\\\"\\n\\tname=\\\"joomla_plugin\\\"\\n\\tlabel=\\\"Joomla Plugins\\\"\\n\\tclass=\\\"list_class span12\\\"\\n\\tmultiple=\\\"false\\\"\\n\\tdefault=\\\"0\\\"\\n\\treadonly=\\\"true\\\"\\n\\textends=\\\"list\\\"\\n\\ttable=\\\"#__###component###_joomla_plugin\\\"\\n\\tcomponent=\\\"com_###component###\\\"\\n\\tview=\\\"joomla_plugin\\\"\\n\\tviews=\\\"joomla_plugins\\\"\\n\\tvalue_field=\\\"system_name\\\"\\n\\tkey_field=\\\"id\\\"\\n\\ttype_php_1=\\\"__.o0=base64=Oo.__Ly8gR2V0IHRoZSB1c2VyIG9iamVjdC4NCgkJJHVzZXIgPSBKRmFjdG9yeTo6Z2V0VXNlcigpOw0KCQkvLyBHZXQgdGhlIGRhdGFic2Ugb2JqZWN0Lg0KCQkkZGIgPSBKRmFjdG9yeTo6Z2V0REJPKCk7DQoJCSRxdWVyeSA9ICRkYi0+Z2V0UXVlcnkodHJ1ZSk7DQoJCSRxdWVyeS0+c2VsZWN0KCRkYi0+cXVvdGVOYW1lKGFycmF5KCdhLiMjI0lEIyMjJywnYS4jIyNURVhUIyMjJywnYS5uYW1lJywnYi5uYW1lJywnYy5uYW1lJyksYXJyYXkoJyMjI0lEIyMjJywnIyMjQ09ERV9URVhUIyMjJywnbmFtZScsJ2NsYXNzX2V4dGVuZHNfbmFtZScsJ2pvb21sYV9wbHVnaW5fZ3JvdXBfbmFtZScpKSk7DQoJCSRxdWVyeS0+ZnJvbSgkZGItPnF1b3RlTmFtZSgnIyMjVEFCTEUjIyMnLCAnYScpKTsNCgkJJHF1ZXJ5LT5qb2luKCdMRUZUJywgJGRiLT5xdW90ZU5hbWUoJyNfX1tbW2NvbXBvbmVudF1dXV9jbGFzc19leHRlbmRzJywgJ2InKSAuICcgT04gKCcgLiAkZGItPnF1b3RlTmFtZSgnYS5jbGFzc19leHRlbmRzJykgLiAnID0gJyAuICRkYi0+cXVvdGVOYW1lKCdiLmlkJykgLiAnKScpOw0KCQkkcXVlcnktPmpvaW4oJ0xFRlQnLCAkZGItPnF1b3RlTmFtZSgnI19fW1tbY29tcG9uZW50XV1dX2pvb21sYV9wbHVnaW5fZ3JvdXAnLCAnYycpIC4gJyBPTiAoJyAuICRkYi0+cXVvdGVOYW1lKCdhLmpvb21sYV9wbHVnaW5fZ3JvdXAnKSAuICcgPSAnIC4gJGRiLT5xdW90ZU5hbWUoJ2MuaWQnKSAuICcpJyk7DQoJCSRxdWVyeS0+d2hlcmUoJGRiLT5xdW90ZU5hbWUoJ2EucHVibGlzaGVkJykgLiAnID49IDEnKTsNCgkJJHF1ZXJ5LT5vcmRlcignYS4jIyNURVhUIyMjIEFTQycpOw0KCQkvLyBJbXBsZW1lbnQgVmlldyBMZXZlbCBBY2Nlc3MgKGlmIHNldCBpbiB0YWJsZSkNCgkJaWYgKCEkdXNlci0+YXV0aG9yaXNlKCdjb3JlLm9wdGlvbnMnLCAnW1tbY29tX2NvbXBvbmVudF1dXScpKQ0KCQl7DQoJCQkkY29sdW1ucyA9ICRkYi0+Z2V0VGFibGVDb2x1bW5zKCcjIyNUQUJMRSMjIycpOw0KCQkJaWYoaXNzZXQoJGNvbHVtbnNbJ2FjY2VzcyddKSkNCgkJCXsNCgkJCQkkZ3JvdXBzID0gaW1wbG9kZSgnLCcsICR1c2VyLT5nZXRBdXRob3Jpc2VkVmlld0xldmVscygpKTsNCgkJCQkkcXVlcnktPndoZXJlKCdhLmFjY2VzcyBJTiAoJyAuICRncm91cHMgLiAnKScpOw0KCQkJfQ0KCQl9DQoJCSRkYi0+c2V0UXVlcnkoKHN0cmluZykkcXVlcnkpOw0KCQkkaXRlbXMgPSAkZGItPmxvYWRPYmplY3RMaXN0KCk7DQoJCSRvcHRpb25zID0gYXJyYXkoKTsNCgkJaWYgKCRpdGVtcykNCgkJew0KCQkJJG9wdGlvbnNbXSA9IEpIdG1sOjpfKCdzZWxlY3Qub3B0aW9uJywgJycsICdTZWxlY3QgYSBwbHVnaW4nKTsNCgkJCWZvcmVhY2goJGl0ZW1zIGFzICRpdGVtKQ0KCQkJew0KCQkJCS8vIHNldCBhIGZ1bGwgY2xhc3MgbmFtZQ0KCQkJCSRvcHRpb25zW10gPSBKSHRtbDo6Xygnc2VsZWN0Lm9wdGlvbicsICRpdGVtLT4jIyNJRCMjIywgJyggJyAuICRpdGVtLT4jIyNDT0RFX1RFWFQjIyMgLiAnICkgY2xhc3MgUGxnJyAuIHVjZmlyc3QoJGl0ZW0tPmpvb21sYV9wbHVnaW5fZ3JvdXBfbmFtZSkgLiAkaXRlbS0+bmFtZSAuICcgZXh0ZW5kcyAnIC4gJGl0ZW0tPmNsYXNzX2V4dGVuZHNfbmFtZSk7DQoJCQl9DQoJCX0NCgkJcmV0dXJuICRvcHRpb25zOw==\\\"\\n\\/>\"', 1, '2019-07-23 11:57:58', '2019-08-21 02:14:21', 3, '', 937, 'd5aeaa99-9fba-4b67-b850-68e19256520a', '', '', '', '', ''),
(2596, '', '', '', '', '', '', '', '', 11, '', 'INT', '', '', '', 'mygrouplist', 'NOT NULL', '', 39, '\"<field\\n\\ttype=\\\"groupedlist\\\"\\n\\tname=\\\"mygrouplist\\\"\\n\\tlabel=\\\"Select an option\\\"\\n\\tdescription=\\\"\\\"\\n\\tmessage=\\\"\\\"\\n\\tclass=\\\"list_class\\\"\\n\\tmultiple=\\\"false\\\"\\n\\tfilter=\\\"\\\"\\n\\trequired=\\\"\\\"\\n\\tvalidate=\\\"\\\"\\n\\toption=\\\"Group Name@@1,1|Option 1|1,2|Option 2|1,Group Name 2@@2,3|Option 3|2\\\"\\n\\tuseglobal=\\\"false\\\"\\n\\tdefault=\\\"0\\\"\\n\\/>\"', 1, '2019-07-29 15:47:40', '0000-00-00 00:00:00', 1, '', 943, 'a157fe29-2663-47fd-a230-fa743c9b4e71', '', '', '', '', ''), (2596, '', '', '', '', '', '', '', '', 11, '', 'INT', '', '', '', 'mygrouplist', 'NOT NULL', '', 39, '\"<field\\n\\ttype=\\\"groupedlist\\\"\\n\\tname=\\\"mygrouplist\\\"\\n\\tlabel=\\\"Select an option\\\"\\n\\tdescription=\\\"\\\"\\n\\tmessage=\\\"\\\"\\n\\tclass=\\\"list_class\\\"\\n\\tmultiple=\\\"false\\\"\\n\\tfilter=\\\"\\\"\\n\\trequired=\\\"\\\"\\n\\tvalidate=\\\"\\\"\\n\\toption=\\\"Group Name@@1,1|Option 1|1,2|Option 2|1,Group Name 2@@2,3|Option 3|2\\\"\\n\\tuseglobal=\\\"false\\\"\\n\\tdefault=\\\"0\\\"\\n\\/>\"', 1, '2019-07-29 15:47:40', '0000-00-00 00:00:00', 1, '', 943, 'a157fe29-2663-47fd-a230-fa743c9b4e71', '', '', '', '', ''),
(2597, '', '', '', '', '', '', '', '', 64, '', 'CHAR', '', '', '', 'Plugin Version', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"plugin_version\\\"\\n\\tlabel=\\\"Version\\\"\\n\\tsize=\\\"40\\\"\\n\\tmaxlength=\\\"50\\\"\\n\\tdefault=\\\"1.0.0\\\"\\n\\tdescription=\\\"Add Version Number Here\\\"\\n\\tclass=\\\"text_area\\\"\\n\\trequired=\\\"true\\\"\\n\\tfilter=\\\"CMD\\\"\\n\\tmessage=\\\"Error! Please add version here.\\\"\\n\\thint=\\\"1.0.0\\\"\\n\\/>\"', 1, '2019-08-06 14:31:23', '2015-08-25 21:15:22', 1, '', 155, '1133b764-a578-4159-abfb-bf3452801974', '', '', '', '', ''), (2597, '', '', '', '', '', '', '', '', 64, '', 'CHAR', '', '', '', 'Plugin Version', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"plugin_version\\\"\\n\\tlabel=\\\"Version\\\"\\n\\tsize=\\\"40\\\"\\n\\tmaxlength=\\\"50\\\"\\n\\tdefault=\\\"1.0.0\\\"\\n\\tdescription=\\\"Add Version Number Here\\\"\\n\\tclass=\\\"text_area\\\"\\n\\trequired=\\\"true\\\"\\n\\tfilter=\\\"CMD\\\"\\n\\tmessage=\\\"Error! Please add version here.\\\"\\n\\thint=\\\"1.0.0\\\"\\n\\/>\"', 1, '2019-08-06 14:31:23', '2015-08-25 21:15:22', 1, '', 155, '1133b764-a578-4159-abfb-bf3452801974', '', '', '', '', ''),
(2598, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Add PHP Script Construct', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"add_php_script_construct\\\"\\n\\tlabel=\\\"Add PHP Script Construct\\\"\\n\\tdescription=\\\"\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"1|Yes,0|No\\\"\\n\\tdefault=\\\"0\\\"\\n\\trequired=\\\"true\\\"\\n\\/>\"', 1, '2019-08-06 14:35:53', '2016-02-18 12:54:44', 1, '', 188, 'f1deeb63-5df2-45ff-b281-a41d9b2cd122', '', '', '', '', ''), (2598, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Add PHP Script Construct', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"add_php_script_construct\\\"\\n\\tlabel=\\\"Add PHP Script Construct\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"1|Yes,0|No\\\"\\n\\tdefault=\\\"0\\\"\\n\\trequired=\\\"true\\\"\\n\\/>\"', 1, '2019-08-06 14:35:53', '2024-04-19 08:51:26', 2, '', 188, 'f1deeb63-5df2-45ff-b281-a41d9b2cd122', '', '', '', '', ''),
(2599, '', '', '', '', '', '', '', '', '', '', 'MEDIUMTEXT', '', '', '', 'PHP Script Construct', 'NOT NULL', 2, 8, '\"<field\\n\\ttype=\\\"editor\\\"\\n\\tname=\\\"php_script_construct\\\"\\n\\tlabel=\\\"PHP Script Construct\\\"\\n\\tdescription=\\\"PHP script that should run in __construct of script.\\\"\\n\\twidth=\\\"100%\\\"\\n\\theight=\\\"450px\\\"\\n\\tcols=\\\"15\\\"\\n\\trows=\\\"30\\\"\\n\\tbuttons=\\\"no\\\"\\n\\tsyntax=\\\"php\\\"\\n\\teditor=\\\"codemirror|none\\\"\\n\\tfilter=\\\"raw\\\"\\n\\tvalidate=\\\"code\\\"\\n\\/>\"', 1, '2019-08-06 14:37:59', '2019-07-22 11:48:53', 1, '', 373, '8835dfef-4d87-4104-b93c-47c5e02e4acc', '', '', '', '', ''), (2599, '', '', '', '', '', '', '', '', '', '', 'MEDIUMTEXT', '', '', '', 'PHP Script Construct', 'NOT NULL', 2, 8, '\"<field\\n\\ttype=\\\"editor\\\"\\n\\tname=\\\"php_script_construct\\\"\\n\\tlabel=\\\"PHP Script Construct\\\"\\n\\tdescription=\\\"PHP script that should run in __construct of script.\\\"\\n\\twidth=\\\"100%\\\"\\n\\theight=\\\"450px\\\"\\n\\tcols=\\\"15\\\"\\n\\trows=\\\"30\\\"\\n\\tbuttons=\\\"no\\\"\\n\\tsyntax=\\\"php\\\"\\n\\teditor=\\\"codemirror|none\\\"\\n\\tfilter=\\\"raw\\\"\\n\\tvalidate=\\\"code\\\"\\n\\tshowon=\\\"add_php_script_construct:1\\\"\\n\\/>\"', 1, '2019-08-06 14:37:59', '2024-04-19 08:51:42', 2, '', 373, '8835dfef-4d87-4104-b93c-47c5e02e4acc', '', '', '', '', ''),
(2600, '', '', '', '', '', '', '', '', '', '', '', '', '', '', 'Select your global privacy plugin here.', 'NOT NULL', '', 14, '\"<field\\n\\ttype=\\\"note\\\"\\n\\tname=\\\"note_select_privacy_plugin\\\"\\n\\tlabel=\\\"Select your global privacy plugin here.\\\"\\n\\tdescription=\\\"If you don\'t yet have a global privacy plugin, <a href=\'[[[tutorial_global_privacy_plugin_setup_link]]]\' target=\'_blank\'>watch this tutorial<\\/a> to see how to setup it up.\\\"\\n\\theading=\\\"h4\\\"\\n\\tclass=\\\"alert alert-info\\\"\\n\\/>\"', 1, '2019-08-18 16:31:36', '0000-00-00 00:00:00', 1, '', 944, '019985ee-454d-4798-bc55-96adef2f0e2e', '', '', '', '', ''), (2600, '', '', '', '', '', '', '', '', '', '', '', '', '', '', 'Select your global privacy plugin here.', 'NOT NULL', '', 14, '\"<field\\n\\ttype=\\\"note\\\"\\n\\tname=\\\"note_select_privacy_plugin\\\"\\n\\tlabel=\\\"Select your global privacy plugin here.\\\"\\n\\tdescription=\\\"If you don\'t yet have a global privacy plugin, <a href=\'[[[tutorial_global_privacy_plugin_setup_link]]]\' target=\'_blank\'>watch this tutorial<\\/a> to see how to setup it up.\\\"\\n\\theading=\\\"h4\\\"\\n\\tclass=\\\"alert alert-info\\\"\\n\\/>\"', 1, '2019-08-18 16:31:36', '0000-00-00 00:00:00', 1, '', 944, '019985ee-454d-4798-bc55-96adef2f0e2e', '', '', '', '', ''),
(2601, '', '', '', '', '', '', 1, '', 1, '', 'TINYINT', '', '', '', 'Fields & Rules Paths (plugin)', 'NOT NULL', '', 11, '\"<field\\n\\ttype=\\\"list\\\"\\n\\tname=\\\"fields_rules_paths\\\"\\n\\tlabel=\\\"Fields & Rules Paths\\\"\\n\\tdescription=\\\"Where should the <b>custom<\\/b> fields and rules be placed.\\\"\\n\\tclass=\\\"list_class\\\"\\n\\tmultiple=\\\"false\\\"\\n\\tvalidate=\\\"number\\\"\\n\\toption=\\\"1|Component,2|Plugin,3|Other\\\"\\n\\tdefault=\\\"1\\\"\\n\\/>\"', 1, '2019-08-18 17:20:09', '2022-02-04 16:24:38', 6, '', 945, '2032c91a-8b6c-45ca-bdae-9f2ccc02b164', '', '', '', '', ''), (2601, '', '', '', '', '', '', 1, '', 1, '', 'TINYINT', '', '', '', 'Fields & Rules Paths (plugin)', 'NOT NULL', '', 11, '\"<field\\n\\ttype=\\\"list\\\"\\n\\tname=\\\"fields_rules_paths\\\"\\n\\tlabel=\\\"Fields & Rules Paths\\\"\\n\\tdescription=\\\"Where should the <b>custom<\\/b> fields and rules be placed.\\\"\\n\\tclass=\\\"list_class\\\"\\n\\tmultiple=\\\"false\\\"\\n\\tvalidate=\\\"number\\\"\\n\\toption=\\\"1|Component,2|Plugin,3|Other\\\"\\n\\tdefault=\\\"1\\\"\\n\\/>\"', 1, '2019-08-18 17:20:09', '2022-02-04 16:24:38', 6, '', 945, '2032c91a-8b6c-45ca-bdae-9f2ccc02b164', '', '', '', '', ''),
(2602, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Target Form', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"target\\\"\\n\\tlabel=\\\"Target Form\\\"\\n\\tsize=\\\"10\\\"\\n\\tmaxlength=\\\"50\\\"\\n\\tdefault=\\\"Config\\\"\\n\\tdescription=\\\"Config loads in the plugin<br \\/>All other will be added to the forms folder of the plugin\\\"\\n\\tclass=\\\"text_area span12\\\"\\n\\tfilter=\\\"STRING\\\"\\n\\thint=\\\"Config\\\"\\n\\tautocomplete=\\\"on\\\"\\n\\/>\"', 1, '2019-08-18 22:31:04', '2019-08-19 01:22:44', 2, '', 946, '09486bc2-ef5c-45b4-ab86-56a3983b23b4', '', '', '', '', ''), (2602, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Target Form', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"target\\\"\\n\\tlabel=\\\"Target Form\\\"\\n\\tsize=\\\"10\\\"\\n\\tmaxlength=\\\"50\\\"\\n\\tdefault=\\\"Config\\\"\\n\\tdescription=\\\"Config loads in the plugin<br \\/>All other will be added to the forms folder of the plugin\\\"\\n\\tclass=\\\"text_area span12\\\"\\n\\tfilter=\\\"STRING\\\"\\n\\thint=\\\"Config\\\"\\n\\tautocomplete=\\\"on\\\"\\n\\/>\"', 1, '2019-08-18 22:31:04', '2019-08-19 01:22:44', 2, '', 946, '09486bc2-ef5c-45b4-ab86-56a3983b23b4', '', '', '', '', ''),
@ -5590,7 +5593,9 @@ INSERT INTO `#__componentbuilder_field` (`id`, `add_css_view`, `add_css_views`,
(3373, '', '', '', '', '', '', 'Other', 3, 11, '', 'INT', '', '', '', 'Joomla Version', 'NOT NULL', '', 11, '\"<field\\n\\ttype=\\\"list\\\"\\n\\tname=\\\"joomla_version\\\"\\n\\tlabel=\\\"Joomla Version\\\"\\n\\tdescription=\\\"Joomla Target\\\"\\n\\tclass=\\\"list_class\\\"\\n\\tlayout=\\\"joomla.form.field.list-fancy-select\\\"\\n\\tmultiple=\\\"false\\\"\\n\\trequired=\\\"true\\\"\\n\\toption=\\\"0|All,3|Joomla 3,4|Joomla 4,5|Joomla 5\\\"\\n\\tdefault=\\\"0\\\"\\n\\/>\"', 1, '2024-03-27 12:06:23', '2024-03-27 12:07:26', 2, '', 1055, 'e2d5b5aa-5d88-4224-b93f-ad517b59f75b', '', '', '', '', ''), (3373, '', '', '', '', '', '', 'Other', 3, 11, '', 'INT', '', '', '', 'Joomla Version', 'NOT NULL', '', 11, '\"<field\\n\\ttype=\\\"list\\\"\\n\\tname=\\\"joomla_version\\\"\\n\\tlabel=\\\"Joomla Version\\\"\\n\\tdescription=\\\"Joomla Target\\\"\\n\\tclass=\\\"list_class\\\"\\n\\tlayout=\\\"joomla.form.field.list-fancy-select\\\"\\n\\tmultiple=\\\"false\\\"\\n\\trequired=\\\"true\\\"\\n\\toption=\\\"0|All,3|Joomla 3,4|Joomla 4,5|Joomla 5\\\"\\n\\tdefault=\\\"0\\\"\\n\\/>\"', 1, '2024-03-27 12:06:23', '2024-03-27 12:07:26', 2, '', 1055, 'e2d5b5aa-5d88-4224-b93f-ad517b59f75b', '', '', '', '', ''),
(3374, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Add JCB Powers Path', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"add_jcb_powers_path\\\"\\n\\tlabel=\\\"JCB Powers Path\\\"\\n\\tdescription=\\\"Would you like to override the global jcb powers path for this component?\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"|Global,1|Override\\\"\\n\\tdefault=\\\"\\\"\\n\\/>\"', 1, '2024-04-03 10:50:50', '2023-10-23 10:36:09', 1, '', 192, 'a6c65a43-e305-42c1-bd9d-5db5e4920185', '', '', '', '', ''), (3374, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Add JCB Powers Path', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"add_jcb_powers_path\\\"\\n\\tlabel=\\\"JCB Powers Path\\\"\\n\\tdescription=\\\"Would you like to override the global jcb powers path for this component?\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"|Global,1|Override\\\"\\n\\tdefault=\\\"\\\"\\n\\/>\"', 1, '2024-04-03 10:50:50', '2023-10-23 10:36:09', 1, '', 192, 'a6c65a43-e305-42c1-bd9d-5db5e4920185', '', '', '', '', ''),
(3375, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'JCB Powers Path (component)', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"jcb_powers_path\\\"\\n\\tlabel=\\\"JCB Powers Path<br \\/><small>example: <code>libraries\\/jcb_powers<\\/code><\\/small>\\\"\\n\\tsize=\\\"70\\\"\\n\\tmaxlength=\\\"150\\\"\\n\\tdescription=\\\"Here you can set the path to the powers folder. Recommended that you always place it inside the <b>libraries<\\/b>. You don\'t need to add a full path here, so <b>libraries\\/jcb_powers<\\/b> will mean <i>\\/home\\/username\\/public_html\\/libraries\\/jcb_powers<\\/i> when installed. You should always use two folders here, libraries + one more for example: <br \\/><code>libraries\\/jcb_powers<\\/code>\\\"\\n\\tclass=\\\"text_area\\\"\\n\\tfilter=\\\"PATH\\\"\\n\\tmessage=\\\"Error! Please add folder path here.\\\"\\n\\thint=\\\"libraries\\/jcb_powers\\\"\\n\\tshowon=\\\"add_jcb_powers_path:1\\\"\\n\\tautocomplete=\\\"on\\\"\\n\\/>\"', 1, '2024-04-03 10:51:37', '2021-12-01 00:51:37', 1, '', 641, '763e5bdf-d4d3-449b-bb36-de2623d81540', '', '', '', '', ''), (3375, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'JCB Powers Path (component)', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"jcb_powers_path\\\"\\n\\tlabel=\\\"JCB Powers Path<br \\/><small>example: <code>libraries\\/jcb_powers<\\/code><\\/small>\\\"\\n\\tsize=\\\"70\\\"\\n\\tmaxlength=\\\"150\\\"\\n\\tdescription=\\\"Here you can set the path to the powers folder. Recommended that you always place it inside the <b>libraries<\\/b>. You don\'t need to add a full path here, so <b>libraries\\/jcb_powers<\\/b> will mean <i>\\/home\\/username\\/public_html\\/libraries\\/jcb_powers<\\/i> when installed. You should always use two folders here, libraries + one more for example: <br \\/><code>libraries\\/jcb_powers<\\/code>\\\"\\n\\tclass=\\\"text_area\\\"\\n\\tfilter=\\\"PATH\\\"\\n\\tmessage=\\\"Error! Please add folder path here.\\\"\\n\\thint=\\\"libraries\\/jcb_powers\\\"\\n\\tshowon=\\\"add_jcb_powers_path:1\\\"\\n\\tautocomplete=\\\"on\\\"\\n\\/>\"', 1, '2024-04-03 10:51:37', '2021-12-01 00:51:37', 1, '', 641, '763e5bdf-d4d3-449b-bb36-de2623d81540', '', '', '', '', ''),
(3376, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Namespace Settings.', 'NOT NULL', '', 35, '\"<field\\n\\ttype=\\\"subform\\\"\\n\\tname=\\\"settings\\\"\\n\\tlabel=\\\"Settings\\\"\\n\\tlayout=\\\"joomla.form.field.subform.repeatable-table\\\"\\n\\tmultiple=\\\"true\\\"\\n\\tbuttons=\\\"add,remove,move\\\"\\n\\tfields=\\\"2947,3373\\\"\\n\\ticon=\\\"list\\\"\\n\\tmax=\\\"10\\\"\\n\\tmin=\\\"1\\\"\\n\\/>\"', 1, '2024-04-09 14:33:01', '2024-04-09 14:34:03', 2, '', 1057, 'a1033166-8112-45f9-8af8-c15a53d30c04', '', '', '', '', ''); (3376, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Namespace Settings.', 'NOT NULL', '', 35, '\"<field\\n\\ttype=\\\"subform\\\"\\n\\tname=\\\"settings\\\"\\n\\tlabel=\\\"Settings\\\"\\n\\tlayout=\\\"joomla.form.field.subform.repeatable-table\\\"\\n\\tmultiple=\\\"true\\\"\\n\\tbuttons=\\\"add,remove,move\\\"\\n\\tfields=\\\"2947,3373\\\"\\n\\ticon=\\\"list\\\"\\n\\tmax=\\\"10\\\"\\n\\tmin=\\\"1\\\"\\n\\/>\"', 1, '2024-04-09 14:33:01', '2024-04-09 14:34:03', 2, '', 1057, 'a1033166-8112-45f9-8af8-c15a53d30c04', '', '', '', '', ''),
(3377, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Add PHP Methods (in install/update class)', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"add_php_method_install\\\"\\n\\tlabel=\\\"Add PHP Methods to Class (in install\\/update class)\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"1|Yes,0|No\\\"\\n\\tdefault=\\\"0\\\"\\n\\trequired=\\\"true\\\"\\n\\/>\"', 1, '2024-04-18 16:20:56', '2024-04-19 08:36:00', 6, '', 188, '9a825342-c423-42d2-85ad-f74ce9625f99', '', '', '', '', ''),
(3378, '', '', '', '', '', '', '', '', '', '', 'MEDIUMTEXT', '', '', '', 'PHP Methods (in install/update class)', 'NOT NULL', 2, 8, '\"<field\\n\\ttype=\\\"editor\\\"\\n\\tname=\\\"php_method_install\\\"\\n\\tlabel=\\\"PHP Class Methods (in install\\/update class)\\\"\\n\\tdescription=\\\"PHP methods that should be added to the install\\/update class of the component.\\\"\\n\\twidth=\\\"100%\\\"\\n\\theight=\\\"450px\\\"\\n\\tcols=\\\"15\\\"\\n\\trows=\\\"30\\\"\\n\\tbuttons=\\\"no\\\"\\n\\tsyntax=\\\"php\\\"\\n\\teditor=\\\"codemirror|none\\\"\\n\\tfilter=\\\"raw\\\"\\n\\tvalidate=\\\"code\\\"\\n\\tshowon=\\\"add_php_method_install:1\\\"\\n\\/>\"', 1, '2024-04-18 16:22:31', '2024-04-19 08:36:25', 4, '', 373, '8cb26845-73d8-438a-b28a-7a128a63a0d7', '', '', '', '', '');
-- --
-- Dumping data for table `#__componentbuilder_fieldtype` -- Dumping data for table `#__componentbuilder_fieldtype`

View File

@ -0,0 +1,2 @@
ALTER TABLE `#__componentbuilder_joomla_component` ADD `add_php_method_install` TINYINT(1) NOT NULL DEFAULT 0 AFTER `add_php_helper_site`;
ALTER TABLE `#__componentbuilder_joomla_component` ADD `php_method_install` MEDIUMTEXT NOT NULL AFTER `php_helper_site`;

View File

@ -10,116 +10,13 @@
*/ */
namespace VDM\Component\Componentbuilder\Administrator\Helper; namespace VDM\Component\Componentbuilder\Administrator\Helper;
// The power autoloader for this project admin area.
$power_autoloader = JPATH_ADMINISTRATOR . '/components/com_componentbuilder/src/Helper/PowerloaderHelper.php';
// add the autoloader for the composer classes if (file_exists($power_autoloader))
$composer_autoloader = JPATH_LIBRARIES . '/phpseclib3/vendor/autoload.php';
if (file_exists($composer_autoloader))
{ {
require_once $composer_autoloader; require_once $power_autoloader;
} }
// register additional namespace
\spl_autoload_register(function ($class) {
// project-specific base directories and namespace prefix
$search = [
'libraries/vendor_jcb/VDM.Joomla.Gitea' => 'VDM\\Joomla\\Gitea',
'libraries/vendor_jcb/VDM.Joomla.FOF' => 'VDM\\Joomla\\FOF',
'libraries/vendor_jcb/VDM.Joomla' => 'VDM\\Joomla',
'libraries/vendor_jcb/VDM.Minify' => 'VDM\\Minify',
'libraries/vendor_jcb/VDM.Psr' => 'VDM\\Psr'
];
// Start the search and load if found
$found = false;
$found_base_dir = "";
$found_len = 0;
foreach ($search as $base_dir => $prefix)
{
// does the class use the namespace prefix?
$len = strlen($prefix);
if (strncmp($prefix, $class, $len) === 0)
{
// we have a match so load the values
$found = true;
$found_base_dir = $base_dir;
$found_len = $len;
// done here
break;
}
}
// check if we found a match
if (!$found)
{
// not found so move to the next registered autoloader
return;
}
// get the relative class name
$relative_class = substr($class, $found_len);
// replace the namespace prefix with the base directory, replace namespace
// separators with directory separators in the relative class name, append
// with .php
$file = JPATH_ROOT . '/' . $found_base_dir . '/src' . str_replace('\\', '/', $relative_class) . '.php';
// if the file exists, require it
if (file_exists($file))
{
require $file;
}
});
// add the autoloader for the composer classes
$composer_autoloader = JPATH_LIBRARIES . '/phpseclib3/vendor/autoload.php';
if (file_exists($composer_autoloader))
{
require_once $composer_autoloader;
}
// register additional namespace
\spl_autoload_register(function ($class) {
// project-specific base directories and namespace prefix
$search = [
'libraries/vendor_jcb/VDM.Joomla.Gitea' => 'VDM\\Joomla\\Gitea',
'libraries/vendor_jcb/VDM.Joomla.FOF' => 'VDM\\Joomla\\FOF',
'libraries/vendor_jcb/VDM.Joomla' => 'VDM\\Joomla',
'libraries/vendor_jcb/VDM.Minify' => 'VDM\\Minify',
'libraries/vendor_jcb/VDM.Psr' => 'VDM\\Psr'
];
// Start the search and load if found
$found = false;
$found_base_dir = "";
$found_len = 0;
foreach ($search as $base_dir => $prefix)
{
// does the class use the namespace prefix?
$len = strlen($prefix);
if (strncmp($prefix, $class, $len) === 0)
{
// we have a match so load the values
$found = true;
$found_base_dir = $base_dir;
$found_len = $len;
// done here
break;
}
}
// check if we found a match
if (!$found)
{
// not found so move to the next registered autoloader
return;
}
// get the relative class name
$relative_class = substr($class, $found_len);
// replace the namespace prefix with the base directory, replace namespace
// separators with directory separators in the relative class name, append
// with .php
$file = JPATH_ROOT . '/' . $found_base_dir . '/src' . str_replace('\\', '/', $relative_class) . '.php';
// if the file exists, require it
if (file_exists($file))
{
require $file;
}
});
use Joomla\CMS\Factory; use Joomla\CMS\Factory;
use Joomla\CMS\Language\Text; use Joomla\CMS\Language\Text;
use Joomla\CMS\Access\Access; use Joomla\CMS\Access\Access;

View File

@ -0,0 +1,67 @@
<?php
/**
* @package Joomla.Component.Builder
*
* @created 30th April, 2015
* @author Llewellyn van der Merwe <https://dev.vdm.io>
* @git Joomla Component Builder <https://git.vdm.dev/joomla/Component-Builder>
* @copyright Copyright (C) 2015 Vast Development Method. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
// No direct access to this file
defined('_JEXEC') or die;
// add the autoloader for the composer classes
$composer_autoloader = JPATH_LIBRARIES . '/phpseclib3/vendor/autoload.php';
if (file_exists($composer_autoloader))
{
require_once $composer_autoloader;
}
// register additional namespace
\spl_autoload_register(function ($class) {
// project-specific base directories and namespace prefix
$search = [
'libraries/vendor_jcb/VDM.Joomla.Gitea' => 'VDM\\Joomla\\Gitea',
'libraries/vendor_jcb/VDM.Joomla.FOF' => 'VDM\\Joomla\\FOF',
'libraries/vendor_jcb/VDM.Joomla' => 'VDM\\Joomla',
'libraries/vendor_jcb/VDM.Minify' => 'VDM\\Minify',
'libraries/vendor_jcb/VDM.Psr' => 'VDM\\Psr'
];
// Start the search and load if found
$found = false;
$found_base_dir = "";
$found_len = 0;
foreach ($search as $base_dir => $prefix)
{
// does the class use the namespace prefix?
$len = strlen($prefix);
if (strncmp($prefix, $class, $len) === 0)
{
// we have a match so load the values
$found = true;
$found_base_dir = $base_dir;
$found_len = $len;
// done here
break;
}
}
// check if we found a match
if (!$found)
{
// not found so move to the next registered autoloader
return;
}
// get the relative class name
$relative_class = substr($class, $found_len);
// replace the namespace prefix with the base directory, replace namespace
// separators with directory separators in the relative class name, append
// with .php
$file = JPATH_ROOT . '/' . $found_base_dir . '/src' . str_replace('\\', '/', $relative_class) . '.php';
// if the file exists, require it
if (file_exists($file))
{
require $file;
}
});

View File

@ -2851,7 +2851,7 @@ class AjaxModel extends ListModel
// #__componentbuilder_joomla_component (a) // #__componentbuilder_joomla_component (a)
'joomla_component' => array( 'joomla_component' => array(
'search' => array('id', 'system_name', 'php_preflight_install', 'php_postflight_install', 'search' => array('id', 'system_name', 'php_preflight_install', 'php_postflight_install',
'php_preflight_update', 'php_postflight_update', 'php_method_uninstall', 'php_preflight_update', 'php_postflight_update', 'php_method_uninstall', 'php_method_install',
'php_helper_admin', 'php_admin_event', 'php_helper_both', 'php_helper_site', 'php_helper_admin', 'php_admin_event', 'php_helper_both', 'php_helper_site',
'php_site_event', 'javascript', 'readme', 'sql', 'sql_uninstall'), 'php_site_event', 'javascript', 'readme', 'sql', 'sql_uninstall'),
'views' => 'joomla_components', 'views' => 'joomla_components',

View File

@ -289,7 +289,7 @@ class FieldtypeModel extends AdminModel
* *
* @return mixed An array of data items on success, false on failure. * @return mixed An array of data items on success, false on failure.
*/ */
public function getVycfields() public function getVxtfields()
{ {
// Get the user object. // Get the user object.
$user = Factory::getApplication()->getIdentity(); $user = Factory::getApplication()->getIdentity();
@ -431,13 +431,13 @@ class FieldtypeModel extends AdminModel
foreach ($items as $nr => &$item) foreach ($items as $nr => &$item)
{ {
// convert datatype // convert datatype
$item->datatype = $this->selectionTranslationVycfields($item->datatype, 'datatype'); $item->datatype = $this->selectionTranslationVxtfields($item->datatype, 'datatype');
// convert indexes // convert indexes
$item->indexes = $this->selectionTranslationVycfields($item->indexes, 'indexes'); $item->indexes = $this->selectionTranslationVxtfields($item->indexes, 'indexes');
// convert null_switch // convert null_switch
$item->null_switch = $this->selectionTranslationVycfields($item->null_switch, 'null_switch'); $item->null_switch = $this->selectionTranslationVxtfields($item->null_switch, 'null_switch');
// convert store // convert store
$item->store = $this->selectionTranslationVycfields($item->store, 'store'); $item->store = $this->selectionTranslationVxtfields($item->store, 'store');
} }
} }
@ -451,7 +451,7 @@ class FieldtypeModel extends AdminModel
* *
* @return string The translatable string. * @return string The translatable string.
*/ */
public function selectionTranslationVycfields($value,$name) public function selectionTranslationVxtfields($value,$name)
{ {
// Array of datatype language strings // Array of datatype language strings
if ($name === 'datatype') if ($name === 'datatype')

View File

@ -97,11 +97,28 @@ class Joomla_componentModel extends AdminModel
'not_required' 'not_required'
) )
), ),
'dynamic_build' => array( 'libs_helpers' => array(
'fullwidth' => array( 'fullwidth' => array(
'note_buildcomp_dynamic_mysql', 'creatuserhelper',
'buildcomp', 'adduikit',
'buildcompsql' 'addfootable',
'add_email_helper',
'add_php_helper_both',
'php_helper_both',
'add_php_helper_admin',
'php_helper_admin',
'add_admin_event',
'php_admin_event',
'add_php_helper_site',
'php_helper_site',
'add_site_event',
'php_site_event',
'add_javascript',
'javascript',
'add_css_admin',
'css_admin',
'add_css_site',
'css_site'
) )
), ),
'dynamic_integration' => array( 'dynamic_integration' => array(
@ -133,15 +150,6 @@ class Joomla_componentModel extends AdminModel
'crowdin_account_api_key' 'crowdin_account_api_key'
) )
), ),
'mysql' => array(
'fullwidth' => array(
'add_sql',
'sql',
'add_sql_uninstall',
'sql_uninstall',
'assets_table_fix'
)
),
'dash_install' => array( 'dash_install' => array(
'left' => array( 'left' => array(
'dashboard_type' 'dashboard_type'
@ -161,31 +169,9 @@ class Joomla_componentModel extends AdminModel
'add_php_postflight_update', 'add_php_postflight_update',
'php_postflight_update', 'php_postflight_update',
'add_php_method_uninstall', 'add_php_method_uninstall',
'php_method_uninstall' 'php_method_uninstall',
) 'add_php_method_install',
), 'php_method_install'
'libs_helpers' => array(
'fullwidth' => array(
'creatuserhelper',
'adduikit',
'addfootable',
'add_email_helper',
'add_php_helper_both',
'php_helper_both',
'add_php_helper_admin',
'php_helper_admin',
'add_admin_event',
'php_admin_event',
'add_php_helper_site',
'php_helper_site',
'add_site_event',
'php_site_event',
'add_javascript',
'javascript',
'add_css_admin',
'css_admin',
'add_css_site',
'css_site'
) )
), ),
'readme' => array( 'readme' => array(
@ -197,6 +183,22 @@ class Joomla_componentModel extends AdminModel
'note_readme' 'note_readme'
) )
), ),
'mysql' => array(
'fullwidth' => array(
'add_sql',
'sql',
'add_sql_uninstall',
'sql_uninstall',
'assets_table_fix'
)
),
'dynamic_build' => array(
'fullwidth' => array(
'note_buildcomp_dynamic_mysql',
'buildcomp',
'buildcompsql'
)
),
'settings' => array( 'settings' => array(
'left' => array( 'left' => array(
'note_moved_views', 'note_moved_views',
@ -401,42 +403,18 @@ class Joomla_componentModel extends AdminModel
$item->metadata = $registry->toArray(); $item->metadata = $registry->toArray();
} }
if (!empty($item->sql_uninstall))
{
// base64 Decode sql_uninstall.
$item->sql_uninstall = base64_decode($item->sql_uninstall);
}
if (!empty($item->php_postflight_install))
{
// base64 Decode php_postflight_install.
$item->php_postflight_install = base64_decode($item->php_postflight_install);
}
if (!empty($item->php_site_event)) if (!empty($item->php_site_event))
{ {
// base64 Decode php_site_event. // base64 Decode php_site_event.
$item->php_site_event = base64_decode($item->php_site_event); $item->php_site_event = base64_decode($item->php_site_event);
} }
if (!empty($item->php_helper_both))
{
// base64 Decode php_helper_both.
$item->php_helper_both = base64_decode($item->php_helper_both);
}
if (!empty($item->php_admin_event)) if (!empty($item->php_admin_event))
{ {
// base64 Decode php_admin_event. // base64 Decode php_admin_event.
$item->php_admin_event = base64_decode($item->php_admin_event); $item->php_admin_event = base64_decode($item->php_admin_event);
} }
if (!empty($item->css_admin))
{
// base64 Decode css_admin.
$item->css_admin = base64_decode($item->css_admin);
}
if (!empty($item->php_preflight_install)) if (!empty($item->php_preflight_install))
{ {
// base64 Decode php_preflight_install. // base64 Decode php_preflight_install.
@ -449,6 +427,30 @@ class Joomla_componentModel extends AdminModel
$item->php_method_uninstall = base64_decode($item->php_method_uninstall); $item->php_method_uninstall = base64_decode($item->php_method_uninstall);
} }
if (!empty($item->css_admin))
{
// base64 Decode css_admin.
$item->css_admin = base64_decode($item->css_admin);
}
if (!empty($item->php_postflight_install))
{
// base64 Decode php_postflight_install.
$item->php_postflight_install = base64_decode($item->php_postflight_install);
}
if (!empty($item->sql))
{
// base64 Decode sql.
$item->sql = base64_decode($item->sql);
}
if (!empty($item->buildcompsql))
{
// base64 Decode buildcompsql.
$item->buildcompsql = base64_decode($item->buildcompsql);
}
if (!empty($item->php_helper_admin)) if (!empty($item->php_helper_admin))
{ {
// base64 Decode php_helper_admin. // base64 Decode php_helper_admin.
@ -485,16 +487,16 @@ class Joomla_componentModel extends AdminModel
$item->php_postflight_update = base64_decode($item->php_postflight_update); $item->php_postflight_update = base64_decode($item->php_postflight_update);
} }
if (!empty($item->sql)) if (!empty($item->php_method_install))
{ {
// base64 Decode sql. // base64 Decode php_method_install.
$item->sql = base64_decode($item->sql); $item->php_method_install = base64_decode($item->php_method_install);
} }
if (!empty($item->buildcompsql)) if (!empty($item->sql_uninstall))
{ {
// base64 Decode buildcompsql. // base64 Decode sql_uninstall.
$item->buildcompsql = base64_decode($item->buildcompsql); $item->sql_uninstall = base64_decode($item->sql_uninstall);
} }
if (!empty($item->readme)) if (!empty($item->readme))
@ -503,23 +505,29 @@ class Joomla_componentModel extends AdminModel
$item->readme = base64_decode($item->readme); $item->readme = base64_decode($item->readme);
} }
if (!empty($item->php_helper_both))
{
// base64 Decode php_helper_both.
$item->php_helper_both = base64_decode($item->php_helper_both);
}
// Get the basic encryption. // Get the basic encryption.
$basickey = ComponentbuilderHelper::getCryptKey('basic'); $basickey = ComponentbuilderHelper::getCryptKey('basic');
// Get the encryption object. // Get the encryption object.
$basic = new AES($basickey); $basic = new AES($basickey);
if (!empty($item->whmcs_key) && $basickey && !is_numeric($item->whmcs_key) && $item->whmcs_key === base64_encode(base64_decode($item->whmcs_key, true)))
{
// basic decrypt data whmcs_key.
$item->whmcs_key = rtrim($basic->decryptString($item->whmcs_key), "\0");
}
if (!empty($item->crowdin_username) && $basickey && !is_numeric($item->crowdin_username) && $item->crowdin_username === base64_encode(base64_decode($item->crowdin_username, true))) if (!empty($item->crowdin_username) && $basickey && !is_numeric($item->crowdin_username) && $item->crowdin_username === base64_encode(base64_decode($item->crowdin_username, true)))
{ {
// basic decrypt data crowdin_username. // basic decrypt data crowdin_username.
$item->crowdin_username = rtrim($basic->decryptString($item->crowdin_username), "\0"); $item->crowdin_username = rtrim($basic->decryptString($item->crowdin_username), "\0");
} }
if (!empty($item->whmcs_key) && $basickey && !is_numeric($item->whmcs_key) && $item->whmcs_key === base64_encode(base64_decode($item->whmcs_key, true)))
{
// basic decrypt data whmcs_key.
$item->whmcs_key = rtrim($basic->decryptString($item->whmcs_key), "\0");
}
if (!empty($item->export_key) && $basickey && !is_numeric($item->export_key) && $item->export_key === base64_encode(base64_decode($item->export_key, true))) if (!empty($item->export_key) && $basickey && !is_numeric($item->export_key) && $item->export_key === base64_encode(base64_decode($item->export_key, true)))
{ {
// basic decrypt data export_key. // basic decrypt data export_key.
@ -1494,42 +1502,18 @@ class Joomla_componentModel extends AdminModel
$data['addcontributors'] = ''; $data['addcontributors'] = '';
} }
// Set the sql_uninstall string to base64 string.
if (isset($data['sql_uninstall']))
{
$data['sql_uninstall'] = base64_encode($data['sql_uninstall']);
}
// Set the php_postflight_install string to base64 string.
if (isset($data['php_postflight_install']))
{
$data['php_postflight_install'] = base64_encode($data['php_postflight_install']);
}
// Set the php_site_event string to base64 string. // Set the php_site_event string to base64 string.
if (isset($data['php_site_event'])) if (isset($data['php_site_event']))
{ {
$data['php_site_event'] = base64_encode($data['php_site_event']); $data['php_site_event'] = base64_encode($data['php_site_event']);
} }
// Set the php_helper_both string to base64 string.
if (isset($data['php_helper_both']))
{
$data['php_helper_both'] = base64_encode($data['php_helper_both']);
}
// Set the php_admin_event string to base64 string. // Set the php_admin_event string to base64 string.
if (isset($data['php_admin_event'])) if (isset($data['php_admin_event']))
{ {
$data['php_admin_event'] = base64_encode($data['php_admin_event']); $data['php_admin_event'] = base64_encode($data['php_admin_event']);
} }
// Set the css_admin string to base64 string.
if (isset($data['css_admin']))
{
$data['css_admin'] = base64_encode($data['css_admin']);
}
// Set the php_preflight_install string to base64 string. // Set the php_preflight_install string to base64 string.
if (isset($data['php_preflight_install'])) if (isset($data['php_preflight_install']))
{ {
@ -1542,6 +1526,30 @@ class Joomla_componentModel extends AdminModel
$data['php_method_uninstall'] = base64_encode($data['php_method_uninstall']); $data['php_method_uninstall'] = base64_encode($data['php_method_uninstall']);
} }
// Set the css_admin string to base64 string.
if (isset($data['css_admin']))
{
$data['css_admin'] = base64_encode($data['css_admin']);
}
// Set the php_postflight_install string to base64 string.
if (isset($data['php_postflight_install']))
{
$data['php_postflight_install'] = base64_encode($data['php_postflight_install']);
}
// Set the sql string to base64 string.
if (isset($data['sql']))
{
$data['sql'] = base64_encode($data['sql']);
}
// Set the buildcompsql string to base64 string.
if (isset($data['buildcompsql']))
{
$data['buildcompsql'] = base64_encode($data['buildcompsql']);
}
// Set the php_helper_admin string to base64 string. // Set the php_helper_admin string to base64 string.
if (isset($data['php_helper_admin'])) if (isset($data['php_helper_admin']))
{ {
@ -1578,16 +1586,16 @@ class Joomla_componentModel extends AdminModel
$data['php_postflight_update'] = base64_encode($data['php_postflight_update']); $data['php_postflight_update'] = base64_encode($data['php_postflight_update']);
} }
// Set the sql string to base64 string. // Set the php_method_install string to base64 string.
if (isset($data['sql'])) if (isset($data['php_method_install']))
{ {
$data['sql'] = base64_encode($data['sql']); $data['php_method_install'] = base64_encode($data['php_method_install']);
} }
// Set the buildcompsql string to base64 string. // Set the sql_uninstall string to base64 string.
if (isset($data['buildcompsql'])) if (isset($data['sql_uninstall']))
{ {
$data['buildcompsql'] = base64_encode($data['buildcompsql']); $data['sql_uninstall'] = base64_encode($data['sql_uninstall']);
} }
// Set the readme string to base64 string. // Set the readme string to base64 string.
@ -1596,23 +1604,29 @@ class Joomla_componentModel extends AdminModel
$data['readme'] = base64_encode($data['readme']); $data['readme'] = base64_encode($data['readme']);
} }
// Set the php_helper_both string to base64 string.
if (isset($data['php_helper_both']))
{
$data['php_helper_both'] = base64_encode($data['php_helper_both']);
}
// Get the basic encryption key. // Get the basic encryption key.
$basickey = ComponentbuilderHelper::getCryptKey('basic'); $basickey = ComponentbuilderHelper::getCryptKey('basic');
// Get the encryption object // Get the encryption object
$basic = new AES($basickey); $basic = new AES($basickey);
// Encrypt data whmcs_key.
if (isset($data['whmcs_key']) && $basickey)
{
$data['whmcs_key'] = $basic->encryptString($data['whmcs_key']);
}
// Encrypt data crowdin_username. // Encrypt data crowdin_username.
if (isset($data['crowdin_username']) && $basickey) if (isset($data['crowdin_username']) && $basickey)
{ {
$data['crowdin_username'] = $basic->encryptString($data['crowdin_username']); $data['crowdin_username'] = $basic->encryptString($data['crowdin_username']);
} }
// Encrypt data whmcs_key.
if (isset($data['whmcs_key']) && $basickey)
{
$data['whmcs_key'] = $basic->encryptString($data['whmcs_key']);
}
// Encrypt data export_key. // Encrypt data export_key.
if (isset($data['export_key']) && $basickey) if (isset($data['export_key']) && $basickey)
{ {

View File

@ -2146,7 +2146,7 @@ class Joomla_componentsModel extends ListModel
// #__componentbuilder_joomla_component (a) // #__componentbuilder_joomla_component (a)
'joomla_component' => array( 'joomla_component' => array(
'search' => array('id', 'system_name', 'php_preflight_install', 'php_postflight_install', 'search' => array('id', 'system_name', 'php_preflight_install', 'php_postflight_install',
'php_preflight_update', 'php_postflight_update', 'php_method_uninstall', 'php_preflight_update', 'php_postflight_update', 'php_method_uninstall', 'php_method_install',
'php_helper_admin', 'php_admin_event', 'php_helper_both', 'php_helper_site', 'php_helper_admin', 'php_admin_event', 'php_helper_both', 'php_helper_site',
'php_site_event', 'javascript', 'readme', 'sql', 'sql_uninstall'), 'php_site_event', 'javascript', 'readme', 'sql', 'sql_uninstall'),
'views' => 'joomla_components', 'views' => 'joomla_components',
@ -2745,31 +2745,36 @@ class Joomla_componentsModel extends ListModel
continue; continue;
} }
// decode sql_uninstall
$item->sql_uninstall = base64_decode($item->sql_uninstall);
// decode php_postflight_install
$item->php_postflight_install = base64_decode($item->php_postflight_install);
// decode php_site_event // decode php_site_event
$item->php_site_event = base64_decode($item->php_site_event); $item->php_site_event = base64_decode($item->php_site_event);
// decode php_helper_both
$item->php_helper_both = base64_decode($item->php_helper_both);
// decode php_admin_event // decode php_admin_event
$item->php_admin_event = base64_decode($item->php_admin_event); $item->php_admin_event = base64_decode($item->php_admin_event);
// decode css_admin if ($basickey && !is_numeric($item->crowdin_username) && $item->crowdin_username === base64_encode(base64_decode($item->crowdin_username, true)))
$item->css_admin = base64_decode($item->css_admin); {
// decrypt crowdin_username
$item->crowdin_username = $basic->decryptString($item->crowdin_username);
}
// decode php_preflight_install // decode php_preflight_install
$item->php_preflight_install = base64_decode($item->php_preflight_install); $item->php_preflight_install = base64_decode($item->php_preflight_install);
// decode php_method_uninstall // decode php_method_uninstall
$item->php_method_uninstall = base64_decode($item->php_method_uninstall); $item->php_method_uninstall = base64_decode($item->php_method_uninstall);
// decode css_admin
$item->css_admin = base64_decode($item->css_admin);
// decode php_postflight_install
$item->php_postflight_install = base64_decode($item->php_postflight_install);
// decode sql
$item->sql = base64_decode($item->sql);
// decode buildcompsql
$item->buildcompsql = base64_decode($item->buildcompsql);
// decode php_helper_admin
$item->php_helper_admin = base64_decode($item->php_helper_admin);
// decode php_helper_site
$item->php_helper_site = base64_decode($item->php_helper_site);
if ($basickey && !is_numeric($item->whmcs_key) && $item->whmcs_key === base64_encode(base64_decode($item->whmcs_key, true))) if ($basickey && !is_numeric($item->whmcs_key) && $item->whmcs_key === base64_encode(base64_decode($item->whmcs_key, true)))
{ {
// decrypt whmcs_key // decrypt whmcs_key
$item->whmcs_key = $basic->decryptString($item->whmcs_key); $item->whmcs_key = $basic->decryptString($item->whmcs_key);
} }
// decode php_helper_admin
$item->php_helper_admin = base64_decode($item->php_helper_admin);
// decode php_helper_site
$item->php_helper_site = base64_decode($item->php_helper_site);
// decode javascript // decode javascript
$item->javascript = base64_decode($item->javascript); $item->javascript = base64_decode($item->javascript);
// decode css_site // decode css_site
@ -2778,15 +2783,10 @@ class Joomla_componentsModel extends ListModel
$item->php_preflight_update = base64_decode($item->php_preflight_update); $item->php_preflight_update = base64_decode($item->php_preflight_update);
// decode php_postflight_update // decode php_postflight_update
$item->php_postflight_update = base64_decode($item->php_postflight_update); $item->php_postflight_update = base64_decode($item->php_postflight_update);
// decode sql // decode php_method_install
$item->sql = base64_decode($item->sql); $item->php_method_install = base64_decode($item->php_method_install);
if ($basickey && !is_numeric($item->crowdin_username) && $item->crowdin_username === base64_encode(base64_decode($item->crowdin_username, true))) // decode sql_uninstall
{ $item->sql_uninstall = base64_decode($item->sql_uninstall);
// decrypt crowdin_username
$item->crowdin_username = $basic->decryptString($item->crowdin_username);
}
// decode buildcompsql
$item->buildcompsql = base64_decode($item->buildcompsql);
if ($basickey && !is_numeric($item->export_key) && $item->export_key === base64_encode(base64_decode($item->export_key, true))) if ($basickey && !is_numeric($item->export_key) && $item->export_key === base64_encode(base64_decode($item->export_key, true)))
{ {
// decrypt export_key // decrypt export_key
@ -2804,6 +2804,8 @@ class Joomla_componentsModel extends ListModel
// decrypt crowdin_account_api_key // decrypt crowdin_account_api_key
$item->crowdin_account_api_key = $basic->decryptString($item->crowdin_account_api_key); $item->crowdin_account_api_key = $basic->decryptString($item->crowdin_account_api_key);
} }
// decode php_helper_both
$item->php_helper_both = base64_decode($item->php_helper_both);
// unset the values we don't want exported. // unset the values we don't want exported.
unset($item->asset_id); unset($item->asset_id);
unset($item->checked_out); unset($item->checked_out);

View File

@ -746,42 +746,6 @@ class Joomla_moduleModel extends AdminModel
return $data; return $data;
} }
/**
* Method to validate the form data.
*
* @param JForm $form The form to validate against.
* @param array $data The data to validate.
* @param string $group The name of the field group to validate.
*
* @return mixed Array of filtered data if valid, false otherwise.
*
* @see JFormRule
* @see JFilterInput
* @since 12.2
*/
public function validate($form, $data, $group = null)
{
// check if the not_required field is set
if (isset($data['not_required']) && UtilitiesStringHelper::check($data['not_required']))
{
$requiredFields = (array) explode(',',(string) $data['not_required']);
$requiredFields = array_unique($requiredFields);
// now change the required field attributes value
foreach ($requiredFields as $requiredField)
{
// make sure there is a string value
if (UtilitiesStringHelper::check($requiredField))
{
// change to false
$form->setFieldAttribute($requiredField, 'required', 'false');
// also clear the data set
$data[$requiredField] = '';
}
}
}
return parent::validate($form, $data, $group);
}
/** /**
* Method to get the unique fields of this table. * Method to get the unique fields of this table.
* *

View File

@ -711,42 +711,6 @@ class Joomla_pluginModel extends AdminModel
return $data; return $data;
} }
/**
* Method to validate the form data.
*
* @param JForm $form The form to validate against.
* @param array $data The data to validate.
* @param string $group The name of the field group to validate.
*
* @return mixed Array of filtered data if valid, false otherwise.
*
* @see JFormRule
* @see JFilterInput
* @since 12.2
*/
public function validate($form, $data, $group = null)
{
// check if the not_required field is set
if (isset($data['not_required']) && UtilitiesStringHelper::check($data['not_required']))
{
$requiredFields = (array) explode(',',(string) $data['not_required']);
$requiredFields = array_unique($requiredFields);
// now change the required field attributes value
foreach ($requiredFields as $requiredField)
{
// make sure there is a string value
if (UtilitiesStringHelper::check($requiredField))
{
// change to false
$form->setFieldAttribute($requiredField, 'required', 'false');
// also clear the data set
$data[$requiredField] = '';
}
}
}
return parent::validate($form, $data, $group);
}
/** /**
* Method to get the unique fields of this table. * Method to get the unique fields of this table.
* *

View File

@ -230,7 +230,7 @@ class ServerModel extends AdminModel
* *
* @return mixed An array of data items on success, false on failure. * @return mixed An array of data items on success, false on failure.
*/ */
public function getVymlinked_components() public function getVydlinked_components()
{ {
// Get the user object. // Get the user object.
$user = Factory::getApplication()->getIdentity(); $user = Factory::getApplication()->getIdentity();

View File

@ -82,7 +82,7 @@ class HtmlView extends BaseHtmlView
} }
// Get Linked view data // Get Linked view data
$this->vycfields = $this->get('Vycfields'); $this->vxtfields = $this->get('Vxtfields');
// Set the toolbar // Set the toolbar
$this->addToolBar(); $this->addToolBar();

View File

@ -82,7 +82,7 @@ class HtmlView extends BaseHtmlView
} }
// Get Linked view data // Get Linked view data
$this->vymlinked_components = $this->get('Vymlinked_components'); $this->vydlinked_components = $this->get('Vydlinked_components');
// Set the toolbar // Set the toolbar
$this->addToolBar(); $this->addToolBar();

View File

@ -207,521 +207,521 @@ defined('_JEXEC') or die;
<script type="text/javascript"> <script type="text/javascript">
// #jform_add_css_view listeners for add_css_view_vvvvvyv function // #jform_add_css_view listeners for add_css_view_vvvvvxd function
jQuery('#jform_add_css_view').on('keyup',function() jQuery('#jform_add_css_view').on('keyup',function()
{ {
var add_css_view_vvvvvyv = jQuery("#jform_add_css_view input[type='radio']:checked").val(); var add_css_view_vvvvvxd = jQuery("#jform_add_css_view input[type='radio']:checked").val();
vvvvvyv(add_css_view_vvvvvyv); vvvvvxd(add_css_view_vvvvvxd);
}); });
jQuery('#adminForm').on('change', '#jform_add_css_view',function (e) jQuery('#adminForm').on('change', '#jform_add_css_view',function (e)
{ {
e.preventDefault(); e.preventDefault();
var add_css_view_vvvvvyv = jQuery("#jform_add_css_view input[type='radio']:checked").val(); var add_css_view_vvvvvxd = jQuery("#jform_add_css_view input[type='radio']:checked").val();
vvvvvyv(add_css_view_vvvvvyv); vvvvvxd(add_css_view_vvvvvxd);
}); });
// #jform_add_css_views listeners for add_css_views_vvvvvyw function // #jform_add_css_views listeners for add_css_views_vvvvvxe function
jQuery('#jform_add_css_views').on('keyup',function() jQuery('#jform_add_css_views').on('keyup',function()
{ {
var add_css_views_vvvvvyw = jQuery("#jform_add_css_views input[type='radio']:checked").val(); var add_css_views_vvvvvxe = jQuery("#jform_add_css_views input[type='radio']:checked").val();
vvvvvyw(add_css_views_vvvvvyw); vvvvvxe(add_css_views_vvvvvxe);
}); });
jQuery('#adminForm').on('change', '#jform_add_css_views',function (e) jQuery('#adminForm').on('change', '#jform_add_css_views',function (e)
{ {
e.preventDefault(); e.preventDefault();
var add_css_views_vvvvvyw = jQuery("#jform_add_css_views input[type='radio']:checked").val(); var add_css_views_vvvvvxe = jQuery("#jform_add_css_views input[type='radio']:checked").val();
vvvvvyw(add_css_views_vvvvvyw); vvvvvxe(add_css_views_vvvvvxe);
}); });
// #jform_add_javascript_view_file listeners for add_javascript_view_file_vvvvvyx function // #jform_add_javascript_view_file listeners for add_javascript_view_file_vvvvvxf function
jQuery('#jform_add_javascript_view_file').on('keyup',function() jQuery('#jform_add_javascript_view_file').on('keyup',function()
{ {
var add_javascript_view_file_vvvvvyx = jQuery("#jform_add_javascript_view_file input[type='radio']:checked").val(); var add_javascript_view_file_vvvvvxf = jQuery("#jform_add_javascript_view_file input[type='radio']:checked").val();
vvvvvyx(add_javascript_view_file_vvvvvyx); vvvvvxf(add_javascript_view_file_vvvvvxf);
}); });
jQuery('#adminForm').on('change', '#jform_add_javascript_view_file',function (e) jQuery('#adminForm').on('change', '#jform_add_javascript_view_file',function (e)
{ {
e.preventDefault(); e.preventDefault();
var add_javascript_view_file_vvvvvyx = jQuery("#jform_add_javascript_view_file input[type='radio']:checked").val(); var add_javascript_view_file_vvvvvxf = jQuery("#jform_add_javascript_view_file input[type='radio']:checked").val();
vvvvvyx(add_javascript_view_file_vvvvvyx); vvvvvxf(add_javascript_view_file_vvvvvxf);
}); });
// #jform_add_javascript_views_file listeners for add_javascript_views_file_vvvvvyy function // #jform_add_javascript_views_file listeners for add_javascript_views_file_vvvvvxg function
jQuery('#jform_add_javascript_views_file').on('keyup',function() jQuery('#jform_add_javascript_views_file').on('keyup',function()
{ {
var add_javascript_views_file_vvvvvyy = jQuery("#jform_add_javascript_views_file input[type='radio']:checked").val(); var add_javascript_views_file_vvvvvxg = jQuery("#jform_add_javascript_views_file input[type='radio']:checked").val();
vvvvvyy(add_javascript_views_file_vvvvvyy); vvvvvxg(add_javascript_views_file_vvvvvxg);
}); });
jQuery('#adminForm').on('change', '#jform_add_javascript_views_file',function (e) jQuery('#adminForm').on('change', '#jform_add_javascript_views_file',function (e)
{ {
e.preventDefault(); e.preventDefault();
var add_javascript_views_file_vvvvvyy = jQuery("#jform_add_javascript_views_file input[type='radio']:checked").val(); var add_javascript_views_file_vvvvvxg = jQuery("#jform_add_javascript_views_file input[type='radio']:checked").val();
vvvvvyy(add_javascript_views_file_vvvvvyy); vvvvvxg(add_javascript_views_file_vvvvvxg);
}); });
// #jform_add_javascript_view_footer listeners for add_javascript_view_footer_vvvvvyz function // #jform_add_javascript_view_footer listeners for add_javascript_view_footer_vvvvvxh function
jQuery('#jform_add_javascript_view_footer').on('keyup',function() jQuery('#jform_add_javascript_view_footer').on('keyup',function()
{ {
var add_javascript_view_footer_vvvvvyz = jQuery("#jform_add_javascript_view_footer input[type='radio']:checked").val(); var add_javascript_view_footer_vvvvvxh = jQuery("#jform_add_javascript_view_footer input[type='radio']:checked").val();
vvvvvyz(add_javascript_view_footer_vvvvvyz); vvvvvxh(add_javascript_view_footer_vvvvvxh);
}); });
jQuery('#adminForm').on('change', '#jform_add_javascript_view_footer',function (e) jQuery('#adminForm').on('change', '#jform_add_javascript_view_footer',function (e)
{ {
e.preventDefault(); e.preventDefault();
var add_javascript_view_footer_vvvvvyz = jQuery("#jform_add_javascript_view_footer input[type='radio']:checked").val(); var add_javascript_view_footer_vvvvvxh = jQuery("#jform_add_javascript_view_footer input[type='radio']:checked").val();
vvvvvyz(add_javascript_view_footer_vvvvvyz); vvvvvxh(add_javascript_view_footer_vvvvvxh);
}); });
// #jform_add_javascript_views_footer listeners for add_javascript_views_footer_vvvvvza function // #jform_add_javascript_views_footer listeners for add_javascript_views_footer_vvvvvxi function
jQuery('#jform_add_javascript_views_footer').on('keyup',function() jQuery('#jform_add_javascript_views_footer').on('keyup',function()
{ {
var add_javascript_views_footer_vvvvvza = jQuery("#jform_add_javascript_views_footer input[type='radio']:checked").val(); var add_javascript_views_footer_vvvvvxi = jQuery("#jform_add_javascript_views_footer input[type='radio']:checked").val();
vvvvvza(add_javascript_views_footer_vvvvvza); vvvvvxi(add_javascript_views_footer_vvvvvxi);
}); });
jQuery('#adminForm').on('change', '#jform_add_javascript_views_footer',function (e) jQuery('#adminForm').on('change', '#jform_add_javascript_views_footer',function (e)
{ {
e.preventDefault(); e.preventDefault();
var add_javascript_views_footer_vvvvvza = jQuery("#jform_add_javascript_views_footer input[type='radio']:checked").val(); var add_javascript_views_footer_vvvvvxi = jQuery("#jform_add_javascript_views_footer input[type='radio']:checked").val();
vvvvvza(add_javascript_views_footer_vvvvvza); vvvvvxi(add_javascript_views_footer_vvvvvxi);
}); });
// #jform_add_php_ajax listeners for add_php_ajax_vvvvvzb function // #jform_add_php_ajax listeners for add_php_ajax_vvvvvxj function
jQuery('#jform_add_php_ajax').on('keyup',function() jQuery('#jform_add_php_ajax').on('keyup',function()
{ {
var add_php_ajax_vvvvvzb = jQuery("#jform_add_php_ajax input[type='radio']:checked").val(); var add_php_ajax_vvvvvxj = jQuery("#jform_add_php_ajax input[type='radio']:checked").val();
vvvvvzb(add_php_ajax_vvvvvzb); vvvvvxj(add_php_ajax_vvvvvxj);
}); });
jQuery('#adminForm').on('change', '#jform_add_php_ajax',function (e) jQuery('#adminForm').on('change', '#jform_add_php_ajax',function (e)
{ {
e.preventDefault(); e.preventDefault();
var add_php_ajax_vvvvvzb = jQuery("#jform_add_php_ajax input[type='radio']:checked").val(); var add_php_ajax_vvvvvxj = jQuery("#jform_add_php_ajax input[type='radio']:checked").val();
vvvvvzb(add_php_ajax_vvvvvzb); vvvvvxj(add_php_ajax_vvvvvxj);
}); });
// #jform_add_php_getitem listeners for add_php_getitem_vvvvvzc function // #jform_add_php_getitem listeners for add_php_getitem_vvvvvxk function
jQuery('#jform_add_php_getitem').on('keyup',function() jQuery('#jform_add_php_getitem').on('keyup',function()
{ {
var add_php_getitem_vvvvvzc = jQuery("#jform_add_php_getitem input[type='radio']:checked").val(); var add_php_getitem_vvvvvxk = jQuery("#jform_add_php_getitem input[type='radio']:checked").val();
vvvvvzc(add_php_getitem_vvvvvzc); vvvvvxk(add_php_getitem_vvvvvxk);
}); });
jQuery('#adminForm').on('change', '#jform_add_php_getitem',function (e) jQuery('#adminForm').on('change', '#jform_add_php_getitem',function (e)
{ {
e.preventDefault(); e.preventDefault();
var add_php_getitem_vvvvvzc = jQuery("#jform_add_php_getitem input[type='radio']:checked").val(); var add_php_getitem_vvvvvxk = jQuery("#jform_add_php_getitem input[type='radio']:checked").val();
vvvvvzc(add_php_getitem_vvvvvzc); vvvvvxk(add_php_getitem_vvvvvxk);
}); });
// #jform_add_php_getitems listeners for add_php_getitems_vvvvvzd function // #jform_add_php_getitems listeners for add_php_getitems_vvvvvxl function
jQuery('#jform_add_php_getitems').on('keyup',function() jQuery('#jform_add_php_getitems').on('keyup',function()
{ {
var add_php_getitems_vvvvvzd = jQuery("#jform_add_php_getitems input[type='radio']:checked").val(); var add_php_getitems_vvvvvxl = jQuery("#jform_add_php_getitems input[type='radio']:checked").val();
vvvvvzd(add_php_getitems_vvvvvzd); vvvvvxl(add_php_getitems_vvvvvxl);
}); });
jQuery('#adminForm').on('change', '#jform_add_php_getitems',function (e) jQuery('#adminForm').on('change', '#jform_add_php_getitems',function (e)
{ {
e.preventDefault(); e.preventDefault();
var add_php_getitems_vvvvvzd = jQuery("#jform_add_php_getitems input[type='radio']:checked").val(); var add_php_getitems_vvvvvxl = jQuery("#jform_add_php_getitems input[type='radio']:checked").val();
vvvvvzd(add_php_getitems_vvvvvzd); vvvvvxl(add_php_getitems_vvvvvxl);
}); });
// #jform_add_php_getitems_after_all listeners for add_php_getitems_after_all_vvvvvze function // #jform_add_php_getitems_after_all listeners for add_php_getitems_after_all_vvvvvxm function
jQuery('#jform_add_php_getitems_after_all').on('keyup',function() jQuery('#jform_add_php_getitems_after_all').on('keyup',function()
{ {
var add_php_getitems_after_all_vvvvvze = jQuery("#jform_add_php_getitems_after_all input[type='radio']:checked").val(); var add_php_getitems_after_all_vvvvvxm = jQuery("#jform_add_php_getitems_after_all input[type='radio']:checked").val();
vvvvvze(add_php_getitems_after_all_vvvvvze); vvvvvxm(add_php_getitems_after_all_vvvvvxm);
}); });
jQuery('#adminForm').on('change', '#jform_add_php_getitems_after_all',function (e) jQuery('#adminForm').on('change', '#jform_add_php_getitems_after_all',function (e)
{ {
e.preventDefault(); e.preventDefault();
var add_php_getitems_after_all_vvvvvze = jQuery("#jform_add_php_getitems_after_all input[type='radio']:checked").val(); var add_php_getitems_after_all_vvvvvxm = jQuery("#jform_add_php_getitems_after_all input[type='radio']:checked").val();
vvvvvze(add_php_getitems_after_all_vvvvvze); vvvvvxm(add_php_getitems_after_all_vvvvvxm);
}); });
// #jform_add_php_getlistquery listeners for add_php_getlistquery_vvvvvzf function // #jform_add_php_getlistquery listeners for add_php_getlistquery_vvvvvxn function
jQuery('#jform_add_php_getlistquery').on('keyup',function() jQuery('#jform_add_php_getlistquery').on('keyup',function()
{ {
var add_php_getlistquery_vvvvvzf = jQuery("#jform_add_php_getlistquery input[type='radio']:checked").val(); var add_php_getlistquery_vvvvvxn = jQuery("#jform_add_php_getlistquery input[type='radio']:checked").val();
vvvvvzf(add_php_getlistquery_vvvvvzf); vvvvvxn(add_php_getlistquery_vvvvvxn);
}); });
jQuery('#adminForm').on('change', '#jform_add_php_getlistquery',function (e) jQuery('#adminForm').on('change', '#jform_add_php_getlistquery',function (e)
{ {
e.preventDefault(); e.preventDefault();
var add_php_getlistquery_vvvvvzf = jQuery("#jform_add_php_getlistquery input[type='radio']:checked").val(); var add_php_getlistquery_vvvvvxn = jQuery("#jform_add_php_getlistquery input[type='radio']:checked").val();
vvvvvzf(add_php_getlistquery_vvvvvzf); vvvvvxn(add_php_getlistquery_vvvvvxn);
}); });
// #jform_add_php_getform listeners for add_php_getform_vvvvvzg function // #jform_add_php_getform listeners for add_php_getform_vvvvvxo function
jQuery('#jform_add_php_getform').on('keyup',function() jQuery('#jform_add_php_getform').on('keyup',function()
{ {
var add_php_getform_vvvvvzg = jQuery("#jform_add_php_getform input[type='radio']:checked").val(); var add_php_getform_vvvvvxo = jQuery("#jform_add_php_getform input[type='radio']:checked").val();
vvvvvzg(add_php_getform_vvvvvzg); vvvvvxo(add_php_getform_vvvvvxo);
}); });
jQuery('#adminForm').on('change', '#jform_add_php_getform',function (e) jQuery('#adminForm').on('change', '#jform_add_php_getform',function (e)
{ {
e.preventDefault(); e.preventDefault();
var add_php_getform_vvvvvzg = jQuery("#jform_add_php_getform input[type='radio']:checked").val(); var add_php_getform_vvvvvxo = jQuery("#jform_add_php_getform input[type='radio']:checked").val();
vvvvvzg(add_php_getform_vvvvvzg); vvvvvxo(add_php_getform_vvvvvxo);
}); });
// #jform_add_php_before_save listeners for add_php_before_save_vvvvvzh function // #jform_add_php_before_save listeners for add_php_before_save_vvvvvxp function
jQuery('#jform_add_php_before_save').on('keyup',function() jQuery('#jform_add_php_before_save').on('keyup',function()
{ {
var add_php_before_save_vvvvvzh = jQuery("#jform_add_php_before_save input[type='radio']:checked").val(); var add_php_before_save_vvvvvxp = jQuery("#jform_add_php_before_save input[type='radio']:checked").val();
vvvvvzh(add_php_before_save_vvvvvzh); vvvvvxp(add_php_before_save_vvvvvxp);
}); });
jQuery('#adminForm').on('change', '#jform_add_php_before_save',function (e) jQuery('#adminForm').on('change', '#jform_add_php_before_save',function (e)
{ {
e.preventDefault(); e.preventDefault();
var add_php_before_save_vvvvvzh = jQuery("#jform_add_php_before_save input[type='radio']:checked").val(); var add_php_before_save_vvvvvxp = jQuery("#jform_add_php_before_save input[type='radio']:checked").val();
vvvvvzh(add_php_before_save_vvvvvzh); vvvvvxp(add_php_before_save_vvvvvxp);
}); });
// #jform_add_php_save listeners for add_php_save_vvvvvzi function // #jform_add_php_save listeners for add_php_save_vvvvvxq function
jQuery('#jform_add_php_save').on('keyup',function() jQuery('#jform_add_php_save').on('keyup',function()
{ {
var add_php_save_vvvvvzi = jQuery("#jform_add_php_save input[type='radio']:checked").val(); var add_php_save_vvvvvxq = jQuery("#jform_add_php_save input[type='radio']:checked").val();
vvvvvzi(add_php_save_vvvvvzi); vvvvvxq(add_php_save_vvvvvxq);
}); });
jQuery('#adminForm').on('change', '#jform_add_php_save',function (e) jQuery('#adminForm').on('change', '#jform_add_php_save',function (e)
{ {
e.preventDefault(); e.preventDefault();
var add_php_save_vvvvvzi = jQuery("#jform_add_php_save input[type='radio']:checked").val(); var add_php_save_vvvvvxq = jQuery("#jform_add_php_save input[type='radio']:checked").val();
vvvvvzi(add_php_save_vvvvvzi); vvvvvxq(add_php_save_vvvvvxq);
}); });
// #jform_add_php_postsavehook listeners for add_php_postsavehook_vvvvvzj function // #jform_add_php_postsavehook listeners for add_php_postsavehook_vvvvvxr function
jQuery('#jform_add_php_postsavehook').on('keyup',function() jQuery('#jform_add_php_postsavehook').on('keyup',function()
{ {
var add_php_postsavehook_vvvvvzj = jQuery("#jform_add_php_postsavehook input[type='radio']:checked").val(); var add_php_postsavehook_vvvvvxr = jQuery("#jform_add_php_postsavehook input[type='radio']:checked").val();
vvvvvzj(add_php_postsavehook_vvvvvzj); vvvvvxr(add_php_postsavehook_vvvvvxr);
}); });
jQuery('#adminForm').on('change', '#jform_add_php_postsavehook',function (e) jQuery('#adminForm').on('change', '#jform_add_php_postsavehook',function (e)
{ {
e.preventDefault(); e.preventDefault();
var add_php_postsavehook_vvvvvzj = jQuery("#jform_add_php_postsavehook input[type='radio']:checked").val(); var add_php_postsavehook_vvvvvxr = jQuery("#jform_add_php_postsavehook input[type='radio']:checked").val();
vvvvvzj(add_php_postsavehook_vvvvvzj); vvvvvxr(add_php_postsavehook_vvvvvxr);
}); });
// #jform_add_php_allowadd listeners for add_php_allowadd_vvvvvzk function // #jform_add_php_allowadd listeners for add_php_allowadd_vvvvvxs function
jQuery('#jform_add_php_allowadd').on('keyup',function() jQuery('#jform_add_php_allowadd').on('keyup',function()
{ {
var add_php_allowadd_vvvvvzk = jQuery("#jform_add_php_allowadd input[type='radio']:checked").val(); var add_php_allowadd_vvvvvxs = jQuery("#jform_add_php_allowadd input[type='radio']:checked").val();
vvvvvzk(add_php_allowadd_vvvvvzk); vvvvvxs(add_php_allowadd_vvvvvxs);
}); });
jQuery('#adminForm').on('change', '#jform_add_php_allowadd',function (e) jQuery('#adminForm').on('change', '#jform_add_php_allowadd',function (e)
{ {
e.preventDefault(); e.preventDefault();
var add_php_allowadd_vvvvvzk = jQuery("#jform_add_php_allowadd input[type='radio']:checked").val(); var add_php_allowadd_vvvvvxs = jQuery("#jform_add_php_allowadd input[type='radio']:checked").val();
vvvvvzk(add_php_allowadd_vvvvvzk); vvvvvxs(add_php_allowadd_vvvvvxs);
}); });
// #jform_add_php_allowedit listeners for add_php_allowedit_vvvvvzl function // #jform_add_php_allowedit listeners for add_php_allowedit_vvvvvxt function
jQuery('#jform_add_php_allowedit').on('keyup',function() jQuery('#jform_add_php_allowedit').on('keyup',function()
{ {
var add_php_allowedit_vvvvvzl = jQuery("#jform_add_php_allowedit input[type='radio']:checked").val(); var add_php_allowedit_vvvvvxt = jQuery("#jform_add_php_allowedit input[type='radio']:checked").val();
vvvvvzl(add_php_allowedit_vvvvvzl); vvvvvxt(add_php_allowedit_vvvvvxt);
}); });
jQuery('#adminForm').on('change', '#jform_add_php_allowedit',function (e) jQuery('#adminForm').on('change', '#jform_add_php_allowedit',function (e)
{ {
e.preventDefault(); e.preventDefault();
var add_php_allowedit_vvvvvzl = jQuery("#jform_add_php_allowedit input[type='radio']:checked").val(); var add_php_allowedit_vvvvvxt = jQuery("#jform_add_php_allowedit input[type='radio']:checked").val();
vvvvvzl(add_php_allowedit_vvvvvzl); vvvvvxt(add_php_allowedit_vvvvvxt);
}); });
// #jform_add_php_before_cancel listeners for add_php_before_cancel_vvvvvzm function // #jform_add_php_before_cancel listeners for add_php_before_cancel_vvvvvxu function
jQuery('#jform_add_php_before_cancel').on('keyup',function() jQuery('#jform_add_php_before_cancel').on('keyup',function()
{ {
var add_php_before_cancel_vvvvvzm = jQuery("#jform_add_php_before_cancel input[type='radio']:checked").val(); var add_php_before_cancel_vvvvvxu = jQuery("#jform_add_php_before_cancel input[type='radio']:checked").val();
vvvvvzm(add_php_before_cancel_vvvvvzm); vvvvvxu(add_php_before_cancel_vvvvvxu);
}); });
jQuery('#adminForm').on('change', '#jform_add_php_before_cancel',function (e) jQuery('#adminForm').on('change', '#jform_add_php_before_cancel',function (e)
{ {
e.preventDefault(); e.preventDefault();
var add_php_before_cancel_vvvvvzm = jQuery("#jform_add_php_before_cancel input[type='radio']:checked").val(); var add_php_before_cancel_vvvvvxu = jQuery("#jform_add_php_before_cancel input[type='radio']:checked").val();
vvvvvzm(add_php_before_cancel_vvvvvzm); vvvvvxu(add_php_before_cancel_vvvvvxu);
}); });
// #jform_add_php_after_cancel listeners for add_php_after_cancel_vvvvvzn function // #jform_add_php_after_cancel listeners for add_php_after_cancel_vvvvvxv function
jQuery('#jform_add_php_after_cancel').on('keyup',function() jQuery('#jform_add_php_after_cancel').on('keyup',function()
{ {
var add_php_after_cancel_vvvvvzn = jQuery("#jform_add_php_after_cancel input[type='radio']:checked").val(); var add_php_after_cancel_vvvvvxv = jQuery("#jform_add_php_after_cancel input[type='radio']:checked").val();
vvvvvzn(add_php_after_cancel_vvvvvzn); vvvvvxv(add_php_after_cancel_vvvvvxv);
}); });
jQuery('#adminForm').on('change', '#jform_add_php_after_cancel',function (e) jQuery('#adminForm').on('change', '#jform_add_php_after_cancel',function (e)
{ {
e.preventDefault(); e.preventDefault();
var add_php_after_cancel_vvvvvzn = jQuery("#jform_add_php_after_cancel input[type='radio']:checked").val(); var add_php_after_cancel_vvvvvxv = jQuery("#jform_add_php_after_cancel input[type='radio']:checked").val();
vvvvvzn(add_php_after_cancel_vvvvvzn); vvvvvxv(add_php_after_cancel_vvvvvxv);
}); });
// #jform_add_php_batchcopy listeners for add_php_batchcopy_vvvvvzo function // #jform_add_php_batchcopy listeners for add_php_batchcopy_vvvvvxw function
jQuery('#jform_add_php_batchcopy').on('keyup',function() jQuery('#jform_add_php_batchcopy').on('keyup',function()
{ {
var add_php_batchcopy_vvvvvzo = jQuery("#jform_add_php_batchcopy input[type='radio']:checked").val(); var add_php_batchcopy_vvvvvxw = jQuery("#jform_add_php_batchcopy input[type='radio']:checked").val();
vvvvvzo(add_php_batchcopy_vvvvvzo); vvvvvxw(add_php_batchcopy_vvvvvxw);
}); });
jQuery('#adminForm').on('change', '#jform_add_php_batchcopy',function (e) jQuery('#adminForm').on('change', '#jform_add_php_batchcopy',function (e)
{ {
e.preventDefault(); e.preventDefault();
var add_php_batchcopy_vvvvvzo = jQuery("#jform_add_php_batchcopy input[type='radio']:checked").val(); var add_php_batchcopy_vvvvvxw = jQuery("#jform_add_php_batchcopy input[type='radio']:checked").val();
vvvvvzo(add_php_batchcopy_vvvvvzo); vvvvvxw(add_php_batchcopy_vvvvvxw);
}); });
// #jform_add_php_batchmove listeners for add_php_batchmove_vvvvvzp function // #jform_add_php_batchmove listeners for add_php_batchmove_vvvvvxx function
jQuery('#jform_add_php_batchmove').on('keyup',function() jQuery('#jform_add_php_batchmove').on('keyup',function()
{ {
var add_php_batchmove_vvvvvzp = jQuery("#jform_add_php_batchmove input[type='radio']:checked").val(); var add_php_batchmove_vvvvvxx = jQuery("#jform_add_php_batchmove input[type='radio']:checked").val();
vvvvvzp(add_php_batchmove_vvvvvzp); vvvvvxx(add_php_batchmove_vvvvvxx);
}); });
jQuery('#adminForm').on('change', '#jform_add_php_batchmove',function (e) jQuery('#adminForm').on('change', '#jform_add_php_batchmove',function (e)
{ {
e.preventDefault(); e.preventDefault();
var add_php_batchmove_vvvvvzp = jQuery("#jform_add_php_batchmove input[type='radio']:checked").val(); var add_php_batchmove_vvvvvxx = jQuery("#jform_add_php_batchmove input[type='radio']:checked").val();
vvvvvzp(add_php_batchmove_vvvvvzp); vvvvvxx(add_php_batchmove_vvvvvxx);
}); });
// #jform_add_php_before_publish listeners for add_php_before_publish_vvvvvzq function // #jform_add_php_before_publish listeners for add_php_before_publish_vvvvvxy function
jQuery('#jform_add_php_before_publish').on('keyup',function() jQuery('#jform_add_php_before_publish').on('keyup',function()
{ {
var add_php_before_publish_vvvvvzq = jQuery("#jform_add_php_before_publish input[type='radio']:checked").val(); var add_php_before_publish_vvvvvxy = jQuery("#jform_add_php_before_publish input[type='radio']:checked").val();
vvvvvzq(add_php_before_publish_vvvvvzq); vvvvvxy(add_php_before_publish_vvvvvxy);
}); });
jQuery('#adminForm').on('change', '#jform_add_php_before_publish',function (e) jQuery('#adminForm').on('change', '#jform_add_php_before_publish',function (e)
{ {
e.preventDefault(); e.preventDefault();
var add_php_before_publish_vvvvvzq = jQuery("#jform_add_php_before_publish input[type='radio']:checked").val(); var add_php_before_publish_vvvvvxy = jQuery("#jform_add_php_before_publish input[type='radio']:checked").val();
vvvvvzq(add_php_before_publish_vvvvvzq); vvvvvxy(add_php_before_publish_vvvvvxy);
}); });
// #jform_add_php_after_publish listeners for add_php_after_publish_vvvvvzr function // #jform_add_php_after_publish listeners for add_php_after_publish_vvvvvxz function
jQuery('#jform_add_php_after_publish').on('keyup',function() jQuery('#jform_add_php_after_publish').on('keyup',function()
{ {
var add_php_after_publish_vvvvvzr = jQuery("#jform_add_php_after_publish input[type='radio']:checked").val(); var add_php_after_publish_vvvvvxz = jQuery("#jform_add_php_after_publish input[type='radio']:checked").val();
vvvvvzr(add_php_after_publish_vvvvvzr); vvvvvxz(add_php_after_publish_vvvvvxz);
}); });
jQuery('#adminForm').on('change', '#jform_add_php_after_publish',function (e) jQuery('#adminForm').on('change', '#jform_add_php_after_publish',function (e)
{ {
e.preventDefault(); e.preventDefault();
var add_php_after_publish_vvvvvzr = jQuery("#jform_add_php_after_publish input[type='radio']:checked").val(); var add_php_after_publish_vvvvvxz = jQuery("#jform_add_php_after_publish input[type='radio']:checked").val();
vvvvvzr(add_php_after_publish_vvvvvzr); vvvvvxz(add_php_after_publish_vvvvvxz);
}); });
// #jform_add_php_before_delete listeners for add_php_before_delete_vvvvvzs function // #jform_add_php_before_delete listeners for add_php_before_delete_vvvvvya function
jQuery('#jform_add_php_before_delete').on('keyup',function() jQuery('#jform_add_php_before_delete').on('keyup',function()
{ {
var add_php_before_delete_vvvvvzs = jQuery("#jform_add_php_before_delete input[type='radio']:checked").val(); var add_php_before_delete_vvvvvya = jQuery("#jform_add_php_before_delete input[type='radio']:checked").val();
vvvvvzs(add_php_before_delete_vvvvvzs); vvvvvya(add_php_before_delete_vvvvvya);
}); });
jQuery('#adminForm').on('change', '#jform_add_php_before_delete',function (e) jQuery('#adminForm').on('change', '#jform_add_php_before_delete',function (e)
{ {
e.preventDefault(); e.preventDefault();
var add_php_before_delete_vvvvvzs = jQuery("#jform_add_php_before_delete input[type='radio']:checked").val(); var add_php_before_delete_vvvvvya = jQuery("#jform_add_php_before_delete input[type='radio']:checked").val();
vvvvvzs(add_php_before_delete_vvvvvzs); vvvvvya(add_php_before_delete_vvvvvya);
}); });
// #jform_add_php_after_delete listeners for add_php_after_delete_vvvvvzt function // #jform_add_php_after_delete listeners for add_php_after_delete_vvvvvyb function
jQuery('#jform_add_php_after_delete').on('keyup',function() jQuery('#jform_add_php_after_delete').on('keyup',function()
{ {
var add_php_after_delete_vvvvvzt = jQuery("#jform_add_php_after_delete input[type='radio']:checked").val(); var add_php_after_delete_vvvvvyb = jQuery("#jform_add_php_after_delete input[type='radio']:checked").val();
vvvvvzt(add_php_after_delete_vvvvvzt); vvvvvyb(add_php_after_delete_vvvvvyb);
}); });
jQuery('#adminForm').on('change', '#jform_add_php_after_delete',function (e) jQuery('#adminForm').on('change', '#jform_add_php_after_delete',function (e)
{ {
e.preventDefault(); e.preventDefault();
var add_php_after_delete_vvvvvzt = jQuery("#jform_add_php_after_delete input[type='radio']:checked").val(); var add_php_after_delete_vvvvvyb = jQuery("#jform_add_php_after_delete input[type='radio']:checked").val();
vvvvvzt(add_php_after_delete_vvvvvzt); vvvvvyb(add_php_after_delete_vvvvvyb);
}); });
// #jform_add_php_document listeners for add_php_document_vvvvvzu function // #jform_add_php_document listeners for add_php_document_vvvvvyc function
jQuery('#jform_add_php_document').on('keyup',function() jQuery('#jform_add_php_document').on('keyup',function()
{ {
var add_php_document_vvvvvzu = jQuery("#jform_add_php_document input[type='radio']:checked").val(); var add_php_document_vvvvvyc = jQuery("#jform_add_php_document input[type='radio']:checked").val();
vvvvvzu(add_php_document_vvvvvzu); vvvvvyc(add_php_document_vvvvvyc);
}); });
jQuery('#adminForm').on('change', '#jform_add_php_document',function (e) jQuery('#adminForm').on('change', '#jform_add_php_document',function (e)
{ {
e.preventDefault(); e.preventDefault();
var add_php_document_vvvvvzu = jQuery("#jform_add_php_document input[type='radio']:checked").val(); var add_php_document_vvvvvyc = jQuery("#jform_add_php_document input[type='radio']:checked").val();
vvvvvzu(add_php_document_vvvvvzu); vvvvvyc(add_php_document_vvvvvyc);
}); });
// #jform_add_sql listeners for add_sql_vvvvvzv function // #jform_add_sql listeners for add_sql_vvvvvyd function
jQuery('#jform_add_sql').on('keyup',function() jQuery('#jform_add_sql').on('keyup',function()
{ {
var add_sql_vvvvvzv = jQuery("#jform_add_sql input[type='radio']:checked").val(); var add_sql_vvvvvyd = jQuery("#jform_add_sql input[type='radio']:checked").val();
vvvvvzv(add_sql_vvvvvzv); vvvvvyd(add_sql_vvvvvyd);
}); });
jQuery('#adminForm').on('change', '#jform_add_sql',function (e) jQuery('#adminForm').on('change', '#jform_add_sql',function (e)
{ {
e.preventDefault(); e.preventDefault();
var add_sql_vvvvvzv = jQuery("#jform_add_sql input[type='radio']:checked").val(); var add_sql_vvvvvyd = jQuery("#jform_add_sql input[type='radio']:checked").val();
vvvvvzv(add_sql_vvvvvzv); vvvvvyd(add_sql_vvvvvyd);
}); });
// #jform_source listeners for source_vvvvvzw function // #jform_source listeners for source_vvvvvye function
jQuery('#jform_source').on('keyup',function() jQuery('#jform_source').on('keyup',function()
{ {
var source_vvvvvzw = jQuery("#jform_source input[type='radio']:checked").val(); var source_vvvvvye = jQuery("#jform_source input[type='radio']:checked").val();
var add_sql_vvvvvzw = jQuery("#jform_add_sql input[type='radio']:checked").val(); var add_sql_vvvvvye = jQuery("#jform_add_sql input[type='radio']:checked").val();
vvvvvzw(source_vvvvvzw,add_sql_vvvvvzw); vvvvvye(source_vvvvvye,add_sql_vvvvvye);
}); });
jQuery('#adminForm').on('change', '#jform_source',function (e) jQuery('#adminForm').on('change', '#jform_source',function (e)
{ {
e.preventDefault(); e.preventDefault();
var source_vvvvvzw = jQuery("#jform_source input[type='radio']:checked").val(); var source_vvvvvye = jQuery("#jform_source input[type='radio']:checked").val();
var add_sql_vvvvvzw = jQuery("#jform_add_sql input[type='radio']:checked").val(); var add_sql_vvvvvye = jQuery("#jform_add_sql input[type='radio']:checked").val();
vvvvvzw(source_vvvvvzw,add_sql_vvvvvzw); vvvvvye(source_vvvvvye,add_sql_vvvvvye);
}); });
// #jform_add_sql listeners for add_sql_vvvvvzw function // #jform_add_sql listeners for add_sql_vvvvvye function
jQuery('#jform_add_sql').on('keyup',function() jQuery('#jform_add_sql').on('keyup',function()
{ {
var source_vvvvvzw = jQuery("#jform_source input[type='radio']:checked").val(); var source_vvvvvye = jQuery("#jform_source input[type='radio']:checked").val();
var add_sql_vvvvvzw = jQuery("#jform_add_sql input[type='radio']:checked").val(); var add_sql_vvvvvye = jQuery("#jform_add_sql input[type='radio']:checked").val();
vvvvvzw(source_vvvvvzw,add_sql_vvvvvzw); vvvvvye(source_vvvvvye,add_sql_vvvvvye);
}); });
jQuery('#adminForm').on('change', '#jform_add_sql',function (e) jQuery('#adminForm').on('change', '#jform_add_sql',function (e)
{ {
e.preventDefault(); e.preventDefault();
var source_vvvvvzw = jQuery("#jform_source input[type='radio']:checked").val(); var source_vvvvvye = jQuery("#jform_source input[type='radio']:checked").val();
var add_sql_vvvvvzw = jQuery("#jform_add_sql input[type='radio']:checked").val(); var add_sql_vvvvvye = jQuery("#jform_add_sql input[type='radio']:checked").val();
vvvvvzw(source_vvvvvzw,add_sql_vvvvvzw); vvvvvye(source_vvvvvye,add_sql_vvvvvye);
}); });
// #jform_source listeners for source_vvvvvzy function // #jform_source listeners for source_vvvvvyg function
jQuery('#jform_source').on('keyup',function() jQuery('#jform_source').on('keyup',function()
{ {
var source_vvvvvzy = jQuery("#jform_source input[type='radio']:checked").val(); var source_vvvvvyg = jQuery("#jform_source input[type='radio']:checked").val();
var add_sql_vvvvvzy = jQuery("#jform_add_sql input[type='radio']:checked").val(); var add_sql_vvvvvyg = jQuery("#jform_add_sql input[type='radio']:checked").val();
vvvvvzy(source_vvvvvzy,add_sql_vvvvvzy); vvvvvyg(source_vvvvvyg,add_sql_vvvvvyg);
}); });
jQuery('#adminForm').on('change', '#jform_source',function (e) jQuery('#adminForm').on('change', '#jform_source',function (e)
{ {
e.preventDefault(); e.preventDefault();
var source_vvvvvzy = jQuery("#jform_source input[type='radio']:checked").val(); var source_vvvvvyg = jQuery("#jform_source input[type='radio']:checked").val();
var add_sql_vvvvvzy = jQuery("#jform_add_sql input[type='radio']:checked").val(); var add_sql_vvvvvyg = jQuery("#jform_add_sql input[type='radio']:checked").val();
vvvvvzy(source_vvvvvzy,add_sql_vvvvvzy); vvvvvyg(source_vvvvvyg,add_sql_vvvvvyg);
}); });
// #jform_add_sql listeners for add_sql_vvvvvzy function // #jform_add_sql listeners for add_sql_vvvvvyg function
jQuery('#jform_add_sql').on('keyup',function() jQuery('#jform_add_sql').on('keyup',function()
{ {
var source_vvvvvzy = jQuery("#jform_source input[type='radio']:checked").val(); var source_vvvvvyg = jQuery("#jform_source input[type='radio']:checked").val();
var add_sql_vvvvvzy = jQuery("#jform_add_sql input[type='radio']:checked").val(); var add_sql_vvvvvyg = jQuery("#jform_add_sql input[type='radio']:checked").val();
vvvvvzy(source_vvvvvzy,add_sql_vvvvvzy); vvvvvyg(source_vvvvvyg,add_sql_vvvvvyg);
}); });
jQuery('#adminForm').on('change', '#jform_add_sql',function (e) jQuery('#adminForm').on('change', '#jform_add_sql',function (e)
{ {
e.preventDefault(); e.preventDefault();
var source_vvvvvzy = jQuery("#jform_source input[type='radio']:checked").val(); var source_vvvvvyg = jQuery("#jform_source input[type='radio']:checked").val();
var add_sql_vvvvvzy = jQuery("#jform_add_sql input[type='radio']:checked").val(); var add_sql_vvvvvyg = jQuery("#jform_add_sql input[type='radio']:checked").val();
vvvvvzy(source_vvvvvzy,add_sql_vvvvvzy); vvvvvyg(source_vvvvvyg,add_sql_vvvvvyg);
}); });
// #jform_add_custom_import listeners for add_custom_import_vvvvwaa function // #jform_add_custom_import listeners for add_custom_import_vvvvvyi function
jQuery('#jform_add_custom_import').on('keyup',function() jQuery('#jform_add_custom_import').on('keyup',function()
{ {
var add_custom_import_vvvvwaa = jQuery("#jform_add_custom_import input[type='radio']:checked").val(); var add_custom_import_vvvvvyi = jQuery("#jform_add_custom_import input[type='radio']:checked").val();
vvvvwaa(add_custom_import_vvvvwaa); vvvvvyi(add_custom_import_vvvvvyi);
}); });
jQuery('#adminForm').on('change', '#jform_add_custom_import',function (e) jQuery('#adminForm').on('change', '#jform_add_custom_import',function (e)
{ {
e.preventDefault(); e.preventDefault();
var add_custom_import_vvvvwaa = jQuery("#jform_add_custom_import input[type='radio']:checked").val(); var add_custom_import_vvvvvyi = jQuery("#jform_add_custom_import input[type='radio']:checked").val();
vvvvwaa(add_custom_import_vvvvwaa); vvvvvyi(add_custom_import_vvvvvyi);
}); });
// #jform_add_custom_import listeners for add_custom_import_vvvvwab function // #jform_add_custom_import listeners for add_custom_import_vvvvvyj function
jQuery('#jform_add_custom_import').on('keyup',function() jQuery('#jform_add_custom_import').on('keyup',function()
{ {
var add_custom_import_vvvvwab = jQuery("#jform_add_custom_import input[type='radio']:checked").val(); var add_custom_import_vvvvvyj = jQuery("#jform_add_custom_import input[type='radio']:checked").val();
vvvvwab(add_custom_import_vvvvwab); vvvvvyj(add_custom_import_vvvvvyj);
}); });
jQuery('#adminForm').on('change', '#jform_add_custom_import',function (e) jQuery('#adminForm').on('change', '#jform_add_custom_import',function (e)
{ {
e.preventDefault(); e.preventDefault();
var add_custom_import_vvvvwab = jQuery("#jform_add_custom_import input[type='radio']:checked").val(); var add_custom_import_vvvvvyj = jQuery("#jform_add_custom_import input[type='radio']:checked").val();
vvvvwab(add_custom_import_vvvvwab); vvvvvyj(add_custom_import_vvvvvyj);
}); });
// #jform_add_custom_button listeners for add_custom_button_vvvvwac function // #jform_add_custom_button listeners for add_custom_button_vvvvvyk function
jQuery('#jform_add_custom_button').on('keyup',function() jQuery('#jform_add_custom_button').on('keyup',function()
{ {
var add_custom_button_vvvvwac = jQuery("#jform_add_custom_button input[type='radio']:checked").val(); var add_custom_button_vvvvvyk = jQuery("#jform_add_custom_button input[type='radio']:checked").val();
vvvvwac(add_custom_button_vvvvwac); vvvvvyk(add_custom_button_vvvvvyk);
}); });
jQuery('#adminForm').on('change', '#jform_add_custom_button',function (e) jQuery('#adminForm').on('change', '#jform_add_custom_button',function (e)
{ {
e.preventDefault(); e.preventDefault();
var add_custom_button_vvvvwac = jQuery("#jform_add_custom_button input[type='radio']:checked").val(); var add_custom_button_vvvvvyk = jQuery("#jform_add_custom_button input[type='radio']:checked").val();
vvvvwac(add_custom_button_vvvvwac); vvvvvyk(add_custom_button_vvvvvyk);
}); });

View File

@ -111,18 +111,18 @@ defined('_JEXEC') or die;
<script type="text/javascript"> <script type="text/javascript">
// #jform_extension_type listeners for extension_type_vvvvwcg function // #jform_extension_type listeners for extension_type_vvvvwao function
jQuery('#jform_extension_type').on('keyup',function() jQuery('#jform_extension_type').on('keyup',function()
{ {
var extension_type_vvvvwcg = jQuery("#jform_extension_type").val(); var extension_type_vvvvwao = jQuery("#jform_extension_type").val();
vvvvwcg(extension_type_vvvvwcg); vvvvwao(extension_type_vvvvwao);
}); });
jQuery('#adminForm').on('change', '#jform_extension_type',function (e) jQuery('#adminForm').on('change', '#jform_extension_type',function (e)
{ {
e.preventDefault(); e.preventDefault();
var extension_type_vvvvwcg = jQuery("#jform_extension_type").val(); var extension_type_vvvvwao = jQuery("#jform_extension_type").val();
vvvvwcg(extension_type_vvvvwcg); vvvvwao(extension_type_vvvvwao);
}); });

View File

@ -106,18 +106,18 @@ defined('_JEXEC') or die;
<script type="text/javascript"> <script type="text/javascript">
// #jform_extension_type listeners for extension_type_vvvvwcf function // #jform_extension_type listeners for extension_type_vvvvwan function
jQuery('#jform_extension_type').on('keyup',function() jQuery('#jform_extension_type').on('keyup',function()
{ {
var extension_type_vvvvwcf = jQuery("#jform_extension_type").val(); var extension_type_vvvvwan = jQuery("#jform_extension_type").val();
vvvvwcf(extension_type_vvvvwcf); vvvvwan(extension_type_vvvvwan);
}); });
jQuery('#adminForm').on('change', '#jform_extension_type',function (e) jQuery('#adminForm').on('change', '#jform_extension_type',function (e)
{ {
e.preventDefault(); e.preventDefault();
var extension_type_vvvvwcf = jQuery("#jform_extension_type").val(); var extension_type_vvvvwan = jQuery("#jform_extension_type").val();
vvvvwcf(extension_type_vvvvwcf); vvvvwan(extension_type_vvvvwan);
}); });

View File

@ -165,153 +165,153 @@ defined('_JEXEC') or die;
<script type="text/javascript"> <script type="text/javascript">
// #jform_add_php_view listeners for add_php_view_vvvvwad function // #jform_add_php_view listeners for add_php_view_vvvvvyl function
jQuery('#jform_add_php_view').on('keyup',function() jQuery('#jform_add_php_view').on('keyup',function()
{ {
var add_php_view_vvvvwad = jQuery("#jform_add_php_view input[type='radio']:checked").val(); var add_php_view_vvvvvyl = jQuery("#jform_add_php_view input[type='radio']:checked").val();
vvvvwad(add_php_view_vvvvwad); vvvvvyl(add_php_view_vvvvvyl);
}); });
jQuery('#adminForm').on('change', '#jform_add_php_view',function (e) jQuery('#adminForm').on('change', '#jform_add_php_view',function (e)
{ {
e.preventDefault(); e.preventDefault();
var add_php_view_vvvvwad = jQuery("#jform_add_php_view input[type='radio']:checked").val(); var add_php_view_vvvvvyl = jQuery("#jform_add_php_view input[type='radio']:checked").val();
vvvvwad(add_php_view_vvvvwad); vvvvvyl(add_php_view_vvvvvyl);
}); });
// #jform_add_php_jview_display listeners for add_php_jview_display_vvvvwae function // #jform_add_php_jview_display listeners for add_php_jview_display_vvvvvym function
jQuery('#jform_add_php_jview_display').on('keyup',function() jQuery('#jform_add_php_jview_display').on('keyup',function()
{ {
var add_php_jview_display_vvvvwae = jQuery("#jform_add_php_jview_display input[type='radio']:checked").val(); var add_php_jview_display_vvvvvym = jQuery("#jform_add_php_jview_display input[type='radio']:checked").val();
vvvvwae(add_php_jview_display_vvvvwae); vvvvvym(add_php_jview_display_vvvvvym);
}); });
jQuery('#adminForm').on('change', '#jform_add_php_jview_display',function (e) jQuery('#adminForm').on('change', '#jform_add_php_jview_display',function (e)
{ {
e.preventDefault(); e.preventDefault();
var add_php_jview_display_vvvvwae = jQuery("#jform_add_php_jview_display input[type='radio']:checked").val(); var add_php_jview_display_vvvvvym = jQuery("#jform_add_php_jview_display input[type='radio']:checked").val();
vvvvwae(add_php_jview_display_vvvvwae); vvvvvym(add_php_jview_display_vvvvvym);
}); });
// #jform_add_php_jview listeners for add_php_jview_vvvvwaf function // #jform_add_php_jview listeners for add_php_jview_vvvvvyn function
jQuery('#jform_add_php_jview').on('keyup',function() jQuery('#jform_add_php_jview').on('keyup',function()
{ {
var add_php_jview_vvvvwaf = jQuery("#jform_add_php_jview input[type='radio']:checked").val(); var add_php_jview_vvvvvyn = jQuery("#jform_add_php_jview input[type='radio']:checked").val();
vvvvwaf(add_php_jview_vvvvwaf); vvvvvyn(add_php_jview_vvvvvyn);
}); });
jQuery('#adminForm').on('change', '#jform_add_php_jview',function (e) jQuery('#adminForm').on('change', '#jform_add_php_jview',function (e)
{ {
e.preventDefault(); e.preventDefault();
var add_php_jview_vvvvwaf = jQuery("#jform_add_php_jview input[type='radio']:checked").val(); var add_php_jview_vvvvvyn = jQuery("#jform_add_php_jview input[type='radio']:checked").val();
vvvvwaf(add_php_jview_vvvvwaf); vvvvvyn(add_php_jview_vvvvvyn);
}); });
// #jform_add_php_document listeners for add_php_document_vvvvwag function // #jform_add_php_document listeners for add_php_document_vvvvvyo function
jQuery('#jform_add_php_document').on('keyup',function() jQuery('#jform_add_php_document').on('keyup',function()
{ {
var add_php_document_vvvvwag = jQuery("#jform_add_php_document input[type='radio']:checked").val(); var add_php_document_vvvvvyo = jQuery("#jform_add_php_document input[type='radio']:checked").val();
vvvvwag(add_php_document_vvvvwag); vvvvvyo(add_php_document_vvvvvyo);
}); });
jQuery('#adminForm').on('change', '#jform_add_php_document',function (e) jQuery('#adminForm').on('change', '#jform_add_php_document',function (e)
{ {
e.preventDefault(); e.preventDefault();
var add_php_document_vvvvwag = jQuery("#jform_add_php_document input[type='radio']:checked").val(); var add_php_document_vvvvvyo = jQuery("#jform_add_php_document input[type='radio']:checked").val();
vvvvwag(add_php_document_vvvvwag); vvvvvyo(add_php_document_vvvvvyo);
}); });
// #jform_add_css_document listeners for add_css_document_vvvvwah function // #jform_add_css_document listeners for add_css_document_vvvvvyp function
jQuery('#jform_add_css_document').on('keyup',function() jQuery('#jform_add_css_document').on('keyup',function()
{ {
var add_css_document_vvvvwah = jQuery("#jform_add_css_document input[type='radio']:checked").val(); var add_css_document_vvvvvyp = jQuery("#jform_add_css_document input[type='radio']:checked").val();
vvvvwah(add_css_document_vvvvwah); vvvvvyp(add_css_document_vvvvvyp);
}); });
jQuery('#adminForm').on('change', '#jform_add_css_document',function (e) jQuery('#adminForm').on('change', '#jform_add_css_document',function (e)
{ {
e.preventDefault(); e.preventDefault();
var add_css_document_vvvvwah = jQuery("#jform_add_css_document input[type='radio']:checked").val(); var add_css_document_vvvvvyp = jQuery("#jform_add_css_document input[type='radio']:checked").val();
vvvvwah(add_css_document_vvvvwah); vvvvvyp(add_css_document_vvvvvyp);
}); });
// #jform_add_javascript_file listeners for add_javascript_file_vvvvwai function // #jform_add_javascript_file listeners for add_javascript_file_vvvvvyq function
jQuery('#jform_add_javascript_file').on('keyup',function() jQuery('#jform_add_javascript_file').on('keyup',function()
{ {
var add_javascript_file_vvvvwai = jQuery("#jform_add_javascript_file input[type='radio']:checked").val(); var add_javascript_file_vvvvvyq = jQuery("#jform_add_javascript_file input[type='radio']:checked").val();
vvvvwai(add_javascript_file_vvvvwai); vvvvvyq(add_javascript_file_vvvvvyq);
}); });
jQuery('#adminForm').on('change', '#jform_add_javascript_file',function (e) jQuery('#adminForm').on('change', '#jform_add_javascript_file',function (e)
{ {
e.preventDefault(); e.preventDefault();
var add_javascript_file_vvvvwai = jQuery("#jform_add_javascript_file input[type='radio']:checked").val(); var add_javascript_file_vvvvvyq = jQuery("#jform_add_javascript_file input[type='radio']:checked").val();
vvvvwai(add_javascript_file_vvvvwai); vvvvvyq(add_javascript_file_vvvvvyq);
}); });
// #jform_add_js_document listeners for add_js_document_vvvvwaj function // #jform_add_js_document listeners for add_js_document_vvvvvyr function
jQuery('#jform_add_js_document').on('keyup',function() jQuery('#jform_add_js_document').on('keyup',function()
{ {
var add_js_document_vvvvwaj = jQuery("#jform_add_js_document input[type='radio']:checked").val(); var add_js_document_vvvvvyr = jQuery("#jform_add_js_document input[type='radio']:checked").val();
vvvvwaj(add_js_document_vvvvwaj); vvvvvyr(add_js_document_vvvvvyr);
}); });
jQuery('#adminForm').on('change', '#jform_add_js_document',function (e) jQuery('#adminForm').on('change', '#jform_add_js_document',function (e)
{ {
e.preventDefault(); e.preventDefault();
var add_js_document_vvvvwaj = jQuery("#jform_add_js_document input[type='radio']:checked").val(); var add_js_document_vvvvvyr = jQuery("#jform_add_js_document input[type='radio']:checked").val();
vvvvwaj(add_js_document_vvvvwaj); vvvvvyr(add_js_document_vvvvvyr);
}); });
// #jform_add_custom_button listeners for add_custom_button_vvvvwak function // #jform_add_custom_button listeners for add_custom_button_vvvvvys function
jQuery('#jform_add_custom_button').on('keyup',function() jQuery('#jform_add_custom_button').on('keyup',function()
{ {
var add_custom_button_vvvvwak = jQuery("#jform_add_custom_button input[type='radio']:checked").val(); var add_custom_button_vvvvvys = jQuery("#jform_add_custom_button input[type='radio']:checked").val();
vvvvwak(add_custom_button_vvvvwak); vvvvvys(add_custom_button_vvvvvys);
}); });
jQuery('#adminForm').on('change', '#jform_add_custom_button',function (e) jQuery('#adminForm').on('change', '#jform_add_custom_button',function (e)
{ {
e.preventDefault(); e.preventDefault();
var add_custom_button_vvvvwak = jQuery("#jform_add_custom_button input[type='radio']:checked").val(); var add_custom_button_vvvvvys = jQuery("#jform_add_custom_button input[type='radio']:checked").val();
vvvvwak(add_custom_button_vvvvwak); vvvvvys(add_custom_button_vvvvvys);
}); });
// #jform_add_css listeners for add_css_vvvvwal function // #jform_add_css listeners for add_css_vvvvvyt function
jQuery('#jform_add_css').on('keyup',function() jQuery('#jform_add_css').on('keyup',function()
{ {
var add_css_vvvvwal = jQuery("#jform_add_css input[type='radio']:checked").val(); var add_css_vvvvvyt = jQuery("#jform_add_css input[type='radio']:checked").val();
vvvvwal(add_css_vvvvwal); vvvvvyt(add_css_vvvvvyt);
}); });
jQuery('#adminForm').on('change', '#jform_add_css',function (e) jQuery('#adminForm').on('change', '#jform_add_css',function (e)
{ {
e.preventDefault(); e.preventDefault();
var add_css_vvvvwal = jQuery("#jform_add_css input[type='radio']:checked").val(); var add_css_vvvvvyt = jQuery("#jform_add_css input[type='radio']:checked").val();
vvvvwal(add_css_vvvvwal); vvvvvyt(add_css_vvvvvyt);
}); });
// #jform_add_php_ajax listeners for add_php_ajax_vvvvwam function // #jform_add_php_ajax listeners for add_php_ajax_vvvvvyu function
jQuery('#jform_add_php_ajax').on('keyup',function() jQuery('#jform_add_php_ajax').on('keyup',function()
{ {
var add_php_ajax_vvvvwam = jQuery("#jform_add_php_ajax input[type='radio']:checked").val(); var add_php_ajax_vvvvvyu = jQuery("#jform_add_php_ajax input[type='radio']:checked").val();
vvvvwam(add_php_ajax_vvvvwam); vvvvvyu(add_php_ajax_vvvvvyu);
}); });
jQuery('#adminForm').on('change', '#jform_add_php_ajax',function (e) jQuery('#adminForm').on('change', '#jform_add_php_ajax',function (e)
{ {
e.preventDefault(); e.preventDefault();
var add_php_ajax_vvvvwam = jQuery("#jform_add_php_ajax input[type='radio']:checked").val(); var add_php_ajax_vvvvvyu = jQuery("#jform_add_php_ajax input[type='radio']:checked").val();
vvvvwam(add_php_ajax_vvvvwam); vvvvvyu(add_php_ajax_vvvvvyu);
}); });

View File

@ -115,101 +115,101 @@ defined('_JEXEC') or die;
<script type="text/javascript"> <script type="text/javascript">
// #jform_target listeners for target_vvvvwcb function // #jform_target listeners for target_vvvvwaj function
jQuery('#jform_target').on('keyup',function() jQuery('#jform_target').on('keyup',function()
{ {
var target_vvvvwcb = jQuery("#jform_target input[type='radio']:checked").val(); var target_vvvvwaj = jQuery("#jform_target input[type='radio']:checked").val();
vvvvwcb(target_vvvvwcb); vvvvwaj(target_vvvvwaj);
}); });
jQuery('#adminForm').on('change', '#jform_target',function (e) jQuery('#adminForm').on('change', '#jform_target',function (e)
{ {
e.preventDefault(); e.preventDefault();
var target_vvvvwcb = jQuery("#jform_target input[type='radio']:checked").val(); var target_vvvvwaj = jQuery("#jform_target input[type='radio']:checked").val();
vvvvwcb(target_vvvvwcb); vvvvwaj(target_vvvvwaj);
}); });
// #jform_target listeners for target_vvvvwcc function // #jform_target listeners for target_vvvvwak function
jQuery('#jform_target').on('keyup',function() jQuery('#jform_target').on('keyup',function()
{ {
var target_vvvvwcc = jQuery("#jform_target input[type='radio']:checked").val(); var target_vvvvwak = jQuery("#jform_target input[type='radio']:checked").val();
vvvvwcc(target_vvvvwcc); vvvvwak(target_vvvvwak);
}); });
jQuery('#adminForm').on('change', '#jform_target',function (e) jQuery('#adminForm').on('change', '#jform_target',function (e)
{ {
e.preventDefault(); e.preventDefault();
var target_vvvvwcc = jQuery("#jform_target input[type='radio']:checked").val(); var target_vvvvwak = jQuery("#jform_target input[type='radio']:checked").val();
vvvvwcc(target_vvvvwcc); vvvvwak(target_vvvvwak);
}); });
// #jform_target listeners for target_vvvvwcd function // #jform_target listeners for target_vvvvwal function
jQuery('#jform_target').on('keyup',function() jQuery('#jform_target').on('keyup',function()
{ {
var target_vvvvwcd = jQuery("#jform_target input[type='radio']:checked").val(); var target_vvvvwal = jQuery("#jform_target input[type='radio']:checked").val();
var type_vvvvwcd = jQuery("#jform_type input[type='radio']:checked").val(); var type_vvvvwal = jQuery("#jform_type input[type='radio']:checked").val();
vvvvwcd(target_vvvvwcd,type_vvvvwcd); vvvvwal(target_vvvvwal,type_vvvvwal);
}); });
jQuery('#adminForm').on('change', '#jform_target',function (e) jQuery('#adminForm').on('change', '#jform_target',function (e)
{ {
e.preventDefault(); e.preventDefault();
var target_vvvvwcd = jQuery("#jform_target input[type='radio']:checked").val(); var target_vvvvwal = jQuery("#jform_target input[type='radio']:checked").val();
var type_vvvvwcd = jQuery("#jform_type input[type='radio']:checked").val(); var type_vvvvwal = jQuery("#jform_type input[type='radio']:checked").val();
vvvvwcd(target_vvvvwcd,type_vvvvwcd); vvvvwal(target_vvvvwal,type_vvvvwal);
}); });
// #jform_type listeners for type_vvvvwcd function // #jform_type listeners for type_vvvvwal function
jQuery('#jform_type').on('keyup',function() jQuery('#jform_type').on('keyup',function()
{ {
var target_vvvvwcd = jQuery("#jform_target input[type='radio']:checked").val(); var target_vvvvwal = jQuery("#jform_target input[type='radio']:checked").val();
var type_vvvvwcd = jQuery("#jform_type input[type='radio']:checked").val(); var type_vvvvwal = jQuery("#jform_type input[type='radio']:checked").val();
vvvvwcd(target_vvvvwcd,type_vvvvwcd); vvvvwal(target_vvvvwal,type_vvvvwal);
}); });
jQuery('#adminForm').on('change', '#jform_type',function (e) jQuery('#adminForm').on('change', '#jform_type',function (e)
{ {
e.preventDefault(); e.preventDefault();
var target_vvvvwcd = jQuery("#jform_target input[type='radio']:checked").val(); var target_vvvvwal = jQuery("#jform_target input[type='radio']:checked").val();
var type_vvvvwcd = jQuery("#jform_type input[type='radio']:checked").val(); var type_vvvvwal = jQuery("#jform_type input[type='radio']:checked").val();
vvvvwcd(target_vvvvwcd,type_vvvvwcd); vvvvwal(target_vvvvwal,type_vvvvwal);
}); });
// #jform_type listeners for type_vvvvwce function // #jform_type listeners for type_vvvvwam function
jQuery('#jform_type').on('keyup',function() jQuery('#jform_type').on('keyup',function()
{ {
var type_vvvvwce = jQuery("#jform_type input[type='radio']:checked").val(); var type_vvvvwam = jQuery("#jform_type input[type='radio']:checked").val();
var target_vvvvwce = jQuery("#jform_target input[type='radio']:checked").val(); var target_vvvvwam = jQuery("#jform_target input[type='radio']:checked").val();
vvvvwce(type_vvvvwce,target_vvvvwce); vvvvwam(type_vvvvwam,target_vvvvwam);
}); });
jQuery('#adminForm').on('change', '#jform_type',function (e) jQuery('#adminForm').on('change', '#jform_type',function (e)
{ {
e.preventDefault(); e.preventDefault();
var type_vvvvwce = jQuery("#jform_type input[type='radio']:checked").val(); var type_vvvvwam = jQuery("#jform_type input[type='radio']:checked").val();
var target_vvvvwce = jQuery("#jform_target input[type='radio']:checked").val(); var target_vvvvwam = jQuery("#jform_target input[type='radio']:checked").val();
vvvvwce(type_vvvvwce,target_vvvvwce); vvvvwam(type_vvvvwam,target_vvvvwam);
}); });
// #jform_target listeners for target_vvvvwce function // #jform_target listeners for target_vvvvwam function
jQuery('#jform_target').on('keyup',function() jQuery('#jform_target').on('keyup',function()
{ {
var type_vvvvwce = jQuery("#jform_type input[type='radio']:checked").val(); var type_vvvvwam = jQuery("#jform_type input[type='radio']:checked").val();
var target_vvvvwce = jQuery("#jform_target input[type='radio']:checked").val(); var target_vvvvwam = jQuery("#jform_target input[type='radio']:checked").val();
vvvvwce(type_vvvvwce,target_vvvvwce); vvvvwam(type_vvvvwam,target_vvvvwam);
}); });
jQuery('#adminForm').on('change', '#jform_target',function (e) jQuery('#adminForm').on('change', '#jform_target',function (e)
{ {
e.preventDefault(); e.preventDefault();
var type_vvvvwce = jQuery("#jform_type input[type='radio']:checked").val(); var type_vvvvwam = jQuery("#jform_type input[type='radio']:checked").val();
var target_vvvvwce = jQuery("#jform_target input[type='radio']:checked").val(); var target_vvvvwam = jQuery("#jform_target input[type='radio']:checked").val();
vvvvwce(type_vvvvwce,target_vvvvwce); vvvvwam(type_vvvvwam,target_vvvvwam);
}); });

View File

@ -158,485 +158,485 @@ defined('_JEXEC') or die;
<script type="text/javascript"> <script type="text/javascript">
// #jform_gettype listeners for gettype_vvvvwba function // #jform_gettype listeners for gettype_vvvvvzi function
jQuery('#jform_gettype').on('keyup',function() jQuery('#jform_gettype').on('keyup',function()
{ {
var gettype_vvvvwba = jQuery("#jform_gettype").val(); var gettype_vvvvvzi = jQuery("#jform_gettype").val();
vvvvwba(gettype_vvvvwba); vvvvvzi(gettype_vvvvvzi);
}); });
jQuery('#adminForm').on('change', '#jform_gettype',function (e) jQuery('#adminForm').on('change', '#jform_gettype',function (e)
{ {
e.preventDefault(); e.preventDefault();
var gettype_vvvvwba = jQuery("#jform_gettype").val(); var gettype_vvvvvzi = jQuery("#jform_gettype").val();
vvvvwba(gettype_vvvvwba); vvvvvzi(gettype_vvvvvzi);
}); });
// #jform_main_source listeners for main_source_vvvvwbb function // #jform_main_source listeners for main_source_vvvvvzj function
jQuery('#jform_main_source').on('keyup',function() jQuery('#jform_main_source').on('keyup',function()
{ {
var main_source_vvvvwbb = jQuery("#jform_main_source").val(); var main_source_vvvvvzj = jQuery("#jform_main_source").val();
vvvvwbb(main_source_vvvvwbb); vvvvvzj(main_source_vvvvvzj);
}); });
jQuery('#adminForm').on('change', '#jform_main_source',function (e) jQuery('#adminForm').on('change', '#jform_main_source',function (e)
{ {
e.preventDefault(); e.preventDefault();
var main_source_vvvvwbb = jQuery("#jform_main_source").val(); var main_source_vvvvvzj = jQuery("#jform_main_source").val();
vvvvwbb(main_source_vvvvwbb); vvvvvzj(main_source_vvvvvzj);
}); });
// #jform_main_source listeners for main_source_vvvvwbc function // #jform_main_source listeners for main_source_vvvvvzk function
jQuery('#jform_main_source').on('keyup',function() jQuery('#jform_main_source').on('keyup',function()
{ {
var main_source_vvvvwbc = jQuery("#jform_main_source").val(); var main_source_vvvvvzk = jQuery("#jform_main_source").val();
vvvvwbc(main_source_vvvvwbc); vvvvvzk(main_source_vvvvvzk);
}); });
jQuery('#adminForm').on('change', '#jform_main_source',function (e) jQuery('#adminForm').on('change', '#jform_main_source',function (e)
{ {
e.preventDefault(); e.preventDefault();
var main_source_vvvvwbc = jQuery("#jform_main_source").val(); var main_source_vvvvvzk = jQuery("#jform_main_source").val();
vvvvwbc(main_source_vvvvwbc); vvvvvzk(main_source_vvvvvzk);
}); });
// #jform_main_source listeners for main_source_vvvvwbd function // #jform_main_source listeners for main_source_vvvvvzl function
jQuery('#jform_main_source').on('keyup',function() jQuery('#jform_main_source').on('keyup',function()
{ {
var main_source_vvvvwbd = jQuery("#jform_main_source").val(); var main_source_vvvvvzl = jQuery("#jform_main_source").val();
vvvvwbd(main_source_vvvvwbd); vvvvvzl(main_source_vvvvvzl);
}); });
jQuery('#adminForm').on('change', '#jform_main_source',function (e) jQuery('#adminForm').on('change', '#jform_main_source',function (e)
{ {
e.preventDefault(); e.preventDefault();
var main_source_vvvvwbd = jQuery("#jform_main_source").val(); var main_source_vvvvvzl = jQuery("#jform_main_source").val();
vvvvwbd(main_source_vvvvwbd); vvvvvzl(main_source_vvvvvzl);
}); });
// #jform_main_source listeners for main_source_vvvvwbe function // #jform_main_source listeners for main_source_vvvvvzm function
jQuery('#jform_main_source').on('keyup',function() jQuery('#jform_main_source').on('keyup',function()
{ {
var main_source_vvvvwbe = jQuery("#jform_main_source").val(); var main_source_vvvvvzm = jQuery("#jform_main_source").val();
vvvvwbe(main_source_vvvvwbe); vvvvvzm(main_source_vvvvvzm);
}); });
jQuery('#adminForm').on('change', '#jform_main_source',function (e) jQuery('#adminForm').on('change', '#jform_main_source',function (e)
{ {
e.preventDefault(); e.preventDefault();
var main_source_vvvvwbe = jQuery("#jform_main_source").val(); var main_source_vvvvvzm = jQuery("#jform_main_source").val();
vvvvwbe(main_source_vvvvwbe); vvvvvzm(main_source_vvvvvzm);
}); });
// #jform_main_source listeners for main_source_vvvvwbf function // #jform_main_source listeners for main_source_vvvvvzn function
jQuery('#jform_main_source').on('keyup',function() jQuery('#jform_main_source').on('keyup',function()
{ {
var main_source_vvvvwbf = jQuery("#jform_main_source").val(); var main_source_vvvvvzn = jQuery("#jform_main_source").val();
vvvvwbf(main_source_vvvvwbf); vvvvvzn(main_source_vvvvvzn);
}); });
jQuery('#adminForm').on('change', '#jform_main_source',function (e) jQuery('#adminForm').on('change', '#jform_main_source',function (e)
{ {
e.preventDefault(); e.preventDefault();
var main_source_vvvvwbf = jQuery("#jform_main_source").val(); var main_source_vvvvvzn = jQuery("#jform_main_source").val();
vvvvwbf(main_source_vvvvwbf); vvvvvzn(main_source_vvvvvzn);
}); });
// #jform_addcalculation listeners for addcalculation_vvvvwbg function // #jform_addcalculation listeners for addcalculation_vvvvvzo function
jQuery('#jform_addcalculation').on('keyup',function() jQuery('#jform_addcalculation').on('keyup',function()
{ {
var addcalculation_vvvvwbg = jQuery("#jform_addcalculation input[type='radio']:checked").val(); var addcalculation_vvvvvzo = jQuery("#jform_addcalculation input[type='radio']:checked").val();
vvvvwbg(addcalculation_vvvvwbg); vvvvvzo(addcalculation_vvvvvzo);
}); });
jQuery('#adminForm').on('change', '#jform_addcalculation',function (e) jQuery('#adminForm').on('change', '#jform_addcalculation',function (e)
{ {
e.preventDefault(); e.preventDefault();
var addcalculation_vvvvwbg = jQuery("#jform_addcalculation input[type='radio']:checked").val(); var addcalculation_vvvvvzo = jQuery("#jform_addcalculation input[type='radio']:checked").val();
vvvvwbg(addcalculation_vvvvwbg); vvvvvzo(addcalculation_vvvvvzo);
}); });
// #jform_addcalculation listeners for addcalculation_vvvvwbh function // #jform_addcalculation listeners for addcalculation_vvvvvzp function
jQuery('#jform_addcalculation').on('keyup',function() jQuery('#jform_addcalculation').on('keyup',function()
{ {
var addcalculation_vvvvwbh = jQuery("#jform_addcalculation input[type='radio']:checked").val(); var addcalculation_vvvvvzp = jQuery("#jform_addcalculation input[type='radio']:checked").val();
var gettype_vvvvwbh = jQuery("#jform_gettype").val(); var gettype_vvvvvzp = jQuery("#jform_gettype").val();
vvvvwbh(addcalculation_vvvvwbh,gettype_vvvvwbh); vvvvvzp(addcalculation_vvvvvzp,gettype_vvvvvzp);
}); });
jQuery('#adminForm').on('change', '#jform_addcalculation',function (e) jQuery('#adminForm').on('change', '#jform_addcalculation',function (e)
{ {
e.preventDefault(); e.preventDefault();
var addcalculation_vvvvwbh = jQuery("#jform_addcalculation input[type='radio']:checked").val(); var addcalculation_vvvvvzp = jQuery("#jform_addcalculation input[type='radio']:checked").val();
var gettype_vvvvwbh = jQuery("#jform_gettype").val(); var gettype_vvvvvzp = jQuery("#jform_gettype").val();
vvvvwbh(addcalculation_vvvvwbh,gettype_vvvvwbh); vvvvvzp(addcalculation_vvvvvzp,gettype_vvvvvzp);
}); });
// #jform_gettype listeners for gettype_vvvvwbh function // #jform_gettype listeners for gettype_vvvvvzp function
jQuery('#jform_gettype').on('keyup',function() jQuery('#jform_gettype').on('keyup',function()
{ {
var addcalculation_vvvvwbh = jQuery("#jform_addcalculation input[type='radio']:checked").val(); var addcalculation_vvvvvzp = jQuery("#jform_addcalculation input[type='radio']:checked").val();
var gettype_vvvvwbh = jQuery("#jform_gettype").val(); var gettype_vvvvvzp = jQuery("#jform_gettype").val();
vvvvwbh(addcalculation_vvvvwbh,gettype_vvvvwbh); vvvvvzp(addcalculation_vvvvvzp,gettype_vvvvvzp);
}); });
jQuery('#adminForm').on('change', '#jform_gettype',function (e) jQuery('#adminForm').on('change', '#jform_gettype',function (e)
{ {
e.preventDefault(); e.preventDefault();
var addcalculation_vvvvwbh = jQuery("#jform_addcalculation input[type='radio']:checked").val(); var addcalculation_vvvvvzp = jQuery("#jform_addcalculation input[type='radio']:checked").val();
var gettype_vvvvwbh = jQuery("#jform_gettype").val(); var gettype_vvvvvzp = jQuery("#jform_gettype").val();
vvvvwbh(addcalculation_vvvvwbh,gettype_vvvvwbh); vvvvvzp(addcalculation_vvvvvzp,gettype_vvvvvzp);
}); });
// #jform_addcalculation listeners for addcalculation_vvvvwbi function // #jform_addcalculation listeners for addcalculation_vvvvvzq function
jQuery('#jform_addcalculation').on('keyup',function() jQuery('#jform_addcalculation').on('keyup',function()
{ {
var addcalculation_vvvvwbi = jQuery("#jform_addcalculation input[type='radio']:checked").val(); var addcalculation_vvvvvzq = jQuery("#jform_addcalculation input[type='radio']:checked").val();
var gettype_vvvvwbi = jQuery("#jform_gettype").val(); var gettype_vvvvvzq = jQuery("#jform_gettype").val();
vvvvwbi(addcalculation_vvvvwbi,gettype_vvvvwbi); vvvvvzq(addcalculation_vvvvvzq,gettype_vvvvvzq);
}); });
jQuery('#adminForm').on('change', '#jform_addcalculation',function (e) jQuery('#adminForm').on('change', '#jform_addcalculation',function (e)
{ {
e.preventDefault(); e.preventDefault();
var addcalculation_vvvvwbi = jQuery("#jform_addcalculation input[type='radio']:checked").val(); var addcalculation_vvvvvzq = jQuery("#jform_addcalculation input[type='radio']:checked").val();
var gettype_vvvvwbi = jQuery("#jform_gettype").val(); var gettype_vvvvvzq = jQuery("#jform_gettype").val();
vvvvwbi(addcalculation_vvvvwbi,gettype_vvvvwbi); vvvvvzq(addcalculation_vvvvvzq,gettype_vvvvvzq);
}); });
// #jform_gettype listeners for gettype_vvvvwbi function // #jform_gettype listeners for gettype_vvvvvzq function
jQuery('#jform_gettype').on('keyup',function() jQuery('#jform_gettype').on('keyup',function()
{ {
var addcalculation_vvvvwbi = jQuery("#jform_addcalculation input[type='radio']:checked").val(); var addcalculation_vvvvvzq = jQuery("#jform_addcalculation input[type='radio']:checked").val();
var gettype_vvvvwbi = jQuery("#jform_gettype").val(); var gettype_vvvvvzq = jQuery("#jform_gettype").val();
vvvvwbi(addcalculation_vvvvwbi,gettype_vvvvwbi); vvvvvzq(addcalculation_vvvvvzq,gettype_vvvvvzq);
}); });
jQuery('#adminForm').on('change', '#jform_gettype',function (e) jQuery('#adminForm').on('change', '#jform_gettype',function (e)
{ {
e.preventDefault(); e.preventDefault();
var addcalculation_vvvvwbi = jQuery("#jform_addcalculation input[type='radio']:checked").val(); var addcalculation_vvvvvzq = jQuery("#jform_addcalculation input[type='radio']:checked").val();
var gettype_vvvvwbi = jQuery("#jform_gettype").val(); var gettype_vvvvvzq = jQuery("#jform_gettype").val();
vvvvwbi(addcalculation_vvvvwbi,gettype_vvvvwbi); vvvvvzq(addcalculation_vvvvvzq,gettype_vvvvvzq);
}); });
// #jform_main_source listeners for main_source_vvvvwbl function // #jform_main_source listeners for main_source_vvvvvzt function
jQuery('#jform_main_source').on('keyup',function() jQuery('#jform_main_source').on('keyup',function()
{ {
var main_source_vvvvwbl = jQuery("#jform_main_source").val(); var main_source_vvvvvzt = jQuery("#jform_main_source").val();
vvvvwbl(main_source_vvvvwbl); vvvvvzt(main_source_vvvvvzt);
}); });
jQuery('#adminForm').on('change', '#jform_main_source',function (e) jQuery('#adminForm').on('change', '#jform_main_source',function (e)
{ {
e.preventDefault(); e.preventDefault();
var main_source_vvvvwbl = jQuery("#jform_main_source").val(); var main_source_vvvvvzt = jQuery("#jform_main_source").val();
vvvvwbl(main_source_vvvvwbl); vvvvvzt(main_source_vvvvvzt);
}); });
// #jform_main_source listeners for main_source_vvvvwbm function // #jform_main_source listeners for main_source_vvvvvzu function
jQuery('#jform_main_source').on('keyup',function() jQuery('#jform_main_source').on('keyup',function()
{ {
var main_source_vvvvwbm = jQuery("#jform_main_source").val(); var main_source_vvvvvzu = jQuery("#jform_main_source").val();
vvvvwbm(main_source_vvvvwbm); vvvvvzu(main_source_vvvvvzu);
}); });
jQuery('#adminForm').on('change', '#jform_main_source',function (e) jQuery('#adminForm').on('change', '#jform_main_source',function (e)
{ {
e.preventDefault(); e.preventDefault();
var main_source_vvvvwbm = jQuery("#jform_main_source").val(); var main_source_vvvvvzu = jQuery("#jform_main_source").val();
vvvvwbm(main_source_vvvvwbm); vvvvvzu(main_source_vvvvvzu);
}); });
// #jform_add_php_before_getitem listeners for add_php_before_getitem_vvvvwbn function // #jform_add_php_before_getitem listeners for add_php_before_getitem_vvvvvzv function
jQuery('#jform_add_php_before_getitem').on('keyup',function() jQuery('#jform_add_php_before_getitem').on('keyup',function()
{ {
var add_php_before_getitem_vvvvwbn = jQuery("#jform_add_php_before_getitem input[type='radio']:checked").val(); var add_php_before_getitem_vvvvvzv = jQuery("#jform_add_php_before_getitem input[type='radio']:checked").val();
var gettype_vvvvwbn = jQuery("#jform_gettype").val(); var gettype_vvvvvzv = jQuery("#jform_gettype").val();
vvvvwbn(add_php_before_getitem_vvvvwbn,gettype_vvvvwbn); vvvvvzv(add_php_before_getitem_vvvvvzv,gettype_vvvvvzv);
}); });
jQuery('#adminForm').on('change', '#jform_add_php_before_getitem',function (e) jQuery('#adminForm').on('change', '#jform_add_php_before_getitem',function (e)
{ {
e.preventDefault(); e.preventDefault();
var add_php_before_getitem_vvvvwbn = jQuery("#jform_add_php_before_getitem input[type='radio']:checked").val(); var add_php_before_getitem_vvvvvzv = jQuery("#jform_add_php_before_getitem input[type='radio']:checked").val();
var gettype_vvvvwbn = jQuery("#jform_gettype").val(); var gettype_vvvvvzv = jQuery("#jform_gettype").val();
vvvvwbn(add_php_before_getitem_vvvvwbn,gettype_vvvvwbn); vvvvvzv(add_php_before_getitem_vvvvvzv,gettype_vvvvvzv);
}); });
// #jform_gettype listeners for gettype_vvvvwbn function // #jform_gettype listeners for gettype_vvvvvzv function
jQuery('#jform_gettype').on('keyup',function() jQuery('#jform_gettype').on('keyup',function()
{ {
var add_php_before_getitem_vvvvwbn = jQuery("#jform_add_php_before_getitem input[type='radio']:checked").val(); var add_php_before_getitem_vvvvvzv = jQuery("#jform_add_php_before_getitem input[type='radio']:checked").val();
var gettype_vvvvwbn = jQuery("#jform_gettype").val(); var gettype_vvvvvzv = jQuery("#jform_gettype").val();
vvvvwbn(add_php_before_getitem_vvvvwbn,gettype_vvvvwbn); vvvvvzv(add_php_before_getitem_vvvvvzv,gettype_vvvvvzv);
}); });
jQuery('#adminForm').on('change', '#jform_gettype',function (e) jQuery('#adminForm').on('change', '#jform_gettype',function (e)
{ {
e.preventDefault(); e.preventDefault();
var add_php_before_getitem_vvvvwbn = jQuery("#jform_add_php_before_getitem input[type='radio']:checked").val(); var add_php_before_getitem_vvvvvzv = jQuery("#jform_add_php_before_getitem input[type='radio']:checked").val();
var gettype_vvvvwbn = jQuery("#jform_gettype").val(); var gettype_vvvvvzv = jQuery("#jform_gettype").val();
vvvvwbn(add_php_before_getitem_vvvvwbn,gettype_vvvvwbn); vvvvvzv(add_php_before_getitem_vvvvvzv,gettype_vvvvvzv);
}); });
// #jform_add_php_after_getitem listeners for add_php_after_getitem_vvvvwbo function // #jform_add_php_after_getitem listeners for add_php_after_getitem_vvvvvzw function
jQuery('#jform_add_php_after_getitem').on('keyup',function() jQuery('#jform_add_php_after_getitem').on('keyup',function()
{ {
var add_php_after_getitem_vvvvwbo = jQuery("#jform_add_php_after_getitem input[type='radio']:checked").val(); var add_php_after_getitem_vvvvvzw = jQuery("#jform_add_php_after_getitem input[type='radio']:checked").val();
var gettype_vvvvwbo = jQuery("#jform_gettype").val(); var gettype_vvvvvzw = jQuery("#jform_gettype").val();
vvvvwbo(add_php_after_getitem_vvvvwbo,gettype_vvvvwbo); vvvvvzw(add_php_after_getitem_vvvvvzw,gettype_vvvvvzw);
}); });
jQuery('#adminForm').on('change', '#jform_add_php_after_getitem',function (e) jQuery('#adminForm').on('change', '#jform_add_php_after_getitem',function (e)
{ {
e.preventDefault(); e.preventDefault();
var add_php_after_getitem_vvvvwbo = jQuery("#jform_add_php_after_getitem input[type='radio']:checked").val(); var add_php_after_getitem_vvvvvzw = jQuery("#jform_add_php_after_getitem input[type='radio']:checked").val();
var gettype_vvvvwbo = jQuery("#jform_gettype").val(); var gettype_vvvvvzw = jQuery("#jform_gettype").val();
vvvvwbo(add_php_after_getitem_vvvvwbo,gettype_vvvvwbo); vvvvvzw(add_php_after_getitem_vvvvvzw,gettype_vvvvvzw);
}); });
// #jform_gettype listeners for gettype_vvvvwbo function // #jform_gettype listeners for gettype_vvvvvzw function
jQuery('#jform_gettype').on('keyup',function() jQuery('#jform_gettype').on('keyup',function()
{ {
var add_php_after_getitem_vvvvwbo = jQuery("#jform_add_php_after_getitem input[type='radio']:checked").val(); var add_php_after_getitem_vvvvvzw = jQuery("#jform_add_php_after_getitem input[type='radio']:checked").val();
var gettype_vvvvwbo = jQuery("#jform_gettype").val(); var gettype_vvvvvzw = jQuery("#jform_gettype").val();
vvvvwbo(add_php_after_getitem_vvvvwbo,gettype_vvvvwbo); vvvvvzw(add_php_after_getitem_vvvvvzw,gettype_vvvvvzw);
}); });
jQuery('#adminForm').on('change', '#jform_gettype',function (e) jQuery('#adminForm').on('change', '#jform_gettype',function (e)
{ {
e.preventDefault(); e.preventDefault();
var add_php_after_getitem_vvvvwbo = jQuery("#jform_add_php_after_getitem input[type='radio']:checked").val(); var add_php_after_getitem_vvvvvzw = jQuery("#jform_add_php_after_getitem input[type='radio']:checked").val();
var gettype_vvvvwbo = jQuery("#jform_gettype").val(); var gettype_vvvvvzw = jQuery("#jform_gettype").val();
vvvvwbo(add_php_after_getitem_vvvvwbo,gettype_vvvvwbo); vvvvvzw(add_php_after_getitem_vvvvvzw,gettype_vvvvvzw);
}); });
// #jform_gettype listeners for gettype_vvvvwbq function // #jform_gettype listeners for gettype_vvvvvzy function
jQuery('#jform_gettype').on('keyup',function() jQuery('#jform_gettype').on('keyup',function()
{ {
var gettype_vvvvwbq = jQuery("#jform_gettype").val(); var gettype_vvvvvzy = jQuery("#jform_gettype").val();
vvvvwbq(gettype_vvvvwbq); vvvvvzy(gettype_vvvvvzy);
}); });
jQuery('#adminForm').on('change', '#jform_gettype',function (e) jQuery('#adminForm').on('change', '#jform_gettype',function (e)
{ {
e.preventDefault(); e.preventDefault();
var gettype_vvvvwbq = jQuery("#jform_gettype").val(); var gettype_vvvvvzy = jQuery("#jform_gettype").val();
vvvvwbq(gettype_vvvvwbq); vvvvvzy(gettype_vvvvvzy);
}); });
// #jform_add_php_getlistquery listeners for add_php_getlistquery_vvvvwbr function // #jform_add_php_getlistquery listeners for add_php_getlistquery_vvvvvzz function
jQuery('#jform_add_php_getlistquery').on('keyup',function() jQuery('#jform_add_php_getlistquery').on('keyup',function()
{ {
var add_php_getlistquery_vvvvwbr = jQuery("#jform_add_php_getlistquery input[type='radio']:checked").val(); var add_php_getlistquery_vvvvvzz = jQuery("#jform_add_php_getlistquery input[type='radio']:checked").val();
var gettype_vvvvwbr = jQuery("#jform_gettype").val(); var gettype_vvvvvzz = jQuery("#jform_gettype").val();
vvvvwbr(add_php_getlistquery_vvvvwbr,gettype_vvvvwbr); vvvvvzz(add_php_getlistquery_vvvvvzz,gettype_vvvvvzz);
}); });
jQuery('#adminForm').on('change', '#jform_add_php_getlistquery',function (e) jQuery('#adminForm').on('change', '#jform_add_php_getlistquery',function (e)
{ {
e.preventDefault(); e.preventDefault();
var add_php_getlistquery_vvvvwbr = jQuery("#jform_add_php_getlistquery input[type='radio']:checked").val(); var add_php_getlistquery_vvvvvzz = jQuery("#jform_add_php_getlistquery input[type='radio']:checked").val();
var gettype_vvvvwbr = jQuery("#jform_gettype").val(); var gettype_vvvvvzz = jQuery("#jform_gettype").val();
vvvvwbr(add_php_getlistquery_vvvvwbr,gettype_vvvvwbr); vvvvvzz(add_php_getlistquery_vvvvvzz,gettype_vvvvvzz);
}); });
// #jform_gettype listeners for gettype_vvvvwbr function // #jform_gettype listeners for gettype_vvvvvzz function
jQuery('#jform_gettype').on('keyup',function() jQuery('#jform_gettype').on('keyup',function()
{ {
var add_php_getlistquery_vvvvwbr = jQuery("#jform_add_php_getlistquery input[type='radio']:checked").val(); var add_php_getlistquery_vvvvvzz = jQuery("#jform_add_php_getlistquery input[type='radio']:checked").val();
var gettype_vvvvwbr = jQuery("#jform_gettype").val(); var gettype_vvvvvzz = jQuery("#jform_gettype").val();
vvvvwbr(add_php_getlistquery_vvvvwbr,gettype_vvvvwbr); vvvvvzz(add_php_getlistquery_vvvvvzz,gettype_vvvvvzz);
}); });
jQuery('#adminForm').on('change', '#jform_gettype',function (e) jQuery('#adminForm').on('change', '#jform_gettype',function (e)
{ {
e.preventDefault(); e.preventDefault();
var add_php_getlistquery_vvvvwbr = jQuery("#jform_add_php_getlistquery input[type='radio']:checked").val(); var add_php_getlistquery_vvvvvzz = jQuery("#jform_add_php_getlistquery input[type='radio']:checked").val();
var gettype_vvvvwbr = jQuery("#jform_gettype").val(); var gettype_vvvvvzz = jQuery("#jform_gettype").val();
vvvvwbr(add_php_getlistquery_vvvvwbr,gettype_vvvvwbr); vvvvvzz(add_php_getlistquery_vvvvvzz,gettype_vvvvvzz);
}); });
// #jform_add_php_before_getitems listeners for add_php_before_getitems_vvvvwbs function // #jform_add_php_before_getitems listeners for add_php_before_getitems_vvvvwaa function
jQuery('#jform_add_php_before_getitems').on('keyup',function() jQuery('#jform_add_php_before_getitems').on('keyup',function()
{ {
var add_php_before_getitems_vvvvwbs = jQuery("#jform_add_php_before_getitems input[type='radio']:checked").val(); var add_php_before_getitems_vvvvwaa = jQuery("#jform_add_php_before_getitems input[type='radio']:checked").val();
var gettype_vvvvwbs = jQuery("#jform_gettype").val(); var gettype_vvvvwaa = jQuery("#jform_gettype").val();
vvvvwbs(add_php_before_getitems_vvvvwbs,gettype_vvvvwbs); vvvvwaa(add_php_before_getitems_vvvvwaa,gettype_vvvvwaa);
}); });
jQuery('#adminForm').on('change', '#jform_add_php_before_getitems',function (e) jQuery('#adminForm').on('change', '#jform_add_php_before_getitems',function (e)
{ {
e.preventDefault(); e.preventDefault();
var add_php_before_getitems_vvvvwbs = jQuery("#jform_add_php_before_getitems input[type='radio']:checked").val(); var add_php_before_getitems_vvvvwaa = jQuery("#jform_add_php_before_getitems input[type='radio']:checked").val();
var gettype_vvvvwbs = jQuery("#jform_gettype").val(); var gettype_vvvvwaa = jQuery("#jform_gettype").val();
vvvvwbs(add_php_before_getitems_vvvvwbs,gettype_vvvvwbs); vvvvwaa(add_php_before_getitems_vvvvwaa,gettype_vvvvwaa);
}); });
// #jform_gettype listeners for gettype_vvvvwbs function // #jform_gettype listeners for gettype_vvvvwaa function
jQuery('#jform_gettype').on('keyup',function() jQuery('#jform_gettype').on('keyup',function()
{ {
var add_php_before_getitems_vvvvwbs = jQuery("#jform_add_php_before_getitems input[type='radio']:checked").val(); var add_php_before_getitems_vvvvwaa = jQuery("#jform_add_php_before_getitems input[type='radio']:checked").val();
var gettype_vvvvwbs = jQuery("#jform_gettype").val(); var gettype_vvvvwaa = jQuery("#jform_gettype").val();
vvvvwbs(add_php_before_getitems_vvvvwbs,gettype_vvvvwbs); vvvvwaa(add_php_before_getitems_vvvvwaa,gettype_vvvvwaa);
}); });
jQuery('#adminForm').on('change', '#jform_gettype',function (e) jQuery('#adminForm').on('change', '#jform_gettype',function (e)
{ {
e.preventDefault(); e.preventDefault();
var add_php_before_getitems_vvvvwbs = jQuery("#jform_add_php_before_getitems input[type='radio']:checked").val(); var add_php_before_getitems_vvvvwaa = jQuery("#jform_add_php_before_getitems input[type='radio']:checked").val();
var gettype_vvvvwbs = jQuery("#jform_gettype").val(); var gettype_vvvvwaa = jQuery("#jform_gettype").val();
vvvvwbs(add_php_before_getitems_vvvvwbs,gettype_vvvvwbs); vvvvwaa(add_php_before_getitems_vvvvwaa,gettype_vvvvwaa);
}); });
// #jform_add_php_after_getitems listeners for add_php_after_getitems_vvvvwbt function // #jform_add_php_after_getitems listeners for add_php_after_getitems_vvvvwab function
jQuery('#jform_add_php_after_getitems').on('keyup',function() jQuery('#jform_add_php_after_getitems').on('keyup',function()
{ {
var add_php_after_getitems_vvvvwbt = jQuery("#jform_add_php_after_getitems input[type='radio']:checked").val(); var add_php_after_getitems_vvvvwab = jQuery("#jform_add_php_after_getitems input[type='radio']:checked").val();
var gettype_vvvvwbt = jQuery("#jform_gettype").val(); var gettype_vvvvwab = jQuery("#jform_gettype").val();
vvvvwbt(add_php_after_getitems_vvvvwbt,gettype_vvvvwbt); vvvvwab(add_php_after_getitems_vvvvwab,gettype_vvvvwab);
}); });
jQuery('#adminForm').on('change', '#jform_add_php_after_getitems',function (e) jQuery('#adminForm').on('change', '#jform_add_php_after_getitems',function (e)
{ {
e.preventDefault(); e.preventDefault();
var add_php_after_getitems_vvvvwbt = jQuery("#jform_add_php_after_getitems input[type='radio']:checked").val(); var add_php_after_getitems_vvvvwab = jQuery("#jform_add_php_after_getitems input[type='radio']:checked").val();
var gettype_vvvvwbt = jQuery("#jform_gettype").val(); var gettype_vvvvwab = jQuery("#jform_gettype").val();
vvvvwbt(add_php_after_getitems_vvvvwbt,gettype_vvvvwbt); vvvvwab(add_php_after_getitems_vvvvwab,gettype_vvvvwab);
}); });
// #jform_gettype listeners for gettype_vvvvwbt function // #jform_gettype listeners for gettype_vvvvwab function
jQuery('#jform_gettype').on('keyup',function() jQuery('#jform_gettype').on('keyup',function()
{ {
var add_php_after_getitems_vvvvwbt = jQuery("#jform_add_php_after_getitems input[type='radio']:checked").val(); var add_php_after_getitems_vvvvwab = jQuery("#jform_add_php_after_getitems input[type='radio']:checked").val();
var gettype_vvvvwbt = jQuery("#jform_gettype").val(); var gettype_vvvvwab = jQuery("#jform_gettype").val();
vvvvwbt(add_php_after_getitems_vvvvwbt,gettype_vvvvwbt); vvvvwab(add_php_after_getitems_vvvvwab,gettype_vvvvwab);
}); });
jQuery('#adminForm').on('change', '#jform_gettype',function (e) jQuery('#adminForm').on('change', '#jform_gettype',function (e)
{ {
e.preventDefault(); e.preventDefault();
var add_php_after_getitems_vvvvwbt = jQuery("#jform_add_php_after_getitems input[type='radio']:checked").val(); var add_php_after_getitems_vvvvwab = jQuery("#jform_add_php_after_getitems input[type='radio']:checked").val();
var gettype_vvvvwbt = jQuery("#jform_gettype").val(); var gettype_vvvvwab = jQuery("#jform_gettype").val();
vvvvwbt(add_php_after_getitems_vvvvwbt,gettype_vvvvwbt); vvvvwab(add_php_after_getitems_vvvvwab,gettype_vvvvwab);
}); });
// #jform_gettype listeners for gettype_vvvvwbv function // #jform_gettype listeners for gettype_vvvvwad function
jQuery('#jform_gettype').on('keyup',function() jQuery('#jform_gettype').on('keyup',function()
{ {
var gettype_vvvvwbv = jQuery("#jform_gettype").val(); var gettype_vvvvwad = jQuery("#jform_gettype").val();
vvvvwbv(gettype_vvvvwbv); vvvvwad(gettype_vvvvwad);
}); });
jQuery('#adminForm').on('change', '#jform_gettype',function (e) jQuery('#adminForm').on('change', '#jform_gettype',function (e)
{ {
e.preventDefault(); e.preventDefault();
var gettype_vvvvwbv = jQuery("#jform_gettype").val(); var gettype_vvvvwad = jQuery("#jform_gettype").val();
vvvvwbv(gettype_vvvvwbv); vvvvwad(gettype_vvvvwad);
}); });
// #jform_gettype listeners for gettype_vvvvwbw function // #jform_gettype listeners for gettype_vvvvwae function
jQuery('#jform_gettype').on('keyup',function() jQuery('#jform_gettype').on('keyup',function()
{ {
var gettype_vvvvwbw = jQuery("#jform_gettype").val(); var gettype_vvvvwae = jQuery("#jform_gettype").val();
vvvvwbw(gettype_vvvvwbw); vvvvwae(gettype_vvvvwae);
}); });
jQuery('#adminForm').on('change', '#jform_gettype',function (e) jQuery('#adminForm').on('change', '#jform_gettype',function (e)
{ {
e.preventDefault(); e.preventDefault();
var gettype_vvvvwbw = jQuery("#jform_gettype").val(); var gettype_vvvvwae = jQuery("#jform_gettype").val();
vvvvwbw(gettype_vvvvwbw); vvvvwae(gettype_vvvvwae);
}); });
// #jform_gettype listeners for gettype_vvvvwbx function // #jform_gettype listeners for gettype_vvvvwaf function
jQuery('#jform_gettype').on('keyup',function() jQuery('#jform_gettype').on('keyup',function()
{ {
var gettype_vvvvwbx = jQuery("#jform_gettype").val(); var gettype_vvvvwaf = jQuery("#jform_gettype").val();
vvvvwbx(gettype_vvvvwbx); vvvvwaf(gettype_vvvvwaf);
}); });
jQuery('#adminForm').on('change', '#jform_gettype',function (e) jQuery('#adminForm').on('change', '#jform_gettype',function (e)
{ {
e.preventDefault(); e.preventDefault();
var gettype_vvvvwbx = jQuery("#jform_gettype").val(); var gettype_vvvvwaf = jQuery("#jform_gettype").val();
vvvvwbx(gettype_vvvvwbx); vvvvwaf(gettype_vvvvwaf);
}); });
// #jform_gettype listeners for gettype_vvvvwby function // #jform_gettype listeners for gettype_vvvvwag function
jQuery('#jform_gettype').on('keyup',function() jQuery('#jform_gettype').on('keyup',function()
{ {
var gettype_vvvvwby = jQuery("#jform_gettype").val(); var gettype_vvvvwag = jQuery("#jform_gettype").val();
var add_php_router_parse_vvvvwby = jQuery("#jform_add_php_router_parse input[type='radio']:checked").val(); var add_php_router_parse_vvvvwag = jQuery("#jform_add_php_router_parse input[type='radio']:checked").val();
vvvvwby(gettype_vvvvwby,add_php_router_parse_vvvvwby); vvvvwag(gettype_vvvvwag,add_php_router_parse_vvvvwag);
}); });
jQuery('#adminForm').on('change', '#jform_gettype',function (e) jQuery('#adminForm').on('change', '#jform_gettype',function (e)
{ {
e.preventDefault(); e.preventDefault();
var gettype_vvvvwby = jQuery("#jform_gettype").val(); var gettype_vvvvwag = jQuery("#jform_gettype").val();
var add_php_router_parse_vvvvwby = jQuery("#jform_add_php_router_parse input[type='radio']:checked").val(); var add_php_router_parse_vvvvwag = jQuery("#jform_add_php_router_parse input[type='radio']:checked").val();
vvvvwby(gettype_vvvvwby,add_php_router_parse_vvvvwby); vvvvwag(gettype_vvvvwag,add_php_router_parse_vvvvwag);
}); });
// #jform_add_php_router_parse listeners for add_php_router_parse_vvvvwby function // #jform_add_php_router_parse listeners for add_php_router_parse_vvvvwag function
jQuery('#jform_add_php_router_parse').on('keyup',function() jQuery('#jform_add_php_router_parse').on('keyup',function()
{ {
var gettype_vvvvwby = jQuery("#jform_gettype").val(); var gettype_vvvvwag = jQuery("#jform_gettype").val();
var add_php_router_parse_vvvvwby = jQuery("#jform_add_php_router_parse input[type='radio']:checked").val(); var add_php_router_parse_vvvvwag = jQuery("#jform_add_php_router_parse input[type='radio']:checked").val();
vvvvwby(gettype_vvvvwby,add_php_router_parse_vvvvwby); vvvvwag(gettype_vvvvwag,add_php_router_parse_vvvvwag);
}); });
jQuery('#adminForm').on('change', '#jform_add_php_router_parse',function (e) jQuery('#adminForm').on('change', '#jform_add_php_router_parse',function (e)
{ {
e.preventDefault(); e.preventDefault();
var gettype_vvvvwby = jQuery("#jform_gettype").val(); var gettype_vvvvwag = jQuery("#jform_gettype").val();
var add_php_router_parse_vvvvwby = jQuery("#jform_add_php_router_parse input[type='radio']:checked").val(); var add_php_router_parse_vvvvwag = jQuery("#jform_add_php_router_parse input[type='radio']:checked").val();
vvvvwby(gettype_vvvvwby,add_php_router_parse_vvvvwby); vvvvwag(gettype_vvvvwag,add_php_router_parse_vvvvwag);
}); });
// #jform_gettype listeners for gettype_vvvvwca function // #jform_gettype listeners for gettype_vvvvwai function
jQuery('#jform_gettype').on('keyup',function() jQuery('#jform_gettype').on('keyup',function()
{ {
var gettype_vvvvwca = jQuery("#jform_gettype").val(); var gettype_vvvvwai = jQuery("#jform_gettype").val();
vvvvwca(gettype_vvvvwca); vvvvwai(gettype_vvvvwai);
}); });
jQuery('#adminForm').on('change', '#jform_gettype',function (e) jQuery('#adminForm').on('change', '#jform_gettype',function (e)
{ {
e.preventDefault(); e.preventDefault();
var gettype_vvvvwca = jQuery("#jform_gettype").val(); var gettype_vvvvwai = jQuery("#jform_gettype").val();
vvvvwca(gettype_vvvvwca); vvvvwai(gettype_vvvvwai);
}); });

View File

@ -146,172 +146,172 @@ defined('_JEXEC') or die;
<script type="text/javascript"> <script type="text/javascript">
// #jform_datalenght listeners for datalenght_vvvvwcz function // #jform_datalenght listeners for datalenght_vvvvwbh function
jQuery('#jform_datalenght').on('keyup',function() jQuery('#jform_datalenght').on('keyup',function()
{ {
var datalenght_vvvvwcz = jQuery("#jform_datalenght").val(); var datalenght_vvvvwbh = jQuery("#jform_datalenght").val();
vvvvwcz(datalenght_vvvvwcz); vvvvwbh(datalenght_vvvvwbh);
}); });
jQuery('#adminForm').on('change', '#jform_datalenght',function (e) jQuery('#adminForm').on('change', '#jform_datalenght',function (e)
{ {
e.preventDefault(); e.preventDefault();
var datalenght_vvvvwcz = jQuery("#jform_datalenght").val(); var datalenght_vvvvwbh = jQuery("#jform_datalenght").val();
vvvvwcz(datalenght_vvvvwcz); vvvvwbh(datalenght_vvvvwbh);
}); });
// #jform_datadefault listeners for datadefault_vvvvwda function // #jform_datadefault listeners for datadefault_vvvvwbi function
jQuery('#jform_datadefault').on('keyup',function() jQuery('#jform_datadefault').on('keyup',function()
{ {
var datadefault_vvvvwda = jQuery("#jform_datadefault").val(); var datadefault_vvvvwbi = jQuery("#jform_datadefault").val();
vvvvwda(datadefault_vvvvwda); vvvvwbi(datadefault_vvvvwbi);
}); });
jQuery('#adminForm').on('change', '#jform_datadefault',function (e) jQuery('#adminForm').on('change', '#jform_datadefault',function (e)
{ {
e.preventDefault(); e.preventDefault();
var datadefault_vvvvwda = jQuery("#jform_datadefault").val(); var datadefault_vvvvwbi = jQuery("#jform_datadefault").val();
vvvvwda(datadefault_vvvvwda); vvvvwbi(datadefault_vvvvwbi);
}); });
// #jform_datatype listeners for datatype_vvvvwdb function // #jform_datatype listeners for datatype_vvvvwbj function
jQuery('#jform_datatype').on('keyup',function() jQuery('#jform_datatype').on('keyup',function()
{ {
var datatype_vvvvwdb = jQuery("#jform_datatype").val(); var datatype_vvvvwbj = jQuery("#jform_datatype").val();
vvvvwdb(datatype_vvvvwdb); vvvvwbj(datatype_vvvvwbj);
}); });
jQuery('#adminForm').on('change', '#jform_datatype',function (e) jQuery('#adminForm').on('change', '#jform_datatype',function (e)
{ {
e.preventDefault(); e.preventDefault();
var datatype_vvvvwdb = jQuery("#jform_datatype").val(); var datatype_vvvvwbj = jQuery("#jform_datatype").val();
vvvvwdb(datatype_vvvvwdb); vvvvwbj(datatype_vvvvwbj);
}); });
// #jform_datatype listeners for datatype_vvvvwdc function // #jform_datatype listeners for datatype_vvvvwbk function
jQuery('#jform_datatype').on('keyup',function() jQuery('#jform_datatype').on('keyup',function()
{ {
var datatype_vvvvwdc = jQuery("#jform_datatype").val(); var datatype_vvvvwbk = jQuery("#jform_datatype").val();
vvvvwdc(datatype_vvvvwdc); vvvvwbk(datatype_vvvvwbk);
}); });
jQuery('#adminForm').on('change', '#jform_datatype',function (e) jQuery('#adminForm').on('change', '#jform_datatype',function (e)
{ {
e.preventDefault(); e.preventDefault();
var datatype_vvvvwdc = jQuery("#jform_datatype").val(); var datatype_vvvvwbk = jQuery("#jform_datatype").val();
vvvvwdc(datatype_vvvvwdc); vvvvwbk(datatype_vvvvwbk);
}); });
// #jform_store listeners for store_vvvvwdd function // #jform_store listeners for store_vvvvwbl function
jQuery('#jform_store').on('keyup',function() jQuery('#jform_store').on('keyup',function()
{ {
var store_vvvvwdd = jQuery("#jform_store").val(); var store_vvvvwbl = jQuery("#jform_store").val();
var datatype_vvvvwdd = jQuery("#jform_datatype").val(); var datatype_vvvvwbl = jQuery("#jform_datatype").val();
vvvvwdd(store_vvvvwdd,datatype_vvvvwdd); vvvvwbl(store_vvvvwbl,datatype_vvvvwbl);
}); });
jQuery('#adminForm').on('change', '#jform_store',function (e) jQuery('#adminForm').on('change', '#jform_store',function (e)
{ {
e.preventDefault(); e.preventDefault();
var store_vvvvwdd = jQuery("#jform_store").val(); var store_vvvvwbl = jQuery("#jform_store").val();
var datatype_vvvvwdd = jQuery("#jform_datatype").val(); var datatype_vvvvwbl = jQuery("#jform_datatype").val();
vvvvwdd(store_vvvvwdd,datatype_vvvvwdd); vvvvwbl(store_vvvvwbl,datatype_vvvvwbl);
}); });
// #jform_datatype listeners for datatype_vvvvwdd function // #jform_datatype listeners for datatype_vvvvwbl function
jQuery('#jform_datatype').on('keyup',function() jQuery('#jform_datatype').on('keyup',function()
{ {
var store_vvvvwdd = jQuery("#jform_store").val(); var store_vvvvwbl = jQuery("#jform_store").val();
var datatype_vvvvwdd = jQuery("#jform_datatype").val(); var datatype_vvvvwbl = jQuery("#jform_datatype").val();
vvvvwdd(store_vvvvwdd,datatype_vvvvwdd); vvvvwbl(store_vvvvwbl,datatype_vvvvwbl);
}); });
jQuery('#adminForm').on('change', '#jform_datatype',function (e) jQuery('#adminForm').on('change', '#jform_datatype',function (e)
{ {
e.preventDefault(); e.preventDefault();
var store_vvvvwdd = jQuery("#jform_store").val(); var store_vvvvwbl = jQuery("#jform_store").val();
var datatype_vvvvwdd = jQuery("#jform_datatype").val(); var datatype_vvvvwbl = jQuery("#jform_datatype").val();
vvvvwdd(store_vvvvwdd,datatype_vvvvwdd); vvvvwbl(store_vvvvwbl,datatype_vvvvwbl);
}); });
// #jform_store listeners for store_vvvvwdf function // #jform_store listeners for store_vvvvwbn function
jQuery('#jform_store').on('keyup',function() jQuery('#jform_store').on('keyup',function()
{ {
var store_vvvvwdf = jQuery("#jform_store").val(); var store_vvvvwbn = jQuery("#jform_store").val();
vvvvwdf(store_vvvvwdf); vvvvwbn(store_vvvvwbn);
}); });
jQuery('#adminForm').on('change', '#jform_store',function (e) jQuery('#adminForm').on('change', '#jform_store',function (e)
{ {
e.preventDefault(); e.preventDefault();
var store_vvvvwdf = jQuery("#jform_store").val(); var store_vvvvwbn = jQuery("#jform_store").val();
vvvvwdf(store_vvvvwdf); vvvvwbn(store_vvvvwbn);
}); });
// #jform_add_css_view listeners for add_css_view_vvvvwdg function // #jform_add_css_view listeners for add_css_view_vvvvwbo function
jQuery('#jform_add_css_view').on('keyup',function() jQuery('#jform_add_css_view').on('keyup',function()
{ {
var add_css_view_vvvvwdg = jQuery("#jform_add_css_view input[type='radio']:checked").val(); var add_css_view_vvvvwbo = jQuery("#jform_add_css_view input[type='radio']:checked").val();
vvvvwdg(add_css_view_vvvvwdg); vvvvwbo(add_css_view_vvvvwbo);
}); });
jQuery('#adminForm').on('change', '#jform_add_css_view',function (e) jQuery('#adminForm').on('change', '#jform_add_css_view',function (e)
{ {
e.preventDefault(); e.preventDefault();
var add_css_view_vvvvwdg = jQuery("#jform_add_css_view input[type='radio']:checked").val(); var add_css_view_vvvvwbo = jQuery("#jform_add_css_view input[type='radio']:checked").val();
vvvvwdg(add_css_view_vvvvwdg); vvvvwbo(add_css_view_vvvvwbo);
}); });
// #jform_add_css_views listeners for add_css_views_vvvvwdh function // #jform_add_css_views listeners for add_css_views_vvvvwbp function
jQuery('#jform_add_css_views').on('keyup',function() jQuery('#jform_add_css_views').on('keyup',function()
{ {
var add_css_views_vvvvwdh = jQuery("#jform_add_css_views input[type='radio']:checked").val(); var add_css_views_vvvvwbp = jQuery("#jform_add_css_views input[type='radio']:checked").val();
vvvvwdh(add_css_views_vvvvwdh); vvvvwbp(add_css_views_vvvvwbp);
}); });
jQuery('#adminForm').on('change', '#jform_add_css_views',function (e) jQuery('#adminForm').on('change', '#jform_add_css_views',function (e)
{ {
e.preventDefault(); e.preventDefault();
var add_css_views_vvvvwdh = jQuery("#jform_add_css_views input[type='radio']:checked").val(); var add_css_views_vvvvwbp = jQuery("#jform_add_css_views input[type='radio']:checked").val();
vvvvwdh(add_css_views_vvvvwdh); vvvvwbp(add_css_views_vvvvwbp);
}); });
// #jform_add_javascript_view_footer listeners for add_javascript_view_footer_vvvvwdi function // #jform_add_javascript_view_footer listeners for add_javascript_view_footer_vvvvwbq function
jQuery('#jform_add_javascript_view_footer').on('keyup',function() jQuery('#jform_add_javascript_view_footer').on('keyup',function()
{ {
var add_javascript_view_footer_vvvvwdi = jQuery("#jform_add_javascript_view_footer input[type='radio']:checked").val(); var add_javascript_view_footer_vvvvwbq = jQuery("#jform_add_javascript_view_footer input[type='radio']:checked").val();
vvvvwdi(add_javascript_view_footer_vvvvwdi); vvvvwbq(add_javascript_view_footer_vvvvwbq);
}); });
jQuery('#adminForm').on('change', '#jform_add_javascript_view_footer',function (e) jQuery('#adminForm').on('change', '#jform_add_javascript_view_footer',function (e)
{ {
e.preventDefault(); e.preventDefault();
var add_javascript_view_footer_vvvvwdi = jQuery("#jform_add_javascript_view_footer input[type='radio']:checked").val(); var add_javascript_view_footer_vvvvwbq = jQuery("#jform_add_javascript_view_footer input[type='radio']:checked").val();
vvvvwdi(add_javascript_view_footer_vvvvwdi); vvvvwbq(add_javascript_view_footer_vvvvwbq);
}); });
// #jform_add_javascript_views_footer listeners for add_javascript_views_footer_vvvvwdj function // #jform_add_javascript_views_footer listeners for add_javascript_views_footer_vvvvwbr function
jQuery('#jform_add_javascript_views_footer').on('keyup',function() jQuery('#jform_add_javascript_views_footer').on('keyup',function()
{ {
var add_javascript_views_footer_vvvvwdj = jQuery("#jform_add_javascript_views_footer input[type='radio']:checked").val(); var add_javascript_views_footer_vvvvwbr = jQuery("#jform_add_javascript_views_footer input[type='radio']:checked").val();
vvvvwdj(add_javascript_views_footer_vvvvwdj); vvvvwbr(add_javascript_views_footer_vvvvwbr);
}); });
jQuery('#adminForm').on('change', '#jform_add_javascript_views_footer',function (e) jQuery('#adminForm').on('change', '#jform_add_javascript_views_footer',function (e)
{ {
e.preventDefault(); e.preventDefault();
var add_javascript_views_footer_vvvvwdj = jQuery("#jform_add_javascript_views_footer input[type='radio']:checked").val(); var add_javascript_views_footer_vvvvwbr = jQuery("#jform_add_javascript_views_footer input[type='radio']:checked").val();
vvvvwdj(add_javascript_views_footer_vvvvwdj); vvvvwbr(add_javascript_views_footer_vvvvwbr);
}); });

View File

@ -135,393 +135,393 @@ defined('_JEXEC') or die;
<script type="text/javascript"> <script type="text/javascript">
// #jform_datalenght listeners for datalenght_vvvvwdk function // #jform_datalenght listeners for datalenght_vvvvwbs function
jQuery('#jform_datalenght').on('keyup',function() jQuery('#jform_datalenght').on('keyup',function()
{ {
var datalenght_vvvvwdk = jQuery("#jform_datalenght").val(); var datalenght_vvvvwbs = jQuery("#jform_datalenght").val();
var has_defaults_vvvvwdk = jQuery("#jform_has_defaults input[type='radio']:checked").val(); var has_defaults_vvvvwbs = jQuery("#jform_has_defaults input[type='radio']:checked").val();
vvvvwdk(datalenght_vvvvwdk,has_defaults_vvvvwdk); vvvvwbs(datalenght_vvvvwbs,has_defaults_vvvvwbs);
}); });
jQuery('#adminForm').on('change', '#jform_datalenght',function (e) jQuery('#adminForm').on('change', '#jform_datalenght',function (e)
{ {
e.preventDefault(); e.preventDefault();
var datalenght_vvvvwdk = jQuery("#jform_datalenght").val(); var datalenght_vvvvwbs = jQuery("#jform_datalenght").val();
var has_defaults_vvvvwdk = jQuery("#jform_has_defaults input[type='radio']:checked").val(); var has_defaults_vvvvwbs = jQuery("#jform_has_defaults input[type='radio']:checked").val();
vvvvwdk(datalenght_vvvvwdk,has_defaults_vvvvwdk); vvvvwbs(datalenght_vvvvwbs,has_defaults_vvvvwbs);
}); });
// #jform_has_defaults listeners for has_defaults_vvvvwdk function // #jform_has_defaults listeners for has_defaults_vvvvwbs function
jQuery('#jform_has_defaults').on('keyup',function() jQuery('#jform_has_defaults').on('keyup',function()
{ {
var datalenght_vvvvwdk = jQuery("#jform_datalenght").val(); var datalenght_vvvvwbs = jQuery("#jform_datalenght").val();
var has_defaults_vvvvwdk = jQuery("#jform_has_defaults input[type='radio']:checked").val(); var has_defaults_vvvvwbs = jQuery("#jform_has_defaults input[type='radio']:checked").val();
vvvvwdk(datalenght_vvvvwdk,has_defaults_vvvvwdk); vvvvwbs(datalenght_vvvvwbs,has_defaults_vvvvwbs);
}); });
jQuery('#adminForm').on('change', '#jform_has_defaults',function (e) jQuery('#adminForm').on('change', '#jform_has_defaults',function (e)
{ {
e.preventDefault(); e.preventDefault();
var datalenght_vvvvwdk = jQuery("#jform_datalenght").val(); var datalenght_vvvvwbs = jQuery("#jform_datalenght").val();
var has_defaults_vvvvwdk = jQuery("#jform_has_defaults input[type='radio']:checked").val(); var has_defaults_vvvvwbs = jQuery("#jform_has_defaults input[type='radio']:checked").val();
vvvvwdk(datalenght_vvvvwdk,has_defaults_vvvvwdk); vvvvwbs(datalenght_vvvvwbs,has_defaults_vvvvwbs);
}); });
// #jform_datadefault listeners for datadefault_vvvvwdm function // #jform_datadefault listeners for datadefault_vvvvwbu function
jQuery('#jform_datadefault').on('keyup',function() jQuery('#jform_datadefault').on('keyup',function()
{ {
var datadefault_vvvvwdm = jQuery("#jform_datadefault").val(); var datadefault_vvvvwbu = jQuery("#jform_datadefault").val();
var has_defaults_vvvvwdm = jQuery("#jform_has_defaults input[type='radio']:checked").val(); var has_defaults_vvvvwbu = jQuery("#jform_has_defaults input[type='radio']:checked").val();
vvvvwdm(datadefault_vvvvwdm,has_defaults_vvvvwdm); vvvvwbu(datadefault_vvvvwbu,has_defaults_vvvvwbu);
}); });
jQuery('#adminForm').on('change', '#jform_datadefault',function (e) jQuery('#adminForm').on('change', '#jform_datadefault',function (e)
{ {
e.preventDefault(); e.preventDefault();
var datadefault_vvvvwdm = jQuery("#jform_datadefault").val(); var datadefault_vvvvwbu = jQuery("#jform_datadefault").val();
var has_defaults_vvvvwdm = jQuery("#jform_has_defaults input[type='radio']:checked").val(); var has_defaults_vvvvwbu = jQuery("#jform_has_defaults input[type='radio']:checked").val();
vvvvwdm(datadefault_vvvvwdm,has_defaults_vvvvwdm); vvvvwbu(datadefault_vvvvwbu,has_defaults_vvvvwbu);
}); });
// #jform_has_defaults listeners for has_defaults_vvvvwdm function // #jform_has_defaults listeners for has_defaults_vvvvwbu function
jQuery('#jform_has_defaults').on('keyup',function() jQuery('#jform_has_defaults').on('keyup',function()
{ {
var datadefault_vvvvwdm = jQuery("#jform_datadefault").val(); var datadefault_vvvvwbu = jQuery("#jform_datadefault").val();
var has_defaults_vvvvwdm = jQuery("#jform_has_defaults input[type='radio']:checked").val(); var has_defaults_vvvvwbu = jQuery("#jform_has_defaults input[type='radio']:checked").val();
vvvvwdm(datadefault_vvvvwdm,has_defaults_vvvvwdm); vvvvwbu(datadefault_vvvvwbu,has_defaults_vvvvwbu);
}); });
jQuery('#adminForm').on('change', '#jform_has_defaults',function (e) jQuery('#adminForm').on('change', '#jform_has_defaults',function (e)
{ {
e.preventDefault(); e.preventDefault();
var datadefault_vvvvwdm = jQuery("#jform_datadefault").val(); var datadefault_vvvvwbu = jQuery("#jform_datadefault").val();
var has_defaults_vvvvwdm = jQuery("#jform_has_defaults input[type='radio']:checked").val(); var has_defaults_vvvvwbu = jQuery("#jform_has_defaults input[type='radio']:checked").val();
vvvvwdm(datadefault_vvvvwdm,has_defaults_vvvvwdm); vvvvwbu(datadefault_vvvvwbu,has_defaults_vvvvwbu);
}); });
// #jform_datatype listeners for datatype_vvvvwdo function // #jform_datatype listeners for datatype_vvvvwbw function
jQuery('#jform_datatype').on('keyup',function() jQuery('#jform_datatype').on('keyup',function()
{ {
var datatype_vvvvwdo = jQuery("#jform_datatype").val(); var datatype_vvvvwbw = jQuery("#jform_datatype").val();
var has_defaults_vvvvwdo = jQuery("#jform_has_defaults input[type='radio']:checked").val(); var has_defaults_vvvvwbw = jQuery("#jform_has_defaults input[type='radio']:checked").val();
vvvvwdo(datatype_vvvvwdo,has_defaults_vvvvwdo); vvvvwbw(datatype_vvvvwbw,has_defaults_vvvvwbw);
}); });
jQuery('#adminForm').on('change', '#jform_datatype',function (e) jQuery('#adminForm').on('change', '#jform_datatype',function (e)
{ {
e.preventDefault(); e.preventDefault();
var datatype_vvvvwdo = jQuery("#jform_datatype").val(); var datatype_vvvvwbw = jQuery("#jform_datatype").val();
var has_defaults_vvvvwdo = jQuery("#jform_has_defaults input[type='radio']:checked").val(); var has_defaults_vvvvwbw = jQuery("#jform_has_defaults input[type='radio']:checked").val();
vvvvwdo(datatype_vvvvwdo,has_defaults_vvvvwdo); vvvvwbw(datatype_vvvvwbw,has_defaults_vvvvwbw);
}); });
// #jform_has_defaults listeners for has_defaults_vvvvwdo function // #jform_has_defaults listeners for has_defaults_vvvvwbw function
jQuery('#jform_has_defaults').on('keyup',function() jQuery('#jform_has_defaults').on('keyup',function()
{ {
var datatype_vvvvwdo = jQuery("#jform_datatype").val(); var datatype_vvvvwbw = jQuery("#jform_datatype").val();
var has_defaults_vvvvwdo = jQuery("#jform_has_defaults input[type='radio']:checked").val(); var has_defaults_vvvvwbw = jQuery("#jform_has_defaults input[type='radio']:checked").val();
vvvvwdo(datatype_vvvvwdo,has_defaults_vvvvwdo); vvvvwbw(datatype_vvvvwbw,has_defaults_vvvvwbw);
}); });
jQuery('#adminForm').on('change', '#jform_has_defaults',function (e) jQuery('#adminForm').on('change', '#jform_has_defaults',function (e)
{ {
e.preventDefault(); e.preventDefault();
var datatype_vvvvwdo = jQuery("#jform_datatype").val(); var datatype_vvvvwbw = jQuery("#jform_datatype").val();
var has_defaults_vvvvwdo = jQuery("#jform_has_defaults input[type='radio']:checked").val(); var has_defaults_vvvvwbw = jQuery("#jform_has_defaults input[type='radio']:checked").val();
vvvvwdo(datatype_vvvvwdo,has_defaults_vvvvwdo); vvvvwbw(datatype_vvvvwbw,has_defaults_vvvvwbw);
}); });
// #jform_datatype listeners for datatype_vvvvwdq function // #jform_datatype listeners for datatype_vvvvwby function
jQuery('#jform_datatype').on('keyup',function() jQuery('#jform_datatype').on('keyup',function()
{ {
var datatype_vvvvwdq = jQuery("#jform_datatype").val(); var datatype_vvvvwby = jQuery("#jform_datatype").val();
var has_defaults_vvvvwdq = jQuery("#jform_has_defaults input[type='radio']:checked").val(); var has_defaults_vvvvwby = jQuery("#jform_has_defaults input[type='radio']:checked").val();
vvvvwdq(datatype_vvvvwdq,has_defaults_vvvvwdq); vvvvwby(datatype_vvvvwby,has_defaults_vvvvwby);
}); });
jQuery('#adminForm').on('change', '#jform_datatype',function (e) jQuery('#adminForm').on('change', '#jform_datatype',function (e)
{ {
e.preventDefault(); e.preventDefault();
var datatype_vvvvwdq = jQuery("#jform_datatype").val(); var datatype_vvvvwby = jQuery("#jform_datatype").val();
var has_defaults_vvvvwdq = jQuery("#jform_has_defaults input[type='radio']:checked").val(); var has_defaults_vvvvwby = jQuery("#jform_has_defaults input[type='radio']:checked").val();
vvvvwdq(datatype_vvvvwdq,has_defaults_vvvvwdq); vvvvwby(datatype_vvvvwby,has_defaults_vvvvwby);
}); });
// #jform_has_defaults listeners for has_defaults_vvvvwdq function // #jform_has_defaults listeners for has_defaults_vvvvwby function
jQuery('#jform_has_defaults').on('keyup',function() jQuery('#jform_has_defaults').on('keyup',function()
{ {
var datatype_vvvvwdq = jQuery("#jform_datatype").val(); var datatype_vvvvwby = jQuery("#jform_datatype").val();
var has_defaults_vvvvwdq = jQuery("#jform_has_defaults input[type='radio']:checked").val(); var has_defaults_vvvvwby = jQuery("#jform_has_defaults input[type='radio']:checked").val();
vvvvwdq(datatype_vvvvwdq,has_defaults_vvvvwdq); vvvvwby(datatype_vvvvwby,has_defaults_vvvvwby);
}); });
jQuery('#adminForm').on('change', '#jform_has_defaults',function (e) jQuery('#adminForm').on('change', '#jform_has_defaults',function (e)
{ {
e.preventDefault(); e.preventDefault();
var datatype_vvvvwdq = jQuery("#jform_datatype").val(); var datatype_vvvvwby = jQuery("#jform_datatype").val();
var has_defaults_vvvvwdq = jQuery("#jform_has_defaults input[type='radio']:checked").val(); var has_defaults_vvvvwby = jQuery("#jform_has_defaults input[type='radio']:checked").val();
vvvvwdq(datatype_vvvvwdq,has_defaults_vvvvwdq); vvvvwby(datatype_vvvvwby,has_defaults_vvvvwby);
}); });
// #jform_has_defaults listeners for has_defaults_vvvvwdr function // #jform_has_defaults listeners for has_defaults_vvvvwbz function
jQuery('#jform_has_defaults').on('keyup',function() jQuery('#jform_has_defaults').on('keyup',function()
{ {
var has_defaults_vvvvwdr = jQuery("#jform_has_defaults input[type='radio']:checked").val(); var has_defaults_vvvvwbz = jQuery("#jform_has_defaults input[type='radio']:checked").val();
var datatype_vvvvwdr = jQuery("#jform_datatype").val(); var datatype_vvvvwbz = jQuery("#jform_datatype").val();
vvvvwdr(has_defaults_vvvvwdr,datatype_vvvvwdr); vvvvwbz(has_defaults_vvvvwbz,datatype_vvvvwbz);
}); });
jQuery('#adminForm').on('change', '#jform_has_defaults',function (e) jQuery('#adminForm').on('change', '#jform_has_defaults',function (e)
{ {
e.preventDefault(); e.preventDefault();
var has_defaults_vvvvwdr = jQuery("#jform_has_defaults input[type='radio']:checked").val(); var has_defaults_vvvvwbz = jQuery("#jform_has_defaults input[type='radio']:checked").val();
var datatype_vvvvwdr = jQuery("#jform_datatype").val(); var datatype_vvvvwbz = jQuery("#jform_datatype").val();
vvvvwdr(has_defaults_vvvvwdr,datatype_vvvvwdr); vvvvwbz(has_defaults_vvvvwbz,datatype_vvvvwbz);
}); });
// #jform_datatype listeners for datatype_vvvvwdr function // #jform_datatype listeners for datatype_vvvvwbz function
jQuery('#jform_datatype').on('keyup',function() jQuery('#jform_datatype').on('keyup',function()
{ {
var has_defaults_vvvvwdr = jQuery("#jform_has_defaults input[type='radio']:checked").val(); var has_defaults_vvvvwbz = jQuery("#jform_has_defaults input[type='radio']:checked").val();
var datatype_vvvvwdr = jQuery("#jform_datatype").val(); var datatype_vvvvwbz = jQuery("#jform_datatype").val();
vvvvwdr(has_defaults_vvvvwdr,datatype_vvvvwdr); vvvvwbz(has_defaults_vvvvwbz,datatype_vvvvwbz);
}); });
jQuery('#adminForm').on('change', '#jform_datatype',function (e) jQuery('#adminForm').on('change', '#jform_datatype',function (e)
{ {
e.preventDefault(); e.preventDefault();
var has_defaults_vvvvwdr = jQuery("#jform_has_defaults input[type='radio']:checked").val(); var has_defaults_vvvvwbz = jQuery("#jform_has_defaults input[type='radio']:checked").val();
var datatype_vvvvwdr = jQuery("#jform_datatype").val(); var datatype_vvvvwbz = jQuery("#jform_datatype").val();
vvvvwdr(has_defaults_vvvvwdr,datatype_vvvvwdr); vvvvwbz(has_defaults_vvvvwbz,datatype_vvvvwbz);
}); });
// #jform_datatype listeners for datatype_vvvvwds function // #jform_datatype listeners for datatype_vvvvwca function
jQuery('#jform_datatype').on('keyup',function() jQuery('#jform_datatype').on('keyup',function()
{ {
var datatype_vvvvwds = jQuery("#jform_datatype").val(); var datatype_vvvvwca = jQuery("#jform_datatype").val();
var has_defaults_vvvvwds = jQuery("#jform_has_defaults input[type='radio']:checked").val(); var has_defaults_vvvvwca = jQuery("#jform_has_defaults input[type='radio']:checked").val();
vvvvwds(datatype_vvvvwds,has_defaults_vvvvwds); vvvvwca(datatype_vvvvwca,has_defaults_vvvvwca);
}); });
jQuery('#adminForm').on('change', '#jform_datatype',function (e) jQuery('#adminForm').on('change', '#jform_datatype',function (e)
{ {
e.preventDefault(); e.preventDefault();
var datatype_vvvvwds = jQuery("#jform_datatype").val(); var datatype_vvvvwca = jQuery("#jform_datatype").val();
var has_defaults_vvvvwds = jQuery("#jform_has_defaults input[type='radio']:checked").val(); var has_defaults_vvvvwca = jQuery("#jform_has_defaults input[type='radio']:checked").val();
vvvvwds(datatype_vvvvwds,has_defaults_vvvvwds); vvvvwca(datatype_vvvvwca,has_defaults_vvvvwca);
}); });
// #jform_has_defaults listeners for has_defaults_vvvvwds function // #jform_has_defaults listeners for has_defaults_vvvvwca function
jQuery('#jform_has_defaults').on('keyup',function() jQuery('#jform_has_defaults').on('keyup',function()
{ {
var datatype_vvvvwds = jQuery("#jform_datatype").val(); var datatype_vvvvwca = jQuery("#jform_datatype").val();
var has_defaults_vvvvwds = jQuery("#jform_has_defaults input[type='radio']:checked").val(); var has_defaults_vvvvwca = jQuery("#jform_has_defaults input[type='radio']:checked").val();
vvvvwds(datatype_vvvvwds,has_defaults_vvvvwds); vvvvwca(datatype_vvvvwca,has_defaults_vvvvwca);
}); });
jQuery('#adminForm').on('change', '#jform_has_defaults',function (e) jQuery('#adminForm').on('change', '#jform_has_defaults',function (e)
{ {
e.preventDefault(); e.preventDefault();
var datatype_vvvvwds = jQuery("#jform_datatype").val(); var datatype_vvvvwca = jQuery("#jform_datatype").val();
var has_defaults_vvvvwds = jQuery("#jform_has_defaults input[type='radio']:checked").val(); var has_defaults_vvvvwca = jQuery("#jform_has_defaults input[type='radio']:checked").val();
vvvvwds(datatype_vvvvwds,has_defaults_vvvvwds); vvvvwca(datatype_vvvvwca,has_defaults_vvvvwca);
}); });
// #jform_store listeners for store_vvvvwdu function // #jform_store listeners for store_vvvvwcc function
jQuery('#jform_store').on('keyup',function() jQuery('#jform_store').on('keyup',function()
{ {
var store_vvvvwdu = jQuery("#jform_store").val(); var store_vvvvwcc = jQuery("#jform_store").val();
var datatype_vvvvwdu = jQuery("#jform_datatype").val(); var datatype_vvvvwcc = jQuery("#jform_datatype").val();
var has_defaults_vvvvwdu = jQuery("#jform_has_defaults input[type='radio']:checked").val(); var has_defaults_vvvvwcc = jQuery("#jform_has_defaults input[type='radio']:checked").val();
vvvvwdu(store_vvvvwdu,datatype_vvvvwdu,has_defaults_vvvvwdu); vvvvwcc(store_vvvvwcc,datatype_vvvvwcc,has_defaults_vvvvwcc);
}); });
jQuery('#adminForm').on('change', '#jform_store',function (e) jQuery('#adminForm').on('change', '#jform_store',function (e)
{ {
e.preventDefault(); e.preventDefault();
var store_vvvvwdu = jQuery("#jform_store").val(); var store_vvvvwcc = jQuery("#jform_store").val();
var datatype_vvvvwdu = jQuery("#jform_datatype").val(); var datatype_vvvvwcc = jQuery("#jform_datatype").val();
var has_defaults_vvvvwdu = jQuery("#jform_has_defaults input[type='radio']:checked").val(); var has_defaults_vvvvwcc = jQuery("#jform_has_defaults input[type='radio']:checked").val();
vvvvwdu(store_vvvvwdu,datatype_vvvvwdu,has_defaults_vvvvwdu); vvvvwcc(store_vvvvwcc,datatype_vvvvwcc,has_defaults_vvvvwcc);
}); });
// #jform_datatype listeners for datatype_vvvvwdu function // #jform_datatype listeners for datatype_vvvvwcc function
jQuery('#jform_datatype').on('keyup',function() jQuery('#jform_datatype').on('keyup',function()
{ {
var store_vvvvwdu = jQuery("#jform_store").val(); var store_vvvvwcc = jQuery("#jform_store").val();
var datatype_vvvvwdu = jQuery("#jform_datatype").val(); var datatype_vvvvwcc = jQuery("#jform_datatype").val();
var has_defaults_vvvvwdu = jQuery("#jform_has_defaults input[type='radio']:checked").val(); var has_defaults_vvvvwcc = jQuery("#jform_has_defaults input[type='radio']:checked").val();
vvvvwdu(store_vvvvwdu,datatype_vvvvwdu,has_defaults_vvvvwdu); vvvvwcc(store_vvvvwcc,datatype_vvvvwcc,has_defaults_vvvvwcc);
}); });
jQuery('#adminForm').on('change', '#jform_datatype',function (e) jQuery('#adminForm').on('change', '#jform_datatype',function (e)
{ {
e.preventDefault(); e.preventDefault();
var store_vvvvwdu = jQuery("#jform_store").val(); var store_vvvvwcc = jQuery("#jform_store").val();
var datatype_vvvvwdu = jQuery("#jform_datatype").val(); var datatype_vvvvwcc = jQuery("#jform_datatype").val();
var has_defaults_vvvvwdu = jQuery("#jform_has_defaults input[type='radio']:checked").val(); var has_defaults_vvvvwcc = jQuery("#jform_has_defaults input[type='radio']:checked").val();
vvvvwdu(store_vvvvwdu,datatype_vvvvwdu,has_defaults_vvvvwdu); vvvvwcc(store_vvvvwcc,datatype_vvvvwcc,has_defaults_vvvvwcc);
}); });
// #jform_has_defaults listeners for has_defaults_vvvvwdu function // #jform_has_defaults listeners for has_defaults_vvvvwcc function
jQuery('#jform_has_defaults').on('keyup',function() jQuery('#jform_has_defaults').on('keyup',function()
{ {
var store_vvvvwdu = jQuery("#jform_store").val(); var store_vvvvwcc = jQuery("#jform_store").val();
var datatype_vvvvwdu = jQuery("#jform_datatype").val(); var datatype_vvvvwcc = jQuery("#jform_datatype").val();
var has_defaults_vvvvwdu = jQuery("#jform_has_defaults input[type='radio']:checked").val(); var has_defaults_vvvvwcc = jQuery("#jform_has_defaults input[type='radio']:checked").val();
vvvvwdu(store_vvvvwdu,datatype_vvvvwdu,has_defaults_vvvvwdu); vvvvwcc(store_vvvvwcc,datatype_vvvvwcc,has_defaults_vvvvwcc);
}); });
jQuery('#adminForm').on('change', '#jform_has_defaults',function (e) jQuery('#adminForm').on('change', '#jform_has_defaults',function (e)
{ {
e.preventDefault(); e.preventDefault();
var store_vvvvwdu = jQuery("#jform_store").val(); var store_vvvvwcc = jQuery("#jform_store").val();
var datatype_vvvvwdu = jQuery("#jform_datatype").val(); var datatype_vvvvwcc = jQuery("#jform_datatype").val();
var has_defaults_vvvvwdu = jQuery("#jform_has_defaults input[type='radio']:checked").val(); var has_defaults_vvvvwcc = jQuery("#jform_has_defaults input[type='radio']:checked").val();
vvvvwdu(store_vvvvwdu,datatype_vvvvwdu,has_defaults_vvvvwdu); vvvvwcc(store_vvvvwcc,datatype_vvvvwcc,has_defaults_vvvvwcc);
}); });
// #jform_datatype listeners for datatype_vvvvwdv function // #jform_datatype listeners for datatype_vvvvwcd function
jQuery('#jform_datatype').on('keyup',function() jQuery('#jform_datatype').on('keyup',function()
{ {
var datatype_vvvvwdv = jQuery("#jform_datatype").val(); var datatype_vvvvwcd = jQuery("#jform_datatype").val();
var store_vvvvwdv = jQuery("#jform_store").val(); var store_vvvvwcd = jQuery("#jform_store").val();
var has_defaults_vvvvwdv = jQuery("#jform_has_defaults input[type='radio']:checked").val(); var has_defaults_vvvvwcd = jQuery("#jform_has_defaults input[type='radio']:checked").val();
vvvvwdv(datatype_vvvvwdv,store_vvvvwdv,has_defaults_vvvvwdv); vvvvwcd(datatype_vvvvwcd,store_vvvvwcd,has_defaults_vvvvwcd);
}); });
jQuery('#adminForm').on('change', '#jform_datatype',function (e) jQuery('#adminForm').on('change', '#jform_datatype',function (e)
{ {
e.preventDefault(); e.preventDefault();
var datatype_vvvvwdv = jQuery("#jform_datatype").val(); var datatype_vvvvwcd = jQuery("#jform_datatype").val();
var store_vvvvwdv = jQuery("#jform_store").val(); var store_vvvvwcd = jQuery("#jform_store").val();
var has_defaults_vvvvwdv = jQuery("#jform_has_defaults input[type='radio']:checked").val(); var has_defaults_vvvvwcd = jQuery("#jform_has_defaults input[type='radio']:checked").val();
vvvvwdv(datatype_vvvvwdv,store_vvvvwdv,has_defaults_vvvvwdv); vvvvwcd(datatype_vvvvwcd,store_vvvvwcd,has_defaults_vvvvwcd);
}); });
// #jform_store listeners for store_vvvvwdv function // #jform_store listeners for store_vvvvwcd function
jQuery('#jform_store').on('keyup',function() jQuery('#jform_store').on('keyup',function()
{ {
var datatype_vvvvwdv = jQuery("#jform_datatype").val(); var datatype_vvvvwcd = jQuery("#jform_datatype").val();
var store_vvvvwdv = jQuery("#jform_store").val(); var store_vvvvwcd = jQuery("#jform_store").val();
var has_defaults_vvvvwdv = jQuery("#jform_has_defaults input[type='radio']:checked").val(); var has_defaults_vvvvwcd = jQuery("#jform_has_defaults input[type='radio']:checked").val();
vvvvwdv(datatype_vvvvwdv,store_vvvvwdv,has_defaults_vvvvwdv); vvvvwcd(datatype_vvvvwcd,store_vvvvwcd,has_defaults_vvvvwcd);
}); });
jQuery('#adminForm').on('change', '#jform_store',function (e) jQuery('#adminForm').on('change', '#jform_store',function (e)
{ {
e.preventDefault(); e.preventDefault();
var datatype_vvvvwdv = jQuery("#jform_datatype").val(); var datatype_vvvvwcd = jQuery("#jform_datatype").val();
var store_vvvvwdv = jQuery("#jform_store").val(); var store_vvvvwcd = jQuery("#jform_store").val();
var has_defaults_vvvvwdv = jQuery("#jform_has_defaults input[type='radio']:checked").val(); var has_defaults_vvvvwcd = jQuery("#jform_has_defaults input[type='radio']:checked").val();
vvvvwdv(datatype_vvvvwdv,store_vvvvwdv,has_defaults_vvvvwdv); vvvvwcd(datatype_vvvvwcd,store_vvvvwcd,has_defaults_vvvvwcd);
}); });
// #jform_has_defaults listeners for has_defaults_vvvvwdv function // #jform_has_defaults listeners for has_defaults_vvvvwcd function
jQuery('#jform_has_defaults').on('keyup',function() jQuery('#jform_has_defaults').on('keyup',function()
{ {
var datatype_vvvvwdv = jQuery("#jform_datatype").val(); var datatype_vvvvwcd = jQuery("#jform_datatype").val();
var store_vvvvwdv = jQuery("#jform_store").val(); var store_vvvvwcd = jQuery("#jform_store").val();
var has_defaults_vvvvwdv = jQuery("#jform_has_defaults input[type='radio']:checked").val(); var has_defaults_vvvvwcd = jQuery("#jform_has_defaults input[type='radio']:checked").val();
vvvvwdv(datatype_vvvvwdv,store_vvvvwdv,has_defaults_vvvvwdv); vvvvwcd(datatype_vvvvwcd,store_vvvvwcd,has_defaults_vvvvwcd);
}); });
jQuery('#adminForm').on('change', '#jform_has_defaults',function (e) jQuery('#adminForm').on('change', '#jform_has_defaults',function (e)
{ {
e.preventDefault(); e.preventDefault();
var datatype_vvvvwdv = jQuery("#jform_datatype").val(); var datatype_vvvvwcd = jQuery("#jform_datatype").val();
var store_vvvvwdv = jQuery("#jform_store").val(); var store_vvvvwcd = jQuery("#jform_store").val();
var has_defaults_vvvvwdv = jQuery("#jform_has_defaults input[type='radio']:checked").val(); var has_defaults_vvvvwcd = jQuery("#jform_has_defaults input[type='radio']:checked").val();
vvvvwdv(datatype_vvvvwdv,store_vvvvwdv,has_defaults_vvvvwdv); vvvvwcd(datatype_vvvvwcd,store_vvvvwcd,has_defaults_vvvvwcd);
}); });
// #jform_has_defaults listeners for has_defaults_vvvvwdw function // #jform_has_defaults listeners for has_defaults_vvvvwce function
jQuery('#jform_has_defaults').on('keyup',function() jQuery('#jform_has_defaults').on('keyup',function()
{ {
var has_defaults_vvvvwdw = jQuery("#jform_has_defaults input[type='radio']:checked").val(); var has_defaults_vvvvwce = jQuery("#jform_has_defaults input[type='radio']:checked").val();
var store_vvvvwdw = jQuery("#jform_store").val(); var store_vvvvwce = jQuery("#jform_store").val();
var datatype_vvvvwdw = jQuery("#jform_datatype").val(); var datatype_vvvvwce = jQuery("#jform_datatype").val();
vvvvwdw(has_defaults_vvvvwdw,store_vvvvwdw,datatype_vvvvwdw); vvvvwce(has_defaults_vvvvwce,store_vvvvwce,datatype_vvvvwce);
}); });
jQuery('#adminForm').on('change', '#jform_has_defaults',function (e) jQuery('#adminForm').on('change', '#jform_has_defaults',function (e)
{ {
e.preventDefault(); e.preventDefault();
var has_defaults_vvvvwdw = jQuery("#jform_has_defaults input[type='radio']:checked").val(); var has_defaults_vvvvwce = jQuery("#jform_has_defaults input[type='radio']:checked").val();
var store_vvvvwdw = jQuery("#jform_store").val(); var store_vvvvwce = jQuery("#jform_store").val();
var datatype_vvvvwdw = jQuery("#jform_datatype").val(); var datatype_vvvvwce = jQuery("#jform_datatype").val();
vvvvwdw(has_defaults_vvvvwdw,store_vvvvwdw,datatype_vvvvwdw); vvvvwce(has_defaults_vvvvwce,store_vvvvwce,datatype_vvvvwce);
}); });
// #jform_store listeners for store_vvvvwdw function // #jform_store listeners for store_vvvvwce function
jQuery('#jform_store').on('keyup',function() jQuery('#jform_store').on('keyup',function()
{ {
var has_defaults_vvvvwdw = jQuery("#jform_has_defaults input[type='radio']:checked").val(); var has_defaults_vvvvwce = jQuery("#jform_has_defaults input[type='radio']:checked").val();
var store_vvvvwdw = jQuery("#jform_store").val(); var store_vvvvwce = jQuery("#jform_store").val();
var datatype_vvvvwdw = jQuery("#jform_datatype").val(); var datatype_vvvvwce = jQuery("#jform_datatype").val();
vvvvwdw(has_defaults_vvvvwdw,store_vvvvwdw,datatype_vvvvwdw); vvvvwce(has_defaults_vvvvwce,store_vvvvwce,datatype_vvvvwce);
}); });
jQuery('#adminForm').on('change', '#jform_store',function (e) jQuery('#adminForm').on('change', '#jform_store',function (e)
{ {
e.preventDefault(); e.preventDefault();
var has_defaults_vvvvwdw = jQuery("#jform_has_defaults input[type='radio']:checked").val(); var has_defaults_vvvvwce = jQuery("#jform_has_defaults input[type='radio']:checked").val();
var store_vvvvwdw = jQuery("#jform_store").val(); var store_vvvvwce = jQuery("#jform_store").val();
var datatype_vvvvwdw = jQuery("#jform_datatype").val(); var datatype_vvvvwce = jQuery("#jform_datatype").val();
vvvvwdw(has_defaults_vvvvwdw,store_vvvvwdw,datatype_vvvvwdw); vvvvwce(has_defaults_vvvvwce,store_vvvvwce,datatype_vvvvwce);
}); });
// #jform_datatype listeners for datatype_vvvvwdw function // #jform_datatype listeners for datatype_vvvvwce function
jQuery('#jform_datatype').on('keyup',function() jQuery('#jform_datatype').on('keyup',function()
{ {
var has_defaults_vvvvwdw = jQuery("#jform_has_defaults input[type='radio']:checked").val(); var has_defaults_vvvvwce = jQuery("#jform_has_defaults input[type='radio']:checked").val();
var store_vvvvwdw = jQuery("#jform_store").val(); var store_vvvvwce = jQuery("#jform_store").val();
var datatype_vvvvwdw = jQuery("#jform_datatype").val(); var datatype_vvvvwce = jQuery("#jform_datatype").val();
vvvvwdw(has_defaults_vvvvwdw,store_vvvvwdw,datatype_vvvvwdw); vvvvwce(has_defaults_vvvvwce,store_vvvvwce,datatype_vvvvwce);
}); });
jQuery('#adminForm').on('change', '#jform_datatype',function (e) jQuery('#adminForm').on('change', '#jform_datatype',function (e)
{ {
e.preventDefault(); e.preventDefault();
var has_defaults_vvvvwdw = jQuery("#jform_has_defaults input[type='radio']:checked").val(); var has_defaults_vvvvwce = jQuery("#jform_has_defaults input[type='radio']:checked").val();
var store_vvvvwdw = jQuery("#jform_store").val(); var store_vvvvwce = jQuery("#jform_store").val();
var datatype_vvvvwdw = jQuery("#jform_datatype").val(); var datatype_vvvvwce = jQuery("#jform_datatype").val();
vvvvwdw(has_defaults_vvvvwdw,store_vvvvwdw,datatype_vvvvwdw); vvvvwce(has_defaults_vvvvwce,store_vvvvwce,datatype_vvvvwce);
}); });
// #jform_has_defaults listeners for has_defaults_vvvvwdx function // #jform_has_defaults listeners for has_defaults_vvvvwcf function
jQuery('#jform_has_defaults').on('keyup',function() jQuery('#jform_has_defaults').on('keyup',function()
{ {
var has_defaults_vvvvwdx = jQuery("#jform_has_defaults input[type='radio']:checked").val(); var has_defaults_vvvvwcf = jQuery("#jform_has_defaults input[type='radio']:checked").val();
vvvvwdx(has_defaults_vvvvwdx); vvvvwcf(has_defaults_vvvvwcf);
}); });
jQuery('#adminForm').on('change', '#jform_has_defaults',function (e) jQuery('#adminForm').on('change', '#jform_has_defaults',function (e)
{ {
e.preventDefault(); e.preventDefault();
var has_defaults_vvvvwdx = jQuery("#jform_has_defaults input[type='radio']:checked").val(); var has_defaults_vvvvwcf = jQuery("#jform_has_defaults input[type='radio']:checked").val();
vvvvwdx(has_defaults_vvvvwdx); vvvvwcf(has_defaults_vvvvwcf);
}); });

View File

@ -96,93 +96,93 @@ defined('_JEXEC') or die;
<script type="text/javascript"> <script type="text/javascript">
// #jform_location listeners for location_vvvvwei function // #jform_location listeners for location_vvvvwcq function
jQuery('#jform_location').on('keyup',function() jQuery('#jform_location').on('keyup',function()
{ {
var location_vvvvwei = jQuery("#jform_location input[type='radio']:checked").val(); var location_vvvvwcq = jQuery("#jform_location input[type='radio']:checked").val();
vvvvwei(location_vvvvwei); vvvvwcq(location_vvvvwcq);
}); });
jQuery('#adminForm').on('change', '#jform_location',function (e) jQuery('#adminForm').on('change', '#jform_location',function (e)
{ {
e.preventDefault(); e.preventDefault();
var location_vvvvwei = jQuery("#jform_location input[type='radio']:checked").val(); var location_vvvvwcq = jQuery("#jform_location input[type='radio']:checked").val();
vvvvwei(location_vvvvwei); vvvvwcq(location_vvvvwcq);
}); });
// #jform_location listeners for location_vvvvwej function // #jform_location listeners for location_vvvvwcr function
jQuery('#jform_location').on('keyup',function() jQuery('#jform_location').on('keyup',function()
{ {
var location_vvvvwej = jQuery("#jform_location input[type='radio']:checked").val(); var location_vvvvwcr = jQuery("#jform_location input[type='radio']:checked").val();
vvvvwej(location_vvvvwej); vvvvwcr(location_vvvvwcr);
}); });
jQuery('#adminForm').on('change', '#jform_location',function (e) jQuery('#adminForm').on('change', '#jform_location',function (e)
{ {
e.preventDefault(); e.preventDefault();
var location_vvvvwej = jQuery("#jform_location input[type='radio']:checked").val(); var location_vvvvwcr = jQuery("#jform_location input[type='radio']:checked").val();
vvvvwej(location_vvvvwej); vvvvwcr(location_vvvvwcr);
}); });
// #jform_type listeners for type_vvvvwek function // #jform_type listeners for type_vvvvwcs function
jQuery('#jform_type').on('keyup',function() jQuery('#jform_type').on('keyup',function()
{ {
var type_vvvvwek = jQuery("#jform_type").val(); var type_vvvvwcs = jQuery("#jform_type").val();
vvvvwek(type_vvvvwek); vvvvwcs(type_vvvvwcs);
}); });
jQuery('#adminForm').on('change', '#jform_type',function (e) jQuery('#adminForm').on('change', '#jform_type',function (e)
{ {
e.preventDefault(); e.preventDefault();
var type_vvvvwek = jQuery("#jform_type").val(); var type_vvvvwcs = jQuery("#jform_type").val();
vvvvwek(type_vvvvwek); vvvvwcs(type_vvvvwcs);
}); });
// #jform_type listeners for type_vvvvwel function // #jform_type listeners for type_vvvvwct function
jQuery('#jform_type').on('keyup',function() jQuery('#jform_type').on('keyup',function()
{ {
var type_vvvvwel = jQuery("#jform_type").val(); var type_vvvvwct = jQuery("#jform_type").val();
vvvvwel(type_vvvvwel); vvvvwct(type_vvvvwct);
}); });
jQuery('#adminForm').on('change', '#jform_type',function (e) jQuery('#adminForm').on('change', '#jform_type',function (e)
{ {
e.preventDefault(); e.preventDefault();
var type_vvvvwel = jQuery("#jform_type").val(); var type_vvvvwct = jQuery("#jform_type").val();
vvvvwel(type_vvvvwel); vvvvwct(type_vvvvwct);
}); });
// #jform_type listeners for type_vvvvwem function // #jform_type listeners for type_vvvvwcu function
jQuery('#jform_type').on('keyup',function() jQuery('#jform_type').on('keyup',function()
{ {
var type_vvvvwem = jQuery("#jform_type").val(); var type_vvvvwcu = jQuery("#jform_type").val();
vvvvwem(type_vvvvwem); vvvvwcu(type_vvvvwcu);
}); });
jQuery('#adminForm').on('change', '#jform_type',function (e) jQuery('#adminForm').on('change', '#jform_type',function (e)
{ {
e.preventDefault(); e.preventDefault();
var type_vvvvwem = jQuery("#jform_type").val(); var type_vvvvwcu = jQuery("#jform_type").val();
vvvvwem(type_vvvvwem); vvvvwcu(type_vvvvwcu);
}); });
// #jform_target listeners for target_vvvvwen function // #jform_target listeners for target_vvvvwcv function
jQuery('#jform_target').on('keyup',function() jQuery('#jform_target').on('keyup',function()
{ {
var target_vvvvwen = jQuery("#jform_target input[type='radio']:checked").val(); var target_vvvvwcv = jQuery("#jform_target input[type='radio']:checked").val();
vvvvwen(target_vvvvwen); vvvvwcv(target_vvvvwcv);
}); });
jQuery('#adminForm').on('change', '#jform_target',function (e) jQuery('#adminForm').on('change', '#jform_target',function (e)
{ {
e.preventDefault(); e.preventDefault();
var target_vvvvwen = jQuery("#jform_target input[type='radio']:checked").val(); var target_vvvvwcv = jQuery("#jform_target input[type='radio']:checked").val();
vvvvwen(target_vvvvwen); vvvvwcv(target_vvvvwcv);
}); });

View File

@ -224,529 +224,259 @@ defined('_JEXEC') or die;
<script type="text/javascript"> <script type="text/javascript">
// #jform_add_php_helper_admin listeners for add_php_helper_admin_vvvvvvv function // #jform_emptycontributors listeners for emptycontributors_vvvvvvv function
jQuery('#jform_add_php_helper_admin').on('keyup',function()
{
var add_php_helper_admin_vvvvvvv = jQuery("#jform_add_php_helper_admin input[type='radio']:checked").val();
vvvvvvv(add_php_helper_admin_vvvvvvv);
});
jQuery('#adminForm').on('change', '#jform_add_php_helper_admin',function (e)
{
e.preventDefault();
var add_php_helper_admin_vvvvvvv = jQuery("#jform_add_php_helper_admin input[type='radio']:checked").val();
vvvvvvv(add_php_helper_admin_vvvvvvv);
});
// #jform_add_php_helper_site listeners for add_php_helper_site_vvvvvvw function
jQuery('#jform_add_php_helper_site').on('keyup',function()
{
var add_php_helper_site_vvvvvvw = jQuery("#jform_add_php_helper_site input[type='radio']:checked").val();
vvvvvvw(add_php_helper_site_vvvvvvw);
});
jQuery('#adminForm').on('change', '#jform_add_php_helper_site',function (e)
{
e.preventDefault();
var add_php_helper_site_vvvvvvw = jQuery("#jform_add_php_helper_site input[type='radio']:checked").val();
vvvvvvw(add_php_helper_site_vvvvvvw);
});
// #jform_add_php_helper_both listeners for add_php_helper_both_vvvvvvx function
jQuery('#jform_add_php_helper_both').on('keyup',function()
{
var add_php_helper_both_vvvvvvx = jQuery("#jform_add_php_helper_both input[type='radio']:checked").val();
vvvvvvx(add_php_helper_both_vvvvvvx);
});
jQuery('#adminForm').on('change', '#jform_add_php_helper_both',function (e)
{
e.preventDefault();
var add_php_helper_both_vvvvvvx = jQuery("#jform_add_php_helper_both input[type='radio']:checked").val();
vvvvvvx(add_php_helper_both_vvvvvvx);
});
// #jform_add_css_admin listeners for add_css_admin_vvvvvvy function
jQuery('#jform_add_css_admin').on('keyup',function()
{
var add_css_admin_vvvvvvy = jQuery("#jform_add_css_admin input[type='radio']:checked").val();
vvvvvvy(add_css_admin_vvvvvvy);
});
jQuery('#adminForm').on('change', '#jform_add_css_admin',function (e)
{
e.preventDefault();
var add_css_admin_vvvvvvy = jQuery("#jform_add_css_admin input[type='radio']:checked").val();
vvvvvvy(add_css_admin_vvvvvvy);
});
// #jform_add_css_site listeners for add_css_site_vvvvvvz function
jQuery('#jform_add_css_site').on('keyup',function()
{
var add_css_site_vvvvvvz = jQuery("#jform_add_css_site input[type='radio']:checked").val();
vvvvvvz(add_css_site_vvvvvvz);
});
jQuery('#adminForm').on('change', '#jform_add_css_site',function (e)
{
e.preventDefault();
var add_css_site_vvvvvvz = jQuery("#jform_add_css_site input[type='radio']:checked").val();
vvvvvvz(add_css_site_vvvvvvz);
});
// #jform_add_javascript listeners for add_javascript_vvvvvwa function
jQuery('#jform_add_javascript').on('keyup',function()
{
var add_javascript_vvvvvwa = jQuery("#jform_add_javascript input[type='radio']:checked").val();
vvvvvwa(add_javascript_vvvvvwa);
});
jQuery('#adminForm').on('change', '#jform_add_javascript',function (e)
{
e.preventDefault();
var add_javascript_vvvvvwa = jQuery("#jform_add_javascript input[type='radio']:checked").val();
vvvvvwa(add_javascript_vvvvvwa);
});
// #jform_add_sql listeners for add_sql_vvvvvwb function
jQuery('#jform_add_sql').on('keyup',function()
{
var add_sql_vvvvvwb = jQuery("#jform_add_sql input[type='radio']:checked").val();
vvvvvwb(add_sql_vvvvvwb);
});
jQuery('#adminForm').on('change', '#jform_add_sql',function (e)
{
e.preventDefault();
var add_sql_vvvvvwb = jQuery("#jform_add_sql input[type='radio']:checked").val();
vvvvvwb(add_sql_vvvvvwb);
});
// #jform_add_sql_uninstall listeners for add_sql_uninstall_vvvvvwc function
jQuery('#jform_add_sql_uninstall').on('keyup',function()
{
var add_sql_uninstall_vvvvvwc = jQuery("#jform_add_sql_uninstall input[type='radio']:checked").val();
vvvvvwc(add_sql_uninstall_vvvvvwc);
});
jQuery('#adminForm').on('change', '#jform_add_sql_uninstall',function (e)
{
e.preventDefault();
var add_sql_uninstall_vvvvvwc = jQuery("#jform_add_sql_uninstall input[type='radio']:checked").val();
vvvvvwc(add_sql_uninstall_vvvvvwc);
});
// #jform_emptycontributors listeners for emptycontributors_vvvvvwd function
jQuery('#jform_emptycontributors').on('keyup',function() jQuery('#jform_emptycontributors').on('keyup',function()
{ {
var emptycontributors_vvvvvwd = jQuery("#jform_emptycontributors input[type='radio']:checked").val(); var emptycontributors_vvvvvvv = jQuery("#jform_emptycontributors input[type='radio']:checked").val();
vvvvvwd(emptycontributors_vvvvvwd); vvvvvvv(emptycontributors_vvvvvvv);
}); });
jQuery('#adminForm').on('change', '#jform_emptycontributors',function (e) jQuery('#adminForm').on('change', '#jform_emptycontributors',function (e)
{ {
e.preventDefault(); e.preventDefault();
var emptycontributors_vvvvvwd = jQuery("#jform_emptycontributors input[type='radio']:checked").val(); var emptycontributors_vvvvvvv = jQuery("#jform_emptycontributors input[type='radio']:checked").val();
vvvvvwd(emptycontributors_vvvvvwd); vvvvvvv(emptycontributors_vvvvvvv);
}); });
// #jform_add_license listeners for add_license_vvvvvwe function // #jform_add_license listeners for add_license_vvvvvvw function
jQuery('#jform_add_license').on('keyup',function() jQuery('#jform_add_license').on('keyup',function()
{ {
var add_license_vvvvvwe = jQuery("#jform_add_license input[type='radio']:checked").val(); var add_license_vvvvvvw = jQuery("#jform_add_license input[type='radio']:checked").val();
vvvvvwe(add_license_vvvvvwe); vvvvvvw(add_license_vvvvvvw);
}); });
jQuery('#adminForm').on('change', '#jform_add_license',function (e) jQuery('#adminForm').on('change', '#jform_add_license',function (e)
{ {
e.preventDefault(); e.preventDefault();
var add_license_vvvvvwe = jQuery("#jform_add_license input[type='radio']:checked").val(); var add_license_vvvvvvw = jQuery("#jform_add_license input[type='radio']:checked").val();
vvvvvwe(add_license_vvvvvwe); vvvvvvw(add_license_vvvvvvw);
}); });
// #jform_add_admin_event listeners for add_admin_event_vvvvvwf function // #jform_add_license listeners for add_license_vvvvvvx function
jQuery('#jform_add_admin_event').on('keyup',function()
{
var add_admin_event_vvvvvwf = jQuery("#jform_add_admin_event input[type='radio']:checked").val();
vvvvvwf(add_admin_event_vvvvvwf);
});
jQuery('#adminForm').on('change', '#jform_add_admin_event',function (e)
{
e.preventDefault();
var add_admin_event_vvvvvwf = jQuery("#jform_add_admin_event input[type='radio']:checked").val();
vvvvvwf(add_admin_event_vvvvvwf);
});
// #jform_add_site_event listeners for add_site_event_vvvvvwg function
jQuery('#jform_add_site_event').on('keyup',function()
{
var add_site_event_vvvvvwg = jQuery("#jform_add_site_event input[type='radio']:checked").val();
vvvvvwg(add_site_event_vvvvvwg);
});
jQuery('#adminForm').on('change', '#jform_add_site_event',function (e)
{
e.preventDefault();
var add_site_event_vvvvvwg = jQuery("#jform_add_site_event input[type='radio']:checked").val();
vvvvvwg(add_site_event_vvvvvwg);
});
// #jform_addreadme listeners for addreadme_vvvvvwh function
jQuery('#jform_addreadme').on('keyup',function()
{
var addreadme_vvvvvwh = jQuery("#jform_addreadme input[type='radio']:checked").val();
vvvvvwh(addreadme_vvvvvwh);
});
jQuery('#adminForm').on('change', '#jform_addreadme',function (e)
{
e.preventDefault();
var addreadme_vvvvvwh = jQuery("#jform_addreadme input[type='radio']:checked").val();
vvvvvwh(addreadme_vvvvvwh);
});
// #jform_add_update_server listeners for add_update_server_vvvvvwi function
jQuery('#jform_add_update_server').on('keyup',function()
{
var add_update_server_vvvvvwi = jQuery("#jform_add_update_server input[type='radio']:checked").val();
vvvvvwi(add_update_server_vvvvvwi);
});
jQuery('#adminForm').on('change', '#jform_add_update_server',function (e)
{
e.preventDefault();
var add_update_server_vvvvvwi = jQuery("#jform_add_update_server input[type='radio']:checked").val();
vvvvvwi(add_update_server_vvvvvwi);
});
// #jform_add_sales_server listeners for add_sales_server_vvvvvwj function
jQuery('#jform_add_sales_server').on('keyup',function()
{
var add_sales_server_vvvvvwj = jQuery("#jform_add_sales_server input[type='radio']:checked").val();
vvvvvwj(add_sales_server_vvvvvwj);
});
jQuery('#adminForm').on('change', '#jform_add_sales_server',function (e)
{
e.preventDefault();
var add_sales_server_vvvvvwj = jQuery("#jform_add_sales_server input[type='radio']:checked").val();
vvvvvwj(add_sales_server_vvvvvwj);
});
// #jform_add_license listeners for add_license_vvvvvwk function
jQuery('#jform_add_license').on('keyup',function() jQuery('#jform_add_license').on('keyup',function()
{ {
var add_license_vvvvvwk = jQuery("#jform_add_license input[type='radio']:checked").val(); var add_license_vvvvvvx = jQuery("#jform_add_license input[type='radio']:checked").val();
vvvvvwk(add_license_vvvvvwk); vvvvvvx(add_license_vvvvvvx);
}); });
jQuery('#adminForm').on('change', '#jform_add_license',function (e) jQuery('#adminForm').on('change', '#jform_add_license',function (e)
{ {
e.preventDefault(); e.preventDefault();
var add_license_vvvvvwk = jQuery("#jform_add_license input[type='radio']:checked").val(); var add_license_vvvvvvx = jQuery("#jform_add_license input[type='radio']:checked").val();
vvvvvwk(add_license_vvvvvwk); vvvvvvx(add_license_vvvvvvx);
}); });
// #jform_add_php_postflight_install listeners for add_php_postflight_install_vvvvvwl function // #jform_update_server_target listeners for update_server_target_vvvvvvy function
jQuery('#jform_add_php_postflight_install').on('keyup',function()
{
var add_php_postflight_install_vvvvvwl = jQuery("#jform_add_php_postflight_install input[type='radio']:checked").val();
vvvvvwl(add_php_postflight_install_vvvvvwl);
});
jQuery('#adminForm').on('change', '#jform_add_php_postflight_install',function (e)
{
e.preventDefault();
var add_php_postflight_install_vvvvvwl = jQuery("#jform_add_php_postflight_install input[type='radio']:checked").val();
vvvvvwl(add_php_postflight_install_vvvvvwl);
});
// #jform_add_php_postflight_update listeners for add_php_postflight_update_vvvvvwm function
jQuery('#jform_add_php_postflight_update').on('keyup',function()
{
var add_php_postflight_update_vvvvvwm = jQuery("#jform_add_php_postflight_update input[type='radio']:checked").val();
vvvvvwm(add_php_postflight_update_vvvvvwm);
});
jQuery('#adminForm').on('change', '#jform_add_php_postflight_update',function (e)
{
e.preventDefault();
var add_php_postflight_update_vvvvvwm = jQuery("#jform_add_php_postflight_update input[type='radio']:checked").val();
vvvvvwm(add_php_postflight_update_vvvvvwm);
});
// #jform_add_php_method_uninstall listeners for add_php_method_uninstall_vvvvvwn function
jQuery('#jform_add_php_method_uninstall').on('keyup',function()
{
var add_php_method_uninstall_vvvvvwn = jQuery("#jform_add_php_method_uninstall input[type='radio']:checked").val();
vvvvvwn(add_php_method_uninstall_vvvvvwn);
});
jQuery('#adminForm').on('change', '#jform_add_php_method_uninstall',function (e)
{
e.preventDefault();
var add_php_method_uninstall_vvvvvwn = jQuery("#jform_add_php_method_uninstall input[type='radio']:checked").val();
vvvvvwn(add_php_method_uninstall_vvvvvwn);
});
// #jform_add_php_preflight_install listeners for add_php_preflight_install_vvvvvwo function
jQuery('#jform_add_php_preflight_install').on('keyup',function()
{
var add_php_preflight_install_vvvvvwo = jQuery("#jform_add_php_preflight_install input[type='radio']:checked").val();
vvvvvwo(add_php_preflight_install_vvvvvwo);
});
jQuery('#adminForm').on('change', '#jform_add_php_preflight_install',function (e)
{
e.preventDefault();
var add_php_preflight_install_vvvvvwo = jQuery("#jform_add_php_preflight_install input[type='radio']:checked").val();
vvvvvwo(add_php_preflight_install_vvvvvwo);
});
// #jform_add_php_preflight_update listeners for add_php_preflight_update_vvvvvwp function
jQuery('#jform_add_php_preflight_update').on('keyup',function()
{
var add_php_preflight_update_vvvvvwp = jQuery("#jform_add_php_preflight_update input[type='radio']:checked").val();
vvvvvwp(add_php_preflight_update_vvvvvwp);
});
jQuery('#adminForm').on('change', '#jform_add_php_preflight_update',function (e)
{
e.preventDefault();
var add_php_preflight_update_vvvvvwp = jQuery("#jform_add_php_preflight_update input[type='radio']:checked").val();
vvvvvwp(add_php_preflight_update_vvvvvwp);
});
// #jform_update_server_target listeners for update_server_target_vvvvvwq function
jQuery('#jform_update_server_target').on('keyup',function() jQuery('#jform_update_server_target').on('keyup',function()
{ {
var update_server_target_vvvvvwq = jQuery("#jform_update_server_target input[type='radio']:checked").val(); var update_server_target_vvvvvvy = jQuery("#jform_update_server_target input[type='radio']:checked").val();
var add_update_server_vvvvvwq = jQuery("#jform_add_update_server input[type='radio']:checked").val(); var add_update_server_vvvvvvy = jQuery("#jform_add_update_server input[type='radio']:checked").val();
vvvvvwq(update_server_target_vvvvvwq,add_update_server_vvvvvwq); vvvvvvy(update_server_target_vvvvvvy,add_update_server_vvvvvvy);
}); });
jQuery('#adminForm').on('change', '#jform_update_server_target',function (e) jQuery('#adminForm').on('change', '#jform_update_server_target',function (e)
{ {
e.preventDefault(); e.preventDefault();
var update_server_target_vvvvvwq = jQuery("#jform_update_server_target input[type='radio']:checked").val(); var update_server_target_vvvvvvy = jQuery("#jform_update_server_target input[type='radio']:checked").val();
var add_update_server_vvvvvwq = jQuery("#jform_add_update_server input[type='radio']:checked").val(); var add_update_server_vvvvvvy = jQuery("#jform_add_update_server input[type='radio']:checked").val();
vvvvvwq(update_server_target_vvvvvwq,add_update_server_vvvvvwq); vvvvvvy(update_server_target_vvvvvvy,add_update_server_vvvvvvy);
}); });
// #jform_add_update_server listeners for add_update_server_vvvvvwq function // #jform_add_update_server listeners for add_update_server_vvvvvvy function
jQuery('#jform_add_update_server').on('keyup',function() jQuery('#jform_add_update_server').on('keyup',function()
{ {
var update_server_target_vvvvvwq = jQuery("#jform_update_server_target input[type='radio']:checked").val(); var update_server_target_vvvvvvy = jQuery("#jform_update_server_target input[type='radio']:checked").val();
var add_update_server_vvvvvwq = jQuery("#jform_add_update_server input[type='radio']:checked").val(); var add_update_server_vvvvvvy = jQuery("#jform_add_update_server input[type='radio']:checked").val();
vvvvvwq(update_server_target_vvvvvwq,add_update_server_vvvvvwq); vvvvvvy(update_server_target_vvvvvvy,add_update_server_vvvvvvy);
}); });
jQuery('#adminForm').on('change', '#jform_add_update_server',function (e) jQuery('#adminForm').on('change', '#jform_add_update_server',function (e)
{ {
e.preventDefault(); e.preventDefault();
var update_server_target_vvvvvwq = jQuery("#jform_update_server_target input[type='radio']:checked").val(); var update_server_target_vvvvvvy = jQuery("#jform_update_server_target input[type='radio']:checked").val();
var add_update_server_vvvvvwq = jQuery("#jform_add_update_server input[type='radio']:checked").val(); var add_update_server_vvvvvvy = jQuery("#jform_add_update_server input[type='radio']:checked").val();
vvvvvwq(update_server_target_vvvvvwq,add_update_server_vvvvvwq); vvvvvvy(update_server_target_vvvvvvy,add_update_server_vvvvvvy);
}); });
// #jform_add_update_server listeners for add_update_server_vvvvvwr function // #jform_add_update_server listeners for add_update_server_vvvvvvz function
jQuery('#jform_add_update_server').on('keyup',function() jQuery('#jform_add_update_server').on('keyup',function()
{ {
var add_update_server_vvvvvwr = jQuery("#jform_add_update_server input[type='radio']:checked").val(); var add_update_server_vvvvvvz = jQuery("#jform_add_update_server input[type='radio']:checked").val();
var update_server_target_vvvvvwr = jQuery("#jform_update_server_target input[type='radio']:checked").val(); var update_server_target_vvvvvvz = jQuery("#jform_update_server_target input[type='radio']:checked").val();
vvvvvwr(add_update_server_vvvvvwr,update_server_target_vvvvvwr); vvvvvvz(add_update_server_vvvvvvz,update_server_target_vvvvvvz);
}); });
jQuery('#adminForm').on('change', '#jform_add_update_server',function (e) jQuery('#adminForm').on('change', '#jform_add_update_server',function (e)
{ {
e.preventDefault(); e.preventDefault();
var add_update_server_vvvvvwr = jQuery("#jform_add_update_server input[type='radio']:checked").val(); var add_update_server_vvvvvvz = jQuery("#jform_add_update_server input[type='radio']:checked").val();
var update_server_target_vvvvvwr = jQuery("#jform_update_server_target input[type='radio']:checked").val(); var update_server_target_vvvvvvz = jQuery("#jform_update_server_target input[type='radio']:checked").val();
vvvvvwr(add_update_server_vvvvvwr,update_server_target_vvvvvwr); vvvvvvz(add_update_server_vvvvvvz,update_server_target_vvvvvvz);
}); });
// #jform_update_server_target listeners for update_server_target_vvvvvwr function // #jform_update_server_target listeners for update_server_target_vvvvvvz function
jQuery('#jform_update_server_target').on('keyup',function() jQuery('#jform_update_server_target').on('keyup',function()
{ {
var add_update_server_vvvvvwr = jQuery("#jform_add_update_server input[type='radio']:checked").val(); var add_update_server_vvvvvvz = jQuery("#jform_add_update_server input[type='radio']:checked").val();
var update_server_target_vvvvvwr = jQuery("#jform_update_server_target input[type='radio']:checked").val(); var update_server_target_vvvvvvz = jQuery("#jform_update_server_target input[type='radio']:checked").val();
vvvvvwr(add_update_server_vvvvvwr,update_server_target_vvvvvwr); vvvvvvz(add_update_server_vvvvvvz,update_server_target_vvvvvvz);
}); });
jQuery('#adminForm').on('change', '#jform_update_server_target',function (e) jQuery('#adminForm').on('change', '#jform_update_server_target',function (e)
{ {
e.preventDefault(); e.preventDefault();
var add_update_server_vvvvvwr = jQuery("#jform_add_update_server input[type='radio']:checked").val(); var add_update_server_vvvvvvz = jQuery("#jform_add_update_server input[type='radio']:checked").val();
var update_server_target_vvvvvwr = jQuery("#jform_update_server_target input[type='radio']:checked").val(); var update_server_target_vvvvvvz = jQuery("#jform_update_server_target input[type='radio']:checked").val();
vvvvvwr(add_update_server_vvvvvwr,update_server_target_vvvvvwr); vvvvvvz(add_update_server_vvvvvvz,update_server_target_vvvvvvz);
}); });
// #jform_update_server_target listeners for update_server_target_vvvvvws function // #jform_update_server_target listeners for update_server_target_vvvvvwa function
jQuery('#jform_update_server_target').on('keyup',function() jQuery('#jform_update_server_target').on('keyup',function()
{ {
var update_server_target_vvvvvws = jQuery("#jform_update_server_target input[type='radio']:checked").val(); var update_server_target_vvvvvwa = jQuery("#jform_update_server_target input[type='radio']:checked").val();
var add_update_server_vvvvvws = jQuery("#jform_add_update_server input[type='radio']:checked").val(); var add_update_server_vvvvvwa = jQuery("#jform_add_update_server input[type='radio']:checked").val();
vvvvvws(update_server_target_vvvvvws,add_update_server_vvvvvws); vvvvvwa(update_server_target_vvvvvwa,add_update_server_vvvvvwa);
}); });
jQuery('#adminForm').on('change', '#jform_update_server_target',function (e) jQuery('#adminForm').on('change', '#jform_update_server_target',function (e)
{ {
e.preventDefault(); e.preventDefault();
var update_server_target_vvvvvws = jQuery("#jform_update_server_target input[type='radio']:checked").val(); var update_server_target_vvvvvwa = jQuery("#jform_update_server_target input[type='radio']:checked").val();
var add_update_server_vvvvvws = jQuery("#jform_add_update_server input[type='radio']:checked").val(); var add_update_server_vvvvvwa = jQuery("#jform_add_update_server input[type='radio']:checked").val();
vvvvvws(update_server_target_vvvvvws,add_update_server_vvvvvws); vvvvvwa(update_server_target_vvvvvwa,add_update_server_vvvvvwa);
}); });
// #jform_add_update_server listeners for add_update_server_vvvvvws function // #jform_add_update_server listeners for add_update_server_vvvvvwa function
jQuery('#jform_add_update_server').on('keyup',function() jQuery('#jform_add_update_server').on('keyup',function()
{ {
var update_server_target_vvvvvws = jQuery("#jform_update_server_target input[type='radio']:checked").val(); var update_server_target_vvvvvwa = jQuery("#jform_update_server_target input[type='radio']:checked").val();
var add_update_server_vvvvvws = jQuery("#jform_add_update_server input[type='radio']:checked").val(); var add_update_server_vvvvvwa = jQuery("#jform_add_update_server input[type='radio']:checked").val();
vvvvvws(update_server_target_vvvvvws,add_update_server_vvvvvws); vvvvvwa(update_server_target_vvvvvwa,add_update_server_vvvvvwa);
}); });
jQuery('#adminForm').on('change', '#jform_add_update_server',function (e) jQuery('#adminForm').on('change', '#jform_add_update_server',function (e)
{ {
e.preventDefault(); e.preventDefault();
var update_server_target_vvvvvws = jQuery("#jform_update_server_target input[type='radio']:checked").val(); var update_server_target_vvvvvwa = jQuery("#jform_update_server_target input[type='radio']:checked").val();
var add_update_server_vvvvvws = jQuery("#jform_add_update_server input[type='radio']:checked").val(); var add_update_server_vvvvvwa = jQuery("#jform_add_update_server input[type='radio']:checked").val();
vvvvvws(update_server_target_vvvvvws,add_update_server_vvvvvws); vvvvvwa(update_server_target_vvvvvwa,add_update_server_vvvvvwa);
}); });
// #jform_update_server_target listeners for update_server_target_vvvvvwu function // #jform_update_server_target listeners for update_server_target_vvvvvwc function
jQuery('#jform_update_server_target').on('keyup',function() jQuery('#jform_update_server_target').on('keyup',function()
{ {
var update_server_target_vvvvvwu = jQuery("#jform_update_server_target input[type='radio']:checked").val(); var update_server_target_vvvvvwc = jQuery("#jform_update_server_target input[type='radio']:checked").val();
var add_update_server_vvvvvwu = jQuery("#jform_add_update_server input[type='radio']:checked").val(); var add_update_server_vvvvvwc = jQuery("#jform_add_update_server input[type='radio']:checked").val();
vvvvvwu(update_server_target_vvvvvwu,add_update_server_vvvvvwu); vvvvvwc(update_server_target_vvvvvwc,add_update_server_vvvvvwc);
}); });
jQuery('#adminForm').on('change', '#jform_update_server_target',function (e) jQuery('#adminForm').on('change', '#jform_update_server_target',function (e)
{ {
e.preventDefault(); e.preventDefault();
var update_server_target_vvvvvwu = jQuery("#jform_update_server_target input[type='radio']:checked").val(); var update_server_target_vvvvvwc = jQuery("#jform_update_server_target input[type='radio']:checked").val();
var add_update_server_vvvvvwu = jQuery("#jform_add_update_server input[type='radio']:checked").val(); var add_update_server_vvvvvwc = jQuery("#jform_add_update_server input[type='radio']:checked").val();
vvvvvwu(update_server_target_vvvvvwu,add_update_server_vvvvvwu); vvvvvwc(update_server_target_vvvvvwc,add_update_server_vvvvvwc);
}); });
// #jform_add_update_server listeners for add_update_server_vvvvvwu function // #jform_add_update_server listeners for add_update_server_vvvvvwc function
jQuery('#jform_add_update_server').on('keyup',function() jQuery('#jform_add_update_server').on('keyup',function()
{ {
var update_server_target_vvvvvwu = jQuery("#jform_update_server_target input[type='radio']:checked").val(); var update_server_target_vvvvvwc = jQuery("#jform_update_server_target input[type='radio']:checked").val();
var add_update_server_vvvvvwu = jQuery("#jform_add_update_server input[type='radio']:checked").val(); var add_update_server_vvvvvwc = jQuery("#jform_add_update_server input[type='radio']:checked").val();
vvvvvwu(update_server_target_vvvvvwu,add_update_server_vvvvvwu); vvvvvwc(update_server_target_vvvvvwc,add_update_server_vvvvvwc);
}); });
jQuery('#adminForm').on('change', '#jform_add_update_server',function (e) jQuery('#adminForm').on('change', '#jform_add_update_server',function (e)
{ {
e.preventDefault(); e.preventDefault();
var update_server_target_vvvvvwu = jQuery("#jform_update_server_target input[type='radio']:checked").val(); var update_server_target_vvvvvwc = jQuery("#jform_update_server_target input[type='radio']:checked").val();
var add_update_server_vvvvvwu = jQuery("#jform_add_update_server input[type='radio']:checked").val(); var add_update_server_vvvvvwc = jQuery("#jform_add_update_server input[type='radio']:checked").val();
vvvvvwu(update_server_target_vvvvvwu,add_update_server_vvvvvwu); vvvvvwc(update_server_target_vvvvvwc,add_update_server_vvvvvwc);
}); });
// #jform_add_update_server listeners for add_update_server_vvvvvww function // #jform_add_update_server listeners for add_update_server_vvvvvwe function
jQuery('#jform_add_update_server').on('keyup',function() jQuery('#jform_add_update_server').on('keyup',function()
{ {
var add_update_server_vvvvvww = jQuery("#jform_add_update_server input[type='radio']:checked").val(); var add_update_server_vvvvvwe = jQuery("#jform_add_update_server input[type='radio']:checked").val();
vvvvvww(add_update_server_vvvvvww); vvvvvwe(add_update_server_vvvvvwe);
}); });
jQuery('#adminForm').on('change', '#jform_add_update_server',function (e) jQuery('#adminForm').on('change', '#jform_add_update_server',function (e)
{ {
e.preventDefault(); e.preventDefault();
var add_update_server_vvvvvww = jQuery("#jform_add_update_server input[type='radio']:checked").val(); var add_update_server_vvvvvwe = jQuery("#jform_add_update_server input[type='radio']:checked").val();
vvvvvww(add_update_server_vvvvvww); vvvvvwe(add_update_server_vvvvvwe);
}); });
// #jform_buildcomp listeners for buildcomp_vvvvvwx function // #jform_buildcomp listeners for buildcomp_vvvvvwf function
jQuery('#jform_buildcomp').on('keyup',function() jQuery('#jform_buildcomp').on('keyup',function()
{ {
var buildcomp_vvvvvwx = jQuery("#jform_buildcomp input[type='radio']:checked").val(); var buildcomp_vvvvvwf = jQuery("#jform_buildcomp input[type='radio']:checked").val();
vvvvvwx(buildcomp_vvvvvwx); vvvvvwf(buildcomp_vvvvvwf);
}); });
jQuery('#adminForm').on('change', '#jform_buildcomp',function (e) jQuery('#adminForm').on('change', '#jform_buildcomp',function (e)
{ {
e.preventDefault(); e.preventDefault();
var buildcomp_vvvvvwx = jQuery("#jform_buildcomp input[type='radio']:checked").val(); var buildcomp_vvvvvwf = jQuery("#jform_buildcomp input[type='radio']:checked").val();
vvvvvwx(buildcomp_vvvvvwx); vvvvvwf(buildcomp_vvvvvwf);
}); });
// #jform_dashboard_type listeners for dashboard_type_vvvvvwy function // #jform_dashboard_type listeners for dashboard_type_vvvvvwg function
jQuery('#jform_dashboard_type').on('keyup',function() jQuery('#jform_dashboard_type').on('keyup',function()
{ {
var dashboard_type_vvvvvwy = jQuery("#jform_dashboard_type input[type='radio']:checked").val(); var dashboard_type_vvvvvwg = jQuery("#jform_dashboard_type input[type='radio']:checked").val();
vvvvvwy(dashboard_type_vvvvvwy); vvvvvwg(dashboard_type_vvvvvwg);
}); });
jQuery('#adminForm').on('change', '#jform_dashboard_type',function (e) jQuery('#adminForm').on('change', '#jform_dashboard_type',function (e)
{ {
e.preventDefault(); e.preventDefault();
var dashboard_type_vvvvvwy = jQuery("#jform_dashboard_type input[type='radio']:checked").val(); var dashboard_type_vvvvvwg = jQuery("#jform_dashboard_type input[type='radio']:checked").val();
vvvvvwy(dashboard_type_vvvvvwy); vvvvvwg(dashboard_type_vvvvvwg);
}); });
// #jform_dashboard_type listeners for dashboard_type_vvvvvwz function // #jform_dashboard_type listeners for dashboard_type_vvvvvwh function
jQuery('#jform_dashboard_type').on('keyup',function() jQuery('#jform_dashboard_type').on('keyup',function()
{ {
var dashboard_type_vvvvvwz = jQuery("#jform_dashboard_type input[type='radio']:checked").val(); var dashboard_type_vvvvvwh = jQuery("#jform_dashboard_type input[type='radio']:checked").val();
vvvvvwz(dashboard_type_vvvvvwz); vvvvvwh(dashboard_type_vvvvvwh);
}); });
jQuery('#adminForm').on('change', '#jform_dashboard_type',function (e) jQuery('#adminForm').on('change', '#jform_dashboard_type',function (e)
{ {
e.preventDefault(); e.preventDefault();
var dashboard_type_vvvvvwz = jQuery("#jform_dashboard_type input[type='radio']:checked").val(); var dashboard_type_vvvvvwh = jQuery("#jform_dashboard_type input[type='radio']:checked").val();
vvvvvwz(dashboard_type_vvvvvwz); vvvvvwh(dashboard_type_vvvvvwh);
}); });
// #jform_translation_tool listeners for translation_tool_vvvvvxa function // #jform_translation_tool listeners for translation_tool_vvvvvwi function
jQuery('#jform_translation_tool').on('keyup',function() jQuery('#jform_translation_tool').on('keyup',function()
{ {
var translation_tool_vvvvvxa = jQuery("#jform_translation_tool").val(); var translation_tool_vvvvvwi = jQuery("#jform_translation_tool").val();
vvvvvxa(translation_tool_vvvvvxa); vvvvvwi(translation_tool_vvvvvwi);
}); });
jQuery('#adminForm').on('change', '#jform_translation_tool',function (e) jQuery('#adminForm').on('change', '#jform_translation_tool',function (e)
{ {
e.preventDefault(); e.preventDefault();
var translation_tool_vvvvvxa = jQuery("#jform_translation_tool").val(); var translation_tool_vvvvvwi = jQuery("#jform_translation_tool").val();
vvvvvxa(translation_tool_vvvvvxa); vvvvvwi(translation_tool_vvvvvwi);
}); });

View File

@ -190,383 +190,188 @@ defined('_JEXEC') or die;
<script type="text/javascript"> <script type="text/javascript">
// #jform_add_class_helper listeners for add_class_helper_vvvvvxb function // #jform_add_class_helper listeners for add_class_helper_vvvvvwj function
jQuery('#jform_add_class_helper').on('keyup',function() jQuery('#jform_add_class_helper').on('keyup',function()
{ {
var add_class_helper_vvvvvxb = jQuery("#jform_add_class_helper").val(); var add_class_helper_vvvvvwj = jQuery("#jform_add_class_helper").val();
vvvvvxb(add_class_helper_vvvvvxb); vvvvvwj(add_class_helper_vvvvvwj);
}); });
jQuery('#adminForm').on('change', '#jform_add_class_helper',function (e) jQuery('#adminForm').on('change', '#jform_add_class_helper',function (e)
{ {
e.preventDefault(); e.preventDefault();
var add_class_helper_vvvvvxb = jQuery("#jform_add_class_helper").val(); var add_class_helper_vvvvvwj = jQuery("#jform_add_class_helper").val();
vvvvvxb(add_class_helper_vvvvvxb); vvvvvwj(add_class_helper_vvvvvwj);
}); });
// #jform_add_class_helper_header listeners for add_class_helper_header_vvvvvxc function // #jform_add_class_helper_header listeners for add_class_helper_header_vvvvvwk function
jQuery('#jform_add_class_helper_header').on('keyup',function() jQuery('#jform_add_class_helper_header').on('keyup',function()
{ {
var add_class_helper_header_vvvvvxc = jQuery("#jform_add_class_helper_header input[type='radio']:checked").val(); var add_class_helper_header_vvvvvwk = jQuery("#jform_add_class_helper_header input[type='radio']:checked").val();
var add_class_helper_vvvvvxc = jQuery("#jform_add_class_helper").val(); var add_class_helper_vvvvvwk = jQuery("#jform_add_class_helper").val();
vvvvvxc(add_class_helper_header_vvvvvxc,add_class_helper_vvvvvxc); vvvvvwk(add_class_helper_header_vvvvvwk,add_class_helper_vvvvvwk);
}); });
jQuery('#adminForm').on('change', '#jform_add_class_helper_header',function (e) jQuery('#adminForm').on('change', '#jform_add_class_helper_header',function (e)
{ {
e.preventDefault(); e.preventDefault();
var add_class_helper_header_vvvvvxc = jQuery("#jform_add_class_helper_header input[type='radio']:checked").val(); var add_class_helper_header_vvvvvwk = jQuery("#jform_add_class_helper_header input[type='radio']:checked").val();
var add_class_helper_vvvvvxc = jQuery("#jform_add_class_helper").val(); var add_class_helper_vvvvvwk = jQuery("#jform_add_class_helper").val();
vvvvvxc(add_class_helper_header_vvvvvxc,add_class_helper_vvvvvxc); vvvvvwk(add_class_helper_header_vvvvvwk,add_class_helper_vvvvvwk);
}); });
// #jform_add_class_helper listeners for add_class_helper_vvvvvxc function // #jform_add_class_helper listeners for add_class_helper_vvvvvwk function
jQuery('#jform_add_class_helper').on('keyup',function() jQuery('#jform_add_class_helper').on('keyup',function()
{ {
var add_class_helper_header_vvvvvxc = jQuery("#jform_add_class_helper_header input[type='radio']:checked").val(); var add_class_helper_header_vvvvvwk = jQuery("#jform_add_class_helper_header input[type='radio']:checked").val();
var add_class_helper_vvvvvxc = jQuery("#jform_add_class_helper").val(); var add_class_helper_vvvvvwk = jQuery("#jform_add_class_helper").val();
vvvvvxc(add_class_helper_header_vvvvvxc,add_class_helper_vvvvvxc); vvvvvwk(add_class_helper_header_vvvvvwk,add_class_helper_vvvvvwk);
}); });
jQuery('#adminForm').on('change', '#jform_add_class_helper',function (e) jQuery('#adminForm').on('change', '#jform_add_class_helper',function (e)
{ {
e.preventDefault(); e.preventDefault();
var add_class_helper_header_vvvvvxc = jQuery("#jform_add_class_helper_header input[type='radio']:checked").val(); var add_class_helper_header_vvvvvwk = jQuery("#jform_add_class_helper_header input[type='radio']:checked").val();
var add_class_helper_vvvvvxc = jQuery("#jform_add_class_helper").val(); var add_class_helper_vvvvvwk = jQuery("#jform_add_class_helper").val();
vvvvvxc(add_class_helper_header_vvvvvxc,add_class_helper_vvvvvxc); vvvvvwk(add_class_helper_header_vvvvvwk,add_class_helper_vvvvvwk);
}); });
// #jform_add_php_script_construct listeners for add_php_script_construct_vvvvvxe function // #jform_update_server_target listeners for update_server_target_vvvvvwm function
jQuery('#jform_add_php_script_construct').on('keyup',function()
{
var add_php_script_construct_vvvvvxe = jQuery("#jform_add_php_script_construct input[type='radio']:checked").val();
vvvvvxe(add_php_script_construct_vvvvvxe);
});
jQuery('#adminForm').on('change', '#jform_add_php_script_construct',function (e)
{
e.preventDefault();
var add_php_script_construct_vvvvvxe = jQuery("#jform_add_php_script_construct input[type='radio']:checked").val();
vvvvvxe(add_php_script_construct_vvvvvxe);
});
// #jform_add_php_preflight_install listeners for add_php_preflight_install_vvvvvxf function
jQuery('#jform_add_php_preflight_install').on('keyup',function()
{
var add_php_preflight_install_vvvvvxf = jQuery("#jform_add_php_preflight_install input[type='radio']:checked").val();
vvvvvxf(add_php_preflight_install_vvvvvxf);
});
jQuery('#adminForm').on('change', '#jform_add_php_preflight_install',function (e)
{
e.preventDefault();
var add_php_preflight_install_vvvvvxf = jQuery("#jform_add_php_preflight_install input[type='radio']:checked").val();
vvvvvxf(add_php_preflight_install_vvvvvxf);
});
// #jform_add_php_preflight_update listeners for add_php_preflight_update_vvvvvxg function
jQuery('#jform_add_php_preflight_update').on('keyup',function()
{
var add_php_preflight_update_vvvvvxg = jQuery("#jform_add_php_preflight_update input[type='radio']:checked").val();
vvvvvxg(add_php_preflight_update_vvvvvxg);
});
jQuery('#adminForm').on('change', '#jform_add_php_preflight_update',function (e)
{
e.preventDefault();
var add_php_preflight_update_vvvvvxg = jQuery("#jform_add_php_preflight_update input[type='radio']:checked").val();
vvvvvxg(add_php_preflight_update_vvvvvxg);
});
// #jform_add_php_preflight_uninstall listeners for add_php_preflight_uninstall_vvvvvxh function
jQuery('#jform_add_php_preflight_uninstall').on('keyup',function()
{
var add_php_preflight_uninstall_vvvvvxh = jQuery("#jform_add_php_preflight_uninstall input[type='radio']:checked").val();
vvvvvxh(add_php_preflight_uninstall_vvvvvxh);
});
jQuery('#adminForm').on('change', '#jform_add_php_preflight_uninstall',function (e)
{
e.preventDefault();
var add_php_preflight_uninstall_vvvvvxh = jQuery("#jform_add_php_preflight_uninstall input[type='radio']:checked").val();
vvvvvxh(add_php_preflight_uninstall_vvvvvxh);
});
// #jform_add_php_postflight_install listeners for add_php_postflight_install_vvvvvxi function
jQuery('#jform_add_php_postflight_install').on('keyup',function()
{
var add_php_postflight_install_vvvvvxi = jQuery("#jform_add_php_postflight_install input[type='radio']:checked").val();
vvvvvxi(add_php_postflight_install_vvvvvxi);
});
jQuery('#adminForm').on('change', '#jform_add_php_postflight_install',function (e)
{
e.preventDefault();
var add_php_postflight_install_vvvvvxi = jQuery("#jform_add_php_postflight_install input[type='radio']:checked").val();
vvvvvxi(add_php_postflight_install_vvvvvxi);
});
// #jform_add_php_postflight_update listeners for add_php_postflight_update_vvvvvxj function
jQuery('#jform_add_php_postflight_update').on('keyup',function()
{
var add_php_postflight_update_vvvvvxj = jQuery("#jform_add_php_postflight_update input[type='radio']:checked").val();
vvvvvxj(add_php_postflight_update_vvvvvxj);
});
jQuery('#adminForm').on('change', '#jform_add_php_postflight_update',function (e)
{
e.preventDefault();
var add_php_postflight_update_vvvvvxj = jQuery("#jform_add_php_postflight_update input[type='radio']:checked").val();
vvvvvxj(add_php_postflight_update_vvvvvxj);
});
// #jform_add_php_method_uninstall listeners for add_php_method_uninstall_vvvvvxk function
jQuery('#jform_add_php_method_uninstall').on('keyup',function()
{
var add_php_method_uninstall_vvvvvxk = jQuery("#jform_add_php_method_uninstall input[type='radio']:checked").val();
vvvvvxk(add_php_method_uninstall_vvvvvxk);
});
jQuery('#adminForm').on('change', '#jform_add_php_method_uninstall',function (e)
{
e.preventDefault();
var add_php_method_uninstall_vvvvvxk = jQuery("#jform_add_php_method_uninstall input[type='radio']:checked").val();
vvvvvxk(add_php_method_uninstall_vvvvvxk);
});
// #jform_update_server_target listeners for update_server_target_vvvvvxl function
jQuery('#jform_update_server_target').on('keyup',function() jQuery('#jform_update_server_target').on('keyup',function()
{ {
var update_server_target_vvvvvxl = jQuery("#jform_update_server_target input[type='radio']:checked").val(); var update_server_target_vvvvvwm = jQuery("#jform_update_server_target input[type='radio']:checked").val();
var add_update_server_vvvvvxl = jQuery("#jform_add_update_server input[type='radio']:checked").val(); var add_update_server_vvvvvwm = jQuery("#jform_add_update_server input[type='radio']:checked").val();
vvvvvxl(update_server_target_vvvvvxl,add_update_server_vvvvvxl); vvvvvwm(update_server_target_vvvvvwm,add_update_server_vvvvvwm);
}); });
jQuery('#adminForm').on('change', '#jform_update_server_target',function (e) jQuery('#adminForm').on('change', '#jform_update_server_target',function (e)
{ {
e.preventDefault(); e.preventDefault();
var update_server_target_vvvvvxl = jQuery("#jform_update_server_target input[type='radio']:checked").val(); var update_server_target_vvvvvwm = jQuery("#jform_update_server_target input[type='radio']:checked").val();
var add_update_server_vvvvvxl = jQuery("#jform_add_update_server input[type='radio']:checked").val(); var add_update_server_vvvvvwm = jQuery("#jform_add_update_server input[type='radio']:checked").val();
vvvvvxl(update_server_target_vvvvvxl,add_update_server_vvvvvxl); vvvvvwm(update_server_target_vvvvvwm,add_update_server_vvvvvwm);
}); });
// #jform_add_update_server listeners for add_update_server_vvvvvxl function // #jform_add_update_server listeners for add_update_server_vvvvvwm function
jQuery('#jform_add_update_server').on('keyup',function() jQuery('#jform_add_update_server').on('keyup',function()
{ {
var update_server_target_vvvvvxl = jQuery("#jform_update_server_target input[type='radio']:checked").val(); var update_server_target_vvvvvwm = jQuery("#jform_update_server_target input[type='radio']:checked").val();
var add_update_server_vvvvvxl = jQuery("#jform_add_update_server input[type='radio']:checked").val(); var add_update_server_vvvvvwm = jQuery("#jform_add_update_server input[type='radio']:checked").val();
vvvvvxl(update_server_target_vvvvvxl,add_update_server_vvvvvxl); vvvvvwm(update_server_target_vvvvvwm,add_update_server_vvvvvwm);
}); });
jQuery('#adminForm').on('change', '#jform_add_update_server',function (e) jQuery('#adminForm').on('change', '#jform_add_update_server',function (e)
{ {
e.preventDefault(); e.preventDefault();
var update_server_target_vvvvvxl = jQuery("#jform_update_server_target input[type='radio']:checked").val(); var update_server_target_vvvvvwm = jQuery("#jform_update_server_target input[type='radio']:checked").val();
var add_update_server_vvvvvxl = jQuery("#jform_add_update_server input[type='radio']:checked").val(); var add_update_server_vvvvvwm = jQuery("#jform_add_update_server input[type='radio']:checked").val();
vvvvvxl(update_server_target_vvvvvxl,add_update_server_vvvvvxl); vvvvvwm(update_server_target_vvvvvwm,add_update_server_vvvvvwm);
}); });
// #jform_add_update_server listeners for add_update_server_vvvvvxm function // #jform_add_update_server listeners for add_update_server_vvvvvwn function
jQuery('#jform_add_update_server').on('keyup',function() jQuery('#jform_add_update_server').on('keyup',function()
{ {
var add_update_server_vvvvvxm = jQuery("#jform_add_update_server input[type='radio']:checked").val(); var add_update_server_vvvvvwn = jQuery("#jform_add_update_server input[type='radio']:checked").val();
var update_server_target_vvvvvxm = jQuery("#jform_update_server_target input[type='radio']:checked").val(); var update_server_target_vvvvvwn = jQuery("#jform_update_server_target input[type='radio']:checked").val();
vvvvvxm(add_update_server_vvvvvxm,update_server_target_vvvvvxm); vvvvvwn(add_update_server_vvvvvwn,update_server_target_vvvvvwn);
}); });
jQuery('#adminForm').on('change', '#jform_add_update_server',function (e) jQuery('#adminForm').on('change', '#jform_add_update_server',function (e)
{ {
e.preventDefault(); e.preventDefault();
var add_update_server_vvvvvxm = jQuery("#jform_add_update_server input[type='radio']:checked").val(); var add_update_server_vvvvvwn = jQuery("#jform_add_update_server input[type='radio']:checked").val();
var update_server_target_vvvvvxm = jQuery("#jform_update_server_target input[type='radio']:checked").val(); var update_server_target_vvvvvwn = jQuery("#jform_update_server_target input[type='radio']:checked").val();
vvvvvxm(add_update_server_vvvvvxm,update_server_target_vvvvvxm); vvvvvwn(add_update_server_vvvvvwn,update_server_target_vvvvvwn);
}); });
// #jform_update_server_target listeners for update_server_target_vvvvvxm function // #jform_update_server_target listeners for update_server_target_vvvvvwn function
jQuery('#jform_update_server_target').on('keyup',function() jQuery('#jform_update_server_target').on('keyup',function()
{ {
var add_update_server_vvvvvxm = jQuery("#jform_add_update_server input[type='radio']:checked").val(); var add_update_server_vvvvvwn = jQuery("#jform_add_update_server input[type='radio']:checked").val();
var update_server_target_vvvvvxm = jQuery("#jform_update_server_target input[type='radio']:checked").val(); var update_server_target_vvvvvwn = jQuery("#jform_update_server_target input[type='radio']:checked").val();
vvvvvxm(add_update_server_vvvvvxm,update_server_target_vvvvvxm); vvvvvwn(add_update_server_vvvvvwn,update_server_target_vvvvvwn);
}); });
jQuery('#adminForm').on('change', '#jform_update_server_target',function (e) jQuery('#adminForm').on('change', '#jform_update_server_target',function (e)
{ {
e.preventDefault(); e.preventDefault();
var add_update_server_vvvvvxm = jQuery("#jform_add_update_server input[type='radio']:checked").val(); var add_update_server_vvvvvwn = jQuery("#jform_add_update_server input[type='radio']:checked").val();
var update_server_target_vvvvvxm = jQuery("#jform_update_server_target input[type='radio']:checked").val(); var update_server_target_vvvvvwn = jQuery("#jform_update_server_target input[type='radio']:checked").val();
vvvvvxm(add_update_server_vvvvvxm,update_server_target_vvvvvxm); vvvvvwn(add_update_server_vvvvvwn,update_server_target_vvvvvwn);
}); });
// #jform_update_server_target listeners for update_server_target_vvvvvxn function // #jform_update_server_target listeners for update_server_target_vvvvvwo function
jQuery('#jform_update_server_target').on('keyup',function() jQuery('#jform_update_server_target').on('keyup',function()
{ {
var update_server_target_vvvvvxn = jQuery("#jform_update_server_target input[type='radio']:checked").val(); var update_server_target_vvvvvwo = jQuery("#jform_update_server_target input[type='radio']:checked").val();
var add_update_server_vvvvvxn = jQuery("#jform_add_update_server input[type='radio']:checked").val(); var add_update_server_vvvvvwo = jQuery("#jform_add_update_server input[type='radio']:checked").val();
vvvvvxn(update_server_target_vvvvvxn,add_update_server_vvvvvxn); vvvvvwo(update_server_target_vvvvvwo,add_update_server_vvvvvwo);
}); });
jQuery('#adminForm').on('change', '#jform_update_server_target',function (e) jQuery('#adminForm').on('change', '#jform_update_server_target',function (e)
{ {
e.preventDefault(); e.preventDefault();
var update_server_target_vvvvvxn = jQuery("#jform_update_server_target input[type='radio']:checked").val(); var update_server_target_vvvvvwo = jQuery("#jform_update_server_target input[type='radio']:checked").val();
var add_update_server_vvvvvxn = jQuery("#jform_add_update_server input[type='radio']:checked").val(); var add_update_server_vvvvvwo = jQuery("#jform_add_update_server input[type='radio']:checked").val();
vvvvvxn(update_server_target_vvvvvxn,add_update_server_vvvvvxn); vvvvvwo(update_server_target_vvvvvwo,add_update_server_vvvvvwo);
}); });
// #jform_add_update_server listeners for add_update_server_vvvvvxn function // #jform_add_update_server listeners for add_update_server_vvvvvwo function
jQuery('#jform_add_update_server').on('keyup',function() jQuery('#jform_add_update_server').on('keyup',function()
{ {
var update_server_target_vvvvvxn = jQuery("#jform_update_server_target input[type='radio']:checked").val(); var update_server_target_vvvvvwo = jQuery("#jform_update_server_target input[type='radio']:checked").val();
var add_update_server_vvvvvxn = jQuery("#jform_add_update_server input[type='radio']:checked").val(); var add_update_server_vvvvvwo = jQuery("#jform_add_update_server input[type='radio']:checked").val();
vvvvvxn(update_server_target_vvvvvxn,add_update_server_vvvvvxn); vvvvvwo(update_server_target_vvvvvwo,add_update_server_vvvvvwo);
}); });
jQuery('#adminForm').on('change', '#jform_add_update_server',function (e) jQuery('#adminForm').on('change', '#jform_add_update_server',function (e)
{ {
e.preventDefault(); e.preventDefault();
var update_server_target_vvvvvxn = jQuery("#jform_update_server_target input[type='radio']:checked").val(); var update_server_target_vvvvvwo = jQuery("#jform_update_server_target input[type='radio']:checked").val();
var add_update_server_vvvvvxn = jQuery("#jform_add_update_server input[type='radio']:checked").val(); var add_update_server_vvvvvwo = jQuery("#jform_add_update_server input[type='radio']:checked").val();
vvvvvxn(update_server_target_vvvvvxn,add_update_server_vvvvvxn); vvvvvwo(update_server_target_vvvvvwo,add_update_server_vvvvvwo);
}); });
// #jform_update_server_target listeners for update_server_target_vvvvvxp function // #jform_update_server_target listeners for update_server_target_vvvvvwq function
jQuery('#jform_update_server_target').on('keyup',function() jQuery('#jform_update_server_target').on('keyup',function()
{ {
var update_server_target_vvvvvxp = jQuery("#jform_update_server_target input[type='radio']:checked").val(); var update_server_target_vvvvvwq = jQuery("#jform_update_server_target input[type='radio']:checked").val();
var add_update_server_vvvvvxp = jQuery("#jform_add_update_server input[type='radio']:checked").val(); var add_update_server_vvvvvwq = jQuery("#jform_add_update_server input[type='radio']:checked").val();
vvvvvxp(update_server_target_vvvvvxp,add_update_server_vvvvvxp); vvvvvwq(update_server_target_vvvvvwq,add_update_server_vvvvvwq);
}); });
jQuery('#adminForm').on('change', '#jform_update_server_target',function (e) jQuery('#adminForm').on('change', '#jform_update_server_target',function (e)
{ {
e.preventDefault(); e.preventDefault();
var update_server_target_vvvvvxp = jQuery("#jform_update_server_target input[type='radio']:checked").val(); var update_server_target_vvvvvwq = jQuery("#jform_update_server_target input[type='radio']:checked").val();
var add_update_server_vvvvvxp = jQuery("#jform_add_update_server input[type='radio']:checked").val(); var add_update_server_vvvvvwq = jQuery("#jform_add_update_server input[type='radio']:checked").val();
vvvvvxp(update_server_target_vvvvvxp,add_update_server_vvvvvxp); vvvvvwq(update_server_target_vvvvvwq,add_update_server_vvvvvwq);
}); });
// #jform_add_update_server listeners for add_update_server_vvvvvxp function // #jform_add_update_server listeners for add_update_server_vvvvvwq function
jQuery('#jform_add_update_server').on('keyup',function() jQuery('#jform_add_update_server').on('keyup',function()
{ {
var update_server_target_vvvvvxp = jQuery("#jform_update_server_target input[type='radio']:checked").val(); var update_server_target_vvvvvwq = jQuery("#jform_update_server_target input[type='radio']:checked").val();
var add_update_server_vvvvvxp = jQuery("#jform_add_update_server input[type='radio']:checked").val(); var add_update_server_vvvvvwq = jQuery("#jform_add_update_server input[type='radio']:checked").val();
vvvvvxp(update_server_target_vvvvvxp,add_update_server_vvvvvxp); vvvvvwq(update_server_target_vvvvvwq,add_update_server_vvvvvwq);
}); });
jQuery('#adminForm').on('change', '#jform_add_update_server',function (e) jQuery('#adminForm').on('change', '#jform_add_update_server',function (e)
{ {
e.preventDefault(); e.preventDefault();
var update_server_target_vvvvvxp = jQuery("#jform_update_server_target input[type='radio']:checked").val(); var update_server_target_vvvvvwq = jQuery("#jform_update_server_target input[type='radio']:checked").val();
var add_update_server_vvvvvxp = jQuery("#jform_add_update_server input[type='radio']:checked").val(); var add_update_server_vvvvvwq = jQuery("#jform_add_update_server input[type='radio']:checked").val();
vvvvvxp(update_server_target_vvvvvxp,add_update_server_vvvvvxp); vvvvvwq(update_server_target_vvvvvwq,add_update_server_vvvvvwq);
});
// #jform_add_update_server listeners for add_update_server_vvvvvxr function
jQuery('#jform_add_update_server').on('keyup',function()
{
var add_update_server_vvvvvxr = jQuery("#jform_add_update_server input[type='radio']:checked").val();
vvvvvxr(add_update_server_vvvvvxr);
});
jQuery('#adminForm').on('change', '#jform_add_update_server',function (e)
{
e.preventDefault();
var add_update_server_vvvvvxr = jQuery("#jform_add_update_server input[type='radio']:checked").val();
vvvvvxr(add_update_server_vvvvvxr);
});
// #jform_add_sql listeners for add_sql_vvvvvxs function
jQuery('#jform_add_sql').on('keyup',function()
{
var add_sql_vvvvvxs = jQuery("#jform_add_sql input[type='radio']:checked").val();
vvvvvxs(add_sql_vvvvvxs);
});
jQuery('#adminForm').on('change', '#jform_add_sql',function (e)
{
e.preventDefault();
var add_sql_vvvvvxs = jQuery("#jform_add_sql input[type='radio']:checked").val();
vvvvvxs(add_sql_vvvvvxs);
});
// #jform_add_sql_uninstall listeners for add_sql_uninstall_vvvvvxt function
jQuery('#jform_add_sql_uninstall').on('keyup',function()
{
var add_sql_uninstall_vvvvvxt = jQuery("#jform_add_sql_uninstall input[type='radio']:checked").val();
vvvvvxt(add_sql_uninstall_vvvvvxt);
});
jQuery('#adminForm').on('change', '#jform_add_sql_uninstall',function (e)
{
e.preventDefault();
var add_sql_uninstall_vvvvvxt = jQuery("#jform_add_sql_uninstall input[type='radio']:checked").val();
vvvvvxt(add_sql_uninstall_vvvvvxt);
});
// #jform_add_update_server listeners for add_update_server_vvvvvxu function
jQuery('#jform_add_update_server').on('keyup',function()
{
var add_update_server_vvvvvxu = jQuery("#jform_add_update_server input[type='radio']:checked").val();
vvvvvxu(add_update_server_vvvvvxu);
});
jQuery('#adminForm').on('change', '#jform_add_update_server',function (e)
{
e.preventDefault();
var add_update_server_vvvvvxu = jQuery("#jform_add_update_server input[type='radio']:checked").val();
vvvvvxu(add_update_server_vvvvvxu);
});
// #jform_add_sales_server listeners for add_sales_server_vvvvvxv function
jQuery('#jform_add_sales_server').on('keyup',function()
{
var add_sales_server_vvvvvxv = jQuery("#jform_add_sales_server input[type='radio']:checked").val();
vvvvvxv(add_sales_server_vvvvvxv);
});
jQuery('#adminForm').on('change', '#jform_add_sales_server',function (e)
{
e.preventDefault();
var add_sales_server_vvvvvxv = jQuery("#jform_add_sales_server input[type='radio']:checked").val();
vvvvvxv(add_sales_server_vvvvvxv);
});
// #jform_addreadme listeners for addreadme_vvvvvxw function
jQuery('#jform_addreadme').on('keyup',function()
{
var addreadme_vvvvvxw = jQuery("#jform_addreadme input[type='radio']:checked").val();
vvvvvxw(addreadme_vvvvvxw);
});
jQuery('#adminForm').on('change', '#jform_addreadme',function (e)
{
e.preventDefault();
var addreadme_vvvvvxw = jQuery("#jform_addreadme input[type='radio']:checked").val();
vvvvvxw(addreadme_vvvvvxw);
}); });

View File

@ -158,417 +158,222 @@ defined('_JEXEC') or die;
<script type="text/javascript"> <script type="text/javascript">
// #jform_class_extends listeners for class_extends_vvvvvxx function // #jform_class_extends listeners for class_extends_vvvvvws function
jQuery('#jform_class_extends').on('keyup',function() jQuery('#jform_class_extends').on('keyup',function()
{ {
var class_extends_vvvvvxx = jQuery("#jform_class_extends").val(); var class_extends_vvvvvws = jQuery("#jform_class_extends").val();
var joomla_plugin_group_vvvvvxx = jQuery("#jform_joomla_plugin_group").val(); var joomla_plugin_group_vvvvvws = jQuery("#jform_joomla_plugin_group").val();
vvvvvxx(class_extends_vvvvvxx,joomla_plugin_group_vvvvvxx); vvvvvws(class_extends_vvvvvws,joomla_plugin_group_vvvvvws);
}); });
jQuery('#adminForm').on('change', '#jform_class_extends',function (e) jQuery('#adminForm').on('change', '#jform_class_extends',function (e)
{ {
e.preventDefault(); e.preventDefault();
var class_extends_vvvvvxx = jQuery("#jform_class_extends").val(); var class_extends_vvvvvws = jQuery("#jform_class_extends").val();
var joomla_plugin_group_vvvvvxx = jQuery("#jform_joomla_plugin_group").val(); var joomla_plugin_group_vvvvvws = jQuery("#jform_joomla_plugin_group").val();
vvvvvxx(class_extends_vvvvvxx,joomla_plugin_group_vvvvvxx); vvvvvws(class_extends_vvvvvws,joomla_plugin_group_vvvvvws);
}); });
// #jform_joomla_plugin_group listeners for joomla_plugin_group_vvvvvxx function // #jform_joomla_plugin_group listeners for joomla_plugin_group_vvvvvws function
jQuery('#jform_joomla_plugin_group').on('keyup',function() jQuery('#jform_joomla_plugin_group').on('keyup',function()
{ {
var class_extends_vvvvvxx = jQuery("#jform_class_extends").val(); var class_extends_vvvvvws = jQuery("#jform_class_extends").val();
var joomla_plugin_group_vvvvvxx = jQuery("#jform_joomla_plugin_group").val(); var joomla_plugin_group_vvvvvws = jQuery("#jform_joomla_plugin_group").val();
vvvvvxx(class_extends_vvvvvxx,joomla_plugin_group_vvvvvxx); vvvvvws(class_extends_vvvvvws,joomla_plugin_group_vvvvvws);
}); });
jQuery('#adminForm').on('change', '#jform_joomla_plugin_group',function (e) jQuery('#adminForm').on('change', '#jform_joomla_plugin_group',function (e)
{ {
e.preventDefault(); e.preventDefault();
var class_extends_vvvvvxx = jQuery("#jform_class_extends").val(); var class_extends_vvvvvws = jQuery("#jform_class_extends").val();
var joomla_plugin_group_vvvvvxx = jQuery("#jform_joomla_plugin_group").val(); var joomla_plugin_group_vvvvvws = jQuery("#jform_joomla_plugin_group").val();
vvvvvxx(class_extends_vvvvvxx,joomla_plugin_group_vvvvvxx); vvvvvws(class_extends_vvvvvws,joomla_plugin_group_vvvvvws);
}); });
// #jform_joomla_plugin_group listeners for joomla_plugin_group_vvvvvxy function // #jform_joomla_plugin_group listeners for joomla_plugin_group_vvvvvwt function
jQuery('#jform_joomla_plugin_group').on('keyup',function() jQuery('#jform_joomla_plugin_group').on('keyup',function()
{ {
var joomla_plugin_group_vvvvvxy = jQuery("#jform_joomla_plugin_group").val(); var joomla_plugin_group_vvvvvwt = jQuery("#jform_joomla_plugin_group").val();
var class_extends_vvvvvxy = jQuery("#jform_class_extends").val(); var class_extends_vvvvvwt = jQuery("#jform_class_extends").val();
vvvvvxy(joomla_plugin_group_vvvvvxy,class_extends_vvvvvxy); vvvvvwt(joomla_plugin_group_vvvvvwt,class_extends_vvvvvwt);
}); });
jQuery('#adminForm').on('change', '#jform_joomla_plugin_group',function (e) jQuery('#adminForm').on('change', '#jform_joomla_plugin_group',function (e)
{ {
e.preventDefault(); e.preventDefault();
var joomla_plugin_group_vvvvvxy = jQuery("#jform_joomla_plugin_group").val(); var joomla_plugin_group_vvvvvwt = jQuery("#jform_joomla_plugin_group").val();
var class_extends_vvvvvxy = jQuery("#jform_class_extends").val(); var class_extends_vvvvvwt = jQuery("#jform_class_extends").val();
vvvvvxy(joomla_plugin_group_vvvvvxy,class_extends_vvvvvxy); vvvvvwt(joomla_plugin_group_vvvvvwt,class_extends_vvvvvwt);
}); });
// #jform_class_extends listeners for class_extends_vvvvvxy function // #jform_class_extends listeners for class_extends_vvvvvwt function
jQuery('#jform_class_extends').on('keyup',function() jQuery('#jform_class_extends').on('keyup',function()
{ {
var joomla_plugin_group_vvvvvxy = jQuery("#jform_joomla_plugin_group").val(); var joomla_plugin_group_vvvvvwt = jQuery("#jform_joomla_plugin_group").val();
var class_extends_vvvvvxy = jQuery("#jform_class_extends").val(); var class_extends_vvvvvwt = jQuery("#jform_class_extends").val();
vvvvvxy(joomla_plugin_group_vvvvvxy,class_extends_vvvvvxy); vvvvvwt(joomla_plugin_group_vvvvvwt,class_extends_vvvvvwt);
}); });
jQuery('#adminForm').on('change', '#jform_class_extends',function (e) jQuery('#adminForm').on('change', '#jform_class_extends',function (e)
{ {
e.preventDefault(); e.preventDefault();
var joomla_plugin_group_vvvvvxy = jQuery("#jform_joomla_plugin_group").val(); var joomla_plugin_group_vvvvvwt = jQuery("#jform_joomla_plugin_group").val();
var class_extends_vvvvvxy = jQuery("#jform_class_extends").val(); var class_extends_vvvvvwt = jQuery("#jform_class_extends").val();
vvvvvxy(joomla_plugin_group_vvvvvxy,class_extends_vvvvvxy); vvvvvwt(joomla_plugin_group_vvvvvwt,class_extends_vvvvvwt);
}); });
// #jform_class_extends listeners for class_extends_vvvvvxz function // #jform_class_extends listeners for class_extends_vvvvvwu function
jQuery('#jform_class_extends').on('keyup',function() jQuery('#jform_class_extends').on('keyup',function()
{ {
var class_extends_vvvvvxz = jQuery("#jform_class_extends").val(); var class_extends_vvvvvwu = jQuery("#jform_class_extends").val();
vvvvvxz(class_extends_vvvvvxz); vvvvvwu(class_extends_vvvvvwu);
}); });
jQuery('#adminForm').on('change', '#jform_class_extends',function (e) jQuery('#adminForm').on('change', '#jform_class_extends',function (e)
{ {
e.preventDefault(); e.preventDefault();
var class_extends_vvvvvxz = jQuery("#jform_class_extends").val(); var class_extends_vvvvvwu = jQuery("#jform_class_extends").val();
vvvvvxz(class_extends_vvvvvxz); vvvvvwu(class_extends_vvvvvwu);
}); });
// #jform_add_php_script_construct listeners for add_php_script_construct_vvvvvyb function // #jform_update_server_target listeners for update_server_target_vvvvvww function
jQuery('#jform_add_php_script_construct').on('keyup',function()
{
var add_php_script_construct_vvvvvyb = jQuery("#jform_add_php_script_construct input[type='radio']:checked").val();
vvvvvyb(add_php_script_construct_vvvvvyb);
});
jQuery('#adminForm').on('change', '#jform_add_php_script_construct',function (e)
{
e.preventDefault();
var add_php_script_construct_vvvvvyb = jQuery("#jform_add_php_script_construct input[type='radio']:checked").val();
vvvvvyb(add_php_script_construct_vvvvvyb);
});
// #jform_add_php_preflight_install listeners for add_php_preflight_install_vvvvvyc function
jQuery('#jform_add_php_preflight_install').on('keyup',function()
{
var add_php_preflight_install_vvvvvyc = jQuery("#jform_add_php_preflight_install input[type='radio']:checked").val();
vvvvvyc(add_php_preflight_install_vvvvvyc);
});
jQuery('#adminForm').on('change', '#jform_add_php_preflight_install',function (e)
{
e.preventDefault();
var add_php_preflight_install_vvvvvyc = jQuery("#jform_add_php_preflight_install input[type='radio']:checked").val();
vvvvvyc(add_php_preflight_install_vvvvvyc);
});
// #jform_add_php_preflight_update listeners for add_php_preflight_update_vvvvvyd function
jQuery('#jform_add_php_preflight_update').on('keyup',function()
{
var add_php_preflight_update_vvvvvyd = jQuery("#jform_add_php_preflight_update input[type='radio']:checked").val();
vvvvvyd(add_php_preflight_update_vvvvvyd);
});
jQuery('#adminForm').on('change', '#jform_add_php_preflight_update',function (e)
{
e.preventDefault();
var add_php_preflight_update_vvvvvyd = jQuery("#jform_add_php_preflight_update input[type='radio']:checked").val();
vvvvvyd(add_php_preflight_update_vvvvvyd);
});
// #jform_add_php_preflight_uninstall listeners for add_php_preflight_uninstall_vvvvvye function
jQuery('#jform_add_php_preflight_uninstall').on('keyup',function()
{
var add_php_preflight_uninstall_vvvvvye = jQuery("#jform_add_php_preflight_uninstall input[type='radio']:checked").val();
vvvvvye(add_php_preflight_uninstall_vvvvvye);
});
jQuery('#adminForm').on('change', '#jform_add_php_preflight_uninstall',function (e)
{
e.preventDefault();
var add_php_preflight_uninstall_vvvvvye = jQuery("#jform_add_php_preflight_uninstall input[type='radio']:checked").val();
vvvvvye(add_php_preflight_uninstall_vvvvvye);
});
// #jform_add_php_postflight_install listeners for add_php_postflight_install_vvvvvyf function
jQuery('#jform_add_php_postflight_install').on('keyup',function()
{
var add_php_postflight_install_vvvvvyf = jQuery("#jform_add_php_postflight_install input[type='radio']:checked").val();
vvvvvyf(add_php_postflight_install_vvvvvyf);
});
jQuery('#adminForm').on('change', '#jform_add_php_postflight_install',function (e)
{
e.preventDefault();
var add_php_postflight_install_vvvvvyf = jQuery("#jform_add_php_postflight_install input[type='radio']:checked").val();
vvvvvyf(add_php_postflight_install_vvvvvyf);
});
// #jform_add_php_postflight_update listeners for add_php_postflight_update_vvvvvyg function
jQuery('#jform_add_php_postflight_update').on('keyup',function()
{
var add_php_postflight_update_vvvvvyg = jQuery("#jform_add_php_postflight_update input[type='radio']:checked").val();
vvvvvyg(add_php_postflight_update_vvvvvyg);
});
jQuery('#adminForm').on('change', '#jform_add_php_postflight_update',function (e)
{
e.preventDefault();
var add_php_postflight_update_vvvvvyg = jQuery("#jform_add_php_postflight_update input[type='radio']:checked").val();
vvvvvyg(add_php_postflight_update_vvvvvyg);
});
// #jform_add_php_method_uninstall listeners for add_php_method_uninstall_vvvvvyh function
jQuery('#jform_add_php_method_uninstall').on('keyup',function()
{
var add_php_method_uninstall_vvvvvyh = jQuery("#jform_add_php_method_uninstall input[type='radio']:checked").val();
vvvvvyh(add_php_method_uninstall_vvvvvyh);
});
jQuery('#adminForm').on('change', '#jform_add_php_method_uninstall',function (e)
{
e.preventDefault();
var add_php_method_uninstall_vvvvvyh = jQuery("#jform_add_php_method_uninstall input[type='radio']:checked").val();
vvvvvyh(add_php_method_uninstall_vvvvvyh);
});
// #jform_update_server_target listeners for update_server_target_vvvvvyi function
jQuery('#jform_update_server_target').on('keyup',function() jQuery('#jform_update_server_target').on('keyup',function()
{ {
var update_server_target_vvvvvyi = jQuery("#jform_update_server_target input[type='radio']:checked").val(); var update_server_target_vvvvvww = jQuery("#jform_update_server_target input[type='radio']:checked").val();
var add_update_server_vvvvvyi = jQuery("#jform_add_update_server input[type='radio']:checked").val(); var add_update_server_vvvvvww = jQuery("#jform_add_update_server input[type='radio']:checked").val();
vvvvvyi(update_server_target_vvvvvyi,add_update_server_vvvvvyi); vvvvvww(update_server_target_vvvvvww,add_update_server_vvvvvww);
}); });
jQuery('#adminForm').on('change', '#jform_update_server_target',function (e) jQuery('#adminForm').on('change', '#jform_update_server_target',function (e)
{ {
e.preventDefault(); e.preventDefault();
var update_server_target_vvvvvyi = jQuery("#jform_update_server_target input[type='radio']:checked").val(); var update_server_target_vvvvvww = jQuery("#jform_update_server_target input[type='radio']:checked").val();
var add_update_server_vvvvvyi = jQuery("#jform_add_update_server input[type='radio']:checked").val(); var add_update_server_vvvvvww = jQuery("#jform_add_update_server input[type='radio']:checked").val();
vvvvvyi(update_server_target_vvvvvyi,add_update_server_vvvvvyi); vvvvvww(update_server_target_vvvvvww,add_update_server_vvvvvww);
}); });
// #jform_add_update_server listeners for add_update_server_vvvvvyi function // #jform_add_update_server listeners for add_update_server_vvvvvww function
jQuery('#jform_add_update_server').on('keyup',function() jQuery('#jform_add_update_server').on('keyup',function()
{ {
var update_server_target_vvvvvyi = jQuery("#jform_update_server_target input[type='radio']:checked").val(); var update_server_target_vvvvvww = jQuery("#jform_update_server_target input[type='radio']:checked").val();
var add_update_server_vvvvvyi = jQuery("#jform_add_update_server input[type='radio']:checked").val(); var add_update_server_vvvvvww = jQuery("#jform_add_update_server input[type='radio']:checked").val();
vvvvvyi(update_server_target_vvvvvyi,add_update_server_vvvvvyi); vvvvvww(update_server_target_vvvvvww,add_update_server_vvvvvww);
}); });
jQuery('#adminForm').on('change', '#jform_add_update_server',function (e) jQuery('#adminForm').on('change', '#jform_add_update_server',function (e)
{ {
e.preventDefault(); e.preventDefault();
var update_server_target_vvvvvyi = jQuery("#jform_update_server_target input[type='radio']:checked").val(); var update_server_target_vvvvvww = jQuery("#jform_update_server_target input[type='radio']:checked").val();
var add_update_server_vvvvvyi = jQuery("#jform_add_update_server input[type='radio']:checked").val(); var add_update_server_vvvvvww = jQuery("#jform_add_update_server input[type='radio']:checked").val();
vvvvvyi(update_server_target_vvvvvyi,add_update_server_vvvvvyi); vvvvvww(update_server_target_vvvvvww,add_update_server_vvvvvww);
}); });
// #jform_add_update_server listeners for add_update_server_vvvvvyj function // #jform_add_update_server listeners for add_update_server_vvvvvwx function
jQuery('#jform_add_update_server').on('keyup',function() jQuery('#jform_add_update_server').on('keyup',function()
{ {
var add_update_server_vvvvvyj = jQuery("#jform_add_update_server input[type='radio']:checked").val(); var add_update_server_vvvvvwx = jQuery("#jform_add_update_server input[type='radio']:checked").val();
var update_server_target_vvvvvyj = jQuery("#jform_update_server_target input[type='radio']:checked").val(); var update_server_target_vvvvvwx = jQuery("#jform_update_server_target input[type='radio']:checked").val();
vvvvvyj(add_update_server_vvvvvyj,update_server_target_vvvvvyj); vvvvvwx(add_update_server_vvvvvwx,update_server_target_vvvvvwx);
}); });
jQuery('#adminForm').on('change', '#jform_add_update_server',function (e) jQuery('#adminForm').on('change', '#jform_add_update_server',function (e)
{ {
e.preventDefault(); e.preventDefault();
var add_update_server_vvvvvyj = jQuery("#jform_add_update_server input[type='radio']:checked").val(); var add_update_server_vvvvvwx = jQuery("#jform_add_update_server input[type='radio']:checked").val();
var update_server_target_vvvvvyj = jQuery("#jform_update_server_target input[type='radio']:checked").val(); var update_server_target_vvvvvwx = jQuery("#jform_update_server_target input[type='radio']:checked").val();
vvvvvyj(add_update_server_vvvvvyj,update_server_target_vvvvvyj); vvvvvwx(add_update_server_vvvvvwx,update_server_target_vvvvvwx);
}); });
// #jform_update_server_target listeners for update_server_target_vvvvvyj function // #jform_update_server_target listeners for update_server_target_vvvvvwx function
jQuery('#jform_update_server_target').on('keyup',function() jQuery('#jform_update_server_target').on('keyup',function()
{ {
var add_update_server_vvvvvyj = jQuery("#jform_add_update_server input[type='radio']:checked").val(); var add_update_server_vvvvvwx = jQuery("#jform_add_update_server input[type='radio']:checked").val();
var update_server_target_vvvvvyj = jQuery("#jform_update_server_target input[type='radio']:checked").val(); var update_server_target_vvvvvwx = jQuery("#jform_update_server_target input[type='radio']:checked").val();
vvvvvyj(add_update_server_vvvvvyj,update_server_target_vvvvvyj); vvvvvwx(add_update_server_vvvvvwx,update_server_target_vvvvvwx);
}); });
jQuery('#adminForm').on('change', '#jform_update_server_target',function (e) jQuery('#adminForm').on('change', '#jform_update_server_target',function (e)
{ {
e.preventDefault(); e.preventDefault();
var add_update_server_vvvvvyj = jQuery("#jform_add_update_server input[type='radio']:checked").val(); var add_update_server_vvvvvwx = jQuery("#jform_add_update_server input[type='radio']:checked").val();
var update_server_target_vvvvvyj = jQuery("#jform_update_server_target input[type='radio']:checked").val(); var update_server_target_vvvvvwx = jQuery("#jform_update_server_target input[type='radio']:checked").val();
vvvvvyj(add_update_server_vvvvvyj,update_server_target_vvvvvyj); vvvvvwx(add_update_server_vvvvvwx,update_server_target_vvvvvwx);
}); });
// #jform_update_server_target listeners for update_server_target_vvvvvyk function // #jform_update_server_target listeners for update_server_target_vvvvvwy function
jQuery('#jform_update_server_target').on('keyup',function() jQuery('#jform_update_server_target').on('keyup',function()
{ {
var update_server_target_vvvvvyk = jQuery("#jform_update_server_target input[type='radio']:checked").val(); var update_server_target_vvvvvwy = jQuery("#jform_update_server_target input[type='radio']:checked").val();
var add_update_server_vvvvvyk = jQuery("#jform_add_update_server input[type='radio']:checked").val(); var add_update_server_vvvvvwy = jQuery("#jform_add_update_server input[type='radio']:checked").val();
vvvvvyk(update_server_target_vvvvvyk,add_update_server_vvvvvyk); vvvvvwy(update_server_target_vvvvvwy,add_update_server_vvvvvwy);
}); });
jQuery('#adminForm').on('change', '#jform_update_server_target',function (e) jQuery('#adminForm').on('change', '#jform_update_server_target',function (e)
{ {
e.preventDefault(); e.preventDefault();
var update_server_target_vvvvvyk = jQuery("#jform_update_server_target input[type='radio']:checked").val(); var update_server_target_vvvvvwy = jQuery("#jform_update_server_target input[type='radio']:checked").val();
var add_update_server_vvvvvyk = jQuery("#jform_add_update_server input[type='radio']:checked").val(); var add_update_server_vvvvvwy = jQuery("#jform_add_update_server input[type='radio']:checked").val();
vvvvvyk(update_server_target_vvvvvyk,add_update_server_vvvvvyk); vvvvvwy(update_server_target_vvvvvwy,add_update_server_vvvvvwy);
}); });
// #jform_add_update_server listeners for add_update_server_vvvvvyk function // #jform_add_update_server listeners for add_update_server_vvvvvwy function
jQuery('#jform_add_update_server').on('keyup',function() jQuery('#jform_add_update_server').on('keyup',function()
{ {
var update_server_target_vvvvvyk = jQuery("#jform_update_server_target input[type='radio']:checked").val(); var update_server_target_vvvvvwy = jQuery("#jform_update_server_target input[type='radio']:checked").val();
var add_update_server_vvvvvyk = jQuery("#jform_add_update_server input[type='radio']:checked").val(); var add_update_server_vvvvvwy = jQuery("#jform_add_update_server input[type='radio']:checked").val();
vvvvvyk(update_server_target_vvvvvyk,add_update_server_vvvvvyk); vvvvvwy(update_server_target_vvvvvwy,add_update_server_vvvvvwy);
}); });
jQuery('#adminForm').on('change', '#jform_add_update_server',function (e) jQuery('#adminForm').on('change', '#jform_add_update_server',function (e)
{ {
e.preventDefault(); e.preventDefault();
var update_server_target_vvvvvyk = jQuery("#jform_update_server_target input[type='radio']:checked").val(); var update_server_target_vvvvvwy = jQuery("#jform_update_server_target input[type='radio']:checked").val();
var add_update_server_vvvvvyk = jQuery("#jform_add_update_server input[type='radio']:checked").val(); var add_update_server_vvvvvwy = jQuery("#jform_add_update_server input[type='radio']:checked").val();
vvvvvyk(update_server_target_vvvvvyk,add_update_server_vvvvvyk); vvvvvwy(update_server_target_vvvvvwy,add_update_server_vvvvvwy);
}); });
// #jform_update_server_target listeners for update_server_target_vvvvvym function // #jform_update_server_target listeners for update_server_target_vvvvvxa function
jQuery('#jform_update_server_target').on('keyup',function() jQuery('#jform_update_server_target').on('keyup',function()
{ {
var update_server_target_vvvvvym = jQuery("#jform_update_server_target input[type='radio']:checked").val(); var update_server_target_vvvvvxa = jQuery("#jform_update_server_target input[type='radio']:checked").val();
var add_update_server_vvvvvym = jQuery("#jform_add_update_server input[type='radio']:checked").val(); var add_update_server_vvvvvxa = jQuery("#jform_add_update_server input[type='radio']:checked").val();
vvvvvym(update_server_target_vvvvvym,add_update_server_vvvvvym); vvvvvxa(update_server_target_vvvvvxa,add_update_server_vvvvvxa);
}); });
jQuery('#adminForm').on('change', '#jform_update_server_target',function (e) jQuery('#adminForm').on('change', '#jform_update_server_target',function (e)
{ {
e.preventDefault(); e.preventDefault();
var update_server_target_vvvvvym = jQuery("#jform_update_server_target input[type='radio']:checked").val(); var update_server_target_vvvvvxa = jQuery("#jform_update_server_target input[type='radio']:checked").val();
var add_update_server_vvvvvym = jQuery("#jform_add_update_server input[type='radio']:checked").val(); var add_update_server_vvvvvxa = jQuery("#jform_add_update_server input[type='radio']:checked").val();
vvvvvym(update_server_target_vvvvvym,add_update_server_vvvvvym); vvvvvxa(update_server_target_vvvvvxa,add_update_server_vvvvvxa);
}); });
// #jform_add_update_server listeners for add_update_server_vvvvvym function // #jform_add_update_server listeners for add_update_server_vvvvvxa function
jQuery('#jform_add_update_server').on('keyup',function() jQuery('#jform_add_update_server').on('keyup',function()
{ {
var update_server_target_vvvvvym = jQuery("#jform_update_server_target input[type='radio']:checked").val(); var update_server_target_vvvvvxa = jQuery("#jform_update_server_target input[type='radio']:checked").val();
var add_update_server_vvvvvym = jQuery("#jform_add_update_server input[type='radio']:checked").val(); var add_update_server_vvvvvxa = jQuery("#jform_add_update_server input[type='radio']:checked").val();
vvvvvym(update_server_target_vvvvvym,add_update_server_vvvvvym); vvvvvxa(update_server_target_vvvvvxa,add_update_server_vvvvvxa);
}); });
jQuery('#adminForm').on('change', '#jform_add_update_server',function (e) jQuery('#adminForm').on('change', '#jform_add_update_server',function (e)
{ {
e.preventDefault(); e.preventDefault();
var update_server_target_vvvvvym = jQuery("#jform_update_server_target input[type='radio']:checked").val(); var update_server_target_vvvvvxa = jQuery("#jform_update_server_target input[type='radio']:checked").val();
var add_update_server_vvvvvym = jQuery("#jform_add_update_server input[type='radio']:checked").val(); var add_update_server_vvvvvxa = jQuery("#jform_add_update_server input[type='radio']:checked").val();
vvvvvym(update_server_target_vvvvvym,add_update_server_vvvvvym); vvvvvxa(update_server_target_vvvvvxa,add_update_server_vvvvvxa);
});
// #jform_add_update_server listeners for add_update_server_vvvvvyo function
jQuery('#jform_add_update_server').on('keyup',function()
{
var add_update_server_vvvvvyo = jQuery("#jform_add_update_server input[type='radio']:checked").val();
vvvvvyo(add_update_server_vvvvvyo);
});
jQuery('#adminForm').on('change', '#jform_add_update_server',function (e)
{
e.preventDefault();
var add_update_server_vvvvvyo = jQuery("#jform_add_update_server input[type='radio']:checked").val();
vvvvvyo(add_update_server_vvvvvyo);
});
// #jform_add_sql listeners for add_sql_vvvvvyp function
jQuery('#jform_add_sql').on('keyup',function()
{
var add_sql_vvvvvyp = jQuery("#jform_add_sql input[type='radio']:checked").val();
vvvvvyp(add_sql_vvvvvyp);
});
jQuery('#adminForm').on('change', '#jform_add_sql',function (e)
{
e.preventDefault();
var add_sql_vvvvvyp = jQuery("#jform_add_sql input[type='radio']:checked").val();
vvvvvyp(add_sql_vvvvvyp);
});
// #jform_add_sql_uninstall listeners for add_sql_uninstall_vvvvvyq function
jQuery('#jform_add_sql_uninstall').on('keyup',function()
{
var add_sql_uninstall_vvvvvyq = jQuery("#jform_add_sql_uninstall input[type='radio']:checked").val();
vvvvvyq(add_sql_uninstall_vvvvvyq);
});
jQuery('#adminForm').on('change', '#jform_add_sql_uninstall',function (e)
{
e.preventDefault();
var add_sql_uninstall_vvvvvyq = jQuery("#jform_add_sql_uninstall input[type='radio']:checked").val();
vvvvvyq(add_sql_uninstall_vvvvvyq);
});
// #jform_add_update_server listeners for add_update_server_vvvvvyr function
jQuery('#jform_add_update_server').on('keyup',function()
{
var add_update_server_vvvvvyr = jQuery("#jform_add_update_server input[type='radio']:checked").val();
vvvvvyr(add_update_server_vvvvvyr);
});
jQuery('#adminForm').on('change', '#jform_add_update_server',function (e)
{
e.preventDefault();
var add_update_server_vvvvvyr = jQuery("#jform_add_update_server input[type='radio']:checked").val();
vvvvvyr(add_update_server_vvvvvyr);
});
// #jform_add_sales_server listeners for add_sales_server_vvvvvys function
jQuery('#jform_add_sales_server').on('keyup',function()
{
var add_sales_server_vvvvvys = jQuery("#jform_add_sales_server input[type='radio']:checked").val();
vvvvvys(add_sales_server_vvvvvys);
});
jQuery('#adminForm').on('change', '#jform_add_sales_server',function (e)
{
e.preventDefault();
var add_sales_server_vvvvvys = jQuery("#jform_add_sales_server input[type='radio']:checked").val();
vvvvvys(add_sales_server_vvvvvys);
});
// #jform_addreadme listeners for addreadme_vvvvvyt function
jQuery('#jform_addreadme').on('keyup',function()
{
var addreadme_vvvvvyt = jQuery("#jform_addreadme input[type='radio']:checked").val();
vvvvvyt(addreadme_vvvvvyt);
});
jQuery('#adminForm').on('change', '#jform_addreadme',function (e)
{
e.preventDefault();
var addreadme_vvvvvyt = jQuery("#jform_addreadme input[type='radio']:checked").val();
vvvvvyt(addreadme_vvvvvyt);
}); });

View File

@ -131,18 +131,18 @@ defined('_JEXEC') or die;
<script type="text/javascript"> <script type="text/javascript">
// #jform_add_php_view listeners for add_php_view_vvvvwaz function // #jform_add_php_view listeners for add_php_view_vvvvvzh function
jQuery('#jform_add_php_view').on('keyup',function() jQuery('#jform_add_php_view').on('keyup',function()
{ {
var add_php_view_vvvvwaz = jQuery("#jform_add_php_view input[type='radio']:checked").val(); var add_php_view_vvvvvzh = jQuery("#jform_add_php_view input[type='radio']:checked").val();
vvvvwaz(add_php_view_vvvvwaz); vvvvvzh(add_php_view_vvvvvzh);
}); });
jQuery('#adminForm').on('change', '#jform_add_php_view',function (e) jQuery('#adminForm').on('change', '#jform_add_php_view',function (e)
{ {
e.preventDefault(); e.preventDefault();
var add_php_view_vvvvwaz = jQuery("#jform_add_php_view input[type='radio']:checked").val(); var add_php_view_vvvvvzh = jQuery("#jform_add_php_view input[type='radio']:checked").val();
vvvvwaz(add_php_view_vvvvwaz); vvvvvzh(add_php_view_vvvvvzh);
}); });

View File

@ -145,407 +145,407 @@ defined('_JEXEC') or die;
<script type="text/javascript"> <script type="text/javascript">
// #jform_how listeners for how_vvvvwch function // #jform_how listeners for how_vvvvwap function
jQuery('#jform_how').on('keyup',function() jQuery('#jform_how').on('keyup',function()
{ {
var how_vvvvwch = jQuery("#jform_how").val(); var how_vvvvwap = jQuery("#jform_how").val();
var target_vvvvwch = jQuery("#jform_target input[type='radio']:checked").val(); var target_vvvvwap = jQuery("#jform_target input[type='radio']:checked").val();
vvvvwch(how_vvvvwch,target_vvvvwch); vvvvwap(how_vvvvwap,target_vvvvwap);
}); });
jQuery('#adminForm').on('change', '#jform_how',function (e) jQuery('#adminForm').on('change', '#jform_how',function (e)
{ {
e.preventDefault(); e.preventDefault();
var how_vvvvwch = jQuery("#jform_how").val(); var how_vvvvwap = jQuery("#jform_how").val();
var target_vvvvwch = jQuery("#jform_target input[type='radio']:checked").val(); var target_vvvvwap = jQuery("#jform_target input[type='radio']:checked").val();
vvvvwch(how_vvvvwch,target_vvvvwch); vvvvwap(how_vvvvwap,target_vvvvwap);
}); });
// #jform_target listeners for target_vvvvwch function // #jform_target listeners for target_vvvvwap function
jQuery('#jform_target').on('keyup',function() jQuery('#jform_target').on('keyup',function()
{ {
var how_vvvvwch = jQuery("#jform_how").val(); var how_vvvvwap = jQuery("#jform_how").val();
var target_vvvvwch = jQuery("#jform_target input[type='radio']:checked").val(); var target_vvvvwap = jQuery("#jform_target input[type='radio']:checked").val();
vvvvwch(how_vvvvwch,target_vvvvwch); vvvvwap(how_vvvvwap,target_vvvvwap);
}); });
jQuery('#adminForm').on('change', '#jform_target',function (e) jQuery('#adminForm').on('change', '#jform_target',function (e)
{ {
e.preventDefault(); e.preventDefault();
var how_vvvvwch = jQuery("#jform_how").val(); var how_vvvvwap = jQuery("#jform_how").val();
var target_vvvvwch = jQuery("#jform_target input[type='radio']:checked").val(); var target_vvvvwap = jQuery("#jform_target input[type='radio']:checked").val();
vvvvwch(how_vvvvwch,target_vvvvwch); vvvvwap(how_vvvvwap,target_vvvvwap);
}); });
// #jform_how listeners for how_vvvvwcj function // #jform_how listeners for how_vvvvwar function
jQuery('#jform_how').on('keyup',function() jQuery('#jform_how').on('keyup',function()
{ {
var how_vvvvwcj = jQuery("#jform_how").val(); var how_vvvvwar = jQuery("#jform_how").val();
var target_vvvvwcj = jQuery("#jform_target input[type='radio']:checked").val(); var target_vvvvwar = jQuery("#jform_target input[type='radio']:checked").val();
vvvvwcj(how_vvvvwcj,target_vvvvwcj); vvvvwar(how_vvvvwar,target_vvvvwar);
}); });
jQuery('#adminForm').on('change', '#jform_how',function (e) jQuery('#adminForm').on('change', '#jform_how',function (e)
{ {
e.preventDefault(); e.preventDefault();
var how_vvvvwcj = jQuery("#jform_how").val(); var how_vvvvwar = jQuery("#jform_how").val();
var target_vvvvwcj = jQuery("#jform_target input[type='radio']:checked").val(); var target_vvvvwar = jQuery("#jform_target input[type='radio']:checked").val();
vvvvwcj(how_vvvvwcj,target_vvvvwcj); vvvvwar(how_vvvvwar,target_vvvvwar);
}); });
// #jform_target listeners for target_vvvvwcj function // #jform_target listeners for target_vvvvwar function
jQuery('#jform_target').on('keyup',function() jQuery('#jform_target').on('keyup',function()
{ {
var how_vvvvwcj = jQuery("#jform_how").val(); var how_vvvvwar = jQuery("#jform_how").val();
var target_vvvvwcj = jQuery("#jform_target input[type='radio']:checked").val(); var target_vvvvwar = jQuery("#jform_target input[type='radio']:checked").val();
vvvvwcj(how_vvvvwcj,target_vvvvwcj); vvvvwar(how_vvvvwar,target_vvvvwar);
}); });
jQuery('#adminForm').on('change', '#jform_target',function (e) jQuery('#adminForm').on('change', '#jform_target',function (e)
{ {
e.preventDefault(); e.preventDefault();
var how_vvvvwcj = jQuery("#jform_how").val(); var how_vvvvwar = jQuery("#jform_how").val();
var target_vvvvwcj = jQuery("#jform_target input[type='radio']:checked").val(); var target_vvvvwar = jQuery("#jform_target input[type='radio']:checked").val();
vvvvwcj(how_vvvvwcj,target_vvvvwcj); vvvvwar(how_vvvvwar,target_vvvvwar);
}); });
// #jform_how listeners for how_vvvvwcl function // #jform_how listeners for how_vvvvwat function
jQuery('#jform_how').on('keyup',function() jQuery('#jform_how').on('keyup',function()
{ {
var how_vvvvwcl = jQuery("#jform_how").val(); var how_vvvvwat = jQuery("#jform_how").val();
var target_vvvvwcl = jQuery("#jform_target input[type='radio']:checked").val(); var target_vvvvwat = jQuery("#jform_target input[type='radio']:checked").val();
vvvvwcl(how_vvvvwcl,target_vvvvwcl); vvvvwat(how_vvvvwat,target_vvvvwat);
}); });
jQuery('#adminForm').on('change', '#jform_how',function (e) jQuery('#adminForm').on('change', '#jform_how',function (e)
{ {
e.preventDefault(); e.preventDefault();
var how_vvvvwcl = jQuery("#jform_how").val(); var how_vvvvwat = jQuery("#jform_how").val();
var target_vvvvwcl = jQuery("#jform_target input[type='radio']:checked").val(); var target_vvvvwat = jQuery("#jform_target input[type='radio']:checked").val();
vvvvwcl(how_vvvvwcl,target_vvvvwcl); vvvvwat(how_vvvvwat,target_vvvvwat);
}); });
// #jform_target listeners for target_vvvvwcl function // #jform_target listeners for target_vvvvwat function
jQuery('#jform_target').on('keyup',function() jQuery('#jform_target').on('keyup',function()
{ {
var how_vvvvwcl = jQuery("#jform_how").val(); var how_vvvvwat = jQuery("#jform_how").val();
var target_vvvvwcl = jQuery("#jform_target input[type='radio']:checked").val(); var target_vvvvwat = jQuery("#jform_target input[type='radio']:checked").val();
vvvvwcl(how_vvvvwcl,target_vvvvwcl); vvvvwat(how_vvvvwat,target_vvvvwat);
}); });
jQuery('#adminForm').on('change', '#jform_target',function (e) jQuery('#adminForm').on('change', '#jform_target',function (e)
{ {
e.preventDefault(); e.preventDefault();
var how_vvvvwcl = jQuery("#jform_how").val(); var how_vvvvwat = jQuery("#jform_how").val();
var target_vvvvwcl = jQuery("#jform_target input[type='radio']:checked").val(); var target_vvvvwat = jQuery("#jform_target input[type='radio']:checked").val();
vvvvwcl(how_vvvvwcl,target_vvvvwcl); vvvvwat(how_vvvvwat,target_vvvvwat);
}); });
// #jform_how listeners for how_vvvvwcn function // #jform_how listeners for how_vvvvwav function
jQuery('#jform_how').on('keyup',function() jQuery('#jform_how').on('keyup',function()
{ {
var how_vvvvwcn = jQuery("#jform_how").val(); var how_vvvvwav = jQuery("#jform_how").val();
var target_vvvvwcn = jQuery("#jform_target input[type='radio']:checked").val(); var target_vvvvwav = jQuery("#jform_target input[type='radio']:checked").val();
vvvvwcn(how_vvvvwcn,target_vvvvwcn); vvvvwav(how_vvvvwav,target_vvvvwav);
}); });
jQuery('#adminForm').on('change', '#jform_how',function (e) jQuery('#adminForm').on('change', '#jform_how',function (e)
{ {
e.preventDefault(); e.preventDefault();
var how_vvvvwcn = jQuery("#jform_how").val(); var how_vvvvwav = jQuery("#jform_how").val();
var target_vvvvwcn = jQuery("#jform_target input[type='radio']:checked").val(); var target_vvvvwav = jQuery("#jform_target input[type='radio']:checked").val();
vvvvwcn(how_vvvvwcn,target_vvvvwcn); vvvvwav(how_vvvvwav,target_vvvvwav);
}); });
// #jform_target listeners for target_vvvvwcn function // #jform_target listeners for target_vvvvwav function
jQuery('#jform_target').on('keyup',function() jQuery('#jform_target').on('keyup',function()
{ {
var how_vvvvwcn = jQuery("#jform_how").val(); var how_vvvvwav = jQuery("#jform_how").val();
var target_vvvvwcn = jQuery("#jform_target input[type='radio']:checked").val(); var target_vvvvwav = jQuery("#jform_target input[type='radio']:checked").val();
vvvvwcn(how_vvvvwcn,target_vvvvwcn); vvvvwav(how_vvvvwav,target_vvvvwav);
}); });
jQuery('#adminForm').on('change', '#jform_target',function (e) jQuery('#adminForm').on('change', '#jform_target',function (e)
{ {
e.preventDefault(); e.preventDefault();
var how_vvvvwcn = jQuery("#jform_how").val(); var how_vvvvwav = jQuery("#jform_how").val();
var target_vvvvwcn = jQuery("#jform_target input[type='radio']:checked").val(); var target_vvvvwav = jQuery("#jform_target input[type='radio']:checked").val();
vvvvwcn(how_vvvvwcn,target_vvvvwcn); vvvvwav(how_vvvvwav,target_vvvvwav);
}); });
// #jform_how listeners for how_vvvvwcp function // #jform_how listeners for how_vvvvwax function
jQuery('#jform_how').on('keyup',function() jQuery('#jform_how').on('keyup',function()
{ {
var how_vvvvwcp = jQuery("#jform_how").val(); var how_vvvvwax = jQuery("#jform_how").val();
var target_vvvvwcp = jQuery("#jform_target input[type='radio']:checked").val(); var target_vvvvwax = jQuery("#jform_target input[type='radio']:checked").val();
vvvvwcp(how_vvvvwcp,target_vvvvwcp); vvvvwax(how_vvvvwax,target_vvvvwax);
}); });
jQuery('#adminForm').on('change', '#jform_how',function (e) jQuery('#adminForm').on('change', '#jform_how',function (e)
{ {
e.preventDefault(); e.preventDefault();
var how_vvvvwcp = jQuery("#jform_how").val(); var how_vvvvwax = jQuery("#jform_how").val();
var target_vvvvwcp = jQuery("#jform_target input[type='radio']:checked").val(); var target_vvvvwax = jQuery("#jform_target input[type='radio']:checked").val();
vvvvwcp(how_vvvvwcp,target_vvvvwcp); vvvvwax(how_vvvvwax,target_vvvvwax);
}); });
// #jform_target listeners for target_vvvvwcp function // #jform_target listeners for target_vvvvwax function
jQuery('#jform_target').on('keyup',function() jQuery('#jform_target').on('keyup',function()
{ {
var how_vvvvwcp = jQuery("#jform_how").val(); var how_vvvvwax = jQuery("#jform_how").val();
var target_vvvvwcp = jQuery("#jform_target input[type='radio']:checked").val(); var target_vvvvwax = jQuery("#jform_target input[type='radio']:checked").val();
vvvvwcp(how_vvvvwcp,target_vvvvwcp); vvvvwax(how_vvvvwax,target_vvvvwax);
}); });
jQuery('#adminForm').on('change', '#jform_target',function (e) jQuery('#adminForm').on('change', '#jform_target',function (e)
{ {
e.preventDefault(); e.preventDefault();
var how_vvvvwcp = jQuery("#jform_how").val(); var how_vvvvwax = jQuery("#jform_how").val();
var target_vvvvwcp = jQuery("#jform_target input[type='radio']:checked").val(); var target_vvvvwax = jQuery("#jform_target input[type='radio']:checked").val();
vvvvwcp(how_vvvvwcp,target_vvvvwcp); vvvvwax(how_vvvvwax,target_vvvvwax);
}); });
// #jform_target listeners for target_vvvvwcq function // #jform_target listeners for target_vvvvway function
jQuery('#jform_target').on('keyup',function() jQuery('#jform_target').on('keyup',function()
{ {
var target_vvvvwcq = jQuery("#jform_target input[type='radio']:checked").val(); var target_vvvvway = jQuery("#jform_target input[type='radio']:checked").val();
var how_vvvvwcq = jQuery("#jform_how").val(); var how_vvvvway = jQuery("#jform_how").val();
vvvvwcq(target_vvvvwcq,how_vvvvwcq); vvvvway(target_vvvvway,how_vvvvway);
}); });
jQuery('#adminForm').on('change', '#jform_target',function (e) jQuery('#adminForm').on('change', '#jform_target',function (e)
{ {
e.preventDefault(); e.preventDefault();
var target_vvvvwcq = jQuery("#jform_target input[type='radio']:checked").val(); var target_vvvvway = jQuery("#jform_target input[type='radio']:checked").val();
var how_vvvvwcq = jQuery("#jform_how").val(); var how_vvvvway = jQuery("#jform_how").val();
vvvvwcq(target_vvvvwcq,how_vvvvwcq); vvvvway(target_vvvvway,how_vvvvway);
}); });
// #jform_how listeners for how_vvvvwcq function // #jform_how listeners for how_vvvvway function
jQuery('#jform_how').on('keyup',function() jQuery('#jform_how').on('keyup',function()
{ {
var target_vvvvwcq = jQuery("#jform_target input[type='radio']:checked").val(); var target_vvvvway = jQuery("#jform_target input[type='radio']:checked").val();
var how_vvvvwcq = jQuery("#jform_how").val(); var how_vvvvway = jQuery("#jform_how").val();
vvvvwcq(target_vvvvwcq,how_vvvvwcq); vvvvway(target_vvvvway,how_vvvvway);
}); });
jQuery('#adminForm').on('change', '#jform_how',function (e) jQuery('#adminForm').on('change', '#jform_how',function (e)
{ {
e.preventDefault(); e.preventDefault();
var target_vvvvwcq = jQuery("#jform_target input[type='radio']:checked").val(); var target_vvvvway = jQuery("#jform_target input[type='radio']:checked").val();
var how_vvvvwcq = jQuery("#jform_how").val(); var how_vvvvway = jQuery("#jform_how").val();
vvvvwcq(target_vvvvwcq,how_vvvvwcq); vvvvway(target_vvvvway,how_vvvvway);
}); });
// #jform_how listeners for how_vvvvwcr function // #jform_how listeners for how_vvvvwaz function
jQuery('#jform_how').on('keyup',function() jQuery('#jform_how').on('keyup',function()
{ {
var how_vvvvwcr = jQuery("#jform_how").val(); var how_vvvvwaz = jQuery("#jform_how").val();
var target_vvvvwcr = jQuery("#jform_target input[type='radio']:checked").val(); var target_vvvvwaz = jQuery("#jform_target input[type='radio']:checked").val();
vvvvwcr(how_vvvvwcr,target_vvvvwcr); vvvvwaz(how_vvvvwaz,target_vvvvwaz);
}); });
jQuery('#adminForm').on('change', '#jform_how',function (e) jQuery('#adminForm').on('change', '#jform_how',function (e)
{ {
e.preventDefault(); e.preventDefault();
var how_vvvvwcr = jQuery("#jform_how").val(); var how_vvvvwaz = jQuery("#jform_how").val();
var target_vvvvwcr = jQuery("#jform_target input[type='radio']:checked").val(); var target_vvvvwaz = jQuery("#jform_target input[type='radio']:checked").val();
vvvvwcr(how_vvvvwcr,target_vvvvwcr); vvvvwaz(how_vvvvwaz,target_vvvvwaz);
}); });
// #jform_target listeners for target_vvvvwcr function // #jform_target listeners for target_vvvvwaz function
jQuery('#jform_target').on('keyup',function() jQuery('#jform_target').on('keyup',function()
{ {
var how_vvvvwcr = jQuery("#jform_how").val(); var how_vvvvwaz = jQuery("#jform_how").val();
var target_vvvvwcr = jQuery("#jform_target input[type='radio']:checked").val(); var target_vvvvwaz = jQuery("#jform_target input[type='radio']:checked").val();
vvvvwcr(how_vvvvwcr,target_vvvvwcr); vvvvwaz(how_vvvvwaz,target_vvvvwaz);
}); });
jQuery('#adminForm').on('change', '#jform_target',function (e) jQuery('#adminForm').on('change', '#jform_target',function (e)
{ {
e.preventDefault(); e.preventDefault();
var how_vvvvwcr = jQuery("#jform_how").val(); var how_vvvvwaz = jQuery("#jform_how").val();
var target_vvvvwcr = jQuery("#jform_target input[type='radio']:checked").val(); var target_vvvvwaz = jQuery("#jform_target input[type='radio']:checked").val();
vvvvwcr(how_vvvvwcr,target_vvvvwcr); vvvvwaz(how_vvvvwaz,target_vvvvwaz);
}); });
// #jform_target listeners for target_vvvvwcs function // #jform_target listeners for target_vvvvwba function
jQuery('#jform_target').on('keyup',function() jQuery('#jform_target').on('keyup',function()
{ {
var target_vvvvwcs = jQuery("#jform_target input[type='radio']:checked").val(); var target_vvvvwba = jQuery("#jform_target input[type='radio']:checked").val();
var how_vvvvwcs = jQuery("#jform_how").val(); var how_vvvvwba = jQuery("#jform_how").val();
vvvvwcs(target_vvvvwcs,how_vvvvwcs); vvvvwba(target_vvvvwba,how_vvvvwba);
}); });
jQuery('#adminForm').on('change', '#jform_target',function (e) jQuery('#adminForm').on('change', '#jform_target',function (e)
{ {
e.preventDefault(); e.preventDefault();
var target_vvvvwcs = jQuery("#jform_target input[type='radio']:checked").val(); var target_vvvvwba = jQuery("#jform_target input[type='radio']:checked").val();
var how_vvvvwcs = jQuery("#jform_how").val(); var how_vvvvwba = jQuery("#jform_how").val();
vvvvwcs(target_vvvvwcs,how_vvvvwcs); vvvvwba(target_vvvvwba,how_vvvvwba);
}); });
// #jform_how listeners for how_vvvvwcs function // #jform_how listeners for how_vvvvwba function
jQuery('#jform_how').on('keyup',function() jQuery('#jform_how').on('keyup',function()
{ {
var target_vvvvwcs = jQuery("#jform_target input[type='radio']:checked").val(); var target_vvvvwba = jQuery("#jform_target input[type='radio']:checked").val();
var how_vvvvwcs = jQuery("#jform_how").val(); var how_vvvvwba = jQuery("#jform_how").val();
vvvvwcs(target_vvvvwcs,how_vvvvwcs); vvvvwba(target_vvvvwba,how_vvvvwba);
}); });
jQuery('#adminForm').on('change', '#jform_how',function (e) jQuery('#adminForm').on('change', '#jform_how',function (e)
{ {
e.preventDefault(); e.preventDefault();
var target_vvvvwcs = jQuery("#jform_target input[type='radio']:checked").val(); var target_vvvvwba = jQuery("#jform_target input[type='radio']:checked").val();
var how_vvvvwcs = jQuery("#jform_how").val(); var how_vvvvwba = jQuery("#jform_how").val();
vvvvwcs(target_vvvvwcs,how_vvvvwcs); vvvvwba(target_vvvvwba,how_vvvvwba);
}); });
// #jform_how listeners for how_vvvvwct function // #jform_how listeners for how_vvvvwbb function
jQuery('#jform_how').on('keyup',function() jQuery('#jform_how').on('keyup',function()
{ {
var how_vvvvwct = jQuery("#jform_how").val(); var how_vvvvwbb = jQuery("#jform_how").val();
var target_vvvvwct = jQuery("#jform_target input[type='radio']:checked").val(); var target_vvvvwbb = jQuery("#jform_target input[type='radio']:checked").val();
vvvvwct(how_vvvvwct,target_vvvvwct); vvvvwbb(how_vvvvwbb,target_vvvvwbb);
}); });
jQuery('#adminForm').on('change', '#jform_how',function (e) jQuery('#adminForm').on('change', '#jform_how',function (e)
{ {
e.preventDefault(); e.preventDefault();
var how_vvvvwct = jQuery("#jform_how").val(); var how_vvvvwbb = jQuery("#jform_how").val();
var target_vvvvwct = jQuery("#jform_target input[type='radio']:checked").val(); var target_vvvvwbb = jQuery("#jform_target input[type='radio']:checked").val();
vvvvwct(how_vvvvwct,target_vvvvwct); vvvvwbb(how_vvvvwbb,target_vvvvwbb);
}); });
// #jform_target listeners for target_vvvvwct function // #jform_target listeners for target_vvvvwbb function
jQuery('#jform_target').on('keyup',function() jQuery('#jform_target').on('keyup',function()
{ {
var how_vvvvwct = jQuery("#jform_how").val(); var how_vvvvwbb = jQuery("#jform_how").val();
var target_vvvvwct = jQuery("#jform_target input[type='radio']:checked").val(); var target_vvvvwbb = jQuery("#jform_target input[type='radio']:checked").val();
vvvvwct(how_vvvvwct,target_vvvvwct); vvvvwbb(how_vvvvwbb,target_vvvvwbb);
}); });
jQuery('#adminForm').on('change', '#jform_target',function (e) jQuery('#adminForm').on('change', '#jform_target',function (e)
{ {
e.preventDefault(); e.preventDefault();
var how_vvvvwct = jQuery("#jform_how").val(); var how_vvvvwbb = jQuery("#jform_how").val();
var target_vvvvwct = jQuery("#jform_target input[type='radio']:checked").val(); var target_vvvvwbb = jQuery("#jform_target input[type='radio']:checked").val();
vvvvwct(how_vvvvwct,target_vvvvwct); vvvvwbb(how_vvvvwbb,target_vvvvwbb);
}); });
// #jform_target listeners for target_vvvvwcu function // #jform_target listeners for target_vvvvwbc function
jQuery('#jform_target').on('keyup',function() jQuery('#jform_target').on('keyup',function()
{ {
var target_vvvvwcu = jQuery("#jform_target input[type='radio']:checked").val(); var target_vvvvwbc = jQuery("#jform_target input[type='radio']:checked").val();
var how_vvvvwcu = jQuery("#jform_how").val(); var how_vvvvwbc = jQuery("#jform_how").val();
vvvvwcu(target_vvvvwcu,how_vvvvwcu); vvvvwbc(target_vvvvwbc,how_vvvvwbc);
}); });
jQuery('#adminForm').on('change', '#jform_target',function (e) jQuery('#adminForm').on('change', '#jform_target',function (e)
{ {
e.preventDefault(); e.preventDefault();
var target_vvvvwcu = jQuery("#jform_target input[type='radio']:checked").val(); var target_vvvvwbc = jQuery("#jform_target input[type='radio']:checked").val();
var how_vvvvwcu = jQuery("#jform_how").val(); var how_vvvvwbc = jQuery("#jform_how").val();
vvvvwcu(target_vvvvwcu,how_vvvvwcu); vvvvwbc(target_vvvvwbc,how_vvvvwbc);
}); });
// #jform_how listeners for how_vvvvwcu function // #jform_how listeners for how_vvvvwbc function
jQuery('#jform_how').on('keyup',function() jQuery('#jform_how').on('keyup',function()
{ {
var target_vvvvwcu = jQuery("#jform_target input[type='radio']:checked").val(); var target_vvvvwbc = jQuery("#jform_target input[type='radio']:checked").val();
var how_vvvvwcu = jQuery("#jform_how").val(); var how_vvvvwbc = jQuery("#jform_how").val();
vvvvwcu(target_vvvvwcu,how_vvvvwcu); vvvvwbc(target_vvvvwbc,how_vvvvwbc);
}); });
jQuery('#adminForm').on('change', '#jform_how',function (e) jQuery('#adminForm').on('change', '#jform_how',function (e)
{ {
e.preventDefault(); e.preventDefault();
var target_vvvvwcu = jQuery("#jform_target input[type='radio']:checked").val(); var target_vvvvwbc = jQuery("#jform_target input[type='radio']:checked").val();
var how_vvvvwcu = jQuery("#jform_how").val(); var how_vvvvwbc = jQuery("#jform_how").val();
vvvvwcu(target_vvvvwcu,how_vvvvwcu); vvvvwbc(target_vvvvwbc,how_vvvvwbc);
}); });
// #jform_target listeners for target_vvvvwcv function // #jform_target listeners for target_vvvvwbd function
jQuery('#jform_target').on('keyup',function() jQuery('#jform_target').on('keyup',function()
{ {
var target_vvvvwcv = jQuery("#jform_target input[type='radio']:checked").val(); var target_vvvvwbd = jQuery("#jform_target input[type='radio']:checked").val();
var type_vvvvwcv = jQuery("#jform_type input[type='radio']:checked").val(); var type_vvvvwbd = jQuery("#jform_type input[type='radio']:checked").val();
vvvvwcv(target_vvvvwcv,type_vvvvwcv); vvvvwbd(target_vvvvwbd,type_vvvvwbd);
}); });
jQuery('#adminForm').on('change', '#jform_target',function (e) jQuery('#adminForm').on('change', '#jform_target',function (e)
{ {
e.preventDefault(); e.preventDefault();
var target_vvvvwcv = jQuery("#jform_target input[type='radio']:checked").val(); var target_vvvvwbd = jQuery("#jform_target input[type='radio']:checked").val();
var type_vvvvwcv = jQuery("#jform_type input[type='radio']:checked").val(); var type_vvvvwbd = jQuery("#jform_type input[type='radio']:checked").val();
vvvvwcv(target_vvvvwcv,type_vvvvwcv); vvvvwbd(target_vvvvwbd,type_vvvvwbd);
}); });
// #jform_type listeners for type_vvvvwcv function // #jform_type listeners for type_vvvvwbd function
jQuery('#jform_type').on('keyup',function() jQuery('#jform_type').on('keyup',function()
{ {
var target_vvvvwcv = jQuery("#jform_target input[type='radio']:checked").val(); var target_vvvvwbd = jQuery("#jform_target input[type='radio']:checked").val();
var type_vvvvwcv = jQuery("#jform_type input[type='radio']:checked").val(); var type_vvvvwbd = jQuery("#jform_type input[type='radio']:checked").val();
vvvvwcv(target_vvvvwcv,type_vvvvwcv); vvvvwbd(target_vvvvwbd,type_vvvvwbd);
}); });
jQuery('#adminForm').on('change', '#jform_type',function (e) jQuery('#adminForm').on('change', '#jform_type',function (e)
{ {
e.preventDefault(); e.preventDefault();
var target_vvvvwcv = jQuery("#jform_target input[type='radio']:checked").val(); var target_vvvvwbd = jQuery("#jform_target input[type='radio']:checked").val();
var type_vvvvwcv = jQuery("#jform_type input[type='radio']:checked").val(); var type_vvvvwbd = jQuery("#jform_type input[type='radio']:checked").val();
vvvvwcv(target_vvvvwcv,type_vvvvwcv); vvvvwbd(target_vvvvwbd,type_vvvvwbd);
}); });
// #jform_target listeners for target_vvvvwcx function // #jform_target listeners for target_vvvvwbf function
jQuery('#jform_target').on('keyup',function() jQuery('#jform_target').on('keyup',function()
{ {
var target_vvvvwcx = jQuery("#jform_target input[type='radio']:checked").val(); var target_vvvvwbf = jQuery("#jform_target input[type='radio']:checked").val();
vvvvwcx(target_vvvvwcx); vvvvwbf(target_vvvvwbf);
}); });
jQuery('#adminForm').on('change', '#jform_target',function (e) jQuery('#adminForm').on('change', '#jform_target',function (e)
{ {
e.preventDefault(); e.preventDefault();
var target_vvvvwcx = jQuery("#jform_target input[type='radio']:checked").val(); var target_vvvvwbf = jQuery("#jform_target input[type='radio']:checked").val();
vvvvwcx(target_vvvvwcx); vvvvwbf(target_vvvvwbf);
}); });
// #jform_target listeners for target_vvvvwcy function // #jform_target listeners for target_vvvvwbg function
jQuery('#jform_target').on('keyup',function() jQuery('#jform_target').on('keyup',function()
{ {
var target_vvvvwcy = jQuery("#jform_target input[type='radio']:checked").val(); var target_vvvvwbg = jQuery("#jform_target input[type='radio']:checked").val();
vvvvwcy(target_vvvvwcy); vvvvwbg(target_vvvvwbg);
}); });
jQuery('#adminForm').on('change', '#jform_target',function (e) jQuery('#adminForm').on('change', '#jform_target',function (e)
{ {
e.preventDefault(); e.preventDefault();
var target_vvvvwcy = jQuery("#jform_target input[type='radio']:checked").val(); var target_vvvvwbg = jQuery("#jform_target input[type='radio']:checked").val();
vvvvwcy(target_vvvvwcy); vvvvwbg(target_vvvvwbg);
}); });

View File

@ -143,18 +143,18 @@ defined('_JEXEC') or die;
<script type="text/javascript"> <script type="text/javascript">
// #jform_add_head listeners for add_head_vvvvvyu function // #jform_add_head listeners for add_head_vvvvvxc function
jQuery('#jform_add_head').on('keyup',function() jQuery('#jform_add_head').on('keyup',function()
{ {
var add_head_vvvvvyu = jQuery("#jform_add_head input[type='radio']:checked").val(); var add_head_vvvvvxc = jQuery("#jform_add_head input[type='radio']:checked").val();
vvvvvyu(add_head_vvvvvyu); vvvvvxc(add_head_vvvvvxc);
}); });
jQuery('#adminForm').on('change', '#jform_add_head',function (e) jQuery('#adminForm').on('change', '#jform_add_head',function (e)
{ {
e.preventDefault(); e.preventDefault();
var add_head_vvvvvyu = jQuery("#jform_add_head input[type='radio']:checked").val(); var add_head_vvvvvxc = jQuery("#jform_add_head input[type='radio']:checked").val();
vvvvvyu(add_head_vvvvvyu); vvvvvxc(add_head_vvvvvxc);
}); });

View File

@ -124,169 +124,169 @@ defined('_JEXEC') or die;
<script type="text/javascript"> <script type="text/javascript">
// #jform_protocol listeners for protocol_vvvvwdy function // #jform_protocol listeners for protocol_vvvvwcg function
jQuery('#jform_protocol').on('keyup',function() jQuery('#jform_protocol').on('keyup',function()
{ {
var protocol_vvvvwdy = jQuery("#jform_protocol").val(); var protocol_vvvvwcg = jQuery("#jform_protocol").val();
vvvvwdy(protocol_vvvvwdy); vvvvwcg(protocol_vvvvwcg);
}); });
jQuery('#adminForm').on('change', '#jform_protocol',function (e) jQuery('#adminForm').on('change', '#jform_protocol',function (e)
{ {
e.preventDefault(); e.preventDefault();
var protocol_vvvvwdy = jQuery("#jform_protocol").val(); var protocol_vvvvwcg = jQuery("#jform_protocol").val();
vvvvwdy(protocol_vvvvwdy); vvvvwcg(protocol_vvvvwcg);
}); });
// #jform_protocol listeners for protocol_vvvvwdz function // #jform_protocol listeners for protocol_vvvvwch function
jQuery('#jform_protocol').on('keyup',function() jQuery('#jform_protocol').on('keyup',function()
{ {
var protocol_vvvvwdz = jQuery("#jform_protocol").val(); var protocol_vvvvwch = jQuery("#jform_protocol").val();
vvvvwdz(protocol_vvvvwdz); vvvvwch(protocol_vvvvwch);
}); });
jQuery('#adminForm').on('change', '#jform_protocol',function (e) jQuery('#adminForm').on('change', '#jform_protocol',function (e)
{ {
e.preventDefault(); e.preventDefault();
var protocol_vvvvwdz = jQuery("#jform_protocol").val(); var protocol_vvvvwch = jQuery("#jform_protocol").val();
vvvvwdz(protocol_vvvvwdz); vvvvwch(protocol_vvvvwch);
}); });
// #jform_protocol listeners for protocol_vvvvwea function // #jform_protocol listeners for protocol_vvvvwci function
jQuery('#jform_protocol').on('keyup',function() jQuery('#jform_protocol').on('keyup',function()
{ {
var protocol_vvvvwea = jQuery("#jform_protocol").val(); var protocol_vvvvwci = jQuery("#jform_protocol").val();
var authentication_vvvvwea = jQuery("#jform_authentication").val(); var authentication_vvvvwci = jQuery("#jform_authentication").val();
vvvvwea(protocol_vvvvwea,authentication_vvvvwea); vvvvwci(protocol_vvvvwci,authentication_vvvvwci);
}); });
jQuery('#adminForm').on('change', '#jform_protocol',function (e) jQuery('#adminForm').on('change', '#jform_protocol',function (e)
{ {
e.preventDefault(); e.preventDefault();
var protocol_vvvvwea = jQuery("#jform_protocol").val(); var protocol_vvvvwci = jQuery("#jform_protocol").val();
var authentication_vvvvwea = jQuery("#jform_authentication").val(); var authentication_vvvvwci = jQuery("#jform_authentication").val();
vvvvwea(protocol_vvvvwea,authentication_vvvvwea); vvvvwci(protocol_vvvvwci,authentication_vvvvwci);
}); });
// #jform_authentication listeners for authentication_vvvvwea function // #jform_authentication listeners for authentication_vvvvwci function
jQuery('#jform_authentication').on('keyup',function() jQuery('#jform_authentication').on('keyup',function()
{ {
var protocol_vvvvwea = jQuery("#jform_protocol").val(); var protocol_vvvvwci = jQuery("#jform_protocol").val();
var authentication_vvvvwea = jQuery("#jform_authentication").val(); var authentication_vvvvwci = jQuery("#jform_authentication").val();
vvvvwea(protocol_vvvvwea,authentication_vvvvwea); vvvvwci(protocol_vvvvwci,authentication_vvvvwci);
}); });
jQuery('#adminForm').on('change', '#jform_authentication',function (e) jQuery('#adminForm').on('change', '#jform_authentication',function (e)
{ {
e.preventDefault(); e.preventDefault();
var protocol_vvvvwea = jQuery("#jform_protocol").val(); var protocol_vvvvwci = jQuery("#jform_protocol").val();
var authentication_vvvvwea = jQuery("#jform_authentication").val(); var authentication_vvvvwci = jQuery("#jform_authentication").val();
vvvvwea(protocol_vvvvwea,authentication_vvvvwea); vvvvwci(protocol_vvvvwci,authentication_vvvvwci);
}); });
// #jform_protocol listeners for protocol_vvvvwec function // #jform_protocol listeners for protocol_vvvvwck function
jQuery('#jform_protocol').on('keyup',function() jQuery('#jform_protocol').on('keyup',function()
{ {
var protocol_vvvvwec = jQuery("#jform_protocol").val(); var protocol_vvvvwck = jQuery("#jform_protocol").val();
var authentication_vvvvwec = jQuery("#jform_authentication").val(); var authentication_vvvvwck = jQuery("#jform_authentication").val();
vvvvwec(protocol_vvvvwec,authentication_vvvvwec); vvvvwck(protocol_vvvvwck,authentication_vvvvwck);
}); });
jQuery('#adminForm').on('change', '#jform_protocol',function (e) jQuery('#adminForm').on('change', '#jform_protocol',function (e)
{ {
e.preventDefault(); e.preventDefault();
var protocol_vvvvwec = jQuery("#jform_protocol").val(); var protocol_vvvvwck = jQuery("#jform_protocol").val();
var authentication_vvvvwec = jQuery("#jform_authentication").val(); var authentication_vvvvwck = jQuery("#jform_authentication").val();
vvvvwec(protocol_vvvvwec,authentication_vvvvwec); vvvvwck(protocol_vvvvwck,authentication_vvvvwck);
}); });
// #jform_authentication listeners for authentication_vvvvwec function // #jform_authentication listeners for authentication_vvvvwck function
jQuery('#jform_authentication').on('keyup',function() jQuery('#jform_authentication').on('keyup',function()
{ {
var protocol_vvvvwec = jQuery("#jform_protocol").val(); var protocol_vvvvwck = jQuery("#jform_protocol").val();
var authentication_vvvvwec = jQuery("#jform_authentication").val(); var authentication_vvvvwck = jQuery("#jform_authentication").val();
vvvvwec(protocol_vvvvwec,authentication_vvvvwec); vvvvwck(protocol_vvvvwck,authentication_vvvvwck);
}); });
jQuery('#adminForm').on('change', '#jform_authentication',function (e) jQuery('#adminForm').on('change', '#jform_authentication',function (e)
{ {
e.preventDefault(); e.preventDefault();
var protocol_vvvvwec = jQuery("#jform_protocol").val(); var protocol_vvvvwck = jQuery("#jform_protocol").val();
var authentication_vvvvwec = jQuery("#jform_authentication").val(); var authentication_vvvvwck = jQuery("#jform_authentication").val();
vvvvwec(protocol_vvvvwec,authentication_vvvvwec); vvvvwck(protocol_vvvvwck,authentication_vvvvwck);
}); });
// #jform_protocol listeners for protocol_vvvvwee function // #jform_protocol listeners for protocol_vvvvwcm function
jQuery('#jform_protocol').on('keyup',function() jQuery('#jform_protocol').on('keyup',function()
{ {
var protocol_vvvvwee = jQuery("#jform_protocol").val(); var protocol_vvvvwcm = jQuery("#jform_protocol").val();
var authentication_vvvvwee = jQuery("#jform_authentication").val(); var authentication_vvvvwcm = jQuery("#jform_authentication").val();
vvvvwee(protocol_vvvvwee,authentication_vvvvwee); vvvvwcm(protocol_vvvvwcm,authentication_vvvvwcm);
}); });
jQuery('#adminForm').on('change', '#jform_protocol',function (e) jQuery('#adminForm').on('change', '#jform_protocol',function (e)
{ {
e.preventDefault(); e.preventDefault();
var protocol_vvvvwee = jQuery("#jform_protocol").val(); var protocol_vvvvwcm = jQuery("#jform_protocol").val();
var authentication_vvvvwee = jQuery("#jform_authentication").val(); var authentication_vvvvwcm = jQuery("#jform_authentication").val();
vvvvwee(protocol_vvvvwee,authentication_vvvvwee); vvvvwcm(protocol_vvvvwcm,authentication_vvvvwcm);
}); });
// #jform_authentication listeners for authentication_vvvvwee function // #jform_authentication listeners for authentication_vvvvwcm function
jQuery('#jform_authentication').on('keyup',function() jQuery('#jform_authentication').on('keyup',function()
{ {
var protocol_vvvvwee = jQuery("#jform_protocol").val(); var protocol_vvvvwcm = jQuery("#jform_protocol").val();
var authentication_vvvvwee = jQuery("#jform_authentication").val(); var authentication_vvvvwcm = jQuery("#jform_authentication").val();
vvvvwee(protocol_vvvvwee,authentication_vvvvwee); vvvvwcm(protocol_vvvvwcm,authentication_vvvvwcm);
}); });
jQuery('#adminForm').on('change', '#jform_authentication',function (e) jQuery('#adminForm').on('change', '#jform_authentication',function (e)
{ {
e.preventDefault(); e.preventDefault();
var protocol_vvvvwee = jQuery("#jform_protocol").val(); var protocol_vvvvwcm = jQuery("#jform_protocol").val();
var authentication_vvvvwee = jQuery("#jform_authentication").val(); var authentication_vvvvwcm = jQuery("#jform_authentication").val();
vvvvwee(protocol_vvvvwee,authentication_vvvvwee); vvvvwcm(protocol_vvvvwcm,authentication_vvvvwcm);
}); });
// #jform_protocol listeners for protocol_vvvvweg function // #jform_protocol listeners for protocol_vvvvwco function
jQuery('#jform_protocol').on('keyup',function() jQuery('#jform_protocol').on('keyup',function()
{ {
var protocol_vvvvweg = jQuery("#jform_protocol").val(); var protocol_vvvvwco = jQuery("#jform_protocol").val();
var authentication_vvvvweg = jQuery("#jform_authentication").val(); var authentication_vvvvwco = jQuery("#jform_authentication").val();
vvvvweg(protocol_vvvvweg,authentication_vvvvweg); vvvvwco(protocol_vvvvwco,authentication_vvvvwco);
}); });
jQuery('#adminForm').on('change', '#jform_protocol',function (e) jQuery('#adminForm').on('change', '#jform_protocol',function (e)
{ {
e.preventDefault(); e.preventDefault();
var protocol_vvvvweg = jQuery("#jform_protocol").val(); var protocol_vvvvwco = jQuery("#jform_protocol").val();
var authentication_vvvvweg = jQuery("#jform_authentication").val(); var authentication_vvvvwco = jQuery("#jform_authentication").val();
vvvvweg(protocol_vvvvweg,authentication_vvvvweg); vvvvwco(protocol_vvvvwco,authentication_vvvvwco);
}); });
// #jform_authentication listeners for authentication_vvvvweg function // #jform_authentication listeners for authentication_vvvvwco function
jQuery('#jform_authentication').on('keyup',function() jQuery('#jform_authentication').on('keyup',function()
{ {
var protocol_vvvvweg = jQuery("#jform_protocol").val(); var protocol_vvvvwco = jQuery("#jform_protocol").val();
var authentication_vvvvweg = jQuery("#jform_authentication").val(); var authentication_vvvvwco = jQuery("#jform_authentication").val();
vvvvweg(protocol_vvvvweg,authentication_vvvvweg); vvvvwco(protocol_vvvvwco,authentication_vvvvwco);
}); });
jQuery('#adminForm').on('change', '#jform_authentication',function (e) jQuery('#adminForm').on('change', '#jform_authentication',function (e)
{ {
e.preventDefault(); e.preventDefault();
var protocol_vvvvweg = jQuery("#jform_protocol").val(); var protocol_vvvvwco = jQuery("#jform_protocol").val();
var authentication_vvvvweg = jQuery("#jform_authentication").val(); var authentication_vvvvwco = jQuery("#jform_authentication").val();
vvvvweg(protocol_vvvvweg,authentication_vvvvweg); vvvvwco(protocol_vvvvwco,authentication_vvvvwco);
}); });

View File

@ -168,168 +168,168 @@ defined('_JEXEC') or die;
<script type="text/javascript"> <script type="text/javascript">
// #jform_add_php_view listeners for add_php_view_vvvvwan function // #jform_add_php_view listeners for add_php_view_vvvvvyv function
jQuery('#jform_add_php_view').on('keyup',function() jQuery('#jform_add_php_view').on('keyup',function()
{ {
var add_php_view_vvvvwan = jQuery("#jform_add_php_view input[type='radio']:checked").val(); var add_php_view_vvvvvyv = jQuery("#jform_add_php_view input[type='radio']:checked").val();
vvvvwan(add_php_view_vvvvwan); vvvvvyv(add_php_view_vvvvvyv);
}); });
jQuery('#adminForm').on('change', '#jform_add_php_view',function (e) jQuery('#adminForm').on('change', '#jform_add_php_view',function (e)
{ {
e.preventDefault(); e.preventDefault();
var add_php_view_vvvvwan = jQuery("#jform_add_php_view input[type='radio']:checked").val(); var add_php_view_vvvvvyv = jQuery("#jform_add_php_view input[type='radio']:checked").val();
vvvvwan(add_php_view_vvvvwan); vvvvvyv(add_php_view_vvvvvyv);
}); });
// #jform_add_php_jview_display listeners for add_php_jview_display_vvvvwao function // #jform_add_php_jview_display listeners for add_php_jview_display_vvvvvyw function
jQuery('#jform_add_php_jview_display').on('keyup',function() jQuery('#jform_add_php_jview_display').on('keyup',function()
{ {
var add_php_jview_display_vvvvwao = jQuery("#jform_add_php_jview_display input[type='radio']:checked").val(); var add_php_jview_display_vvvvvyw = jQuery("#jform_add_php_jview_display input[type='radio']:checked").val();
vvvvwao(add_php_jview_display_vvvvwao); vvvvvyw(add_php_jview_display_vvvvvyw);
}); });
jQuery('#adminForm').on('change', '#jform_add_php_jview_display',function (e) jQuery('#adminForm').on('change', '#jform_add_php_jview_display',function (e)
{ {
e.preventDefault(); e.preventDefault();
var add_php_jview_display_vvvvwao = jQuery("#jform_add_php_jview_display input[type='radio']:checked").val(); var add_php_jview_display_vvvvvyw = jQuery("#jform_add_php_jview_display input[type='radio']:checked").val();
vvvvwao(add_php_jview_display_vvvvwao); vvvvvyw(add_php_jview_display_vvvvvyw);
}); });
// #jform_add_php_jview listeners for add_php_jview_vvvvwap function // #jform_add_php_jview listeners for add_php_jview_vvvvvyx function
jQuery('#jform_add_php_jview').on('keyup',function() jQuery('#jform_add_php_jview').on('keyup',function()
{ {
var add_php_jview_vvvvwap = jQuery("#jform_add_php_jview input[type='radio']:checked").val(); var add_php_jview_vvvvvyx = jQuery("#jform_add_php_jview input[type='radio']:checked").val();
vvvvwap(add_php_jview_vvvvwap); vvvvvyx(add_php_jview_vvvvvyx);
}); });
jQuery('#adminForm').on('change', '#jform_add_php_jview',function (e) jQuery('#adminForm').on('change', '#jform_add_php_jview',function (e)
{ {
e.preventDefault(); e.preventDefault();
var add_php_jview_vvvvwap = jQuery("#jform_add_php_jview input[type='radio']:checked").val(); var add_php_jview_vvvvvyx = jQuery("#jform_add_php_jview input[type='radio']:checked").val();
vvvvwap(add_php_jview_vvvvwap); vvvvvyx(add_php_jview_vvvvvyx);
}); });
// #jform_add_php_document listeners for add_php_document_vvvvwaq function // #jform_add_php_document listeners for add_php_document_vvvvvyy function
jQuery('#jform_add_php_document').on('keyup',function() jQuery('#jform_add_php_document').on('keyup',function()
{ {
var add_php_document_vvvvwaq = jQuery("#jform_add_php_document input[type='radio']:checked").val(); var add_php_document_vvvvvyy = jQuery("#jform_add_php_document input[type='radio']:checked").val();
vvvvwaq(add_php_document_vvvvwaq); vvvvvyy(add_php_document_vvvvvyy);
}); });
jQuery('#adminForm').on('change', '#jform_add_php_document',function (e) jQuery('#adminForm').on('change', '#jform_add_php_document',function (e)
{ {
e.preventDefault(); e.preventDefault();
var add_php_document_vvvvwaq = jQuery("#jform_add_php_document input[type='radio']:checked").val(); var add_php_document_vvvvvyy = jQuery("#jform_add_php_document input[type='radio']:checked").val();
vvvvwaq(add_php_document_vvvvwaq); vvvvvyy(add_php_document_vvvvvyy);
}); });
// #jform_add_css_document listeners for add_css_document_vvvvwar function // #jform_add_css_document listeners for add_css_document_vvvvvyz function
jQuery('#jform_add_css_document').on('keyup',function() jQuery('#jform_add_css_document').on('keyup',function()
{ {
var add_css_document_vvvvwar = jQuery("#jform_add_css_document input[type='radio']:checked").val(); var add_css_document_vvvvvyz = jQuery("#jform_add_css_document input[type='radio']:checked").val();
vvvvwar(add_css_document_vvvvwar); vvvvvyz(add_css_document_vvvvvyz);
}); });
jQuery('#adminForm').on('change', '#jform_add_css_document',function (e) jQuery('#adminForm').on('change', '#jform_add_css_document',function (e)
{ {
e.preventDefault(); e.preventDefault();
var add_css_document_vvvvwar = jQuery("#jform_add_css_document input[type='radio']:checked").val(); var add_css_document_vvvvvyz = jQuery("#jform_add_css_document input[type='radio']:checked").val();
vvvvwar(add_css_document_vvvvwar); vvvvvyz(add_css_document_vvvvvyz);
}); });
// #jform_add_javascript_file listeners for add_javascript_file_vvvvwas function // #jform_add_javascript_file listeners for add_javascript_file_vvvvvza function
jQuery('#jform_add_javascript_file').on('keyup',function() jQuery('#jform_add_javascript_file').on('keyup',function()
{ {
var add_javascript_file_vvvvwas = jQuery("#jform_add_javascript_file input[type='radio']:checked").val(); var add_javascript_file_vvvvvza = jQuery("#jform_add_javascript_file input[type='radio']:checked").val();
vvvvwas(add_javascript_file_vvvvwas); vvvvvza(add_javascript_file_vvvvvza);
}); });
jQuery('#adminForm').on('change', '#jform_add_javascript_file',function (e) jQuery('#adminForm').on('change', '#jform_add_javascript_file',function (e)
{ {
e.preventDefault(); e.preventDefault();
var add_javascript_file_vvvvwas = jQuery("#jform_add_javascript_file input[type='radio']:checked").val(); var add_javascript_file_vvvvvza = jQuery("#jform_add_javascript_file input[type='radio']:checked").val();
vvvvwas(add_javascript_file_vvvvwas); vvvvvza(add_javascript_file_vvvvvza);
}); });
// #jform_add_js_document listeners for add_js_document_vvvvwat function // #jform_add_js_document listeners for add_js_document_vvvvvzb function
jQuery('#jform_add_js_document').on('keyup',function() jQuery('#jform_add_js_document').on('keyup',function()
{ {
var add_js_document_vvvvwat = jQuery("#jform_add_js_document input[type='radio']:checked").val(); var add_js_document_vvvvvzb = jQuery("#jform_add_js_document input[type='radio']:checked").val();
vvvvwat(add_js_document_vvvvwat); vvvvvzb(add_js_document_vvvvvzb);
}); });
jQuery('#adminForm').on('change', '#jform_add_js_document',function (e) jQuery('#adminForm').on('change', '#jform_add_js_document',function (e)
{ {
e.preventDefault(); e.preventDefault();
var add_js_document_vvvvwat = jQuery("#jform_add_js_document input[type='radio']:checked").val(); var add_js_document_vvvvvzb = jQuery("#jform_add_js_document input[type='radio']:checked").val();
vvvvwat(add_js_document_vvvvwat); vvvvvzb(add_js_document_vvvvvzb);
}); });
// #jform_add_css listeners for add_css_vvvvwau function // #jform_add_css listeners for add_css_vvvvvzc function
jQuery('#jform_add_css').on('keyup',function() jQuery('#jform_add_css').on('keyup',function()
{ {
var add_css_vvvvwau = jQuery("#jform_add_css input[type='radio']:checked").val(); var add_css_vvvvvzc = jQuery("#jform_add_css input[type='radio']:checked").val();
vvvvwau(add_css_vvvvwau); vvvvvzc(add_css_vvvvvzc);
}); });
jQuery('#adminForm').on('change', '#jform_add_css',function (e) jQuery('#adminForm').on('change', '#jform_add_css',function (e)
{ {
e.preventDefault(); e.preventDefault();
var add_css_vvvvwau = jQuery("#jform_add_css input[type='radio']:checked").val(); var add_css_vvvvvzc = jQuery("#jform_add_css input[type='radio']:checked").val();
vvvvwau(add_css_vvvvwau); vvvvvzc(add_css_vvvvvzc);
}); });
// #jform_add_php_ajax listeners for add_php_ajax_vvvvwav function // #jform_add_php_ajax listeners for add_php_ajax_vvvvvzd function
jQuery('#jform_add_php_ajax').on('keyup',function() jQuery('#jform_add_php_ajax').on('keyup',function()
{ {
var add_php_ajax_vvvvwav = jQuery("#jform_add_php_ajax input[type='radio']:checked").val(); var add_php_ajax_vvvvvzd = jQuery("#jform_add_php_ajax input[type='radio']:checked").val();
vvvvwav(add_php_ajax_vvvvwav); vvvvvzd(add_php_ajax_vvvvvzd);
}); });
jQuery('#adminForm').on('change', '#jform_add_php_ajax',function (e) jQuery('#adminForm').on('change', '#jform_add_php_ajax',function (e)
{ {
e.preventDefault(); e.preventDefault();
var add_php_ajax_vvvvwav = jQuery("#jform_add_php_ajax input[type='radio']:checked").val(); var add_php_ajax_vvvvvzd = jQuery("#jform_add_php_ajax input[type='radio']:checked").val();
vvvvwav(add_php_ajax_vvvvwav); vvvvvzd(add_php_ajax_vvvvvzd);
}); });
// #jform_add_custom_button listeners for add_custom_button_vvvvwaw function // #jform_add_custom_button listeners for add_custom_button_vvvvvze function
jQuery('#jform_add_custom_button').on('keyup',function() jQuery('#jform_add_custom_button').on('keyup',function()
{ {
var add_custom_button_vvvvwaw = jQuery("#jform_add_custom_button input[type='radio']:checked").val(); var add_custom_button_vvvvvze = jQuery("#jform_add_custom_button input[type='radio']:checked").val();
vvvvwaw(add_custom_button_vvvvwaw); vvvvvze(add_custom_button_vvvvvze);
}); });
jQuery('#adminForm').on('change', '#jform_add_custom_button',function (e) jQuery('#adminForm').on('change', '#jform_add_custom_button',function (e)
{ {
e.preventDefault(); e.preventDefault();
var add_custom_button_vvvvwaw = jQuery("#jform_add_custom_button input[type='radio']:checked").val(); var add_custom_button_vvvvvze = jQuery("#jform_add_custom_button input[type='radio']:checked").val();
vvvvwaw(add_custom_button_vvvvwaw); vvvvvze(add_custom_button_vvvvvze);
}); });
// #jform_button_position listeners for button_position_vvvvwax function // #jform_button_position listeners for button_position_vvvvvzf function
jQuery('#jform_button_position').on('keyup',function() jQuery('#jform_button_position').on('keyup',function()
{ {
var button_position_vvvvwax = jQuery("#jform_button_position").val(); var button_position_vvvvvzf = jQuery("#jform_button_position").val();
vvvvwax(button_position_vvvvwax); vvvvvzf(button_position_vvvvvzf);
}); });
jQuery('#adminForm').on('change', '#jform_button_position',function (e) jQuery('#adminForm').on('change', '#jform_button_position',function (e)
{ {
e.preventDefault(); e.preventDefault();
var button_position_vvvvwax = jQuery("#jform_button_position").val(); var button_position_vvvvvzf = jQuery("#jform_button_position").val();
vvvvwax(button_position_vvvvwax); vvvvvzf(button_position_vvvvvzf);
}); });

View File

@ -131,18 +131,18 @@ defined('_JEXEC') or die;
<script type="text/javascript"> <script type="text/javascript">
// #jform_add_php_view listeners for add_php_view_vvvvway function // #jform_add_php_view listeners for add_php_view_vvvvvzg function
jQuery('#jform_add_php_view').on('keyup',function() jQuery('#jform_add_php_view').on('keyup',function()
{ {
var add_php_view_vvvvway = jQuery("#jform_add_php_view input[type='radio']:checked").val(); var add_php_view_vvvvvzg = jQuery("#jform_add_php_view input[type='radio']:checked").val();
vvvvway(add_php_view_vvvvway); vvvvvzg(add_php_view_vvvvvzg);
}); });
jQuery('#adminForm').on('change', '#jform_add_php_view',function (e) jQuery('#adminForm').on('change', '#jform_add_php_view',function (e)
{ {
e.preventDefault(); e.preventDefault();
var add_php_view_vvvvway = jQuery("#jform_add_php_view input[type='radio']:checked").val(); var add_php_view_vvvvvzg = jQuery("#jform_add_php_view input[type='radio']:checked").val();
vvvvway(add_php_view_vvvvway); vvvvvzg(add_php_view_vvvvvzg);
}); });

View File

@ -1,15 +1,15 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<extension type="component" version="5.0" method="upgrade"> <extension type="component" version="5.0" method="upgrade">
<name>COM_COMPONENTBUILDER</name> <name>COM_COMPONENTBUILDER</name>
<creationDate>16th April, 2024</creationDate> <creationDate>21st April, 2024</creationDate>
<author>Llewellyn van der Merwe</author> <author>Llewellyn van der Merwe</author>
<authorEmail>joomla@vdm.io</authorEmail> <authorEmail>joomla@vdm.io</authorEmail>
<authorUrl>https://dev.vdm.io</authorUrl> <authorUrl>https://dev.vdm.io</authorUrl>
<copyright>Copyright (C) 2015 Vast Development Method. All rights reserved.</copyright> <copyright>Copyright (C) 2015 Vast Development Method. All rights reserved.</copyright>
<license>GNU General Public License version 2 or later; see LICENSE.txt</license> <license>GNU General Public License version 2 or later; see LICENSE.txt</license>
<version>5.0.0-beta3</version> <version>5.0.0-beta4</version>
<description><![CDATA[ <description><![CDATA[
<h1>Component Builder (v.5.0.0-beta3)</h1> <h1>Component Builder (v.5.0.0-beta4)</h1>
<div style="clear: both;"></div> <div style="clear: both;"></div>
<p>The Component Builder for [Joomla](https://extensions.joomla.org/extension/component-builder/) is highly advanced tool that is truly able to build extremely complex components in a fraction of the time. <p>The Component Builder for [Joomla](https://extensions.joomla.org/extension/component-builder/) is highly advanced tool that is truly able to build extremely complex components in a fraction of the time.

View File

@ -107,4 +107,22 @@
<maintainerurl>https://dev.vdm.io</maintainerurl> <maintainerurl>https://dev.vdm.io</maintainerurl>
<targetplatform name="joomla" version="5\.[01]"/> <targetplatform name="joomla" version="5\.[01]"/>
</update> </update>
<update>
<name>Component Builder</name>
<description>Builds Complex Joomla Components</description>
<element>pkg_component_builder</element>
<type>package</type>
<client>site</client>
<version>5.0.0-beta4</version>
<infourl title="Component Builder!">https://dev.vdm.io</infourl>
<downloads>
<downloadurl type="full" format="zip">https://git.vdm.dev/api/v1/repos/joomla/pkg-component-builder/archive/v5.0.0-beta4.zip</downloadurl>
</downloads>
<tags>
<tag>beta</tag>
</tags>
<maintainer>Llewellyn van der Merwe</maintainer>
<maintainerurl>https://dev.vdm.io</maintainerurl>
<targetplatform name="joomla" version="5\.[01]"/>
</update>
</updates> </updates>

View File

@ -34,7 +34,7 @@ abstract class BaseTable implements Tableinterface
* All default fields * All default fields
* *
* @var array * @var array
* @since 3.2.0 * @since 3.2.1
**/ **/
protected array $defaults = [ protected array $defaults = [
'id' => [ 'id' => [
@ -45,7 +45,29 @@ abstract class BaseTable implements Tableinterface
'title' => false, 'title' => false,
'list' => NULL, 'list' => NULL,
'store' => NULL, 'store' => NULL,
'tab_name' => NULL 'tab_name' => NULL,
'db' => [
'type' => 'INT(11)',
'default' => '',
'auto_increment' => true,
'primary_key' => true,
'null_switch' => 'NOT NULL'
]
],
'asset_id' => [
'name' => 'asset_id',
'label' => NULL,
'type' => NULL,
'title' => false,
'list' => NULL,
'store' => NULL,
'tab_name' => NULL,
'db' => [
'type' => 'INT(10) unsigned',
'default' => '0',
'null_switch' => 'NOT NULL',
'comment' => 'FK to the #__assets table.'
]
], ],
'ordering' => [ 'ordering' => [
'name' => 'ordering', 'name' => 'ordering',
@ -54,7 +76,12 @@ abstract class BaseTable implements Tableinterface
'title' => false, 'title' => false,
'list' => NULL, 'list' => NULL,
'store' => NULL, 'store' => NULL,
'tab_name' => NULL 'tab_name' => NULL,
'db' => [
'type' => 'INT(11)',
'default' => '0',
'null_switch' => 'NOT NULL'
]
], ],
'published' => [ 'published' => [
'name' => 'published', 'name' => 'published',
@ -63,7 +90,14 @@ abstract class BaseTable implements Tableinterface
'title' => false, 'title' => false,
'list' => NULL, 'list' => NULL,
'store' => NULL, 'store' => NULL,
'tab_name' => NULL 'tab_name' => NULL,
'db' => [
'type' => 'TINYINT(3)',
'default' => '1',
'null_switch' => 'NOT NULL',
'key' => true,
'key_name' => 'state'
]
], ],
'modified_by' => [ 'modified_by' => [
'name' => 'modified_by', 'name' => 'modified_by',
@ -72,7 +106,14 @@ abstract class BaseTable implements Tableinterface
'title' => false, 'title' => false,
'list' => NULL, 'list' => NULL,
'store' => NULL, 'store' => NULL,
'tab_name' => NULL 'tab_name' => NULL,
'db' => [
'type' => 'INT(10) unsigned',
'default' => '0',
'null_switch' => 'NOT NULL',
'key' => true,
'key_name' => 'modifiedby'
]
], ],
'modified' => [ 'modified' => [
'name' => 'modified', 'name' => 'modified',
@ -81,7 +122,12 @@ abstract class BaseTable implements Tableinterface
'title' => false, 'title' => false,
'list' => NULL, 'list' => NULL,
'store' => NULL, 'store' => NULL,
'tab_name' => NULL 'tab_name' => NULL,
'db' => [
'type' => 'DATETIME',
'default' => '0000-00-00 00:00:00',
'null_switch' => 'NOT NULL'
]
], ],
'created_by' => [ 'created_by' => [
'name' => 'created_by', 'name' => 'created_by',
@ -90,7 +136,14 @@ abstract class BaseTable implements Tableinterface
'title' => false, 'title' => false,
'list' => NULL, 'list' => NULL,
'store' => NULL, 'store' => NULL,
'tab_name' => NULL 'tab_name' => NULL,
'db' => [
'type' => 'INT(10) unsigned',
'default' => '0',
'null_switch' => 'NOT NULL',
'key' => true,
'key_name' => 'createdby'
]
], ],
'created' => [ 'created' => [
'name' => 'created', 'name' => 'created',
@ -99,7 +152,42 @@ abstract class BaseTable implements Tableinterface
'title' => false, 'title' => false,
'list' => NULL, 'list' => NULL,
'store' => NULL, 'store' => NULL,
'tab_name' => NULL 'tab_name' => NULL,
'db' => [
'type' => 'DATETIME',
'default' => '0000-00-00 00:00:00',
'null_switch' => 'NOT NULL'
]
],
'checked_out' => [
'name' => 'checked_out',
'label' => NULL,
'type' => NULL,
'title' => false,
'list' => NULL,
'store' => NULL,
'tab_name' => NULL,
'db' => [
'type' => 'INT(10) unsigned',
'default' => '0',
'null_switch' => 'NOT NULL',
'key' => true,
'key_name' => 'checkout'
]
],
'checked_out_time' => [
'name' => 'checked_out_time',
'label' => NULL,
'type' => NULL,
'title' => false,
'list' => NULL,
'store' => NULL,
'tab_name' => NULL,
'db' => [
'type' => 'DATETIME',
'default' => '0000-00-00 00:00:00',
'null_switch' => 'NOT NULL'
]
], ],
'hits' => [ 'hits' => [
'name' => 'hits', 'name' => 'hits',
@ -108,7 +196,12 @@ abstract class BaseTable implements Tableinterface
'title' => false, 'title' => false,
'list' => NULL, 'list' => NULL,
'store' => NULL, 'store' => NULL,
'tab_name' => NULL 'tab_name' => NULL,
'db' => [
'type' => 'INT(10) unsigned',
'default' => '0',
'null_switch' => 'NOT NULL'
]
], ],
'version' => [ 'version' => [
'name' => 'version', 'name' => 'version',
@ -117,7 +210,26 @@ abstract class BaseTable implements Tableinterface
'title' => false, 'title' => false,
'list' => NULL, 'list' => NULL,
'store' => NULL, 'store' => NULL,
'tab_name' => NULL 'tab_name' => NULL,
'db' => [
'type' => 'INT(10) unsigned',
'default' => '1',
'null_switch' => 'NOT NULL'
]
],
'params' => [
'name' => 'params',
'label' => NULL,
'type' => NULL,
'title' => false,
'list' => NULL,
'store' => 'json',
'tab_name' => NULL,
'db' => [
'type' => 'TEXT',
'default' => '',
'null_switch' => 'NULL'
]
] ]
]; ];
@ -130,48 +242,41 @@ abstract class BaseTable implements Tableinterface
* Example: $this->get('table_name'); * Example: $this->get('table_name');
* Get all areas/views/tables with all their item/field/column details * Get all areas/views/tables with all their item/field/column details
* Example: $this->get('All'); * Example: $this->get('All');
* Example: $this->get();
* *
* @param string $table The table * @param string|null $table The table
* @param string|null $field The field * @param string|null $field The field
* @param string|null $key The value key * @param string|null $key The value key
* *
* @return mixed * @return mixed
* @since 3.2.0 * @since 3.2.1
*/ */
public function get(string $table, ?string $field = null, ?string $key = null) public function get(?string $table = null, ?string $field = null, ?string $key = null)
{ {
// return the item/field/column of an area/view/table // Return specific value
if (is_string($field) && is_string($key)) if ($table && $field && $key)
{ {
// return the value of a item/field/column of an area/view/table return $this->tables[$table][$field][$key] ?? $this->getDefaultKey($field, $key);
if (isset($this->tables[$table][$field][$key]))
{
return $this->tables[$table][$field][$key];
}
return $this->getDefaultKey($field, $key);
}
// return the item/field/column of an area/view/table
elseif (is_string($field))
{
if (isset($this->tables[$table][$field]))
{
return $this->tables[$table][$field];
}
return $this->getDefault($field);
}
// return an area/view/table
elseif ($table !== 'All')
{
if (isset($this->tables[$table]))
{
return $this->tables[$table];
}
return null;
} }
// return all // Return field within table
if ($table && $field)
{
return $this->tables[$table][$field] ?? $this->getDefault($field);
}
// Return all fields in a table or all tables if 'All' is passed
if ($table)
{
if (strtoupper($table) === 'ALL')
{
return $this->tables;
}
return $this->tables[$table] ?? null;
}
// Return all tables
return $this->tables; return $this->tables;
} }
@ -268,27 +373,30 @@ abstract class BaseTable implements Tableinterface
* *
* @param string $table The area * @param string $table The area
* @param bool $default Add the default fields * @param bool $default Add the default fields
* @param bool $details Add/Leave fields the details
* *
* @return array|null On success an array of fields * @return array|null On success an array of fields
* @since 3.2.0 * @since 3.2.0
*/ */
public function fields(string $table, bool $default = false): ?array public function fields(string $table, bool $default = false, bool $details = false): ?array
{ {
// return all fields of an area/view/table // Retrieve fields from the specified table
if (($table = $this->get($table)) !== null) $fields = $this->get($table);
if ($fields === null)
{ {
if ($default) return null;
{
return $this->addDefault(array_keys($table));
}
else
{
return array_keys($table);
}
} }
// none found // Determine the fields output based on the $default and $details flags
return null; if ($details)
{
return $default ? $this->addDefaultDetails($fields) : $fields;
}
$fieldKeys = array_keys($fields);
return $default ? $this->addDefault($fieldKeys) : $fieldKeys;
} }
/** /**
@ -304,6 +412,11 @@ abstract class BaseTable implements Tableinterface
// add default fields // add default fields
foreach ($this->defaults as $default) foreach ($this->defaults as $default)
{ {
if (in_array($default['name'], $fields))
{
continue;
}
// used just for loading the fields // used just for loading the fields
$order = $default['order'] ?? 1; $order = $default['order'] ?? 1;
unset($default['order']); unset($default['order']);
@ -321,6 +434,31 @@ abstract class BaseTable implements Tableinterface
return $fields; return $fields;
} }
/**
* Add the default fields
*
* @param array $fields The table dynamic fields
*
* @return array Fields (with defaults details added)
* @since 3.2.0
*/
protected function addDefaultDetails(array $fields): array
{
// add default fields
foreach ($this->defaults as $default)
{
// remove ordering for now
unset($default['order']);
if (!isset($fields[$default['name']]))
{
$fields[$default['name']] = $default;
}
}
return $fields;
}
/** /**
* Check if the field is a default field * Check if the field is a default field
* *
@ -353,10 +491,10 @@ abstract class BaseTable implements Tableinterface
* @param string $field The field to check * @param string $field The field to check
* @param string $key The field key/property to check * @param string $key The field key/property to check
* *
* @return string|null String value if a default field property exist * @return mixed String value if a default field property exist
* @since 3.2.0 * @since 3.2.0
*/ */
protected function getDefaultKey(string $field, string $key): ?string protected function getDefaultKey(string $field, string $key)
{ {
return $this->defaults[$field][$key] ?? null; return $this->defaults[$field][$key] ?? null;
} }

View File

@ -41,10 +41,10 @@ abstract class Registry extends ActiveRegistry implements Activeregistryinterfac
* @param mixed $value Value of entry * @param mixed $value Value of entry
* *
* @throws \InvalidArgumentException If any of the path values are not a number or string. * @throws \InvalidArgumentException If any of the path values are not a number or string.
* @return void * @return $this
* @since 3.2.0 * @since 3.2.0
*/ */
public function set(string $path, $value): void public function set(string $path, $value): static
{ {
if (($keys = $this->getActiveKeys($path)) === null) if (($keys = $this->getActiveKeys($path)) === null)
{ {
@ -52,6 +52,8 @@ abstract class Registry extends ActiveRegistry implements Activeregistryinterfac
} }
$this->setActive($value, ...$keys); $this->setActive($value, ...$keys);
return $this;
} }
/** /**
@ -65,10 +67,10 @@ abstract class Registry extends ActiveRegistry implements Activeregistryinterfac
* Override in child class allowed set class property $addAsArray = true. * Override in child class allowed set class property $addAsArray = true.
* *
* @throws \InvalidArgumentException If any of the path values are not a number or string. * @throws \InvalidArgumentException If any of the path values are not a number or string.
* @return void * @return $this
* @since 3.2.0 * @since 3.2.0
*/ */
public function add(string $path, $value, ?bool $asArray = null): void public function add(string $path, $value, ?bool $asArray = null): static
{ {
if (($keys = $this->getActiveKeys($path)) === null) if (($keys = $this->getActiveKeys($path)) === null)
{ {
@ -76,6 +78,8 @@ abstract class Registry extends ActiveRegistry implements Activeregistryinterfac
} }
$this->addActive($value, $asArray, ...$keys); $this->addActive($value, $asArray, ...$keys);
return $this;
} }
/** /**
@ -104,10 +108,10 @@ abstract class Registry extends ActiveRegistry implements Activeregistryinterfac
* @param string $path Registry path (e.g. vdm.content.builder) * @param string $path Registry path (e.g. vdm.content.builder)
* *
* @throws \InvalidArgumentException If any of the path values are not a number or string. * @throws \InvalidArgumentException If any of the path values are not a number or string.
* @return void * @return $this
* @since 3.2.0 * @since 3.2.0
*/ */
public function remove(string $path): void public function remove(string $path): static
{ {
if (($keys = $this->getActiveKeys($path)) === null) if (($keys = $this->getActiveKeys($path)) === null)
{ {
@ -115,6 +119,8 @@ abstract class Registry extends ActiveRegistry implements Activeregistryinterfac
} }
$this->removeActive(...$keys); $this->removeActive(...$keys);
return $this;
} }
/** /**
@ -141,12 +147,14 @@ abstract class Registry extends ActiveRegistry implements Activeregistryinterfac
* *
* @param string|null $value The value to set. * @param string|null $value The value to set.
* *
* @return void * @return $this
* @since 3.2.0 * @since 3.2.0
*/ */
public function setSeparator(?string $value): void public function setSeparator(?string $value): static
{ {
$this->separator = $value; $this->separator = $value;
return $this;
} }
/** /**

View File

@ -0,0 +1,419 @@
<?php
/**
* @package Joomla.Component.Builder
*
* @created 4th September, 2022
* @author Llewellyn van der Merwe <https://dev.vdm.io>
* @git Joomla Component Builder <https://git.vdm.dev/joomla/Component-Builder>
* @copyright Copyright (C) 2015 Vast Development Method. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
namespace VDM\Joomla\Abstraction;
use Joomla\CMS\Factory;
use VDM\Joomla\Interfaces\Tableinterface as Table;
use VDM\Joomla\Interfaces\SchemaInterface;
/**
* Schema Checking
*
* @since 3.2.1
*/
abstract class Schema implements SchemaInterface
{
/**
* The Table Class.
*
* @var Table
* @since 3.2.1
*/
protected Table $table;
/**
* The Database Class
*
* @since 3.2.1
*/
protected $db;
/**
* The local tables
*
* @var array
* @since 3.2.1
*/
private array $tables;
/**
* The component table prefix
*
* @var string
* @since 3.2.1
*/
private string $prefix;
/**
* The field unique keys
*
* @var array
* @since 3.2.1
*/
private array $uniqueKeys;
/**
* The field keys
*
* @var array
* @since 3.2.1
*/
private array $keys;
/**
* The success messages of the action
*
* @var array
* @since 3.2.1
*/
private array $success;
/**
* Constructor.
*
* @param Table $table The Table Class.
*
* @since 3.2.1
* @throws \Exception If the database fails
*/
public function __construct(Table $table)
{
$this->table = $table;
try {
// set the database object
$this->db = Factory::getDbo();
// get current component tables
$this->tables = $this->db->getTableList();
// set the component table
$this->prefix = $this->db->getPrefix() . $this->getCode();
} catch (\Exception $e) {
throw new \Exception("Error: failed to initialize schema class due to a database error.", 0, $e);
}
}
/**
* Check and update database schema for missing fields or tables.
*
* @return array The array of successful updates/actions, if empty no update/action was taken.
* @since 3.2.1
* @throws \Exception If there is an error during the update process.
*/
public function update(): array
{
try {
$this->success = [
"Success: scan of the component tables started."
];
foreach ($this->table->tables() as $table)
{
$this->uniqueKeys = [];
$this->keys = [];
if (!$this->tableExists($table))
{
$this->createTable($table);
}
else
{
$this->updateSchema($table);
}
}
} catch (\Exception $e) {
throw new \Exception("Error: updating database schema.", 0, $e);
}
if (count($this->success) == 1)
{
$this->success[] = "Success: scan of the component tables completed with no update needed.";
}
else
{
$this->success[] = "Success: scan of the component tables completed.";
}
return $this->success;
}
/**
* Create a table with all necessary fields.
*
* @param string $table The name of the table to create.
*
* @return void
* @since 3.2.1
* @throws \Exception If there is an error creating the table.
*/
public function createTable(string $table): void
{
try {
$columns = [];
$fields = $this->table->fields($table, true);
$createTable = 'CREATE TABLE IF NOT EXISTS ' . $this->db->quoteName($this->getTable($table));
foreach ($fields as $field)
{
if (($def = $this->getColumnDefinition($table, $field)) !== null)
{
$columns[] = $def;
}
}
$columnDefinitions = implode(', ', $columns);
$keys = $this->getTableKeys();
$createTableSql = "$createTable ($columnDefinitions, $keys)";
$this->db->setQuery($createTableSql);
$this->db->execute();
} catch (\Exception $e) {
throw new \Exception("Error: failed to create missing $table table.", 0, $e);
}
$this->success[] = "Success: created missing $table table.";
}
/**
* Update the schema of an existing table.
*
* @param string $table The table to update.
*
* @return void
* @since 3.2.1
* @throws \Exception If there is an error while updating the schema.
*/
public function updateSchema(string $table): void
{
try {
$existingColumns = $this->getExistingColumns($table);
$expectedColumns = $this->table->fields($table, true);
$missingColumns = array_diff($expectedColumns, $existingColumns);
if (!empty($missingColumns))
{
$this->addMissingColumns($table, $missingColumns);
}
} catch (\Exception $e) {
throw new \Exception("Error: updating schema for $table table.", 0, $e);
}
if (!empty($missingColumns))
{
$columns = (count($missingColumns) == 1) ? 'column' : 'columns';
$missingColumns = implode(', ', $missingColumns);
$this->success[] = "Success: added missing ($missingColumns) $columns to $table table.";
}
}
/**
* Get the targeted component code
*
* @return string
* @since 3.2.1
*/
abstract protected function getCode(): string;
/**
* Add missing columns to a table.
*
* @param string $table The table to update.
* @param array $fields List of missing columns/fields.
*
* @return void
* @since 3.2.1
* @throws \Exception If there is an error adding columns.
*/
protected function addMissingColumns(string $table, array $fields): void
{
try {
$query = $this->db->getQuery(true);
$alterTable = 'ALTER TABLE ' . $this->db->quoteName($this->getTable($table)) . ' ';
// Start an ALTER TABLE query
$alterQueries = [];
foreach ($fields as $field)
{
if (($def = $this->getColumnDefinition($table, $field)) !== null)
{
$alterQueries[] = " ADD " . $def;
}
}
$this->db->setQuery($alterTable . implode(', ', $alterQueries));
$this->db->execute();
} catch (\Exception $e) {
$columns = (count($fields) == 1) ? 'column' : 'columns';
$fields = implode(', ', $fields);
throw new \Exception("Error: failed to add ($fields) $columns to $table table.", 0, $e);
}
}
/**
* Key all needed keys for this table
*
* @return string of keys
* @since 3.2.1
*/
protected function getTableKeys(): string
{
$keys = [];
$keys[] = 'PRIMARY KEY (`id`)'; // TODO (we may want this to be dynamicly set)
if (!empty($this->uniqueKeys))
{
$keys[] = implode(', ', $this->uniqueKeys);
}
if (!empty($this->keys))
{
$keys[] = implode(', ', $this->keys);
}
return implode(', ', $keys);
}
/**
* Function to set the unique key
*
* @param string $column The field column database array values
*
* @return void
* @since 3.2.1
*/
protected function setUniqueKey(array $column): void
{
if (isset($column['unique_key']) && $column['unique_key'])
{
$key = $column['unique_key_name'] ?? $column['name'];
$this->uniqueKeys[] = "UNIQUE KEY `idx_" . $key . "` (`" . $column['name'] . "`)";
}
}
/**
* Function to set the key
*
* @param string $column The field column database array values
*
* @return void
* @since 3.2.1
*/
protected function setKey(array $column): void
{
if (isset($column['key']) && $column['key'])
{
$key = $column['key_name'] ?? $column['name'];
$this->keys[] = "KEY `idx_" . $key . "` (`" . $column['name'] . "`)";
}
}
/**
* Add the component name to get the full table name.
*
* @param string $table The table name.
*
* @return void
* @since 3.2.1
*/
protected function getTable(string $table): string
{
return $this->prefix . '_' . $table;
}
/**
* Check if a table exists in the database.
*
* @param string $table The name of the table to check.
*
* @return bool True if table exists, False otherwise.
* @since 3.2.1
*/
private function tableExists(string $table): bool
{
return in_array($this->getTable($table), $this->tables);
}
/**
* Fetch existing columns from a database table.
*
* @param string $table The name of the table.
*
* @return array An array of column names.
* @since 3.2.1
*/
private function getExistingColumns(string $table): array
{
$columns = $this->db->getTableColumns($this->getTable($table), false);
return array_keys($columns);
}
/**
* Generates a SQL snippet for defining a table column, incorporating column type,
* default value, nullability, and auto-increment properties.
*
* @param string $table The table name to be used.
* @param string $field The field name in the table to generate SQL for.
*
* @return string|null The SQL snippet for the column definition.
* @since 3.2.1
* @throws \Exception If the schema details cannot be retrieved or the SQL statement cannot be constructed properly.
*/
private function getColumnDefinition(string $table, string $field): ?string
{
try {
// Retrieve the database schema details for the specified table and field
if (($db = $this->table->get($table, $field, 'db')) === null)
{
return null;
}
// Prepare the column name
$column_name = $this->db->quoteName($field);
$db['name'] = $field;
// Prepare the default value SQL, null switch, and auto increment statement
$default = !empty($db['default']) ? " DEFAULT " . $this->db->quote($db['default']) : '';
$null_switch = !empty($db['null_switch']) ? " " . $db['null_switch'] : '';
$auto_increment = !empty($db['auto_increment']) ? " AUTO_INCREMENT" : '';
$type = !empty($db['type']) ? $db['type'] : 'TEXT';
$this->setKeys($db);
// Assemble the SQL snippet for the column definition
return "{$column_name} {$type}{$default}{$null_switch}{$auto_increment}";
} catch (\Exception $e) {
throw new \Exception("Error: failed to generate column definition for $table.$field", 0, $e);
}
}
/**
* Function to set the view keys
*
* @param string $column The field column database array values
*
* @return void
* @since 3.2.1
*/
private function setKeys(array $column): void
{
$this->setUniqueKey($column);
$this->setKey($column);
}
}

View File

@ -13,6 +13,7 @@ namespace VDM\Joomla\Componentbuilder\Compiler\Builder;
use VDM\Joomla\Componentbuilder\Compiler\Utilities\Placefix; use VDM\Joomla\Componentbuilder\Compiler\Utilities\Placefix;
use VDM\Joomla\Abstraction\Registry\Traits\IsString;
use VDM\Joomla\Interfaces\Registryinterface; use VDM\Joomla\Interfaces\Registryinterface;
use VDM\Joomla\Abstraction\Registry; use VDM\Joomla\Abstraction\Registry;
@ -24,6 +25,13 @@ use VDM\Joomla\Abstraction\Registry;
*/ */
class ContentOne extends Registry implements Registryinterface class ContentOne extends Registry implements Registryinterface
{ {
/**
* Is String Values
*
* @since 3.2.0
*/
use IsString;
/** /**
* Constructor. * Constructor.
* *

View File

@ -693,6 +693,8 @@ final class Builders
$field['settings']->null_switch); $field['settings']->null_switch);
// set index types // set index types
$_guid = true; $_guid = true;
$databaseuniquekey = false;
$databasekey = false;
if ($field['settings']->indexes == 1 if ($field['settings']->indexes == 1
&& !in_array( && !in_array(
$field['settings']->datatype, $textKeys $field['settings']->datatype, $textKeys
@ -700,6 +702,7 @@ final class Builders
{ {
// build unique keys of this view for db // build unique keys of this view for db
$this->databaseuniquekeys->add($nameSingleCode, $name, true); $this->databaseuniquekeys->add($nameSingleCode, $name, true);
$databaseuniquekey = true;
// prevent guid from being added twice // prevent guid from being added twice
if ('guid' === $name) if ('guid' === $name)
{ {
@ -715,6 +718,7 @@ final class Builders
{ {
// build keys of this view for db // build keys of this view for db
$this->databasekeys->add($nameSingleCode, $name, true); $this->databasekeys->add($nameSingleCode, $name, true);
$databasekey = true;
} }
// special treatment for GUID // special treatment for GUID
if ('guid' === $name && $_guid) if ('guid' === $name && $_guid)
@ -1300,10 +1304,61 @@ final class Builders
'title' => (is_string($title_) && $name === $title_) ? true : false, 'title' => (is_string($title_) && $name === $title_) ? true : false,
'list' => $nameListCode, 'list' => $nameListCode,
'store' => (isset($field['store'])) ? $field['store'] : null, 'store' => (isset($field['store'])) ? $field['store'] : null,
'tab_name' => $tabName 'tab_name' => $tabName,
'db' => $this->normalizeDatabaseValues($nameSingleCode, $name, $databaseuniquekey, $databasekey)
] ]
); );
} }
} }
/**
* Normalizes database values by adjusting the 'length' and 'default' fields based on specific conditions.
* This function modifies the database values by replacing placeholder texts and appending specifications
* to types based on the 'length' field. It removes unnecessary fields from the result array.
*
* @param string $nameSingleCode The code for naming single entries.
* @param string $name The name of the database entry.
* @param string $uniquekey Is this field a uniquekey
* @param string $iskey Is this field a key
*
* @return array|null Returns the modified database values array or null if no values are found.
* @since 3.2.1
*/
private function normalizeDatabaseValues($nameSingleCode, $name, $uniquekey, $iskey): ?array
{
$db_values = $this->databasetables->get($nameSingleCode . '.' . $name, null);
if ($db_values === null)
{
return null;
}
if (isset($db_values['lenght']))
{
if ($db_values['lenght'] === 'Other' && isset($db_values['lenght_other']))
{
$db_values['lenght'] = $db_values['lenght_other'];
}
$db_values['lenght'] = trim($db_values['lenght']);
if (strlen($db_values['lenght']))
{
$db_values['type'] .= '(' . $db_values['lenght'] . ')';
}
}
if (isset($db_values['default']))
{
if ($db_values['default'] === 'Other' && isset($db_values['other']))
{
$db_values['default'] = $db_values['other'];
}
}
$db_values['unique_key'] = $uniquekey;
$db_values['key'] = $iskey;
unset($db_values['ID'], $db_values['lenght'], $db_values['lenght_other'], $db_values['other']);
return $db_values;
}
} }

View File

@ -1206,11 +1206,6 @@ class Infusion extends Interpretation
); );
} }
// all fields stored in database
CFactory::_('Compiler.Builder.Content.One')->set('ALL_COMPONENT_FIELDS',
CFactory::_('Compiler.Builder.Component.Fields')->varExport(null, 1)
);
// setup the layouts // setup the layouts
$this->setCustomViewLayouts(); $this->setCustomViewLayouts();
@ -2082,11 +2077,16 @@ class Infusion extends Interpretation
// UNINSTALLSCRIPT // UNINSTALLSCRIPT
CFactory::_('Compiler.Builder.Content.One')->add('UNINSTALLSCRIPT', $this->setUninstallScript()); CFactory::_('Compiler.Builder.Content.One')->add('UNINSTALLSCRIPT', $this->setUninstallScript());
// INSTALLERMETHODS
CFactory::_('Compiler.Builder.Content.One')->add('INSTALLERMETHODS', CFactory::_('Customcode.Dispenser')->get(
'php_method', 'install', PHP_EOL
));
// MOVEFOLDERSSCRIPT // MOVEFOLDERSSCRIPT
CFactory::_('Compiler.Builder.Content.One')->set('MOVEFOLDERSSCRIPT', $this->setMoveFolderScript()); CFactory::_('Compiler.Builder.Content.One')->set('MOVEFOLDERSSCRIPT', $this->setMoveFolderScript());
// MOVEFOLDERSMETHOD // INSTALLERMETHODS2
CFactory::_('Compiler.Builder.Content.One')->set('MOVEFOLDERSMETHOD', $this->setMoveFolderMethod()); CFactory::_('Compiler.Builder.Content.One')->add('INSTALLERMETHODS', $this->setMoveFolderMethod());
// HELPER_UIKIT // HELPER_UIKIT
CFactory::_('Compiler.Builder.Content.One')->set('HELPER_UIKIT', $this->setUikitHelperMethods()); CFactory::_('Compiler.Builder.Content.One')->set('HELPER_UIKIT', $this->setUikitHelperMethods());
@ -2144,6 +2144,11 @@ class Infusion extends Interpretation
); );
} }
// all fields stored in database
CFactory::_('Compiler.Builder.Content.One')->set('ALL_COMPONENT_FIELDS',
CFactory::_('Compiler.Builder.Component.Fields')->varExport(null, 1)
);
// set the autoloader for Powers (first time) // set the autoloader for Powers (first time)
CFactory::_('Power.Autoloader')->set(); CFactory::_('Power.Autoloader')->set();

View File

@ -10346,7 +10346,7 @@ class Interpretation extends Fields
// check if default field was overwritten // check if default field was overwritten
if (!CFactory::_('Compiler.Builder.Field.Names')->isString($view . '.params')) if (!CFactory::_('Compiler.Builder.Field.Names')->isString($view . '.params'))
{ {
$db_ .= PHP_EOL . Indent::_(1) . "`params` text NULL,"; $db_ .= PHP_EOL . Indent::_(1) . "`params` TEXT NULL,";
} }
// check if default field was overwritten // check if default field was overwritten
if (!CFactory::_('Compiler.Builder.Field.Names')->isString($view . '.published')) if (!CFactory::_('Compiler.Builder.Field.Names')->isString($view . '.published'))
@ -10432,6 +10432,23 @@ class Interpretation extends Fields
{ {
$db_ .= PHP_EOL . Indent::_(1) $db_ .= PHP_EOL . Indent::_(1)
. "`access` INT(10) unsigned NOT NULL DEFAULT 0,"; . "`access` INT(10) unsigned NOT NULL DEFAULT 0,";
// add to component dynamic fields
CFactory::_('Compiler.Builder.Component.Fields')->set($view . '.access',
[
'name' => 'access',
'label' => 'Access',
'type' => 'accesslevel',
'title' => false,
'store' => NULL,
'tab_name' => NULL,
'db' => [
'type' => 'INT(10) unsigned',
'default' => '0',
'key' => true,
'null_switch' => 'NOT NULL'
]
]
);
} }
// check if default field was overwritten // check if default field was overwritten
if (!CFactory::_('Compiler.Builder.Field.Names')->isString($view . '.ordering')) if (!CFactory::_('Compiler.Builder.Field.Names')->isString($view . '.ordering'))
@ -10468,6 +10485,49 @@ class Interpretation extends Fields
$db_ .= PHP_EOL . Indent::_(1) $db_ .= PHP_EOL . Indent::_(1)
. "`metadata` TEXT NOT NULL,"; . "`metadata` TEXT NOT NULL,";
} }
// add to component dynamic fields
CFactory::_('Compiler.Builder.Component.Fields')->set($view . '.metakey',
[
'name' => 'metakey',
'label' => 'Meta Keywords',
'type' => 'textarea',
'title' => false,
'store' => NULL,
'tab_name' => 'publishing',
'db' => [
'type' => 'TEXT',
'default' => ''
]
]
);
CFactory::_('Compiler.Builder.Component.Fields')->set($view . '.metadesc',
[
'name' => 'metadesc',
'label' => 'Meta Description',
'type' => 'textarea',
'title' => false,
'store' => NULL,
'tab_name' => 'publishing',
'db' => [
'type' => 'TEXT',
'default' => ''
]
]
);
CFactory::_('Compiler.Builder.Component.Fields')->set($view . '.metadata',
[
'name' => 'metadata',
'label' => 'Meta Data',
'type' => NULL,
'title' => false,
'store' => 'json',
'tab_name' => 'publishing',
'db' => [
'type' => 'TEXT',
'default' => ''
]
]
);
} }
// TODO (we may want this to be dynamicly set) // TODO (we may want this to be dynamicly set)
$db_ .= PHP_EOL . Indent::_(1) . "PRIMARY KEY (`id`)"; $db_ .= PHP_EOL . Indent::_(1) . "PRIMARY KEY (`id`)";

View File

@ -15,15 +15,15 @@ namespace VDM\Joomla\Componentbuilder\Compiler;
use Joomla\CMS\Factory; use Joomla\CMS\Factory;
use Joomla\CMS\Application\CMSApplication; use Joomla\CMS\Application\CMSApplication;
use Joomla\CMS\Language\Text; use Joomla\CMS\Language\Text;
use VDM\Joomla\Utilities\ArrayHelper;
use VDM\Joomla\Utilities\JsonHelper;
use VDM\Joomla\Utilities\GuidHelper;
use VDM\Joomla\Utilities\String\NamespaceHelper;
use VDM\Joomla\Componentbuilder\Compiler\Config; use VDM\Joomla\Componentbuilder\Compiler\Config;
use VDM\Joomla\Componentbuilder\Compiler\Placeholder; use VDM\Joomla\Componentbuilder\Compiler\Placeholder;
use VDM\Joomla\Componentbuilder\Compiler\Customcode; use VDM\Joomla\Componentbuilder\Compiler\Customcode;
use VDM\Joomla\Componentbuilder\Compiler\Customcode\Gui; use VDM\Joomla\Componentbuilder\Compiler\Customcode\Gui;
use VDM\Joomla\Componentbuilder\JoomlaPower\Super as SuperPower; use VDM\Joomla\Componentbuilder\JoomlaPower\Super as SuperPower;
use VDM\Joomla\Utilities\ArrayHelper;
use VDM\Joomla\Utilities\JsonHelper;
use VDM\Joomla\Utilities\GuidHelper;
use VDM\Joomla\Utilities\String\NamespaceHelper;
use VDM\Joomla\Componentbuilder\Compiler\Interfaces\PowerInterface; use VDM\Joomla\Componentbuilder\Compiler\Interfaces\PowerInterface;

View File

@ -88,7 +88,8 @@ class Autoloader
*/ */
public function set() public function set()
{ {
if (ArrayHelper::check($this->power->namespace)) // make sure we only load this once
if (ArrayHelper::check($this->power->namespace) && !$this->content->isString('CUSTOM_POWER_AUTOLOADER'))
{ {
/************************* IMPORTANT SORT NOTICE *********************************************** /************************* IMPORTANT SORT NOTICE ***********************************************
* make sure the name space values are sorted from the longest string to the shortest * make sure the name space values are sorted from the longest string to the shortest

View File

@ -16,6 +16,7 @@ use VDM\Joomla\Componentbuilder\Interfaces\GrepInterface as Grep;
use VDM\Joomla\Componentbuilder\Interfaces\Database\InsertInterface as Insert; use VDM\Joomla\Componentbuilder\Interfaces\Database\InsertInterface as Insert;
use VDM\Joomla\Componentbuilder\Interfaces\Database\UpdateInterface as Update; use VDM\Joomla\Componentbuilder\Interfaces\Database\UpdateInterface as Update;
use VDM\Joomla\Utilities\GuidHelper; use VDM\Joomla\Utilities\GuidHelper;
use VDM\Joomla\Componentbuilder\Interfaces\SuperInterface;
/** /**
@ -23,7 +24,7 @@ use VDM\Joomla\Utilities\GuidHelper;
* *
* @since 3.2.0 * @since 3.2.0
*/ */
class Super class Super implements SuperInterface
{ {
/** /**
* The Power Search Tool * The Power Search Tool

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,52 @@
<?php
/**
* @package Joomla.Component.Builder
*
* @created 4th September, 2022
* @author Llewellyn van der Merwe <https://dev.vdm.io>
* @git Joomla Component Builder <https://git.vdm.dev/joomla/Component-Builder>
* @copyright Copyright (C) 2015 Vast Development Method. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
namespace VDM\Joomla\Componentbuilder\Table;
use VDM\Joomla\Componentbuilder\Table as Table;
use VDM\Joomla\Interfaces\SchemaInterface;
use VDM\Joomla\Abstraction\Schema as ExtendingSchema;
/**
* JCB Tables Schema
*
* @since 3.2.1
*/
final class Schema extends ExtendingSchema implements SchemaInterface
{
/**
* Constructor.
*
* @param Table $table The Table Class.
*
* @since 3.2.1
*/
public function __construct(?Table $table = null)
{
$table ??= new Table;
parent::__construct($table);
}
/**
* Get the targeted component code
*
* @return string
* @since 3.2.1
*/
protected function getCode(): string
{
return 'componentbuilder';
}
}

View File

@ -0,0 +1 @@
<html><body bgcolor="#FFFFFF"></body></html>

View File

@ -26,10 +26,10 @@ interface Registryinterface
* @param mixed $value Value of entry * @param mixed $value Value of entry
* *
* @throws \InvalidArgumentException If any of the path values are not a number or string. * @throws \InvalidArgumentException If any of the path values are not a number or string.
* @return void * @return $this
* @since 3.2.0 * @since 3.2.0
*/ */
public function set(string $path, $value): void; public function set(string $path, $value): static;
/** /**
* Adds content into the registry. If a key exists, * Adds content into the registry. If a key exists,
@ -42,10 +42,10 @@ interface Registryinterface
* Override in child class allowed set class property $addAsArray = true. * Override in child class allowed set class property $addAsArray = true.
* *
* @throws \InvalidArgumentException If any of the path values are not a number or string. * @throws \InvalidArgumentException If any of the path values are not a number or string.
* @return void * @return $this
* @since 3.2.0 * @since 3.2.0
*/ */
public function add(string $path, $value, ?bool $asArray = null): void; public function add(string $path, $value, ?bool $asArray = null): static;
/** /**
* Retrieves a value (or sub-array) from the registry using multiple keys. * Retrieves a value (or sub-array) from the registry using multiple keys.
@ -65,10 +65,10 @@ interface Registryinterface
* @param string $path Registry path (e.g. vdm.content.builder) * @param string $path Registry path (e.g. vdm.content.builder)
* *
* @throws \InvalidArgumentException If any of the path values are not a number or string. * @throws \InvalidArgumentException If any of the path values are not a number or string.
* @return void * @return $this
* @since 3.2.0 * @since 3.2.0
*/ */
public function remove(string $path): void; public function remove(string $path): static;
/** /**
* Checks the existence of a particular location in the registry using multiple keys. * Checks the existence of a particular location in the registry using multiple keys.
@ -86,9 +86,9 @@ interface Registryinterface
* *
* @param string|null $value The value to set. * @param string|null $value The value to set.
* *
* @return void * @return $this
* @since 3.2.0 * @since 3.2.0
*/ */
public function setSeparator(?string $value): void; public function setSeparator(?string $value): static;
} }

View File

@ -0,0 +1,53 @@
<?php
/**
* @package Joomla.Component.Builder
*
* @created 4th September, 2022
* @author Llewellyn van der Merwe <https://dev.vdm.io>
* @git Joomla Component Builder <https://git.vdm.dev/joomla/Component-Builder>
* @copyright Copyright (C) 2015 Vast Development Method. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
namespace VDM\Joomla\Interfaces;
/**
* Schema Checking Interface
*
* @since 3.2.1
*/
interface SchemaInterface
{
/**
* Check and update database schema for missing fields or tables.
*
* @return array The array of successful updates/actions, if empty no update/action was taken.
* @since 3.2.1
* @throws \Exception If there is an error during the update process.
*/
public function update(): array;
/**
* Create a table with all necessary fields.
*
* @param string $table The name of the table to create.
*
* @return void
* @since 3.2.1
* @throws \Exception If there is an error creating the table.
*/
public function createTable(string $table): void;
/**
* Update the schema of an existing table.
*
* @param string $table The table to update.
*
* @return void
* @since 3.2.1
* @throws \Exception If there is an error while updating the schema.
*/
public function updateSchema(string $table): void;
}

View File

@ -26,15 +26,16 @@ interface Tableinterface
* Example: $this->get('table_name'); * Example: $this->get('table_name');
* Get all areas/views/tables with all their item/field/column details * Get all areas/views/tables with all their item/field/column details
* Example: $this->get('All'); * Example: $this->get('All');
* Example: $this->get();
* *
* @param string $table The table * @param string|null $table The table
* @param string|null $field The field * @param string|null $field The field
* @param string|null $key The value key * @param string|null $key The value key
* *
* @return mixed * @return mixed
* @since 3.2.0 * @since 3.2.0
*/ */
public function get(string $table, ?string $field = null, ?string $key = null); public function get(?string $table = null, ?string $field = null, ?string $key = null);
/** /**
* Get title field from an area/view/table * Get title field from an area/view/table
@ -80,10 +81,11 @@ interface Tableinterface
* *
* @param string $table The area * @param string $table The area
* @param bool $default Add the default fields * @param bool $default Add the default fields
* @param bool $details Add/Leave fields the details
* *
* @return array|null On success an array of fields * @return array|null On success an array of fields
* @since 3.2.0 * @since 3.2.0
*/ */
public function fields(string $table, bool $default = false): ?array; public function fields(string $table, bool $default = false, bool $details = false): ?array;
} }

View File

@ -9,123 +9,122 @@
*/ */
// Some Global Values // Some Global Values
jform_vvvvvzvvwj_required = false; jform_vvvvvydvwb_required = false;
jform_vvvvvzwvwk_required = false; jform_vvvvvyivwc_required = false;
jform_vvvvwaavwl_required = false; jform_vvvvvyivwd_required = false;
jform_vvvvwaavwm_required = false; jform_vvvvvyivwe_required = false;
jform_vvvvwaavwn_required = false; jform_vvvvvyivwf_required = false;
jform_vvvvwaavwo_required = false; jform_vvvvvyivwg_required = false;
jform_vvvvwaavwp_required = false; jform_vvvvvyivwh_required = false;
jform_vvvvwaavwq_required = false; jform_vvvvvyivwi_required = false;
jform_vvvvwaavwr_required = false;
// Initial Script // Initial Script
document.addEventListener('DOMContentLoaded', function() document.addEventListener('DOMContentLoaded', function()
{ {
var add_css_view_vvvvvyv = jQuery("#jform_add_css_view input[type='radio']:checked").val(); var add_css_view_vvvvvxd = jQuery("#jform_add_css_view input[type='radio']:checked").val();
vvvvvyv(add_css_view_vvvvvyv); vvvvvxd(add_css_view_vvvvvxd);
var add_css_views_vvvvvyw = jQuery("#jform_add_css_views input[type='radio']:checked").val(); var add_css_views_vvvvvxe = jQuery("#jform_add_css_views input[type='radio']:checked").val();
vvvvvyw(add_css_views_vvvvvyw); vvvvvxe(add_css_views_vvvvvxe);
var add_javascript_view_file_vvvvvyx = jQuery("#jform_add_javascript_view_file input[type='radio']:checked").val(); var add_javascript_view_file_vvvvvxf = jQuery("#jform_add_javascript_view_file input[type='radio']:checked").val();
vvvvvyx(add_javascript_view_file_vvvvvyx); vvvvvxf(add_javascript_view_file_vvvvvxf);
var add_javascript_views_file_vvvvvyy = jQuery("#jform_add_javascript_views_file input[type='radio']:checked").val(); var add_javascript_views_file_vvvvvxg = jQuery("#jform_add_javascript_views_file input[type='radio']:checked").val();
vvvvvyy(add_javascript_views_file_vvvvvyy); vvvvvxg(add_javascript_views_file_vvvvvxg);
var add_javascript_view_footer_vvvvvyz = jQuery("#jform_add_javascript_view_footer input[type='radio']:checked").val(); var add_javascript_view_footer_vvvvvxh = jQuery("#jform_add_javascript_view_footer input[type='radio']:checked").val();
vvvvvyz(add_javascript_view_footer_vvvvvyz); vvvvvxh(add_javascript_view_footer_vvvvvxh);
var add_javascript_views_footer_vvvvvza = jQuery("#jform_add_javascript_views_footer input[type='radio']:checked").val(); var add_javascript_views_footer_vvvvvxi = jQuery("#jform_add_javascript_views_footer input[type='radio']:checked").val();
vvvvvza(add_javascript_views_footer_vvvvvza); vvvvvxi(add_javascript_views_footer_vvvvvxi);
var add_php_ajax_vvvvvzb = jQuery("#jform_add_php_ajax input[type='radio']:checked").val(); var add_php_ajax_vvvvvxj = jQuery("#jform_add_php_ajax input[type='radio']:checked").val();
vvvvvzb(add_php_ajax_vvvvvzb); vvvvvxj(add_php_ajax_vvvvvxj);
var add_php_getitem_vvvvvzc = jQuery("#jform_add_php_getitem input[type='radio']:checked").val(); var add_php_getitem_vvvvvxk = jQuery("#jform_add_php_getitem input[type='radio']:checked").val();
vvvvvzc(add_php_getitem_vvvvvzc); vvvvvxk(add_php_getitem_vvvvvxk);
var add_php_getitems_vvvvvzd = jQuery("#jform_add_php_getitems input[type='radio']:checked").val(); var add_php_getitems_vvvvvxl = jQuery("#jform_add_php_getitems input[type='radio']:checked").val();
vvvvvzd(add_php_getitems_vvvvvzd); vvvvvxl(add_php_getitems_vvvvvxl);
var add_php_getitems_after_all_vvvvvze = jQuery("#jform_add_php_getitems_after_all input[type='radio']:checked").val(); var add_php_getitems_after_all_vvvvvxm = jQuery("#jform_add_php_getitems_after_all input[type='radio']:checked").val();
vvvvvze(add_php_getitems_after_all_vvvvvze); vvvvvxm(add_php_getitems_after_all_vvvvvxm);
var add_php_getlistquery_vvvvvzf = jQuery("#jform_add_php_getlistquery input[type='radio']:checked").val(); var add_php_getlistquery_vvvvvxn = jQuery("#jform_add_php_getlistquery input[type='radio']:checked").val();
vvvvvzf(add_php_getlistquery_vvvvvzf); vvvvvxn(add_php_getlistquery_vvvvvxn);
var add_php_getform_vvvvvzg = jQuery("#jform_add_php_getform input[type='radio']:checked").val(); var add_php_getform_vvvvvxo = jQuery("#jform_add_php_getform input[type='radio']:checked").val();
vvvvvzg(add_php_getform_vvvvvzg); vvvvvxo(add_php_getform_vvvvvxo);
var add_php_before_save_vvvvvzh = jQuery("#jform_add_php_before_save input[type='radio']:checked").val(); var add_php_before_save_vvvvvxp = jQuery("#jform_add_php_before_save input[type='radio']:checked").val();
vvvvvzh(add_php_before_save_vvvvvzh); vvvvvxp(add_php_before_save_vvvvvxp);
var add_php_save_vvvvvzi = jQuery("#jform_add_php_save input[type='radio']:checked").val(); var add_php_save_vvvvvxq = jQuery("#jform_add_php_save input[type='radio']:checked").val();
vvvvvzi(add_php_save_vvvvvzi); vvvvvxq(add_php_save_vvvvvxq);
var add_php_postsavehook_vvvvvzj = jQuery("#jform_add_php_postsavehook input[type='radio']:checked").val(); var add_php_postsavehook_vvvvvxr = jQuery("#jform_add_php_postsavehook input[type='radio']:checked").val();
vvvvvzj(add_php_postsavehook_vvvvvzj); vvvvvxr(add_php_postsavehook_vvvvvxr);
var add_php_allowadd_vvvvvzk = jQuery("#jform_add_php_allowadd input[type='radio']:checked").val(); var add_php_allowadd_vvvvvxs = jQuery("#jform_add_php_allowadd input[type='radio']:checked").val();
vvvvvzk(add_php_allowadd_vvvvvzk); vvvvvxs(add_php_allowadd_vvvvvxs);
var add_php_allowedit_vvvvvzl = jQuery("#jform_add_php_allowedit input[type='radio']:checked").val(); var add_php_allowedit_vvvvvxt = jQuery("#jform_add_php_allowedit input[type='radio']:checked").val();
vvvvvzl(add_php_allowedit_vvvvvzl); vvvvvxt(add_php_allowedit_vvvvvxt);
var add_php_before_cancel_vvvvvzm = jQuery("#jform_add_php_before_cancel input[type='radio']:checked").val(); var add_php_before_cancel_vvvvvxu = jQuery("#jform_add_php_before_cancel input[type='radio']:checked").val();
vvvvvzm(add_php_before_cancel_vvvvvzm); vvvvvxu(add_php_before_cancel_vvvvvxu);
var add_php_after_cancel_vvvvvzn = jQuery("#jform_add_php_after_cancel input[type='radio']:checked").val(); var add_php_after_cancel_vvvvvxv = jQuery("#jform_add_php_after_cancel input[type='radio']:checked").val();
vvvvvzn(add_php_after_cancel_vvvvvzn); vvvvvxv(add_php_after_cancel_vvvvvxv);
var add_php_batchcopy_vvvvvzo = jQuery("#jform_add_php_batchcopy input[type='radio']:checked").val(); var add_php_batchcopy_vvvvvxw = jQuery("#jform_add_php_batchcopy input[type='radio']:checked").val();
vvvvvzo(add_php_batchcopy_vvvvvzo); vvvvvxw(add_php_batchcopy_vvvvvxw);
var add_php_batchmove_vvvvvzp = jQuery("#jform_add_php_batchmove input[type='radio']:checked").val(); var add_php_batchmove_vvvvvxx = jQuery("#jform_add_php_batchmove input[type='radio']:checked").val();
vvvvvzp(add_php_batchmove_vvvvvzp); vvvvvxx(add_php_batchmove_vvvvvxx);
var add_php_before_publish_vvvvvzq = jQuery("#jform_add_php_before_publish input[type='radio']:checked").val(); var add_php_before_publish_vvvvvxy = jQuery("#jform_add_php_before_publish input[type='radio']:checked").val();
vvvvvzq(add_php_before_publish_vvvvvzq); vvvvvxy(add_php_before_publish_vvvvvxy);
var add_php_after_publish_vvvvvzr = jQuery("#jform_add_php_after_publish input[type='radio']:checked").val(); var add_php_after_publish_vvvvvxz = jQuery("#jform_add_php_after_publish input[type='radio']:checked").val();
vvvvvzr(add_php_after_publish_vvvvvzr); vvvvvxz(add_php_after_publish_vvvvvxz);
var add_php_before_delete_vvvvvzs = jQuery("#jform_add_php_before_delete input[type='radio']:checked").val(); var add_php_before_delete_vvvvvya = jQuery("#jform_add_php_before_delete input[type='radio']:checked").val();
vvvvvzs(add_php_before_delete_vvvvvzs); vvvvvya(add_php_before_delete_vvvvvya);
var add_php_after_delete_vvvvvzt = jQuery("#jform_add_php_after_delete input[type='radio']:checked").val(); var add_php_after_delete_vvvvvyb = jQuery("#jform_add_php_after_delete input[type='radio']:checked").val();
vvvvvzt(add_php_after_delete_vvvvvzt); vvvvvyb(add_php_after_delete_vvvvvyb);
var add_php_document_vvvvvzu = jQuery("#jform_add_php_document input[type='radio']:checked").val(); var add_php_document_vvvvvyc = jQuery("#jform_add_php_document input[type='radio']:checked").val();
vvvvvzu(add_php_document_vvvvvzu); vvvvvyc(add_php_document_vvvvvyc);
var add_sql_vvvvvzv = jQuery("#jform_add_sql input[type='radio']:checked").val(); var add_sql_vvvvvyd = jQuery("#jform_add_sql input[type='radio']:checked").val();
vvvvvzv(add_sql_vvvvvzv); vvvvvyd(add_sql_vvvvvyd);
var source_vvvvvzw = jQuery("#jform_source input[type='radio']:checked").val(); var source_vvvvvye = jQuery("#jform_source input[type='radio']:checked").val();
var add_sql_vvvvvzw = jQuery("#jform_add_sql input[type='radio']:checked").val(); var add_sql_vvvvvye = jQuery("#jform_add_sql input[type='radio']:checked").val();
vvvvvzw(source_vvvvvzw,add_sql_vvvvvzw); vvvvvye(source_vvvvvye,add_sql_vvvvvye);
var source_vvvvvzy = jQuery("#jform_source input[type='radio']:checked").val(); var source_vvvvvyg = jQuery("#jform_source input[type='radio']:checked").val();
var add_sql_vvvvvzy = jQuery("#jform_add_sql input[type='radio']:checked").val(); var add_sql_vvvvvyg = jQuery("#jform_add_sql input[type='radio']:checked").val();
vvvvvzy(source_vvvvvzy,add_sql_vvvvvzy); vvvvvyg(source_vvvvvyg,add_sql_vvvvvyg);
var add_custom_import_vvvvwaa = jQuery("#jform_add_custom_import input[type='radio']:checked").val(); var add_custom_import_vvvvvyi = jQuery("#jform_add_custom_import input[type='radio']:checked").val();
vvvvwaa(add_custom_import_vvvvwaa); vvvvvyi(add_custom_import_vvvvvyi);
var add_custom_import_vvvvwab = jQuery("#jform_add_custom_import input[type='radio']:checked").val(); var add_custom_import_vvvvvyj = jQuery("#jform_add_custom_import input[type='radio']:checked").val();
vvvvwab(add_custom_import_vvvvwab); vvvvvyj(add_custom_import_vvvvvyj);
var add_custom_button_vvvvwac = jQuery("#jform_add_custom_button input[type='radio']:checked").val(); var add_custom_button_vvvvvyk = jQuery("#jform_add_custom_button input[type='radio']:checked").val();
vvvvwac(add_custom_button_vvvvwac); vvvvvyk(add_custom_button_vvvvvyk);
}); });
// the vvvvvyv function // the vvvvvxd function
function vvvvvyv(add_css_view_vvvvvyv) function vvvvvxd(add_css_view_vvvvvxd)
{ {
// set the function logic // set the function logic
if (add_css_view_vvvvvyv == 1) if (add_css_view_vvvvvxd == 1)
{ {
jQuery('#jform_css_view-lbl').closest('.control-group').show(); jQuery('#jform_css_view-lbl').closest('.control-group').show();
} }
@ -135,11 +134,11 @@ function vvvvvyv(add_css_view_vvvvvyv)
} }
} }
// the vvvvvyw function // the vvvvvxe function
function vvvvvyw(add_css_views_vvvvvyw) function vvvvvxe(add_css_views_vvvvvxe)
{ {
// set the function logic // set the function logic
if (add_css_views_vvvvvyw == 1) if (add_css_views_vvvvvxe == 1)
{ {
jQuery('#jform_css_views-lbl').closest('.control-group').show(); jQuery('#jform_css_views-lbl').closest('.control-group').show();
} }
@ -149,11 +148,11 @@ function vvvvvyw(add_css_views_vvvvvyw)
} }
} }
// the vvvvvyx function // the vvvvvxf function
function vvvvvyx(add_javascript_view_file_vvvvvyx) function vvvvvxf(add_javascript_view_file_vvvvvxf)
{ {
// set the function logic // set the function logic
if (add_javascript_view_file_vvvvvyx == 1) if (add_javascript_view_file_vvvvvxf == 1)
{ {
jQuery('#jform_javascript_view_file-lbl').closest('.control-group').show(); jQuery('#jform_javascript_view_file-lbl').closest('.control-group').show();
} }
@ -163,11 +162,11 @@ function vvvvvyx(add_javascript_view_file_vvvvvyx)
} }
} }
// the vvvvvyy function // the vvvvvxg function
function vvvvvyy(add_javascript_views_file_vvvvvyy) function vvvvvxg(add_javascript_views_file_vvvvvxg)
{ {
// set the function logic // set the function logic
if (add_javascript_views_file_vvvvvyy == 1) if (add_javascript_views_file_vvvvvxg == 1)
{ {
jQuery('#jform_javascript_views_file-lbl').closest('.control-group').show(); jQuery('#jform_javascript_views_file-lbl').closest('.control-group').show();
} }
@ -177,11 +176,11 @@ function vvvvvyy(add_javascript_views_file_vvvvvyy)
} }
} }
// the vvvvvyz function // the vvvvvxh function
function vvvvvyz(add_javascript_view_footer_vvvvvyz) function vvvvvxh(add_javascript_view_footer_vvvvvxh)
{ {
// set the function logic // set the function logic
if (add_javascript_view_footer_vvvvvyz == 1) if (add_javascript_view_footer_vvvvvxh == 1)
{ {
jQuery('#jform_javascript_view_footer-lbl').closest('.control-group').show(); jQuery('#jform_javascript_view_footer-lbl').closest('.control-group').show();
} }
@ -191,11 +190,11 @@ function vvvvvyz(add_javascript_view_footer_vvvvvyz)
} }
} }
// the vvvvvza function // the vvvvvxi function
function vvvvvza(add_javascript_views_footer_vvvvvza) function vvvvvxi(add_javascript_views_footer_vvvvvxi)
{ {
// set the function logic // set the function logic
if (add_javascript_views_footer_vvvvvza == 1) if (add_javascript_views_footer_vvvvvxi == 1)
{ {
jQuery('#jform_javascript_views_footer-lbl').closest('.control-group').show(); jQuery('#jform_javascript_views_footer-lbl').closest('.control-group').show();
} }
@ -205,11 +204,11 @@ function vvvvvza(add_javascript_views_footer_vvvvvza)
} }
} }
// the vvvvvzb function // the vvvvvxj function
function vvvvvzb(add_php_ajax_vvvvvzb) function vvvvvxj(add_php_ajax_vvvvvxj)
{ {
// set the function logic // set the function logic
if (add_php_ajax_vvvvvzb == 1) if (add_php_ajax_vvvvvxj == 1)
{ {
jQuery('#jform_ajax_input-lbl').closest('.control-group').show(); jQuery('#jform_ajax_input-lbl').closest('.control-group').show();
jQuery('#jform_php_ajaxmethod-lbl').closest('.control-group').show(); jQuery('#jform_php_ajaxmethod-lbl').closest('.control-group').show();
@ -221,11 +220,11 @@ function vvvvvzb(add_php_ajax_vvvvvzb)
} }
} }
// the vvvvvzc function // the vvvvvxk function
function vvvvvzc(add_php_getitem_vvvvvzc) function vvvvvxk(add_php_getitem_vvvvvxk)
{ {
// set the function logic // set the function logic
if (add_php_getitem_vvvvvzc == 1) if (add_php_getitem_vvvvvxk == 1)
{ {
jQuery('#jform_php_getitem-lbl').closest('.control-group').show(); jQuery('#jform_php_getitem-lbl').closest('.control-group').show();
} }
@ -235,11 +234,11 @@ function vvvvvzc(add_php_getitem_vvvvvzc)
} }
} }
// the vvvvvzd function // the vvvvvxl function
function vvvvvzd(add_php_getitems_vvvvvzd) function vvvvvxl(add_php_getitems_vvvvvxl)
{ {
// set the function logic // set the function logic
if (add_php_getitems_vvvvvzd == 1) if (add_php_getitems_vvvvvxl == 1)
{ {
jQuery('#jform_php_getitems-lbl').closest('.control-group').show(); jQuery('#jform_php_getitems-lbl').closest('.control-group').show();
} }
@ -249,11 +248,11 @@ function vvvvvzd(add_php_getitems_vvvvvzd)
} }
} }
// the vvvvvze function // the vvvvvxm function
function vvvvvze(add_php_getitems_after_all_vvvvvze) function vvvvvxm(add_php_getitems_after_all_vvvvvxm)
{ {
// set the function logic // set the function logic
if (add_php_getitems_after_all_vvvvvze == 1) if (add_php_getitems_after_all_vvvvvxm == 1)
{ {
jQuery('#jform_php_getitems_after_all-lbl').closest('.control-group').show(); jQuery('#jform_php_getitems_after_all-lbl').closest('.control-group').show();
} }
@ -263,11 +262,11 @@ function vvvvvze(add_php_getitems_after_all_vvvvvze)
} }
} }
// the vvvvvzf function // the vvvvvxn function
function vvvvvzf(add_php_getlistquery_vvvvvzf) function vvvvvxn(add_php_getlistquery_vvvvvxn)
{ {
// set the function logic // set the function logic
if (add_php_getlistquery_vvvvvzf == 1) if (add_php_getlistquery_vvvvvxn == 1)
{ {
jQuery('#jform_php_getlistquery-lbl').closest('.control-group').show(); jQuery('#jform_php_getlistquery-lbl').closest('.control-group').show();
} }
@ -277,11 +276,11 @@ function vvvvvzf(add_php_getlistquery_vvvvvzf)
} }
} }
// the vvvvvzg function // the vvvvvxo function
function vvvvvzg(add_php_getform_vvvvvzg) function vvvvvxo(add_php_getform_vvvvvxo)
{ {
// set the function logic // set the function logic
if (add_php_getform_vvvvvzg == 1) if (add_php_getform_vvvvvxo == 1)
{ {
jQuery('#jform_php_getform-lbl').closest('.control-group').show(); jQuery('#jform_php_getform-lbl').closest('.control-group').show();
} }
@ -291,11 +290,11 @@ function vvvvvzg(add_php_getform_vvvvvzg)
} }
} }
// the vvvvvzh function // the vvvvvxp function
function vvvvvzh(add_php_before_save_vvvvvzh) function vvvvvxp(add_php_before_save_vvvvvxp)
{ {
// set the function logic // set the function logic
if (add_php_before_save_vvvvvzh == 1) if (add_php_before_save_vvvvvxp == 1)
{ {
jQuery('#jform_php_before_save-lbl').closest('.control-group').show(); jQuery('#jform_php_before_save-lbl').closest('.control-group').show();
} }
@ -305,11 +304,11 @@ function vvvvvzh(add_php_before_save_vvvvvzh)
} }
} }
// the vvvvvzi function // the vvvvvxq function
function vvvvvzi(add_php_save_vvvvvzi) function vvvvvxq(add_php_save_vvvvvxq)
{ {
// set the function logic // set the function logic
if (add_php_save_vvvvvzi == 1) if (add_php_save_vvvvvxq == 1)
{ {
jQuery('#jform_php_save-lbl').closest('.control-group').show(); jQuery('#jform_php_save-lbl').closest('.control-group').show();
} }
@ -319,11 +318,11 @@ function vvvvvzi(add_php_save_vvvvvzi)
} }
} }
// the vvvvvzj function // the vvvvvxr function
function vvvvvzj(add_php_postsavehook_vvvvvzj) function vvvvvxr(add_php_postsavehook_vvvvvxr)
{ {
// set the function logic // set the function logic
if (add_php_postsavehook_vvvvvzj == 1) if (add_php_postsavehook_vvvvvxr == 1)
{ {
jQuery('#jform_php_postsavehook-lbl').closest('.control-group').show(); jQuery('#jform_php_postsavehook-lbl').closest('.control-group').show();
} }
@ -333,11 +332,11 @@ function vvvvvzj(add_php_postsavehook_vvvvvzj)
} }
} }
// the vvvvvzk function // the vvvvvxs function
function vvvvvzk(add_php_allowadd_vvvvvzk) function vvvvvxs(add_php_allowadd_vvvvvxs)
{ {
// set the function logic // set the function logic
if (add_php_allowadd_vvvvvzk == 1) if (add_php_allowadd_vvvvvxs == 1)
{ {
jQuery('#jform_php_allowadd-lbl').closest('.control-group').show(); jQuery('#jform_php_allowadd-lbl').closest('.control-group').show();
} }
@ -347,11 +346,11 @@ function vvvvvzk(add_php_allowadd_vvvvvzk)
} }
} }
// the vvvvvzl function // the vvvvvxt function
function vvvvvzl(add_php_allowedit_vvvvvzl) function vvvvvxt(add_php_allowedit_vvvvvxt)
{ {
// set the function logic // set the function logic
if (add_php_allowedit_vvvvvzl == 1) if (add_php_allowedit_vvvvvxt == 1)
{ {
jQuery('#jform_php_allowedit-lbl').closest('.control-group').show(); jQuery('#jform_php_allowedit-lbl').closest('.control-group').show();
} }
@ -361,11 +360,11 @@ function vvvvvzl(add_php_allowedit_vvvvvzl)
} }
} }
// the vvvvvzm function // the vvvvvxu function
function vvvvvzm(add_php_before_cancel_vvvvvzm) function vvvvvxu(add_php_before_cancel_vvvvvxu)
{ {
// set the function logic // set the function logic
if (add_php_before_cancel_vvvvvzm == 1) if (add_php_before_cancel_vvvvvxu == 1)
{ {
jQuery('#jform_php_before_cancel-lbl').closest('.control-group').show(); jQuery('#jform_php_before_cancel-lbl').closest('.control-group').show();
} }
@ -375,11 +374,11 @@ function vvvvvzm(add_php_before_cancel_vvvvvzm)
} }
} }
// the vvvvvzn function // the vvvvvxv function
function vvvvvzn(add_php_after_cancel_vvvvvzn) function vvvvvxv(add_php_after_cancel_vvvvvxv)
{ {
// set the function logic // set the function logic
if (add_php_after_cancel_vvvvvzn == 1) if (add_php_after_cancel_vvvvvxv == 1)
{ {
jQuery('#jform_php_after_cancel-lbl').closest('.control-group').show(); jQuery('#jform_php_after_cancel-lbl').closest('.control-group').show();
} }
@ -389,11 +388,11 @@ function vvvvvzn(add_php_after_cancel_vvvvvzn)
} }
} }
// the vvvvvzo function // the vvvvvxw function
function vvvvvzo(add_php_batchcopy_vvvvvzo) function vvvvvxw(add_php_batchcopy_vvvvvxw)
{ {
// set the function logic // set the function logic
if (add_php_batchcopy_vvvvvzo == 1) if (add_php_batchcopy_vvvvvxw == 1)
{ {
jQuery('#jform_php_batchcopy-lbl').closest('.control-group').show(); jQuery('#jform_php_batchcopy-lbl').closest('.control-group').show();
} }
@ -403,11 +402,11 @@ function vvvvvzo(add_php_batchcopy_vvvvvzo)
} }
} }
// the vvvvvzp function // the vvvvvxx function
function vvvvvzp(add_php_batchmove_vvvvvzp) function vvvvvxx(add_php_batchmove_vvvvvxx)
{ {
// set the function logic // set the function logic
if (add_php_batchmove_vvvvvzp == 1) if (add_php_batchmove_vvvvvxx == 1)
{ {
jQuery('#jform_php_batchmove-lbl').closest('.control-group').show(); jQuery('#jform_php_batchmove-lbl').closest('.control-group').show();
} }
@ -417,11 +416,11 @@ function vvvvvzp(add_php_batchmove_vvvvvzp)
} }
} }
// the vvvvvzq function // the vvvvvxy function
function vvvvvzq(add_php_before_publish_vvvvvzq) function vvvvvxy(add_php_before_publish_vvvvvxy)
{ {
// set the function logic // set the function logic
if (add_php_before_publish_vvvvvzq == 1) if (add_php_before_publish_vvvvvxy == 1)
{ {
jQuery('#jform_php_before_publish-lbl').closest('.control-group').show(); jQuery('#jform_php_before_publish-lbl').closest('.control-group').show();
} }
@ -431,11 +430,11 @@ function vvvvvzq(add_php_before_publish_vvvvvzq)
} }
} }
// the vvvvvzr function // the vvvvvxz function
function vvvvvzr(add_php_after_publish_vvvvvzr) function vvvvvxz(add_php_after_publish_vvvvvxz)
{ {
// set the function logic // set the function logic
if (add_php_after_publish_vvvvvzr == 1) if (add_php_after_publish_vvvvvxz == 1)
{ {
jQuery('#jform_php_after_publish-lbl').closest('.control-group').show(); jQuery('#jform_php_after_publish-lbl').closest('.control-group').show();
} }
@ -445,11 +444,11 @@ function vvvvvzr(add_php_after_publish_vvvvvzr)
} }
} }
// the vvvvvzs function // the vvvvvya function
function vvvvvzs(add_php_before_delete_vvvvvzs) function vvvvvya(add_php_before_delete_vvvvvya)
{ {
// set the function logic // set the function logic
if (add_php_before_delete_vvvvvzs == 1) if (add_php_before_delete_vvvvvya == 1)
{ {
jQuery('#jform_php_before_delete-lbl').closest('.control-group').show(); jQuery('#jform_php_before_delete-lbl').closest('.control-group').show();
} }
@ -459,11 +458,11 @@ function vvvvvzs(add_php_before_delete_vvvvvzs)
} }
} }
// the vvvvvzt function // the vvvvvyb function
function vvvvvzt(add_php_after_delete_vvvvvzt) function vvvvvyb(add_php_after_delete_vvvvvyb)
{ {
// set the function logic // set the function logic
if (add_php_after_delete_vvvvvzt == 1) if (add_php_after_delete_vvvvvyb == 1)
{ {
jQuery('#jform_php_after_delete-lbl').closest('.control-group').show(); jQuery('#jform_php_after_delete-lbl').closest('.control-group').show();
} }
@ -473,11 +472,11 @@ function vvvvvzt(add_php_after_delete_vvvvvzt)
} }
} }
// the vvvvvzu function // the vvvvvyc function
function vvvvvzu(add_php_document_vvvvvzu) function vvvvvyc(add_php_document_vvvvvyc)
{ {
// set the function logic // set the function logic
if (add_php_document_vvvvvzu == 1) if (add_php_document_vvvvvyc == 1)
{ {
jQuery('#jform_php_document-lbl').closest('.control-group').show(); jQuery('#jform_php_document-lbl').closest('.control-group').show();
} }
@ -487,75 +486,57 @@ function vvvvvzu(add_php_document_vvvvvzu)
} }
} }
// the vvvvvzv function // the vvvvvyd function
function vvvvvzv(add_sql_vvvvvzv) function vvvvvyd(add_sql_vvvvvyd)
{ {
// set the function logic // set the function logic
if (add_sql_vvvvvzv == 1) if (add_sql_vvvvvyd == 1)
{ {
jQuery('#jform_source').closest('.control-group').show(); jQuery('#jform_source').closest('.control-group').show();
// add required attribute to source field // add required attribute to source field
if (jform_vvvvvzvvwj_required) if (jform_vvvvvydvwb_required)
{ {
updateFieldRequired('source',0); updateFieldRequired('source',0);
jQuery('#jform_source').prop('required','required'); jQuery('#jform_source').prop('required','required');
jQuery('#jform_source').attr('aria-required',true); jQuery('#jform_source').attr('aria-required',true);
jQuery('#jform_source').addClass('required'); jQuery('#jform_source').addClass('required');
jform_vvvvvzvvwj_required = false; jform_vvvvvydvwb_required = false;
} }
} }
else else
{ {
jQuery('#jform_source').closest('.control-group').hide(); jQuery('#jform_source').closest('.control-group').hide();
// remove required attribute from source field // remove required attribute from source field
if (!jform_vvvvvzvvwj_required) if (!jform_vvvvvydvwb_required)
{ {
updateFieldRequired('source',1); updateFieldRequired('source',1);
jQuery('#jform_source').removeAttr('required'); jQuery('#jform_source').removeAttr('required');
jQuery('#jform_source').removeAttr('aria-required'); jQuery('#jform_source').removeAttr('aria-required');
jQuery('#jform_source').removeClass('required'); jQuery('#jform_source').removeClass('required');
jform_vvvvvzvvwj_required = true; jform_vvvvvydvwb_required = true;
} }
} }
} }
// the vvvvvzw function // the vvvvvye function
function vvvvvzw(source_vvvvvzw,add_sql_vvvvvzw) function vvvvvye(source_vvvvvye,add_sql_vvvvvye)
{ {
// set the function logic // set the function logic
if (source_vvvvvzw == 2 && add_sql_vvvvvzw == 1) if (source_vvvvvye == 2 && add_sql_vvvvvye == 1)
{ {
jQuery('#jform_sql').closest('.control-group').show(); jQuery('#jform_sql').closest('.control-group').show();
// add required attribute to sql field
if (jform_vvvvvzwvwk_required)
{
updateFieldRequired('sql',0);
jQuery('#jform_sql').prop('required','required');
jQuery('#jform_sql').attr('aria-required',true);
jQuery('#jform_sql').addClass('required');
jform_vvvvvzwvwk_required = false;
}
} }
else else
{ {
jQuery('#jform_sql').closest('.control-group').hide(); jQuery('#jform_sql').closest('.control-group').hide();
// remove required attribute from sql field
if (!jform_vvvvvzwvwk_required)
{
updateFieldRequired('sql',1);
jQuery('#jform_sql').removeAttr('required');
jQuery('#jform_sql').removeAttr('aria-required');
jQuery('#jform_sql').removeClass('required');
jform_vvvvvzwvwk_required = true;
}
} }
} }
// the vvvvvzy function // the vvvvvyg function
function vvvvvzy(source_vvvvvzy,add_sql_vvvvvzy) function vvvvvyg(source_vvvvvyg,add_sql_vvvvvyg)
{ {
// set the function logic // set the function logic
if (source_vvvvvzy == 1 && add_sql_vvvvvzy == 1) if (source_vvvvvyg == 1 && add_sql_vvvvvyg == 1)
{ {
jQuery('#jform_addtables-lbl').closest('.control-group').show(); jQuery('#jform_addtables-lbl').closest('.control-group').show();
} }
@ -565,165 +546,165 @@ function vvvvvzy(source_vvvvvzy,add_sql_vvvvvzy)
} }
} }
// the vvvvwaa function // the vvvvvyi function
function vvvvwaa(add_custom_import_vvvvwaa) function vvvvvyi(add_custom_import_vvvvvyi)
{ {
// set the function logic // set the function logic
if (add_custom_import_vvvvwaa == 1) if (add_custom_import_vvvvvyi == 1)
{ {
jQuery('#jform_html_import_view').closest('.control-group').show(); jQuery('#jform_html_import_view').closest('.control-group').show();
// add required attribute to html_import_view field // add required attribute to html_import_view field
if (jform_vvvvwaavwl_required) if (jform_vvvvvyivwc_required)
{ {
updateFieldRequired('html_import_view',0); updateFieldRequired('html_import_view',0);
jQuery('#jform_html_import_view').prop('required','required'); jQuery('#jform_html_import_view').prop('required','required');
jQuery('#jform_html_import_view').attr('aria-required',true); jQuery('#jform_html_import_view').attr('aria-required',true);
jQuery('#jform_html_import_view').addClass('required'); jQuery('#jform_html_import_view').addClass('required');
jform_vvvvwaavwl_required = false; jform_vvvvvyivwc_required = false;
} }
jQuery('.note_advanced_import').closest('.control-group').show(); jQuery('.note_advanced_import').closest('.control-group').show();
jQuery('#jform_php_import_display').closest('.control-group').show(); jQuery('#jform_php_import_display').closest('.control-group').show();
// add required attribute to php_import_display field // add required attribute to php_import_display field
if (jform_vvvvwaavwm_required) if (jform_vvvvvyivwd_required)
{ {
updateFieldRequired('php_import_display',0); updateFieldRequired('php_import_display',0);
jQuery('#jform_php_import_display').prop('required','required'); jQuery('#jform_php_import_display').prop('required','required');
jQuery('#jform_php_import_display').attr('aria-required',true); jQuery('#jform_php_import_display').attr('aria-required',true);
jQuery('#jform_php_import_display').addClass('required'); jQuery('#jform_php_import_display').addClass('required');
jform_vvvvwaavwm_required = false; jform_vvvvvyivwd_required = false;
} }
jQuery('#jform_php_import_ext').closest('.control-group').show(); jQuery('#jform_php_import_ext').closest('.control-group').show();
// add required attribute to php_import_ext field // add required attribute to php_import_ext field
if (jform_vvvvwaavwn_required) if (jform_vvvvvyivwe_required)
{ {
updateFieldRequired('php_import_ext',0); updateFieldRequired('php_import_ext',0);
jQuery('#jform_php_import_ext').prop('required','required'); jQuery('#jform_php_import_ext').prop('required','required');
jQuery('#jform_php_import_ext').attr('aria-required',true); jQuery('#jform_php_import_ext').attr('aria-required',true);
jQuery('#jform_php_import_ext').addClass('required'); jQuery('#jform_php_import_ext').addClass('required');
jform_vvvvwaavwn_required = false; jform_vvvvvyivwe_required = false;
} }
jQuery('#jform_php_import_headers').closest('.control-group').show(); jQuery('#jform_php_import_headers').closest('.control-group').show();
// add required attribute to php_import_headers field // add required attribute to php_import_headers field
if (jform_vvvvwaavwo_required) if (jform_vvvvvyivwf_required)
{ {
updateFieldRequired('php_import_headers',0); updateFieldRequired('php_import_headers',0);
jQuery('#jform_php_import_headers').prop('required','required'); jQuery('#jform_php_import_headers').prop('required','required');
jQuery('#jform_php_import_headers').attr('aria-required',true); jQuery('#jform_php_import_headers').attr('aria-required',true);
jQuery('#jform_php_import_headers').addClass('required'); jQuery('#jform_php_import_headers').addClass('required');
jform_vvvvwaavwo_required = false; jform_vvvvvyivwf_required = false;
} }
jQuery('#jform_php_import').closest('.control-group').show(); jQuery('#jform_php_import').closest('.control-group').show();
// add required attribute to php_import field // add required attribute to php_import field
if (jform_vvvvwaavwp_required) if (jform_vvvvvyivwg_required)
{ {
updateFieldRequired('php_import',0); updateFieldRequired('php_import',0);
jQuery('#jform_php_import').prop('required','required'); jQuery('#jform_php_import').prop('required','required');
jQuery('#jform_php_import').attr('aria-required',true); jQuery('#jform_php_import').attr('aria-required',true);
jQuery('#jform_php_import').addClass('required'); jQuery('#jform_php_import').addClass('required');
jform_vvvvwaavwp_required = false; jform_vvvvvyivwg_required = false;
} }
jQuery('#jform_php_import_save').closest('.control-group').show(); jQuery('#jform_php_import_save').closest('.control-group').show();
// add required attribute to php_import_save field // add required attribute to php_import_save field
if (jform_vvvvwaavwq_required) if (jform_vvvvvyivwh_required)
{ {
updateFieldRequired('php_import_save',0); updateFieldRequired('php_import_save',0);
jQuery('#jform_php_import_save').prop('required','required'); jQuery('#jform_php_import_save').prop('required','required');
jQuery('#jform_php_import_save').attr('aria-required',true); jQuery('#jform_php_import_save').attr('aria-required',true);
jQuery('#jform_php_import_save').addClass('required'); jQuery('#jform_php_import_save').addClass('required');
jform_vvvvwaavwq_required = false; jform_vvvvvyivwh_required = false;
} }
jQuery('#jform_php_import_setdata').closest('.control-group').show(); jQuery('#jform_php_import_setdata').closest('.control-group').show();
// add required attribute to php_import_setdata field // add required attribute to php_import_setdata field
if (jform_vvvvwaavwr_required) if (jform_vvvvvyivwi_required)
{ {
updateFieldRequired('php_import_setdata',0); updateFieldRequired('php_import_setdata',0);
jQuery('#jform_php_import_setdata').prop('required','required'); jQuery('#jform_php_import_setdata').prop('required','required');
jQuery('#jform_php_import_setdata').attr('aria-required',true); jQuery('#jform_php_import_setdata').attr('aria-required',true);
jQuery('#jform_php_import_setdata').addClass('required'); jQuery('#jform_php_import_setdata').addClass('required');
jform_vvvvwaavwr_required = false; jform_vvvvvyivwi_required = false;
} }
} }
else else
{ {
jQuery('#jform_html_import_view').closest('.control-group').hide(); jQuery('#jform_html_import_view').closest('.control-group').hide();
// remove required attribute from html_import_view field // remove required attribute from html_import_view field
if (!jform_vvvvwaavwl_required) if (!jform_vvvvvyivwc_required)
{ {
updateFieldRequired('html_import_view',1); updateFieldRequired('html_import_view',1);
jQuery('#jform_html_import_view').removeAttr('required'); jQuery('#jform_html_import_view').removeAttr('required');
jQuery('#jform_html_import_view').removeAttr('aria-required'); jQuery('#jform_html_import_view').removeAttr('aria-required');
jQuery('#jform_html_import_view').removeClass('required'); jQuery('#jform_html_import_view').removeClass('required');
jform_vvvvwaavwl_required = true; jform_vvvvvyivwc_required = true;
} }
jQuery('.note_advanced_import').closest('.control-group').hide(); jQuery('.note_advanced_import').closest('.control-group').hide();
jQuery('#jform_php_import_display').closest('.control-group').hide(); jQuery('#jform_php_import_display').closest('.control-group').hide();
// remove required attribute from php_import_display field // remove required attribute from php_import_display field
if (!jform_vvvvwaavwm_required) if (!jform_vvvvvyivwd_required)
{ {
updateFieldRequired('php_import_display',1); updateFieldRequired('php_import_display',1);
jQuery('#jform_php_import_display').removeAttr('required'); jQuery('#jform_php_import_display').removeAttr('required');
jQuery('#jform_php_import_display').removeAttr('aria-required'); jQuery('#jform_php_import_display').removeAttr('aria-required');
jQuery('#jform_php_import_display').removeClass('required'); jQuery('#jform_php_import_display').removeClass('required');
jform_vvvvwaavwm_required = true; jform_vvvvvyivwd_required = true;
} }
jQuery('#jform_php_import_ext').closest('.control-group').hide(); jQuery('#jform_php_import_ext').closest('.control-group').hide();
// remove required attribute from php_import_ext field // remove required attribute from php_import_ext field
if (!jform_vvvvwaavwn_required) if (!jform_vvvvvyivwe_required)
{ {
updateFieldRequired('php_import_ext',1); updateFieldRequired('php_import_ext',1);
jQuery('#jform_php_import_ext').removeAttr('required'); jQuery('#jform_php_import_ext').removeAttr('required');
jQuery('#jform_php_import_ext').removeAttr('aria-required'); jQuery('#jform_php_import_ext').removeAttr('aria-required');
jQuery('#jform_php_import_ext').removeClass('required'); jQuery('#jform_php_import_ext').removeClass('required');
jform_vvvvwaavwn_required = true; jform_vvvvvyivwe_required = true;
} }
jQuery('#jform_php_import_headers').closest('.control-group').hide(); jQuery('#jform_php_import_headers').closest('.control-group').hide();
// remove required attribute from php_import_headers field // remove required attribute from php_import_headers field
if (!jform_vvvvwaavwo_required) if (!jform_vvvvvyivwf_required)
{ {
updateFieldRequired('php_import_headers',1); updateFieldRequired('php_import_headers',1);
jQuery('#jform_php_import_headers').removeAttr('required'); jQuery('#jform_php_import_headers').removeAttr('required');
jQuery('#jform_php_import_headers').removeAttr('aria-required'); jQuery('#jform_php_import_headers').removeAttr('aria-required');
jQuery('#jform_php_import_headers').removeClass('required'); jQuery('#jform_php_import_headers').removeClass('required');
jform_vvvvwaavwo_required = true; jform_vvvvvyivwf_required = true;
} }
jQuery('#jform_php_import').closest('.control-group').hide(); jQuery('#jform_php_import').closest('.control-group').hide();
// remove required attribute from php_import field // remove required attribute from php_import field
if (!jform_vvvvwaavwp_required) if (!jform_vvvvvyivwg_required)
{ {
updateFieldRequired('php_import',1); updateFieldRequired('php_import',1);
jQuery('#jform_php_import').removeAttr('required'); jQuery('#jform_php_import').removeAttr('required');
jQuery('#jform_php_import').removeAttr('aria-required'); jQuery('#jform_php_import').removeAttr('aria-required');
jQuery('#jform_php_import').removeClass('required'); jQuery('#jform_php_import').removeClass('required');
jform_vvvvwaavwp_required = true; jform_vvvvvyivwg_required = true;
} }
jQuery('#jform_php_import_save').closest('.control-group').hide(); jQuery('#jform_php_import_save').closest('.control-group').hide();
// remove required attribute from php_import_save field // remove required attribute from php_import_save field
if (!jform_vvvvwaavwq_required) if (!jform_vvvvvyivwh_required)
{ {
updateFieldRequired('php_import_save',1); updateFieldRequired('php_import_save',1);
jQuery('#jform_php_import_save').removeAttr('required'); jQuery('#jform_php_import_save').removeAttr('required');
jQuery('#jform_php_import_save').removeAttr('aria-required'); jQuery('#jform_php_import_save').removeAttr('aria-required');
jQuery('#jform_php_import_save').removeClass('required'); jQuery('#jform_php_import_save').removeClass('required');
jform_vvvvwaavwq_required = true; jform_vvvvvyivwh_required = true;
} }
jQuery('#jform_php_import_setdata').closest('.control-group').hide(); jQuery('#jform_php_import_setdata').closest('.control-group').hide();
// remove required attribute from php_import_setdata field // remove required attribute from php_import_setdata field
if (!jform_vvvvwaavwr_required) if (!jform_vvvvvyivwi_required)
{ {
updateFieldRequired('php_import_setdata',1); updateFieldRequired('php_import_setdata',1);
jQuery('#jform_php_import_setdata').removeAttr('required'); jQuery('#jform_php_import_setdata').removeAttr('required');
jQuery('#jform_php_import_setdata').removeAttr('aria-required'); jQuery('#jform_php_import_setdata').removeAttr('aria-required');
jQuery('#jform_php_import_setdata').removeClass('required'); jQuery('#jform_php_import_setdata').removeClass('required');
jform_vvvvwaavwr_required = true; jform_vvvvvyivwi_required = true;
} }
} }
} }
// the vvvvwab function // the vvvvvyj function
function vvvvwab(add_custom_import_vvvvwab) function vvvvvyj(add_custom_import_vvvvvyj)
{ {
// set the function logic // set the function logic
if (add_custom_import_vvvvwab == 0) if (add_custom_import_vvvvvyj == 0)
{ {
jQuery('.note_beginner_import').closest('.control-group').show(); jQuery('.note_beginner_import').closest('.control-group').show();
} }
@ -733,11 +714,11 @@ function vvvvwab(add_custom_import_vvvvwab)
} }
} }
// the vvvvwac function // the vvvvvyk function
function vvvvwac(add_custom_button_vvvvwac) function vvvvvyk(add_custom_button_vvvvvyk)
{ {
// set the function logic // set the function logic
if (add_custom_button_vvvvwac == 1) if (add_custom_button_vvvvvyk == 1)
{ {
jQuery('#jform_custom_button-lbl').closest('.control-group').show(); jQuery('#jform_custom_button-lbl').closest('.control-group').show();
jQuery('#jform_php_controller-lbl').closest('.control-group').show(); jQuery('#jform_php_controller-lbl').closest('.control-group').show();

View File

@ -9,29 +9,29 @@
*/ */
// Some Global Values // Some Global Values
jform_vvvvwcgvxk_required = false; jform_vvvvwaovxb_required = false;
// Initial Script // Initial Script
document.addEventListener('DOMContentLoaded', function() document.addEventListener('DOMContentLoaded', function()
{ {
var extension_type_vvvvwcg = jQuery("#jform_extension_type").val(); var extension_type_vvvvwao = jQuery("#jform_extension_type").val();
vvvvwcg(extension_type_vvvvwcg); vvvvwao(extension_type_vvvvwao);
}); });
// the vvvvwcg function // the vvvvwao function
function vvvvwcg(extension_type_vvvvwcg) function vvvvwao(extension_type_vvvvwao)
{ {
if (isSet(extension_type_vvvvwcg) && extension_type_vvvvwcg.constructor !== Array) if (isSet(extension_type_vvvvwao) && extension_type_vvvvwao.constructor !== Array)
{ {
var temp_vvvvwcg = extension_type_vvvvwcg; var temp_vvvvwao = extension_type_vvvvwao;
var extension_type_vvvvwcg = []; var extension_type_vvvvwao = [];
extension_type_vvvvwcg.push(temp_vvvvwcg); extension_type_vvvvwao.push(temp_vvvvwao);
} }
else if (!isSet(extension_type_vvvvwcg)) else if (!isSet(extension_type_vvvvwao))
{ {
var extension_type_vvvvwcg = []; var extension_type_vvvvwao = [];
} }
var extension_type = extension_type_vvvvwcg.some(extension_type_vvvvwcg_SomeFunc); var extension_type = extension_type_vvvvwao.some(extension_type_vvvvwao_SomeFunc);
// set this function logic // set this function logic
@ -39,35 +39,35 @@ function vvvvwcg(extension_type_vvvvwcg)
{ {
jQuery('#jform_joomla_plugin_group').closest('.control-group').show(); jQuery('#jform_joomla_plugin_group').closest('.control-group').show();
// add required attribute to joomla_plugin_group field // add required attribute to joomla_plugin_group field
if (jform_vvvvwcgvxk_required) if (jform_vvvvwaovxb_required)
{ {
updateFieldRequired('joomla_plugin_group',0); updateFieldRequired('joomla_plugin_group',0);
jQuery('#jform_joomla_plugin_group').prop('required','required'); jQuery('#jform_joomla_plugin_group').prop('required','required');
jQuery('#jform_joomla_plugin_group').attr('aria-required',true); jQuery('#jform_joomla_plugin_group').attr('aria-required',true);
jQuery('#jform_joomla_plugin_group').addClass('required'); jQuery('#jform_joomla_plugin_group').addClass('required');
jform_vvvvwcgvxk_required = false; jform_vvvvwaovxb_required = false;
} }
} }
else else
{ {
jQuery('#jform_joomla_plugin_group').closest('.control-group').hide(); jQuery('#jform_joomla_plugin_group').closest('.control-group').hide();
// remove required attribute from joomla_plugin_group field // remove required attribute from joomla_plugin_group field
if (!jform_vvvvwcgvxk_required) if (!jform_vvvvwaovxb_required)
{ {
updateFieldRequired('joomla_plugin_group',1); updateFieldRequired('joomla_plugin_group',1);
jQuery('#jform_joomla_plugin_group').removeAttr('required'); jQuery('#jform_joomla_plugin_group').removeAttr('required');
jQuery('#jform_joomla_plugin_group').removeAttr('aria-required'); jQuery('#jform_joomla_plugin_group').removeAttr('aria-required');
jQuery('#jform_joomla_plugin_group').removeClass('required'); jQuery('#jform_joomla_plugin_group').removeClass('required');
jform_vvvvwcgvxk_required = true; jform_vvvvwaovxb_required = true;
} }
} }
} }
// the vvvvwcg Some function // the vvvvwao Some function
function extension_type_vvvvwcg_SomeFunc(extension_type_vvvvwcg) function extension_type_vvvvwao_SomeFunc(extension_type_vvvvwao)
{ {
// set the function logic // set the function logic
if (extension_type_vvvvwcg == 'plugins' || extension_type_vvvvwcg == 'plugin') if (extension_type_vvvvwao == 'plugins' || extension_type_vvvvwao == 'plugin')
{ {
return true; return true;
} }

View File

@ -9,29 +9,29 @@
*/ */
// Some Global Values // Some Global Values
jform_vvvvwcfvxj_required = false; jform_vvvvwanvxa_required = false;
// Initial Script // Initial Script
document.addEventListener('DOMContentLoaded', function() document.addEventListener('DOMContentLoaded', function()
{ {
var extension_type_vvvvwcf = jQuery("#jform_extension_type").val(); var extension_type_vvvvwan = jQuery("#jform_extension_type").val();
vvvvwcf(extension_type_vvvvwcf); vvvvwan(extension_type_vvvvwan);
}); });
// the vvvvwcf function // the vvvvwan function
function vvvvwcf(extension_type_vvvvwcf) function vvvvwan(extension_type_vvvvwan)
{ {
if (isSet(extension_type_vvvvwcf) && extension_type_vvvvwcf.constructor !== Array) if (isSet(extension_type_vvvvwan) && extension_type_vvvvwan.constructor !== Array)
{ {
var temp_vvvvwcf = extension_type_vvvvwcf; var temp_vvvvwan = extension_type_vvvvwan;
var extension_type_vvvvwcf = []; var extension_type_vvvvwan = [];
extension_type_vvvvwcf.push(temp_vvvvwcf); extension_type_vvvvwan.push(temp_vvvvwan);
} }
else if (!isSet(extension_type_vvvvwcf)) else if (!isSet(extension_type_vvvvwan))
{ {
var extension_type_vvvvwcf = []; var extension_type_vvvvwan = [];
} }
var extension_type = extension_type_vvvvwcf.some(extension_type_vvvvwcf_SomeFunc); var extension_type = extension_type_vvvvwan.some(extension_type_vvvvwan_SomeFunc);
// set this function logic // set this function logic
@ -39,35 +39,35 @@ function vvvvwcf(extension_type_vvvvwcf)
{ {
jQuery('#jform_joomla_plugin_group').closest('.control-group').show(); jQuery('#jform_joomla_plugin_group').closest('.control-group').show();
// add required attribute to joomla_plugin_group field // add required attribute to joomla_plugin_group field
if (jform_vvvvwcfvxj_required) if (jform_vvvvwanvxa_required)
{ {
updateFieldRequired('joomla_plugin_group',0); updateFieldRequired('joomla_plugin_group',0);
jQuery('#jform_joomla_plugin_group').prop('required','required'); jQuery('#jform_joomla_plugin_group').prop('required','required');
jQuery('#jform_joomla_plugin_group').attr('aria-required',true); jQuery('#jform_joomla_plugin_group').attr('aria-required',true);
jQuery('#jform_joomla_plugin_group').addClass('required'); jQuery('#jform_joomla_plugin_group').addClass('required');
jform_vvvvwcfvxj_required = false; jform_vvvvwanvxa_required = false;
} }
} }
else else
{ {
jQuery('#jform_joomla_plugin_group').closest('.control-group').hide(); jQuery('#jform_joomla_plugin_group').closest('.control-group').hide();
// remove required attribute from joomla_plugin_group field // remove required attribute from joomla_plugin_group field
if (!jform_vvvvwcfvxj_required) if (!jform_vvvvwanvxa_required)
{ {
updateFieldRequired('joomla_plugin_group',1); updateFieldRequired('joomla_plugin_group',1);
jQuery('#jform_joomla_plugin_group').removeAttr('required'); jQuery('#jform_joomla_plugin_group').removeAttr('required');
jQuery('#jform_joomla_plugin_group').removeAttr('aria-required'); jQuery('#jform_joomla_plugin_group').removeAttr('aria-required');
jQuery('#jform_joomla_plugin_group').removeClass('required'); jQuery('#jform_joomla_plugin_group').removeClass('required');
jform_vvvvwcfvxj_required = true; jform_vvvvwanvxa_required = true;
} }
} }
} }
// the vvvvwcf Some function // the vvvvwan Some function
function extension_type_vvvvwcf_SomeFunc(extension_type_vvvvwcf) function extension_type_vvvvwan_SomeFunc(extension_type_vvvvwan)
{ {
// set the function logic // set the function logic
if (extension_type_vvvvwcf == 'plugins' || extension_type_vvvvwcf == 'plugin') if (extension_type_vvvvwan == 'plugins' || extension_type_vvvvwan == 'plugin')
{ {
return true; return true;
} }

View File

@ -11,42 +11,42 @@
// Initial Script // Initial Script
document.addEventListener('DOMContentLoaded', function() document.addEventListener('DOMContentLoaded', function()
{ {
var add_php_view_vvvvwad = jQuery("#jform_add_php_view input[type='radio']:checked").val(); var add_php_view_vvvvvyl = jQuery("#jform_add_php_view input[type='radio']:checked").val();
vvvvwad(add_php_view_vvvvwad); vvvvvyl(add_php_view_vvvvvyl);
var add_php_jview_display_vvvvwae = jQuery("#jform_add_php_jview_display input[type='radio']:checked").val(); var add_php_jview_display_vvvvvym = jQuery("#jform_add_php_jview_display input[type='radio']:checked").val();
vvvvwae(add_php_jview_display_vvvvwae); vvvvvym(add_php_jview_display_vvvvvym);
var add_php_jview_vvvvwaf = jQuery("#jform_add_php_jview input[type='radio']:checked").val(); var add_php_jview_vvvvvyn = jQuery("#jform_add_php_jview input[type='radio']:checked").val();
vvvvwaf(add_php_jview_vvvvwaf); vvvvvyn(add_php_jview_vvvvvyn);
var add_php_document_vvvvwag = jQuery("#jform_add_php_document input[type='radio']:checked").val(); var add_php_document_vvvvvyo = jQuery("#jform_add_php_document input[type='radio']:checked").val();
vvvvwag(add_php_document_vvvvwag); vvvvvyo(add_php_document_vvvvvyo);
var add_css_document_vvvvwah = jQuery("#jform_add_css_document input[type='radio']:checked").val(); var add_css_document_vvvvvyp = jQuery("#jform_add_css_document input[type='radio']:checked").val();
vvvvwah(add_css_document_vvvvwah); vvvvvyp(add_css_document_vvvvvyp);
var add_javascript_file_vvvvwai = jQuery("#jform_add_javascript_file input[type='radio']:checked").val(); var add_javascript_file_vvvvvyq = jQuery("#jform_add_javascript_file input[type='radio']:checked").val();
vvvvwai(add_javascript_file_vvvvwai); vvvvvyq(add_javascript_file_vvvvvyq);
var add_js_document_vvvvwaj = jQuery("#jform_add_js_document input[type='radio']:checked").val(); var add_js_document_vvvvvyr = jQuery("#jform_add_js_document input[type='radio']:checked").val();
vvvvwaj(add_js_document_vvvvwaj); vvvvvyr(add_js_document_vvvvvyr);
var add_custom_button_vvvvwak = jQuery("#jform_add_custom_button input[type='radio']:checked").val(); var add_custom_button_vvvvvys = jQuery("#jform_add_custom_button input[type='radio']:checked").val();
vvvvwak(add_custom_button_vvvvwak); vvvvvys(add_custom_button_vvvvvys);
var add_css_vvvvwal = jQuery("#jform_add_css input[type='radio']:checked").val(); var add_css_vvvvvyt = jQuery("#jform_add_css input[type='radio']:checked").val();
vvvvwal(add_css_vvvvwal); vvvvvyt(add_css_vvvvvyt);
var add_php_ajax_vvvvwam = jQuery("#jform_add_php_ajax input[type='radio']:checked").val(); var add_php_ajax_vvvvvyu = jQuery("#jform_add_php_ajax input[type='radio']:checked").val();
vvvvwam(add_php_ajax_vvvvwam); vvvvvyu(add_php_ajax_vvvvvyu);
}); });
// the vvvvwad function // the vvvvvyl function
function vvvvwad(add_php_view_vvvvwad) function vvvvvyl(add_php_view_vvvvvyl)
{ {
// set the function logic // set the function logic
if (add_php_view_vvvvwad == 1) if (add_php_view_vvvvvyl == 1)
{ {
jQuery('#jform_php_view-lbl').closest('.control-group').show(); jQuery('#jform_php_view-lbl').closest('.control-group').show();
} }
@ -56,11 +56,11 @@ function vvvvwad(add_php_view_vvvvwad)
} }
} }
// the vvvvwae function // the vvvvvym function
function vvvvwae(add_php_jview_display_vvvvwae) function vvvvvym(add_php_jview_display_vvvvvym)
{ {
// set the function logic // set the function logic
if (add_php_jview_display_vvvvwae == 1) if (add_php_jview_display_vvvvvym == 1)
{ {
jQuery('#jform_php_jview_display-lbl').closest('.control-group').show(); jQuery('#jform_php_jview_display-lbl').closest('.control-group').show();
} }
@ -70,11 +70,11 @@ function vvvvwae(add_php_jview_display_vvvvwae)
} }
} }
// the vvvvwaf function // the vvvvvyn function
function vvvvwaf(add_php_jview_vvvvwaf) function vvvvvyn(add_php_jview_vvvvvyn)
{ {
// set the function logic // set the function logic
if (add_php_jview_vvvvwaf == 1) if (add_php_jview_vvvvvyn == 1)
{ {
jQuery('#jform_php_jview-lbl').closest('.control-group').show(); jQuery('#jform_php_jview-lbl').closest('.control-group').show();
} }
@ -84,11 +84,11 @@ function vvvvwaf(add_php_jview_vvvvwaf)
} }
} }
// the vvvvwag function // the vvvvvyo function
function vvvvwag(add_php_document_vvvvwag) function vvvvvyo(add_php_document_vvvvvyo)
{ {
// set the function logic // set the function logic
if (add_php_document_vvvvwag == 1) if (add_php_document_vvvvvyo == 1)
{ {
jQuery('#jform_php_document-lbl').closest('.control-group').show(); jQuery('#jform_php_document-lbl').closest('.control-group').show();
} }
@ -98,11 +98,11 @@ function vvvvwag(add_php_document_vvvvwag)
} }
} }
// the vvvvwah function // the vvvvvyp function
function vvvvwah(add_css_document_vvvvwah) function vvvvvyp(add_css_document_vvvvvyp)
{ {
// set the function logic // set the function logic
if (add_css_document_vvvvwah == 1) if (add_css_document_vvvvvyp == 1)
{ {
jQuery('#jform_css_document-lbl').closest('.control-group').show(); jQuery('#jform_css_document-lbl').closest('.control-group').show();
} }
@ -112,11 +112,11 @@ function vvvvwah(add_css_document_vvvvwah)
} }
} }
// the vvvvwai function // the vvvvvyq function
function vvvvwai(add_javascript_file_vvvvwai) function vvvvvyq(add_javascript_file_vvvvvyq)
{ {
// set the function logic // set the function logic
if (add_javascript_file_vvvvwai == 1) if (add_javascript_file_vvvvvyq == 1)
{ {
jQuery('#jform_javascript_file-lbl').closest('.control-group').show(); jQuery('#jform_javascript_file-lbl').closest('.control-group').show();
} }
@ -126,11 +126,11 @@ function vvvvwai(add_javascript_file_vvvvwai)
} }
} }
// the vvvvwaj function // the vvvvvyr function
function vvvvwaj(add_js_document_vvvvwaj) function vvvvvyr(add_js_document_vvvvvyr)
{ {
// set the function logic // set the function logic
if (add_js_document_vvvvwaj == 1) if (add_js_document_vvvvvyr == 1)
{ {
jQuery('#jform_js_document-lbl').closest('.control-group').show(); jQuery('#jform_js_document-lbl').closest('.control-group').show();
} }
@ -140,11 +140,11 @@ function vvvvwaj(add_js_document_vvvvwaj)
} }
} }
// the vvvvwak function // the vvvvvys function
function vvvvwak(add_custom_button_vvvvwak) function vvvvvys(add_custom_button_vvvvvys)
{ {
// set the function logic // set the function logic
if (add_custom_button_vvvvwak == 1) if (add_custom_button_vvvvvys == 1)
{ {
jQuery('#jform_custom_button-lbl').closest('.control-group').show(); jQuery('#jform_custom_button-lbl').closest('.control-group').show();
jQuery('#jform_php_controller-lbl').closest('.control-group').show(); jQuery('#jform_php_controller-lbl').closest('.control-group').show();
@ -158,11 +158,11 @@ function vvvvwak(add_custom_button_vvvvwak)
} }
} }
// the vvvvwal function // the vvvvvyt function
function vvvvwal(add_css_vvvvwal) function vvvvvyt(add_css_vvvvvyt)
{ {
// set the function logic // set the function logic
if (add_css_vvvvwal == 1) if (add_css_vvvvvyt == 1)
{ {
jQuery('#jform_css-lbl').closest('.control-group').show(); jQuery('#jform_css-lbl').closest('.control-group').show();
} }
@ -172,11 +172,11 @@ function vvvvwal(add_css_vvvvwal)
} }
} }
// the vvvvwam function // the vvvvvyu function
function vvvvwam(add_php_ajax_vvvvwam) function vvvvvyu(add_php_ajax_vvvvvyu)
{ {
// set the function logic // set the function logic
if (add_php_ajax_vvvvwam == 1) if (add_php_ajax_vvvvvyu == 1)
{ {
jQuery('#jform_ajax_input-lbl').closest('.control-group').show(); jQuery('#jform_ajax_input-lbl').closest('.control-group').show();
jQuery('#jform_php_ajaxmethod-lbl').closest('.control-group').show(); jQuery('#jform_php_ajaxmethod-lbl').closest('.control-group').show();

View File

@ -9,44 +9,44 @@
*/ */
// Some Global Values // Some Global Values
jform_vvvvwcbvxf_required = false; jform_vvvvwajvww_required = false;
jform_vvvvwccvxg_required = false; jform_vvvvwakvwx_required = false;
jform_vvvvwccvxh_required = false; jform_vvvvwakvwy_required = false;
jform_vvvvwccvxi_required = false; jform_vvvvwakvwz_required = false;
// Initial Script // Initial Script
document.addEventListener('DOMContentLoaded', function() document.addEventListener('DOMContentLoaded', function()
{ {
var target_vvvvwcb = jQuery("#jform_target input[type='radio']:checked").val(); var target_vvvvwaj = jQuery("#jform_target input[type='radio']:checked").val();
vvvvwcb(target_vvvvwcb); vvvvwaj(target_vvvvwaj);
var target_vvvvwcc = jQuery("#jform_target input[type='radio']:checked").val(); var target_vvvvwak = jQuery("#jform_target input[type='radio']:checked").val();
vvvvwcc(target_vvvvwcc); vvvvwak(target_vvvvwak);
var target_vvvvwcd = jQuery("#jform_target input[type='radio']:checked").val(); var target_vvvvwal = jQuery("#jform_target input[type='radio']:checked").val();
var type_vvvvwcd = jQuery("#jform_type input[type='radio']:checked").val(); var type_vvvvwal = jQuery("#jform_type input[type='radio']:checked").val();
vvvvwcd(target_vvvvwcd,type_vvvvwcd); vvvvwal(target_vvvvwal,type_vvvvwal);
var type_vvvvwce = jQuery("#jform_type input[type='radio']:checked").val(); var type_vvvvwam = jQuery("#jform_type input[type='radio']:checked").val();
var target_vvvvwce = jQuery("#jform_target input[type='radio']:checked").val(); var target_vvvvwam = jQuery("#jform_target input[type='radio']:checked").val();
vvvvwce(type_vvvvwce,target_vvvvwce); vvvvwam(type_vvvvwam,target_vvvvwam);
}); });
// the vvvvwcb function // the vvvvwaj function
function vvvvwcb(target_vvvvwcb) function vvvvwaj(target_vvvvwaj)
{ {
// set the function logic // set the function logic
if (target_vvvvwcb == 2) if (target_vvvvwaj == 2)
{ {
jQuery('#jform_function_name').closest('.control-group').show(); jQuery('#jform_function_name').closest('.control-group').show();
// add required attribute to function_name field // add required attribute to function_name field
if (jform_vvvvwcbvxf_required) if (jform_vvvvwajvww_required)
{ {
updateFieldRequired('function_name',0); updateFieldRequired('function_name',0);
jQuery('#jform_function_name').prop('required','required'); jQuery('#jform_function_name').prop('required','required');
jQuery('#jform_function_name').attr('aria-required',true); jQuery('#jform_function_name').attr('aria-required',true);
jQuery('#jform_function_name').addClass('required'); jQuery('#jform_function_name').addClass('required');
jform_vvvvwcbvxf_required = false; jform_vvvvwajvww_required = false;
} }
jQuery('.note_jcb_placeholder').closest('.control-group').show(); jQuery('.note_jcb_placeholder').closest('.control-group').show();
jQuery('#jform_system_name').closest('.control-group').show(); jQuery('#jform_system_name').closest('.control-group').show();
@ -55,102 +55,102 @@ function vvvvwcb(target_vvvvwcb)
{ {
jQuery('#jform_function_name').closest('.control-group').hide(); jQuery('#jform_function_name').closest('.control-group').hide();
// remove required attribute from function_name field // remove required attribute from function_name field
if (!jform_vvvvwcbvxf_required) if (!jform_vvvvwajvww_required)
{ {
updateFieldRequired('function_name',1); updateFieldRequired('function_name',1);
jQuery('#jform_function_name').removeAttr('required'); jQuery('#jform_function_name').removeAttr('required');
jQuery('#jform_function_name').removeAttr('aria-required'); jQuery('#jform_function_name').removeAttr('aria-required');
jQuery('#jform_function_name').removeClass('required'); jQuery('#jform_function_name').removeClass('required');
jform_vvvvwcbvxf_required = true; jform_vvvvwajvww_required = true;
} }
jQuery('.note_jcb_placeholder').closest('.control-group').hide(); jQuery('.note_jcb_placeholder').closest('.control-group').hide();
jQuery('#jform_system_name').closest('.control-group').hide(); jQuery('#jform_system_name').closest('.control-group').hide();
} }
} }
// the vvvvwcc function // the vvvvwak function
function vvvvwcc(target_vvvvwcc) function vvvvwak(target_vvvvwak)
{ {
// set the function logic // set the function logic
if (target_vvvvwcc == 1) if (target_vvvvwak == 1)
{ {
jQuery('#jform_component').closest('.control-group').show(); jQuery('#jform_component').closest('.control-group').show();
// add required attribute to component field // add required attribute to component field
if (jform_vvvvwccvxg_required) if (jform_vvvvwakvwx_required)
{ {
updateFieldRequired('component',0); updateFieldRequired('component',0);
jQuery('#jform_component').prop('required','required'); jQuery('#jform_component').prop('required','required');
jQuery('#jform_component').attr('aria-required',true); jQuery('#jform_component').attr('aria-required',true);
jQuery('#jform_component').addClass('required'); jQuery('#jform_component').addClass('required');
jform_vvvvwccvxg_required = false; jform_vvvvwakvwx_required = false;
} }
jQuery('#jform_path').closest('.control-group').show(); jQuery('#jform_path').closest('.control-group').show();
// add required attribute to path field // add required attribute to path field
if (jform_vvvvwccvxh_required) if (jform_vvvvwakvwy_required)
{ {
updateFieldRequired('path',0); updateFieldRequired('path',0);
jQuery('#jform_path').prop('required','required'); jQuery('#jform_path').prop('required','required');
jQuery('#jform_path').attr('aria-required',true); jQuery('#jform_path').attr('aria-required',true);
jQuery('#jform_path').addClass('required'); jQuery('#jform_path').addClass('required');
jform_vvvvwccvxh_required = false; jform_vvvvwakvwy_required = false;
} }
jQuery('#jform_from_line').closest('.control-group').show(); jQuery('#jform_from_line').closest('.control-group').show();
jQuery('#jform_hashtarget').closest('.control-group').show(); jQuery('#jform_hashtarget').closest('.control-group').show();
jQuery('#jform_to_line').closest('.control-group').show(); jQuery('#jform_to_line').closest('.control-group').show();
jQuery('#jform_type').closest('.control-group').show(); jQuery('#jform_type').closest('.control-group').show();
// add required attribute to type field // add required attribute to type field
if (jform_vvvvwccvxi_required) if (jform_vvvvwakvwz_required)
{ {
updateFieldRequired('type',0); updateFieldRequired('type',0);
jQuery('#jform_type').prop('required','required'); jQuery('#jform_type').prop('required','required');
jQuery('#jform_type').attr('aria-required',true); jQuery('#jform_type').attr('aria-required',true);
jQuery('#jform_type').addClass('required'); jQuery('#jform_type').addClass('required');
jform_vvvvwccvxi_required = false; jform_vvvvwakvwz_required = false;
} }
} }
else else
{ {
jQuery('#jform_component').closest('.control-group').hide(); jQuery('#jform_component').closest('.control-group').hide();
// remove required attribute from component field // remove required attribute from component field
if (!jform_vvvvwccvxg_required) if (!jform_vvvvwakvwx_required)
{ {
updateFieldRequired('component',1); updateFieldRequired('component',1);
jQuery('#jform_component').removeAttr('required'); jQuery('#jform_component').removeAttr('required');
jQuery('#jform_component').removeAttr('aria-required'); jQuery('#jform_component').removeAttr('aria-required');
jQuery('#jform_component').removeClass('required'); jQuery('#jform_component').removeClass('required');
jform_vvvvwccvxg_required = true; jform_vvvvwakvwx_required = true;
} }
jQuery('#jform_path').closest('.control-group').hide(); jQuery('#jform_path').closest('.control-group').hide();
// remove required attribute from path field // remove required attribute from path field
if (!jform_vvvvwccvxh_required) if (!jform_vvvvwakvwy_required)
{ {
updateFieldRequired('path',1); updateFieldRequired('path',1);
jQuery('#jform_path').removeAttr('required'); jQuery('#jform_path').removeAttr('required');
jQuery('#jform_path').removeAttr('aria-required'); jQuery('#jform_path').removeAttr('aria-required');
jQuery('#jform_path').removeClass('required'); jQuery('#jform_path').removeClass('required');
jform_vvvvwccvxh_required = true; jform_vvvvwakvwy_required = true;
} }
jQuery('#jform_from_line').closest('.control-group').hide(); jQuery('#jform_from_line').closest('.control-group').hide();
jQuery('#jform_hashtarget').closest('.control-group').hide(); jQuery('#jform_hashtarget').closest('.control-group').hide();
jQuery('#jform_to_line').closest('.control-group').hide(); jQuery('#jform_to_line').closest('.control-group').hide();
jQuery('#jform_type').closest('.control-group').hide(); jQuery('#jform_type').closest('.control-group').hide();
// remove required attribute from type field // remove required attribute from type field
if (!jform_vvvvwccvxi_required) if (!jform_vvvvwakvwz_required)
{ {
updateFieldRequired('type',1); updateFieldRequired('type',1);
jQuery('#jform_type').removeAttr('required'); jQuery('#jform_type').removeAttr('required');
jQuery('#jform_type').removeAttr('aria-required'); jQuery('#jform_type').removeAttr('aria-required');
jQuery('#jform_type').removeClass('required'); jQuery('#jform_type').removeClass('required');
jform_vvvvwccvxi_required = true; jform_vvvvwakvwz_required = true;
} }
} }
} }
// the vvvvwcd function // the vvvvwal function
function vvvvwcd(target_vvvvwcd,type_vvvvwcd) function vvvvwal(target_vvvvwal,type_vvvvwal)
{ {
// set the function logic // set the function logic
if (target_vvvvwcd == 1 && type_vvvvwcd == 1) if (target_vvvvwal == 1 && type_vvvvwal == 1)
{ {
jQuery('#jform_hashendtarget').closest('.control-group').show(); jQuery('#jform_hashendtarget').closest('.control-group').show();
jQuery('#jform_to_line').closest('.control-group').show(); jQuery('#jform_to_line').closest('.control-group').show();
@ -162,11 +162,11 @@ function vvvvwcd(target_vvvvwcd,type_vvvvwcd)
} }
} }
// the vvvvwce function // the vvvvwam function
function vvvvwce(type_vvvvwce,target_vvvvwce) function vvvvwam(type_vvvvwam,target_vvvvwam)
{ {
// set the function logic // set the function logic
if (type_vvvvwce == 1 && target_vvvvwce == 1) if (type_vvvvwam == 1 && target_vvvvwam == 1)
{ {
jQuery('#jform_hashendtarget').closest('.control-group').show(); jQuery('#jform_hashendtarget').closest('.control-group').show();
jQuery('#jform_to_line').closest('.control-group').show(); jQuery('#jform_to_line').closest('.control-group').show();

File diff suppressed because it is too large Load Diff

View File

@ -9,62 +9,62 @@
*/ */
// Some Global Values // Some Global Values
jform_vvvvwczvxo_required = false; jform_vvvvwbhvxf_required = false;
jform_vvvvwdavxp_required = false; jform_vvvvwbivxg_required = false;
jform_vvvvwdbvxq_required = false; jform_vvvvwbjvxh_required = false;
jform_vvvvwdcvxr_required = false; jform_vvvvwbkvxi_required = false;
jform_vvvvwdfvxs_required = false; jform_vvvvwbnvxj_required = false;
jform_vvvvwdfvxt_required = false; jform_vvvvwbnvxk_required = false;
// Initial Script // Initial Script
document.addEventListener('DOMContentLoaded', function() document.addEventListener('DOMContentLoaded', function()
{ {
var datalenght_vvvvwcz = jQuery("#jform_datalenght").val(); var datalenght_vvvvwbh = jQuery("#jform_datalenght").val();
vvvvwcz(datalenght_vvvvwcz); vvvvwbh(datalenght_vvvvwbh);
var datadefault_vvvvwda = jQuery("#jform_datadefault").val(); var datadefault_vvvvwbi = jQuery("#jform_datadefault").val();
vvvvwda(datadefault_vvvvwda); vvvvwbi(datadefault_vvvvwbi);
var datatype_vvvvwdb = jQuery("#jform_datatype").val(); var datatype_vvvvwbj = jQuery("#jform_datatype").val();
vvvvwdb(datatype_vvvvwdb); vvvvwbj(datatype_vvvvwbj);
var datatype_vvvvwdc = jQuery("#jform_datatype").val(); var datatype_vvvvwbk = jQuery("#jform_datatype").val();
vvvvwdc(datatype_vvvvwdc); vvvvwbk(datatype_vvvvwbk);
var store_vvvvwdd = jQuery("#jform_store").val(); var store_vvvvwbl = jQuery("#jform_store").val();
var datatype_vvvvwdd = jQuery("#jform_datatype").val(); var datatype_vvvvwbl = jQuery("#jform_datatype").val();
vvvvwdd(store_vvvvwdd,datatype_vvvvwdd); vvvvwbl(store_vvvvwbl,datatype_vvvvwbl);
var store_vvvvwdf = jQuery("#jform_store").val(); var store_vvvvwbn = jQuery("#jform_store").val();
vvvvwdf(store_vvvvwdf); vvvvwbn(store_vvvvwbn);
var add_css_view_vvvvwdg = jQuery("#jform_add_css_view input[type='radio']:checked").val(); var add_css_view_vvvvwbo = jQuery("#jform_add_css_view input[type='radio']:checked").val();
vvvvwdg(add_css_view_vvvvwdg); vvvvwbo(add_css_view_vvvvwbo);
var add_css_views_vvvvwdh = jQuery("#jform_add_css_views input[type='radio']:checked").val(); var add_css_views_vvvvwbp = jQuery("#jform_add_css_views input[type='radio']:checked").val();
vvvvwdh(add_css_views_vvvvwdh); vvvvwbp(add_css_views_vvvvwbp);
var add_javascript_view_footer_vvvvwdi = jQuery("#jform_add_javascript_view_footer input[type='radio']:checked").val(); var add_javascript_view_footer_vvvvwbq = jQuery("#jform_add_javascript_view_footer input[type='radio']:checked").val();
vvvvwdi(add_javascript_view_footer_vvvvwdi); vvvvwbq(add_javascript_view_footer_vvvvwbq);
var add_javascript_views_footer_vvvvwdj = jQuery("#jform_add_javascript_views_footer input[type='radio']:checked").val(); var add_javascript_views_footer_vvvvwbr = jQuery("#jform_add_javascript_views_footer input[type='radio']:checked").val();
vvvvwdj(add_javascript_views_footer_vvvvwdj); vvvvwbr(add_javascript_views_footer_vvvvwbr);
}); });
// the vvvvwcz function // the vvvvwbh function
function vvvvwcz(datalenght_vvvvwcz) function vvvvwbh(datalenght_vvvvwbh)
{ {
if (isSet(datalenght_vvvvwcz) && datalenght_vvvvwcz.constructor !== Array) if (isSet(datalenght_vvvvwbh) && datalenght_vvvvwbh.constructor !== Array)
{ {
var temp_vvvvwcz = datalenght_vvvvwcz; var temp_vvvvwbh = datalenght_vvvvwbh;
var datalenght_vvvvwcz = []; var datalenght_vvvvwbh = [];
datalenght_vvvvwcz.push(temp_vvvvwcz); datalenght_vvvvwbh.push(temp_vvvvwbh);
} }
else if (!isSet(datalenght_vvvvwcz)) else if (!isSet(datalenght_vvvvwbh))
{ {
var datalenght_vvvvwcz = []; var datalenght_vvvvwbh = [];
} }
var datalenght = datalenght_vvvvwcz.some(datalenght_vvvvwcz_SomeFunc); var datalenght = datalenght_vvvvwbh.some(datalenght_vvvvwbh_SomeFunc);
// set this function logic // set this function logic
@ -72,55 +72,55 @@ function vvvvwcz(datalenght_vvvvwcz)
{ {
jQuery('#jform_datalenght_other').closest('.control-group').show(); jQuery('#jform_datalenght_other').closest('.control-group').show();
// add required attribute to datalenght_other field // add required attribute to datalenght_other field
if (jform_vvvvwczvxo_required) if (jform_vvvvwbhvxf_required)
{ {
updateFieldRequired('datalenght_other',0); updateFieldRequired('datalenght_other',0);
jQuery('#jform_datalenght_other').prop('required','required'); jQuery('#jform_datalenght_other').prop('required','required');
jQuery('#jform_datalenght_other').attr('aria-required',true); jQuery('#jform_datalenght_other').attr('aria-required',true);
jQuery('#jform_datalenght_other').addClass('required'); jQuery('#jform_datalenght_other').addClass('required');
jform_vvvvwczvxo_required = false; jform_vvvvwbhvxf_required = false;
} }
} }
else else
{ {
jQuery('#jform_datalenght_other').closest('.control-group').hide(); jQuery('#jform_datalenght_other').closest('.control-group').hide();
// remove required attribute from datalenght_other field // remove required attribute from datalenght_other field
if (!jform_vvvvwczvxo_required) if (!jform_vvvvwbhvxf_required)
{ {
updateFieldRequired('datalenght_other',1); updateFieldRequired('datalenght_other',1);
jQuery('#jform_datalenght_other').removeAttr('required'); jQuery('#jform_datalenght_other').removeAttr('required');
jQuery('#jform_datalenght_other').removeAttr('aria-required'); jQuery('#jform_datalenght_other').removeAttr('aria-required');
jQuery('#jform_datalenght_other').removeClass('required'); jQuery('#jform_datalenght_other').removeClass('required');
jform_vvvvwczvxo_required = true; jform_vvvvwbhvxf_required = true;
} }
} }
} }
// the vvvvwcz Some function // the vvvvwbh Some function
function datalenght_vvvvwcz_SomeFunc(datalenght_vvvvwcz) function datalenght_vvvvwbh_SomeFunc(datalenght_vvvvwbh)
{ {
// set the function logic // set the function logic
if (datalenght_vvvvwcz == 'Other') if (datalenght_vvvvwbh == 'Other')
{ {
return true; return true;
} }
return false; return false;
} }
// the vvvvwda function // the vvvvwbi function
function vvvvwda(datadefault_vvvvwda) function vvvvwbi(datadefault_vvvvwbi)
{ {
if (isSet(datadefault_vvvvwda) && datadefault_vvvvwda.constructor !== Array) if (isSet(datadefault_vvvvwbi) && datadefault_vvvvwbi.constructor !== Array)
{ {
var temp_vvvvwda = datadefault_vvvvwda; var temp_vvvvwbi = datadefault_vvvvwbi;
var datadefault_vvvvwda = []; var datadefault_vvvvwbi = [];
datadefault_vvvvwda.push(temp_vvvvwda); datadefault_vvvvwbi.push(temp_vvvvwbi);
} }
else if (!isSet(datadefault_vvvvwda)) else if (!isSet(datadefault_vvvvwbi))
{ {
var datadefault_vvvvwda = []; var datadefault_vvvvwbi = [];
} }
var datadefault = datadefault_vvvvwda.some(datadefault_vvvvwda_SomeFunc); var datadefault = datadefault_vvvvwbi.some(datadefault_vvvvwbi_SomeFunc);
// set this function logic // set this function logic
@ -128,55 +128,55 @@ function vvvvwda(datadefault_vvvvwda)
{ {
jQuery('#jform_datadefault_other').closest('.control-group').show(); jQuery('#jform_datadefault_other').closest('.control-group').show();
// add required attribute to datadefault_other field // add required attribute to datadefault_other field
if (jform_vvvvwdavxp_required) if (jform_vvvvwbivxg_required)
{ {
updateFieldRequired('datadefault_other',0); updateFieldRequired('datadefault_other',0);
jQuery('#jform_datadefault_other').prop('required','required'); jQuery('#jform_datadefault_other').prop('required','required');
jQuery('#jform_datadefault_other').attr('aria-required',true); jQuery('#jform_datadefault_other').attr('aria-required',true);
jQuery('#jform_datadefault_other').addClass('required'); jQuery('#jform_datadefault_other').addClass('required');
jform_vvvvwdavxp_required = false; jform_vvvvwbivxg_required = false;
} }
} }
else else
{ {
jQuery('#jform_datadefault_other').closest('.control-group').hide(); jQuery('#jform_datadefault_other').closest('.control-group').hide();
// remove required attribute from datadefault_other field // remove required attribute from datadefault_other field
if (!jform_vvvvwdavxp_required) if (!jform_vvvvwbivxg_required)
{ {
updateFieldRequired('datadefault_other',1); updateFieldRequired('datadefault_other',1);
jQuery('#jform_datadefault_other').removeAttr('required'); jQuery('#jform_datadefault_other').removeAttr('required');
jQuery('#jform_datadefault_other').removeAttr('aria-required'); jQuery('#jform_datadefault_other').removeAttr('aria-required');
jQuery('#jform_datadefault_other').removeClass('required'); jQuery('#jform_datadefault_other').removeClass('required');
jform_vvvvwdavxp_required = true; jform_vvvvwbivxg_required = true;
} }
} }
} }
// the vvvvwda Some function // the vvvvwbi Some function
function datadefault_vvvvwda_SomeFunc(datadefault_vvvvwda) function datadefault_vvvvwbi_SomeFunc(datadefault_vvvvwbi)
{ {
// set the function logic // set the function logic
if (datadefault_vvvvwda == 'Other') if (datadefault_vvvvwbi == 'Other')
{ {
return true; return true;
} }
return false; return false;
} }
// the vvvvwdb function // the vvvvwbj function
function vvvvwdb(datatype_vvvvwdb) function vvvvwbj(datatype_vvvvwbj)
{ {
if (isSet(datatype_vvvvwdb) && datatype_vvvvwdb.constructor !== Array) if (isSet(datatype_vvvvwbj) && datatype_vvvvwbj.constructor !== Array)
{ {
var temp_vvvvwdb = datatype_vvvvwdb; var temp_vvvvwbj = datatype_vvvvwbj;
var datatype_vvvvwdb = []; var datatype_vvvvwbj = [];
datatype_vvvvwdb.push(temp_vvvvwdb); datatype_vvvvwbj.push(temp_vvvvwbj);
} }
else if (!isSet(datatype_vvvvwdb)) else if (!isSet(datatype_vvvvwbj))
{ {
var datatype_vvvvwdb = []; var datatype_vvvvwbj = [];
} }
var datatype = datatype_vvvvwdb.some(datatype_vvvvwdb_SomeFunc); var datatype = datatype_vvvvwbj.some(datatype_vvvvwbj_SomeFunc);
// set this function logic // set this function logic
@ -185,13 +185,13 @@ function vvvvwdb(datatype_vvvvwdb)
jQuery('#jform_datadefault').closest('.control-group').show(); jQuery('#jform_datadefault').closest('.control-group').show();
jQuery('#jform_indexes').closest('.control-group').show(); jQuery('#jform_indexes').closest('.control-group').show();
// add required attribute to indexes field // add required attribute to indexes field
if (jform_vvvvwdbvxq_required) if (jform_vvvvwbjvxh_required)
{ {
updateFieldRequired('indexes',0); updateFieldRequired('indexes',0);
jQuery('#jform_indexes').prop('required','required'); jQuery('#jform_indexes').prop('required','required');
jQuery('#jform_indexes').attr('aria-required',true); jQuery('#jform_indexes').attr('aria-required',true);
jQuery('#jform_indexes').addClass('required'); jQuery('#jform_indexes').addClass('required');
jform_vvvvwdbvxq_required = false; jform_vvvvwbjvxh_required = false;
} }
} }
else else
@ -199,42 +199,42 @@ function vvvvwdb(datatype_vvvvwdb)
jQuery('#jform_datadefault').closest('.control-group').hide(); jQuery('#jform_datadefault').closest('.control-group').hide();
jQuery('#jform_indexes').closest('.control-group').hide(); jQuery('#jform_indexes').closest('.control-group').hide();
// remove required attribute from indexes field // remove required attribute from indexes field
if (!jform_vvvvwdbvxq_required) if (!jform_vvvvwbjvxh_required)
{ {
updateFieldRequired('indexes',1); updateFieldRequired('indexes',1);
jQuery('#jform_indexes').removeAttr('required'); jQuery('#jform_indexes').removeAttr('required');
jQuery('#jform_indexes').removeAttr('aria-required'); jQuery('#jform_indexes').removeAttr('aria-required');
jQuery('#jform_indexes').removeClass('required'); jQuery('#jform_indexes').removeClass('required');
jform_vvvvwdbvxq_required = true; jform_vvvvwbjvxh_required = true;
} }
} }
} }
// the vvvvwdb Some function // the vvvvwbj Some function
function datatype_vvvvwdb_SomeFunc(datatype_vvvvwdb) function datatype_vvvvwbj_SomeFunc(datatype_vvvvwbj)
{ {
// set the function logic // set the function logic
if (datatype_vvvvwdb == 'CHAR' || datatype_vvvvwdb == 'VARCHAR' || datatype_vvvvwdb == 'DATETIME' || datatype_vvvvwdb == 'DATE' || datatype_vvvvwdb == 'TIME' || datatype_vvvvwdb == 'INT' || datatype_vvvvwdb == 'TINYINT' || datatype_vvvvwdb == 'BIGINT' || datatype_vvvvwdb == 'FLOAT' || datatype_vvvvwdb == 'DECIMAL' || datatype_vvvvwdb == 'DOUBLE') if (datatype_vvvvwbj == 'CHAR' || datatype_vvvvwbj == 'VARCHAR' || datatype_vvvvwbj == 'DATETIME' || datatype_vvvvwbj == 'DATE' || datatype_vvvvwbj == 'TIME' || datatype_vvvvwbj == 'INT' || datatype_vvvvwbj == 'TINYINT' || datatype_vvvvwbj == 'BIGINT' || datatype_vvvvwbj == 'FLOAT' || datatype_vvvvwbj == 'DECIMAL' || datatype_vvvvwbj == 'DOUBLE')
{ {
return true; return true;
} }
return false; return false;
} }
// the vvvvwdc function // the vvvvwbk function
function vvvvwdc(datatype_vvvvwdc) function vvvvwbk(datatype_vvvvwbk)
{ {
if (isSet(datatype_vvvvwdc) && datatype_vvvvwdc.constructor !== Array) if (isSet(datatype_vvvvwbk) && datatype_vvvvwbk.constructor !== Array)
{ {
var temp_vvvvwdc = datatype_vvvvwdc; var temp_vvvvwbk = datatype_vvvvwbk;
var datatype_vvvvwdc = []; var datatype_vvvvwbk = [];
datatype_vvvvwdc.push(temp_vvvvwdc); datatype_vvvvwbk.push(temp_vvvvwbk);
} }
else if (!isSet(datatype_vvvvwdc)) else if (!isSet(datatype_vvvvwbk))
{ {
var datatype_vvvvwdc = []; var datatype_vvvvwbk = [];
} }
var datatype = datatype_vvvvwdc.some(datatype_vvvvwdc_SomeFunc); var datatype = datatype_vvvvwbk.some(datatype_vvvvwbk_SomeFunc);
// set this function logic // set this function logic
@ -242,67 +242,67 @@ function vvvvwdc(datatype_vvvvwdc)
{ {
jQuery('#jform_datalenght').closest('.control-group').show(); jQuery('#jform_datalenght').closest('.control-group').show();
// add required attribute to datalenght field // add required attribute to datalenght field
if (jform_vvvvwdcvxr_required) if (jform_vvvvwbkvxi_required)
{ {
updateFieldRequired('datalenght',0); updateFieldRequired('datalenght',0);
jQuery('#jform_datalenght').prop('required','required'); jQuery('#jform_datalenght').prop('required','required');
jQuery('#jform_datalenght').attr('aria-required',true); jQuery('#jform_datalenght').attr('aria-required',true);
jQuery('#jform_datalenght').addClass('required'); jQuery('#jform_datalenght').addClass('required');
jform_vvvvwdcvxr_required = false; jform_vvvvwbkvxi_required = false;
} }
} }
else else
{ {
jQuery('#jform_datalenght').closest('.control-group').hide(); jQuery('#jform_datalenght').closest('.control-group').hide();
// remove required attribute from datalenght field // remove required attribute from datalenght field
if (!jform_vvvvwdcvxr_required) if (!jform_vvvvwbkvxi_required)
{ {
updateFieldRequired('datalenght',1); updateFieldRequired('datalenght',1);
jQuery('#jform_datalenght').removeAttr('required'); jQuery('#jform_datalenght').removeAttr('required');
jQuery('#jform_datalenght').removeAttr('aria-required'); jQuery('#jform_datalenght').removeAttr('aria-required');
jQuery('#jform_datalenght').removeClass('required'); jQuery('#jform_datalenght').removeClass('required');
jform_vvvvwdcvxr_required = true; jform_vvvvwbkvxi_required = true;
} }
} }
} }
// the vvvvwdc Some function // the vvvvwbk Some function
function datatype_vvvvwdc_SomeFunc(datatype_vvvvwdc) function datatype_vvvvwbk_SomeFunc(datatype_vvvvwbk)
{ {
// set the function logic // set the function logic
if (datatype_vvvvwdc == 'CHAR' || datatype_vvvvwdc == 'VARCHAR' || datatype_vvvvwdc == 'INT' || datatype_vvvvwdc == 'TINYINT' || datatype_vvvvwdc == 'BIGINT' || datatype_vvvvwdc == 'FLOAT' || datatype_vvvvwdc == 'DECIMAL' || datatype_vvvvwdc == 'DOUBLE') if (datatype_vvvvwbk == 'CHAR' || datatype_vvvvwbk == 'VARCHAR' || datatype_vvvvwbk == 'INT' || datatype_vvvvwbk == 'TINYINT' || datatype_vvvvwbk == 'BIGINT' || datatype_vvvvwbk == 'FLOAT' || datatype_vvvvwbk == 'DECIMAL' || datatype_vvvvwbk == 'DOUBLE')
{ {
return true; return true;
} }
return false; return false;
} }
// the vvvvwdd function // the vvvvwbl function
function vvvvwdd(store_vvvvwdd,datatype_vvvvwdd) function vvvvwbl(store_vvvvwbl,datatype_vvvvwbl)
{ {
if (isSet(store_vvvvwdd) && store_vvvvwdd.constructor !== Array) if (isSet(store_vvvvwbl) && store_vvvvwbl.constructor !== Array)
{ {
var temp_vvvvwdd = store_vvvvwdd; var temp_vvvvwbl = store_vvvvwbl;
var store_vvvvwdd = []; var store_vvvvwbl = [];
store_vvvvwdd.push(temp_vvvvwdd); store_vvvvwbl.push(temp_vvvvwbl);
} }
else if (!isSet(store_vvvvwdd)) else if (!isSet(store_vvvvwbl))
{ {
var store_vvvvwdd = []; var store_vvvvwbl = [];
} }
var store = store_vvvvwdd.some(store_vvvvwdd_SomeFunc); var store = store_vvvvwbl.some(store_vvvvwbl_SomeFunc);
if (isSet(datatype_vvvvwdd) && datatype_vvvvwdd.constructor !== Array) if (isSet(datatype_vvvvwbl) && datatype_vvvvwbl.constructor !== Array)
{ {
var temp_vvvvwdd = datatype_vvvvwdd; var temp_vvvvwbl = datatype_vvvvwbl;
var datatype_vvvvwdd = []; var datatype_vvvvwbl = [];
datatype_vvvvwdd.push(temp_vvvvwdd); datatype_vvvvwbl.push(temp_vvvvwbl);
} }
else if (!isSet(datatype_vvvvwdd)) else if (!isSet(datatype_vvvvwbl))
{ {
var datatype_vvvvwdd = []; var datatype_vvvvwbl = [];
} }
var datatype = datatype_vvvvwdd.some(datatype_vvvvwdd_SomeFunc); var datatype = datatype_vvvvwbl.some(datatype_vvvvwbl_SomeFunc);
// set this function logic // set this function logic
@ -316,42 +316,42 @@ function vvvvwdd(store_vvvvwdd,datatype_vvvvwdd)
} }
} }
// the vvvvwdd Some function // the vvvvwbl Some function
function store_vvvvwdd_SomeFunc(store_vvvvwdd) function store_vvvvwbl_SomeFunc(store_vvvvwbl)
{ {
// set the function logic // set the function logic
if (store_vvvvwdd == 4) if (store_vvvvwbl == 4)
{ {
return true; return true;
} }
return false; return false;
} }
// the vvvvwdd Some function // the vvvvwbl Some function
function datatype_vvvvwdd_SomeFunc(datatype_vvvvwdd) function datatype_vvvvwbl_SomeFunc(datatype_vvvvwbl)
{ {
// set the function logic // set the function logic
if (datatype_vvvvwdd == 'CHAR' || datatype_vvvvwdd == 'VARCHAR' || datatype_vvvvwdd == 'TEXT' || datatype_vvvvwdd == 'MEDIUMTEXT' || datatype_vvvvwdd == 'LONGTEXT' || datatype_vvvvwdd == 'BLOB' || datatype_vvvvwdd == 'TINYBLOB' || datatype_vvvvwdd == 'MEDIUMBLOB' || datatype_vvvvwdd == 'LONGBLOB') if (datatype_vvvvwbl == 'CHAR' || datatype_vvvvwbl == 'VARCHAR' || datatype_vvvvwbl == 'TEXT' || datatype_vvvvwbl == 'MEDIUMTEXT' || datatype_vvvvwbl == 'LONGTEXT' || datatype_vvvvwbl == 'BLOB' || datatype_vvvvwbl == 'TINYBLOB' || datatype_vvvvwbl == 'MEDIUMBLOB' || datatype_vvvvwbl == 'LONGBLOB')
{ {
return true; return true;
} }
return false; return false;
} }
// the vvvvwdf function // the vvvvwbn function
function vvvvwdf(store_vvvvwdf) function vvvvwbn(store_vvvvwbn)
{ {
if (isSet(store_vvvvwdf) && store_vvvvwdf.constructor !== Array) if (isSet(store_vvvvwbn) && store_vvvvwbn.constructor !== Array)
{ {
var temp_vvvvwdf = store_vvvvwdf; var temp_vvvvwbn = store_vvvvwbn;
var store_vvvvwdf = []; var store_vvvvwbn = [];
store_vvvvwdf.push(temp_vvvvwdf); store_vvvvwbn.push(temp_vvvvwbn);
} }
else if (!isSet(store_vvvvwdf)) else if (!isSet(store_vvvvwbn))
{ {
var store_vvvvwdf = []; var store_vvvvwbn = [];
} }
var store = store_vvvvwdf.some(store_vvvvwdf_SomeFunc); var store = store_vvvvwbn.some(store_vvvvwbn_SomeFunc);
// set this function logic // set this function logic
@ -362,23 +362,23 @@ function vvvvwdf(store_vvvvwdf)
jQuery('.note_expert_field_save_mode').closest('.control-group').show(); jQuery('.note_expert_field_save_mode').closest('.control-group').show();
jQuery('#jform_on_get_model_field').closest('.control-group').show(); jQuery('#jform_on_get_model_field').closest('.control-group').show();
// add required attribute to on_get_model_field field // add required attribute to on_get_model_field field
if (jform_vvvvwdfvxs_required) if (jform_vvvvwbnvxj_required)
{ {
updateFieldRequired('on_get_model_field',0); updateFieldRequired('on_get_model_field',0);
jQuery('#jform_on_get_model_field').prop('required','required'); jQuery('#jform_on_get_model_field').prop('required','required');
jQuery('#jform_on_get_model_field').attr('aria-required',true); jQuery('#jform_on_get_model_field').attr('aria-required',true);
jQuery('#jform_on_get_model_field').addClass('required'); jQuery('#jform_on_get_model_field').addClass('required');
jform_vvvvwdfvxs_required = false; jform_vvvvwbnvxj_required = false;
} }
jQuery('#jform_on_save_model_field').closest('.control-group').show(); jQuery('#jform_on_save_model_field').closest('.control-group').show();
// add required attribute to on_save_model_field field // add required attribute to on_save_model_field field
if (jform_vvvvwdfvxt_required) if (jform_vvvvwbnvxk_required)
{ {
updateFieldRequired('on_save_model_field',0); updateFieldRequired('on_save_model_field',0);
jQuery('#jform_on_save_model_field').prop('required','required'); jQuery('#jform_on_save_model_field').prop('required','required');
jQuery('#jform_on_save_model_field').attr('aria-required',true); jQuery('#jform_on_save_model_field').attr('aria-required',true);
jQuery('#jform_on_save_model_field').addClass('required'); jQuery('#jform_on_save_model_field').addClass('required');
jform_vvvvwdfvxt_required = false; jform_vvvvwbnvxk_required = false;
} }
} }
else else
@ -388,43 +388,43 @@ function vvvvwdf(store_vvvvwdf)
jQuery('.note_expert_field_save_mode').closest('.control-group').hide(); jQuery('.note_expert_field_save_mode').closest('.control-group').hide();
jQuery('#jform_on_get_model_field').closest('.control-group').hide(); jQuery('#jform_on_get_model_field').closest('.control-group').hide();
// remove required attribute from on_get_model_field field // remove required attribute from on_get_model_field field
if (!jform_vvvvwdfvxs_required) if (!jform_vvvvwbnvxj_required)
{ {
updateFieldRequired('on_get_model_field',1); updateFieldRequired('on_get_model_field',1);
jQuery('#jform_on_get_model_field').removeAttr('required'); jQuery('#jform_on_get_model_field').removeAttr('required');
jQuery('#jform_on_get_model_field').removeAttr('aria-required'); jQuery('#jform_on_get_model_field').removeAttr('aria-required');
jQuery('#jform_on_get_model_field').removeClass('required'); jQuery('#jform_on_get_model_field').removeClass('required');
jform_vvvvwdfvxs_required = true; jform_vvvvwbnvxj_required = true;
} }
jQuery('#jform_on_save_model_field').closest('.control-group').hide(); jQuery('#jform_on_save_model_field').closest('.control-group').hide();
// remove required attribute from on_save_model_field field // remove required attribute from on_save_model_field field
if (!jform_vvvvwdfvxt_required) if (!jform_vvvvwbnvxk_required)
{ {
updateFieldRequired('on_save_model_field',1); updateFieldRequired('on_save_model_field',1);
jQuery('#jform_on_save_model_field').removeAttr('required'); jQuery('#jform_on_save_model_field').removeAttr('required');
jQuery('#jform_on_save_model_field').removeAttr('aria-required'); jQuery('#jform_on_save_model_field').removeAttr('aria-required');
jQuery('#jform_on_save_model_field').removeClass('required'); jQuery('#jform_on_save_model_field').removeClass('required');
jform_vvvvwdfvxt_required = true; jform_vvvvwbnvxk_required = true;
} }
} }
} }
// the vvvvwdf Some function // the vvvvwbn Some function
function store_vvvvwdf_SomeFunc(store_vvvvwdf) function store_vvvvwbn_SomeFunc(store_vvvvwbn)
{ {
// set the function logic // set the function logic
if (store_vvvvwdf == 6) if (store_vvvvwbn == 6)
{ {
return true; return true;
} }
return false; return false;
} }
// the vvvvwdg function // the vvvvwbo function
function vvvvwdg(add_css_view_vvvvwdg) function vvvvwbo(add_css_view_vvvvwbo)
{ {
// set the function logic // set the function logic
if (add_css_view_vvvvwdg == 1) if (add_css_view_vvvvwbo == 1)
{ {
jQuery('#jform_css_view-lbl').closest('.control-group').show(); jQuery('#jform_css_view-lbl').closest('.control-group').show();
} }
@ -434,11 +434,11 @@ function vvvvwdg(add_css_view_vvvvwdg)
} }
} }
// the vvvvwdh function // the vvvvwbp function
function vvvvwdh(add_css_views_vvvvwdh) function vvvvwbp(add_css_views_vvvvwbp)
{ {
// set the function logic // set the function logic
if (add_css_views_vvvvwdh == 1) if (add_css_views_vvvvwbp == 1)
{ {
jQuery('#jform_css_views-lbl').closest('.control-group').show(); jQuery('#jform_css_views-lbl').closest('.control-group').show();
} }
@ -448,11 +448,11 @@ function vvvvwdh(add_css_views_vvvvwdh)
} }
} }
// the vvvvwdi function // the vvvvwbq function
function vvvvwdi(add_javascript_view_footer_vvvvwdi) function vvvvwbq(add_javascript_view_footer_vvvvwbq)
{ {
// set the function logic // set the function logic
if (add_javascript_view_footer_vvvvwdi == 1) if (add_javascript_view_footer_vvvvwbq == 1)
{ {
jQuery('#jform_javascript_view_footer-lbl').closest('.control-group').show(); jQuery('#jform_javascript_view_footer-lbl').closest('.control-group').show();
} }
@ -462,11 +462,11 @@ function vvvvwdi(add_javascript_view_footer_vvvvwdi)
} }
} }
// the vvvvwdj function // the vvvvwbr function
function vvvvwdj(add_javascript_views_footer_vvvvwdj) function vvvvwbr(add_javascript_views_footer_vvvvwbr)
{ {
// set the function logic // set the function logic
if (add_javascript_views_footer_vvvvwdj == 1) if (add_javascript_views_footer_vvvvwbr == 1)
{ {
jQuery('#jform_javascript_views_footer-lbl').closest('.control-group').show(); jQuery('#jform_javascript_views_footer-lbl').closest('.control-group').show();
} }

File diff suppressed because it is too large Load Diff

View File

@ -9,112 +9,112 @@
*/ */
// Some Global Values // Some Global Values
jform_vvvvweivyn_required = false; jform_vvvvwcqvye_required = false;
jform_vvvvwejvyo_required = false; jform_vvvvwcrvyf_required = false;
jform_vvvvwekvyp_required = false; jform_vvvvwcsvyg_required = false;
jform_vvvvwelvyq_required = false; jform_vvvvwctvyh_required = false;
jform_vvvvwenvyr_required = false; jform_vvvvwcvvyi_required = false;
// Initial Script // Initial Script
document.addEventListener('DOMContentLoaded', function() document.addEventListener('DOMContentLoaded', function()
{ {
var location_vvvvwei = jQuery("#jform_location input[type='radio']:checked").val(); var location_vvvvwcq = jQuery("#jform_location input[type='radio']:checked").val();
vvvvwei(location_vvvvwei); vvvvwcq(location_vvvvwcq);
var location_vvvvwej = jQuery("#jform_location input[type='radio']:checked").val(); var location_vvvvwcr = jQuery("#jform_location input[type='radio']:checked").val();
vvvvwej(location_vvvvwej); vvvvwcr(location_vvvvwcr);
var type_vvvvwek = jQuery("#jform_type").val(); var type_vvvvwcs = jQuery("#jform_type").val();
vvvvwek(type_vvvvwek); vvvvwcs(type_vvvvwcs);
var type_vvvvwel = jQuery("#jform_type").val(); var type_vvvvwct = jQuery("#jform_type").val();
vvvvwel(type_vvvvwel); vvvvwct(type_vvvvwct);
var type_vvvvwem = jQuery("#jform_type").val(); var type_vvvvwcu = jQuery("#jform_type").val();
vvvvwem(type_vvvvwem); vvvvwcu(type_vvvvwcu);
var target_vvvvwen = jQuery("#jform_target input[type='radio']:checked").val(); var target_vvvvwcv = jQuery("#jform_target input[type='radio']:checked").val();
vvvvwen(target_vvvvwen); vvvvwcv(target_vvvvwcv);
}); });
// the vvvvwei function // the vvvvwcq function
function vvvvwei(location_vvvvwei) function vvvvwcq(location_vvvvwcq)
{ {
// set the function logic // set the function logic
if (location_vvvvwei == 1) if (location_vvvvwcq == 1)
{ {
jQuery('#jform_admin_view').closest('.control-group').show(); jQuery('#jform_admin_view').closest('.control-group').show();
// add required attribute to admin_view field // add required attribute to admin_view field
if (jform_vvvvweivyn_required) if (jform_vvvvwcqvye_required)
{ {
updateFieldRequired('admin_view',0); updateFieldRequired('admin_view',0);
jQuery('#jform_admin_view').prop('required','required'); jQuery('#jform_admin_view').prop('required','required');
jQuery('#jform_admin_view').attr('aria-required',true); jQuery('#jform_admin_view').attr('aria-required',true);
jQuery('#jform_admin_view').addClass('required'); jQuery('#jform_admin_view').addClass('required');
jform_vvvvweivyn_required = false; jform_vvvvwcqvye_required = false;
} }
} }
else else
{ {
jQuery('#jform_admin_view').closest('.control-group').hide(); jQuery('#jform_admin_view').closest('.control-group').hide();
// remove required attribute from admin_view field // remove required attribute from admin_view field
if (!jform_vvvvweivyn_required) if (!jform_vvvvwcqvye_required)
{ {
updateFieldRequired('admin_view',1); updateFieldRequired('admin_view',1);
jQuery('#jform_admin_view').removeAttr('required'); jQuery('#jform_admin_view').removeAttr('required');
jQuery('#jform_admin_view').removeAttr('aria-required'); jQuery('#jform_admin_view').removeAttr('aria-required');
jQuery('#jform_admin_view').removeClass('required'); jQuery('#jform_admin_view').removeClass('required');
jform_vvvvweivyn_required = true; jform_vvvvwcqvye_required = true;
} }
} }
} }
// the vvvvwej function // the vvvvwcr function
function vvvvwej(location_vvvvwej) function vvvvwcr(location_vvvvwcr)
{ {
// set the function logic // set the function logic
if (location_vvvvwej == 2) if (location_vvvvwcr == 2)
{ {
jQuery('#jform_site_view').closest('.control-group').show(); jQuery('#jform_site_view').closest('.control-group').show();
// add required attribute to site_view field // add required attribute to site_view field
if (jform_vvvvwejvyo_required) if (jform_vvvvwcrvyf_required)
{ {
updateFieldRequired('site_view',0); updateFieldRequired('site_view',0);
jQuery('#jform_site_view').prop('required','required'); jQuery('#jform_site_view').prop('required','required');
jQuery('#jform_site_view').attr('aria-required',true); jQuery('#jform_site_view').attr('aria-required',true);
jQuery('#jform_site_view').addClass('required'); jQuery('#jform_site_view').addClass('required');
jform_vvvvwejvyo_required = false; jform_vvvvwcrvyf_required = false;
} }
} }
else else
{ {
jQuery('#jform_site_view').closest('.control-group').hide(); jQuery('#jform_site_view').closest('.control-group').hide();
// remove required attribute from site_view field // remove required attribute from site_view field
if (!jform_vvvvwejvyo_required) if (!jform_vvvvwcrvyf_required)
{ {
updateFieldRequired('site_view',1); updateFieldRequired('site_view',1);
jQuery('#jform_site_view').removeAttr('required'); jQuery('#jform_site_view').removeAttr('required');
jQuery('#jform_site_view').removeAttr('aria-required'); jQuery('#jform_site_view').removeAttr('aria-required');
jQuery('#jform_site_view').removeClass('required'); jQuery('#jform_site_view').removeClass('required');
jform_vvvvwejvyo_required = true; jform_vvvvwcrvyf_required = true;
} }
} }
} }
// the vvvvwek function // the vvvvwcs function
function vvvvwek(type_vvvvwek) function vvvvwcs(type_vvvvwcs)
{ {
if (isSet(type_vvvvwek) && type_vvvvwek.constructor !== Array) if (isSet(type_vvvvwcs) && type_vvvvwcs.constructor !== Array)
{ {
var temp_vvvvwek = type_vvvvwek; var temp_vvvvwcs = type_vvvvwcs;
var type_vvvvwek = []; var type_vvvvwcs = [];
type_vvvvwek.push(temp_vvvvwek); type_vvvvwcs.push(temp_vvvvwcs);
} }
else if (!isSet(type_vvvvwek)) else if (!isSet(type_vvvvwcs))
{ {
var type_vvvvwek = []; var type_vvvvwcs = [];
} }
var type = type_vvvvwek.some(type_vvvvwek_SomeFunc); var type = type_vvvvwcs.some(type_vvvvwcs_SomeFunc);
// set this function logic // set this function logic
@ -122,55 +122,55 @@ function vvvvwek(type_vvvvwek)
{ {
jQuery('#jform_url').closest('.control-group').show(); jQuery('#jform_url').closest('.control-group').show();
// add required attribute to url field // add required attribute to url field
if (jform_vvvvwekvyp_required) if (jform_vvvvwcsvyg_required)
{ {
updateFieldRequired('url',0); updateFieldRequired('url',0);
jQuery('#jform_url').prop('required','required'); jQuery('#jform_url').prop('required','required');
jQuery('#jform_url').attr('aria-required',true); jQuery('#jform_url').attr('aria-required',true);
jQuery('#jform_url').addClass('required'); jQuery('#jform_url').addClass('required');
jform_vvvvwekvyp_required = false; jform_vvvvwcsvyg_required = false;
} }
} }
else else
{ {
jQuery('#jform_url').closest('.control-group').hide(); jQuery('#jform_url').closest('.control-group').hide();
// remove required attribute from url field // remove required attribute from url field
if (!jform_vvvvwekvyp_required) if (!jform_vvvvwcsvyg_required)
{ {
updateFieldRequired('url',1); updateFieldRequired('url',1);
jQuery('#jform_url').removeAttr('required'); jQuery('#jform_url').removeAttr('required');
jQuery('#jform_url').removeAttr('aria-required'); jQuery('#jform_url').removeAttr('aria-required');
jQuery('#jform_url').removeClass('required'); jQuery('#jform_url').removeClass('required');
jform_vvvvwekvyp_required = true; jform_vvvvwcsvyg_required = true;
} }
} }
} }
// the vvvvwek Some function // the vvvvwcs Some function
function type_vvvvwek_SomeFunc(type_vvvvwek) function type_vvvvwcs_SomeFunc(type_vvvvwcs)
{ {
// set the function logic // set the function logic
if (type_vvvvwek == 3) if (type_vvvvwcs == 3)
{ {
return true; return true;
} }
return false; return false;
} }
// the vvvvwel function // the vvvvwct function
function vvvvwel(type_vvvvwel) function vvvvwct(type_vvvvwct)
{ {
if (isSet(type_vvvvwel) && type_vvvvwel.constructor !== Array) if (isSet(type_vvvvwct) && type_vvvvwct.constructor !== Array)
{ {
var temp_vvvvwel = type_vvvvwel; var temp_vvvvwct = type_vvvvwct;
var type_vvvvwel = []; var type_vvvvwct = [];
type_vvvvwel.push(temp_vvvvwel); type_vvvvwct.push(temp_vvvvwct);
} }
else if (!isSet(type_vvvvwel)) else if (!isSet(type_vvvvwct))
{ {
var type_vvvvwel = []; var type_vvvvwct = [];
} }
var type = type_vvvvwel.some(type_vvvvwel_SomeFunc); var type = type_vvvvwct.some(type_vvvvwct_SomeFunc);
// set this function logic // set this function logic
@ -178,55 +178,55 @@ function vvvvwel(type_vvvvwel)
{ {
jQuery('#jform_article').closest('.control-group').show(); jQuery('#jform_article').closest('.control-group').show();
// add required attribute to article field // add required attribute to article field
if (jform_vvvvwelvyq_required) if (jform_vvvvwctvyh_required)
{ {
updateFieldRequired('article',0); updateFieldRequired('article',0);
jQuery('#jform_article').prop('required','required'); jQuery('#jform_article').prop('required','required');
jQuery('#jform_article').attr('aria-required',true); jQuery('#jform_article').attr('aria-required',true);
jQuery('#jform_article').addClass('required'); jQuery('#jform_article').addClass('required');
jform_vvvvwelvyq_required = false; jform_vvvvwctvyh_required = false;
} }
} }
else else
{ {
jQuery('#jform_article').closest('.control-group').hide(); jQuery('#jform_article').closest('.control-group').hide();
// remove required attribute from article field // remove required attribute from article field
if (!jform_vvvvwelvyq_required) if (!jform_vvvvwctvyh_required)
{ {
updateFieldRequired('article',1); updateFieldRequired('article',1);
jQuery('#jform_article').removeAttr('required'); jQuery('#jform_article').removeAttr('required');
jQuery('#jform_article').removeAttr('aria-required'); jQuery('#jform_article').removeAttr('aria-required');
jQuery('#jform_article').removeClass('required'); jQuery('#jform_article').removeClass('required');
jform_vvvvwelvyq_required = true; jform_vvvvwctvyh_required = true;
} }
} }
} }
// the vvvvwel Some function // the vvvvwct Some function
function type_vvvvwel_SomeFunc(type_vvvvwel) function type_vvvvwct_SomeFunc(type_vvvvwct)
{ {
// set the function logic // set the function logic
if (type_vvvvwel == 1) if (type_vvvvwct == 1)
{ {
return true; return true;
} }
return false; return false;
} }
// the vvvvwem function // the vvvvwcu function
function vvvvwem(type_vvvvwem) function vvvvwcu(type_vvvvwcu)
{ {
if (isSet(type_vvvvwem) && type_vvvvwem.constructor !== Array) if (isSet(type_vvvvwcu) && type_vvvvwcu.constructor !== Array)
{ {
var temp_vvvvwem = type_vvvvwem; var temp_vvvvwcu = type_vvvvwcu;
var type_vvvvwem = []; var type_vvvvwcu = [];
type_vvvvwem.push(temp_vvvvwem); type_vvvvwcu.push(temp_vvvvwcu);
} }
else if (!isSet(type_vvvvwem)) else if (!isSet(type_vvvvwcu))
{ {
var type_vvvvwem = []; var type_vvvvwcu = [];
} }
var type = type_vvvvwem.some(type_vvvvwem_SomeFunc); var type = type_vvvvwcu.some(type_vvvvwcu_SomeFunc);
// set this function logic // set this function logic
@ -240,45 +240,45 @@ function vvvvwem(type_vvvvwem)
} }
} }
// the vvvvwem Some function // the vvvvwcu Some function
function type_vvvvwem_SomeFunc(type_vvvvwem) function type_vvvvwcu_SomeFunc(type_vvvvwcu)
{ {
// set the function logic // set the function logic
if (type_vvvvwem == 2) if (type_vvvvwcu == 2)
{ {
return true; return true;
} }
return false; return false;
} }
// the vvvvwen function // the vvvvwcv function
function vvvvwen(target_vvvvwen) function vvvvwcv(target_vvvvwcv)
{ {
// set the function logic // set the function logic
if (target_vvvvwen == 1) if (target_vvvvwcv == 1)
{ {
jQuery('#jform_groups').closest('.control-group').show(); jQuery('#jform_groups').closest('.control-group').show();
// add required attribute to groups field // add required attribute to groups field
if (jform_vvvvwenvyr_required) if (jform_vvvvwcvvyi_required)
{ {
updateFieldRequired('groups',0); updateFieldRequired('groups',0);
jQuery('#jform_groups').prop('required','required'); jQuery('#jform_groups').prop('required','required');
jQuery('#jform_groups').attr('aria-required',true); jQuery('#jform_groups').attr('aria-required',true);
jQuery('#jform_groups').addClass('required'); jQuery('#jform_groups').addClass('required');
jform_vvvvwenvyr_required = false; jform_vvvvwcvvyi_required = false;
} }
} }
else else
{ {
jQuery('#jform_groups').closest('.control-group').hide(); jQuery('#jform_groups').closest('.control-group').hide();
// remove required attribute from groups field // remove required attribute from groups field
if (!jform_vvvvwenvyr_required) if (!jform_vvvvwcvvyi_required)
{ {
updateFieldRequired('groups',1); updateFieldRequired('groups',1);
jQuery('#jform_groups').removeAttr('required'); jQuery('#jform_groups').removeAttr('required');
jQuery('#jform_groups').removeAttr('aria-required'); jQuery('#jform_groups').removeAttr('aria-required');
jQuery('#jform_groups').removeClass('required'); jQuery('#jform_groups').removeClass('required');
jform_vvvvwenvyr_required = true; jform_vvvvwcvvyi_required = true;
} }
} }
} }

View File

@ -9,266 +9,62 @@
*/ */
// Some Global Values // Some Global Values
jform_vvvvvwbvvv_required = false; jform_vvvvvvwvvv_required = false;
jform_vvvvvwcvvw_required = false; jform_vvvvvwevvw_required = false;
jform_vvvvvwevvx_required = false; jform_vvvvvwfvvx_required = false;
jform_vvvvvwwvvy_required = false; jform_vvvvvwivvy_required = false;
jform_vvvvvwxvvz_required = false; jform_vvvvvwivvz_required = false;
jform_vvvvvxavwa_required = false; jform_vvvvvwivwa_required = false;
jform_vvvvvxavwb_required = false;
jform_vvvvvxavwc_required = false;
// Initial Script // Initial Script
document.addEventListener('DOMContentLoaded', function() document.addEventListener('DOMContentLoaded', function()
{ {
var add_php_helper_admin_vvvvvvv = jQuery("#jform_add_php_helper_admin input[type='radio']:checked").val(); var emptycontributors_vvvvvvv = jQuery("#jform_emptycontributors input[type='radio']:checked").val();
vvvvvvv(add_php_helper_admin_vvvvvvv); vvvvvvv(emptycontributors_vvvvvvv);
var add_php_helper_site_vvvvvvw = jQuery("#jform_add_php_helper_site input[type='radio']:checked").val(); var add_license_vvvvvvw = jQuery("#jform_add_license input[type='radio']:checked").val();
vvvvvvw(add_php_helper_site_vvvvvvw); vvvvvvw(add_license_vvvvvvw);
var add_php_helper_both_vvvvvvx = jQuery("#jform_add_php_helper_both input[type='radio']:checked").val(); var add_license_vvvvvvx = jQuery("#jform_add_license input[type='radio']:checked").val();
vvvvvvx(add_php_helper_both_vvvvvvx); vvvvvvx(add_license_vvvvvvx);
var add_css_admin_vvvvvvy = jQuery("#jform_add_css_admin input[type='radio']:checked").val(); var update_server_target_vvvvvvy = jQuery("#jform_update_server_target input[type='radio']:checked").val();
vvvvvvy(add_css_admin_vvvvvvy); var add_update_server_vvvvvvy = jQuery("#jform_add_update_server input[type='radio']:checked").val();
vvvvvvy(update_server_target_vvvvvvy,add_update_server_vvvvvvy);
var add_css_site_vvvvvvz = jQuery("#jform_add_css_site input[type='radio']:checked").val(); var add_update_server_vvvvvvz = jQuery("#jform_add_update_server input[type='radio']:checked").val();
vvvvvvz(add_css_site_vvvvvvz); var update_server_target_vvvvvvz = jQuery("#jform_update_server_target input[type='radio']:checked").val();
vvvvvvz(add_update_server_vvvvvvz,update_server_target_vvvvvvz);
var add_javascript_vvvvvwa = jQuery("#jform_add_javascript input[type='radio']:checked").val(); var update_server_target_vvvvvwa = jQuery("#jform_update_server_target input[type='radio']:checked").val();
vvvvvwa(add_javascript_vvvvvwa); var add_update_server_vvvvvwa = jQuery("#jform_add_update_server input[type='radio']:checked").val();
vvvvvwa(update_server_target_vvvvvwa,add_update_server_vvvvvwa);
var add_sql_vvvvvwb = jQuery("#jform_add_sql input[type='radio']:checked").val(); var update_server_target_vvvvvwc = jQuery("#jform_update_server_target input[type='radio']:checked").val();
vvvvvwb(add_sql_vvvvvwb); var add_update_server_vvvvvwc = jQuery("#jform_add_update_server input[type='radio']:checked").val();
vvvvvwc(update_server_target_vvvvvwc,add_update_server_vvvvvwc);
var add_sql_uninstall_vvvvvwc = jQuery("#jform_add_sql_uninstall input[type='radio']:checked").val(); var add_update_server_vvvvvwe = jQuery("#jform_add_update_server input[type='radio']:checked").val();
vvvvvwc(add_sql_uninstall_vvvvvwc); vvvvvwe(add_update_server_vvvvvwe);
var emptycontributors_vvvvvwd = jQuery("#jform_emptycontributors input[type='radio']:checked").val(); var buildcomp_vvvvvwf = jQuery("#jform_buildcomp input[type='radio']:checked").val();
vvvvvwd(emptycontributors_vvvvvwd); vvvvvwf(buildcomp_vvvvvwf);
var add_license_vvvvvwe = jQuery("#jform_add_license input[type='radio']:checked").val(); var dashboard_type_vvvvvwg = jQuery("#jform_dashboard_type input[type='radio']:checked").val();
vvvvvwe(add_license_vvvvvwe); vvvvvwg(dashboard_type_vvvvvwg);
var add_admin_event_vvvvvwf = jQuery("#jform_add_admin_event input[type='radio']:checked").val(); var dashboard_type_vvvvvwh = jQuery("#jform_dashboard_type input[type='radio']:checked").val();
vvvvvwf(add_admin_event_vvvvvwf); vvvvvwh(dashboard_type_vvvvvwh);
var add_site_event_vvvvvwg = jQuery("#jform_add_site_event input[type='radio']:checked").val(); var translation_tool_vvvvvwi = jQuery("#jform_translation_tool").val();
vvvvvwg(add_site_event_vvvvvwg); vvvvvwi(translation_tool_vvvvvwi);
var addreadme_vvvvvwh = jQuery("#jform_addreadme input[type='radio']:checked").val();
vvvvvwh(addreadme_vvvvvwh);
var add_update_server_vvvvvwi = jQuery("#jform_add_update_server input[type='radio']:checked").val();
vvvvvwi(add_update_server_vvvvvwi);
var add_sales_server_vvvvvwj = jQuery("#jform_add_sales_server input[type='radio']:checked").val();
vvvvvwj(add_sales_server_vvvvvwj);
var add_license_vvvvvwk = jQuery("#jform_add_license input[type='radio']:checked").val();
vvvvvwk(add_license_vvvvvwk);
var add_php_postflight_install_vvvvvwl = jQuery("#jform_add_php_postflight_install input[type='radio']:checked").val();
vvvvvwl(add_php_postflight_install_vvvvvwl);
var add_php_postflight_update_vvvvvwm = jQuery("#jform_add_php_postflight_update input[type='radio']:checked").val();
vvvvvwm(add_php_postflight_update_vvvvvwm);
var add_php_method_uninstall_vvvvvwn = jQuery("#jform_add_php_method_uninstall input[type='radio']:checked").val();
vvvvvwn(add_php_method_uninstall_vvvvvwn);
var add_php_preflight_install_vvvvvwo = jQuery("#jform_add_php_preflight_install input[type='radio']:checked").val();
vvvvvwo(add_php_preflight_install_vvvvvwo);
var add_php_preflight_update_vvvvvwp = jQuery("#jform_add_php_preflight_update input[type='radio']:checked").val();
vvvvvwp(add_php_preflight_update_vvvvvwp);
var update_server_target_vvvvvwq = jQuery("#jform_update_server_target input[type='radio']:checked").val();
var add_update_server_vvvvvwq = jQuery("#jform_add_update_server input[type='radio']:checked").val();
vvvvvwq(update_server_target_vvvvvwq,add_update_server_vvvvvwq);
var add_update_server_vvvvvwr = jQuery("#jform_add_update_server input[type='radio']:checked").val();
var update_server_target_vvvvvwr = jQuery("#jform_update_server_target input[type='radio']:checked").val();
vvvvvwr(add_update_server_vvvvvwr,update_server_target_vvvvvwr);
var update_server_target_vvvvvws = jQuery("#jform_update_server_target input[type='radio']:checked").val();
var add_update_server_vvvvvws = jQuery("#jform_add_update_server input[type='radio']:checked").val();
vvvvvws(update_server_target_vvvvvws,add_update_server_vvvvvws);
var update_server_target_vvvvvwu = jQuery("#jform_update_server_target input[type='radio']:checked").val();
var add_update_server_vvvvvwu = jQuery("#jform_add_update_server input[type='radio']:checked").val();
vvvvvwu(update_server_target_vvvvvwu,add_update_server_vvvvvwu);
var add_update_server_vvvvvww = jQuery("#jform_add_update_server input[type='radio']:checked").val();
vvvvvww(add_update_server_vvvvvww);
var buildcomp_vvvvvwx = jQuery("#jform_buildcomp input[type='radio']:checked").val();
vvvvvwx(buildcomp_vvvvvwx);
var dashboard_type_vvvvvwy = jQuery("#jform_dashboard_type input[type='radio']:checked").val();
vvvvvwy(dashboard_type_vvvvvwy);
var dashboard_type_vvvvvwz = jQuery("#jform_dashboard_type input[type='radio']:checked").val();
vvvvvwz(dashboard_type_vvvvvwz);
var translation_tool_vvvvvxa = jQuery("#jform_translation_tool").val();
vvvvvxa(translation_tool_vvvvvxa);
}); });
// the vvvvvvv function // the vvvvvvv function
function vvvvvvv(add_php_helper_admin_vvvvvvv) function vvvvvvv(emptycontributors_vvvvvvv)
{ {
// set the function logic // set the function logic
if (add_php_helper_admin_vvvvvvv == 1) if (emptycontributors_vvvvvvv == 1)
{
jQuery('#jform_php_helper_admin-lbl').closest('.control-group').show();
}
else
{
jQuery('#jform_php_helper_admin-lbl').closest('.control-group').hide();
}
}
// the vvvvvvw function
function vvvvvvw(add_php_helper_site_vvvvvvw)
{
// set the function logic
if (add_php_helper_site_vvvvvvw == 1)
{
jQuery('#jform_php_helper_site-lbl').closest('.control-group').show();
}
else
{
jQuery('#jform_php_helper_site-lbl').closest('.control-group').hide();
}
}
// the vvvvvvx function
function vvvvvvx(add_php_helper_both_vvvvvvx)
{
// set the function logic
if (add_php_helper_both_vvvvvvx == 1)
{
jQuery('#jform_php_helper_both-lbl').closest('.control-group').show();
}
else
{
jQuery('#jform_php_helper_both-lbl').closest('.control-group').hide();
}
}
// the vvvvvvy function
function vvvvvvy(add_css_admin_vvvvvvy)
{
// set the function logic
if (add_css_admin_vvvvvvy == 1)
{
jQuery('#jform_css_admin-lbl').closest('.control-group').show();
}
else
{
jQuery('#jform_css_admin-lbl').closest('.control-group').hide();
}
}
// the vvvvvvz function
function vvvvvvz(add_css_site_vvvvvvz)
{
// set the function logic
if (add_css_site_vvvvvvz == 1)
{
jQuery('#jform_css_site-lbl').closest('.control-group').show();
}
else
{
jQuery('#jform_css_site-lbl').closest('.control-group').hide();
}
}
// the vvvvvwa function
function vvvvvwa(add_javascript_vvvvvwa)
{
// set the function logic
if (add_javascript_vvvvvwa == 1)
{
jQuery('#jform_javascript-lbl').closest('.control-group').show();
}
else
{
jQuery('#jform_javascript-lbl').closest('.control-group').hide();
}
}
// the vvvvvwb function
function vvvvvwb(add_sql_vvvvvwb)
{
// set the function logic
if (add_sql_vvvvvwb == 1)
{
jQuery('#jform_sql').closest('.control-group').show();
// add required attribute to sql field
if (jform_vvvvvwbvvv_required)
{
updateFieldRequired('sql',0);
jQuery('#jform_sql').prop('required','required');
jQuery('#jform_sql').attr('aria-required',true);
jQuery('#jform_sql').addClass('required');
jform_vvvvvwbvvv_required = false;
}
}
else
{
jQuery('#jform_sql').closest('.control-group').hide();
// remove required attribute from sql field
if (!jform_vvvvvwbvvv_required)
{
updateFieldRequired('sql',1);
jQuery('#jform_sql').removeAttr('required');
jQuery('#jform_sql').removeAttr('aria-required');
jQuery('#jform_sql').removeClass('required');
jform_vvvvvwbvvv_required = true;
}
}
}
// the vvvvvwc function
function vvvvvwc(add_sql_uninstall_vvvvvwc)
{
// set the function logic
if (add_sql_uninstall_vvvvvwc == 1)
{
jQuery('#jform_sql_uninstall').closest('.control-group').show();
// add required attribute to sql_uninstall field
if (jform_vvvvvwcvvw_required)
{
updateFieldRequired('sql_uninstall',0);
jQuery('#jform_sql_uninstall').prop('required','required');
jQuery('#jform_sql_uninstall').attr('aria-required',true);
jQuery('#jform_sql_uninstall').addClass('required');
jform_vvvvvwcvvw_required = false;
}
}
else
{
jQuery('#jform_sql_uninstall').closest('.control-group').hide();
// remove required attribute from sql_uninstall field
if (!jform_vvvvvwcvvw_required)
{
updateFieldRequired('sql_uninstall',1);
jQuery('#jform_sql_uninstall').removeAttr('required');
jQuery('#jform_sql_uninstall').removeAttr('aria-required');
jQuery('#jform_sql_uninstall').removeClass('required');
jform_vvvvvwcvvw_required = true;
}
}
}
// the vvvvvwd function
function vvvvvwd(emptycontributors_vvvvvwd)
{
// set the function logic
if (emptycontributors_vvvvvwd == 1)
{ {
jQuery('#jform_number').closest('.control-group').show(); jQuery('#jform_number').closest('.control-group').show();
} }
@ -278,115 +74,43 @@ function vvvvvwd(emptycontributors_vvvvvwd)
} }
} }
// the vvvvvwe function // the vvvvvvw function
function vvvvvwe(add_license_vvvvvwe) function vvvvvvw(add_license_vvvvvvw)
{ {
// set the function logic // set the function logic
if (add_license_vvvvvwe == 1) if (add_license_vvvvvvw == 1)
{ {
jQuery('#jform_license_type').closest('.control-group').show(); jQuery('#jform_license_type').closest('.control-group').show();
// add required attribute to license_type field // add required attribute to license_type field
if (jform_vvvvvwevvx_required) if (jform_vvvvvvwvvv_required)
{ {
updateFieldRequired('license_type',0); updateFieldRequired('license_type',0);
jQuery('#jform_license_type').prop('required','required'); jQuery('#jform_license_type').prop('required','required');
jQuery('#jform_license_type').attr('aria-required',true); jQuery('#jform_license_type').attr('aria-required',true);
jQuery('#jform_license_type').addClass('required'); jQuery('#jform_license_type').addClass('required');
jform_vvvvvwevvx_required = false; jform_vvvvvvwvvv_required = false;
} }
} }
else else
{ {
jQuery('#jform_license_type').closest('.control-group').hide(); jQuery('#jform_license_type').closest('.control-group').hide();
// remove required attribute from license_type field // remove required attribute from license_type field
if (!jform_vvvvvwevvx_required) if (!jform_vvvvvvwvvv_required)
{ {
updateFieldRequired('license_type',1); updateFieldRequired('license_type',1);
jQuery('#jform_license_type').removeAttr('required'); jQuery('#jform_license_type').removeAttr('required');
jQuery('#jform_license_type').removeAttr('aria-required'); jQuery('#jform_license_type').removeAttr('aria-required');
jQuery('#jform_license_type').removeClass('required'); jQuery('#jform_license_type').removeClass('required');
jform_vvvvvwevvx_required = true; jform_vvvvvvwvvv_required = true;
} }
} }
} }
// the vvvvvwf function // the vvvvvvx function
function vvvvvwf(add_admin_event_vvvvvwf) function vvvvvvx(add_license_vvvvvvx)
{ {
// set the function logic // set the function logic
if (add_admin_event_vvvvvwf == 1) if (add_license_vvvvvvx == 1)
{
jQuery('#jform_php_admin_event-lbl').closest('.control-group').show();
}
else
{
jQuery('#jform_php_admin_event-lbl').closest('.control-group').hide();
}
}
// the vvvvvwg function
function vvvvvwg(add_site_event_vvvvvwg)
{
// set the function logic
if (add_site_event_vvvvvwg == 1)
{
jQuery('#jform_php_site_event-lbl').closest('.control-group').show();
}
else
{
jQuery('#jform_php_site_event-lbl').closest('.control-group').hide();
}
}
// the vvvvvwh function
function vvvvvwh(addreadme_vvvvvwh)
{
// set the function logic
if (addreadme_vvvvvwh == 1)
{
jQuery('.note_readme').closest('.control-group').show();
jQuery('#jform_readme-lbl').closest('.control-group').show();
}
else
{
jQuery('.note_readme').closest('.control-group').hide();
jQuery('#jform_readme-lbl').closest('.control-group').hide();
}
}
// the vvvvvwi function
function vvvvvwi(add_update_server_vvvvvwi)
{
// set the function logic
if (add_update_server_vvvvvwi == 1)
{
jQuery('#jform_update_server_url').closest('.control-group').show();
}
else
{
jQuery('#jform_update_server_url').closest('.control-group').hide();
}
}
// the vvvvvwj function
function vvvvvwj(add_sales_server_vvvvvwj)
{
// set the function logic
if (add_sales_server_vvvvvwj == 1)
{
jQuery('#jform_sales_server').closest('.control-group').show();
}
else
{
jQuery('#jform_sales_server').closest('.control-group').hide();
}
}
// the vvvvvwk function
function vvvvvwk(add_license_vvvvvwk)
{
// set the function logic
if (add_license_vvvvvwk == 1)
{ {
jQuery('.note_whmcs_lisencing_note').closest('.control-group').show(); jQuery('.note_whmcs_lisencing_note').closest('.control-group').show();
jQuery('#jform_whmcs_key').closest('.control-group').show(); jQuery('#jform_whmcs_key').closest('.control-group').show();
@ -402,81 +126,11 @@ function vvvvvwk(add_license_vvvvvwk)
} }
} }
// the vvvvvwl function // the vvvvvvy function
function vvvvvwl(add_php_postflight_install_vvvvvwl) function vvvvvvy(update_server_target_vvvvvvy,add_update_server_vvvvvvy)
{ {
// set the function logic // set the function logic
if (add_php_postflight_install_vvvvvwl == 1) if (update_server_target_vvvvvvy == 1 && add_update_server_vvvvvvy == 1)
{
jQuery('#jform_php_postflight_install-lbl').closest('.control-group').show();
}
else
{
jQuery('#jform_php_postflight_install-lbl').closest('.control-group').hide();
}
}
// the vvvvvwm function
function vvvvvwm(add_php_postflight_update_vvvvvwm)
{
// set the function logic
if (add_php_postflight_update_vvvvvwm == 1)
{
jQuery('#jform_php_postflight_update-lbl').closest('.control-group').show();
}
else
{
jQuery('#jform_php_postflight_update-lbl').closest('.control-group').hide();
}
}
// the vvvvvwn function
function vvvvvwn(add_php_method_uninstall_vvvvvwn)
{
// set the function logic
if (add_php_method_uninstall_vvvvvwn == 1)
{
jQuery('#jform_php_method_uninstall-lbl').closest('.control-group').show();
}
else
{
jQuery('#jform_php_method_uninstall-lbl').closest('.control-group').hide();
}
}
// the vvvvvwo function
function vvvvvwo(add_php_preflight_install_vvvvvwo)
{
// set the function logic
if (add_php_preflight_install_vvvvvwo == 1)
{
jQuery('#jform_php_preflight_install-lbl').closest('.control-group').show();
}
else
{
jQuery('#jform_php_preflight_install-lbl').closest('.control-group').hide();
}
}
// the vvvvvwp function
function vvvvvwp(add_php_preflight_update_vvvvvwp)
{
// set the function logic
if (add_php_preflight_update_vvvvvwp == 1)
{
jQuery('#jform_php_preflight_update-lbl').closest('.control-group').show();
}
else
{
jQuery('#jform_php_preflight_update-lbl').closest('.control-group').hide();
}
}
// the vvvvvwq function
function vvvvvwq(update_server_target_vvvvvwq,add_update_server_vvvvvwq)
{
// set the function logic
if (update_server_target_vvvvvwq == 1 && add_update_server_vvvvvwq == 1)
{ {
jQuery('#jform_update_server').closest('.control-group').show(); jQuery('#jform_update_server').closest('.control-group').show();
jQuery('.note_update_server_note_ftp').closest('.control-group').show(); jQuery('.note_update_server_note_ftp').closest('.control-group').show();
@ -488,11 +142,11 @@ function vvvvvwq(update_server_target_vvvvvwq,add_update_server_vvvvvwq)
} }
} }
// the vvvvvwr function // the vvvvvvz function
function vvvvvwr(add_update_server_vvvvvwr,update_server_target_vvvvvwr) function vvvvvvz(add_update_server_vvvvvvz,update_server_target_vvvvvvz)
{ {
// set the function logic // set the function logic
if (add_update_server_vvvvvwr == 1 && update_server_target_vvvvvwr == 1) if (add_update_server_vvvvvvz == 1 && update_server_target_vvvvvvz == 1)
{ {
jQuery('#jform_update_server').closest('.control-group').show(); jQuery('#jform_update_server').closest('.control-group').show();
jQuery('.note_update_server_note_ftp').closest('.control-group').show(); jQuery('.note_update_server_note_ftp').closest('.control-group').show();
@ -504,11 +158,11 @@ function vvvvvwr(add_update_server_vvvvvwr,update_server_target_vvvvvwr)
} }
} }
// the vvvvvws function // the vvvvvwa function
function vvvvvws(update_server_target_vvvvvws,add_update_server_vvvvvws) function vvvvvwa(update_server_target_vvvvvwa,add_update_server_vvvvvwa)
{ {
// set the function logic // set the function logic
if (update_server_target_vvvvvws == 2 && add_update_server_vvvvvws == 1) if (update_server_target_vvvvvwa == 2 && add_update_server_vvvvvwa == 1)
{ {
jQuery('.note_update_server_note_zip').closest('.control-group').show(); jQuery('.note_update_server_note_zip').closest('.control-group').show();
} }
@ -518,11 +172,11 @@ function vvvvvws(update_server_target_vvvvvws,add_update_server_vvvvvws)
} }
} }
// the vvvvvwu function // the vvvvvwc function
function vvvvvwu(update_server_target_vvvvvwu,add_update_server_vvvvvwu) function vvvvvwc(update_server_target_vvvvvwc,add_update_server_vvvvvwc)
{ {
// set the function logic // set the function logic
if (update_server_target_vvvvvwu == 3 && add_update_server_vvvvvwu == 1) if (update_server_target_vvvvvwc == 3 && add_update_server_vvvvvwc == 1)
{ {
jQuery('.note_update_server_note_other').closest('.control-group').show(); jQuery('.note_update_server_note_other').closest('.control-group').show();
} }
@ -532,75 +186,75 @@ function vvvvvwu(update_server_target_vvvvvwu,add_update_server_vvvvvwu)
} }
} }
// the vvvvvww function // the vvvvvwe function
function vvvvvww(add_update_server_vvvvvww) function vvvvvwe(add_update_server_vvvvvwe)
{ {
// set the function logic // set the function logic
if (add_update_server_vvvvvww == 1) if (add_update_server_vvvvvwe == 1)
{ {
jQuery('#jform_update_server_target').closest('.control-group').show(); jQuery('#jform_update_server_target').closest('.control-group').show();
// add required attribute to update_server_target field // add required attribute to update_server_target field
if (jform_vvvvvwwvvy_required) if (jform_vvvvvwevvw_required)
{ {
updateFieldRequired('update_server_target',0); updateFieldRequired('update_server_target',0);
jQuery('#jform_update_server_target').prop('required','required'); jQuery('#jform_update_server_target').prop('required','required');
jQuery('#jform_update_server_target').attr('aria-required',true); jQuery('#jform_update_server_target').attr('aria-required',true);
jQuery('#jform_update_server_target').addClass('required'); jQuery('#jform_update_server_target').addClass('required');
jform_vvvvvwwvvy_required = false; jform_vvvvvwevvw_required = false;
} }
} }
else else
{ {
jQuery('#jform_update_server_target').closest('.control-group').hide(); jQuery('#jform_update_server_target').closest('.control-group').hide();
// remove required attribute from update_server_target field // remove required attribute from update_server_target field
if (!jform_vvvvvwwvvy_required) if (!jform_vvvvvwevvw_required)
{ {
updateFieldRequired('update_server_target',1); updateFieldRequired('update_server_target',1);
jQuery('#jform_update_server_target').removeAttr('required'); jQuery('#jform_update_server_target').removeAttr('required');
jQuery('#jform_update_server_target').removeAttr('aria-required'); jQuery('#jform_update_server_target').removeAttr('aria-required');
jQuery('#jform_update_server_target').removeClass('required'); jQuery('#jform_update_server_target').removeClass('required');
jform_vvvvvwwvvy_required = true; jform_vvvvvwevvw_required = true;
} }
} }
} }
// the vvvvvwx function // the vvvvvwf function
function vvvvvwx(buildcomp_vvvvvwx) function vvvvvwf(buildcomp_vvvvvwf)
{ {
// set the function logic // set the function logic
if (buildcomp_vvvvvwx == 1) if (buildcomp_vvvvvwf == 1)
{ {
jQuery('#jform_buildcompsql').closest('.control-group').show(); jQuery('#jform_buildcompsql').closest('.control-group').show();
// add required attribute to buildcompsql field // add required attribute to buildcompsql field
if (jform_vvvvvwxvvz_required) if (jform_vvvvvwfvvx_required)
{ {
updateFieldRequired('buildcompsql',0); updateFieldRequired('buildcompsql',0);
jQuery('#jform_buildcompsql').prop('required','required'); jQuery('#jform_buildcompsql').prop('required','required');
jQuery('#jform_buildcompsql').attr('aria-required',true); jQuery('#jform_buildcompsql').attr('aria-required',true);
jQuery('#jform_buildcompsql').addClass('required'); jQuery('#jform_buildcompsql').addClass('required');
jform_vvvvvwxvvz_required = false; jform_vvvvvwfvvx_required = false;
} }
} }
else else
{ {
jQuery('#jform_buildcompsql').closest('.control-group').hide(); jQuery('#jform_buildcompsql').closest('.control-group').hide();
// remove required attribute from buildcompsql field // remove required attribute from buildcompsql field
if (!jform_vvvvvwxvvz_required) if (!jform_vvvvvwfvvx_required)
{ {
updateFieldRequired('buildcompsql',1); updateFieldRequired('buildcompsql',1);
jQuery('#jform_buildcompsql').removeAttr('required'); jQuery('#jform_buildcompsql').removeAttr('required');
jQuery('#jform_buildcompsql').removeAttr('aria-required'); jQuery('#jform_buildcompsql').removeAttr('aria-required');
jQuery('#jform_buildcompsql').removeClass('required'); jQuery('#jform_buildcompsql').removeClass('required');
jform_vvvvvwxvvz_required = true; jform_vvvvvwfvvx_required = true;
} }
} }
} }
// the vvvvvwy function // the vvvvvwg function
function vvvvvwy(dashboard_type_vvvvvwy) function vvvvvwg(dashboard_type_vvvvvwg)
{ {
// set the function logic // set the function logic
if (dashboard_type_vvvvvwy == 2) if (dashboard_type_vvvvvwg == 2)
{ {
jQuery('#jform_dashboard').closest('.control-group').show(); jQuery('#jform_dashboard').closest('.control-group').show();
jQuery('.note_dynamic_dashboard').closest('.control-group').show(); jQuery('.note_dynamic_dashboard').closest('.control-group').show();
@ -612,11 +266,11 @@ function vvvvvwy(dashboard_type_vvvvvwy)
} }
} }
// the vvvvvwz function // the vvvvvwh function
function vvvvvwz(dashboard_type_vvvvvwz) function vvvvvwh(dashboard_type_vvvvvwh)
{ {
// set the function logic // set the function logic
if (dashboard_type_vvvvvwz == 1) if (dashboard_type_vvvvvwh == 1)
{ {
jQuery('.note_botton_component_dashboard').closest('.control-group').show(); jQuery('.note_botton_component_dashboard').closest('.control-group').show();
} }
@ -626,20 +280,20 @@ function vvvvvwz(dashboard_type_vvvvvwz)
} }
} }
// the vvvvvxa function // the vvvvvwi function
function vvvvvxa(translation_tool_vvvvvxa) function vvvvvwi(translation_tool_vvvvvwi)
{ {
if (isSet(translation_tool_vvvvvxa) && translation_tool_vvvvvxa.constructor !== Array) if (isSet(translation_tool_vvvvvwi) && translation_tool_vvvvvwi.constructor !== Array)
{ {
var temp_vvvvvxa = translation_tool_vvvvvxa; var temp_vvvvvwi = translation_tool_vvvvvwi;
var translation_tool_vvvvvxa = []; var translation_tool_vvvvvwi = [];
translation_tool_vvvvvxa.push(temp_vvvvvxa); translation_tool_vvvvvwi.push(temp_vvvvvwi);
} }
else if (!isSet(translation_tool_vvvvvxa)) else if (!isSet(translation_tool_vvvvvwi))
{ {
var translation_tool_vvvvvxa = []; var translation_tool_vvvvvwi = [];
} }
var translation_tool = translation_tool_vvvvvxa.some(translation_tool_vvvvvxa_SomeFunc); var translation_tool = translation_tool_vvvvvwi.some(translation_tool_vvvvvwi_SomeFunc);
// set this function logic // set this function logic
@ -649,33 +303,33 @@ function vvvvvxa(translation_tool_vvvvvxa)
jQuery('.note_crowdin').closest('.control-group').show(); jQuery('.note_crowdin').closest('.control-group').show();
jQuery('#jform_crowdin_project_api_key').closest('.control-group').show(); jQuery('#jform_crowdin_project_api_key').closest('.control-group').show();
// add required attribute to crowdin_project_api_key field // add required attribute to crowdin_project_api_key field
if (jform_vvvvvxavwa_required) if (jform_vvvvvwivvy_required)
{ {
updateFieldRequired('crowdin_project_api_key',0); updateFieldRequired('crowdin_project_api_key',0);
jQuery('#jform_crowdin_project_api_key').prop('required','required'); jQuery('#jform_crowdin_project_api_key').prop('required','required');
jQuery('#jform_crowdin_project_api_key').attr('aria-required',true); jQuery('#jform_crowdin_project_api_key').attr('aria-required',true);
jQuery('#jform_crowdin_project_api_key').addClass('required'); jQuery('#jform_crowdin_project_api_key').addClass('required');
jform_vvvvvxavwa_required = false; jform_vvvvvwivvy_required = false;
} }
jQuery('#jform_crowdin_project_identifier').closest('.control-group').show(); jQuery('#jform_crowdin_project_identifier').closest('.control-group').show();
// add required attribute to crowdin_project_identifier field // add required attribute to crowdin_project_identifier field
if (jform_vvvvvxavwb_required) if (jform_vvvvvwivvz_required)
{ {
updateFieldRequired('crowdin_project_identifier',0); updateFieldRequired('crowdin_project_identifier',0);
jQuery('#jform_crowdin_project_identifier').prop('required','required'); jQuery('#jform_crowdin_project_identifier').prop('required','required');
jQuery('#jform_crowdin_project_identifier').attr('aria-required',true); jQuery('#jform_crowdin_project_identifier').attr('aria-required',true);
jQuery('#jform_crowdin_project_identifier').addClass('required'); jQuery('#jform_crowdin_project_identifier').addClass('required');
jform_vvvvvxavwb_required = false; jform_vvvvvwivvz_required = false;
} }
jQuery('#jform_crowdin_username').closest('.control-group').show(); jQuery('#jform_crowdin_username').closest('.control-group').show();
// add required attribute to crowdin_username field // add required attribute to crowdin_username field
if (jform_vvvvvxavwc_required) if (jform_vvvvvwivwa_required)
{ {
updateFieldRequired('crowdin_username',0); updateFieldRequired('crowdin_username',0);
jQuery('#jform_crowdin_username').prop('required','required'); jQuery('#jform_crowdin_username').prop('required','required');
jQuery('#jform_crowdin_username').attr('aria-required',true); jQuery('#jform_crowdin_username').attr('aria-required',true);
jQuery('#jform_crowdin_username').addClass('required'); jQuery('#jform_crowdin_username').addClass('required');
jform_vvvvvxavwc_required = false; jform_vvvvvwivwa_required = false;
} }
} }
else else
@ -684,42 +338,42 @@ function vvvvvxa(translation_tool_vvvvvxa)
jQuery('.note_crowdin').closest('.control-group').hide(); jQuery('.note_crowdin').closest('.control-group').hide();
jQuery('#jform_crowdin_project_api_key').closest('.control-group').hide(); jQuery('#jform_crowdin_project_api_key').closest('.control-group').hide();
// remove required attribute from crowdin_project_api_key field // remove required attribute from crowdin_project_api_key field
if (!jform_vvvvvxavwa_required) if (!jform_vvvvvwivvy_required)
{ {
updateFieldRequired('crowdin_project_api_key',1); updateFieldRequired('crowdin_project_api_key',1);
jQuery('#jform_crowdin_project_api_key').removeAttr('required'); jQuery('#jform_crowdin_project_api_key').removeAttr('required');
jQuery('#jform_crowdin_project_api_key').removeAttr('aria-required'); jQuery('#jform_crowdin_project_api_key').removeAttr('aria-required');
jQuery('#jform_crowdin_project_api_key').removeClass('required'); jQuery('#jform_crowdin_project_api_key').removeClass('required');
jform_vvvvvxavwa_required = true; jform_vvvvvwivvy_required = true;
} }
jQuery('#jform_crowdin_project_identifier').closest('.control-group').hide(); jQuery('#jform_crowdin_project_identifier').closest('.control-group').hide();
// remove required attribute from crowdin_project_identifier field // remove required attribute from crowdin_project_identifier field
if (!jform_vvvvvxavwb_required) if (!jform_vvvvvwivvz_required)
{ {
updateFieldRequired('crowdin_project_identifier',1); updateFieldRequired('crowdin_project_identifier',1);
jQuery('#jform_crowdin_project_identifier').removeAttr('required'); jQuery('#jform_crowdin_project_identifier').removeAttr('required');
jQuery('#jform_crowdin_project_identifier').removeAttr('aria-required'); jQuery('#jform_crowdin_project_identifier').removeAttr('aria-required');
jQuery('#jform_crowdin_project_identifier').removeClass('required'); jQuery('#jform_crowdin_project_identifier').removeClass('required');
jform_vvvvvxavwb_required = true; jform_vvvvvwivvz_required = true;
} }
jQuery('#jform_crowdin_username').closest('.control-group').hide(); jQuery('#jform_crowdin_username').closest('.control-group').hide();
// remove required attribute from crowdin_username field // remove required attribute from crowdin_username field
if (!jform_vvvvvxavwc_required) if (!jform_vvvvvwivwa_required)
{ {
updateFieldRequired('crowdin_username',1); updateFieldRequired('crowdin_username',1);
jQuery('#jform_crowdin_username').removeAttr('required'); jQuery('#jform_crowdin_username').removeAttr('required');
jQuery('#jform_crowdin_username').removeAttr('aria-required'); jQuery('#jform_crowdin_username').removeAttr('aria-required');
jQuery('#jform_crowdin_username').removeClass('required'); jQuery('#jform_crowdin_username').removeClass('required');
jform_vvvvvxavwc_required = true; jform_vvvvvwivwa_required = true;
} }
} }
} }
// the vvvvvxa Some function // the vvvvvwi Some function
function translation_tool_vvvvvxa_SomeFunc(translation_tool_vvvvvxa) function translation_tool_vvvvvwi_SomeFunc(translation_tool_vvvvvwi)
{ {
// set the function logic // set the function logic
if (translation_tool_vvvvvxa == 1) if (translation_tool_vvvvvwi == 1)
{ {
return true; return true;
} }

View File

@ -8,91 +8,47 @@
* @license GNU General Public License version 2 or later; see LICENSE.txt * @license GNU General Public License version 2 or later; see LICENSE.txt
*/ */
// Some Global Values
jform_vvvvvxrvwd_required = false;
jform_vvvvvxsvwe_required = false;
jform_vvvvvxtvwf_required = false;
// Initial Script // Initial Script
document.addEventListener('DOMContentLoaded', function() document.addEventListener('DOMContentLoaded', function()
{ {
var add_class_helper_vvvvvxb = jQuery("#jform_add_class_helper").val(); var add_class_helper_vvvvvwj = jQuery("#jform_add_class_helper").val();
vvvvvxb(add_class_helper_vvvvvxb); vvvvvwj(add_class_helper_vvvvvwj);
var add_class_helper_header_vvvvvxc = jQuery("#jform_add_class_helper_header input[type='radio']:checked").val(); var add_class_helper_header_vvvvvwk = jQuery("#jform_add_class_helper_header input[type='radio']:checked").val();
var add_class_helper_vvvvvxc = jQuery("#jform_add_class_helper").val(); var add_class_helper_vvvvvwk = jQuery("#jform_add_class_helper").val();
vvvvvxc(add_class_helper_header_vvvvvxc,add_class_helper_vvvvvxc); vvvvvwk(add_class_helper_header_vvvvvwk,add_class_helper_vvvvvwk);
var add_php_script_construct_vvvvvxe = jQuery("#jform_add_php_script_construct input[type='radio']:checked").val(); var update_server_target_vvvvvwm = jQuery("#jform_update_server_target input[type='radio']:checked").val();
vvvvvxe(add_php_script_construct_vvvvvxe); var add_update_server_vvvvvwm = jQuery("#jform_add_update_server input[type='radio']:checked").val();
vvvvvwm(update_server_target_vvvvvwm,add_update_server_vvvvvwm);
var add_php_preflight_install_vvvvvxf = jQuery("#jform_add_php_preflight_install input[type='radio']:checked").val(); var add_update_server_vvvvvwn = jQuery("#jform_add_update_server input[type='radio']:checked").val();
vvvvvxf(add_php_preflight_install_vvvvvxf); var update_server_target_vvvvvwn = jQuery("#jform_update_server_target input[type='radio']:checked").val();
vvvvvwn(add_update_server_vvvvvwn,update_server_target_vvvvvwn);
var add_php_preflight_update_vvvvvxg = jQuery("#jform_add_php_preflight_update input[type='radio']:checked").val(); var update_server_target_vvvvvwo = jQuery("#jform_update_server_target input[type='radio']:checked").val();
vvvvvxg(add_php_preflight_update_vvvvvxg); var add_update_server_vvvvvwo = jQuery("#jform_add_update_server input[type='radio']:checked").val();
vvvvvwo(update_server_target_vvvvvwo,add_update_server_vvvvvwo);
var add_php_preflight_uninstall_vvvvvxh = jQuery("#jform_add_php_preflight_uninstall input[type='radio']:checked").val(); var update_server_target_vvvvvwq = jQuery("#jform_update_server_target input[type='radio']:checked").val();
vvvvvxh(add_php_preflight_uninstall_vvvvvxh); var add_update_server_vvvvvwq = jQuery("#jform_add_update_server input[type='radio']:checked").val();
vvvvvwq(update_server_target_vvvvvwq,add_update_server_vvvvvwq);
var add_php_postflight_install_vvvvvxi = jQuery("#jform_add_php_postflight_install input[type='radio']:checked").val();
vvvvvxi(add_php_postflight_install_vvvvvxi);
var add_php_postflight_update_vvvvvxj = jQuery("#jform_add_php_postflight_update input[type='radio']:checked").val();
vvvvvxj(add_php_postflight_update_vvvvvxj);
var add_php_method_uninstall_vvvvvxk = jQuery("#jform_add_php_method_uninstall input[type='radio']:checked").val();
vvvvvxk(add_php_method_uninstall_vvvvvxk);
var update_server_target_vvvvvxl = jQuery("#jform_update_server_target input[type='radio']:checked").val();
var add_update_server_vvvvvxl = jQuery("#jform_add_update_server input[type='radio']:checked").val();
vvvvvxl(update_server_target_vvvvvxl,add_update_server_vvvvvxl);
var add_update_server_vvvvvxm = jQuery("#jform_add_update_server input[type='radio']:checked").val();
var update_server_target_vvvvvxm = jQuery("#jform_update_server_target input[type='radio']:checked").val();
vvvvvxm(add_update_server_vvvvvxm,update_server_target_vvvvvxm);
var update_server_target_vvvvvxn = jQuery("#jform_update_server_target input[type='radio']:checked").val();
var add_update_server_vvvvvxn = jQuery("#jform_add_update_server input[type='radio']:checked").val();
vvvvvxn(update_server_target_vvvvvxn,add_update_server_vvvvvxn);
var update_server_target_vvvvvxp = jQuery("#jform_update_server_target input[type='radio']:checked").val();
var add_update_server_vvvvvxp = jQuery("#jform_add_update_server input[type='radio']:checked").val();
vvvvvxp(update_server_target_vvvvvxp,add_update_server_vvvvvxp);
var add_update_server_vvvvvxr = jQuery("#jform_add_update_server input[type='radio']:checked").val();
vvvvvxr(add_update_server_vvvvvxr);
var add_sql_vvvvvxs = jQuery("#jform_add_sql input[type='radio']:checked").val();
vvvvvxs(add_sql_vvvvvxs);
var add_sql_uninstall_vvvvvxt = jQuery("#jform_add_sql_uninstall input[type='radio']:checked").val();
vvvvvxt(add_sql_uninstall_vvvvvxt);
var add_update_server_vvvvvxu = jQuery("#jform_add_update_server input[type='radio']:checked").val();
vvvvvxu(add_update_server_vvvvvxu);
var add_sales_server_vvvvvxv = jQuery("#jform_add_sales_server input[type='radio']:checked").val();
vvvvvxv(add_sales_server_vvvvvxv);
var addreadme_vvvvvxw = jQuery("#jform_addreadme input[type='radio']:checked").val();
vvvvvxw(addreadme_vvvvvxw);
}); });
// the vvvvvxb function // the vvvvvwj function
function vvvvvxb(add_class_helper_vvvvvxb) function vvvvvwj(add_class_helper_vvvvvwj)
{ {
if (isSet(add_class_helper_vvvvvxb) && add_class_helper_vvvvvxb.constructor !== Array) if (isSet(add_class_helper_vvvvvwj) && add_class_helper_vvvvvwj.constructor !== Array)
{ {
var temp_vvvvvxb = add_class_helper_vvvvvxb; var temp_vvvvvwj = add_class_helper_vvvvvwj;
var add_class_helper_vvvvvxb = []; var add_class_helper_vvvvvwj = [];
add_class_helper_vvvvvxb.push(temp_vvvvvxb); add_class_helper_vvvvvwj.push(temp_vvvvvwj);
} }
else if (!isSet(add_class_helper_vvvvvxb)) else if (!isSet(add_class_helper_vvvvvwj))
{ {
var add_class_helper_vvvvvxb = []; var add_class_helper_vvvvvwj = [];
} }
var add_class_helper = add_class_helper_vvvvvxb.some(add_class_helper_vvvvvxb_SomeFunc); var add_class_helper = add_class_helper_vvvvvwj.some(add_class_helper_vvvvvwj_SomeFunc);
// set this function logic // set this function logic
@ -108,43 +64,43 @@ function vvvvvxb(add_class_helper_vvvvvxb)
} }
} }
// the vvvvvxb Some function // the vvvvvwj Some function
function add_class_helper_vvvvvxb_SomeFunc(add_class_helper_vvvvvxb) function add_class_helper_vvvvvwj_SomeFunc(add_class_helper_vvvvvwj)
{ {
// set the function logic // set the function logic
if (add_class_helper_vvvvvxb == 1 || add_class_helper_vvvvvxb == 2) if (add_class_helper_vvvvvwj == 1 || add_class_helper_vvvvvwj == 2)
{ {
return true; return true;
} }
return false; return false;
} }
// the vvvvvxc function // the vvvvvwk function
function vvvvvxc(add_class_helper_header_vvvvvxc,add_class_helper_vvvvvxc) function vvvvvwk(add_class_helper_header_vvvvvwk,add_class_helper_vvvvvwk)
{ {
if (isSet(add_class_helper_header_vvvvvxc) && add_class_helper_header_vvvvvxc.constructor !== Array) if (isSet(add_class_helper_header_vvvvvwk) && add_class_helper_header_vvvvvwk.constructor !== Array)
{ {
var temp_vvvvvxc = add_class_helper_header_vvvvvxc; var temp_vvvvvwk = add_class_helper_header_vvvvvwk;
var add_class_helper_header_vvvvvxc = []; var add_class_helper_header_vvvvvwk = [];
add_class_helper_header_vvvvvxc.push(temp_vvvvvxc); add_class_helper_header_vvvvvwk.push(temp_vvvvvwk);
} }
else if (!isSet(add_class_helper_header_vvvvvxc)) else if (!isSet(add_class_helper_header_vvvvvwk))
{ {
var add_class_helper_header_vvvvvxc = []; var add_class_helper_header_vvvvvwk = [];
} }
var add_class_helper_header = add_class_helper_header_vvvvvxc.some(add_class_helper_header_vvvvvxc_SomeFunc); var add_class_helper_header = add_class_helper_header_vvvvvwk.some(add_class_helper_header_vvvvvwk_SomeFunc);
if (isSet(add_class_helper_vvvvvxc) && add_class_helper_vvvvvxc.constructor !== Array) if (isSet(add_class_helper_vvvvvwk) && add_class_helper_vvvvvwk.constructor !== Array)
{ {
var temp_vvvvvxc = add_class_helper_vvvvvxc; var temp_vvvvvwk = add_class_helper_vvvvvwk;
var add_class_helper_vvvvvxc = []; var add_class_helper_vvvvvwk = [];
add_class_helper_vvvvvxc.push(temp_vvvvvxc); add_class_helper_vvvvvwk.push(temp_vvvvvwk);
} }
else if (!isSet(add_class_helper_vvvvvxc)) else if (!isSet(add_class_helper_vvvvvwk))
{ {
var add_class_helper_vvvvvxc = []; var add_class_helper_vvvvvwk = [];
} }
var add_class_helper = add_class_helper_vvvvvxc.some(add_class_helper_vvvvvxc_SomeFunc); var add_class_helper = add_class_helper_vvvvvwk.some(add_class_helper_vvvvvwk_SomeFunc);
// set this function logic // set this function logic
@ -158,131 +114,33 @@ function vvvvvxc(add_class_helper_header_vvvvvxc,add_class_helper_vvvvvxc)
} }
} }
// the vvvvvxc Some function // the vvvvvwk Some function
function add_class_helper_header_vvvvvxc_SomeFunc(add_class_helper_header_vvvvvxc) function add_class_helper_header_vvvvvwk_SomeFunc(add_class_helper_header_vvvvvwk)
{ {
// set the function logic // set the function logic
if (add_class_helper_header_vvvvvxc == 1) if (add_class_helper_header_vvvvvwk == 1)
{ {
return true; return true;
} }
return false; return false;
} }
// the vvvvvxc Some function // the vvvvvwk Some function
function add_class_helper_vvvvvxc_SomeFunc(add_class_helper_vvvvvxc) function add_class_helper_vvvvvwk_SomeFunc(add_class_helper_vvvvvwk)
{ {
// set the function logic // set the function logic
if (add_class_helper_vvvvvxc == 1 || add_class_helper_vvvvvxc == 2) if (add_class_helper_vvvvvwk == 1 || add_class_helper_vvvvvwk == 2)
{ {
return true; return true;
} }
return false; return false;
} }
// the vvvvvxe function // the vvvvvwm function
function vvvvvxe(add_php_script_construct_vvvvvxe) function vvvvvwm(update_server_target_vvvvvwm,add_update_server_vvvvvwm)
{ {
// set the function logic // set the function logic
if (add_php_script_construct_vvvvvxe == 1) if (update_server_target_vvvvvwm == 1 && add_update_server_vvvvvwm == 1)
{
jQuery('#jform_php_script_construct-lbl').closest('.control-group').show();
}
else
{
jQuery('#jform_php_script_construct-lbl').closest('.control-group').hide();
}
}
// the vvvvvxf function
function vvvvvxf(add_php_preflight_install_vvvvvxf)
{
// set the function logic
if (add_php_preflight_install_vvvvvxf == 1)
{
jQuery('#jform_php_preflight_install-lbl').closest('.control-group').show();
}
else
{
jQuery('#jform_php_preflight_install-lbl').closest('.control-group').hide();
}
}
// the vvvvvxg function
function vvvvvxg(add_php_preflight_update_vvvvvxg)
{
// set the function logic
if (add_php_preflight_update_vvvvvxg == 1)
{
jQuery('#jform_php_preflight_update-lbl').closest('.control-group').show();
}
else
{
jQuery('#jform_php_preflight_update-lbl').closest('.control-group').hide();
}
}
// the vvvvvxh function
function vvvvvxh(add_php_preflight_uninstall_vvvvvxh)
{
// set the function logic
if (add_php_preflight_uninstall_vvvvvxh == 1)
{
jQuery('#jform_php_preflight_uninstall-lbl').closest('.control-group').show();
}
else
{
jQuery('#jform_php_preflight_uninstall-lbl').closest('.control-group').hide();
}
}
// the vvvvvxi function
function vvvvvxi(add_php_postflight_install_vvvvvxi)
{
// set the function logic
if (add_php_postflight_install_vvvvvxi == 1)
{
jQuery('#jform_php_postflight_install-lbl').closest('.control-group').show();
}
else
{
jQuery('#jform_php_postflight_install-lbl').closest('.control-group').hide();
}
}
// the vvvvvxj function
function vvvvvxj(add_php_postflight_update_vvvvvxj)
{
// set the function logic
if (add_php_postflight_update_vvvvvxj == 1)
{
jQuery('#jform_php_postflight_update-lbl').closest('.control-group').show();
}
else
{
jQuery('#jform_php_postflight_update-lbl').closest('.control-group').hide();
}
}
// the vvvvvxk function
function vvvvvxk(add_php_method_uninstall_vvvvvxk)
{
// set the function logic
if (add_php_method_uninstall_vvvvvxk == 1)
{
jQuery('#jform_php_method_uninstall-lbl').closest('.control-group').show();
}
else
{
jQuery('#jform_php_method_uninstall-lbl').closest('.control-group').hide();
}
}
// the vvvvvxl function
function vvvvvxl(update_server_target_vvvvvxl,add_update_server_vvvvvxl)
{
// set the function logic
if (update_server_target_vvvvvxl == 1 && add_update_server_vvvvvxl == 1)
{ {
jQuery('#jform_update_server').closest('.control-group').show(); jQuery('#jform_update_server').closest('.control-group').show();
jQuery('.note_update_server_note_ftp').closest('.control-group').show(); jQuery('.note_update_server_note_ftp').closest('.control-group').show();
@ -294,11 +152,11 @@ function vvvvvxl(update_server_target_vvvvvxl,add_update_server_vvvvvxl)
} }
} }
// the vvvvvxm function // the vvvvvwn function
function vvvvvxm(add_update_server_vvvvvxm,update_server_target_vvvvvxm) function vvvvvwn(add_update_server_vvvvvwn,update_server_target_vvvvvwn)
{ {
// set the function logic // set the function logic
if (add_update_server_vvvvvxm == 1 && update_server_target_vvvvvxm == 1) if (add_update_server_vvvvvwn == 1 && update_server_target_vvvvvwn == 1)
{ {
jQuery('#jform_update_server').closest('.control-group').show(); jQuery('#jform_update_server').closest('.control-group').show();
jQuery('.note_update_server_note_ftp').closest('.control-group').show(); jQuery('.note_update_server_note_ftp').closest('.control-group').show();
@ -310,11 +168,11 @@ function vvvvvxm(add_update_server_vvvvvxm,update_server_target_vvvvvxm)
} }
} }
// the vvvvvxn function // the vvvvvwo function
function vvvvvxn(update_server_target_vvvvvxn,add_update_server_vvvvvxn) function vvvvvwo(update_server_target_vvvvvwo,add_update_server_vvvvvwo)
{ {
// set the function logic // set the function logic
if (update_server_target_vvvvvxn == 2 && add_update_server_vvvvvxn == 1) if (update_server_target_vvvvvwo == 2 && add_update_server_vvvvvwo == 1)
{ {
jQuery('.note_update_server_note_zip').closest('.control-group').show(); jQuery('.note_update_server_note_zip').closest('.control-group').show();
} }
@ -324,11 +182,11 @@ function vvvvvxn(update_server_target_vvvvvxn,add_update_server_vvvvvxn)
} }
} }
// the vvvvvxp function // the vvvvvwq function
function vvvvvxp(update_server_target_vvvvvxp,add_update_server_vvvvvxp) function vvvvvwq(update_server_target_vvvvvwq,add_update_server_vvvvvwq)
{ {
// set the function logic // set the function logic
if (update_server_target_vvvvvxp == 3 && add_update_server_vvvvvxp == 1) if (update_server_target_vvvvvwq == 3 && add_update_server_vvvvvwq == 1)
{ {
jQuery('.note_update_server_note_other').closest('.control-group').show(); jQuery('.note_update_server_note_other').closest('.control-group').show();
} }
@ -338,186 +196,6 @@ function vvvvvxp(update_server_target_vvvvvxp,add_update_server_vvvvvxp)
} }
} }
// the vvvvvxr function
function vvvvvxr(add_update_server_vvvvvxr)
{
// set the function logic
if (add_update_server_vvvvvxr == 1)
{
jQuery('#jform_update_server_target').closest('.control-group').show();
// add required attribute to update_server_target field
if (jform_vvvvvxrvwd_required)
{
updateFieldRequired('update_server_target',0);
jQuery('#jform_update_server_target').prop('required','required');
jQuery('#jform_update_server_target').attr('aria-required',true);
jQuery('#jform_update_server_target').addClass('required');
jform_vvvvvxrvwd_required = false;
}
}
else
{
jQuery('#jform_update_server_target').closest('.control-group').hide();
// remove required attribute from update_server_target field
if (!jform_vvvvvxrvwd_required)
{
updateFieldRequired('update_server_target',1);
jQuery('#jform_update_server_target').removeAttr('required');
jQuery('#jform_update_server_target').removeAttr('aria-required');
jQuery('#jform_update_server_target').removeClass('required');
jform_vvvvvxrvwd_required = true;
}
}
}
// the vvvvvxs function
function vvvvvxs(add_sql_vvvvvxs)
{
// set the function logic
if (add_sql_vvvvvxs == 1)
{
jQuery('#jform_sql').closest('.control-group').show();
// add required attribute to sql field
if (jform_vvvvvxsvwe_required)
{
updateFieldRequired('sql',0);
jQuery('#jform_sql').prop('required','required');
jQuery('#jform_sql').attr('aria-required',true);
jQuery('#jform_sql').addClass('required');
jform_vvvvvxsvwe_required = false;
}
}
else
{
jQuery('#jform_sql').closest('.control-group').hide();
// remove required attribute from sql field
if (!jform_vvvvvxsvwe_required)
{
updateFieldRequired('sql',1);
jQuery('#jform_sql').removeAttr('required');
jQuery('#jform_sql').removeAttr('aria-required');
jQuery('#jform_sql').removeClass('required');
jform_vvvvvxsvwe_required = true;
}
}
}
// the vvvvvxt function
function vvvvvxt(add_sql_uninstall_vvvvvxt)
{
// set the function logic
if (add_sql_uninstall_vvvvvxt == 1)
{
jQuery('#jform_sql_uninstall').closest('.control-group').show();
// add required attribute to sql_uninstall field
if (jform_vvvvvxtvwf_required)
{
updateFieldRequired('sql_uninstall',0);
jQuery('#jform_sql_uninstall').prop('required','required');
jQuery('#jform_sql_uninstall').attr('aria-required',true);
jQuery('#jform_sql_uninstall').addClass('required');
jform_vvvvvxtvwf_required = false;
}
}
else
{
jQuery('#jform_sql_uninstall').closest('.control-group').hide();
// remove required attribute from sql_uninstall field
if (!jform_vvvvvxtvwf_required)
{
updateFieldRequired('sql_uninstall',1);
jQuery('#jform_sql_uninstall').removeAttr('required');
jQuery('#jform_sql_uninstall').removeAttr('aria-required');
jQuery('#jform_sql_uninstall').removeClass('required');
jform_vvvvvxtvwf_required = true;
}
}
}
// the vvvvvxu function
function vvvvvxu(add_update_server_vvvvvxu)
{
// set the function logic
if (add_update_server_vvvvvxu == 1)
{
jQuery('#jform_update_server_url').closest('.control-group').show();
}
else
{
jQuery('#jform_update_server_url').closest('.control-group').hide();
}
}
// the vvvvvxv function
function vvvvvxv(add_sales_server_vvvvvxv)
{
// set the function logic
if (add_sales_server_vvvvvxv == 1)
{
jQuery('#jform_sales_server').closest('.control-group').show();
}
else
{
jQuery('#jform_sales_server').closest('.control-group').hide();
}
}
// the vvvvvxw function
function vvvvvxw(addreadme_vvvvvxw)
{
// set the function logic
if (addreadme_vvvvvxw == 1)
{
jQuery('#jform_readme-lbl').closest('.control-group').show();
}
else
{
jQuery('#jform_readme-lbl').closest('.control-group').hide();
}
}
// update fields required
function updateFieldRequired(name, status) {
// check if not_required exist
if (document.getElementById('jform_not_required')) {
var not_required = jQuery('#jform_not_required').val().split(",");
if(status == 1)
{
not_required.push(name);
}
else
{
not_required = removeFieldFromNotRequired(not_required, name);
}
jQuery('#jform_not_required').val(fixNotRequiredArray(not_required).toString());
}
}
// remove field from not_required
function removeFieldFromNotRequired(array, what) {
return array.filter(function(element){
return element !== what;
});
}
// fix not required array
function fixNotRequiredArray(array) {
var seen = {};
return removeEmptyFromNotRequiredArray(array).filter(function(item) {
return seen.hasOwnProperty(item) ? false : (seen[item] = true);
});
}
// remove empty from not_required array
function removeEmptyFromNotRequiredArray(array) {
return array.filter(function (el) {
// remove ( 一_一) as well - lol
return (el.length > 0 && '一_一' !== el);
});
}
// the isSet function // the isSet function
function isSet(val) function isSet(val)
{ {

View File

@ -8,107 +8,63 @@
* @license GNU General Public License version 2 or later; see LICENSE.txt * @license GNU General Public License version 2 or later; see LICENSE.txt
*/ */
// Some Global Values
jform_vvvvvyovwg_required = false;
jform_vvvvvypvwh_required = false;
jform_vvvvvyqvwi_required = false;
// Initial Script // Initial Script
document.addEventListener('DOMContentLoaded', function() document.addEventListener('DOMContentLoaded', function()
{ {
var class_extends_vvvvvxx = jQuery("#jform_class_extends").val(); var class_extends_vvvvvws = jQuery("#jform_class_extends").val();
var joomla_plugin_group_vvvvvxx = jQuery("#jform_joomla_plugin_group").val(); var joomla_plugin_group_vvvvvws = jQuery("#jform_joomla_plugin_group").val();
vvvvvxx(class_extends_vvvvvxx,joomla_plugin_group_vvvvvxx); vvvvvws(class_extends_vvvvvws,joomla_plugin_group_vvvvvws);
var joomla_plugin_group_vvvvvxy = jQuery("#jform_joomla_plugin_group").val(); var joomla_plugin_group_vvvvvwt = jQuery("#jform_joomla_plugin_group").val();
var class_extends_vvvvvxy = jQuery("#jform_class_extends").val(); var class_extends_vvvvvwt = jQuery("#jform_class_extends").val();
vvvvvxy(joomla_plugin_group_vvvvvxy,class_extends_vvvvvxy); vvvvvwt(joomla_plugin_group_vvvvvwt,class_extends_vvvvvwt);
var class_extends_vvvvvxz = jQuery("#jform_class_extends").val(); var class_extends_vvvvvwu = jQuery("#jform_class_extends").val();
vvvvvxz(class_extends_vvvvvxz); vvvvvwu(class_extends_vvvvvwu);
var add_php_script_construct_vvvvvyb = jQuery("#jform_add_php_script_construct input[type='radio']:checked").val(); var update_server_target_vvvvvww = jQuery("#jform_update_server_target input[type='radio']:checked").val();
vvvvvyb(add_php_script_construct_vvvvvyb); var add_update_server_vvvvvww = jQuery("#jform_add_update_server input[type='radio']:checked").val();
vvvvvww(update_server_target_vvvvvww,add_update_server_vvvvvww);
var add_php_preflight_install_vvvvvyc = jQuery("#jform_add_php_preflight_install input[type='radio']:checked").val(); var add_update_server_vvvvvwx = jQuery("#jform_add_update_server input[type='radio']:checked").val();
vvvvvyc(add_php_preflight_install_vvvvvyc); var update_server_target_vvvvvwx = jQuery("#jform_update_server_target input[type='radio']:checked").val();
vvvvvwx(add_update_server_vvvvvwx,update_server_target_vvvvvwx);
var add_php_preflight_update_vvvvvyd = jQuery("#jform_add_php_preflight_update input[type='radio']:checked").val(); var update_server_target_vvvvvwy = jQuery("#jform_update_server_target input[type='radio']:checked").val();
vvvvvyd(add_php_preflight_update_vvvvvyd); var add_update_server_vvvvvwy = jQuery("#jform_add_update_server input[type='radio']:checked").val();
vvvvvwy(update_server_target_vvvvvwy,add_update_server_vvvvvwy);
var add_php_preflight_uninstall_vvvvvye = jQuery("#jform_add_php_preflight_uninstall input[type='radio']:checked").val(); var update_server_target_vvvvvxa = jQuery("#jform_update_server_target input[type='radio']:checked").val();
vvvvvye(add_php_preflight_uninstall_vvvvvye); var add_update_server_vvvvvxa = jQuery("#jform_add_update_server input[type='radio']:checked").val();
vvvvvxa(update_server_target_vvvvvxa,add_update_server_vvvvvxa);
var add_php_postflight_install_vvvvvyf = jQuery("#jform_add_php_postflight_install input[type='radio']:checked").val();
vvvvvyf(add_php_postflight_install_vvvvvyf);
var add_php_postflight_update_vvvvvyg = jQuery("#jform_add_php_postflight_update input[type='radio']:checked").val();
vvvvvyg(add_php_postflight_update_vvvvvyg);
var add_php_method_uninstall_vvvvvyh = jQuery("#jform_add_php_method_uninstall input[type='radio']:checked").val();
vvvvvyh(add_php_method_uninstall_vvvvvyh);
var update_server_target_vvvvvyi = jQuery("#jform_update_server_target input[type='radio']:checked").val();
var add_update_server_vvvvvyi = jQuery("#jform_add_update_server input[type='radio']:checked").val();
vvvvvyi(update_server_target_vvvvvyi,add_update_server_vvvvvyi);
var add_update_server_vvvvvyj = jQuery("#jform_add_update_server input[type='radio']:checked").val();
var update_server_target_vvvvvyj = jQuery("#jform_update_server_target input[type='radio']:checked").val();
vvvvvyj(add_update_server_vvvvvyj,update_server_target_vvvvvyj);
var update_server_target_vvvvvyk = jQuery("#jform_update_server_target input[type='radio']:checked").val();
var add_update_server_vvvvvyk = jQuery("#jform_add_update_server input[type='radio']:checked").val();
vvvvvyk(update_server_target_vvvvvyk,add_update_server_vvvvvyk);
var update_server_target_vvvvvym = jQuery("#jform_update_server_target input[type='radio']:checked").val();
var add_update_server_vvvvvym = jQuery("#jform_add_update_server input[type='radio']:checked").val();
vvvvvym(update_server_target_vvvvvym,add_update_server_vvvvvym);
var add_update_server_vvvvvyo = jQuery("#jform_add_update_server input[type='radio']:checked").val();
vvvvvyo(add_update_server_vvvvvyo);
var add_sql_vvvvvyp = jQuery("#jform_add_sql input[type='radio']:checked").val();
vvvvvyp(add_sql_vvvvvyp);
var add_sql_uninstall_vvvvvyq = jQuery("#jform_add_sql_uninstall input[type='radio']:checked").val();
vvvvvyq(add_sql_uninstall_vvvvvyq);
var add_update_server_vvvvvyr = jQuery("#jform_add_update_server input[type='radio']:checked").val();
vvvvvyr(add_update_server_vvvvvyr);
var add_sales_server_vvvvvys = jQuery("#jform_add_sales_server input[type='radio']:checked").val();
vvvvvys(add_sales_server_vvvvvys);
var addreadme_vvvvvyt = jQuery("#jform_addreadme input[type='radio']:checked").val();
vvvvvyt(addreadme_vvvvvyt);
}); });
// the vvvvvxx function // the vvvvvws function
function vvvvvxx(class_extends_vvvvvxx,joomla_plugin_group_vvvvvxx) function vvvvvws(class_extends_vvvvvws,joomla_plugin_group_vvvvvws)
{ {
if (isSet(class_extends_vvvvvxx) && class_extends_vvvvvxx.constructor !== Array) if (isSet(class_extends_vvvvvws) && class_extends_vvvvvws.constructor !== Array)
{ {
var temp_vvvvvxx = class_extends_vvvvvxx; var temp_vvvvvws = class_extends_vvvvvws;
var class_extends_vvvvvxx = []; var class_extends_vvvvvws = [];
class_extends_vvvvvxx.push(temp_vvvvvxx); class_extends_vvvvvws.push(temp_vvvvvws);
} }
else if (!isSet(class_extends_vvvvvxx)) else if (!isSet(class_extends_vvvvvws))
{ {
var class_extends_vvvvvxx = []; var class_extends_vvvvvws = [];
} }
var class_extends = class_extends_vvvvvxx.some(class_extends_vvvvvxx_SomeFunc); var class_extends = class_extends_vvvvvws.some(class_extends_vvvvvws_SomeFunc);
if (isSet(joomla_plugin_group_vvvvvxx) && joomla_plugin_group_vvvvvxx.constructor !== Array) if (isSet(joomla_plugin_group_vvvvvws) && joomla_plugin_group_vvvvvws.constructor !== Array)
{ {
var temp_vvvvvxx = joomla_plugin_group_vvvvvxx; var temp_vvvvvws = joomla_plugin_group_vvvvvws;
var joomla_plugin_group_vvvvvxx = []; var joomla_plugin_group_vvvvvws = [];
joomla_plugin_group_vvvvvxx.push(temp_vvvvvxx); joomla_plugin_group_vvvvvws.push(temp_vvvvvws);
} }
else if (!isSet(joomla_plugin_group_vvvvvxx)) else if (!isSet(joomla_plugin_group_vvvvvws))
{ {
var joomla_plugin_group_vvvvvxx = []; var joomla_plugin_group_vvvvvws = [];
} }
var joomla_plugin_group = joomla_plugin_group_vvvvvxx.some(joomla_plugin_group_vvvvvxx_SomeFunc); var joomla_plugin_group = joomla_plugin_group_vvvvvws.some(joomla_plugin_group_vvvvvws_SomeFunc);
// set this function logic // set this function logic
@ -124,54 +80,54 @@ function vvvvvxx(class_extends_vvvvvxx,joomla_plugin_group_vvvvvxx)
} }
} }
// the vvvvvxx Some function // the vvvvvws Some function
function class_extends_vvvvvxx_SomeFunc(class_extends_vvvvvxx) function class_extends_vvvvvws_SomeFunc(class_extends_vvvvvws)
{ {
// set the function logic // set the function logic
if (isSet(class_extends_vvvvvxx)) if (isSet(class_extends_vvvvvws))
{ {
return true; return true;
} }
return false; return false;
} }
// the vvvvvxx Some function // the vvvvvws Some function
function joomla_plugin_group_vvvvvxx_SomeFunc(joomla_plugin_group_vvvvvxx) function joomla_plugin_group_vvvvvws_SomeFunc(joomla_plugin_group_vvvvvws)
{ {
// set the function logic // set the function logic
if (isSet(joomla_plugin_group_vvvvvxx)) if (isSet(joomla_plugin_group_vvvvvws))
{ {
return true; return true;
} }
return false; return false;
} }
// the vvvvvxy function // the vvvvvwt function
function vvvvvxy(joomla_plugin_group_vvvvvxy,class_extends_vvvvvxy) function vvvvvwt(joomla_plugin_group_vvvvvwt,class_extends_vvvvvwt)
{ {
if (isSet(joomla_plugin_group_vvvvvxy) && joomla_plugin_group_vvvvvxy.constructor !== Array) if (isSet(joomla_plugin_group_vvvvvwt) && joomla_plugin_group_vvvvvwt.constructor !== Array)
{ {
var temp_vvvvvxy = joomla_plugin_group_vvvvvxy; var temp_vvvvvwt = joomla_plugin_group_vvvvvwt;
var joomla_plugin_group_vvvvvxy = []; var joomla_plugin_group_vvvvvwt = [];
joomla_plugin_group_vvvvvxy.push(temp_vvvvvxy); joomla_plugin_group_vvvvvwt.push(temp_vvvvvwt);
} }
else if (!isSet(joomla_plugin_group_vvvvvxy)) else if (!isSet(joomla_plugin_group_vvvvvwt))
{ {
var joomla_plugin_group_vvvvvxy = []; var joomla_plugin_group_vvvvvwt = [];
} }
var joomla_plugin_group = joomla_plugin_group_vvvvvxy.some(joomla_plugin_group_vvvvvxy_SomeFunc); var joomla_plugin_group = joomla_plugin_group_vvvvvwt.some(joomla_plugin_group_vvvvvwt_SomeFunc);
if (isSet(class_extends_vvvvvxy) && class_extends_vvvvvxy.constructor !== Array) if (isSet(class_extends_vvvvvwt) && class_extends_vvvvvwt.constructor !== Array)
{ {
var temp_vvvvvxy = class_extends_vvvvvxy; var temp_vvvvvwt = class_extends_vvvvvwt;
var class_extends_vvvvvxy = []; var class_extends_vvvvvwt = [];
class_extends_vvvvvxy.push(temp_vvvvvxy); class_extends_vvvvvwt.push(temp_vvvvvwt);
} }
else if (!isSet(class_extends_vvvvvxy)) else if (!isSet(class_extends_vvvvvwt))
{ {
var class_extends_vvvvvxy = []; var class_extends_vvvvvwt = [];
} }
var class_extends = class_extends_vvvvvxy.some(class_extends_vvvvvxy_SomeFunc); var class_extends = class_extends_vvvvvwt.some(class_extends_vvvvvwt_SomeFunc);
// set this function logic // set this function logic
@ -187,42 +143,42 @@ function vvvvvxy(joomla_plugin_group_vvvvvxy,class_extends_vvvvvxy)
} }
} }
// the vvvvvxy Some function // the vvvvvwt Some function
function joomla_plugin_group_vvvvvxy_SomeFunc(joomla_plugin_group_vvvvvxy) function joomla_plugin_group_vvvvvwt_SomeFunc(joomla_plugin_group_vvvvvwt)
{ {
// set the function logic // set the function logic
if (isSet(joomla_plugin_group_vvvvvxy)) if (isSet(joomla_plugin_group_vvvvvwt))
{ {
return true; return true;
} }
return false; return false;
} }
// the vvvvvxy Some function // the vvvvvwt Some function
function class_extends_vvvvvxy_SomeFunc(class_extends_vvvvvxy) function class_extends_vvvvvwt_SomeFunc(class_extends_vvvvvwt)
{ {
// set the function logic // set the function logic
if (isSet(class_extends_vvvvvxy)) if (isSet(class_extends_vvvvvwt))
{ {
return true; return true;
} }
return false; return false;
} }
// the vvvvvxz function // the vvvvvwu function
function vvvvvxz(class_extends_vvvvvxz) function vvvvvwu(class_extends_vvvvvwu)
{ {
if (isSet(class_extends_vvvvvxz) && class_extends_vvvvvxz.constructor !== Array) if (isSet(class_extends_vvvvvwu) && class_extends_vvvvvwu.constructor !== Array)
{ {
var temp_vvvvvxz = class_extends_vvvvvxz; var temp_vvvvvwu = class_extends_vvvvvwu;
var class_extends_vvvvvxz = []; var class_extends_vvvvvwu = [];
class_extends_vvvvvxz.push(temp_vvvvvxz); class_extends_vvvvvwu.push(temp_vvvvvwu);
} }
else if (!isSet(class_extends_vvvvvxz)) else if (!isSet(class_extends_vvvvvwu))
{ {
var class_extends_vvvvvxz = []; var class_extends_vvvvvwu = [];
} }
var class_extends = class_extends_vvvvvxz.some(class_extends_vvvvvxz_SomeFunc); var class_extends = class_extends_vvvvvwu.some(class_extends_vvvvvwu_SomeFunc);
// set this function logic // set this function logic
@ -236,120 +192,22 @@ function vvvvvxz(class_extends_vvvvvxz)
} }
} }
// the vvvvvxz Some function // the vvvvvwu Some function
function class_extends_vvvvvxz_SomeFunc(class_extends_vvvvvxz) function class_extends_vvvvvwu_SomeFunc(class_extends_vvvvvwu)
{ {
// set the function logic // set the function logic
if (isSet(class_extends_vvvvvxz)) if (isSet(class_extends_vvvvvwu))
{ {
return true; return true;
} }
return false; return false;
} }
// the vvvvvyb function // the vvvvvww function
function vvvvvyb(add_php_script_construct_vvvvvyb) function vvvvvww(update_server_target_vvvvvww,add_update_server_vvvvvww)
{ {
// set the function logic // set the function logic
if (add_php_script_construct_vvvvvyb == 1) if (update_server_target_vvvvvww == 1 && add_update_server_vvvvvww == 1)
{
jQuery('#jform_php_script_construct-lbl').closest('.control-group').show();
}
else
{
jQuery('#jform_php_script_construct-lbl').closest('.control-group').hide();
}
}
// the vvvvvyc function
function vvvvvyc(add_php_preflight_install_vvvvvyc)
{
// set the function logic
if (add_php_preflight_install_vvvvvyc == 1)
{
jQuery('#jform_php_preflight_install-lbl').closest('.control-group').show();
}
else
{
jQuery('#jform_php_preflight_install-lbl').closest('.control-group').hide();
}
}
// the vvvvvyd function
function vvvvvyd(add_php_preflight_update_vvvvvyd)
{
// set the function logic
if (add_php_preflight_update_vvvvvyd == 1)
{
jQuery('#jform_php_preflight_update-lbl').closest('.control-group').show();
}
else
{
jQuery('#jform_php_preflight_update-lbl').closest('.control-group').hide();
}
}
// the vvvvvye function
function vvvvvye(add_php_preflight_uninstall_vvvvvye)
{
// set the function logic
if (add_php_preflight_uninstall_vvvvvye == 1)
{
jQuery('#jform_php_preflight_uninstall-lbl').closest('.control-group').show();
}
else
{
jQuery('#jform_php_preflight_uninstall-lbl').closest('.control-group').hide();
}
}
// the vvvvvyf function
function vvvvvyf(add_php_postflight_install_vvvvvyf)
{
// set the function logic
if (add_php_postflight_install_vvvvvyf == 1)
{
jQuery('#jform_php_postflight_install-lbl').closest('.control-group').show();
}
else
{
jQuery('#jform_php_postflight_install-lbl').closest('.control-group').hide();
}
}
// the vvvvvyg function
function vvvvvyg(add_php_postflight_update_vvvvvyg)
{
// set the function logic
if (add_php_postflight_update_vvvvvyg == 1)
{
jQuery('#jform_php_postflight_update-lbl').closest('.control-group').show();
}
else
{
jQuery('#jform_php_postflight_update-lbl').closest('.control-group').hide();
}
}
// the vvvvvyh function
function vvvvvyh(add_php_method_uninstall_vvvvvyh)
{
// set the function logic
if (add_php_method_uninstall_vvvvvyh == 1)
{
jQuery('#jform_php_method_uninstall-lbl').closest('.control-group').show();
}
else
{
jQuery('#jform_php_method_uninstall-lbl').closest('.control-group').hide();
}
}
// the vvvvvyi function
function vvvvvyi(update_server_target_vvvvvyi,add_update_server_vvvvvyi)
{
// set the function logic
if (update_server_target_vvvvvyi == 1 && add_update_server_vvvvvyi == 1)
{ {
jQuery('#jform_update_server').closest('.control-group').show(); jQuery('#jform_update_server').closest('.control-group').show();
jQuery('.note_update_server_note_ftp').closest('.control-group').show(); jQuery('.note_update_server_note_ftp').closest('.control-group').show();
@ -361,11 +219,11 @@ function vvvvvyi(update_server_target_vvvvvyi,add_update_server_vvvvvyi)
} }
} }
// the vvvvvyj function // the vvvvvwx function
function vvvvvyj(add_update_server_vvvvvyj,update_server_target_vvvvvyj) function vvvvvwx(add_update_server_vvvvvwx,update_server_target_vvvvvwx)
{ {
// set the function logic // set the function logic
if (add_update_server_vvvvvyj == 1 && update_server_target_vvvvvyj == 1) if (add_update_server_vvvvvwx == 1 && update_server_target_vvvvvwx == 1)
{ {
jQuery('#jform_update_server').closest('.control-group').show(); jQuery('#jform_update_server').closest('.control-group').show();
jQuery('.note_update_server_note_ftp').closest('.control-group').show(); jQuery('.note_update_server_note_ftp').closest('.control-group').show();
@ -377,11 +235,11 @@ function vvvvvyj(add_update_server_vvvvvyj,update_server_target_vvvvvyj)
} }
} }
// the vvvvvyk function // the vvvvvwy function
function vvvvvyk(update_server_target_vvvvvyk,add_update_server_vvvvvyk) function vvvvvwy(update_server_target_vvvvvwy,add_update_server_vvvvvwy)
{ {
// set the function logic // set the function logic
if (update_server_target_vvvvvyk == 2 && add_update_server_vvvvvyk == 1) if (update_server_target_vvvvvwy == 2 && add_update_server_vvvvvwy == 1)
{ {
jQuery('.note_update_server_note_zip').closest('.control-group').show(); jQuery('.note_update_server_note_zip').closest('.control-group').show();
} }
@ -391,11 +249,11 @@ function vvvvvyk(update_server_target_vvvvvyk,add_update_server_vvvvvyk)
} }
} }
// the vvvvvym function // the vvvvvxa function
function vvvvvym(update_server_target_vvvvvym,add_update_server_vvvvvym) function vvvvvxa(update_server_target_vvvvvxa,add_update_server_vvvvvxa)
{ {
// set the function logic // set the function logic
if (update_server_target_vvvvvym == 3 && add_update_server_vvvvvym == 1) if (update_server_target_vvvvvxa == 3 && add_update_server_vvvvvxa == 1)
{ {
jQuery('.note_update_server_note_other').closest('.control-group').show(); jQuery('.note_update_server_note_other').closest('.control-group').show();
} }
@ -405,186 +263,6 @@ function vvvvvym(update_server_target_vvvvvym,add_update_server_vvvvvym)
} }
} }
// the vvvvvyo function
function vvvvvyo(add_update_server_vvvvvyo)
{
// set the function logic
if (add_update_server_vvvvvyo == 1)
{
jQuery('#jform_update_server_target').closest('.control-group').show();
// add required attribute to update_server_target field
if (jform_vvvvvyovwg_required)
{
updateFieldRequired('update_server_target',0);
jQuery('#jform_update_server_target').prop('required','required');
jQuery('#jform_update_server_target').attr('aria-required',true);
jQuery('#jform_update_server_target').addClass('required');
jform_vvvvvyovwg_required = false;
}
}
else
{
jQuery('#jform_update_server_target').closest('.control-group').hide();
// remove required attribute from update_server_target field
if (!jform_vvvvvyovwg_required)
{
updateFieldRequired('update_server_target',1);
jQuery('#jform_update_server_target').removeAttr('required');
jQuery('#jform_update_server_target').removeAttr('aria-required');
jQuery('#jform_update_server_target').removeClass('required');
jform_vvvvvyovwg_required = true;
}
}
}
// the vvvvvyp function
function vvvvvyp(add_sql_vvvvvyp)
{
// set the function logic
if (add_sql_vvvvvyp == 1)
{
jQuery('#jform_sql').closest('.control-group').show();
// add required attribute to sql field
if (jform_vvvvvypvwh_required)
{
updateFieldRequired('sql',0);
jQuery('#jform_sql').prop('required','required');
jQuery('#jform_sql').attr('aria-required',true);
jQuery('#jform_sql').addClass('required');
jform_vvvvvypvwh_required = false;
}
}
else
{
jQuery('#jform_sql').closest('.control-group').hide();
// remove required attribute from sql field
if (!jform_vvvvvypvwh_required)
{
updateFieldRequired('sql',1);
jQuery('#jform_sql').removeAttr('required');
jQuery('#jform_sql').removeAttr('aria-required');
jQuery('#jform_sql').removeClass('required');
jform_vvvvvypvwh_required = true;
}
}
}
// the vvvvvyq function
function vvvvvyq(add_sql_uninstall_vvvvvyq)
{
// set the function logic
if (add_sql_uninstall_vvvvvyq == 1)
{
jQuery('#jform_sql_uninstall').closest('.control-group').show();
// add required attribute to sql_uninstall field
if (jform_vvvvvyqvwi_required)
{
updateFieldRequired('sql_uninstall',0);
jQuery('#jform_sql_uninstall').prop('required','required');
jQuery('#jform_sql_uninstall').attr('aria-required',true);
jQuery('#jform_sql_uninstall').addClass('required');
jform_vvvvvyqvwi_required = false;
}
}
else
{
jQuery('#jform_sql_uninstall').closest('.control-group').hide();
// remove required attribute from sql_uninstall field
if (!jform_vvvvvyqvwi_required)
{
updateFieldRequired('sql_uninstall',1);
jQuery('#jform_sql_uninstall').removeAttr('required');
jQuery('#jform_sql_uninstall').removeAttr('aria-required');
jQuery('#jform_sql_uninstall').removeClass('required');
jform_vvvvvyqvwi_required = true;
}
}
}
// the vvvvvyr function
function vvvvvyr(add_update_server_vvvvvyr)
{
// set the function logic
if (add_update_server_vvvvvyr == 1)
{
jQuery('#jform_update_server_url').closest('.control-group').show();
}
else
{
jQuery('#jform_update_server_url').closest('.control-group').hide();
}
}
// the vvvvvys function
function vvvvvys(add_sales_server_vvvvvys)
{
// set the function logic
if (add_sales_server_vvvvvys == 1)
{
jQuery('#jform_sales_server').closest('.control-group').show();
}
else
{
jQuery('#jform_sales_server').closest('.control-group').hide();
}
}
// the vvvvvyt function
function vvvvvyt(addreadme_vvvvvyt)
{
// set the function logic
if (addreadme_vvvvvyt == 1)
{
jQuery('#jform_readme-lbl').closest('.control-group').show();
}
else
{
jQuery('#jform_readme-lbl').closest('.control-group').hide();
}
}
// update fields required
function updateFieldRequired(name, status) {
// check if not_required exist
if (document.getElementById('jform_not_required')) {
var not_required = jQuery('#jform_not_required').val().split(",");
if(status == 1)
{
not_required.push(name);
}
else
{
not_required = removeFieldFromNotRequired(not_required, name);
}
jQuery('#jform_not_required').val(fixNotRequiredArray(not_required).toString());
}
}
// remove field from not_required
function removeFieldFromNotRequired(array, what) {
return array.filter(function(element){
return element !== what;
});
}
// fix not required array
function fixNotRequiredArray(array) {
var seen = {};
return removeEmptyFromNotRequiredArray(array).filter(function(item) {
return seen.hasOwnProperty(item) ? false : (seen[item] = true);
});
}
// remove empty from not_required array
function removeEmptyFromNotRequiredArray(array) {
return array.filter(function (el) {
// remove ( 一_一) as well - lol
return (el.length > 0 && '一_一' !== el);
});
}
// the isSet function // the isSet function
function isSet(val) function isSet(val)
{ {

View File

@ -11,15 +11,15 @@
// Initial Script // Initial Script
document.addEventListener('DOMContentLoaded', function() document.addEventListener('DOMContentLoaded', function()
{ {
var add_php_view_vvvvwaz = jQuery("#jform_add_php_view input[type='radio']:checked").val(); var add_php_view_vvvvvzh = jQuery("#jform_add_php_view input[type='radio']:checked").val();
vvvvwaz(add_php_view_vvvvwaz); vvvvvzh(add_php_view_vvvvvzh);
}); });
// the vvvvwaz function // the vvvvvzh function
function vvvvwaz(add_php_view_vvvvwaz) function vvvvvzh(add_php_view_vvvvvzh)
{ {
// set the function logic // set the function logic
if (add_php_view_vvvvwaz == 1) if (add_php_view_vvvvvzh == 1)
{ {
jQuery('#jform_php_view-lbl').closest('.control-group').show(); jQuery('#jform_php_view-lbl').closest('.control-group').show();
} }

View File

@ -9,90 +9,90 @@
*/ */
// Some Global Values // Some Global Values
jform_vvvvwcjvxl_required = false; jform_vvvvwarvxc_required = false;
jform_vvvvwcxvxm_required = false; jform_vvvvwbfvxd_required = false;
jform_vvvvwcxvxn_required = false; jform_vvvvwbfvxe_required = false;
// Initial Script // Initial Script
document.addEventListener('DOMContentLoaded', function() document.addEventListener('DOMContentLoaded', function()
{ {
var how_vvvvwch = jQuery("#jform_how").val(); var how_vvvvwap = jQuery("#jform_how").val();
var target_vvvvwch = jQuery("#jform_target input[type='radio']:checked").val(); var target_vvvvwap = jQuery("#jform_target input[type='radio']:checked").val();
vvvvwch(how_vvvvwch,target_vvvvwch); vvvvwap(how_vvvvwap,target_vvvvwap);
var how_vvvvwcj = jQuery("#jform_how").val(); var how_vvvvwar = jQuery("#jform_how").val();
var target_vvvvwcj = jQuery("#jform_target input[type='radio']:checked").val(); var target_vvvvwar = jQuery("#jform_target input[type='radio']:checked").val();
vvvvwcj(how_vvvvwcj,target_vvvvwcj); vvvvwar(how_vvvvwar,target_vvvvwar);
var how_vvvvwcl = jQuery("#jform_how").val(); var how_vvvvwat = jQuery("#jform_how").val();
var target_vvvvwcl = jQuery("#jform_target input[type='radio']:checked").val(); var target_vvvvwat = jQuery("#jform_target input[type='radio']:checked").val();
vvvvwcl(how_vvvvwcl,target_vvvvwcl); vvvvwat(how_vvvvwat,target_vvvvwat);
var how_vvvvwcn = jQuery("#jform_how").val(); var how_vvvvwav = jQuery("#jform_how").val();
var target_vvvvwcn = jQuery("#jform_target input[type='radio']:checked").val(); var target_vvvvwav = jQuery("#jform_target input[type='radio']:checked").val();
vvvvwcn(how_vvvvwcn,target_vvvvwcn); vvvvwav(how_vvvvwav,target_vvvvwav);
var how_vvvvwcp = jQuery("#jform_how").val(); var how_vvvvwax = jQuery("#jform_how").val();
var target_vvvvwcp = jQuery("#jform_target input[type='radio']:checked").val(); var target_vvvvwax = jQuery("#jform_target input[type='radio']:checked").val();
vvvvwcp(how_vvvvwcp,target_vvvvwcp); vvvvwax(how_vvvvwax,target_vvvvwax);
var target_vvvvwcq = jQuery("#jform_target input[type='radio']:checked").val(); var target_vvvvway = jQuery("#jform_target input[type='radio']:checked").val();
var how_vvvvwcq = jQuery("#jform_how").val(); var how_vvvvway = jQuery("#jform_how").val();
vvvvwcq(target_vvvvwcq,how_vvvvwcq); vvvvway(target_vvvvway,how_vvvvway);
var how_vvvvwcr = jQuery("#jform_how").val(); var how_vvvvwaz = jQuery("#jform_how").val();
var target_vvvvwcr = jQuery("#jform_target input[type='radio']:checked").val(); var target_vvvvwaz = jQuery("#jform_target input[type='radio']:checked").val();
vvvvwcr(how_vvvvwcr,target_vvvvwcr); vvvvwaz(how_vvvvwaz,target_vvvvwaz);
var target_vvvvwcs = jQuery("#jform_target input[type='radio']:checked").val(); var target_vvvvwba = jQuery("#jform_target input[type='radio']:checked").val();
var how_vvvvwcs = jQuery("#jform_how").val(); var how_vvvvwba = jQuery("#jform_how").val();
vvvvwcs(target_vvvvwcs,how_vvvvwcs); vvvvwba(target_vvvvwba,how_vvvvwba);
var how_vvvvwct = jQuery("#jform_how").val(); var how_vvvvwbb = jQuery("#jform_how").val();
var target_vvvvwct = jQuery("#jform_target input[type='radio']:checked").val(); var target_vvvvwbb = jQuery("#jform_target input[type='radio']:checked").val();
vvvvwct(how_vvvvwct,target_vvvvwct); vvvvwbb(how_vvvvwbb,target_vvvvwbb);
var target_vvvvwcu = jQuery("#jform_target input[type='radio']:checked").val(); var target_vvvvwbc = jQuery("#jform_target input[type='radio']:checked").val();
var how_vvvvwcu = jQuery("#jform_how").val(); var how_vvvvwbc = jQuery("#jform_how").val();
vvvvwcu(target_vvvvwcu,how_vvvvwcu); vvvvwbc(target_vvvvwbc,how_vvvvwbc);
var target_vvvvwcv = jQuery("#jform_target input[type='radio']:checked").val(); var target_vvvvwbd = jQuery("#jform_target input[type='radio']:checked").val();
var type_vvvvwcv = jQuery("#jform_type input[type='radio']:checked").val(); var type_vvvvwbd = jQuery("#jform_type input[type='radio']:checked").val();
vvvvwcv(target_vvvvwcv,type_vvvvwcv); vvvvwbd(target_vvvvwbd,type_vvvvwbd);
var target_vvvvwcx = jQuery("#jform_target input[type='radio']:checked").val(); var target_vvvvwbf = jQuery("#jform_target input[type='radio']:checked").val();
vvvvwcx(target_vvvvwcx); vvvvwbf(target_vvvvwbf);
var target_vvvvwcy = jQuery("#jform_target input[type='radio']:checked").val(); var target_vvvvwbg = jQuery("#jform_target input[type='radio']:checked").val();
vvvvwcy(target_vvvvwcy); vvvvwbg(target_vvvvwbg);
}); });
// the vvvvwch function // the vvvvwap function
function vvvvwch(how_vvvvwch,target_vvvvwch) function vvvvwap(how_vvvvwap,target_vvvvwap)
{ {
if (isSet(how_vvvvwch) && how_vvvvwch.constructor !== Array) if (isSet(how_vvvvwap) && how_vvvvwap.constructor !== Array)
{ {
var temp_vvvvwch = how_vvvvwch; var temp_vvvvwap = how_vvvvwap;
var how_vvvvwch = []; var how_vvvvwap = [];
how_vvvvwch.push(temp_vvvvwch); how_vvvvwap.push(temp_vvvvwap);
} }
else if (!isSet(how_vvvvwch)) else if (!isSet(how_vvvvwap))
{ {
var how_vvvvwch = []; var how_vvvvwap = [];
} }
var how = how_vvvvwch.some(how_vvvvwch_SomeFunc); var how = how_vvvvwap.some(how_vvvvwap_SomeFunc);
if (isSet(target_vvvvwch) && target_vvvvwch.constructor !== Array) if (isSet(target_vvvvwap) && target_vvvvwap.constructor !== Array)
{ {
var temp_vvvvwch = target_vvvvwch; var temp_vvvvwap = target_vvvvwap;
var target_vvvvwch = []; var target_vvvvwap = [];
target_vvvvwch.push(temp_vvvvwch); target_vvvvwap.push(temp_vvvvwap);
} }
else if (!isSet(target_vvvvwch)) else if (!isSet(target_vvvvwap))
{ {
var target_vvvvwch = []; var target_vvvvwap = [];
} }
var target = target_vvvvwch.some(target_vvvvwch_SomeFunc); var target = target_vvvvwap.some(target_vvvvwap_SomeFunc);
// set this function logic // set this function logic
@ -106,54 +106,54 @@ function vvvvwch(how_vvvvwch,target_vvvvwch)
} }
} }
// the vvvvwch Some function // the vvvvwap Some function
function how_vvvvwch_SomeFunc(how_vvvvwch) function how_vvvvwap_SomeFunc(how_vvvvwap)
{ {
// set the function logic // set the function logic
if (how_vvvvwch == 2) if (how_vvvvwap == 2)
{ {
return true; return true;
} }
return false; return false;
} }
// the vvvvwch Some function // the vvvvwap Some function
function target_vvvvwch_SomeFunc(target_vvvvwch) function target_vvvvwap_SomeFunc(target_vvvvwap)
{ {
// set the function logic // set the function logic
if (target_vvvvwch == 1) if (target_vvvvwap == 1)
{ {
return true; return true;
} }
return false; return false;
} }
// the vvvvwcj function // the vvvvwar function
function vvvvwcj(how_vvvvwcj,target_vvvvwcj) function vvvvwar(how_vvvvwar,target_vvvvwar)
{ {
if (isSet(how_vvvvwcj) && how_vvvvwcj.constructor !== Array) if (isSet(how_vvvvwar) && how_vvvvwar.constructor !== Array)
{ {
var temp_vvvvwcj = how_vvvvwcj; var temp_vvvvwar = how_vvvvwar;
var how_vvvvwcj = []; var how_vvvvwar = [];
how_vvvvwcj.push(temp_vvvvwcj); how_vvvvwar.push(temp_vvvvwar);
} }
else if (!isSet(how_vvvvwcj)) else if (!isSet(how_vvvvwar))
{ {
var how_vvvvwcj = []; var how_vvvvwar = [];
} }
var how = how_vvvvwcj.some(how_vvvvwcj_SomeFunc); var how = how_vvvvwar.some(how_vvvvwar_SomeFunc);
if (isSet(target_vvvvwcj) && target_vvvvwcj.constructor !== Array) if (isSet(target_vvvvwar) && target_vvvvwar.constructor !== Array)
{ {
var temp_vvvvwcj = target_vvvvwcj; var temp_vvvvwar = target_vvvvwar;
var target_vvvvwcj = []; var target_vvvvwar = [];
target_vvvvwcj.push(temp_vvvvwcj); target_vvvvwar.push(temp_vvvvwar);
} }
else if (!isSet(target_vvvvwcj)) else if (!isSet(target_vvvvwar))
{ {
var target_vvvvwcj = []; var target_vvvvwar = [];
} }
var target = target_vvvvwcj.some(target_vvvvwcj_SomeFunc); var target = target_vvvvwar.some(target_vvvvwar_SomeFunc);
// set this function logic // set this function logic
@ -161,78 +161,78 @@ function vvvvwcj(how_vvvvwcj,target_vvvvwcj)
{ {
jQuery('#jform_php_setdocument').closest('.control-group').show(); jQuery('#jform_php_setdocument').closest('.control-group').show();
// add required attribute to php_setdocument field // add required attribute to php_setdocument field
if (jform_vvvvwcjvxl_required) if (jform_vvvvwarvxc_required)
{ {
updateFieldRequired('php_setdocument',0); updateFieldRequired('php_setdocument',0);
jQuery('#jform_php_setdocument').prop('required','required'); jQuery('#jform_php_setdocument').prop('required','required');
jQuery('#jform_php_setdocument').attr('aria-required',true); jQuery('#jform_php_setdocument').attr('aria-required',true);
jQuery('#jform_php_setdocument').addClass('required'); jQuery('#jform_php_setdocument').addClass('required');
jform_vvvvwcjvxl_required = false; jform_vvvvwarvxc_required = false;
} }
} }
else else
{ {
jQuery('#jform_php_setdocument').closest('.control-group').hide(); jQuery('#jform_php_setdocument').closest('.control-group').hide();
// remove required attribute from php_setdocument field // remove required attribute from php_setdocument field
if (!jform_vvvvwcjvxl_required) if (!jform_vvvvwarvxc_required)
{ {
updateFieldRequired('php_setdocument',1); updateFieldRequired('php_setdocument',1);
jQuery('#jform_php_setdocument').removeAttr('required'); jQuery('#jform_php_setdocument').removeAttr('required');
jQuery('#jform_php_setdocument').removeAttr('aria-required'); jQuery('#jform_php_setdocument').removeAttr('aria-required');
jQuery('#jform_php_setdocument').removeClass('required'); jQuery('#jform_php_setdocument').removeClass('required');
jform_vvvvwcjvxl_required = true; jform_vvvvwarvxc_required = true;
} }
} }
} }
// the vvvvwcj Some function // the vvvvwar Some function
function how_vvvvwcj_SomeFunc(how_vvvvwcj) function how_vvvvwar_SomeFunc(how_vvvvwar)
{ {
// set the function logic // set the function logic
if (how_vvvvwcj == 3) if (how_vvvvwar == 3)
{ {
return true; return true;
} }
return false; return false;
} }
// the vvvvwcj Some function // the vvvvwar Some function
function target_vvvvwcj_SomeFunc(target_vvvvwcj) function target_vvvvwar_SomeFunc(target_vvvvwar)
{ {
// set the function logic // set the function logic
if (target_vvvvwcj == 1) if (target_vvvvwar == 1)
{ {
return true; return true;
} }
return false; return false;
} }
// the vvvvwcl function // the vvvvwat function
function vvvvwcl(how_vvvvwcl,target_vvvvwcl) function vvvvwat(how_vvvvwat,target_vvvvwat)
{ {
if (isSet(how_vvvvwcl) && how_vvvvwcl.constructor !== Array) if (isSet(how_vvvvwat) && how_vvvvwat.constructor !== Array)
{ {
var temp_vvvvwcl = how_vvvvwcl; var temp_vvvvwat = how_vvvvwat;
var how_vvvvwcl = []; var how_vvvvwat = [];
how_vvvvwcl.push(temp_vvvvwcl); how_vvvvwat.push(temp_vvvvwat);
} }
else if (!isSet(how_vvvvwcl)) else if (!isSet(how_vvvvwat))
{ {
var how_vvvvwcl = []; var how_vvvvwat = [];
} }
var how = how_vvvvwcl.some(how_vvvvwcl_SomeFunc); var how = how_vvvvwat.some(how_vvvvwat_SomeFunc);
if (isSet(target_vvvvwcl) && target_vvvvwcl.constructor !== Array) if (isSet(target_vvvvwat) && target_vvvvwat.constructor !== Array)
{ {
var temp_vvvvwcl = target_vvvvwcl; var temp_vvvvwat = target_vvvvwat;
var target_vvvvwcl = []; var target_vvvvwat = [];
target_vvvvwcl.push(temp_vvvvwcl); target_vvvvwat.push(temp_vvvvwat);
} }
else if (!isSet(target_vvvvwcl)) else if (!isSet(target_vvvvwat))
{ {
var target_vvvvwcl = []; var target_vvvvwat = [];
} }
var target = target_vvvvwcl.some(target_vvvvwcl_SomeFunc); var target = target_vvvvwat.some(target_vvvvwat_SomeFunc);
// set this function logic // set this function logic
@ -246,54 +246,54 @@ function vvvvwcl(how_vvvvwcl,target_vvvvwcl)
} }
} }
// the vvvvwcl Some function // the vvvvwat Some function
function how_vvvvwcl_SomeFunc(how_vvvvwcl) function how_vvvvwat_SomeFunc(how_vvvvwat)
{ {
// set the function logic // set the function logic
if (how_vvvvwcl == 2 || how_vvvvwcl == 3) if (how_vvvvwat == 2 || how_vvvvwat == 3)
{ {
return true; return true;
} }
return false; return false;
} }
// the vvvvwcl Some function // the vvvvwat Some function
function target_vvvvwcl_SomeFunc(target_vvvvwcl) function target_vvvvwat_SomeFunc(target_vvvvwat)
{ {
// set the function logic // set the function logic
if (target_vvvvwcl == 1) if (target_vvvvwat == 1)
{ {
return true; return true;
} }
return false; return false;
} }
// the vvvvwcn function // the vvvvwav function
function vvvvwcn(how_vvvvwcn,target_vvvvwcn) function vvvvwav(how_vvvvwav,target_vvvvwav)
{ {
if (isSet(how_vvvvwcn) && how_vvvvwcn.constructor !== Array) if (isSet(how_vvvvwav) && how_vvvvwav.constructor !== Array)
{ {
var temp_vvvvwcn = how_vvvvwcn; var temp_vvvvwav = how_vvvvwav;
var how_vvvvwcn = []; var how_vvvvwav = [];
how_vvvvwcn.push(temp_vvvvwcn); how_vvvvwav.push(temp_vvvvwav);
} }
else if (!isSet(how_vvvvwcn)) else if (!isSet(how_vvvvwav))
{ {
var how_vvvvwcn = []; var how_vvvvwav = [];
} }
var how = how_vvvvwcn.some(how_vvvvwcn_SomeFunc); var how = how_vvvvwav.some(how_vvvvwav_SomeFunc);
if (isSet(target_vvvvwcn) && target_vvvvwcn.constructor !== Array) if (isSet(target_vvvvwav) && target_vvvvwav.constructor !== Array)
{ {
var temp_vvvvwcn = target_vvvvwcn; var temp_vvvvwav = target_vvvvwav;
var target_vvvvwcn = []; var target_vvvvwav = [];
target_vvvvwcn.push(temp_vvvvwcn); target_vvvvwav.push(temp_vvvvwav);
} }
else if (!isSet(target_vvvvwcn)) else if (!isSet(target_vvvvwav))
{ {
var target_vvvvwcn = []; var target_vvvvwav = [];
} }
var target = target_vvvvwcn.some(target_vvvvwcn_SomeFunc); var target = target_vvvvwav.some(target_vvvvwav_SomeFunc);
// set this function logic // set this function logic
@ -307,54 +307,54 @@ function vvvvwcn(how_vvvvwcn,target_vvvvwcn)
} }
} }
// the vvvvwcn Some function // the vvvvwav Some function
function how_vvvvwcn_SomeFunc(how_vvvvwcn) function how_vvvvwav_SomeFunc(how_vvvvwav)
{ {
// set the function logic // set the function logic
if (how_vvvvwcn == 1 || how_vvvvwcn == 2 || how_vvvvwcn == 3) if (how_vvvvwav == 1 || how_vvvvwav == 2 || how_vvvvwav == 3)
{ {
return true; return true;
} }
return false; return false;
} }
// the vvvvwcn Some function // the vvvvwav Some function
function target_vvvvwcn_SomeFunc(target_vvvvwcn) function target_vvvvwav_SomeFunc(target_vvvvwav)
{ {
// set the function logic // set the function logic
if (target_vvvvwcn == 1) if (target_vvvvwav == 1)
{ {
return true; return true;
} }
return false; return false;
} }
// the vvvvwcp function // the vvvvwax function
function vvvvwcp(how_vvvvwcp,target_vvvvwcp) function vvvvwax(how_vvvvwax,target_vvvvwax)
{ {
if (isSet(how_vvvvwcp) && how_vvvvwcp.constructor !== Array) if (isSet(how_vvvvwax) && how_vvvvwax.constructor !== Array)
{ {
var temp_vvvvwcp = how_vvvvwcp; var temp_vvvvwax = how_vvvvwax;
var how_vvvvwcp = []; var how_vvvvwax = [];
how_vvvvwcp.push(temp_vvvvwcp); how_vvvvwax.push(temp_vvvvwax);
} }
else if (!isSet(how_vvvvwcp)) else if (!isSet(how_vvvvwax))
{ {
var how_vvvvwcp = []; var how_vvvvwax = [];
} }
var how = how_vvvvwcp.some(how_vvvvwcp_SomeFunc); var how = how_vvvvwax.some(how_vvvvwax_SomeFunc);
if (isSet(target_vvvvwcp) && target_vvvvwcp.constructor !== Array) if (isSet(target_vvvvwax) && target_vvvvwax.constructor !== Array)
{ {
var temp_vvvvwcp = target_vvvvwcp; var temp_vvvvwax = target_vvvvwax;
var target_vvvvwcp = []; var target_vvvvwax = [];
target_vvvvwcp.push(temp_vvvvwcp); target_vvvvwax.push(temp_vvvvwax);
} }
else if (!isSet(target_vvvvwcp)) else if (!isSet(target_vvvvwax))
{ {
var target_vvvvwcp = []; var target_vvvvwax = [];
} }
var target = target_vvvvwcp.some(target_vvvvwcp_SomeFunc); var target = target_vvvvwax.some(target_vvvvwax_SomeFunc);
// set this function logic // set this function logic
@ -372,54 +372,54 @@ function vvvvwcp(how_vvvvwcp,target_vvvvwcp)
} }
} }
// the vvvvwcp Some function // the vvvvwax Some function
function how_vvvvwcp_SomeFunc(how_vvvvwcp) function how_vvvvwax_SomeFunc(how_vvvvwax)
{ {
// set the function logic // set the function logic
if (how_vvvvwcp == 0) if (how_vvvvwax == 0)
{ {
return true; return true;
} }
return false; return false;
} }
// the vvvvwcp Some function // the vvvvwax Some function
function target_vvvvwcp_SomeFunc(target_vvvvwcp) function target_vvvvwax_SomeFunc(target_vvvvwax)
{ {
// set the function logic // set the function logic
if (target_vvvvwcp == 1) if (target_vvvvwax == 1)
{ {
return true; return true;
} }
return false; return false;
} }
// the vvvvwcq function // the vvvvway function
function vvvvwcq(target_vvvvwcq,how_vvvvwcq) function vvvvway(target_vvvvway,how_vvvvway)
{ {
if (isSet(target_vvvvwcq) && target_vvvvwcq.constructor !== Array) if (isSet(target_vvvvway) && target_vvvvway.constructor !== Array)
{ {
var temp_vvvvwcq = target_vvvvwcq; var temp_vvvvway = target_vvvvway;
var target_vvvvwcq = []; var target_vvvvway = [];
target_vvvvwcq.push(temp_vvvvwcq); target_vvvvway.push(temp_vvvvway);
} }
else if (!isSet(target_vvvvwcq)) else if (!isSet(target_vvvvway))
{ {
var target_vvvvwcq = []; var target_vvvvway = [];
} }
var target = target_vvvvwcq.some(target_vvvvwcq_SomeFunc); var target = target_vvvvway.some(target_vvvvway_SomeFunc);
if (isSet(how_vvvvwcq) && how_vvvvwcq.constructor !== Array) if (isSet(how_vvvvway) && how_vvvvway.constructor !== Array)
{ {
var temp_vvvvwcq = how_vvvvwcq; var temp_vvvvway = how_vvvvway;
var how_vvvvwcq = []; var how_vvvvway = [];
how_vvvvwcq.push(temp_vvvvwcq); how_vvvvway.push(temp_vvvvway);
} }
else if (!isSet(how_vvvvwcq)) else if (!isSet(how_vvvvway))
{ {
var how_vvvvwcq = []; var how_vvvvway = [];
} }
var how = how_vvvvwcq.some(how_vvvvwcq_SomeFunc); var how = how_vvvvway.some(how_vvvvway_SomeFunc);
// set this function logic // set this function logic
@ -437,54 +437,54 @@ function vvvvwcq(target_vvvvwcq,how_vvvvwcq)
} }
} }
// the vvvvwcq Some function // the vvvvway Some function
function target_vvvvwcq_SomeFunc(target_vvvvwcq) function target_vvvvway_SomeFunc(target_vvvvway)
{ {
// set the function logic // set the function logic
if (target_vvvvwcq == 1) if (target_vvvvway == 1)
{ {
return true; return true;
} }
return false; return false;
} }
// the vvvvwcq Some function // the vvvvway Some function
function how_vvvvwcq_SomeFunc(how_vvvvwcq) function how_vvvvway_SomeFunc(how_vvvvway)
{ {
// set the function logic // set the function logic
if (how_vvvvwcq == 0) if (how_vvvvway == 0)
{ {
return true; return true;
} }
return false; return false;
} }
// the vvvvwcr function // the vvvvwaz function
function vvvvwcr(how_vvvvwcr,target_vvvvwcr) function vvvvwaz(how_vvvvwaz,target_vvvvwaz)
{ {
if (isSet(how_vvvvwcr) && how_vvvvwcr.constructor !== Array) if (isSet(how_vvvvwaz) && how_vvvvwaz.constructor !== Array)
{ {
var temp_vvvvwcr = how_vvvvwcr; var temp_vvvvwaz = how_vvvvwaz;
var how_vvvvwcr = []; var how_vvvvwaz = [];
how_vvvvwcr.push(temp_vvvvwcr); how_vvvvwaz.push(temp_vvvvwaz);
} }
else if (!isSet(how_vvvvwcr)) else if (!isSet(how_vvvvwaz))
{ {
var how_vvvvwcr = []; var how_vvvvwaz = [];
} }
var how = how_vvvvwcr.some(how_vvvvwcr_SomeFunc); var how = how_vvvvwaz.some(how_vvvvwaz_SomeFunc);
if (isSet(target_vvvvwcr) && target_vvvvwcr.constructor !== Array) if (isSet(target_vvvvwaz) && target_vvvvwaz.constructor !== Array)
{ {
var temp_vvvvwcr = target_vvvvwcr; var temp_vvvvwaz = target_vvvvwaz;
var target_vvvvwcr = []; var target_vvvvwaz = [];
target_vvvvwcr.push(temp_vvvvwcr); target_vvvvwaz.push(temp_vvvvwaz);
} }
else if (!isSet(target_vvvvwcr)) else if (!isSet(target_vvvvwaz))
{ {
var target_vvvvwcr = []; var target_vvvvwaz = [];
} }
var target = target_vvvvwcr.some(target_vvvvwcr_SomeFunc); var target = target_vvvvwaz.some(target_vvvvwaz_SomeFunc);
// set this function logic // set this function logic
@ -500,54 +500,54 @@ function vvvvwcr(how_vvvvwcr,target_vvvvwcr)
} }
} }
// the vvvvwcr Some function // the vvvvwaz Some function
function how_vvvvwcr_SomeFunc(how_vvvvwcr) function how_vvvvwaz_SomeFunc(how_vvvvwaz)
{ {
// set the function logic // set the function logic
if (how_vvvvwcr == 1) if (how_vvvvwaz == 1)
{ {
return true; return true;
} }
return false; return false;
} }
// the vvvvwcr Some function // the vvvvwaz Some function
function target_vvvvwcr_SomeFunc(target_vvvvwcr) function target_vvvvwaz_SomeFunc(target_vvvvwaz)
{ {
// set the function logic // set the function logic
if (target_vvvvwcr == 1) if (target_vvvvwaz == 1)
{ {
return true; return true;
} }
return false; return false;
} }
// the vvvvwcs function // the vvvvwba function
function vvvvwcs(target_vvvvwcs,how_vvvvwcs) function vvvvwba(target_vvvvwba,how_vvvvwba)
{ {
if (isSet(target_vvvvwcs) && target_vvvvwcs.constructor !== Array) if (isSet(target_vvvvwba) && target_vvvvwba.constructor !== Array)
{ {
var temp_vvvvwcs = target_vvvvwcs; var temp_vvvvwba = target_vvvvwba;
var target_vvvvwcs = []; var target_vvvvwba = [];
target_vvvvwcs.push(temp_vvvvwcs); target_vvvvwba.push(temp_vvvvwba);
} }
else if (!isSet(target_vvvvwcs)) else if (!isSet(target_vvvvwba))
{ {
var target_vvvvwcs = []; var target_vvvvwba = [];
} }
var target = target_vvvvwcs.some(target_vvvvwcs_SomeFunc); var target = target_vvvvwba.some(target_vvvvwba_SomeFunc);
if (isSet(how_vvvvwcs) && how_vvvvwcs.constructor !== Array) if (isSet(how_vvvvwba) && how_vvvvwba.constructor !== Array)
{ {
var temp_vvvvwcs = how_vvvvwcs; var temp_vvvvwba = how_vvvvwba;
var how_vvvvwcs = []; var how_vvvvwba = [];
how_vvvvwcs.push(temp_vvvvwcs); how_vvvvwba.push(temp_vvvvwba);
} }
else if (!isSet(how_vvvvwcs)) else if (!isSet(how_vvvvwba))
{ {
var how_vvvvwcs = []; var how_vvvvwba = [];
} }
var how = how_vvvvwcs.some(how_vvvvwcs_SomeFunc); var how = how_vvvvwba.some(how_vvvvwba_SomeFunc);
// set this function logic // set this function logic
@ -563,54 +563,54 @@ function vvvvwcs(target_vvvvwcs,how_vvvvwcs)
} }
} }
// the vvvvwcs Some function // the vvvvwba Some function
function target_vvvvwcs_SomeFunc(target_vvvvwcs) function target_vvvvwba_SomeFunc(target_vvvvwba)
{ {
// set the function logic // set the function logic
if (target_vvvvwcs == 1) if (target_vvvvwba == 1)
{ {
return true; return true;
} }
return false; return false;
} }
// the vvvvwcs Some function // the vvvvwba Some function
function how_vvvvwcs_SomeFunc(how_vvvvwcs) function how_vvvvwba_SomeFunc(how_vvvvwba)
{ {
// set the function logic // set the function logic
if (how_vvvvwcs == 1) if (how_vvvvwba == 1)
{ {
return true; return true;
} }
return false; return false;
} }
// the vvvvwct function // the vvvvwbb function
function vvvvwct(how_vvvvwct,target_vvvvwct) function vvvvwbb(how_vvvvwbb,target_vvvvwbb)
{ {
if (isSet(how_vvvvwct) && how_vvvvwct.constructor !== Array) if (isSet(how_vvvvwbb) && how_vvvvwbb.constructor !== Array)
{ {
var temp_vvvvwct = how_vvvvwct; var temp_vvvvwbb = how_vvvvwbb;
var how_vvvvwct = []; var how_vvvvwbb = [];
how_vvvvwct.push(temp_vvvvwct); how_vvvvwbb.push(temp_vvvvwbb);
} }
else if (!isSet(how_vvvvwct)) else if (!isSet(how_vvvvwbb))
{ {
var how_vvvvwct = []; var how_vvvvwbb = [];
} }
var how = how_vvvvwct.some(how_vvvvwct_SomeFunc); var how = how_vvvvwbb.some(how_vvvvwbb_SomeFunc);
if (isSet(target_vvvvwct) && target_vvvvwct.constructor !== Array) if (isSet(target_vvvvwbb) && target_vvvvwbb.constructor !== Array)
{ {
var temp_vvvvwct = target_vvvvwct; var temp_vvvvwbb = target_vvvvwbb;
var target_vvvvwct = []; var target_vvvvwbb = [];
target_vvvvwct.push(temp_vvvvwct); target_vvvvwbb.push(temp_vvvvwbb);
} }
else if (!isSet(target_vvvvwct)) else if (!isSet(target_vvvvwbb))
{ {
var target_vvvvwct = []; var target_vvvvwbb = [];
} }
var target = target_vvvvwct.some(target_vvvvwct_SomeFunc); var target = target_vvvvwbb.some(target_vvvvwbb_SomeFunc);
// set this function logic // set this function logic
@ -628,54 +628,54 @@ function vvvvwct(how_vvvvwct,target_vvvvwct)
} }
} }
// the vvvvwct Some function // the vvvvwbb Some function
function how_vvvvwct_SomeFunc(how_vvvvwct) function how_vvvvwbb_SomeFunc(how_vvvvwbb)
{ {
// set the function logic // set the function logic
if (how_vvvvwct == 4) if (how_vvvvwbb == 4)
{ {
return true; return true;
} }
return false; return false;
} }
// the vvvvwct Some function // the vvvvwbb Some function
function target_vvvvwct_SomeFunc(target_vvvvwct) function target_vvvvwbb_SomeFunc(target_vvvvwbb)
{ {
// set the function logic // set the function logic
if (target_vvvvwct == 1) if (target_vvvvwbb == 1)
{ {
return true; return true;
} }
return false; return false;
} }
// the vvvvwcu function // the vvvvwbc function
function vvvvwcu(target_vvvvwcu,how_vvvvwcu) function vvvvwbc(target_vvvvwbc,how_vvvvwbc)
{ {
if (isSet(target_vvvvwcu) && target_vvvvwcu.constructor !== Array) if (isSet(target_vvvvwbc) && target_vvvvwbc.constructor !== Array)
{ {
var temp_vvvvwcu = target_vvvvwcu; var temp_vvvvwbc = target_vvvvwbc;
var target_vvvvwcu = []; var target_vvvvwbc = [];
target_vvvvwcu.push(temp_vvvvwcu); target_vvvvwbc.push(temp_vvvvwbc);
} }
else if (!isSet(target_vvvvwcu)) else if (!isSet(target_vvvvwbc))
{ {
var target_vvvvwcu = []; var target_vvvvwbc = [];
} }
var target = target_vvvvwcu.some(target_vvvvwcu_SomeFunc); var target = target_vvvvwbc.some(target_vvvvwbc_SomeFunc);
if (isSet(how_vvvvwcu) && how_vvvvwcu.constructor !== Array) if (isSet(how_vvvvwbc) && how_vvvvwbc.constructor !== Array)
{ {
var temp_vvvvwcu = how_vvvvwcu; var temp_vvvvwbc = how_vvvvwbc;
var how_vvvvwcu = []; var how_vvvvwbc = [];
how_vvvvwcu.push(temp_vvvvwcu); how_vvvvwbc.push(temp_vvvvwbc);
} }
else if (!isSet(how_vvvvwcu)) else if (!isSet(how_vvvvwbc))
{ {
var how_vvvvwcu = []; var how_vvvvwbc = [];
} }
var how = how_vvvvwcu.some(how_vvvvwcu_SomeFunc); var how = how_vvvvwbc.some(how_vvvvwbc_SomeFunc);
// set this function logic // set this function logic
@ -693,33 +693,33 @@ function vvvvwcu(target_vvvvwcu,how_vvvvwcu)
} }
} }
// the vvvvwcu Some function // the vvvvwbc Some function
function target_vvvvwcu_SomeFunc(target_vvvvwcu) function target_vvvvwbc_SomeFunc(target_vvvvwbc)
{ {
// set the function logic // set the function logic
if (target_vvvvwcu == 1) if (target_vvvvwbc == 1)
{ {
return true; return true;
} }
return false; return false;
} }
// the vvvvwcu Some function // the vvvvwbc Some function
function how_vvvvwcu_SomeFunc(how_vvvvwcu) function how_vvvvwbc_SomeFunc(how_vvvvwbc)
{ {
// set the function logic // set the function logic
if (how_vvvvwcu == 4) if (how_vvvvwbc == 4)
{ {
return true; return true;
} }
return false; return false;
} }
// the vvvvwcv function // the vvvvwbd function
function vvvvwcv(target_vvvvwcv,type_vvvvwcv) function vvvvwbd(target_vvvvwbd,type_vvvvwbd)
{ {
// set the function logic // set the function logic
if (target_vvvvwcv == 1 && type_vvvvwcv == 2) if (target_vvvvwbd == 1 && type_vvvvwbd == 2)
{ {
jQuery('#jform_libraries').closest('.control-group').show(); jQuery('#jform_libraries').closest('.control-group').show();
} }
@ -729,63 +729,63 @@ function vvvvwcv(target_vvvvwcv,type_vvvvwcv)
} }
} }
// the vvvvwcx function // the vvvvwbf function
function vvvvwcx(target_vvvvwcx) function vvvvwbf(target_vvvvwbf)
{ {
// set the function logic // set the function logic
if (target_vvvvwcx == 1) if (target_vvvvwbf == 1)
{ {
jQuery('#jform_how').closest('.control-group').show(); jQuery('#jform_how').closest('.control-group').show();
// add required attribute to how field // add required attribute to how field
if (jform_vvvvwcxvxm_required) if (jform_vvvvwbfvxd_required)
{ {
updateFieldRequired('how',0); updateFieldRequired('how',0);
jQuery('#jform_how').prop('required','required'); jQuery('#jform_how').prop('required','required');
jQuery('#jform_how').attr('aria-required',true); jQuery('#jform_how').attr('aria-required',true);
jQuery('#jform_how').addClass('required'); jQuery('#jform_how').addClass('required');
jform_vvvvwcxvxm_required = false; jform_vvvvwbfvxd_required = false;
} }
jQuery('#jform_type').closest('.control-group').show(); jQuery('#jform_type').closest('.control-group').show();
// add required attribute to type field // add required attribute to type field
if (jform_vvvvwcxvxn_required) if (jform_vvvvwbfvxe_required)
{ {
updateFieldRequired('type',0); updateFieldRequired('type',0);
jQuery('#jform_type').prop('required','required'); jQuery('#jform_type').prop('required','required');
jQuery('#jform_type').attr('aria-required',true); jQuery('#jform_type').attr('aria-required',true);
jQuery('#jform_type').addClass('required'); jQuery('#jform_type').addClass('required');
jform_vvvvwcxvxn_required = false; jform_vvvvwbfvxe_required = false;
} }
} }
else else
{ {
jQuery('#jform_how').closest('.control-group').hide(); jQuery('#jform_how').closest('.control-group').hide();
// remove required attribute from how field // remove required attribute from how field
if (!jform_vvvvwcxvxm_required) if (!jform_vvvvwbfvxd_required)
{ {
updateFieldRequired('how',1); updateFieldRequired('how',1);
jQuery('#jform_how').removeAttr('required'); jQuery('#jform_how').removeAttr('required');
jQuery('#jform_how').removeAttr('aria-required'); jQuery('#jform_how').removeAttr('aria-required');
jQuery('#jform_how').removeClass('required'); jQuery('#jform_how').removeClass('required');
jform_vvvvwcxvxm_required = true; jform_vvvvwbfvxd_required = true;
} }
jQuery('#jform_type').closest('.control-group').hide(); jQuery('#jform_type').closest('.control-group').hide();
// remove required attribute from type field // remove required attribute from type field
if (!jform_vvvvwcxvxn_required) if (!jform_vvvvwbfvxe_required)
{ {
updateFieldRequired('type',1); updateFieldRequired('type',1);
jQuery('#jform_type').removeAttr('required'); jQuery('#jform_type').removeAttr('required');
jQuery('#jform_type').removeAttr('aria-required'); jQuery('#jform_type').removeAttr('aria-required');
jQuery('#jform_type').removeClass('required'); jQuery('#jform_type').removeClass('required');
jform_vvvvwcxvxn_required = true; jform_vvvvwbfvxe_required = true;
} }
} }
} }
// the vvvvwcy function // the vvvvwbg function
function vvvvwcy(target_vvvvwcy) function vvvvwbg(target_vvvvwbg)
{ {
// set the function logic // set the function logic
if (target_vvvvwcy == 2) if (target_vvvvwbg == 2)
{ {
jQuery('.note_yes_behaviour_library').closest('.control-group').show(); jQuery('.note_yes_behaviour_library').closest('.control-group').show();
} }

View File

@ -11,15 +11,15 @@
// Initial Script // Initial Script
document.addEventListener('DOMContentLoaded', function() document.addEventListener('DOMContentLoaded', function()
{ {
var add_head_vvvvvyu = jQuery("#jform_add_head input[type='radio']:checked").val(); var add_head_vvvvvxc = jQuery("#jform_add_head input[type='radio']:checked").val();
vvvvvyu(add_head_vvvvvyu); vvvvvxc(add_head_vvvvvxc);
}); });
// the vvvvvyu function // the vvvvvxc function
function vvvvvyu(add_head_vvvvvyu) function vvvvvxc(add_head_vvvvvxc)
{ {
// set the function logic // set the function logic
if (add_head_vvvvvyu == 1) if (add_head_vvvvvxc == 1)
{ {
jQuery('#jform_head-lbl').closest('.control-group').show(); jQuery('#jform_head-lbl').closest('.control-group').show();
} }

View File

@ -9,56 +9,56 @@
*/ */
// Some Global Values // Some Global Values
jform_vvvvwdyvyd_required = false; jform_vvvvwcgvxu_required = false;
jform_vvvvwdyvye_required = false; jform_vvvvwcgvxv_required = false;
jform_vvvvwdyvyf_required = false; jform_vvvvwcgvxw_required = false;
jform_vvvvwdyvyg_required = false; jform_vvvvwcgvxx_required = false;
jform_vvvvwdyvyh_required = false; jform_vvvvwcgvxy_required = false;
jform_vvvvwdzvyi_required = false; jform_vvvvwchvxz_required = false;
jform_vvvvweavyj_required = false; jform_vvvvwcivya_required = false;
jform_vvvvwecvyk_required = false; jform_vvvvwckvyb_required = false;
jform_vvvvweevyl_required = false; jform_vvvvwcmvyc_required = false;
// Initial Script // Initial Script
document.addEventListener('DOMContentLoaded', function() document.addEventListener('DOMContentLoaded', function()
{ {
var protocol_vvvvwdy = jQuery("#jform_protocol").val(); var protocol_vvvvwcg = jQuery("#jform_protocol").val();
vvvvwdy(protocol_vvvvwdy); vvvvwcg(protocol_vvvvwcg);
var protocol_vvvvwdz = jQuery("#jform_protocol").val(); var protocol_vvvvwch = jQuery("#jform_protocol").val();
vvvvwdz(protocol_vvvvwdz); vvvvwch(protocol_vvvvwch);
var protocol_vvvvwea = jQuery("#jform_protocol").val(); var protocol_vvvvwci = jQuery("#jform_protocol").val();
var authentication_vvvvwea = jQuery("#jform_authentication").val(); var authentication_vvvvwci = jQuery("#jform_authentication").val();
vvvvwea(protocol_vvvvwea,authentication_vvvvwea); vvvvwci(protocol_vvvvwci,authentication_vvvvwci);
var protocol_vvvvwec = jQuery("#jform_protocol").val(); var protocol_vvvvwck = jQuery("#jform_protocol").val();
var authentication_vvvvwec = jQuery("#jform_authentication").val(); var authentication_vvvvwck = jQuery("#jform_authentication").val();
vvvvwec(protocol_vvvvwec,authentication_vvvvwec); vvvvwck(protocol_vvvvwck,authentication_vvvvwck);
var protocol_vvvvwee = jQuery("#jform_protocol").val(); var protocol_vvvvwcm = jQuery("#jform_protocol").val();
var authentication_vvvvwee = jQuery("#jform_authentication").val(); var authentication_vvvvwcm = jQuery("#jform_authentication").val();
vvvvwee(protocol_vvvvwee,authentication_vvvvwee); vvvvwcm(protocol_vvvvwcm,authentication_vvvvwcm);
var protocol_vvvvweg = jQuery("#jform_protocol").val(); var protocol_vvvvwco = jQuery("#jform_protocol").val();
var authentication_vvvvweg = jQuery("#jform_authentication").val(); var authentication_vvvvwco = jQuery("#jform_authentication").val();
vvvvweg(protocol_vvvvweg,authentication_vvvvweg); vvvvwco(protocol_vvvvwco,authentication_vvvvwco);
}); });
// the vvvvwdy function // the vvvvwcg function
function vvvvwdy(protocol_vvvvwdy) function vvvvwcg(protocol_vvvvwcg)
{ {
if (isSet(protocol_vvvvwdy) && protocol_vvvvwdy.constructor !== Array) if (isSet(protocol_vvvvwcg) && protocol_vvvvwcg.constructor !== Array)
{ {
var temp_vvvvwdy = protocol_vvvvwdy; var temp_vvvvwcg = protocol_vvvvwcg;
var protocol_vvvvwdy = []; var protocol_vvvvwcg = [];
protocol_vvvvwdy.push(temp_vvvvwdy); protocol_vvvvwcg.push(temp_vvvvwcg);
} }
else if (!isSet(protocol_vvvvwdy)) else if (!isSet(protocol_vvvvwcg))
{ {
var protocol_vvvvwdy = []; var protocol_vvvvwcg = [];
} }
var protocol = protocol_vvvvwdy.some(protocol_vvvvwdy_SomeFunc); var protocol = protocol_vvvvwcg.some(protocol_vvvvwcg_SomeFunc);
// set this function logic // set this function logic
@ -66,137 +66,137 @@ function vvvvwdy(protocol_vvvvwdy)
{ {
jQuery('#jform_authentication').closest('.control-group').show(); jQuery('#jform_authentication').closest('.control-group').show();
// add required attribute to authentication field // add required attribute to authentication field
if (jform_vvvvwdyvyd_required) if (jform_vvvvwcgvxu_required)
{ {
updateFieldRequired('authentication',0); updateFieldRequired('authentication',0);
jQuery('#jform_authentication').prop('required','required'); jQuery('#jform_authentication').prop('required','required');
jQuery('#jform_authentication').attr('aria-required',true); jQuery('#jform_authentication').attr('aria-required',true);
jQuery('#jform_authentication').addClass('required'); jQuery('#jform_authentication').addClass('required');
jform_vvvvwdyvyd_required = false; jform_vvvvwcgvxu_required = false;
} }
jQuery('#jform_host').closest('.control-group').show(); jQuery('#jform_host').closest('.control-group').show();
// add required attribute to host field // add required attribute to host field
if (jform_vvvvwdyvye_required) if (jform_vvvvwcgvxv_required)
{ {
updateFieldRequired('host',0); updateFieldRequired('host',0);
jQuery('#jform_host').prop('required','required'); jQuery('#jform_host').prop('required','required');
jQuery('#jform_host').attr('aria-required',true); jQuery('#jform_host').attr('aria-required',true);
jQuery('#jform_host').addClass('required'); jQuery('#jform_host').addClass('required');
jform_vvvvwdyvye_required = false; jform_vvvvwcgvxv_required = false;
} }
jQuery('#jform_port').closest('.control-group').show(); jQuery('#jform_port').closest('.control-group').show();
// add required attribute to port field // add required attribute to port field
if (jform_vvvvwdyvyf_required) if (jform_vvvvwcgvxw_required)
{ {
updateFieldRequired('port',0); updateFieldRequired('port',0);
jQuery('#jform_port').prop('required','required'); jQuery('#jform_port').prop('required','required');
jQuery('#jform_port').attr('aria-required',true); jQuery('#jform_port').attr('aria-required',true);
jQuery('#jform_port').addClass('required'); jQuery('#jform_port').addClass('required');
jform_vvvvwdyvyf_required = false; jform_vvvvwcgvxw_required = false;
} }
jQuery('#jform_path').closest('.control-group').show(); jQuery('#jform_path').closest('.control-group').show();
// add required attribute to path field // add required attribute to path field
if (jform_vvvvwdyvyg_required) if (jform_vvvvwcgvxx_required)
{ {
updateFieldRequired('path',0); updateFieldRequired('path',0);
jQuery('#jform_path').prop('required','required'); jQuery('#jform_path').prop('required','required');
jQuery('#jform_path').attr('aria-required',true); jQuery('#jform_path').attr('aria-required',true);
jQuery('#jform_path').addClass('required'); jQuery('#jform_path').addClass('required');
jform_vvvvwdyvyg_required = false; jform_vvvvwcgvxx_required = false;
} }
jQuery('.note_ssh_security').closest('.control-group').show(); jQuery('.note_ssh_security').closest('.control-group').show();
jQuery('#jform_username').closest('.control-group').show(); jQuery('#jform_username').closest('.control-group').show();
// add required attribute to username field // add required attribute to username field
if (jform_vvvvwdyvyh_required) if (jform_vvvvwcgvxy_required)
{ {
updateFieldRequired('username',0); updateFieldRequired('username',0);
jQuery('#jform_username').prop('required','required'); jQuery('#jform_username').prop('required','required');
jQuery('#jform_username').attr('aria-required',true); jQuery('#jform_username').attr('aria-required',true);
jQuery('#jform_username').addClass('required'); jQuery('#jform_username').addClass('required');
jform_vvvvwdyvyh_required = false; jform_vvvvwcgvxy_required = false;
} }
} }
else else
{ {
jQuery('#jform_authentication').closest('.control-group').hide(); jQuery('#jform_authentication').closest('.control-group').hide();
// remove required attribute from authentication field // remove required attribute from authentication field
if (!jform_vvvvwdyvyd_required) if (!jform_vvvvwcgvxu_required)
{ {
updateFieldRequired('authentication',1); updateFieldRequired('authentication',1);
jQuery('#jform_authentication').removeAttr('required'); jQuery('#jform_authentication').removeAttr('required');
jQuery('#jform_authentication').removeAttr('aria-required'); jQuery('#jform_authentication').removeAttr('aria-required');
jQuery('#jform_authentication').removeClass('required'); jQuery('#jform_authentication').removeClass('required');
jform_vvvvwdyvyd_required = true; jform_vvvvwcgvxu_required = true;
} }
jQuery('#jform_host').closest('.control-group').hide(); jQuery('#jform_host').closest('.control-group').hide();
// remove required attribute from host field // remove required attribute from host field
if (!jform_vvvvwdyvye_required) if (!jform_vvvvwcgvxv_required)
{ {
updateFieldRequired('host',1); updateFieldRequired('host',1);
jQuery('#jform_host').removeAttr('required'); jQuery('#jform_host').removeAttr('required');
jQuery('#jform_host').removeAttr('aria-required'); jQuery('#jform_host').removeAttr('aria-required');
jQuery('#jform_host').removeClass('required'); jQuery('#jform_host').removeClass('required');
jform_vvvvwdyvye_required = true; jform_vvvvwcgvxv_required = true;
} }
jQuery('#jform_port').closest('.control-group').hide(); jQuery('#jform_port').closest('.control-group').hide();
// remove required attribute from port field // remove required attribute from port field
if (!jform_vvvvwdyvyf_required) if (!jform_vvvvwcgvxw_required)
{ {
updateFieldRequired('port',1); updateFieldRequired('port',1);
jQuery('#jform_port').removeAttr('required'); jQuery('#jform_port').removeAttr('required');
jQuery('#jform_port').removeAttr('aria-required'); jQuery('#jform_port').removeAttr('aria-required');
jQuery('#jform_port').removeClass('required'); jQuery('#jform_port').removeClass('required');
jform_vvvvwdyvyf_required = true; jform_vvvvwcgvxw_required = true;
} }
jQuery('#jform_path').closest('.control-group').hide(); jQuery('#jform_path').closest('.control-group').hide();
// remove required attribute from path field // remove required attribute from path field
if (!jform_vvvvwdyvyg_required) if (!jform_vvvvwcgvxx_required)
{ {
updateFieldRequired('path',1); updateFieldRequired('path',1);
jQuery('#jform_path').removeAttr('required'); jQuery('#jform_path').removeAttr('required');
jQuery('#jform_path').removeAttr('aria-required'); jQuery('#jform_path').removeAttr('aria-required');
jQuery('#jform_path').removeClass('required'); jQuery('#jform_path').removeClass('required');
jform_vvvvwdyvyg_required = true; jform_vvvvwcgvxx_required = true;
} }
jQuery('.note_ssh_security').closest('.control-group').hide(); jQuery('.note_ssh_security').closest('.control-group').hide();
jQuery('#jform_username').closest('.control-group').hide(); jQuery('#jform_username').closest('.control-group').hide();
// remove required attribute from username field // remove required attribute from username field
if (!jform_vvvvwdyvyh_required) if (!jform_vvvvwcgvxy_required)
{ {
updateFieldRequired('username',1); updateFieldRequired('username',1);
jQuery('#jform_username').removeAttr('required'); jQuery('#jform_username').removeAttr('required');
jQuery('#jform_username').removeAttr('aria-required'); jQuery('#jform_username').removeAttr('aria-required');
jQuery('#jform_username').removeClass('required'); jQuery('#jform_username').removeClass('required');
jform_vvvvwdyvyh_required = true; jform_vvvvwcgvxy_required = true;
} }
} }
} }
// the vvvvwdy Some function // the vvvvwcg Some function
function protocol_vvvvwdy_SomeFunc(protocol_vvvvwdy) function protocol_vvvvwcg_SomeFunc(protocol_vvvvwcg)
{ {
// set the function logic // set the function logic
if (protocol_vvvvwdy == 2) if (protocol_vvvvwcg == 2)
{ {
return true; return true;
} }
return false; return false;
} }
// the vvvvwdz function // the vvvvwch function
function vvvvwdz(protocol_vvvvwdz) function vvvvwch(protocol_vvvvwch)
{ {
if (isSet(protocol_vvvvwdz) && protocol_vvvvwdz.constructor !== Array) if (isSet(protocol_vvvvwch) && protocol_vvvvwch.constructor !== Array)
{ {
var temp_vvvvwdz = protocol_vvvvwdz; var temp_vvvvwch = protocol_vvvvwch;
var protocol_vvvvwdz = []; var protocol_vvvvwch = [];
protocol_vvvvwdz.push(temp_vvvvwdz); protocol_vvvvwch.push(temp_vvvvwch);
} }
else if (!isSet(protocol_vvvvwdz)) else if (!isSet(protocol_vvvvwch))
{ {
var protocol_vvvvwdz = []; var protocol_vvvvwch = [];
} }
var protocol = protocol_vvvvwdz.some(protocol_vvvvwdz_SomeFunc); var protocol = protocol_vvvvwch.some(protocol_vvvvwch_SomeFunc);
// set this function logic // set this function logic
@ -205,13 +205,13 @@ function vvvvwdz(protocol_vvvvwdz)
jQuery('.note_ftp_signature').closest('.control-group').show(); jQuery('.note_ftp_signature').closest('.control-group').show();
jQuery('#jform_signature').closest('.control-group').show(); jQuery('#jform_signature').closest('.control-group').show();
// add required attribute to signature field // add required attribute to signature field
if (jform_vvvvwdzvyi_required) if (jform_vvvvwchvxz_required)
{ {
updateFieldRequired('signature',0); updateFieldRequired('signature',0);
jQuery('#jform_signature').prop('required','required'); jQuery('#jform_signature').prop('required','required');
jQuery('#jform_signature').attr('aria-required',true); jQuery('#jform_signature').attr('aria-required',true);
jQuery('#jform_signature').addClass('required'); jQuery('#jform_signature').addClass('required');
jform_vvvvwdzvyi_required = false; jform_vvvvwchvxz_required = false;
} }
} }
else else
@ -219,54 +219,54 @@ function vvvvwdz(protocol_vvvvwdz)
jQuery('.note_ftp_signature').closest('.control-group').hide(); jQuery('.note_ftp_signature').closest('.control-group').hide();
jQuery('#jform_signature').closest('.control-group').hide(); jQuery('#jform_signature').closest('.control-group').hide();
// remove required attribute from signature field // remove required attribute from signature field
if (!jform_vvvvwdzvyi_required) if (!jform_vvvvwchvxz_required)
{ {
updateFieldRequired('signature',1); updateFieldRequired('signature',1);
jQuery('#jform_signature').removeAttr('required'); jQuery('#jform_signature').removeAttr('required');
jQuery('#jform_signature').removeAttr('aria-required'); jQuery('#jform_signature').removeAttr('aria-required');
jQuery('#jform_signature').removeClass('required'); jQuery('#jform_signature').removeClass('required');
jform_vvvvwdzvyi_required = true; jform_vvvvwchvxz_required = true;
} }
} }
} }
// the vvvvwdz Some function // the vvvvwch Some function
function protocol_vvvvwdz_SomeFunc(protocol_vvvvwdz) function protocol_vvvvwch_SomeFunc(protocol_vvvvwch)
{ {
// set the function logic // set the function logic
if (protocol_vvvvwdz == 1) if (protocol_vvvvwch == 1)
{ {
return true; return true;
} }
return false; return false;
} }
// the vvvvwea function // the vvvvwci function
function vvvvwea(protocol_vvvvwea,authentication_vvvvwea) function vvvvwci(protocol_vvvvwci,authentication_vvvvwci)
{ {
if (isSet(protocol_vvvvwea) && protocol_vvvvwea.constructor !== Array) if (isSet(protocol_vvvvwci) && protocol_vvvvwci.constructor !== Array)
{ {
var temp_vvvvwea = protocol_vvvvwea; var temp_vvvvwci = protocol_vvvvwci;
var protocol_vvvvwea = []; var protocol_vvvvwci = [];
protocol_vvvvwea.push(temp_vvvvwea); protocol_vvvvwci.push(temp_vvvvwci);
} }
else if (!isSet(protocol_vvvvwea)) else if (!isSet(protocol_vvvvwci))
{ {
var protocol_vvvvwea = []; var protocol_vvvvwci = [];
} }
var protocol = protocol_vvvvwea.some(protocol_vvvvwea_SomeFunc); var protocol = protocol_vvvvwci.some(protocol_vvvvwci_SomeFunc);
if (isSet(authentication_vvvvwea) && authentication_vvvvwea.constructor !== Array) if (isSet(authentication_vvvvwci) && authentication_vvvvwci.constructor !== Array)
{ {
var temp_vvvvwea = authentication_vvvvwea; var temp_vvvvwci = authentication_vvvvwci;
var authentication_vvvvwea = []; var authentication_vvvvwci = [];
authentication_vvvvwea.push(temp_vvvvwea); authentication_vvvvwci.push(temp_vvvvwci);
} }
else if (!isSet(authentication_vvvvwea)) else if (!isSet(authentication_vvvvwci))
{ {
var authentication_vvvvwea = []; var authentication_vvvvwci = [];
} }
var authentication = authentication_vvvvwea.some(authentication_vvvvwea_SomeFunc); var authentication = authentication_vvvvwci.some(authentication_vvvvwci_SomeFunc);
// set this function logic // set this function logic
@ -274,78 +274,78 @@ function vvvvwea(protocol_vvvvwea,authentication_vvvvwea)
{ {
jQuery('#jform_password').closest('.control-group').show(); jQuery('#jform_password').closest('.control-group').show();
// add required attribute to password field // add required attribute to password field
if (jform_vvvvweavyj_required) if (jform_vvvvwcivya_required)
{ {
updateFieldRequired('password',0); updateFieldRequired('password',0);
jQuery('#jform_password').prop('required','required'); jQuery('#jform_password').prop('required','required');
jQuery('#jform_password').attr('aria-required',true); jQuery('#jform_password').attr('aria-required',true);
jQuery('#jform_password').addClass('required'); jQuery('#jform_password').addClass('required');
jform_vvvvweavyj_required = false; jform_vvvvwcivya_required = false;
} }
} }
else else
{ {
jQuery('#jform_password').closest('.control-group').hide(); jQuery('#jform_password').closest('.control-group').hide();
// remove required attribute from password field // remove required attribute from password field
if (!jform_vvvvweavyj_required) if (!jform_vvvvwcivya_required)
{ {
updateFieldRequired('password',1); updateFieldRequired('password',1);
jQuery('#jform_password').removeAttr('required'); jQuery('#jform_password').removeAttr('required');
jQuery('#jform_password').removeAttr('aria-required'); jQuery('#jform_password').removeAttr('aria-required');
jQuery('#jform_password').removeClass('required'); jQuery('#jform_password').removeClass('required');
jform_vvvvweavyj_required = true; jform_vvvvwcivya_required = true;
} }
} }
} }
// the vvvvwea Some function // the vvvvwci Some function
function protocol_vvvvwea_SomeFunc(protocol_vvvvwea) function protocol_vvvvwci_SomeFunc(protocol_vvvvwci)
{ {
// set the function logic // set the function logic
if (protocol_vvvvwea == 2) if (protocol_vvvvwci == 2)
{ {
return true; return true;
} }
return false; return false;
} }
// the vvvvwea Some function // the vvvvwci Some function
function authentication_vvvvwea_SomeFunc(authentication_vvvvwea) function authentication_vvvvwci_SomeFunc(authentication_vvvvwci)
{ {
// set the function logic // set the function logic
if (authentication_vvvvwea == 1 || authentication_vvvvwea == 3 || authentication_vvvvwea == 5) if (authentication_vvvvwci == 1 || authentication_vvvvwci == 3 || authentication_vvvvwci == 5)
{ {
return true; return true;
} }
return false; return false;
} }
// the vvvvwec function // the vvvvwck function
function vvvvwec(protocol_vvvvwec,authentication_vvvvwec) function vvvvwck(protocol_vvvvwck,authentication_vvvvwck)
{ {
if (isSet(protocol_vvvvwec) && protocol_vvvvwec.constructor !== Array) if (isSet(protocol_vvvvwck) && protocol_vvvvwck.constructor !== Array)
{ {
var temp_vvvvwec = protocol_vvvvwec; var temp_vvvvwck = protocol_vvvvwck;
var protocol_vvvvwec = []; var protocol_vvvvwck = [];
protocol_vvvvwec.push(temp_vvvvwec); protocol_vvvvwck.push(temp_vvvvwck);
} }
else if (!isSet(protocol_vvvvwec)) else if (!isSet(protocol_vvvvwck))
{ {
var protocol_vvvvwec = []; var protocol_vvvvwck = [];
} }
var protocol = protocol_vvvvwec.some(protocol_vvvvwec_SomeFunc); var protocol = protocol_vvvvwck.some(protocol_vvvvwck_SomeFunc);
if (isSet(authentication_vvvvwec) && authentication_vvvvwec.constructor !== Array) if (isSet(authentication_vvvvwck) && authentication_vvvvwck.constructor !== Array)
{ {
var temp_vvvvwec = authentication_vvvvwec; var temp_vvvvwck = authentication_vvvvwck;
var authentication_vvvvwec = []; var authentication_vvvvwck = [];
authentication_vvvvwec.push(temp_vvvvwec); authentication_vvvvwck.push(temp_vvvvwck);
} }
else if (!isSet(authentication_vvvvwec)) else if (!isSet(authentication_vvvvwck))
{ {
var authentication_vvvvwec = []; var authentication_vvvvwck = [];
} }
var authentication = authentication_vvvvwec.some(authentication_vvvvwec_SomeFunc); var authentication = authentication_vvvvwck.some(authentication_vvvvwck_SomeFunc);
// set this function logic // set this function logic
@ -353,78 +353,78 @@ function vvvvwec(protocol_vvvvwec,authentication_vvvvwec)
{ {
jQuery('#jform_private').closest('.control-group').show(); jQuery('#jform_private').closest('.control-group').show();
// add required attribute to private field // add required attribute to private field
if (jform_vvvvwecvyk_required) if (jform_vvvvwckvyb_required)
{ {
updateFieldRequired('private',0); updateFieldRequired('private',0);
jQuery('#jform_private').prop('required','required'); jQuery('#jform_private').prop('required','required');
jQuery('#jform_private').attr('aria-required',true); jQuery('#jform_private').attr('aria-required',true);
jQuery('#jform_private').addClass('required'); jQuery('#jform_private').addClass('required');
jform_vvvvwecvyk_required = false; jform_vvvvwckvyb_required = false;
} }
} }
else else
{ {
jQuery('#jform_private').closest('.control-group').hide(); jQuery('#jform_private').closest('.control-group').hide();
// remove required attribute from private field // remove required attribute from private field
if (!jform_vvvvwecvyk_required) if (!jform_vvvvwckvyb_required)
{ {
updateFieldRequired('private',1); updateFieldRequired('private',1);
jQuery('#jform_private').removeAttr('required'); jQuery('#jform_private').removeAttr('required');
jQuery('#jform_private').removeAttr('aria-required'); jQuery('#jform_private').removeAttr('aria-required');
jQuery('#jform_private').removeClass('required'); jQuery('#jform_private').removeClass('required');
jform_vvvvwecvyk_required = true; jform_vvvvwckvyb_required = true;
} }
} }
} }
// the vvvvwec Some function // the vvvvwck Some function
function protocol_vvvvwec_SomeFunc(protocol_vvvvwec) function protocol_vvvvwck_SomeFunc(protocol_vvvvwck)
{ {
// set the function logic // set the function logic
if (protocol_vvvvwec == 2) if (protocol_vvvvwck == 2)
{ {
return true; return true;
} }
return false; return false;
} }
// the vvvvwec Some function // the vvvvwck Some function
function authentication_vvvvwec_SomeFunc(authentication_vvvvwec) function authentication_vvvvwck_SomeFunc(authentication_vvvvwck)
{ {
// set the function logic // set the function logic
if (authentication_vvvvwec == 2 || authentication_vvvvwec == 3) if (authentication_vvvvwck == 2 || authentication_vvvvwck == 3)
{ {
return true; return true;
} }
return false; return false;
} }
// the vvvvwee function // the vvvvwcm function
function vvvvwee(protocol_vvvvwee,authentication_vvvvwee) function vvvvwcm(protocol_vvvvwcm,authentication_vvvvwcm)
{ {
if (isSet(protocol_vvvvwee) && protocol_vvvvwee.constructor !== Array) if (isSet(protocol_vvvvwcm) && protocol_vvvvwcm.constructor !== Array)
{ {
var temp_vvvvwee = protocol_vvvvwee; var temp_vvvvwcm = protocol_vvvvwcm;
var protocol_vvvvwee = []; var protocol_vvvvwcm = [];
protocol_vvvvwee.push(temp_vvvvwee); protocol_vvvvwcm.push(temp_vvvvwcm);
} }
else if (!isSet(protocol_vvvvwee)) else if (!isSet(protocol_vvvvwcm))
{ {
var protocol_vvvvwee = []; var protocol_vvvvwcm = [];
} }
var protocol = protocol_vvvvwee.some(protocol_vvvvwee_SomeFunc); var protocol = protocol_vvvvwcm.some(protocol_vvvvwcm_SomeFunc);
if (isSet(authentication_vvvvwee) && authentication_vvvvwee.constructor !== Array) if (isSet(authentication_vvvvwcm) && authentication_vvvvwcm.constructor !== Array)
{ {
var temp_vvvvwee = authentication_vvvvwee; var temp_vvvvwcm = authentication_vvvvwcm;
var authentication_vvvvwee = []; var authentication_vvvvwcm = [];
authentication_vvvvwee.push(temp_vvvvwee); authentication_vvvvwcm.push(temp_vvvvwcm);
} }
else if (!isSet(authentication_vvvvwee)) else if (!isSet(authentication_vvvvwcm))
{ {
var authentication_vvvvwee = []; var authentication_vvvvwcm = [];
} }
var authentication = authentication_vvvvwee.some(authentication_vvvvwee_SomeFunc); var authentication = authentication_vvvvwcm.some(authentication_vvvvwcm_SomeFunc);
// set this function logic // set this function logic
@ -432,78 +432,78 @@ function vvvvwee(protocol_vvvvwee,authentication_vvvvwee)
{ {
jQuery('#jform_private_key').closest('.control-group').show(); jQuery('#jform_private_key').closest('.control-group').show();
// add required attribute to private_key field // add required attribute to private_key field
if (jform_vvvvweevyl_required) if (jform_vvvvwcmvyc_required)
{ {
updateFieldRequired('private_key',0); updateFieldRequired('private_key',0);
jQuery('#jform_private_key').prop('required','required'); jQuery('#jform_private_key').prop('required','required');
jQuery('#jform_private_key').attr('aria-required',true); jQuery('#jform_private_key').attr('aria-required',true);
jQuery('#jform_private_key').addClass('required'); jQuery('#jform_private_key').addClass('required');
jform_vvvvweevyl_required = false; jform_vvvvwcmvyc_required = false;
} }
} }
else else
{ {
jQuery('#jform_private_key').closest('.control-group').hide(); jQuery('#jform_private_key').closest('.control-group').hide();
// remove required attribute from private_key field // remove required attribute from private_key field
if (!jform_vvvvweevyl_required) if (!jform_vvvvwcmvyc_required)
{ {
updateFieldRequired('private_key',1); updateFieldRequired('private_key',1);
jQuery('#jform_private_key').removeAttr('required'); jQuery('#jform_private_key').removeAttr('required');
jQuery('#jform_private_key').removeAttr('aria-required'); jQuery('#jform_private_key').removeAttr('aria-required');
jQuery('#jform_private_key').removeClass('required'); jQuery('#jform_private_key').removeClass('required');
jform_vvvvweevyl_required = true; jform_vvvvwcmvyc_required = true;
} }
} }
} }
// the vvvvwee Some function // the vvvvwcm Some function
function protocol_vvvvwee_SomeFunc(protocol_vvvvwee) function protocol_vvvvwcm_SomeFunc(protocol_vvvvwcm)
{ {
// set the function logic // set the function logic
if (protocol_vvvvwee == 2) if (protocol_vvvvwcm == 2)
{ {
return true; return true;
} }
return false; return false;
} }
// the vvvvwee Some function // the vvvvwcm Some function
function authentication_vvvvwee_SomeFunc(authentication_vvvvwee) function authentication_vvvvwcm_SomeFunc(authentication_vvvvwcm)
{ {
// set the function logic // set the function logic
if (authentication_vvvvwee == 4 || authentication_vvvvwee == 5) if (authentication_vvvvwcm == 4 || authentication_vvvvwcm == 5)
{ {
return true; return true;
} }
return false; return false;
} }
// the vvvvweg function // the vvvvwco function
function vvvvweg(protocol_vvvvweg,authentication_vvvvweg) function vvvvwco(protocol_vvvvwco,authentication_vvvvwco)
{ {
if (isSet(protocol_vvvvweg) && protocol_vvvvweg.constructor !== Array) if (isSet(protocol_vvvvwco) && protocol_vvvvwco.constructor !== Array)
{ {
var temp_vvvvweg = protocol_vvvvweg; var temp_vvvvwco = protocol_vvvvwco;
var protocol_vvvvweg = []; var protocol_vvvvwco = [];
protocol_vvvvweg.push(temp_vvvvweg); protocol_vvvvwco.push(temp_vvvvwco);
} }
else if (!isSet(protocol_vvvvweg)) else if (!isSet(protocol_vvvvwco))
{ {
var protocol_vvvvweg = []; var protocol_vvvvwco = [];
} }
var protocol = protocol_vvvvweg.some(protocol_vvvvweg_SomeFunc); var protocol = protocol_vvvvwco.some(protocol_vvvvwco_SomeFunc);
if (isSet(authentication_vvvvweg) && authentication_vvvvweg.constructor !== Array) if (isSet(authentication_vvvvwco) && authentication_vvvvwco.constructor !== Array)
{ {
var temp_vvvvweg = authentication_vvvvweg; var temp_vvvvwco = authentication_vvvvwco;
var authentication_vvvvweg = []; var authentication_vvvvwco = [];
authentication_vvvvweg.push(temp_vvvvweg); authentication_vvvvwco.push(temp_vvvvwco);
} }
else if (!isSet(authentication_vvvvweg)) else if (!isSet(authentication_vvvvwco))
{ {
var authentication_vvvvweg = []; var authentication_vvvvwco = [];
} }
var authentication = authentication_vvvvweg.some(authentication_vvvvweg_SomeFunc); var authentication = authentication_vvvvwco.some(authentication_vvvvwco_SomeFunc);
// set this function logic // set this function logic
@ -517,22 +517,22 @@ function vvvvweg(protocol_vvvvweg,authentication_vvvvweg)
} }
} }
// the vvvvweg Some function // the vvvvwco Some function
function protocol_vvvvweg_SomeFunc(protocol_vvvvweg) function protocol_vvvvwco_SomeFunc(protocol_vvvvwco)
{ {
// set the function logic // set the function logic
if (protocol_vvvvweg == 2) if (protocol_vvvvwco == 2)
{ {
return true; return true;
} }
return false; return false;
} }
// the vvvvweg Some function // the vvvvwco Some function
function authentication_vvvvweg_SomeFunc(authentication_vvvvweg) function authentication_vvvvwco_SomeFunc(authentication_vvvvwco)
{ {
// set the function logic // set the function logic
if (authentication_vvvvweg == 2 || authentication_vvvvweg == 3 || authentication_vvvvweg == 4 || authentication_vvvvweg == 5) if (authentication_vvvvwco == 2 || authentication_vvvvwco == 3 || authentication_vvvvwco == 4 || authentication_vvvvwco == 5)
{ {
return true; return true;
} }

View File

@ -11,45 +11,45 @@
// Initial Script // Initial Script
document.addEventListener('DOMContentLoaded', function() document.addEventListener('DOMContentLoaded', function()
{ {
var add_php_view_vvvvwan = jQuery("#jform_add_php_view input[type='radio']:checked").val(); var add_php_view_vvvvvyv = jQuery("#jform_add_php_view input[type='radio']:checked").val();
vvvvwan(add_php_view_vvvvwan); vvvvvyv(add_php_view_vvvvvyv);
var add_php_jview_display_vvvvwao = jQuery("#jform_add_php_jview_display input[type='radio']:checked").val(); var add_php_jview_display_vvvvvyw = jQuery("#jform_add_php_jview_display input[type='radio']:checked").val();
vvvvwao(add_php_jview_display_vvvvwao); vvvvvyw(add_php_jview_display_vvvvvyw);
var add_php_jview_vvvvwap = jQuery("#jform_add_php_jview input[type='radio']:checked").val(); var add_php_jview_vvvvvyx = jQuery("#jform_add_php_jview input[type='radio']:checked").val();
vvvvwap(add_php_jview_vvvvwap); vvvvvyx(add_php_jview_vvvvvyx);
var add_php_document_vvvvwaq = jQuery("#jform_add_php_document input[type='radio']:checked").val(); var add_php_document_vvvvvyy = jQuery("#jform_add_php_document input[type='radio']:checked").val();
vvvvwaq(add_php_document_vvvvwaq); vvvvvyy(add_php_document_vvvvvyy);
var add_css_document_vvvvwar = jQuery("#jform_add_css_document input[type='radio']:checked").val(); var add_css_document_vvvvvyz = jQuery("#jform_add_css_document input[type='radio']:checked").val();
vvvvwar(add_css_document_vvvvwar); vvvvvyz(add_css_document_vvvvvyz);
var add_javascript_file_vvvvwas = jQuery("#jform_add_javascript_file input[type='radio']:checked").val(); var add_javascript_file_vvvvvza = jQuery("#jform_add_javascript_file input[type='radio']:checked").val();
vvvvwas(add_javascript_file_vvvvwas); vvvvvza(add_javascript_file_vvvvvza);
var add_js_document_vvvvwat = jQuery("#jform_add_js_document input[type='radio']:checked").val(); var add_js_document_vvvvvzb = jQuery("#jform_add_js_document input[type='radio']:checked").val();
vvvvwat(add_js_document_vvvvwat); vvvvvzb(add_js_document_vvvvvzb);
var add_css_vvvvwau = jQuery("#jform_add_css input[type='radio']:checked").val(); var add_css_vvvvvzc = jQuery("#jform_add_css input[type='radio']:checked").val();
vvvvwau(add_css_vvvvwau); vvvvvzc(add_css_vvvvvzc);
var add_php_ajax_vvvvwav = jQuery("#jform_add_php_ajax input[type='radio']:checked").val(); var add_php_ajax_vvvvvzd = jQuery("#jform_add_php_ajax input[type='radio']:checked").val();
vvvvwav(add_php_ajax_vvvvwav); vvvvvzd(add_php_ajax_vvvvvzd);
var add_custom_button_vvvvwaw = jQuery("#jform_add_custom_button input[type='radio']:checked").val(); var add_custom_button_vvvvvze = jQuery("#jform_add_custom_button input[type='radio']:checked").val();
vvvvwaw(add_custom_button_vvvvwaw); vvvvvze(add_custom_button_vvvvvze);
var button_position_vvvvwax = jQuery("#jform_button_position").val(); var button_position_vvvvvzf = jQuery("#jform_button_position").val();
vvvvwax(button_position_vvvvwax); vvvvvzf(button_position_vvvvvzf);
}); });
// the vvvvwan function // the vvvvvyv function
function vvvvwan(add_php_view_vvvvwan) function vvvvvyv(add_php_view_vvvvvyv)
{ {
// set the function logic // set the function logic
if (add_php_view_vvvvwan == 1) if (add_php_view_vvvvvyv == 1)
{ {
jQuery('#jform_php_view-lbl').closest('.control-group').show(); jQuery('#jform_php_view-lbl').closest('.control-group').show();
} }
@ -59,11 +59,11 @@ function vvvvwan(add_php_view_vvvvwan)
} }
} }
// the vvvvwao function // the vvvvvyw function
function vvvvwao(add_php_jview_display_vvvvwao) function vvvvvyw(add_php_jview_display_vvvvvyw)
{ {
// set the function logic // set the function logic
if (add_php_jview_display_vvvvwao == 1) if (add_php_jview_display_vvvvvyw == 1)
{ {
jQuery('#jform_php_jview_display-lbl').closest('.control-group').show(); jQuery('#jform_php_jview_display-lbl').closest('.control-group').show();
} }
@ -73,11 +73,11 @@ function vvvvwao(add_php_jview_display_vvvvwao)
} }
} }
// the vvvvwap function // the vvvvvyx function
function vvvvwap(add_php_jview_vvvvwap) function vvvvvyx(add_php_jview_vvvvvyx)
{ {
// set the function logic // set the function logic
if (add_php_jview_vvvvwap == 1) if (add_php_jview_vvvvvyx == 1)
{ {
jQuery('#jform_php_jview-lbl').closest('.control-group').show(); jQuery('#jform_php_jview-lbl').closest('.control-group').show();
} }
@ -87,11 +87,11 @@ function vvvvwap(add_php_jview_vvvvwap)
} }
} }
// the vvvvwaq function // the vvvvvyy function
function vvvvwaq(add_php_document_vvvvwaq) function vvvvvyy(add_php_document_vvvvvyy)
{ {
// set the function logic // set the function logic
if (add_php_document_vvvvwaq == 1) if (add_php_document_vvvvvyy == 1)
{ {
jQuery('#jform_php_document-lbl').closest('.control-group').show(); jQuery('#jform_php_document-lbl').closest('.control-group').show();
} }
@ -101,11 +101,11 @@ function vvvvwaq(add_php_document_vvvvwaq)
} }
} }
// the vvvvwar function // the vvvvvyz function
function vvvvwar(add_css_document_vvvvwar) function vvvvvyz(add_css_document_vvvvvyz)
{ {
// set the function logic // set the function logic
if (add_css_document_vvvvwar == 1) if (add_css_document_vvvvvyz == 1)
{ {
jQuery('#jform_css_document-lbl').closest('.control-group').show(); jQuery('#jform_css_document-lbl').closest('.control-group').show();
} }
@ -115,11 +115,11 @@ function vvvvwar(add_css_document_vvvvwar)
} }
} }
// the vvvvwas function // the vvvvvza function
function vvvvwas(add_javascript_file_vvvvwas) function vvvvvza(add_javascript_file_vvvvvza)
{ {
// set the function logic // set the function logic
if (add_javascript_file_vvvvwas == 1) if (add_javascript_file_vvvvvza == 1)
{ {
jQuery('#jform_javascript_file-lbl').closest('.control-group').show(); jQuery('#jform_javascript_file-lbl').closest('.control-group').show();
} }
@ -129,11 +129,11 @@ function vvvvwas(add_javascript_file_vvvvwas)
} }
} }
// the vvvvwat function // the vvvvvzb function
function vvvvwat(add_js_document_vvvvwat) function vvvvvzb(add_js_document_vvvvvzb)
{ {
// set the function logic // set the function logic
if (add_js_document_vvvvwat == 1) if (add_js_document_vvvvvzb == 1)
{ {
jQuery('#jform_js_document-lbl').closest('.control-group').show(); jQuery('#jform_js_document-lbl').closest('.control-group').show();
} }
@ -143,11 +143,11 @@ function vvvvwat(add_js_document_vvvvwat)
} }
} }
// the vvvvwau function // the vvvvvzc function
function vvvvwau(add_css_vvvvwau) function vvvvvzc(add_css_vvvvvzc)
{ {
// set the function logic // set the function logic
if (add_css_vvvvwau == 1) if (add_css_vvvvvzc == 1)
{ {
jQuery('#jform_css-lbl').closest('.control-group').show(); jQuery('#jform_css-lbl').closest('.control-group').show();
} }
@ -157,11 +157,11 @@ function vvvvwau(add_css_vvvvwau)
} }
} }
// the vvvvwav function // the vvvvvzd function
function vvvvwav(add_php_ajax_vvvvwav) function vvvvvzd(add_php_ajax_vvvvvzd)
{ {
// set the function logic // set the function logic
if (add_php_ajax_vvvvwav == 1) if (add_php_ajax_vvvvvzd == 1)
{ {
jQuery('#jform_ajax_input-lbl').closest('.control-group').show(); jQuery('#jform_ajax_input-lbl').closest('.control-group').show();
jQuery('#jform_php_ajaxmethod-lbl').closest('.control-group').show(); jQuery('#jform_php_ajaxmethod-lbl').closest('.control-group').show();
@ -173,11 +173,11 @@ function vvvvwav(add_php_ajax_vvvvwav)
} }
} }
// the vvvvwaw function // the vvvvvze function
function vvvvwaw(add_custom_button_vvvvwaw) function vvvvvze(add_custom_button_vvvvvze)
{ {
// set the function logic // set the function logic
if (add_custom_button_vvvvwaw == 1) if (add_custom_button_vvvvvze == 1)
{ {
jQuery('#jform_custom_button-lbl').closest('.control-group').show(); jQuery('#jform_custom_button-lbl').closest('.control-group').show();
jQuery('#jform_php_controller-lbl').closest('.control-group').show(); jQuery('#jform_php_controller-lbl').closest('.control-group').show();
@ -191,20 +191,20 @@ function vvvvwaw(add_custom_button_vvvvwaw)
} }
} }
// the vvvvwax function // the vvvvvzf function
function vvvvwax(button_position_vvvvwax) function vvvvvzf(button_position_vvvvvzf)
{ {
if (isSet(button_position_vvvvwax) && button_position_vvvvwax.constructor !== Array) if (isSet(button_position_vvvvvzf) && button_position_vvvvvzf.constructor !== Array)
{ {
var temp_vvvvwax = button_position_vvvvwax; var temp_vvvvvzf = button_position_vvvvvzf;
var button_position_vvvvwax = []; var button_position_vvvvvzf = [];
button_position_vvvvwax.push(temp_vvvvwax); button_position_vvvvvzf.push(temp_vvvvvzf);
} }
else if (!isSet(button_position_vvvvwax)) else if (!isSet(button_position_vvvvvzf))
{ {
var button_position_vvvvwax = []; var button_position_vvvvvzf = [];
} }
var button_position = button_position_vvvvwax.some(button_position_vvvvwax_SomeFunc); var button_position = button_position_vvvvvzf.some(button_position_vvvvvzf_SomeFunc);
// set this function logic // set this function logic
@ -218,11 +218,11 @@ function vvvvwax(button_position_vvvvwax)
} }
} }
// the vvvvwax Some function // the vvvvvzf Some function
function button_position_vvvvwax_SomeFunc(button_position_vvvvwax) function button_position_vvvvvzf_SomeFunc(button_position_vvvvvzf)
{ {
// set the function logic // set the function logic
if (button_position_vvvvwax == 5) if (button_position_vvvvvzf == 5)
{ {
return true; return true;
} }

View File

@ -11,15 +11,15 @@
// Initial Script // Initial Script
document.addEventListener('DOMContentLoaded', function() document.addEventListener('DOMContentLoaded', function()
{ {
var add_php_view_vvvvway = jQuery("#jform_add_php_view input[type='radio']:checked").val(); var add_php_view_vvvvvzg = jQuery("#jform_add_php_view input[type='radio']:checked").val();
vvvvway(add_php_view_vvvvway); vvvvvzg(add_php_view_vvvvvzg);
}); });
// the vvvvway function // the vvvvvzg function
function vvvvway(add_php_view_vvvvway) function vvvvvzg(add_php_view_vvvvvzg)
{ {
// set the function logic // set the function logic
if (add_php_view_vvvvway == 1) if (add_php_view_vvvvvzg == 1)
{ {
jQuery('#jform_php_view-lbl').closest('.control-group').show(); jQuery('#jform_php_view-lbl').closest('.control-group').show();
} }