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:
@ -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_both` 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_postflight_install` 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_both` MEDIUMTEXT NOT NULL,
|
||||
`php_helper_site` MEDIUMTEXT NOT NULL,
|
||||
`php_method_install` MEDIUMTEXT NOT NULL,
|
||||
`php_method_uninstall` MEDIUMTEXT NOT NULL,
|
||||
`php_postflight_install` 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_key` 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,
|
||||
`created_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`),
|
||||
KEY `idx_system_name` (`system_name`),
|
||||
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_add_placeholders` (`add_placeholders`),
|
||||
KEY `idx_debug_linenr` (`debug_linenr`),
|
||||
KEY `idx_add_license` (`add_license`),
|
||||
KEY `idx_license_type` (`license_type`),
|
||||
KEY `idx_mvc_versiondate` (`mvc_versiondate`),
|
||||
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_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_admin_event` (`add_admin_event`),
|
||||
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_update` (`add_php_postflight_update`),
|
||||
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_uninstall` (`add_sql_uninstall`),
|
||||
KEY `idx_assets_table_fix` (`assets_table_fix`),
|
||||
KEY `idx_add_update_server` (`add_update_server`),
|
||||
KEY `idx_update_server_target` (`update_server_target`),
|
||||
KEY `idx_emptycontributors` (`emptycontributors`),
|
||||
KEY `idx_update_server_target` (`update_server_target`),
|
||||
KEY `idx_add_git_folder_path` (`add_git_folder_path`),
|
||||
KEY `idx_creatuserhelper` (`creatuserhelper`),
|
||||
KEY `idx_adduikit` (`adduikit`),
|
||||
KEY `idx_addfootable` (`addfootable`),
|
||||
KEY `idx_add_email_helper` (`add_email_helper`),
|
||||
KEY `idx_guid` (`guid`),
|
||||
KEY `idx_add_php_helper_both` (`add_php_helper_both`),
|
||||
KEY `idx_guid` (`guid`),
|
||||
KEY `idx_access` (`access`),
|
||||
KEY `idx_checkout` (`checked_out`),
|
||||
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_target` TINYINT(1) NOT NULL DEFAULT 0,
|
||||
`update_server_url` VARCHAR(255) NOT NULL DEFAULT '',
|
||||
`params` text NULL,
|
||||
`params` TEXT NULL,
|
||||
`published` TINYINT(3) NOT NULL DEFAULT 1,
|
||||
`created_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_target` TINYINT(1) NOT NULL DEFAULT 0,
|
||||
`update_server_url` VARCHAR(255) NOT NULL DEFAULT '',
|
||||
`params` text NULL,
|
||||
`params` TEXT NULL,
|
||||
`published` TINYINT(3) NOT NULL DEFAULT 1,
|
||||
`created_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 '',
|
||||
`settings` TEXT NOT NULL,
|
||||
`system_name` VARCHAR(255) NOT NULL DEFAULT '',
|
||||
`params` text NULL,
|
||||
`params` TEXT NULL,
|
||||
`published` TINYINT(3) NOT NULL DEFAULT 1,
|
||||
`created_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 '',
|
||||
`type` VARCHAR(64) NOT NULL DEFAULT '',
|
||||
`use_selection` TEXT NULL,
|
||||
`params` text NULL,
|
||||
`params` TEXT NULL,
|
||||
`published` TINYINT(3) NOT NULL DEFAULT 1,
|
||||
`created_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,
|
||||
`system_name` VARCHAR(255) NOT NULL DEFAULT '',
|
||||
`type` INT(11) NOT NULL DEFAULT 0,
|
||||
`params` text NULL,
|
||||
`params` TEXT NULL,
|
||||
`published` TINYINT(3) NOT NULL DEFAULT 1,
|
||||
`created_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,
|
||||
`snippet` INT(11) NOT NULL DEFAULT 0,
|
||||
`system_name` VARCHAR(255) NOT NULL DEFAULT '',
|
||||
`params` text NULL,
|
||||
`params` TEXT NULL,
|
||||
`published` TINYINT(3) NOT NULL DEFAULT 1,
|
||||
`created_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,
|
||||
`snippet` INT(11) NOT NULL DEFAULT 0,
|
||||
`system_name` VARCHAR(255) NOT NULL DEFAULT '',
|
||||
`params` text NULL,
|
||||
`params` TEXT NULL,
|
||||
`published` TINYINT(3) NOT NULL DEFAULT 1,
|
||||
`created_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,
|
||||
`snippet` INT(11) NOT NULL DEFAULT 0,
|
||||
`template` TEXT NOT NULL,
|
||||
`params` text NULL,
|
||||
`params` TEXT NULL,
|
||||
`published` TINYINT(3) NOT NULL DEFAULT 1,
|
||||
`created_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 '',
|
||||
`php_view` MEDIUMTEXT NOT NULL,
|
||||
`snippet` INT(11) NOT NULL DEFAULT 0,
|
||||
`params` text NULL,
|
||||
`params` TEXT NULL,
|
||||
`published` TINYINT(3) NOT NULL DEFAULT 1,
|
||||
`created_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_table_main` INT(11) NOT NULL DEFAULT 0,
|
||||
`where` TEXT NOT NULL,
|
||||
`params` text NULL,
|
||||
`params` TEXT NULL,
|
||||
`published` TINYINT(3) NOT NULL DEFAULT 1,
|
||||
`created_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,
|
||||
`to_line` VARCHAR(100) NOT NULL DEFAULT '',
|
||||
`type` TINYINT(1) NOT NULL DEFAULT 0,
|
||||
`params` text NULL,
|
||||
`params` TEXT NULL,
|
||||
`published` TINYINT(3) NOT NULL DEFAULT 1,
|
||||
`created_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,
|
||||
`name` VARCHAR(255) NOT NULL DEFAULT '',
|
||||
`visibility` VARCHAR(255) NOT NULL DEFAULT '',
|
||||
`params` text NULL,
|
||||
`params` TEXT NULL,
|
||||
`published` TINYINT(3) NOT NULL DEFAULT 1,
|
||||
`created_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,
|
||||
`name` VARCHAR(255) NOT NULL DEFAULT '',
|
||||
`visibility` VARCHAR(255) NOT NULL DEFAULT '',
|
||||
`params` text NULL,
|
||||
`params` TEXT NULL,
|
||||
`published` TINYINT(3) NOT NULL DEFAULT 1,
|
||||
`created_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.',
|
||||
`target` VARCHAR(255) NOT NULL DEFAULT '',
|
||||
`value` TEXT NOT NULL,
|
||||
`params` text NULL,
|
||||
`params` TEXT NULL,
|
||||
`published` TINYINT(3) NOT NULL DEFAULT 1,
|
||||
`created_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,
|
||||
`target` TINYINT(1) NOT NULL DEFAULT 1,
|
||||
`type` TINYINT(1) NOT NULL DEFAULT 0,
|
||||
`params` text NULL,
|
||||
`params` TEXT NULL,
|
||||
`published` TINYINT(3) NOT NULL DEFAULT 1,
|
||||
`created_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,
|
||||
`url` VARCHAR(255) NOT NULL DEFAULT '',
|
||||
`usage` TEXT NOT NULL,
|
||||
`params` text NULL,
|
||||
`params` TEXT NULL,
|
||||
`published` TINYINT(3) NOT NULL DEFAULT 1,
|
||||
`created_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 '',
|
||||
`php` MEDIUMTEXT NOT NULL,
|
||||
`short_description` VARCHAR(255) NOT NULL DEFAULT '',
|
||||
`params` text NULL,
|
||||
`params` TEXT NULL,
|
||||
`published` TINYINT(3) NOT NULL DEFAULT 1,
|
||||
`created_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,
|
||||
`store` INT(11) NOT NULL DEFAULT 0,
|
||||
`xml` TEXT NOT NULL,
|
||||
`params` text NULL,
|
||||
`params` TEXT NULL,
|
||||
`published` TINYINT(3) NOT NULL DEFAULT 1,
|
||||
`created_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,
|
||||
`short_description` VARCHAR(255) NOT NULL DEFAULT '',
|
||||
`store` INT(11) NOT NULL DEFAULT 0,
|
||||
`params` text NULL,
|
||||
`params` TEXT NULL,
|
||||
`published` TINYINT(3) NOT NULL DEFAULT 1,
|
||||
`created_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,
|
||||
`source` MEDIUMTEXT NOT NULL,
|
||||
`translation` TEXT NULL,
|
||||
`params` text NULL,
|
||||
`params` TEXT NULL,
|
||||
`published` TINYINT(3) NOT NULL DEFAULT 1,
|
||||
`created_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.',
|
||||
`langtag` VARCHAR(64) NOT NULL DEFAULT '',
|
||||
`name` VARCHAR(255) NOT NULL DEFAULT '',
|
||||
`params` text NULL,
|
||||
`params` TEXT NULL,
|
||||
`published` TINYINT(3) NOT NULL DEFAULT 1,
|
||||
`created_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,
|
||||
`signature` TEXT NOT NULL,
|
||||
`username` TEXT NOT NULL,
|
||||
`params` text NULL,
|
||||
`params` TEXT NULL,
|
||||
`published` TINYINT(3) NOT NULL DEFAULT 1,
|
||||
`created_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 '',
|
||||
`type` TINYINT(1) NOT NULL DEFAULT 0,
|
||||
`url` VARCHAR(255) NOT NULL DEFAULT '',
|
||||
`params` text NULL,
|
||||
`params` TEXT NULL,
|
||||
`published` TINYINT(3) NOT NULL DEFAULT 1,
|
||||
`created_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.',
|
||||
`addfields` MEDIUMTEXT NOT NULL,
|
||||
`admin_view` INT(11) NOT NULL DEFAULT 0,
|
||||
`params` text NULL,
|
||||
`params` TEXT NULL,
|
||||
`published` TINYINT(3) NOT NULL DEFAULT 1,
|
||||
`created_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.',
|
||||
`addconditions` MEDIUMTEXT NOT NULL,
|
||||
`admin_view` INT(11) NOT NULL DEFAULT 0,
|
||||
`params` text NULL,
|
||||
`params` TEXT NULL,
|
||||
`published` TINYINT(3) NOT NULL DEFAULT 1,
|
||||
`created_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.',
|
||||
`addrelations` MEDIUMTEXT NOT NULL,
|
||||
`admin_view` INT(11) NOT NULL DEFAULT 0,
|
||||
`params` text NULL,
|
||||
`params` TEXT NULL,
|
||||
`published` TINYINT(3) NOT NULL DEFAULT 1,
|
||||
`created_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.',
|
||||
`admin_view` INT(11) NOT NULL DEFAULT 0,
|
||||
`tabs` TEXT NOT NULL,
|
||||
`params` text NULL,
|
||||
`params` TEXT NULL,
|
||||
`published` TINYINT(3) NOT NULL DEFAULT 1,
|
||||
`created_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.',
|
||||
`addadmin_views` TEXT NOT NULL,
|
||||
`joomla_component` INT(11) NOT NULL DEFAULT 0,
|
||||
`params` text NULL,
|
||||
`params` TEXT NULL,
|
||||
`published` TINYINT(3) NOT NULL DEFAULT 1,
|
||||
`created_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.',
|
||||
`addsite_views` TEXT NOT NULL,
|
||||
`joomla_component` INT(11) NOT NULL DEFAULT 0,
|
||||
`params` text NULL,
|
||||
`params` TEXT NULL,
|
||||
`published` TINYINT(3) NOT NULL DEFAULT 1,
|
||||
`created_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.',
|
||||
`addcustom_admin_views` TEXT NOT NULL,
|
||||
`joomla_component` INT(11) NOT NULL DEFAULT 0,
|
||||
`params` text NULL,
|
||||
`params` TEXT NULL,
|
||||
`published` TINYINT(3) NOT NULL DEFAULT 1,
|
||||
`created_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.',
|
||||
`joomla_component` INT(11) NOT NULL DEFAULT 0,
|
||||
`version_update` TEXT NOT NULL,
|
||||
`params` text NULL,
|
||||
`params` TEXT NULL,
|
||||
`published` TINYINT(3) NOT NULL DEFAULT 1,
|
||||
`created_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.',
|
||||
`joomla_component` INT(11) NOT NULL DEFAULT 0,
|
||||
`sql_tweak` TEXT NOT NULL,
|
||||
`params` text NULL,
|
||||
`params` TEXT NULL,
|
||||
`published` TINYINT(3) NOT NULL DEFAULT 1,
|
||||
`created_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.',
|
||||
`addcustommenus` TEXT NOT NULL,
|
||||
`joomla_component` INT(11) NOT NULL DEFAULT 0,
|
||||
`params` text NULL,
|
||||
`params` TEXT NULL,
|
||||
`published` TINYINT(3) NOT NULL DEFAULT 1,
|
||||
`created_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_before_parent` 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,
|
||||
`created_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.',
|
||||
`addconfig` TEXT NOT NULL,
|
||||
`joomla_component` INT(11) NOT NULL DEFAULT 0,
|
||||
`params` text NULL,
|
||||
`params` TEXT NULL,
|
||||
`published` TINYINT(3) NOT NULL DEFAULT 1,
|
||||
`created_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,
|
||||
`joomla_component` INT(11) NOT NULL DEFAULT 0,
|
||||
`php_dashboard_methods` MEDIUMTEXT NOT NULL,
|
||||
`params` text NULL,
|
||||
`params` TEXT NULL,
|
||||
`published` TINYINT(3) NOT NULL DEFAULT 1,
|
||||
`created_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,
|
||||
`addfoldersfullpath` TEXT NOT NULL,
|
||||
`joomla_component` INT(11) NOT NULL DEFAULT 0,
|
||||
`params` text NULL,
|
||||
`params` TEXT NULL,
|
||||
`published` TINYINT(3) NOT NULL DEFAULT 1,
|
||||
`created_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.',
|
||||
`addplaceholders` TEXT NOT NULL,
|
||||
`joomla_component` INT(11) NOT NULL DEFAULT 0,
|
||||
`params` text NULL,
|
||||
`params` TEXT NULL,
|
||||
`published` TINYINT(3) NOT NULL DEFAULT 1,
|
||||
`created_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.',
|
||||
`addjoomla_plugins` TEXT NOT NULL,
|
||||
`joomla_component` INT(11) NOT NULL DEFAULT 0,
|
||||
`params` text NULL,
|
||||
`params` TEXT NULL,
|
||||
`published` TINYINT(3) NOT NULL DEFAULT 1,
|
||||
`created_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.',
|
||||
`addjoomla_modules` TEXT NOT NULL,
|
||||
`joomla_component` INT(11) NOT NULL DEFAULT 0,
|
||||
`params` text NULL,
|
||||
`params` TEXT NULL,
|
||||
`published` TINYINT(3) NOT NULL DEFAULT 1,
|
||||
`created_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.',
|
||||
`description` VARCHAR(255) NOT NULL DEFAULT '',
|
||||
`name` VARCHAR(255) NOT NULL DEFAULT '',
|
||||
`params` text NULL,
|
||||
`params` TEXT NULL,
|
||||
`published` TINYINT(3) NOT NULL DEFAULT 1,
|
||||
`created_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.',
|
||||
`addconfig` TEXT NOT NULL,
|
||||
`library` INT(11) NOT NULL DEFAULT 0,
|
||||
`params` text NULL,
|
||||
`params` TEXT NULL,
|
||||
`published` TINYINT(3) NOT NULL DEFAULT 1,
|
||||
`created_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,
|
||||
`addurls` TEXT NOT NULL,
|
||||
`library` INT(11) NOT NULL DEFAULT 0,
|
||||
`params` text NULL,
|
||||
`params` TEXT NULL,
|
||||
`published` TINYINT(3) NOT NULL DEFAULT 1,
|
||||
`created_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 '',
|
||||
`head` TEXT NULL,
|
||||
`name` VARCHAR(255) NOT NULL DEFAULT '',
|
||||
`params` text NULL,
|
||||
`params` TEXT NULL,
|
||||
`published` TINYINT(3) NOT NULL DEFAULT 1,
|
||||
`created_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.',
|
||||
`joomla_module` INT(11) NOT NULL DEFAULT 0,
|
||||
`version_update` TEXT NOT NULL,
|
||||
`params` text NULL,
|
||||
`params` TEXT NULL,
|
||||
`published` TINYINT(3) NOT NULL DEFAULT 1,
|
||||
`created_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,
|
||||
`addurls` TEXT NOT NULL,
|
||||
`joomla_module` INT(11) NOT NULL DEFAULT 0,
|
||||
`params` text NULL,
|
||||
`params` TEXT NULL,
|
||||
`published` TINYINT(3) NOT NULL DEFAULT 1,
|
||||
`created_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.',
|
||||
`class_extends` INT(11) NOT NULL DEFAULT 0,
|
||||
`name` VARCHAR(255) NOT NULL DEFAULT '',
|
||||
`params` text NULL,
|
||||
`params` TEXT NULL,
|
||||
`published` TINYINT(3) NOT NULL DEFAULT 1,
|
||||
`created_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.',
|
||||
`joomla_plugin` INT(11) NOT NULL DEFAULT 0,
|
||||
`version_update` TEXT NOT NULL,
|
||||
`params` text NULL,
|
||||
`params` TEXT NULL,
|
||||
`published` TINYINT(3) NOT NULL DEFAULT 1,
|
||||
`created_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,
|
||||
`addurls` TEXT NOT NULL,
|
||||
`joomla_plugin` INT(11) NOT NULL DEFAULT 0,
|
||||
`params` text NULL,
|
||||
`params` TEXT NULL,
|
||||
`published` TINYINT(3) NOT NULL DEFAULT 1,
|
||||
`created_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', '', '', '', '', ''),
|
||||
(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', '', '', '', '', ''),
|
||||
(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', '', '', '', '', ''),
|
||||
(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', '', '', '', '', ''),
|
||||
@ -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', '', '', '', '', ''),
|
||||
(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', '', '', '', '', ''),
|
||||
(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', '', '', '', '', ''),
|
||||
(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', '', '', '', '', ''),
|
||||
@ -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', '', '', '', '', ''),
|
||||
(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', '', '', '', '', ''),
|
||||
(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', '', '', '', '', ''),
|
||||
(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', '', '', '', '', ''),
|
||||
@ -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', '', '', '', '', ''),
|
||||
(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><?php echo Text::_('Text'); ?><\\/code><br \\/>\\r\\n<code><?php echo Text::sprintf('Hello %s', $this->user->name); ?><\\/code><br \\/>\\r\\n<b>Just get UPPERCASE language string:<\\/b><br \\/>\\r\\n<code><?php echo JustTEXT::_('Text'); ?><\\/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', '', '', '', '', ''),
|
||||
(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', '', '', '', '', ''),
|
||||
@ -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', '', '', '', '', ''),
|
||||
(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', '', '', '', '', ''),
|
||||
(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', '', '', '', '', ''),
|
||||
(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', '', '', '', '', ''),
|
||||
(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', '', '', '', '', ''),
|
||||
(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\\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', '', '', '', '', ''),
|
||||
(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', '', '', '', '', ''),
|
||||
@ -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', '', '', '', '', ''),
|
||||
(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', '', '', '', '', ''),
|
||||
(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', '', '', '', '', ''),
|
||||
(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', '', '', '', '', ''),
|
||||
(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', '', '', '', '', ''),
|
||||
(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\\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\\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', '', '', '', '', ''),
|
||||
(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', '', '', '', '', ''),
|
||||
@ -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', '', '', '', '', ''),
|
||||
(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', '', '', '', '', ''),
|
||||
(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', '', '', '', '', ''),
|
||||
(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', '', '', '', '', ''),
|
||||
(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\\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', '', '', '', '', ''),
|
||||
(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', '', '', '', '', ''),
|
||||
(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', '', '', '', '', ''),
|
||||
(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', '', '', '', '', ''),
|
||||
(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', '', '', '', '', ''),
|
||||
(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\\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', '', '', '', '', ''),
|
||||
(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', '', '', '', '', ''),
|
||||
@ -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', '', '', '', '', ''),
|
||||
(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', '', '', '', '', ''),
|
||||
(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', '', '', '', '', ''),
|
||||
(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', '', '', '', '', ''),
|
||||
(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', '', '', '', '', ''),
|
||||
(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', '', '', '', '', ''),
|
||||
(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', '', '', '', '', ''),
|
||||
(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', '', '', '', '', ''),
|
||||
(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', '', '', '', '', ''),
|
||||
(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', '', '', '', '', ''),
|
||||
(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', '', '', '', '', ''),
|
||||
(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', '', '', '', '', ''),
|
||||
(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', '', '', '', '', ''),
|
||||
(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', '', '', '', '', ''),
|
||||
(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 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 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 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 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 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 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 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 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 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 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 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', '', '', '', '', ''),
|
||||
(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', '', '', '', '', ''),
|
||||
@ -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', '', '', '', '', ''),
|
||||
(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', '', '', '', '', ''),
|
||||
(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', '', '', '', '', ''),
|
||||
(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', '', '', '', '', ''),
|
||||
@ -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', '', '', '', '', ''),
|
||||
(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', '', '', '', '', ''),
|
||||
(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', '', '', '', '', ''),
|
||||
(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 & 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', '', '', '', '', ''),
|
||||
(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', '', '', '', '', ''),
|
||||
(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', '', '', '', '', ''),
|
||||
(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', '', '', '', '', ''),
|
||||
@ -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', '', '', '', '', ''),
|
||||
(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', '', '', '', '', ''),
|
||||
(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', '', '', '', '', ''),
|
||||
(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', '', '', '', '', ''),
|
||||
@ -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', '', '', '', '', ''),
|
||||
(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', '', '', '', '', ''),
|
||||
(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', '', '', '', '', ''),
|
||||
(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', '', '', '', '', ''),
|
||||
(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\\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', '', '', '', '', ''),
|
||||
(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', '', '', '', '', ''),
|
||||
@ -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', '', '', '', '', ''),
|
||||
(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', '', '', '', '', ''),
|
||||
(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`
|
||||
|
Reference in New Issue
Block a user