Component-Builder/admin/sql/install.mysql.utf8.sql

5875 lines
3.2 MiB
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
SET time_zone = "+00:00";
CREATE TABLE IF NOT EXISTS `#__componentbuilder_joomla_component` (
`id` INT(11) NOT NULL AUTO_INCREMENT,
`asset_id` INT(10) unsigned NOT NULL DEFAULT 0 COMMENT 'FK to the #__assets table.',
`add_admin_event` TINYINT(1) NOT NULL DEFAULT 0,
`add_backup_folder_path` TINYINT(1) NOT NULL DEFAULT 0,
`add_css_admin` TINYINT(1) NOT NULL DEFAULT 0,
`add_css_site` TINYINT(1) NOT NULL DEFAULT 0,
`add_email_helper` TINYINT(1) NOT NULL DEFAULT 0,
`add_git_folder_path` TINYINT(1) NOT NULL DEFAULT 0,
`add_javascript` TINYINT(1) NOT NULL DEFAULT 0,
`add_jcb_powers_path` TINYINT(1) NOT NULL DEFAULT 0,
`add_license` TINYINT(1) NOT NULL DEFAULT 0,
`add_menu_prefix` CHAR(1) NOT NULL DEFAULT '',
`add_namespace_prefix` CHAR(1) NOT NULL DEFAULT '',
`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_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,
`add_php_preflight_install` TINYINT(1) NOT NULL DEFAULT 0,
`add_php_preflight_update` TINYINT(1) NOT NULL DEFAULT 0,
`add_placeholders` TINYINT(1) NOT NULL DEFAULT 0,
`add_powers` TINYINT(1) NOT NULL DEFAULT 1,
`add_sales_server` TINYINT(1) NOT NULL DEFAULT 0,
`add_site_event` TINYINT(1) NOT NULL DEFAULT 0,
`add_sql` TINYINT(1) NOT NULL DEFAULT 0,
`add_sql_uninstall` TINYINT(1) NOT NULL DEFAULT 0,
`add_update_server` TINYINT(1) NOT NULL DEFAULT 0,
`addcontributors` TEXT NOT NULL,
`addfootable` TINYINT(1) NOT NULL DEFAULT 0,
`addreadme` TINYINT(1) NOT NULL DEFAULT 0,
`adduikit` TINYINT(1) NOT NULL DEFAULT 0,
`assets_table_fix` TINYINT(1) NOT NULL DEFAULT 3,
`author` VARCHAR(255) NOT NULL DEFAULT '',
`backup_folder_path` VARCHAR(255) NOT NULL DEFAULT '',
`bom` CHAR(64) NOT NULL DEFAULT '',
`buildcomp` TINYINT(1) NOT NULL DEFAULT 0,
`buildcompsql` MEDIUMTEXT NOT NULL,
`companyname` CHAR(64) NOT NULL DEFAULT '',
`component_version` CHAR(64) NOT NULL DEFAULT '',
`copyright` VARCHAR(255) NOT NULL DEFAULT '',
`created` DATETIME NOT NULL DEFAULT '0000-00-00 00:00:00',
`creatuserhelper` TINYINT(1) NOT NULL DEFAULT 0,
`crowdin_account_api_key` TEXT NOT NULL,
`crowdin_project_api_key` TEXT NOT NULL,
`crowdin_project_identifier` VARCHAR(255) NOT NULL DEFAULT '',
`crowdin_username` TEXT NOT NULL,
`css_admin` TEXT NOT NULL,
`css_site` TEXT NOT NULL,
`dashboard` VARCHAR(64) NOT NULL DEFAULT '',
`dashboard_type` TINYINT(1) NOT NULL DEFAULT 1,
`debug_linenr` TINYINT(1) NOT NULL DEFAULT 0,
`description` TEXT NULL,
`email` VARCHAR(255) NOT NULL DEFAULT '',
`emptycontributors` TINYINT(1) NOT NULL DEFAULT 0,
`export_buy_link` VARCHAR(255) NOT NULL DEFAULT '',
`export_key` TEXT NOT NULL,
`git_folder_path` VARCHAR(255) NOT NULL DEFAULT '',
`guid` VARCHAR(36) NOT NULL DEFAULT '',
`image` CHAR(64) NOT NULL DEFAULT '',
`javascript` TEXT NOT NULL,
`jcb_powers_path` VARCHAR(255) NOT NULL DEFAULT '',
`joomla_source_link` VARCHAR(255) NOT NULL DEFAULT '',
`license` VARCHAR(255) NOT NULL DEFAULT '',
`license_type` TINYINT(1) NOT NULL DEFAULT 0,
`menu_prefix` VARCHAR(100) NOT NULL DEFAULT '',
`modified` DATETIME NOT NULL DEFAULT '0000-00-00 00:00:00',
`mvc_versiondate` TINYINT(1) NOT NULL DEFAULT 0,
`name` CHAR(64) NOT NULL DEFAULT '',
`name_code` VARCHAR(255) NOT NULL DEFAULT '',
`namespace_prefix` VARCHAR(255) NOT NULL DEFAULT '',
`number` INT(11) NOT NULL DEFAULT 0,
`php_admin_event` MEDIUMTEXT NOT NULL,
`php_helper_admin` MEDIUMTEXT NOT NULL,
`php_helper_both` MEDIUMTEXT NOT NULL,
`php_helper_site` MEDIUMTEXT NOT NULL,
`php_method_uninstall` MEDIUMTEXT NOT NULL,
`php_postflight_install` MEDIUMTEXT NOT NULL,
`php_postflight_update` MEDIUMTEXT NOT NULL,
`php_preflight_install` MEDIUMTEXT NOT NULL,
`php_preflight_update` MEDIUMTEXT NOT NULL,
`php_site_event` MEDIUMTEXT NOT NULL,
`preferred_joomla_version` INT(11) NOT NULL DEFAULT 3,
`readme` TEXT NOT NULL,
`remove_line_breaks` TINYINT(1) NOT NULL DEFAULT 0,
`sales_server` INT(11) NOT NULL DEFAULT 0,
`short_description` VARCHAR(255) NOT NULL DEFAULT '',
`sql` MEDIUMTEXT NOT NULL,
`sql_uninstall` MEDIUMTEXT NOT NULL,
`system_name` VARCHAR(255) NOT NULL DEFAULT '',
`toignore` TEXT NOT NULL,
`translation_tool` TINYINT(1) NOT NULL DEFAULT 0,
`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 '',
`website` CHAR(255) NOT NULL DEFAULT '',
`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,
`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,
`checked_out` int(11) unsigned NOT NULL DEFAULT 0,
`checked_out_time` DATETIME DEFAULT NULL,
`version` INT(10) unsigned NOT NULL DEFAULT 1,
`hits` INT(10) unsigned NOT NULL DEFAULT 0,
`access` INT(10) unsigned NOT NULL DEFAULT 0,
`ordering` INT(11) NOT NULL DEFAULT 0,
`metakey` TEXT,
`metadesc` TEXT NOT NULL,
`metadata` TEXT NOT NULL,
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_addreadme` (`addreadme`),
KEY `idx_add_powers` (`add_powers`),
KEY `idx_add_backup_folder_path` (`add_backup_folder_path`),
KEY `idx_translation_tool` (`translation_tool`),
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`),
KEY `idx_add_site_event` (`add_site_event`),
KEY `idx_add_namespace_prefix` (`add_namespace_prefix`),
KEY `idx_add_javascript` (`add_javascript`),
KEY `idx_namespace_prefix` (`namespace_prefix`),
KEY `idx_add_css_admin` (`add_css_admin`),
KEY `idx_add_css_site` (`add_css_site`),
KEY `idx_add_menu_prefix` (`add_menu_prefix`),
KEY `idx_menu_prefix` (`menu_prefix`),
KEY `idx_add_php_preflight_install` (`add_php_preflight_install`),
KEY `idx_add_php_preflight_update` (`add_php_preflight_update`),
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_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_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_access` (`access`),
KEY `idx_checkout` (`checked_out`),
KEY `idx_createdby` (`created_by`),
KEY `idx_modifiedby` (`modified_by`),
KEY `idx_state` (`published`)
) ENGINE=InnoDB AUTO_INCREMENT=0 DEFAULT CHARSET=utf8mb4 DEFAULT COLLATE=utf8mb4_general_ci ROW_FORMAT=DYNAMIC;
CREATE TABLE IF NOT EXISTS `#__componentbuilder_joomla_module` (
`id` INT(11) NOT NULL AUTO_INCREMENT,
`asset_id` INT(10) unsigned NOT NULL DEFAULT 0 COMMENT 'FK to the #__assets table.',
`add_class_helper` TINYINT(1) NOT NULL DEFAULT 0,
`add_class_helper_header` 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,
`add_php_preflight_install` TINYINT(1) NOT NULL DEFAULT 0,
`add_php_preflight_uninstall` TINYINT(1) NOT NULL DEFAULT 0,
`add_php_preflight_update` TINYINT(1) NOT NULL DEFAULT 0,
`add_php_script_construct` TINYINT(1) NOT NULL DEFAULT 0,
`add_sales_server` TINYINT(1) NOT NULL DEFAULT 0,
`add_sql` TINYINT(1) NOT NULL DEFAULT 0,
`add_sql_uninstall` TINYINT(1) NOT NULL DEFAULT 0,
`add_update_server` TINYINT(1) NOT NULL DEFAULT 0,
`addreadme` TINYINT(1) NOT NULL DEFAULT 0,
`class_helper_code` MEDIUMTEXT NOT NULL,
`class_helper_header` TEXT NOT NULL,
`custom_get` TEXT NOT NULL,
`default` MEDIUMTEXT NOT NULL,
`description` TEXT NULL,
`fields` TEXT NOT NULL,
`guid` VARCHAR(36) NOT NULL DEFAULT '',
`libraries` TEXT NOT NULL,
`mod_code` TEXT NOT NULL,
`module_version` CHAR(64) NOT NULL DEFAULT '',
`name` VARCHAR(255) NOT NULL DEFAULT '',
`php_method_uninstall` MEDIUMTEXT NOT NULL,
`php_postflight_install` MEDIUMTEXT NOT NULL,
`php_postflight_update` MEDIUMTEXT NOT NULL,
`php_preflight_install` MEDIUMTEXT NOT NULL,
`php_preflight_uninstall` MEDIUMTEXT NOT NULL,
`php_preflight_update` MEDIUMTEXT NOT NULL,
`php_script_construct` MEDIUMTEXT NOT NULL,
`readme` TEXT NOT NULL,
`sales_server` INT(11) NOT NULL DEFAULT 0,
`snippet` INT(11) NOT NULL DEFAULT 0,
`sql` MEDIUMTEXT NOT NULL,
`sql_uninstall` MEDIUMTEXT NOT NULL,
`system_name` VARCHAR(255) NOT NULL DEFAULT '',
`target` TINYINT(1) NOT NULL DEFAULT 0,
`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,
`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,
`created` DATETIME DEFAULT CURRENT_TIMESTAMP,
`modified` DATETIME DEFAULT NULL,
`checked_out` int(11) unsigned NOT NULL DEFAULT 0,
`checked_out_time` DATETIME DEFAULT NULL,
`version` INT(10) unsigned NOT NULL DEFAULT 1,
`hits` INT(10) unsigned NOT NULL DEFAULT 0,
`access` INT(10) unsigned NOT NULL DEFAULT 0,
`ordering` INT(11) NOT NULL DEFAULT 0,
PRIMARY KEY (`id`),
KEY `idx_system_name` (`system_name`),
KEY `idx_add_php_method_uninstall` (`add_php_method_uninstall`),
KEY `idx_add_php_postflight_update` (`add_php_postflight_update`),
KEY `idx_add_php_postflight_install` (`add_php_postflight_install`),
KEY `idx_add_php_preflight_uninstall` (`add_php_preflight_uninstall`),
KEY `idx_addreadme` (`addreadme`),
KEY `idx_add_sql` (`add_sql`),
KEY `idx_update_server_target` (`update_server_target`),
KEY `idx_add_sql_uninstall` (`add_sql_uninstall`),
KEY `idx_add_update_server` (`add_update_server`),
KEY `idx_add_php_script_construct` (`add_php_script_construct`),
KEY `idx_add_php_preflight_install` (`add_php_preflight_install`),
KEY `idx_add_sales_server` (`add_sales_server`),
KEY `idx_add_php_preflight_update` (`add_php_preflight_update`),
KEY `idx_guid` (`guid`),
KEY `idx_name` (`name`),
KEY `idx_access` (`access`),
KEY `idx_checkout` (`checked_out`),
KEY `idx_createdby` (`created_by`),
KEY `idx_modifiedby` (`modified_by`),
KEY `idx_state` (`published`)
) ENGINE=InnoDB AUTO_INCREMENT=0 DEFAULT CHARSET=utf8mb4 DEFAULT COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
CREATE TABLE IF NOT EXISTS `#__componentbuilder_joomla_plugin` (
`id` INT(11) NOT NULL AUTO_INCREMENT,
`asset_id` INT(10) unsigned NOT NULL DEFAULT 0 COMMENT 'FK to the #__assets table.',
`add_head` 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,
`add_php_preflight_install` TINYINT(1) NOT NULL DEFAULT 0,
`add_php_preflight_uninstall` TINYINT(1) NOT NULL DEFAULT 0,
`add_php_preflight_update` TINYINT(1) NOT NULL DEFAULT 0,
`add_php_script_construct` TINYINT(1) NOT NULL DEFAULT 0,
`add_sales_server` TINYINT(1) NOT NULL DEFAULT 0,
`add_sql` TINYINT(1) NOT NULL DEFAULT 0,
`add_sql_uninstall` TINYINT(1) NOT NULL DEFAULT 0,
`add_update_server` TINYINT(1) NOT NULL DEFAULT 0,
`addreadme` TINYINT(1) NOT NULL DEFAULT 0,
`class_extends` INT(11) NOT NULL DEFAULT 0,
`description` TEXT NULL,
`fields` TEXT NOT NULL,
`guid` VARCHAR(36) NOT NULL DEFAULT '',
`head` TEXT NULL,
`joomla_plugin_group` INT(11) NOT NULL DEFAULT 0,
`main_class_code` MEDIUMTEXT NOT NULL,
`method_selection` TEXT NOT NULL,
`name` VARCHAR(255) NOT NULL DEFAULT '',
`php_method_uninstall` MEDIUMTEXT NOT NULL,
`php_postflight_install` MEDIUMTEXT NOT NULL,
`php_postflight_update` MEDIUMTEXT NOT NULL,
`php_preflight_install` MEDIUMTEXT NOT NULL,
`php_preflight_uninstall` MEDIUMTEXT NOT NULL,
`php_preflight_update` MEDIUMTEXT NOT NULL,
`php_script_construct` MEDIUMTEXT NOT NULL,
`plugin_version` CHAR(64) NOT NULL DEFAULT '',
`property_selection` TEXT NOT NULL,
`readme` TEXT NOT NULL,
`sales_server` INT(11) NOT NULL DEFAULT 0,
`sql` MEDIUMTEXT NOT NULL,
`sql_uninstall` MEDIUMTEXT NOT NULL,
`system_name` VARCHAR(255) NOT NULL DEFAULT '',
`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,
`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,
`created` DATETIME DEFAULT CURRENT_TIMESTAMP,
`modified` DATETIME DEFAULT NULL,
`checked_out` int(11) unsigned NOT NULL DEFAULT 0,
`checked_out_time` DATETIME DEFAULT NULL,
`version` INT(10) unsigned NOT NULL DEFAULT 1,
`hits` INT(10) unsigned NOT NULL DEFAULT 0,
`access` INT(10) unsigned NOT NULL DEFAULT 0,
`ordering` INT(11) NOT NULL DEFAULT 0,
PRIMARY KEY (`id`),
KEY `idx_system_name` (`system_name`),
KEY `idx_class_extends` (`class_extends`),
KEY `idx_joomla_plugin_group` (`joomla_plugin_group`),
KEY `idx_add_sql` (`add_sql`),
KEY `idx_add_php_method_uninstall` (`add_php_method_uninstall`),
KEY `idx_add_php_postflight_update` (`add_php_postflight_update`),
KEY `idx_add_php_postflight_install` (`add_php_postflight_install`),
KEY `idx_add_update_server` (`add_update_server`),
KEY `idx_add_sql_uninstall` (`add_sql_uninstall`),
KEY `idx_addreadme` (`addreadme`),
KEY `idx_update_server_target` (`update_server_target`),
KEY `idx_add_php_script_construct` (`add_php_script_construct`),
KEY `idx_add_php_preflight_install` (`add_php_preflight_install`),
KEY `idx_add_php_preflight_update` (`add_php_preflight_update`),
KEY `idx_add_php_preflight_uninstall` (`add_php_preflight_uninstall`),
KEY `idx_add_sales_server` (`add_sales_server`),
KEY `idx_guid` (`guid`),
KEY `idx_name` (`name`),
KEY `idx_access` (`access`),
KEY `idx_checkout` (`checked_out`),
KEY `idx_createdby` (`created_by`),
KEY `idx_modifiedby` (`modified_by`),
KEY `idx_state` (`published`)
) ENGINE=InnoDB AUTO_INCREMENT=0 DEFAULT CHARSET=utf8mb4 DEFAULT COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
CREATE TABLE IF NOT EXISTS `#__componentbuilder_power` (
`id` INT(11) NOT NULL AUTO_INCREMENT,
`asset_id` INT(10) unsigned NOT NULL DEFAULT 0 COMMENT 'FK to the #__assets table.',
`add_head` TINYINT(1) NOT NULL DEFAULT 0,
`add_licensing_template` TINYINT(1) NOT NULL DEFAULT 1,
`approved` TINYINT(1) NOT NULL DEFAULT 0,
`approved_paths` TEXT NULL,
`composer` TEXT NULL,
`description` TEXT NULL,
`extends` VARCHAR(36) NOT NULL DEFAULT '',
`extends_custom` VARCHAR(64) NULL DEFAULT '',
`guid` VARCHAR(36) NOT NULL DEFAULT '',
`head` TEXT NULL,
`implements` TEXT NULL,
`implements_custom` VARCHAR(1024) NOT NULL DEFAULT '',
`licensing_template` TEXT NULL,
`load_selection` TEXT NULL,
`main_class_code` MEDIUMTEXT NOT NULL,
`method_selection` TEXT NULL,
`name` VARCHAR(255) NOT NULL DEFAULT '',
`namespace` VARCHAR(255) NOT NULL DEFAULT '',
`power_version` CHAR(64) NOT NULL DEFAULT '',
`property_selection` TEXT NULL,
`system_name` VARCHAR(255) NOT NULL DEFAULT '',
`type` VARCHAR(64) NOT NULL DEFAULT '',
`use_selection` 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,
`created` DATETIME DEFAULT CURRENT_TIMESTAMP,
`modified` DATETIME DEFAULT NULL,
`checked_out` int(11) unsigned NOT NULL DEFAULT 0,
`checked_out_time` DATETIME DEFAULT NULL,
`version` INT(10) unsigned NOT NULL DEFAULT 1,
`hits` INT(10) unsigned NOT NULL DEFAULT 0,
`access` INT(10) unsigned NOT NULL DEFAULT 0,
`ordering` INT(11) NOT NULL DEFAULT 0,
PRIMARY KEY (`id`),
KEY `idx_system_name` (`system_name`),
KEY `idx_namespace` (`namespace`),
KEY `idx_type` (`type`),
KEY `idx_extends_custom` (`extends_custom`),
KEY `idx_implements_custom` (`implements_custom`),
KEY `idx_add_licensing_template` (`add_licensing_template`),
KEY `idx_guid` (`guid`),
KEY `idx_name` (`name`),
KEY `idx_access` (`access`),
KEY `idx_checkout` (`checked_out`),
KEY `idx_createdby` (`created_by`),
KEY `idx_modifiedby` (`modified_by`),
KEY `idx_state` (`published`)
) ENGINE=InnoDB AUTO_INCREMENT=0 DEFAULT CHARSET=utf8mb4 DEFAULT COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
CREATE TABLE IF NOT EXISTS `#__componentbuilder_admin_view` (
`id` INT(11) NOT NULL AUTO_INCREMENT,
`asset_id` INT(10) unsigned NOT NULL DEFAULT 0 COMMENT 'FK to the #__assets table.',
`add_category_submenu` TINYINT(1) NOT NULL DEFAULT 1,
`add_css_view` TINYINT(1) NOT NULL DEFAULT 0,
`add_css_views` TINYINT(1) NOT NULL DEFAULT 0,
`add_custom_button` INT(1) NOT NULL DEFAULT 0,
`add_custom_import` TINYINT(1) NOT NULL DEFAULT 0,
`add_fadein` TINYINT(1) NOT NULL DEFAULT 0,
`add_javascript_view_file` TINYINT(1) NOT NULL DEFAULT 0,
`add_javascript_view_footer` TINYINT(1) NOT NULL DEFAULT 0,
`add_javascript_views_file` TINYINT(1) NOT NULL DEFAULT 0,
`add_javascript_views_footer` TINYINT(1) NOT NULL DEFAULT 0,
`add_php_after_cancel` TINYINT(1) NOT NULL DEFAULT 0,
`add_php_after_delete` TINYINT(1) NOT NULL DEFAULT 0,
`add_php_after_publish` TINYINT(1) NOT NULL DEFAULT 0,
`add_php_ajax` TINYINT(1) NOT NULL DEFAULT 0,
`add_php_allowadd` TINYINT(1) NOT NULL DEFAULT 0,
`add_php_allowedit` TINYINT(1) NOT NULL DEFAULT 0,
`add_php_batchcopy` TINYINT(1) NOT NULL DEFAULT 0,
`add_php_batchmove` TINYINT(1) NOT NULL DEFAULT 0,
`add_php_before_cancel` TINYINT(1) NOT NULL DEFAULT 0,
`add_php_before_delete` TINYINT(1) NOT NULL DEFAULT 0,
`add_php_before_publish` TINYINT(1) NOT NULL DEFAULT 0,
`add_php_before_save` TINYINT(1) NOT NULL DEFAULT 0,
`add_php_document` TINYINT(1) NOT NULL DEFAULT 0,
`add_php_getform` TINYINT(1) NOT NULL DEFAULT 0,
`add_php_getitem` TINYINT(1) NOT NULL DEFAULT 0,
`add_php_getitems` TINYINT(1) NOT NULL DEFAULT 0,
`add_php_getitems_after_all` TINYINT(1) NOT NULL DEFAULT 0,
`add_php_getlistquery` TINYINT(1) NOT NULL DEFAULT 0,
`add_php_postsavehook` TINYINT(1) NOT NULL DEFAULT 0,
`add_php_save` TINYINT(1) NOT NULL DEFAULT 0,
`add_sql` TINYINT(1) NOT NULL DEFAULT 0,
`addlinked_views` TEXT NOT NULL,
`addpermissions` TEXT NOT NULL,
`addtables` TEXT NOT NULL,
`addtabs` TEXT NOT NULL,
`ajax_input` TEXT NOT NULL,
`alias_builder` VARCHAR(255) NOT NULL DEFAULT '',
`alias_builder_type` CHAR NOT NULL DEFAULT '',
`css_view` TEXT NOT NULL,
`css_views` TEXT NOT NULL,
`custom_button` TEXT NOT NULL,
`description` TEXT NULL,
`guid` VARCHAR(36) NOT NULL DEFAULT '',
`html_import_view` MEDIUMTEXT NOT NULL,
`icon` CHAR(64) NOT NULL DEFAULT '',
`icon_add` CHAR(64) NOT NULL DEFAULT '',
`icon_category` CHAR(64) NOT NULL DEFAULT '',
`javascript_view_file` TEXT NOT NULL,
`javascript_view_footer` TEXT NOT NULL,
`javascript_views_file` TEXT NOT NULL,
`javascript_views_footer` TEXT NOT NULL,
`mysql_table_charset` VARCHAR(64) NOT NULL DEFAULT 1,
`mysql_table_collate` VARCHAR(64) NOT NULL DEFAULT 1,
`mysql_table_engine` VARCHAR(64) NOT NULL DEFAULT 1,
`mysql_table_row_format` VARCHAR(64) NOT NULL DEFAULT 0,
`name_list` CHAR(64) NOT NULL DEFAULT '',
`name_single` CHAR(64) NOT NULL DEFAULT '',
`php_after_cancel` MEDIUMTEXT NOT NULL,
`php_after_delete` MEDIUMTEXT NOT NULL,
`php_after_publish` MEDIUMTEXT NOT NULL,
`php_ajaxmethod` MEDIUMTEXT NOT NULL,
`php_allowadd` MEDIUMTEXT NOT NULL,
`php_allowedit` MEDIUMTEXT NOT NULL,
`php_batchcopy` MEDIUMTEXT NOT NULL,
`php_batchmove` MEDIUMTEXT NOT NULL,
`php_before_cancel` MEDIUMTEXT NOT NULL,
`php_before_delete` MEDIUMTEXT NOT NULL,
`php_before_publish` MEDIUMTEXT NOT NULL,
`php_before_save` MEDIUMTEXT NOT NULL,
`php_controller` MEDIUMTEXT NOT NULL,
`php_controller_list` MEDIUMTEXT NOT NULL,
`php_document` MEDIUMTEXT NOT NULL,
`php_getform` MEDIUMTEXT NOT NULL,
`php_getitem` MEDIUMTEXT NOT NULL,
`php_getitems` MEDIUMTEXT NOT NULL,
`php_getitems_after_all` MEDIUMTEXT NOT NULL,
`php_getlistquery` MEDIUMTEXT NOT NULL,
`php_import` MEDIUMTEXT NOT NULL,
`php_import_display` MEDIUMTEXT NOT NULL,
`php_import_ext` MEDIUMTEXT NOT NULL,
`php_import_headers` MEDIUMTEXT NOT NULL,
`php_import_save` MEDIUMTEXT NOT NULL,
`php_import_setdata` MEDIUMTEXT NOT NULL,
`php_model` MEDIUMTEXT NOT NULL,
`php_model_list` MEDIUMTEXT NOT NULL,
`php_postsavehook` MEDIUMTEXT NOT NULL,
`php_save` MEDIUMTEXT NOT NULL,
`short_description` VARCHAR(255) NOT NULL DEFAULT '',
`source` TINYINT(1) NOT NULL DEFAULT 0,
`sql` MEDIUMTEXT NOT NULL,
`system_name` VARCHAR(255) NOT NULL DEFAULT '',
`type` INT(11) NOT NULL DEFAULT 0,
`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,
`created` DATETIME DEFAULT CURRENT_TIMESTAMP,
`modified` DATETIME DEFAULT NULL,
`checked_out` int(11) unsigned NOT NULL DEFAULT 0,
`checked_out_time` DATETIME DEFAULT NULL,
`version` INT(10) unsigned NOT NULL DEFAULT 1,
`hits` INT(10) unsigned NOT NULL DEFAULT 0,
`access` INT(10) unsigned NOT NULL DEFAULT 0,
`ordering` INT(11) NOT NULL DEFAULT 0,
PRIMARY KEY (`id`),
KEY `idx_name_single` (`name_single`),
KEY `idx_add_fadein` (`add_fadein`),
KEY `idx_mysql_table_charset` (`mysql_table_charset`),
KEY `idx_type` (`type`),
KEY `idx_source` (`source`),
KEY `idx_mysql_table_row_format` (`mysql_table_row_format`),
KEY `idx_add_category_submenu` (`add_category_submenu`),
KEY `idx_name_list` (`name_list`),
KEY `idx_add_php_getlistquery` (`add_php_getlistquery`),
KEY `idx_add_css_view` (`add_css_view`),
KEY `idx_add_php_getform` (`add_php_getform`),
KEY `idx_add_php_before_save` (`add_php_before_save`),
KEY `idx_add_css_views` (`add_css_views`),
KEY `idx_add_php_save` (`add_php_save`),
KEY `idx_add_php_postsavehook` (`add_php_postsavehook`),
KEY `idx_add_javascript_view_file` (`add_javascript_view_file`),
KEY `idx_add_php_allowadd` (`add_php_allowadd`),
KEY `idx_add_php_allowedit` (`add_php_allowedit`),
KEY `idx_add_javascript_view_footer` (`add_javascript_view_footer`),
KEY `idx_add_php_before_cancel` (`add_php_before_cancel`),
KEY `idx_add_php_after_cancel` (`add_php_after_cancel`),
KEY `idx_add_javascript_views_file` (`add_javascript_views_file`),
KEY `idx_add_php_batchcopy` (`add_php_batchcopy`),
KEY `idx_add_php_batchmove` (`add_php_batchmove`),
KEY `idx_add_javascript_views_footer` (`add_javascript_views_footer`),
KEY `idx_add_php_before_publish` (`add_php_before_publish`),
KEY `idx_add_php_after_publish` (`add_php_after_publish`),
KEY `idx_add_custom_button` (`add_custom_button`),
KEY `idx_add_php_before_delete` (`add_php_before_delete`),
KEY `idx_add_php_after_delete` (`add_php_after_delete`),
KEY `idx_add_php_document` (`add_php_document`),
KEY `idx_mysql_table_engine` (`mysql_table_engine`),
KEY `idx_mysql_table_collate` (`mysql_table_collate`),
KEY `idx_add_sql` (`add_sql`),
KEY `idx_add_php_ajax` (`add_php_ajax`),
KEY `idx_add_custom_import` (`add_custom_import`),
KEY `idx_add_php_getitem` (`add_php_getitem`),
KEY `idx_add_php_getitems` (`add_php_getitems`),
KEY `idx_guid` (`guid`),
KEY `idx_add_php_getitems_after_all` (`add_php_getitems_after_all`),
KEY `idx_access` (`access`),
KEY `idx_checkout` (`checked_out`),
KEY `idx_createdby` (`created_by`),
KEY `idx_modifiedby` (`modified_by`),
KEY `idx_state` (`published`)
) ENGINE=InnoDB AUTO_INCREMENT=0 DEFAULT CHARSET=utf8mb4 DEFAULT COLLATE=utf8mb4_general_ci ROW_FORMAT=DYNAMIC;
CREATE TABLE IF NOT EXISTS `#__componentbuilder_custom_admin_view` (
`id` INT(11) NOT NULL AUTO_INCREMENT,
`asset_id` INT(10) unsigned NOT NULL DEFAULT 0 COMMENT 'FK to the #__assets table.',
`add_css` TINYINT(1) NOT NULL DEFAULT 0,
`add_css_document` TINYINT(1) NOT NULL DEFAULT 0,
`add_custom_button` INT(1) NOT NULL DEFAULT 0,
`add_javascript_file` TINYINT(1) NOT NULL DEFAULT 0,
`add_js_document` TINYINT(1) NOT NULL DEFAULT 0,
`add_php_ajax` TINYINT(1) NOT NULL DEFAULT 0,
`add_php_document` TINYINT(1) NOT NULL DEFAULT 0,
`add_php_jview` TINYINT(1) NOT NULL DEFAULT 0,
`add_php_jview_display` TINYINT(1) NOT NULL DEFAULT 0,
`add_php_view` TINYINT(1) NOT NULL DEFAULT 0,
`ajax_input` TEXT NOT NULL,
`codename` VARCHAR(255) NOT NULL DEFAULT '',
`context` VARCHAR(255) NOT NULL DEFAULT '',
`css` TEXT NOT NULL,
`css_document` TEXT NOT NULL,
`custom_button` TEXT NOT NULL,
`custom_get` TEXT NOT NULL,
`default` MEDIUMTEXT NOT NULL,
`description` VARCHAR(255) NOT NULL DEFAULT '',
`dynamic_get` INT(11) NOT NULL DEFAULT 0,
`guid` VARCHAR(36) NOT NULL DEFAULT '',
`icon` CHAR(64) NOT NULL DEFAULT '',
`javascript_file` TEXT NOT NULL,
`js_document` TEXT NOT NULL,
`libraries` TEXT NOT NULL,
`main_get` INT(11) NOT NULL DEFAULT 0,
`name` VARCHAR(255) NOT NULL DEFAULT '',
`php_ajaxmethod` MEDIUMTEXT NOT NULL,
`php_controller` MEDIUMTEXT NOT NULL,
`php_document` MEDIUMTEXT NOT NULL,
`php_jview` MEDIUMTEXT NOT NULL,
`php_jview_display` MEDIUMTEXT NOT NULL,
`php_model` MEDIUMTEXT NOT NULL,
`php_view` MEDIUMTEXT NOT NULL,
`snippet` INT(11) NOT NULL DEFAULT 0,
`system_name` VARCHAR(255) NOT NULL DEFAULT '',
`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,
`created` DATETIME DEFAULT CURRENT_TIMESTAMP,
`modified` DATETIME DEFAULT NULL,
`checked_out` int(11) unsigned NOT NULL DEFAULT 0,
`checked_out_time` DATETIME DEFAULT NULL,
`version` INT(10) unsigned NOT NULL DEFAULT 1,
`hits` INT(10) unsigned NOT NULL DEFAULT 0,
`access` INT(10) unsigned NOT NULL DEFAULT 0,
`ordering` INT(11) NOT NULL DEFAULT 0,
PRIMARY KEY (`id`),
KEY `idx_name` (`name`),
KEY `idx_main_get` (`main_get`),
KEY `idx_add_php_jview_display` (`add_php_jview_display`),
KEY `idx_codename` (`codename`),
KEY `idx_add_php_jview` (`add_php_jview`),
KEY `idx_context` (`context`),
KEY `idx_add_js_document` (`add_js_document`),
KEY `idx_add_javascript_file` (`add_javascript_file`),
KEY `idx_add_css_document` (`add_css_document`),
KEY `idx_add_php_document` (`add_php_document`),
KEY `idx_add_css` (`add_css`),
KEY `idx_add_php_view` (`add_php_view`),
KEY `idx_add_php_ajax` (`add_php_ajax`),
KEY `idx_dynamic_get` (`dynamic_get`),
KEY `idx_add_custom_button` (`add_custom_button`),
KEY `idx_guid` (`guid`),
KEY `idx_access` (`access`),
KEY `idx_checkout` (`checked_out`),
KEY `idx_createdby` (`created_by`),
KEY `idx_modifiedby` (`modified_by`),
KEY `idx_state` (`published`)
) ENGINE=InnoDB AUTO_INCREMENT=0 DEFAULT CHARSET=utf8mb4 DEFAULT COLLATE=utf8mb4_general_ci ROW_FORMAT=DYNAMIC;
CREATE TABLE IF NOT EXISTS `#__componentbuilder_site_view` (
`id` INT(11) NOT NULL AUTO_INCREMENT,
`asset_id` INT(10) unsigned NOT NULL DEFAULT 0 COMMENT 'FK to the #__assets table.',
`add_css` TINYINT(1) NOT NULL DEFAULT 0,
`add_css_document` TINYINT(1) NOT NULL DEFAULT 0,
`add_custom_button` INT(1) NOT NULL DEFAULT 0,
`add_javascript_file` TINYINT(1) NOT NULL DEFAULT 0,
`add_js_document` TINYINT(1) NOT NULL DEFAULT 0,
`add_php_ajax` TINYINT(1) NOT NULL DEFAULT 0,
`add_php_document` TINYINT(1) NOT NULL DEFAULT 0,
`add_php_jview` TINYINT(1) NOT NULL DEFAULT 0,
`add_php_jview_display` TINYINT(1) NOT NULL DEFAULT 0,
`add_php_view` TINYINT(1) NOT NULL DEFAULT 0,
`ajax_input` TEXT NOT NULL,
`button_position` TINYINT(1) NOT NULL DEFAULT 1,
`codename` VARCHAR(255) NOT NULL DEFAULT '',
`context` VARCHAR(255) NOT NULL DEFAULT '',
`css` TEXT NOT NULL,
`css_document` TEXT NOT NULL,
`custom_button` TEXT NOT NULL,
`custom_get` TEXT NOT NULL,
`default` MEDIUMTEXT NOT NULL,
`description` VARCHAR(255) NOT NULL DEFAULT '',
`dynamic_get` INT(11) NOT NULL DEFAULT 0,
`guid` VARCHAR(36) NOT NULL DEFAULT '',
`javascript_file` TEXT NOT NULL,
`js_document` TEXT NOT NULL,
`libraries` TEXT NOT NULL,
`main_get` INT(11) NOT NULL DEFAULT 0,
`name` VARCHAR(255) NOT NULL DEFAULT '',
`php_ajaxmethod` MEDIUMTEXT NOT NULL,
`php_controller` MEDIUMTEXT NOT NULL,
`php_document` MEDIUMTEXT NOT NULL,
`php_jview` MEDIUMTEXT NOT NULL,
`php_jview_display` MEDIUMTEXT NOT NULL,
`php_model` MEDIUMTEXT NOT NULL,
`php_view` MEDIUMTEXT NOT NULL,
`snippet` INT(11) NOT NULL DEFAULT 0,
`system_name` VARCHAR(255) NOT NULL DEFAULT '',
`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,
`created` DATETIME DEFAULT CURRENT_TIMESTAMP,
`modified` DATETIME DEFAULT NULL,
`checked_out` int(11) unsigned NOT NULL DEFAULT 0,
`checked_out_time` DATETIME DEFAULT NULL,
`version` INT(10) unsigned NOT NULL DEFAULT 1,
`hits` INT(10) unsigned NOT NULL DEFAULT 0,
`access` INT(10) unsigned NOT NULL DEFAULT 0,
`ordering` INT(11) NOT NULL DEFAULT 0,
PRIMARY KEY (`id`),
KEY `idx_name` (`name`),
KEY `idx_main_get` (`main_get`),
KEY `idx_add_php_jview_display` (`add_php_jview_display`),
KEY `idx_add_php_document` (`add_php_document`),
KEY `idx_add_php_view` (`add_php_view`),
KEY `idx_codename` (`codename`),
KEY `idx_context` (`context`),
KEY `idx_add_php_jview` (`add_php_jview`),
KEY `idx_add_javascript_file` (`add_javascript_file`),
KEY `idx_add_js_document` (`add_js_document`),
KEY `idx_add_css_document` (`add_css_document`),
KEY `idx_add_css` (`add_css`),
KEY `idx_dynamic_get` (`dynamic_get`),
KEY `idx_add_php_ajax` (`add_php_ajax`),
KEY `idx_add_custom_button` (`add_custom_button`),
KEY `idx_button_position` (`button_position`),
KEY `idx_guid` (`guid`),
KEY `idx_access` (`access`),
KEY `idx_checkout` (`checked_out`),
KEY `idx_createdby` (`created_by`),
KEY `idx_modifiedby` (`modified_by`),
KEY `idx_state` (`published`)
) ENGINE=InnoDB AUTO_INCREMENT=0 DEFAULT CHARSET=utf8mb4 DEFAULT COLLATE=utf8mb4_general_ci ROW_FORMAT=DYNAMIC;
CREATE TABLE IF NOT EXISTS `#__componentbuilder_template` (
`id` INT(11) NOT NULL AUTO_INCREMENT,
`asset_id` INT(10) unsigned NOT NULL DEFAULT 0 COMMENT 'FK to the #__assets table.',
`add_php_view` TINYINT(1) NOT NULL DEFAULT 0,
`alias` VARCHAR(255) NOT NULL DEFAULT '',
`description` VARCHAR(255) NOT NULL DEFAULT '',
`dynamic_get` INT(11) NOT NULL DEFAULT 0,
`libraries` TEXT NOT NULL,
`name` VARCHAR(255) NOT NULL DEFAULT '',
`php_view` MEDIUMTEXT NOT NULL,
`snippet` INT(11) NOT NULL DEFAULT 0,
`template` TEXT NOT 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,
`created` DATETIME DEFAULT CURRENT_TIMESTAMP,
`modified` DATETIME DEFAULT NULL,
`checked_out` int(11) unsigned NOT NULL DEFAULT 0,
`checked_out_time` DATETIME DEFAULT NULL,
`version` INT(10) unsigned NOT NULL DEFAULT 1,
`hits` INT(10) unsigned NOT NULL DEFAULT 0,
`access` INT(10) unsigned NOT NULL DEFAULT 0,
`ordering` INT(11) NOT NULL DEFAULT 0,
PRIMARY KEY (`id`),
KEY `idx_name` (`name`),
KEY `idx_dynamic_get` (`dynamic_get`),
KEY `idx_add_php_view` (`add_php_view`),
KEY `idx_alias` (`alias`),
KEY `idx_access` (`access`),
KEY `idx_checkout` (`checked_out`),
KEY `idx_createdby` (`created_by`),
KEY `idx_modifiedby` (`modified_by`),
KEY `idx_state` (`published`)
) ENGINE=InnoDB AUTO_INCREMENT=0 DEFAULT CHARSET=utf8mb4 DEFAULT COLLATE=utf8mb4_general_ci ROW_FORMAT=DYNAMIC;
CREATE TABLE IF NOT EXISTS `#__componentbuilder_layout` (
`id` INT(11) NOT NULL AUTO_INCREMENT,
`asset_id` INT(10) unsigned NOT NULL DEFAULT 0 COMMENT 'FK to the #__assets table.',
`add_php_view` TINYINT(1) NOT NULL DEFAULT 0,
`alias` VARCHAR(255) NOT NULL DEFAULT '',
`description` VARCHAR(255) NOT NULL DEFAULT '',
`dynamic_get` INT(11) NOT NULL DEFAULT 0,
`layout` TEXT NOT NULL,
`libraries` TEXT NOT NULL,
`name` VARCHAR(255) NOT NULL DEFAULT '',
`php_view` MEDIUMTEXT NOT NULL,
`snippet` INT(11) NOT NULL DEFAULT 0,
`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,
`created` DATETIME DEFAULT CURRENT_TIMESTAMP,
`modified` DATETIME DEFAULT NULL,
`checked_out` int(11) unsigned NOT NULL DEFAULT 0,
`checked_out_time` DATETIME DEFAULT NULL,
`version` INT(10) unsigned NOT NULL DEFAULT 1,
`hits` INT(10) unsigned NOT NULL DEFAULT 0,
`access` INT(10) unsigned NOT NULL DEFAULT 0,
`ordering` INT(11) NOT NULL DEFAULT 0,
PRIMARY KEY (`id`),
KEY `idx_name` (`name`),
KEY `idx_dynamic_get` (`dynamic_get`),
KEY `idx_add_php_view` (`add_php_view`),
KEY `idx_alias` (`alias`),
KEY `idx_access` (`access`),
KEY `idx_checkout` (`checked_out`),
KEY `idx_createdby` (`created_by`),
KEY `idx_modifiedby` (`modified_by`),
KEY `idx_state` (`published`)
) ENGINE=InnoDB AUTO_INCREMENT=0 DEFAULT CHARSET=utf8mb4 DEFAULT COLLATE=utf8mb4_general_ci ROW_FORMAT=DYNAMIC;
CREATE TABLE IF NOT EXISTS `#__componentbuilder_dynamic_get` (
`id` INT(11) NOT NULL AUTO_INCREMENT,
`asset_id` INT(10) unsigned NOT NULL DEFAULT 0 COMMENT 'FK to the #__assets table.',
`add_php_after_getitem` TINYINT(1) NOT NULL DEFAULT 0,
`add_php_after_getitems` TINYINT(1) NOT NULL DEFAULT 0,
`add_php_before_getitem` TINYINT(1) NOT NULL DEFAULT 0,
`add_php_before_getitems` TINYINT(1) NOT NULL DEFAULT 0,
`add_php_getlistquery` TINYINT(1) NOT NULL DEFAULT 0,
`add_php_router_parse` TINYINT(1) NOT NULL DEFAULT 0,
`addcalculation` CHAR NOT NULL DEFAULT '',
`db_selection` TEXT NOT NULL,
`db_table_main` VARCHAR(255) NOT NULL DEFAULT '',
`filter` TEXT NOT NULL,
`getcustom` VARCHAR(255) NOT NULL DEFAULT '',
`gettype` TINYINT(1) NOT NULL DEFAULT 0,
`global` TEXT NOT NULL,
`group` TEXT NOT NULL,
`guid` VARCHAR(36) NOT NULL DEFAULT '',
`join_db_table` TEXT NOT NULL,
`join_view_table` TEXT NOT NULL,
`main_source` TINYINT(1) NOT NULL DEFAULT 0,
`name` VARCHAR(255) NOT NULL DEFAULT '',
`order` TEXT NOT NULL,
`pagination` TINYINT(1) NOT NULL DEFAULT 1,
`php_after_getitem` MEDIUMTEXT NOT NULL,
`php_after_getitems` MEDIUMTEXT NOT NULL,
`php_before_getitem` MEDIUMTEXT NOT NULL,
`php_before_getitems` MEDIUMTEXT NOT NULL,
`php_calculation` MEDIUMTEXT NOT NULL,
`php_custom_get` MEDIUMTEXT NOT NULL,
`php_getlistquery` MEDIUMTEXT NOT NULL,
`php_router_parse` MEDIUMTEXT NOT NULL,
`plugin_events` VARCHAR(255) NOT NULL DEFAULT '',
`select_all` TINYINT(1) NOT NULL DEFAULT 0,
`view_selection` TEXT NOT NULL,
`view_table_main` INT(11) NOT NULL DEFAULT 0,
`where` TEXT NOT 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,
`created` DATETIME DEFAULT CURRENT_TIMESTAMP,
`modified` DATETIME DEFAULT NULL,
`checked_out` int(11) unsigned NOT NULL DEFAULT 0,
`checked_out_time` DATETIME DEFAULT NULL,
`version` INT(10) unsigned NOT NULL DEFAULT 1,
`hits` INT(10) unsigned NOT NULL DEFAULT 0,
`access` INT(10) unsigned NOT NULL DEFAULT 0,
`ordering` INT(11) NOT NULL DEFAULT 0,
PRIMARY KEY (`id`),
KEY `idx_name` (`name`),
KEY `idx_main_source` (`main_source`),
KEY `idx_gettype` (`gettype`),
KEY `idx_add_php_after_getitems` (`add_php_after_getitems`),
KEY `idx_add_php_router_parse` (`add_php_router_parse`),
KEY `idx_add_php_before_getitems` (`add_php_before_getitems`),
KEY `idx_add_php_before_getitem` (`add_php_before_getitem`),
KEY `idx_add_php_after_getitem` (`add_php_after_getitem`),
KEY `idx_add_php_getlistquery` (`add_php_getlistquery`),
KEY `idx_select_all` (`select_all`),
KEY `idx_getcustom` (`getcustom`),
KEY `idx_pagination` (`pagination`),
KEY `idx_guid` (`guid`),
KEY `idx_access` (`access`),
KEY `idx_checkout` (`checked_out`),
KEY `idx_createdby` (`created_by`),
KEY `idx_modifiedby` (`modified_by`),
KEY `idx_state` (`published`)
) ENGINE=InnoDB AUTO_INCREMENT=0 DEFAULT CHARSET=utf8mb4 DEFAULT COLLATE=utf8mb4_general_ci ROW_FORMAT=DYNAMIC;
CREATE TABLE IF NOT EXISTS `#__componentbuilder_custom_code` (
`id` INT(11) NOT NULL AUTO_INCREMENT,
`asset_id` INT(10) unsigned NOT NULL DEFAULT 0 COMMENT 'FK to the #__assets table.',
`code` MEDIUMTEXT NOT NULL,
`comment_type` TINYINT(1) NOT NULL DEFAULT 1,
`component` INT(11) NOT NULL DEFAULT 0,
`from_line` VARCHAR(100) NOT NULL DEFAULT '',
`function_name` VARCHAR(255) NOT NULL DEFAULT '',
`hashendtarget` VARCHAR(64) NOT NULL DEFAULT '',
`hashtarget` VARCHAR(64) NOT NULL DEFAULT '',
`joomla_version` INT(11) NOT NULL DEFAULT 3,
`path` TEXT NOT NULL,
`system_name` VARCHAR(255) NOT NULL DEFAULT '',
`target` TINYINT(1) NOT NULL DEFAULT 0,
`to_line` VARCHAR(100) NOT NULL DEFAULT '',
`type` TINYINT(1) NOT NULL DEFAULT 0,
`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,
`created` DATETIME DEFAULT CURRENT_TIMESTAMP,
`modified` DATETIME DEFAULT NULL,
`checked_out` int(11) unsigned NOT NULL DEFAULT 0,
`checked_out_time` DATETIME DEFAULT NULL,
`version` INT(10) unsigned NOT NULL DEFAULT 1,
`hits` INT(10) unsigned NOT NULL DEFAULT 0,
`access` INT(10) unsigned NOT NULL DEFAULT 0,
`ordering` INT(11) NOT NULL DEFAULT 0,
PRIMARY KEY (`id`),
KEY `idx_component` (`component`),
KEY `idx_target` (`target`),
KEY `idx_type` (`type`),
KEY `idx_function_name` (`function_name`),
KEY `idx_to_line` (`to_line`),
KEY `idx_from_line` (`from_line`),
KEY `idx_access` (`access`),
KEY `idx_checkout` (`checked_out`),
KEY `idx_createdby` (`created_by`),
KEY `idx_modifiedby` (`modified_by`),
KEY `idx_state` (`published`)
) ENGINE=InnoDB AUTO_INCREMENT=0 DEFAULT CHARSET=utf8mb4 DEFAULT COLLATE=utf8mb4_general_ci ROW_FORMAT=DYNAMIC;
CREATE TABLE IF NOT EXISTS `#__componentbuilder_class_property` (
`id` INT(11) NOT NULL AUTO_INCREMENT,
`asset_id` INT(10) unsigned NOT NULL DEFAULT 0 COMMENT 'FK to the #__assets table.',
`comment` TEXT NOT NULL,
`default` TEXT NOT NULL,
`extension_type` VARCHAR(64) NOT NULL DEFAULT '',
`guid` VARCHAR(36) NOT NULL DEFAULT '',
`joomla_plugin_group` INT(11) NOT NULL DEFAULT 0,
`name` VARCHAR(255) NOT NULL DEFAULT '',
`visibility` VARCHAR(255) NOT NULL DEFAULT '',
`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,
`created` DATETIME DEFAULT CURRENT_TIMESTAMP,
`modified` DATETIME DEFAULT NULL,
`checked_out` int(11) unsigned NOT NULL DEFAULT 0,
`checked_out_time` DATETIME DEFAULT NULL,
`version` INT(10) unsigned NOT NULL DEFAULT 1,
`hits` INT(10) unsigned NOT NULL DEFAULT 0,
`access` INT(10) unsigned NOT NULL DEFAULT 0,
`ordering` INT(11) NOT NULL DEFAULT 0,
PRIMARY KEY (`id`),
KEY `idx_name` (`name`),
KEY `idx_visibility` (`visibility`),
KEY `idx_guid` (`guid`),
KEY `idx_joomla_plugin_group` (`joomla_plugin_group`),
KEY `idx_access` (`access`),
KEY `idx_checkout` (`checked_out`),
KEY `idx_createdby` (`created_by`),
KEY `idx_modifiedby` (`modified_by`),
KEY `idx_state` (`published`)
) ENGINE=InnoDB AUTO_INCREMENT=0 DEFAULT CHARSET=utf8mb4 DEFAULT COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
CREATE TABLE IF NOT EXISTS `#__componentbuilder_class_method` (
`id` INT(11) NOT NULL AUTO_INCREMENT,
`asset_id` INT(10) unsigned NOT NULL DEFAULT 0 COMMENT 'FK to the #__assets table.',
`arguments` TEXT NOT NULL,
`code` MEDIUMTEXT NOT NULL,
`comment` TEXT NOT NULL,
`extension_type` VARCHAR(64) NOT NULL DEFAULT '',
`guid` VARCHAR(36) NOT NULL DEFAULT '',
`joomla_plugin_group` INT(11) NOT NULL DEFAULT 0,
`name` VARCHAR(255) NOT NULL DEFAULT '',
`visibility` VARCHAR(255) NOT NULL DEFAULT '',
`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,
`created` DATETIME DEFAULT CURRENT_TIMESTAMP,
`modified` DATETIME DEFAULT NULL,
`checked_out` int(11) unsigned NOT NULL DEFAULT 0,
`checked_out_time` DATETIME DEFAULT NULL,
`version` INT(10) unsigned NOT NULL DEFAULT 1,
`hits` INT(10) unsigned NOT NULL DEFAULT 0,
`access` INT(10) unsigned NOT NULL DEFAULT 0,
`ordering` INT(11) NOT NULL DEFAULT 0,
PRIMARY KEY (`id`),
KEY `idx_name` (`name`),
KEY `idx_visibility` (`visibility`),
KEY `idx_guid` (`guid`),
KEY `idx_joomla_plugin_group` (`joomla_plugin_group`),
KEY `idx_access` (`access`),
KEY `idx_checkout` (`checked_out`),
KEY `idx_createdby` (`created_by`),
KEY `idx_modifiedby` (`modified_by`),
KEY `idx_state` (`published`)
) ENGINE=InnoDB AUTO_INCREMENT=0 DEFAULT CHARSET=utf8mb4 DEFAULT COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
CREATE TABLE IF NOT EXISTS `#__componentbuilder_placeholder` (
`id` INT(11) NOT NULL AUTO_INCREMENT,
`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,
`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,
`created` DATETIME DEFAULT CURRENT_TIMESTAMP,
`modified` DATETIME DEFAULT NULL,
`checked_out` int(11) unsigned NOT NULL DEFAULT 0,
`checked_out_time` DATETIME DEFAULT NULL,
`version` INT(10) unsigned NOT NULL DEFAULT 1,
`hits` INT(10) unsigned NOT NULL DEFAULT 0,
`access` INT(10) unsigned NOT NULL DEFAULT 0,
`ordering` INT(11) NOT NULL DEFAULT 0,
PRIMARY KEY (`id`),
KEY `idx_target` (`target`),
KEY `idx_access` (`access`),
KEY `idx_checkout` (`checked_out`),
KEY `idx_createdby` (`created_by`),
KEY `idx_modifiedby` (`modified_by`),
KEY `idx_state` (`published`)
) ENGINE=InnoDB AUTO_INCREMENT=0 DEFAULT CHARSET=utf8mb4 DEFAULT COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
CREATE TABLE IF NOT EXISTS `#__componentbuilder_library` (
`id` INT(11) NOT NULL AUTO_INCREMENT,
`asset_id` INT(10) unsigned NOT NULL DEFAULT 0 COMMENT 'FK to the #__assets table.',
`addconditions` MEDIUMTEXT NOT NULL,
`description` VARCHAR(255) NOT NULL DEFAULT '',
`guid` VARCHAR(36) NOT NULL DEFAULT '',
`how` TINYINT(1) NOT NULL DEFAULT 1,
`libraries` TEXT NOT NULL,
`name` VARCHAR(255) NOT NULL DEFAULT '',
`php_setdocument` MEDIUMTEXT NOT NULL,
`target` TINYINT(1) NOT NULL DEFAULT 1,
`type` TINYINT(1) NOT NULL DEFAULT 0,
`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,
`created` DATETIME DEFAULT CURRENT_TIMESTAMP,
`modified` DATETIME DEFAULT NULL,
`checked_out` int(11) unsigned NOT NULL DEFAULT 0,
`checked_out_time` DATETIME DEFAULT NULL,
`version` INT(10) unsigned NOT NULL DEFAULT 1,
`hits` INT(10) unsigned NOT NULL DEFAULT 0,
`access` INT(10) unsigned NOT NULL DEFAULT 0,
`ordering` INT(11) NOT NULL DEFAULT 0,
PRIMARY KEY (`id`),
KEY `idx_name` (`name`),
KEY `idx_how` (`how`),
KEY `idx_guid` (`guid`),
KEY `idx_access` (`access`),
KEY `idx_checkout` (`checked_out`),
KEY `idx_createdby` (`created_by`),
KEY `idx_modifiedby` (`modified_by`),
KEY `idx_state` (`published`)
) ENGINE=InnoDB AUTO_INCREMENT=0 DEFAULT CHARSET=utf8mb4 DEFAULT COLLATE=utf8mb4_general_ci ROW_FORMAT=DYNAMIC;
CREATE TABLE IF NOT EXISTS `#__componentbuilder_snippet` (
`id` INT(11) NOT NULL AUTO_INCREMENT,
`asset_id` INT(10) unsigned NOT NULL DEFAULT 0 COMMENT 'FK to the #__assets table.',
`contributor_company` VARCHAR(255) NOT NULL DEFAULT '',
`contributor_email` VARCHAR(255) NOT NULL DEFAULT '',
`contributor_name` VARCHAR(255) NOT NULL DEFAULT '',
`contributor_website` VARCHAR(255) NOT NULL DEFAULT '',
`description` TEXT NULL,
`guid` VARCHAR(36) NOT NULL DEFAULT '',
`heading` VARCHAR(255) NOT NULL DEFAULT '',
`library` INT(11) NOT NULL DEFAULT 0,
`name` VARCHAR(255) NOT NULL DEFAULT '',
`snippet` TEXT NOT NULL,
`type` INT(11) NOT NULL DEFAULT 0,
`url` VARCHAR(255) NOT NULL DEFAULT '',
`usage` TEXT NOT 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,
`created` DATETIME DEFAULT CURRENT_TIMESTAMP,
`modified` DATETIME DEFAULT NULL,
`checked_out` int(11) unsigned NOT NULL DEFAULT 0,
`checked_out_time` DATETIME DEFAULT NULL,
`version` INT(10) unsigned NOT NULL DEFAULT 1,
`hits` INT(10) unsigned NOT NULL DEFAULT 0,
`access` INT(10) unsigned NOT NULL DEFAULT 0,
`ordering` INT(11) NOT NULL DEFAULT 0,
PRIMARY KEY (`id`),
KEY `idx_name` (`name`),
KEY `idx_type` (`type`),
KEY `idx_library` (`library`),
KEY `idx_guid` (`guid`),
KEY `idx_access` (`access`),
KEY `idx_checkout` (`checked_out`),
KEY `idx_createdby` (`created_by`),
KEY `idx_modifiedby` (`modified_by`),
KEY `idx_state` (`published`)
) ENGINE=InnoDB AUTO_INCREMENT=0 DEFAULT CHARSET=utf8mb4 DEFAULT COLLATE=utf8mb4_general_ci ROW_FORMAT=DYNAMIC;
CREATE TABLE IF NOT EXISTS `#__componentbuilder_validation_rule` (
`id` INT(11) NOT NULL AUTO_INCREMENT,
`asset_id` INT(10) unsigned NOT NULL DEFAULT 0 COMMENT 'FK to the #__assets table.',
`inherit` CHAR(64) NOT NULL DEFAULT '',
`name` VARCHAR(255) NOT NULL DEFAULT '',
`php` MEDIUMTEXT NOT NULL,
`short_description` VARCHAR(255) NOT NULL DEFAULT '',
`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,
`created` DATETIME DEFAULT CURRENT_TIMESTAMP,
`modified` DATETIME DEFAULT NULL,
`checked_out` int(11) unsigned NOT NULL DEFAULT 0,
`checked_out_time` DATETIME DEFAULT NULL,
`version` INT(10) unsigned NOT NULL DEFAULT 1,
`hits` INT(10) unsigned NOT NULL DEFAULT 0,
`access` INT(10) unsigned NOT NULL DEFAULT 0,
`ordering` INT(11) NOT NULL DEFAULT 0,
PRIMARY KEY (`id`),
KEY `idx_name` (`name`),
KEY `idx_access` (`access`),
KEY `idx_checkout` (`checked_out`),
KEY `idx_createdby` (`created_by`),
KEY `idx_modifiedby` (`modified_by`),
KEY `idx_state` (`published`)
) ENGINE=InnoDB AUTO_INCREMENT=0 DEFAULT CHARSET=utf8mb4 DEFAULT COLLATE=utf8mb4_general_ci ROW_FORMAT=DYNAMIC;
CREATE TABLE IF NOT EXISTS `#__componentbuilder_field` (
`id` INT(11) NOT NULL AUTO_INCREMENT,
`asset_id` INT(10) unsigned NOT NULL DEFAULT 0 COMMENT 'FK to the #__assets table.',
`add_css_view` TINYINT(1) NOT NULL DEFAULT 0,
`add_css_views` TINYINT(1) NOT NULL DEFAULT 0,
`add_javascript_view_footer` TINYINT(1) NOT NULL DEFAULT 0,
`add_javascript_views_footer` TINYINT(1) NOT NULL DEFAULT 0,
`catid` INT(11) NOT NULL DEFAULT 0,
`css_view` TEXT NOT NULL,
`css_views` TEXT NOT NULL,
`datadefault` CHAR(64) NOT NULL DEFAULT '',
`datadefault_other` CHAR(64) NOT NULL DEFAULT '',
`datalenght` CHAR(64) NOT NULL DEFAULT '',
`datalenght_other` CHAR(64) NOT NULL DEFAULT '',
`datatype` CHAR(64) NOT NULL DEFAULT '',
`fieldtype` INT(11) NOT NULL DEFAULT 0,
`guid` VARCHAR(36) NOT NULL DEFAULT '',
`indexes` CHAR(64) NOT NULL DEFAULT '',
`initiator_on_get_model` TEXT NOT NULL,
`initiator_on_save_model` TEXT NOT NULL,
`javascript_view_footer` TEXT NOT NULL,
`javascript_views_footer` TEXT NOT NULL,
`name` VARCHAR(255) NOT NULL DEFAULT '',
`null_switch` CHAR(64) NOT NULL DEFAULT '',
`on_get_model_field` TEXT NOT NULL,
`on_save_model_field` TEXT NOT NULL,
`store` INT(11) NOT NULL DEFAULT 0,
`xml` TEXT NOT 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,
`created` DATETIME DEFAULT CURRENT_TIMESTAMP,
`modified` DATETIME DEFAULT NULL,
`checked_out` int(11) unsigned NOT NULL DEFAULT 0,
`checked_out_time` DATETIME DEFAULT NULL,
`version` INT(10) unsigned NOT NULL DEFAULT 1,
`hits` INT(10) unsigned NOT NULL DEFAULT 0,
`access` INT(10) unsigned NOT NULL DEFAULT 0,
`ordering` INT(11) NOT NULL DEFAULT 0,
PRIMARY KEY (`id`),
KEY `idx_name` (`name`),
KEY `idx_fieldtype` (`fieldtype`),
KEY `idx_datatype` (`datatype`),
KEY `idx_indexes` (`indexes`),
KEY `idx_null_switch` (`null_switch`),
KEY `idx_catid` (`catid`),
KEY `idx_datalenght` (`datalenght`),
KEY `idx_datadefault_other` (`datadefault_other`),
KEY `idx_datadefault` (`datadefault`),
KEY `idx_datalenght_other` (`datalenght_other`),
KEY `idx_add_css_view` (`add_css_view`),
KEY `idx_add_css_views` (`add_css_views`),
KEY `idx_add_javascript_view_footer` (`add_javascript_view_footer`),
KEY `idx_add_javascript_views_footer` (`add_javascript_views_footer`),
KEY `idx_guid` (`guid`),
KEY `idx_access` (`access`),
KEY `idx_checkout` (`checked_out`),
KEY `idx_createdby` (`created_by`),
KEY `idx_modifiedby` (`modified_by`),
KEY `idx_state` (`published`)
) ENGINE=InnoDB AUTO_INCREMENT=0 DEFAULT CHARSET=utf8mb4 DEFAULT COLLATE=utf8mb4_general_ci ROW_FORMAT=DYNAMIC;
CREATE TABLE IF NOT EXISTS `#__componentbuilder_fieldtype` (
`id` INT(11) NOT NULL AUTO_INCREMENT,
`asset_id` INT(10) unsigned NOT NULL DEFAULT 0 COMMENT 'FK to the #__assets table.',
`catid` INT(11) NOT NULL DEFAULT 0,
`datadefault` CHAR(64) NOT NULL DEFAULT '',
`datadefault_other` CHAR(64) NOT NULL DEFAULT '',
`datalenght` CHAR(64) NOT NULL DEFAULT '',
`datalenght_other` CHAR(64) NOT NULL DEFAULT '',
`datatype` CHAR(64) NOT NULL DEFAULT '',
`description` TEXT NULL,
`guid` VARCHAR(36) NOT NULL DEFAULT '',
`has_defaults` TINYINT(1) NOT NULL DEFAULT 0,
`indexes` CHAR(64) NOT NULL DEFAULT '',
`name` VARCHAR(255) NOT NULL DEFAULT '',
`null_switch` CHAR(64) NOT NULL DEFAULT '',
`properties` TEXT NOT NULL,
`short_description` VARCHAR(255) NOT NULL DEFAULT '',
`store` INT(11) NOT NULL DEFAULT 0,
`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,
`created` DATETIME DEFAULT CURRENT_TIMESTAMP,
`modified` DATETIME DEFAULT NULL,
`checked_out` int(11) unsigned NOT NULL DEFAULT 0,
`checked_out_time` DATETIME DEFAULT NULL,
`version` INT(10) unsigned NOT NULL DEFAULT 1,
`hits` INT(10) unsigned NOT NULL DEFAULT 0,
`access` INT(10) unsigned NOT NULL DEFAULT 0,
`ordering` INT(11) NOT NULL DEFAULT 0,
PRIMARY KEY (`id`),
KEY `idx_name` (`name`),
KEY `idx_null_switch` (`null_switch`),
KEY `idx_indexes` (`indexes`),
KEY `idx_datadefault_other` (`datadefault_other`),
KEY `idx_datadefault` (`datadefault`),
KEY `idx_datatype` (`datatype`),
KEY `idx_has_defaults` (`has_defaults`),
KEY `idx_datalenght` (`datalenght`),
KEY `idx_datalenght_other` (`datalenght_other`),
KEY `idx_guid` (`guid`),
KEY `idx_catid` (`catid`),
KEY `idx_access` (`access`),
KEY `idx_checkout` (`checked_out`),
KEY `idx_createdby` (`created_by`),
KEY `idx_modifiedby` (`modified_by`),
KEY `idx_state` (`published`)
) ENGINE=InnoDB AUTO_INCREMENT=0 DEFAULT CHARSET=utf8mb4 DEFAULT COLLATE=utf8mb4_general_ci ROW_FORMAT=DYNAMIC;
CREATE TABLE IF NOT EXISTS `#__componentbuilder_language_translation` (
`id` INT(11) NOT NULL AUTO_INCREMENT,
`asset_id` INT(10) unsigned NOT NULL DEFAULT 0 COMMENT 'FK to the #__assets table.',
`components` TEXT NULL,
`modules` TEXT NULL,
`plugins` TEXT NULL,
`source` MEDIUMTEXT NOT NULL,
`translation` 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,
`created` DATETIME DEFAULT CURRENT_TIMESTAMP,
`modified` DATETIME DEFAULT NULL,
`checked_out` int(11) unsigned NOT NULL DEFAULT 0,
`checked_out_time` DATETIME DEFAULT NULL,
`version` INT(10) unsigned NOT NULL DEFAULT 1,
`hits` INT(10) unsigned NOT NULL DEFAULT 0,
`access` INT(10) unsigned NOT NULL DEFAULT 0,
`ordering` INT(11) NOT NULL DEFAULT 0,
PRIMARY KEY (`id`),
KEY `idx_access` (`access`),
KEY `idx_checkout` (`checked_out`),
KEY `idx_createdby` (`created_by`),
KEY `idx_modifiedby` (`modified_by`),
KEY `idx_state` (`published`)
) ENGINE=InnoDB AUTO_INCREMENT=0 DEFAULT CHARSET=utf8mb4 DEFAULT COLLATE=utf8mb4_general_ci ROW_FORMAT=DYNAMIC;
CREATE TABLE IF NOT EXISTS `#__componentbuilder_language` (
`id` INT(11) NOT NULL AUTO_INCREMENT,
`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,
`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,
`created` DATETIME DEFAULT CURRENT_TIMESTAMP,
`modified` DATETIME DEFAULT NULL,
`checked_out` int(11) unsigned NOT NULL DEFAULT 0,
`checked_out_time` DATETIME DEFAULT NULL,
`version` INT(10) unsigned NOT NULL DEFAULT 1,
`hits` INT(10) unsigned NOT NULL DEFAULT 0,
`access` INT(10) unsigned NOT NULL DEFAULT 0,
`ordering` INT(11) NOT NULL DEFAULT 0,
PRIMARY KEY (`id`),
KEY `idx_name` (`name`),
KEY `idx_access` (`access`),
KEY `idx_checkout` (`checked_out`),
KEY `idx_createdby` (`created_by`),
KEY `idx_modifiedby` (`modified_by`),
KEY `idx_state` (`published`)
) ENGINE=InnoDB AUTO_INCREMENT=0 DEFAULT CHARSET=utf8mb4 DEFAULT COLLATE=utf8mb4_general_ci ROW_FORMAT=DYNAMIC;
CREATE TABLE IF NOT EXISTS `#__componentbuilder_server` (
`id` INT(11) NOT NULL AUTO_INCREMENT,
`asset_id` INT(10) unsigned NOT NULL DEFAULT 0 COMMENT 'FK to the #__assets table.',
`authentication` TINYINT(1) NOT NULL DEFAULT 0,
`host` TEXT NOT NULL,
`name` VARCHAR(255) NOT NULL DEFAULT '',
`password` TEXT NOT NULL,
`path` TEXT NOT NULL,
`port` TEXT NOT NULL,
`private` TEXT NOT NULL,
`private_key` TEXT NOT NULL,
`protocol` TINYINT(1) NOT NULL DEFAULT 0,
`secret` TEXT NOT NULL,
`signature` TEXT NOT NULL,
`username` TEXT NOT 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,
`created` DATETIME DEFAULT CURRENT_TIMESTAMP,
`modified` DATETIME DEFAULT NULL,
`checked_out` int(11) unsigned NOT NULL DEFAULT 0,
`checked_out_time` DATETIME DEFAULT NULL,
`version` INT(10) unsigned NOT NULL DEFAULT 1,
`hits` INT(10) unsigned NOT NULL DEFAULT 0,
`access` INT(10) unsigned NOT NULL DEFAULT 0,
`ordering` INT(11) NOT NULL DEFAULT 0,
PRIMARY KEY (`id`),
KEY `idx_name` (`name`),
KEY `idx_protocol` (`protocol`),
KEY `idx_access` (`access`),
KEY `idx_checkout` (`checked_out`),
KEY `idx_createdby` (`created_by`),
KEY `idx_modifiedby` (`modified_by`),
KEY `idx_state` (`published`)
) ENGINE=InnoDB AUTO_INCREMENT=0 DEFAULT CHARSET=utf8mb4 DEFAULT COLLATE=utf8mb4_general_ci ROW_FORMAT=DYNAMIC;
CREATE TABLE IF NOT EXISTS `#__componentbuilder_help_document` (
`id` INT(11) NOT NULL AUTO_INCREMENT,
`asset_id` INT(10) unsigned NOT NULL DEFAULT 0 COMMENT 'FK to the #__assets table.',
`admin_view` CHAR(255) NOT NULL DEFAULT '',
`alias` CHAR(64) NOT NULL DEFAULT '',
`article` TINYINT(1) NOT NULL DEFAULT 0,
`content` TEXT NOT NULL,
`groups` TEXT NOT NULL,
`location` TINYINT(1) NOT NULL DEFAULT 0,
`not_required` INT(1) NOT NULL DEFAULT 0,
`site_view` CHAR(255) NOT NULL DEFAULT '',
`target` TINYINT(1) NOT NULL DEFAULT 0,
`title` CHAR(64) NOT NULL DEFAULT '',
`type` TINYINT(1) NOT NULL DEFAULT 0,
`url` VARCHAR(255) NOT NULL DEFAULT '',
`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,
`created` DATETIME DEFAULT CURRENT_TIMESTAMP,
`modified` DATETIME DEFAULT NULL,
`checked_out` int(11) unsigned NOT NULL DEFAULT 0,
`checked_out_time` DATETIME DEFAULT NULL,
`version` INT(10) unsigned NOT NULL DEFAULT 1,
`hits` INT(10) unsigned NOT NULL DEFAULT 0,
`ordering` INT(11) NOT NULL DEFAULT 0,
PRIMARY KEY (`id`),
KEY `idx_title` (`title`),
KEY `idx_type` (`type`),
KEY `idx_location` (`location`),
KEY `idx_article` (`article`),
KEY `idx_target` (`target`),
KEY `idx_alias` (`alias`),
KEY `idx_checkout` (`checked_out`),
KEY `idx_createdby` (`created_by`),
KEY `idx_modifiedby` (`modified_by`),
KEY `idx_state` (`published`)
) ENGINE=InnoDB AUTO_INCREMENT=0 DEFAULT CHARSET=utf8mb4 DEFAULT COLLATE=utf8mb4_general_ci ROW_FORMAT=DYNAMIC;
CREATE TABLE IF NOT EXISTS `#__componentbuilder_admin_fields` (
`id` INT(11) NOT NULL AUTO_INCREMENT,
`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,
`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,
`created` DATETIME DEFAULT CURRENT_TIMESTAMP,
`modified` DATETIME DEFAULT NULL,
`checked_out` int(11) unsigned NOT NULL DEFAULT 0,
`checked_out_time` DATETIME DEFAULT NULL,
`version` INT(10) unsigned NOT NULL DEFAULT 1,
`hits` INT(10) unsigned NOT NULL DEFAULT 0,
`access` INT(10) unsigned NOT NULL DEFAULT 0,
`ordering` INT(11) NOT NULL DEFAULT 0,
PRIMARY KEY (`id`),
KEY `idx_admin_view` (`admin_view`),
KEY `idx_access` (`access`),
KEY `idx_checkout` (`checked_out`),
KEY `idx_createdby` (`created_by`),
KEY `idx_modifiedby` (`modified_by`),
KEY `idx_state` (`published`)
) ENGINE=InnoDB AUTO_INCREMENT=0 DEFAULT CHARSET=utf8mb4 DEFAULT COLLATE=utf8mb4_general_ci ROW_FORMAT=DYNAMIC;
CREATE TABLE IF NOT EXISTS `#__componentbuilder_admin_fields_conditions` (
`id` INT(11) NOT NULL AUTO_INCREMENT,
`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,
`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,
`created` DATETIME DEFAULT CURRENT_TIMESTAMP,
`modified` DATETIME DEFAULT NULL,
`checked_out` int(11) unsigned NOT NULL DEFAULT 0,
`checked_out_time` DATETIME DEFAULT NULL,
`version` INT(10) unsigned NOT NULL DEFAULT 1,
`hits` INT(10) unsigned NOT NULL DEFAULT 0,
`access` INT(10) unsigned NOT NULL DEFAULT 0,
`ordering` INT(11) NOT NULL DEFAULT 0,
PRIMARY KEY (`id`),
KEY `idx_admin_view` (`admin_view`),
KEY `idx_access` (`access`),
KEY `idx_checkout` (`checked_out`),
KEY `idx_createdby` (`created_by`),
KEY `idx_modifiedby` (`modified_by`),
KEY `idx_state` (`published`)
) ENGINE=InnoDB AUTO_INCREMENT=0 DEFAULT CHARSET=utf8mb4 DEFAULT COLLATE=utf8mb4_general_ci ROW_FORMAT=DYNAMIC;
CREATE TABLE IF NOT EXISTS `#__componentbuilder_admin_fields_relations` (
`id` INT(11) NOT NULL AUTO_INCREMENT,
`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,
`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,
`created` DATETIME DEFAULT CURRENT_TIMESTAMP,
`modified` DATETIME DEFAULT NULL,
`checked_out` int(11) unsigned NOT NULL DEFAULT 0,
`checked_out_time` DATETIME DEFAULT NULL,
`version` INT(10) unsigned NOT NULL DEFAULT 1,
`hits` INT(10) unsigned NOT NULL DEFAULT 0,
`access` INT(10) unsigned NOT NULL DEFAULT 0,
`ordering` INT(11) NOT NULL DEFAULT 0,
PRIMARY KEY (`id`),
KEY `idx_admin_view` (`admin_view`),
KEY `idx_access` (`access`),
KEY `idx_checkout` (`checked_out`),
KEY `idx_createdby` (`created_by`),
KEY `idx_modifiedby` (`modified_by`),
KEY `idx_state` (`published`)
) ENGINE=InnoDB AUTO_INCREMENT=0 DEFAULT CHARSET=utf8mb4 DEFAULT COLLATE=utf8mb4_general_ci ROW_FORMAT=DYNAMIC;
CREATE TABLE IF NOT EXISTS `#__componentbuilder_admin_custom_tabs` (
`id` INT(11) NOT NULL AUTO_INCREMENT,
`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,
`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,
`created` DATETIME DEFAULT CURRENT_TIMESTAMP,
`modified` DATETIME DEFAULT NULL,
`checked_out` int(11) unsigned NOT NULL DEFAULT 0,
`checked_out_time` DATETIME DEFAULT NULL,
`version` INT(10) unsigned NOT NULL DEFAULT 1,
`hits` INT(10) unsigned NOT NULL DEFAULT 0,
`access` INT(10) unsigned NOT NULL DEFAULT 0,
`ordering` INT(11) NOT NULL DEFAULT 0,
PRIMARY KEY (`id`),
KEY `idx_admin_view` (`admin_view`),
KEY `idx_access` (`access`),
KEY `idx_checkout` (`checked_out`),
KEY `idx_createdby` (`created_by`),
KEY `idx_modifiedby` (`modified_by`),
KEY `idx_state` (`published`)
) ENGINE=InnoDB AUTO_INCREMENT=0 DEFAULT CHARSET=utf8mb4 DEFAULT COLLATE=utf8mb4_general_ci ROW_FORMAT=DYNAMIC;
CREATE TABLE IF NOT EXISTS `#__componentbuilder_component_admin_views` (
`id` INT(11) NOT NULL AUTO_INCREMENT,
`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,
`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,
`created` DATETIME DEFAULT CURRENT_TIMESTAMP,
`modified` DATETIME DEFAULT NULL,
`checked_out` int(11) unsigned NOT NULL DEFAULT 0,
`checked_out_time` DATETIME DEFAULT NULL,
`version` INT(10) unsigned NOT NULL DEFAULT 1,
`hits` INT(10) unsigned NOT NULL DEFAULT 0,
`access` INT(10) unsigned NOT NULL DEFAULT 0,
`ordering` INT(11) NOT NULL DEFAULT 0,
PRIMARY KEY (`id`),
KEY `idx_joomla_component` (`joomla_component`),
KEY `idx_access` (`access`),
KEY `idx_checkout` (`checked_out`),
KEY `idx_createdby` (`created_by`),
KEY `idx_modifiedby` (`modified_by`),
KEY `idx_state` (`published`)
) ENGINE=InnoDB AUTO_INCREMENT=0 DEFAULT CHARSET=utf8mb4 DEFAULT COLLATE=utf8mb4_general_ci ROW_FORMAT=DYNAMIC;
CREATE TABLE IF NOT EXISTS `#__componentbuilder_component_site_views` (
`id` INT(11) NOT NULL AUTO_INCREMENT,
`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,
`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,
`created` DATETIME DEFAULT CURRENT_TIMESTAMP,
`modified` DATETIME DEFAULT NULL,
`checked_out` int(11) unsigned NOT NULL DEFAULT 0,
`checked_out_time` DATETIME DEFAULT NULL,
`version` INT(10) unsigned NOT NULL DEFAULT 1,
`hits` INT(10) unsigned NOT NULL DEFAULT 0,
`access` INT(10) unsigned NOT NULL DEFAULT 0,
`ordering` INT(11) NOT NULL DEFAULT 0,
PRIMARY KEY (`id`),
KEY `idx_joomla_component` (`joomla_component`),
KEY `idx_access` (`access`),
KEY `idx_checkout` (`checked_out`),
KEY `idx_createdby` (`created_by`),
KEY `idx_modifiedby` (`modified_by`),
KEY `idx_state` (`published`)
) ENGINE=InnoDB AUTO_INCREMENT=0 DEFAULT CHARSET=utf8mb4 DEFAULT COLLATE=utf8mb4_general_ci ROW_FORMAT=DYNAMIC;
CREATE TABLE IF NOT EXISTS `#__componentbuilder_component_custom_admin_views` (
`id` INT(11) NOT NULL AUTO_INCREMENT,
`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,
`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,
`created` DATETIME DEFAULT CURRENT_TIMESTAMP,
`modified` DATETIME DEFAULT NULL,
`checked_out` int(11) unsigned NOT NULL DEFAULT 0,
`checked_out_time` DATETIME DEFAULT NULL,
`version` INT(10) unsigned NOT NULL DEFAULT 1,
`hits` INT(10) unsigned NOT NULL DEFAULT 0,
`access` INT(10) unsigned NOT NULL DEFAULT 0,
`ordering` INT(11) NOT NULL DEFAULT 0,
PRIMARY KEY (`id`),
KEY `idx_joomla_component` (`joomla_component`),
KEY `idx_access` (`access`),
KEY `idx_checkout` (`checked_out`),
KEY `idx_createdby` (`created_by`),
KEY `idx_modifiedby` (`modified_by`),
KEY `idx_state` (`published`)
) ENGINE=InnoDB AUTO_INCREMENT=0 DEFAULT CHARSET=utf8mb4 DEFAULT COLLATE=utf8mb4_general_ci ROW_FORMAT=DYNAMIC;
CREATE TABLE IF NOT EXISTS `#__componentbuilder_component_updates` (
`id` INT(11) NOT NULL AUTO_INCREMENT,
`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,
`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,
`created` DATETIME DEFAULT CURRENT_TIMESTAMP,
`modified` DATETIME DEFAULT NULL,
`checked_out` int(11) unsigned NOT NULL DEFAULT 0,
`checked_out_time` DATETIME DEFAULT NULL,
`version` INT(10) unsigned NOT NULL DEFAULT 1,
`hits` INT(10) unsigned NOT NULL DEFAULT 0,
`access` INT(10) unsigned NOT NULL DEFAULT 0,
`ordering` INT(11) NOT NULL DEFAULT 0,
PRIMARY KEY (`id`),
KEY `idx_joomla_component` (`joomla_component`),
KEY `idx_access` (`access`),
KEY `idx_checkout` (`checked_out`),
KEY `idx_createdby` (`created_by`),
KEY `idx_modifiedby` (`modified_by`),
KEY `idx_state` (`published`)
) ENGINE=InnoDB AUTO_INCREMENT=0 DEFAULT CHARSET=utf8mb4 DEFAULT COLLATE=utf8mb4_general_ci ROW_FORMAT=DYNAMIC;
CREATE TABLE IF NOT EXISTS `#__componentbuilder_component_mysql_tweaks` (
`id` INT(11) NOT NULL AUTO_INCREMENT,
`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,
`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,
`created` DATETIME DEFAULT CURRENT_TIMESTAMP,
`modified` DATETIME DEFAULT NULL,
`checked_out` int(11) unsigned NOT NULL DEFAULT 0,
`checked_out_time` DATETIME DEFAULT NULL,
`version` INT(10) unsigned NOT NULL DEFAULT 1,
`hits` INT(10) unsigned NOT NULL DEFAULT 0,
`access` INT(10) unsigned NOT NULL DEFAULT 0,
`ordering` INT(11) NOT NULL DEFAULT 0,
PRIMARY KEY (`id`),
KEY `idx_joomla_component` (`joomla_component`),
KEY `idx_access` (`access`),
KEY `idx_checkout` (`checked_out`),
KEY `idx_createdby` (`created_by`),
KEY `idx_modifiedby` (`modified_by`),
KEY `idx_state` (`published`)
) ENGINE=InnoDB AUTO_INCREMENT=0 DEFAULT CHARSET=utf8mb4 DEFAULT COLLATE=utf8mb4_general_ci ROW_FORMAT=DYNAMIC;
CREATE TABLE IF NOT EXISTS `#__componentbuilder_component_custom_admin_menus` (
`id` INT(11) NOT NULL AUTO_INCREMENT,
`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,
`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,
`created` DATETIME DEFAULT CURRENT_TIMESTAMP,
`modified` DATETIME DEFAULT NULL,
`checked_out` int(11) unsigned NOT NULL DEFAULT 0,
`checked_out_time` DATETIME DEFAULT NULL,
`version` INT(10) unsigned NOT NULL DEFAULT 1,
`hits` INT(10) unsigned NOT NULL DEFAULT 0,
`access` INT(10) unsigned NOT NULL DEFAULT 0,
`ordering` INT(11) NOT NULL DEFAULT 0,
PRIMARY KEY (`id`),
KEY `idx_joomla_component` (`joomla_component`),
KEY `idx_access` (`access`),
KEY `idx_checkout` (`checked_out`),
KEY `idx_createdby` (`created_by`),
KEY `idx_modifiedby` (`modified_by`),
KEY `idx_state` (`published`)
) ENGINE=InnoDB AUTO_INCREMENT=0 DEFAULT CHARSET=utf8mb4 DEFAULT COLLATE=utf8mb4_general_ci ROW_FORMAT=DYNAMIC;
CREATE TABLE IF NOT EXISTS `#__componentbuilder_component_router` (
`id` INT(11) NOT NULL AUTO_INCREMENT,
`asset_id` INT(10) unsigned NOT NULL DEFAULT 0 COMMENT 'FK to the #__assets table.',
`constructor_after_parent_code` MEDIUMTEXT NOT NULL,
`constructor_before_parent_code` MEDIUMTEXT NOT NULL,
`constructor_before_parent_manual` TEXT NOT NULL,
`joomla_component` INT(11) NOT NULL DEFAULT 0,
`methods_code` MEDIUMTEXT NOT NULL,
`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,
`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,
`created` DATETIME DEFAULT CURRENT_TIMESTAMP,
`modified` DATETIME DEFAULT NULL,
`checked_out` int(11) unsigned NOT NULL DEFAULT 0,
`checked_out_time` DATETIME DEFAULT NULL,
`version` INT(10) unsigned NOT NULL DEFAULT 1,
`hits` INT(10) unsigned NOT NULL DEFAULT 0,
`access` INT(10) unsigned NOT NULL DEFAULT 0,
`ordering` INT(11) NOT NULL DEFAULT 0,
PRIMARY KEY (`id`),
KEY `idx_joomla_component` (`joomla_component`),
KEY `idx_access` (`access`),
KEY `idx_checkout` (`checked_out`),
KEY `idx_createdby` (`created_by`),
KEY `idx_modifiedby` (`modified_by`),
KEY `idx_state` (`published`)
) ENGINE=InnoDB AUTO_INCREMENT=0 DEFAULT CHARSET=utf8mb4 DEFAULT COLLATE=utf8mb4_general_ci ROW_FORMAT=DYNAMIC;
CREATE TABLE IF NOT EXISTS `#__componentbuilder_component_config` (
`id` INT(11) NOT NULL AUTO_INCREMENT,
`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,
`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,
`created` DATETIME DEFAULT CURRENT_TIMESTAMP,
`modified` DATETIME DEFAULT NULL,
`checked_out` int(11) unsigned NOT NULL DEFAULT 0,
`checked_out_time` DATETIME DEFAULT NULL,
`version` INT(10) unsigned NOT NULL DEFAULT 1,
`hits` INT(10) unsigned NOT NULL DEFAULT 0,
`access` INT(10) unsigned NOT NULL DEFAULT 0,
`ordering` INT(11) NOT NULL DEFAULT 0,
PRIMARY KEY (`id`),
KEY `idx_joomla_component` (`joomla_component`),
KEY `idx_access` (`access`),
KEY `idx_checkout` (`checked_out`),
KEY `idx_createdby` (`created_by`),
KEY `idx_modifiedby` (`modified_by`),
KEY `idx_state` (`published`)
) ENGINE=InnoDB AUTO_INCREMENT=0 DEFAULT CHARSET=utf8mb4 DEFAULT COLLATE=utf8mb4_general_ci ROW_FORMAT=DYNAMIC;
CREATE TABLE IF NOT EXISTS `#__componentbuilder_component_dashboard` (
`id` INT(11) NOT NULL AUTO_INCREMENT,
`asset_id` INT(10) unsigned NOT NULL DEFAULT 0 COMMENT 'FK to the #__assets table.',
`dashboard_tab` TEXT NOT NULL,
`joomla_component` INT(11) NOT NULL DEFAULT 0,
`php_dashboard_methods` MEDIUMTEXT NOT 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,
`created` DATETIME DEFAULT CURRENT_TIMESTAMP,
`modified` DATETIME DEFAULT NULL,
`checked_out` int(11) unsigned NOT NULL DEFAULT 0,
`checked_out_time` DATETIME DEFAULT NULL,
`version` INT(10) unsigned NOT NULL DEFAULT 1,
`hits` INT(10) unsigned NOT NULL DEFAULT 0,
`access` INT(10) unsigned NOT NULL DEFAULT 0,
`ordering` INT(11) NOT NULL DEFAULT 0,
PRIMARY KEY (`id`),
KEY `idx_joomla_component` (`joomla_component`),
KEY `idx_access` (`access`),
KEY `idx_checkout` (`checked_out`),
KEY `idx_createdby` (`created_by`),
KEY `idx_modifiedby` (`modified_by`),
KEY `idx_state` (`published`)
) ENGINE=InnoDB AUTO_INCREMENT=0 DEFAULT CHARSET=utf8mb4 DEFAULT COLLATE=utf8mb4_general_ci ROW_FORMAT=DYNAMIC;
CREATE TABLE IF NOT EXISTS `#__componentbuilder_component_files_folders` (
`id` INT(11) NOT NULL AUTO_INCREMENT,
`asset_id` INT(10) unsigned NOT NULL DEFAULT 0 COMMENT 'FK to the #__assets table.',
`addfiles` TEXT NOT NULL,
`addfilesfullpath` TEXT NOT NULL,
`addfolders` TEXT NOT NULL,
`addfoldersfullpath` TEXT NOT NULL,
`joomla_component` INT(11) NOT NULL DEFAULT 0,
`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,
`created` DATETIME DEFAULT CURRENT_TIMESTAMP,
`modified` DATETIME DEFAULT NULL,
`checked_out` int(11) unsigned NOT NULL DEFAULT 0,
`checked_out_time` DATETIME DEFAULT NULL,
`version` INT(10) unsigned NOT NULL DEFAULT 1,
`hits` INT(10) unsigned NOT NULL DEFAULT 0,
`access` INT(10) unsigned NOT NULL DEFAULT 0,
`ordering` INT(11) NOT NULL DEFAULT 0,
PRIMARY KEY (`id`),
KEY `idx_joomla_component` (`joomla_component`),
KEY `idx_access` (`access`),
KEY `idx_checkout` (`checked_out`),
KEY `idx_createdby` (`created_by`),
KEY `idx_modifiedby` (`modified_by`),
KEY `idx_state` (`published`)
) ENGINE=InnoDB AUTO_INCREMENT=0 DEFAULT CHARSET=utf8mb4 DEFAULT COLLATE=utf8mb4_general_ci ROW_FORMAT=DYNAMIC;
CREATE TABLE IF NOT EXISTS `#__componentbuilder_component_placeholders` (
`id` INT(11) NOT NULL AUTO_INCREMENT,
`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,
`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,
`created` DATETIME DEFAULT CURRENT_TIMESTAMP,
`modified` DATETIME DEFAULT NULL,
`checked_out` int(11) unsigned NOT NULL DEFAULT 0,
`checked_out_time` DATETIME DEFAULT NULL,
`version` INT(10) unsigned NOT NULL DEFAULT 1,
`hits` INT(10) unsigned NOT NULL DEFAULT 0,
`access` INT(10) unsigned NOT NULL DEFAULT 0,
`ordering` INT(11) NOT NULL DEFAULT 0,
PRIMARY KEY (`id`),
KEY `idx_joomla_component` (`joomla_component`),
KEY `idx_access` (`access`),
KEY `idx_checkout` (`checked_out`),
KEY `idx_createdby` (`created_by`),
KEY `idx_modifiedby` (`modified_by`),
KEY `idx_state` (`published`)
) ENGINE=InnoDB AUTO_INCREMENT=0 DEFAULT CHARSET=utf8mb4 DEFAULT COLLATE=utf8mb4_general_ci ROW_FORMAT=DYNAMIC;
CREATE TABLE IF NOT EXISTS `#__componentbuilder_component_plugins` (
`id` INT(11) NOT NULL AUTO_INCREMENT,
`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,
`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,
`created` DATETIME DEFAULT CURRENT_TIMESTAMP,
`modified` DATETIME DEFAULT NULL,
`checked_out` int(11) unsigned NOT NULL DEFAULT 0,
`checked_out_time` DATETIME DEFAULT NULL,
`version` INT(10) unsigned NOT NULL DEFAULT 1,
`hits` INT(10) unsigned NOT NULL DEFAULT 0,
`access` INT(10) unsigned NOT NULL DEFAULT 0,
`ordering` INT(11) NOT NULL DEFAULT 0,
PRIMARY KEY (`id`),
KEY `idx_joomla_component` (`joomla_component`),
KEY `idx_access` (`access`),
KEY `idx_checkout` (`checked_out`),
KEY `idx_createdby` (`created_by`),
KEY `idx_modifiedby` (`modified_by`),
KEY `idx_state` (`published`)
) ENGINE=InnoDB AUTO_INCREMENT=0 DEFAULT CHARSET=utf8mb4 DEFAULT COLLATE=utf8mb4_general_ci ROW_FORMAT=DYNAMIC;
CREATE TABLE IF NOT EXISTS `#__componentbuilder_component_modules` (
`id` INT(11) NOT NULL AUTO_INCREMENT,
`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,
`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,
`created` DATETIME DEFAULT CURRENT_TIMESTAMP,
`modified` DATETIME DEFAULT NULL,
`checked_out` int(11) unsigned NOT NULL DEFAULT 0,
`checked_out_time` DATETIME DEFAULT NULL,
`version` INT(10) unsigned NOT NULL DEFAULT 1,
`hits` INT(10) unsigned NOT NULL DEFAULT 0,
`access` INT(10) unsigned NOT NULL DEFAULT 0,
`ordering` INT(11) NOT NULL DEFAULT 0,
PRIMARY KEY (`id`),
KEY `idx_joomla_component` (`joomla_component`),
KEY `idx_access` (`access`),
KEY `idx_checkout` (`checked_out`),
KEY `idx_createdby` (`created_by`),
KEY `idx_modifiedby` (`modified_by`),
KEY `idx_state` (`published`)
) ENGINE=InnoDB AUTO_INCREMENT=0 DEFAULT CHARSET=utf8mb4 DEFAULT COLLATE=utf8mb4_general_ci ROW_FORMAT=DYNAMIC;
CREATE TABLE IF NOT EXISTS `#__componentbuilder_snippet_type` (
`id` INT(11) NOT NULL AUTO_INCREMENT,
`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,
`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,
`created` DATETIME DEFAULT CURRENT_TIMESTAMP,
`modified` DATETIME DEFAULT NULL,
`checked_out` int(11) unsigned NOT NULL DEFAULT 0,
`checked_out_time` DATETIME DEFAULT NULL,
`version` INT(10) unsigned NOT NULL DEFAULT 1,
`hits` INT(10) unsigned NOT NULL DEFAULT 0,
`access` INT(10) unsigned NOT NULL DEFAULT 0,
`ordering` INT(11) NOT NULL DEFAULT 0,
PRIMARY KEY (`id`),
KEY `idx_name` (`name`),
KEY `idx_access` (`access`),
KEY `idx_checkout` (`checked_out`),
KEY `idx_createdby` (`created_by`),
KEY `idx_modifiedby` (`modified_by`),
KEY `idx_state` (`published`)
) ENGINE=InnoDB AUTO_INCREMENT=0 DEFAULT CHARSET=utf8mb4 DEFAULT COLLATE=utf8mb4_general_ci ROW_FORMAT=DYNAMIC;
CREATE TABLE IF NOT EXISTS `#__componentbuilder_library_config` (
`id` INT(11) NOT NULL AUTO_INCREMENT,
`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,
`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,
`created` DATETIME DEFAULT CURRENT_TIMESTAMP,
`modified` DATETIME DEFAULT NULL,
`checked_out` int(11) unsigned NOT NULL DEFAULT 0,
`checked_out_time` DATETIME DEFAULT NULL,
`version` INT(10) unsigned NOT NULL DEFAULT 1,
`hits` INT(10) unsigned NOT NULL DEFAULT 0,
`access` INT(10) unsigned NOT NULL DEFAULT 0,
`ordering` INT(11) NOT NULL DEFAULT 0,
PRIMARY KEY (`id`),
KEY `idx_library` (`library`),
KEY `idx_access` (`access`),
KEY `idx_checkout` (`checked_out`),
KEY `idx_createdby` (`created_by`),
KEY `idx_modifiedby` (`modified_by`),
KEY `idx_state` (`published`)
) ENGINE=InnoDB AUTO_INCREMENT=0 DEFAULT CHARSET=utf8mb4 DEFAULT COLLATE=utf8mb4_general_ci ROW_FORMAT=DYNAMIC;
CREATE TABLE IF NOT EXISTS `#__componentbuilder_library_files_folders_urls` (
`id` INT(11) NOT NULL AUTO_INCREMENT,
`asset_id` INT(10) unsigned NOT NULL DEFAULT 0 COMMENT 'FK to the #__assets table.',
`addfiles` TEXT NOT NULL,
`addfilesfullpath` TEXT NOT NULL,
`addfolders` TEXT NOT NULL,
`addfoldersfullpath` TEXT NOT NULL,
`addurls` TEXT NOT NULL,
`library` INT(11) NOT NULL DEFAULT 0,
`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,
`created` DATETIME DEFAULT CURRENT_TIMESTAMP,
`modified` DATETIME DEFAULT NULL,
`checked_out` int(11) unsigned NOT NULL DEFAULT 0,
`checked_out_time` DATETIME DEFAULT NULL,
`version` INT(10) unsigned NOT NULL DEFAULT 1,
`hits` INT(10) unsigned NOT NULL DEFAULT 0,
`access` INT(10) unsigned NOT NULL DEFAULT 0,
`ordering` INT(11) NOT NULL DEFAULT 0,
PRIMARY KEY (`id`),
KEY `idx_library` (`library`),
KEY `idx_access` (`access`),
KEY `idx_checkout` (`checked_out`),
KEY `idx_createdby` (`created_by`),
KEY `idx_modifiedby` (`modified_by`),
KEY `idx_state` (`published`)
) ENGINE=InnoDB AUTO_INCREMENT=0 DEFAULT CHARSET=utf8mb4 DEFAULT COLLATE=utf8mb4_general_ci ROW_FORMAT=DYNAMIC;
CREATE TABLE IF NOT EXISTS `#__componentbuilder_class_extends` (
`id` INT(11) NOT NULL AUTO_INCREMENT,
`asset_id` INT(10) unsigned NOT NULL DEFAULT 0 COMMENT 'FK to the #__assets table.',
`comment` TEXT NOT NULL,
`extension_type` VARCHAR(64) NOT NULL DEFAULT '',
`head` TEXT NULL,
`name` VARCHAR(255) NOT NULL DEFAULT '',
`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,
`created` DATETIME DEFAULT CURRENT_TIMESTAMP,
`modified` DATETIME DEFAULT NULL,
`checked_out` int(11) unsigned NOT NULL DEFAULT 0,
`checked_out_time` DATETIME DEFAULT NULL,
`version` INT(10) unsigned NOT NULL DEFAULT 1,
`hits` INT(10) unsigned NOT NULL DEFAULT 0,
`access` INT(10) unsigned NOT NULL DEFAULT 0,
`ordering` INT(11) NOT NULL DEFAULT 0,
PRIMARY KEY (`id`),
KEY `idx_name` (`name`),
KEY `idx_access` (`access`),
KEY `idx_checkout` (`checked_out`),
KEY `idx_createdby` (`created_by`),
KEY `idx_modifiedby` (`modified_by`),
KEY `idx_state` (`published`)
) ENGINE=InnoDB AUTO_INCREMENT=0 DEFAULT CHARSET=utf8mb4 DEFAULT COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
CREATE TABLE IF NOT EXISTS `#__componentbuilder_joomla_module_updates` (
`id` INT(11) NOT NULL AUTO_INCREMENT,
`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,
`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,
`created` DATETIME DEFAULT CURRENT_TIMESTAMP,
`modified` DATETIME DEFAULT NULL,
`checked_out` int(11) unsigned NOT NULL DEFAULT 0,
`checked_out_time` DATETIME DEFAULT NULL,
`version` INT(10) unsigned NOT NULL DEFAULT 1,
`hits` INT(10) unsigned NOT NULL DEFAULT 0,
`access` INT(10) unsigned NOT NULL DEFAULT 0,
`ordering` INT(11) NOT NULL DEFAULT 0,
PRIMARY KEY (`id`),
KEY `idx_joomla_module` (`joomla_module`),
KEY `idx_access` (`access`),
KEY `idx_checkout` (`checked_out`),
KEY `idx_createdby` (`created_by`),
KEY `idx_modifiedby` (`modified_by`),
KEY `idx_state` (`published`)
) ENGINE=InnoDB AUTO_INCREMENT=0 DEFAULT CHARSET=utf8mb4 DEFAULT COLLATE=utf8mb4_general_ci ROW_FORMAT=DYNAMIC;
CREATE TABLE IF NOT EXISTS `#__componentbuilder_joomla_module_files_folders_urls` (
`id` INT(11) NOT NULL AUTO_INCREMENT,
`asset_id` INT(10) unsigned NOT NULL DEFAULT 0 COMMENT 'FK to the #__assets table.',
`addfiles` TEXT NOT NULL,
`addfilesfullpath` TEXT NOT NULL,
`addfolders` TEXT NOT NULL,
`addfoldersfullpath` TEXT NOT NULL,
`addurls` TEXT NOT NULL,
`joomla_module` INT(11) NOT NULL DEFAULT 0,
`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,
`created` DATETIME DEFAULT CURRENT_TIMESTAMP,
`modified` DATETIME DEFAULT NULL,
`checked_out` int(11) unsigned NOT NULL DEFAULT 0,
`checked_out_time` DATETIME DEFAULT NULL,
`version` INT(10) unsigned NOT NULL DEFAULT 1,
`hits` INT(10) unsigned NOT NULL DEFAULT 0,
`access` INT(10) unsigned NOT NULL DEFAULT 0,
`ordering` INT(11) NOT NULL DEFAULT 0,
PRIMARY KEY (`id`),
KEY `idx_joomla_module` (`joomla_module`),
KEY `idx_access` (`access`),
KEY `idx_checkout` (`checked_out`),
KEY `idx_createdby` (`created_by`),
KEY `idx_modifiedby` (`modified_by`),
KEY `idx_state` (`published`)
) ENGINE=InnoDB AUTO_INCREMENT=0 DEFAULT CHARSET=utf8mb4 DEFAULT COLLATE=utf8mb4_general_ci ROW_FORMAT=DYNAMIC;
CREATE TABLE IF NOT EXISTS `#__componentbuilder_joomla_plugin_group` (
`id` INT(11) NOT NULL AUTO_INCREMENT,
`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,
`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,
`created` DATETIME DEFAULT CURRENT_TIMESTAMP,
`modified` DATETIME DEFAULT NULL,
`checked_out` int(11) unsigned NOT NULL DEFAULT 0,
`checked_out_time` DATETIME DEFAULT NULL,
`version` INT(10) unsigned NOT NULL DEFAULT 1,
`hits` INT(10) unsigned NOT NULL DEFAULT 0,
`access` INT(10) unsigned NOT NULL DEFAULT 0,
`ordering` INT(11) NOT NULL DEFAULT 0,
PRIMARY KEY (`id`),
KEY `idx_name` (`name`),
KEY `idx_class_extends` (`class_extends`),
KEY `idx_access` (`access`),
KEY `idx_checkout` (`checked_out`),
KEY `idx_createdby` (`created_by`),
KEY `idx_modifiedby` (`modified_by`),
KEY `idx_state` (`published`)
) ENGINE=InnoDB AUTO_INCREMENT=0 DEFAULT CHARSET=utf8mb4 DEFAULT COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
CREATE TABLE IF NOT EXISTS `#__componentbuilder_joomla_plugin_updates` (
`id` INT(11) NOT NULL AUTO_INCREMENT,
`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,
`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,
`created` DATETIME DEFAULT CURRENT_TIMESTAMP,
`modified` DATETIME DEFAULT NULL,
`checked_out` int(11) unsigned NOT NULL DEFAULT 0,
`checked_out_time` DATETIME DEFAULT NULL,
`version` INT(10) unsigned NOT NULL DEFAULT 1,
`hits` INT(10) unsigned NOT NULL DEFAULT 0,
`access` INT(10) unsigned NOT NULL DEFAULT 0,
`ordering` INT(11) NOT NULL DEFAULT 0,
PRIMARY KEY (`id`),
KEY `idx_joomla_plugin` (`joomla_plugin`),
KEY `idx_access` (`access`),
KEY `idx_checkout` (`checked_out`),
KEY `idx_createdby` (`created_by`),
KEY `idx_modifiedby` (`modified_by`),
KEY `idx_state` (`published`)
) ENGINE=InnoDB AUTO_INCREMENT=0 DEFAULT CHARSET=utf8mb4 DEFAULT COLLATE=utf8mb4_general_ci ROW_FORMAT=DYNAMIC;
CREATE TABLE IF NOT EXISTS `#__componentbuilder_joomla_plugin_files_folders_urls` (
`id` INT(11) NOT NULL AUTO_INCREMENT,
`asset_id` INT(10) unsigned NOT NULL DEFAULT 0 COMMENT 'FK to the #__assets table.',
`addfiles` TEXT NOT NULL,
`addfilesfullpath` TEXT NOT NULL,
`addfolders` TEXT NOT NULL,
`addfoldersfullpath` TEXT NOT NULL,
`addurls` TEXT NOT NULL,
`joomla_plugin` INT(11) NOT NULL DEFAULT 0,
`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,
`created` DATETIME DEFAULT CURRENT_TIMESTAMP,
`modified` DATETIME DEFAULT NULL,
`checked_out` int(11) unsigned NOT NULL DEFAULT 0,
`checked_out_time` DATETIME DEFAULT NULL,
`version` INT(10) unsigned NOT NULL DEFAULT 1,
`hits` INT(10) unsigned NOT NULL DEFAULT 0,
`access` INT(10) unsigned NOT NULL DEFAULT 0,
`ordering` INT(11) NOT NULL DEFAULT 0,
PRIMARY KEY (`id`),
KEY `idx_joomla_plugin` (`joomla_plugin`),
KEY `idx_access` (`access`),
KEY `idx_checkout` (`checked_out`),
KEY `idx_createdby` (`created_by`),
KEY `idx_modifiedby` (`modified_by`),
KEY `idx_state` (`published`)
) ENGINE=InnoDB AUTO_INCREMENT=0 DEFAULT CHARSET=utf8mb4 DEFAULT COLLATE=utf8mb4_general_ci ROW_FORMAT=DYNAMIC;
--
-- Dumping data for table `#__componentbuilder_joomla_component`
--
INSERT INTO `#__componentbuilder_joomla_component` (`id`, `add_admin_event`, `add_backup_folder_path`, `add_css_admin`, `add_css_site`, `add_email_helper`, `add_git_folder_path`, `add_javascript`, `add_license`, `add_menu_prefix`, `add_namespace_prefix`, `add_php_helper_admin`, `add_php_helper_both`, `add_php_helper_site`, `add_php_method_uninstall`, `add_php_postflight_install`, `add_php_postflight_update`, `add_php_preflight_install`, `add_php_preflight_update`, `add_placeholders`, `add_powers`, `add_sales_server`, `add_site_event`, `add_sql`, `add_sql_uninstall`, `add_update_server`, `addcontributors`, `addfootable`, `addreadme`, `adduikit`, `assets_table_fix`, `author`, `backup_folder_path`, `bom`, `buildcomp`, `buildcompsql`, `companyname`, `component_version`, `copyright`, `created`, `creatuserhelper`, `crowdin_account_api_key`, `crowdin_project_api_key`, `crowdin_project_identifier`, `crowdin_username`, `css_admin`, `css_site`, `dashboard`, `dashboard_type`, `debug_linenr`, `description`, `email`, `emptycontributors`, `export_buy_link`, `export_key`, `git_folder_path`, `guid`, `image`, `javascript`, `joomla_source_link`, `license`, `license_type`, `menu_prefix`, `modified`, `mvc_versiondate`, `name`, `name_code`, `namespace_prefix`, `number`, `php_admin_event`, `php_helper_admin`, `php_helper_both`, `php_helper_site`, `php_method_uninstall`, `php_postflight_install`, `php_postflight_update`, `php_preflight_install`, `php_preflight_update`, `php_site_event`, `readme`, `remove_line_breaks`, `sales_server`, `short_description`, `sql`, `sql_uninstall`, `system_name`, `toignore`, `translation_tool`, `update_server`, `update_server_target`, `update_server_url`, `website`, `whmcs_buy_link`, `whmcs_key`, `whmcs_url`, `params`, `published`, `version`, `hits`, `access`, `ordering`) VALUES
(25, '', '', '', '', '', '', '', '', 1, '', '', '', 1, '', 1, '', '', '', '', 1, '', '', '', '', 1, '{}', '', 1, 1, 3, 'Llewellyn van der Merwe', '', 'default.txt', '', '', 'Vast Development Method', '2.1.0', 'Copyright (C) 2015. All Rights Reserved', '2016-10-18 11:44:09', '', 'mvVkzmHCEIoBhzD3gR3uTzXRGwNVNRWw8Hr1vrXxb+I=', 'BbloLSYT6Yup6v3I/YNmrdOwzjbI4BGfDvJSB82N9DU=', '', 'VtSt2RMz+AHCrwc7jk1G70t83ZwZsNp2upqfzMyaVHE=', '', '', '', 1, '', 'Just a basic demo of the most basic implementations of the [Joomla](http://www.joomla.org) Component Builder\'s ability.', 'joomla@vdm.io', '', '', 'nZDegSPK87rXA4KMC6P8I6zEldjVIJpPYGRPZlKBI+U=', '', 'efde995e-60aa-4b39-b644-44349dfb660d', 'images/vdm/demo500.jpg', '', 'https://github.com/Llewellynvdm/Joomla-Demo-Component', 'GNU/GPL Version 2 or later - http://www.gnu.org/licenses/gpl-2.0.html', 1, '»', '2024-01-19 11:57:08', '', 'Demo', 'demo', 'JCB', 4, '', '', '', 'CS8qKg0KCSAqCUNoYW5nZSB0byBuaWNlIGZhbmN5IGRhdGUNCgkgKi8NCglwdWJsaWMgc3RhdGljIGZ1bmN0aW9uIGZhbmN5RGF0ZSgkZGF0ZSkNCgl7DQoJCWlmICghc2VsZjo6aXNWYWxpZFRpbWVTdGFtcCgkZGF0ZSkpDQoJCXsNCgkJCSRkYXRlID0gc3RydG90aW1lKCRkYXRlKTsNCgkJfQ0KCQlyZXR1cm4gZGF0ZSgnalMgXG9cZiBGIFknLCRkYXRlKTsNCgl9DQoNCgkvKioNCgkgKglDaGFuZ2UgdG8gbmljZSBmYW5jeSB0aW1lIGFuZCBkYXRlDQoJICovDQoJcHVibGljIHN0YXRpYyBmdW5jdGlvbiBmYW5jeURhdGVUaW1lKCR0aW1lKQ0KCXsNCgkJaWYgKCFzZWxmOjppc1ZhbGlkVGltZVN0YW1wKCR0aW1lKSkNCgkJew0KCQkJJHRpbWUgPSBzdHJ0b3RpbWUoJHRpbWUpOw0KCQl9DQoJCXJldHVybiBkYXRlKCcoRzppKSBqUyBcb1xmIEYgWScsJHRpbWUpOw0KCX0NCg0KCS8qKg0KCSAqCUNoYW5nZSB0byBuaWNlIGhvdXI6bWludXRlcyB0aW1lDQoJICovDQoJcHVibGljIHN0YXRpYyBmdW5jdGlvbiBmYW5jeVRpbWUoJHRpbWUpDQoJew0KCQlpZiAoIXNlbGY6OmlzVmFsaWRUaW1lU3RhbXAoJHRpbWUpKQ0KCQl7DQoJCQkkdGltZSA9IHN0cnRvdGltZSgkdGltZSk7DQoJCX0NCgkJcmV0dXJuIGRhdGUoJ0c6aScsJHRpbWUpOw0KCX0NCg0KCS8qKg0KCSAqCUNoZWNrIGlmIHN0cmluZyBpcyBhIHZhbGlkIHRpbWUgc3RhbXANCgkgKi8NCglwdWJsaWMgc3RhdGljIGZ1bmN0aW9uIGlzVmFsaWRUaW1lU3RhbXAoJHRpbWVzdGFtcCkNCgl7DQoJCXJldHVybiAoKGludCkgJHRpbWVzdGFtcCA9PT0gJHRpbWVzdGFtcCkNCgkJJiYgKCR0aW1lc3RhbXAgPD0gUEhQX0lOVF9NQVgpDQoJCSYmICgkdGltZXN0YW1wID49IH5QSFBfSU5UX01BWCk7DQoJfQ0K', '', 'CQkvLyBHZXQgQXBwbGljYXRpb24gb2JqZWN0DQoJCSRhcHAgPSBGYWN0b3J5OjpnZXRBcHBsaWNhdGlvbigpOw0KCQkkYXBwLT5lbnF1ZXVlTWVzc2FnZSgnVGhpcyBpcyBhIGRlbW8gY29tcG9uZW50IGRldmVsb3BlZCBpbiA8YSBocmVmPSJodHRwOi8vdmRtLmJ6L2NvbXBvbmVudC1idWlsZGVyIiB0YWdldD0iX2JhbG5rIiB0aXRsZT0iSm9vbWxhIENvbXBvbmVudCBCdWlsZGVyIj5KQ0I8L2E+ISBZb3UgY2FuIGJ1aWxkIG1vcmUgY29tcG9uZW50cyBsaWtlIHRoaXMgd2l0aCBKQ0IsIGNoZWNrb3V0IG91ciBwYWdlIG9uIDxhIGhyZWY9Imh0dHBzOi8vZ2l0aHViLmNvbS92ZG0taW8vSm9vbWxhLUNvbXBvbmVudC1CdWlsZGVyIiB0YWdldD0iX2JhbG5rIiB0aXRsZT0iSm9vbWxhIENvbXBvbmVudCBCdWlsZGVyIj5naXRodWI8L2E+IGZvciBtb3JlIGluZm8uIFRoZSBmdXR1cmUgb2YgPGEgaHJlZj0iaHR0cDovL3ZkbS5iei9jb21wb25lbnQtYnVpbGRlciIgdGFnZXQ9Il9iYWxuayIgdGl0bGU9Ikpvb21sYSBDb21wb25lbnQgQnVpbGRlciI+Sm9vbWxhIENvbXBvbmVudCBEZXZlbG9wbWVudDwvYT4gaXMgSGVyZSEnLCAnSW5mbycpOw==', '', '', '', '', 'IyAjIyNDb21wb25lbnRfbmFtZSMjIyAoIyMjVkVSU0lPTiMjIykNCg0KIVsjIyNDb21wb25lbnRfbmFtZSMjIyBpbWFnZV0oaHR0cHM6Ly9yYXcuZ2l0aHVidXNlcmNvbnRlbnQuY29tL25hbWliaWEvZGVtby1qb29tbGEtMy1jb21wb25lbnQvbWFzdGVyL2FkbWluL2Fzc2V0cy9pbWFnZXMvdmRtLWNvbXBvbmVudC5qcGcgIlRoZSAjIyNDb21wb25lbnRfbmFtZSMjIyIpDQoNCiMjI0RFU0NSSVBUSU9OIyMjDQoNCiMgQnVpbGQgRGV0YWlscw0KDQorICpDb21wYW55KjogWyMjI0NPTVBBTllOQU1FIyMjXSgjIyNBVVRIT1JXRUJTSVRFIyMjKQ0KKyAqQXV0aG9yKjogWyMjI0FVVEhPUiMjI10obWFpbHRvOiMjI0FVVEhPUkVNQUlMIyMjKQ0KKyAqTmFtZSo6IFsjIyNDb21wb25lbnRfbmFtZSMjI10oIyMjQVVUSE9SV0VCU0lURSMjIykNCisgKkZpcnN0IEJ1aWxkKjogIyMjQ1JFQVRJT05EQVRFIyMjDQorICpMYXN0IEJ1aWxkKjogIyMjQlVJTEREQVRFIyMjDQorICpWZXJzaW9uKjogIyMjVkVSU0lPTiMjIw0KKyAqQ29weXJpZ2h0KjogIyMjQ09QWVJJR0hUIyMjDQorICpMaWNlbnNlKjogIyMjTElDRU5TRSMjIw0KDQojIyBCdWlsZCBUaW1lDQoNCioqIyMjdG90YWxIb3VycyMjIyBIb3VycyoqIG9yICoqIyMjdG90YWxEYXlzIyMjIEVpZ2h0IEhvdXIgRGF5cyoqIChhY3R1YWwgdGltZSB0aGUgYXV0aG9yIHNhdmVkIC0NCmR1ZSB0byBbQXV0b21hdGVkIENvbXBvbmVudCBCdWlsZGVyXShodHRwczovL3d3dy52ZG0uaW8vam9vbWxhLWNvbXBvbmVudC1idWlsZGVyKSkNCg0KPiAoaWYgY3JlYXRpbmcgYSBmb2xkZXIgYW5kIGZpbGUgdG9vayAqKjUgc2Vjb25kcyoqIGFuZCB3cml0aW5nIG9uZSBsaW5lIG9mIGNvZGUgdG9vayAqKjEwIHNlY29uZHMqKiwNCj4gbmV2ZXIgbWFraW5nIG9uZSBtaXN0YWtlIG9yIHRha2luZyBhbnkgY29mZmVlIGJyZWFrLikNCg0KKyAqTGluZSBjb3VudCo6ICoqIyMjTElORV9DT1VOVCMjIyoqDQorICpGaWxlIGNvdW50KjogKiojIyNGSUxFX0NPVU5UIyMjKioNCisgKkZvbGRlciBjb3VudCo6ICoqIyMjRk9MREVSX0NPVU5UIyMjKioNCg0KKiojIyNhY3R1YWxIb3Vyc1NwZW50IyMjIEhvdXJzKiogb3IgKiojIyNhY3R1YWxEYXlzU3BlbnQjIyMgRWlnaHQgSG91ciBEYXlzKiogKHRoZSBhY3R1YWwgdGltZSB0aGUgYXV0aG9yIHNwZW50KQ0KDQo+ICh3aXRoIHRoZSBmb2xsb3dpbmcgYnJlYWsgZG93bjoNCj4gKipkZWJ1Z2dpbmcgQCMjI2RlYnVnZ2luZ0hvdXJzIyMjaG91cnMqKiA9IGNvZGluZ3RpbWUgLyA0Ow0KPiAqKnBsYW5uaW5nIEAjIyNwbGFubmluZ0hvdXJzIyMjaG91cnMqKiA9IGNvZGluZ3RpbWUgLyA3Ow0KPiAqKm1hcHBpbmcgQCMjI21hcHBpbmdIb3VycyMjI2hvdXJzKiogPSBjb2Rpbmd0aW1lIC8gMTA7DQo+ICoqb2ZmaWNlIEAjIyNvZmZpY2VIb3VycyMjI2hvdXJzKiogPSBjb2Rpbmd0aW1lIC8gNjspDQoNCioqIyMjYWN0dWFsVG90YWxIb3VycyMjIyBIb3VycyoqIG9yICoqIyMjYWN0dWFsVG90YWxEYXlzIyMjIEVpZ2h0IEhvdXIgRGF5cyoqDQooYSB0b3RhbCBvZiB0aGUgcmVhbGlzdGljIHRpbWUgZnJhbWUgZm9yIHRoaXMgcHJvamVjdCkNCg0KPiAoaWYgY3JlYXRpbmcgYSBmb2xkZXIgYW5kIGZpbGUgdG9vayAqKjUgc2Vjb25kcyoqIGFuZCB3cml0aW5nIG9uZSBsaW5lIG9mIGNvZGUgdG9vayAqKjEwIHNlY29uZHMqKiwNCj4gd2l0aCB0aGUgbm9ybWFsIGV2ZXJ5ZGF5IHJlYWxpdGllcyBhdCB0aGUgb2ZmaWNlLCB0aGF0IGluY2x1ZGVzIHRoZSBjb21wb25lbnQgcGxhbm5pbmcsIG1hcHBpbmcgJiBkZWJ1Z2dpbmcuKQ0KDQpQcm9qZWN0IGR1cmF0aW9uOiAqKiMjI3Byb2plY3RXZWVrVGltZSMjIyB3ZWVrcyoqIG9yICoqIyMjcHJvamVjdE1vbnRoVGltZSMjIyBtb250aHMqKg0KDQo+IFRoaXMgKipjb21wb25lbnQqKiB3YXMgYnVpbGQgd2l0aCBhIEpvb21sYSBbQXV0b21hdGVkIENvbXBvbmVudCBCdWlsZGVyXShodHRwczovL3d3dy52ZG0uaW8vam9vbWxhLWNvbXBvbmVudC1idWlsZGVyKS4NCj4gRGV2ZWxvcGVkIGJ5IFtMbGV3ZWxseW4gdmFuIGRlciBNZXJ3ZV0obWFpbHRvOmpvb21sYUB2ZG0uaW8pDQoNCltDVVNUT01DT0RFPXJlYWRNRWNvbnRyaWJ1dG9yc10=', '', '', 'Demo Component', '', '', 'Demo (public)', '.git', '', '', 2, 'https://raw.githubusercontent.com/namibia/demo-joomla-3-component/master/demo_updateserver.xml', 'https://www.vdm.io/', '', '6GeGhXcYZEQosGCi0ZXeuAj3oXBwARl7OnRm9h3rxPQ=', '', '{\"language_options\":{\"activate\":\"0\",\"use_percentagelanguageadd\":\"1\",\"percentagelanguageadd\":\"50\"},\"joomla_component_headers\":{\"add_admin_component\":\"0\",\"admin_component\":\"\",\"power_admin_component\":[],\"add_site_component\":\"0\",\"site_component\":\"\",\"power_site_component\":[],\"add_admin_helper\":\"0\",\"admin_helper\":\"\",\"power_admin_helper\":[],\"add_site_helper\":\"0\",\"site_helper\":\"\",\"power_site_helper\":[]}}', 1, 54, '', 1, 10);
--
-- Dumping data for table `#__componentbuilder_joomla_plugin`
--
INSERT INTO `#__componentbuilder_joomla_plugin` (`id`, `add_head`, `add_php_method_uninstall`, `add_php_postflight_install`, `add_php_postflight_update`, `add_php_preflight_install`, `add_php_preflight_uninstall`, `add_php_preflight_update`, `add_php_script_construct`, `add_sales_server`, `add_sql`, `add_sql_uninstall`, `add_update_server`, `addreadme`, `class_extends`, `description`, `fields`, `guid`, `head`, `joomla_plugin_group`, `method_selection`, `main_class_code`, `name`, `php_method_uninstall`, `php_postflight_install`, `php_postflight_update`, `php_preflight_install`, `php_preflight_uninstall`, `php_preflight_update`, `php_script_construct`, `plugin_version`, `property_selection`, `readme`, `sales_server`, `sql`, `sql_uninstall`, `system_name`, `update_server`, `update_server_target`, `update_server_url`, `params`, `published`, `created`, `modified`, `version`, `hits`, `ordering`) VALUES
(1, 1, '', '', '', 1, '', '', '', '', '', '', '', 1, 4, 'The plugin to fully integrate componentbuilder with the privacy suite of Joomla.', '{}', '518f7be7-140c-47d3-9fb2-b6717230e0fc', 'dXNlIEpvb21sYVxVdGlsaXRpZXNcQXJyYXlIZWxwZXI7DQoNCkpMb2FkZXI6OnJlZ2lzdGVyKCdQcml2YWN5UGx1Z2luJywgSlBBVEhfQURNSU5JU1RSQVRPUiAuICcvY29tcG9uZW50cy9jb21fcHJpdmFjeS9oZWxwZXJzL3BsdWdpbi5waHAnKTsNCkpMb2FkZXI6OnJlZ2lzdGVyKCdQcml2YWN5UmVtb3ZhbFN0YXR1cycsIEpQQVRIX0FETUlOSVNUUkFUT1IgLiAnL2NvbXBvbmVudHMvY29tX3ByaXZhY3kvaGVscGVycy9yZW1vdmFsL3N0YXR1cy5waHAnKTsNCkpMb2FkZXI6OnJlZ2lzdGVyKCdbW1tDb21wb25lbnRdXV1IZWxwZXInLCBKUEFUSF9BRE1JTklTVFJBVE9SIC4gJy9jb21wb25lbnRzL2NvbV9bW1tjb21wb25lbnRdXV0vaGVscGVycy9bW1tjb21wb25lbnRdXV0ucGhwJyk7IA==', 10, '{\"method_selection0\":{\"method\":\"51\"},\"method_selection1\":{\"method\":\"52\"},\"method_selection2\":{\"method\":\"53\"}}', 'CS8qKg0KCSAqIEFwcGxpY2F0aW9uIG9iamVjdA0KCSAqDQoJICogQHZhciAgICBDTVNBcHBsaWNhdGlvbg0KCSAqIEBzaW5jZSAgMS4wDQoJICovDQoJcHJvdGVjdGVkICAkYXBwOw0KDQoJLyoqDQoJICogRGF0YWJhc2Ugb2JqZWN0DQoJICoNCgkgKiBAdmFyICAgIERhdGFiYXNlRHJpdmVyDQoJICogQHNpbmNlICAxLjANCgkgKi8NCglwcm90ZWN0ZWQgICRkYjsNCg0KCS8qKg0KCSAqIEFmZmVjdHMgY29uc3RydWN0b3IgYmVoYXZpb3IuIElmIHRydWUsIGxhbmd1YWdlIGZpbGVzIHdpbGwgYmUgbG9hZGVkIGF1dG9tYXRpY2FsbHkuDQoJICoNCgkgKiBAdmFyICAgIGJvb2xlYW4NCgkgKiBAc2luY2UgIDEuMA0KCSAqLw0KCXByb3RlY3RlZCAgJGF1dG9sb2FkTGFuZ3VhZ2UgPSB0cnVlOw0KDQoJLyoqDQoJICogUGVyZm9ybXMgdmFsaWRhdGlvbiB0byBkZXRlcm1pbmUgaWYgdGhlIGRhdGEgYXNzb2NpYXRlZCB3aXRoIGEgcmVtb3ZlIGluZm9ybWF0aW9uIHJlcXVlc3QgY2FuIGJlIHByb2Nlc3NlZA0KCSAqDQoJICogQHBhcmFtICAgUHJpdmFjeVRhYmxlUmVxdWVzdCAgJHJlcXVlc3QgIFRoZSByZXF1ZXN0IHJlY29yZCBiZWluZyBwcm9jZXNzZWQNCgkgKiBAcGFyYW0gICBKVXNlciAgICAgICAgICAgICAgICAkdXNlciAgICAgVGhlIHVzZXIgYWNjb3VudCBhc3NvY2lhdGVkIHdpdGggdGhpcyByZXF1ZXN0IGlmIGF2YWlsYWJsZQ0KCSAqDQoJICogQHJldHVybiAgUHJpdmFjeVJlbW92YWxTdGF0dXMNCgkgKg0KCSAqIEBzaW5jZSAgIDEuMA0KCSAqLw0KCXB1YmxpYyBmdW5jdGlvbiBvblByaXZhY3lDYW5SZW1vdmVEYXRhKFByaXZhY3lUYWJsZVJlcXVlc3QgJHJlcXVlc3QsIEpVc2VyICR1c2VyID0gbnVsbCkNCgl7DQoJCSRzdGF0dXMgPSBuZXcgUHJpdmFjeVJlbW92YWxTdGF0dXM7DQoNCgkJLy8gVGhpcyBwbHVnaW4gb25seSBwcm9jZXNzZXMgZGF0YSBmb3IgcmVnaXN0ZXJlZCB1c2VyIGFjY291bnRzDQoJCWlmICghJHVzZXIpDQoJCXsNCgkJCXJldHVybiAkc3RhdHVzOw0KCQl9DQoNCgkJLy8gY2hlY2sgaWYgdGhlIGhlbHBlciBtZXRob2QgaXMgc2V0IGluIHRoZSBjb21wb25lbnQNCgkJaWYgKG1ldGhvZF9leGlzdHMoJ1tbW0NvbXBvbmVudF1dXUhlbHBlcicsICdvblByaXZhY3lDYW5SZW1vdmVEYXRhJykpDQoJCXsNCgkJCVtbW0NvbXBvbmVudF1dXUhlbHBlcjo6b25Qcml2YWN5Q2FuUmVtb3ZlRGF0YSgkdGhpcywgJHN0YXR1cywgJHJlcXVlc3QsICR1c2VyKTsNCgkJfQ0KDQoJCXJldHVybiAkc3RhdHVzOw0KCX0NCg0KCS8qKg0KCSAqIFByb2Nlc3NlcyBhbiBleHBvcnQgcmVxdWVzdCBmb3IgSm9vbWxhIGNvcmUgdXNlciBkYXRhDQoJICoNCgkgKiBAcGFyYW0gICBQcml2YWN5VGFibGVSZXF1ZXN0ICAkcmVxdWVzdCAgVGhlIHJlcXVlc3QgcmVjb3JkIGJlaW5nIHByb2Nlc3NlZA0KCSAqIEBwYXJhbSAgIEpVc2VyICAgICAgICAgICAgICAgICR1c2VyICAgICBUaGUgdXNlciBhY2NvdW50IGFzc29jaWF0ZWQgd2l0aCB0aGlzIHJlcXVlc3QgaWYgYXZhaWxhYmxlDQoJICoNCgkgKiBAcmV0dXJuICBQcml2YWN5RXhwb3J0RG9tYWluW10NCgkgKg0KCSAqIEBzaW5jZSAgIDEuMA0KCSAqLw0KCXB1YmxpYyBmdW5jdGlvbiBvblByaXZhY3lFeHBvcnRSZXF1ZXN0KFByaXZhY3lUYWJsZVJlcXVlc3QgJHJlcXVlc3QsIEpVc2VyICR1c2VyID0gbnVsbCkNCgl7DQoJCSRkb21haW5zID0gYXJyYXkoKTsNCg0KCQkvLyBUaGlzIHBsdWdpbiBvbmx5IHByb2Nlc3NlcyBkYXRhIGZvciByZWdpc3RlcmVkIHVzZXIgYWNjb3VudHMNCgkJaWYgKCEkdXNlcikNCgkJew0KCQkJcmV0dXJuICRkb21haW5zOw0KCQl9DQoNCgkJLy8gY2hlY2sgaWYgdGhlIGhlbHBlciBtZXRob2QgaXMgc2V0IGluIHRoZSBjb21wb25lbnQNCgkJaWYgKG1ldGhvZF9leGlzdHMoJ1tbW0NvbXBvbmVudF1dXUhlbHBlcicsICdvblByaXZhY3lFeHBvcnRSZXF1ZXN0JykpDQoJCXsNCgkJCVtbW0NvbXBvbmVudF1dXUhlbHBlcjo6b25Qcml2YWN5RXhwb3J0UmVxdWVzdCgkdGhpcywgJGRvbWFpbnMsICRyZXF1ZXN0LCAkdXNlcik7DQoJCX0NCg0KCQlyZXR1cm4gJGRvbWFpbnM7DQoJfQ0KDQoJLyoqDQoJICogUmVtb3ZlcyB0aGUgZGF0YSBhc3NvY2lhdGVkIHdpdGggYSByZW1vdmUgaW5mb3JtYXRpb24gcmVxdWVzdA0KCSAqDQoJICogQHBhcmFtICAgUHJpdmFjeVRhYmxlUmVxdWVzdCAgJHJlcXVlc3QgIFRoZSByZXF1ZXN0IHJlY29yZCBiZWluZyBwcm9jZXNzZWQNCgkgKiBAcGFyYW0gICBKVXNlciAgICAgICAgICAgICAgICAkdXNlciAgICAgVGhlIHVzZXIgYWNjb3VudCBhc3NvY2lhdGVkIHdpdGggdGhpcyByZXF1ZXN0IGlmIGF2YWlsYWJsZQ0KCSAqDQoJICogQHJldHVybiAgdm9pZA0KCSAqDQoJICogQHNpbmNlICAgMS4wDQoJICovDQoJcHVibGljIGZ1bmN0aW9uIG9uUHJpdmFjeVJlbW92ZURhdGEoUHJpdmFjeVRhYmxlUmVxdWVzdCAkcmVxdWVzdCwgSlVzZXIgJHVzZXIgPSBudWxsKQ0KCXsNCgkJLy8gVGhpcyBwbHVnaW4gb25seSBwcm9jZXNzZXMgZGF0YSBmb3IgcmVnaXN0ZXJlZCB1c2VyIGFjY291bnRzDQoJCWlmICghJHVzZXIpDQoJCXsNCgkJCXJldHVybjsNCgkJfQ0KDQoJCS8vIGNoZWNrIGlmIHRoZSBoZWxwZXIgbWV0aG9kIGlzIHNldCBpbiB0aGUgY29tcG9uZW50DQoJCWlmIChtZXRob2RfZXhpc3RzKCdbW1tDb21wb25lbnRdXV1IZWxwZXInLCAnb25Qcml2YWN5UmVtb3ZlRGF0YScpKQ0KCQl7DQoJCQlbW1tDb21wb25lbnRdXV1IZWxwZXI6Om9uUHJpdmFjeVJlbW92ZURhdGEoJHRoaXMsICRyZXF1ZXN0LCAkdXNlcik7DQoJCX0NCgl9', '[[[Component]]]', 'Ly8gUEhQIE1ldGhvZCAodW5pbnN0YWxsKQ==', 'Ly8gUEhQIFBvc3RmbGlnaHQgKGluc3RhbGwp', 'Ly8gUEhQIFBvc3RmbGlnaHQgKHVwZGF0ZSk=', 'CQkJLy8gY2hlY2sgdGhhdCBbW1tjb21wb25lbnRdXV0gaXMgaW5zdGFsbGVkDQoJCQkkcGF0aFRvQ29yZSA9IEpQQVRIX0FETUlOSVNUUkFUT1IgLiAnL2NvbXBvbmVudHMvY29tX1tbW2NvbXBvbmVudF1dXS9oZWxwZXJzL1tbW2NvbXBvbmVudF1dXS5waHAnOw0KCQkJaWYgKCFKRmlsZTo6ZXhpc3RzKCRwYXRoVG9Db3JlKSkNCgkJCXsNCgkJCQkkYXBwLT5lbnF1ZXVlTWVzc2FnZSgnW1tbY29tcG9uZW50X2Fjcm9ueW1dXV0gbXVzdCBmaXJzdCBiZSBpbnN0YWxsZWQgZnJvbSA8YSBocmVmPSJbW1tnZXRfY29tcG9uZW50X2xpbmtdXV0iIHRhcmdldD0iX2JsYW5rIj5bW1tjb21wb25lbnRfbGlua19uYW1lXV1dPC9hPi4nLCAnZXJyb3InKTsNCgkJCQlyZXR1cm4gZmFsc2U7DQoJCQl9', 'Ly8gUEhQIFByZWZsaWdodCAodW5pbnN0YWxsKQ==', 'Ly8gUEhQIFByZWZsaWdodCAodXBkYXRlKQ==', '', '1.0.0', '{\"property_selection0\":{\"property\":\"31\"},\"property_selection1\":{\"property\":\"32\"},\"property_selection2\":{\"property\":\"33\"}}', 'IyAjIyNQTFVHSU5fTkFNRSMjIyAoIyMjVkVSU0lPTiMjIykNCg0KIyMjREVTQ1JJUFRJT04jIyMNCg0KIyBCdWlsZCBEZXRhaWxzDQoNCisgKkNvbXBhbnkqOiBbIyMjQ09NUEFOWU5BTUUjIyNdKCMjI0FVVEhPUldFQlNJVEUjIyMpDQorICpBdXRob3IqOiBbIyMjQVVUSE9SIyMjXShtYWlsdG86IyMjQVVUSE9SRU1BSUwjIyMpDQorICpWZXJzaW9uKjogIyMjVkVSU0lPTiMjIw0KKyAqQ29weXJpZ2h0KjogIyMjQ09QWVJJR0hUIyMjDQorICpMaWNlbnNlKjogIyMjTElDRU5TRSMjIw==', '', '', '', 'Global Privacy', '', 1, 'https://www.vdm.io/updates/componentbuilder_global_privacy.xml', '', 1, '2019-07-16 00:49:50', '2020-05-24 22:49:38', 29, '', 1),
(21, '', '', '', '', 1, '', '', '', '', '', '', '', '', 1, 'Plugin to autoload the powers of componentbuilder', '{}', '86dd28b5-18d4-437e-8a53-7eaf23478fc8', '', 8, '{}', 'CS8qKg0KCSAqIEFwcGxpY2F0aW9uIG9iamVjdA0KCSAqDQoJICogQHZhciAgICBDTVNBcHBsaWNhdGlvbg0KCSAqIEBzaW5jZSAgMS4wLjANCgkgKi8NCglwcm90ZWN0ZWQgICRhcHA7DQoNCgkvKioNCgkgKiBBZmZlY3RzIGNvbnN0cnVjdG9yIGJlaGF2aW9yLiBJZiB0cnVlLCBsYW5ndWFnZSBmaWxlcyB3aWxsIGJlIGxvYWRlZCBhdXRvbWF0aWNhbGx5Lg0KCSAqDQoJICogQHZhciAgICBib29sZWFuDQoJICogQHNpbmNlICAxLjAuMA0KCSAqLw0KCXByb3RlY3RlZCAgJGF1dG9sb2FkTGFuZ3VhZ2UgPSBmYWxzZTsNCg0KCS8qKg0KCSAqIENvbnN0cnVjdG9yLg0KCSAqDQoJICogQHBhcmFtICAgb2JqZWN0ICAmJHN1YmplY3QgIFRoZSBvYmplY3QgdG8gb2JzZXJ2ZSAtLSBldmVudCBkaXNwYXRjaGVyLg0KCSAqIEBwYXJhbSAgIG9iamVjdCAgJGNvbmZpZyAgICBBbiBvcHRpb25hbCBhc3NvY2lhdGl2ZSBhcnJheSBvZiBjb25maWd1cmF0aW9uIHNldHRpbmdzLg0KCSAqDQoJICogQHNpbmNlICAgMS42DQoJICovDQoJcHVibGljIGZ1bmN0aW9uIF9fY29uc3RydWN0KCRzdWJqZWN0LCAkY29uZmlnKQ0KCXsNCgkJcGFyZW50OjpfX2NvbnN0cnVjdCgkc3ViamVjdCwgJGNvbmZpZyk7IyMjUExVR0lOX1BPV0VSX0FVVE9MT0FERVIjIyMNCgl9', '[[[Component]]] Powers Autoloader', '', '', '', 'Ly8gV0hBVD8=', '', '', '', '1.0.1', '{\"property_selection0\":{\"property\":\"25\"},\"property_selection1\":{\"property\":\"27\"}}', 'WW91IGNhbiB1c2UgYWxsIHRoZSBub3JtYWwgbWFya2Rvd24sIGluY2x1ZGluZyB0aGUgcGxhY2UtaG9sZGVycy4=', '', '', '', 'Powers Autoloader', '', 1, '', '', 1, '2021-11-11 02:22:02', '2024-03-01 21:18:38', 16, '', 8),
(24, '', '', '', '', 1, '', '', '', '', '', '', '', '', 1, 'Add Access Token to easy update [[[Component]]]', '{}', '29ac30d2-1c1a-4b9e-9cfa-c5fcb08caa01', 'dXNlIEpvb21sYVxDTVNcQXBwbGljYXRpb25cQ01TQXBwbGljYXRpb247DQp1c2UgSm9vbWxhXENNU1xQbHVnaW5cQ01TUGx1Z2luOw==', 12, '{\"method_selection0\":{\"method\":\"103\"}}', 'CS8qKg0KCSAqIEFwcGxpY2F0aW9uIG9iamVjdA0KCSAqDQoJICogQHZhciAgICBDTVNBcHBsaWNhdGlvbg0KCSAqIEBzaW5jZSAgMS4wLjANCgkgKi8NCglwcm90ZWN0ZWQgICRhcHA7DQoNCgkvKioNCgkgKiBBZmZlY3RzIGNvbnN0cnVjdG9yIGJlaGF2aW9yLiBJZiB0cnVlLCBsYW5ndWFnZSBmaWxlcyB3aWxsIGJlIGxvYWRlZCBhdXRvbWF0aWNhbGx5Lg0KCSAqDQoJICogQHZhciAgICBib29sZWFuDQoJICogQHNpbmNlICAxLjAuMA0KCSAqLw0KCXByb3RlY3RlZCAgJGF1dG9sb2FkTGFuZ3VhZ2UgPSB0cnVlOw0KDQoJLyoqDQoJICogb25JbnN0YWxsZXJCZWZvcmVQYWNrYWdlRG93bmxvYWQuDQoJICoNCgkgKiBGb3IgbW9kaWZpY2F0aW9uIG9mIFVSTCBhbmQgaGVhZGVycyBiZWZvcmUgcGFja2FnZSBkb3dubG9hZA0KCSAqDQoJICogQHJldHVybiAgdm9pZA0KCSAqDQoJICogQHNpbmNlICAgMS4wDQoJICovDQoJcHVibGljIGZ1bmN0aW9uIG9uSW5zdGFsbGVyQmVmb3JlUGFja2FnZURvd25sb2FkKCYkdXJsLCAmJGhlYWRlcnMpDQoJew0KCQkvLyBzZXQgdGhlIFVSSSBvYmplY3QNCgkJJHVyaSA9IFxKVXJpOjpnZXRJbnN0YW5jZSgkdXJsKTsNCgkJJHBhcnRzID0gZXhwbG9kZSgnLycsICR1cmktPmdldFBhdGgoKSk7DQoNCgkJLy8gY2hlY2sgdGhhdCB0aGlzIGlzIG91ciBBUEkNCgkJaWYgKCR1cmktPmdldEhvc3QoKSA9PSAnW1tbZ2l0ZWFfdXJsXV1dJyAmJiBpbl9hcnJheSgnW1tbZ2l0ZWFfcGFja2FnZV9uYW1lXV1dJywgJHBhcnRzKSkNCgkJew0KCQkJLy8gZ2V0IHRoZSB0b2tlbiBpZiBzZXQNCgkJCSR0b2tlbiA9IFxKQ29tcG9uZW50SGVscGVyOjpnZXRQYXJhbXMoJ2NvbV9bW1tjb21wb25lbnRdXV0nKS0+Z2V0KCdnaXRlYV90b2tlbicsIGZhbHNlKTsNCgkJCS8vIG9ubHkgYWRkIGlmIHRva2VuIGlzIHNldA0KCQkJaWYgKCR0b2tlbikNCgkJCXsNCgkJCQkvLyBhZGQgdGhlIHRva2VuDQoJCQkJJHVyaS0+c2V0VmFyKCdhY2Nlc3NfdG9rZW4nLCAkdG9rZW4pOw0KCQkJCS8vIHVwZGF0ZSB0aGUgVVJMDQoJCQkJJHVybCA9ICR1cmktPnRvU3RyaW5nKCk7DQoJCQl9DQoJCQllbHNlDQoJCQl7DQoJCQkJLy8gc2V0IHRoZSByZXR1cm4gVVJMDQoJCQkJJHJldHVybiA9IHVybGVuY29kZShiYXNlNjRfZW5jb2RlKChzdHJpbmcpIFxKVXJpOjpnZXRJbnN0YW5jZSgpKSk7DQoJCQkJLy8gc2V0IHRoZSB1cmxzDQoJCQkJJGdldF9hY2Nlc3NfdG9rZW5fdXJsID0gJyJodHRwczovL1tbW2dpdGVhX3VybF1dXS91c2VyL3NldHRpbmdzL2FwcGxpY2F0aW9ucyIgdGFyZ2V0PSJfYmxhbmsiIHRpdGxlPSInIC4gVGV4dDo6XygnR2V0IEFjY2VzcyBUb2tlbicpIC4gJyInOw0KCQkJCSRzZXRfYWNjZXNzX3Rva2VuX3VybCA9ICciJyAuIFxKVXJpOjpyb290KCkgLiAnYWRtaW5pc3RyYXRvci9pbmRleC5waHA/b3B0aW9uPWNvbV9jb25maWcmdmlldz1jb21wb25lbnQmY29tcG9uZW50PWNvbV9bW1tjb21wb25lbnRdXV0mcGF0aD0mcmV0dXJuPScgLiAkcmV0dXJuIC4gJyIgdGl0bGU9IicgLiBUZXh0OjpfKCdTZXQgQWNjZXNzIFRva2VuJykgLiAnIic7DQoJCQkJLy8gbG9hZCB0aGUgbWVzc2FnZQ0KCQkJCSR0aGlzLT5hcHAtPmVucXVldWVNZXNzYWdlKA0KCQkJCQlUZXh0OjpzcHJpbnRmKCJJZiB0aGVyZSB3YXMgYSBkb3dubG9hZC91cGRhdGUgZXJyb3IsIGl0J3MgcHJvYmFibHkgYmVjYXVzZSB0aGUgPGEgaHJlZj0lcyA+QVBJIEFjY2VzcyBUb2tlbjwvYT4gZm9yIHVwZGF0ZXMgb2YgW1tbY29tcG9uZW50XV1dIGhhcyBub3QgYmVlbiBzZXQsIHlvdSBjYW4gc2V0IHRoaXMgYWNjZXNzIHRva2VuIGluIHRoZSA8YSBocmVmPSVzID5nbG9iYWwgb3B0aW9ucyB0YWI8L2E+LiIsDQoJCQkJCQkkZ2V0X2FjY2Vzc190b2tlbl91cmwsDQoJCQkJCQkkc2V0X2FjY2Vzc190b2tlbl91cmwNCgkJCQkJKSwgJ25vdGljZScpOw0KCQkJfQ0KCQl9DQoJfQ0K', 'componentbuilder', '', '', '', 'Ly8gbmVlZHMgZml4', '', '', '', '1.0.2', '{\"property_selection0\":{\"property\":\"39\"},\"property_selection1\":{\"property\":\"37\"}}', 'WW91IGNhbiB1c2UgYWxsIHRoZSBub3JtYWwgbWFya2Rvd24sIGluY2x1ZGluZyB0aGUgcGxhY2UtaG9sZGVycy4=', '', '', '', 'Update (git.vdm.dev)', '', 1, '', '', 1, '2021-12-08 07:42:39', '2024-03-01 21:17:50', 17, '', 9),
(28, 1, '', '', '', 1, '', '', '', '', '', '', '', 1, 1, 'This plugin is used to load PreUpVer on your website. So it adds https://cdn.jsdelivr.net/gh/Llewellynvdm/PreUpVer@1.0.0/dist/js/preupver.min.js to the header of your website. See: https://git.vdm.dev/Llewellyn/PreUpVer for more details.', '{}', 'dd6580c4-6bbb-4d13-a868-0b38fbb6a66e', 'dXNlIEpvb21sYVxDTVNcUGx1Z2luXENNU1BsdWdpbjsNCnVzZSBKb29tbGFcQ01TXEh0bWxcSFRNTEhlbHBlcjsNCg==', 8, '{\"method_selection0\":{\"method\":\"122\"}}', 'CS8qKg0KCSAqIEFwcGxpY2F0aW9uIG9iamVjdA0KCSAqDQoJICogQHZhciAgICBDTVNBcHBsaWNhdGlvbg0KCSAqIEBzaW5jZSAgMS4wLjANCgkgKi8NCglwcm90ZWN0ZWQgICRhcHA7DQoNCgkvKioNCgkgKiBUaGlzIG1ldGhvZCBpcyBjYWxsZWQgYmVmb3JlIHRoZSBoZWFkIGlzIGNvbXBpbGVkIGFuZCBhbGxvd3MgbWFuaXB1bGF0aW9uIG9mIHRoZSBoZWFkIGRhdGEuDQoJICogSW4gdGhpcyBjYXNlLCBpdCdzIHVzZWQgdG8gYWRkIGEgSmF2YVNjcmlwdCBmaWxlIHRvIHRoZSBmcm9udCBlbmQgb2YgdGhlIEpvb21sYSBzaXRlLg0KCSAqDQoJICogQHJldHVybiAgdm9pZA0KCSAqDQoJICogQHNpbmNlICAgMy4wLjANCgkgKiBAdGhyb3dzICBFeGNlcHRpb24gb24gZXJyb3IuDQoJICovDQoJcHVibGljIGZ1bmN0aW9uIG9uQmVmb3JlQ29tcGlsZUhlYWQoKQ0KCXsNCgkJLy8gQ2hlY2sgaWYgd2UgYXJlIGluIHRoZSBzaXRlIGFwcGxpY2F0aW9uDQoJCWlmICgkdGhpcy0+YXBwLT5pc0NsaWVudCgnc2l0ZScpKSB7DQoJCQlIVE1MSGVscGVyOjpfKCdzY3JpcHQnLCAnaHR0cHM6Ly9jZG4uanNkZWxpdnIubmV0L2doL0xsZXdlbGx5bnZkbS9QcmVVcFZlckAxLjAuMC9kaXN0L2pzL3ByZXVwdmVyLm1pbi5qcycsIFsndmVyc2lvbicgPT4gJ2F1dG8nXSk7DQoJCX0NCgl9', 'PreUpVerLoader', '', '', '', 'CQkJJGp2ZXJzaW9uID0gbmV3IEpWZXJzaW9uKCk7DQoJCQlpZiAoISRqdmVyc2lvbi0+aXNDb21wYXRpYmxlKCczLjEwLjAnKSkgew0KCQkJCSRhcHAtPmVucXVldWVNZXNzYWdlKCdQbGVhc2UgdXBncmFkZSB0byBhdCBsZWFzdCBKb29tbGEhIDMuMTAgYmVmb3JlIGNvbnRpbnVpbmchJywgJ2Vycm9yJyk7DQoJCQkJcmV0dXJuIGZhbHNlOw0KCQkJfQ0K', '', '', '', '1.0.0', '{\"property_selection0\":{\"property\":\"25\"}}', 'IyBQcmVVcFZlciBMb2FkZXIgKFtbW3BsdWdpbi52ZXJzaW9uXV1dKQ0KDQojIyBJbnRyb2R1Y3Rpb24NCg0KUHJlVXBWZXIgaXMgYSB2ZXJzYXRpbGUgSmF2YVNjcmlwdCBsaWJyYXJ5IGRlc2lnbmVkIHRvIGF1dG9tYXRpY2FsbHkgdXBkYXRlIHRoZSB2ZXJzaW9uIG51bWJlcnMgb2YgbGlicmFyeSBzY3JpcHRzIGluIHlvdXIgZG9jdW1lbnRhdGlvbi4gSXQgaWRlbnRpZmllcyBzcGVjaWZpYyBgPHByZT5gIHRhZ3Mgb24geW91ciB3ZWJwYWdlIGFuZCB1cGRhdGVzIHRoZW0gd2l0aCB0aGUgbGF0ZXN0IHZlcnNpb24gdGFnIGZldGNoZWQgZnJvbSBhIHNwZWNpZmllZCByZXBvc2l0b3J5LCBlbnN1cmluZyB5b3VyIGRvY3VtZW50YXRpb24gYWx3YXlzIGRpc3BsYXlzIHVwLXRvLWRhdGUgaW5mb3JtYXRpb24uDQoNCiMjIEhvdyBJdCBXb3Jrcw0KDQpQcmVVcFZlciBvcGVyYXRlcyBieSBzZWFyY2hpbmcgZm9yIGA8cHJlPmAgdGFncyB3aXRoIGEgZGVzaWduYXRlZCBjbGFzcyAoYHByZXVwdmVyYCkgYW5kIHVzaW5nIHRoZWlyIGRhdGEgYXR0cmlidXRlcyB0byBwZXJmb3JtIHZlcnNpb24gdXBkYXRlcy4gSXQgc2ltcGxpZmllcyB0aGUgcHJvY2VzcyBvZiBrZWVwaW5nIHlvdXIgbGlicmFyeSByZWZlcmVuY2VzIHVwLXRvLWRhdGUgaW4gZG9jdW1lbnRhdGlvbi4NCg0KIyMjIEF1dG9tYXRpYyBEZXRlY3Rpb24gYW5kIFVwZGF0aW5nDQoNCldoZW4gdGhlIHdlYnBhZ2UgbG9hZHMsIFByZVVwVmVyIGZpbmRzIGFsbCBgPHByZT5gIHRhZ3MgbWFya2VkIHdpdGggdGhlIGBwcmV1cHZlcmAgY2xhc3MuIEl0IHRoZW4gZXh0cmFjdHMgbmVjZXNzYXJ5IGRldGFpbHMgZnJvbSB0aGVpciBkYXRhIGF0dHJpYnV0ZXMgYW5kIHVwZGF0ZXMgZWFjaCB0YWcgd2l0aCB0aGUgbGF0ZXN0IGxpYnJhcnkgdmVyc2lvbi4NCg0KIyMjIFVzYWdlDQoNCjEuICoqTWFya2luZyBgPHByZT5gIFRhZ3M6KioNCg0KICAgQWRkIHRoZSBgY2xhc3M9InByZXVwdmVyImAgdG8gYDxwcmU+YCB0YWdzIGluIHlvdXIgSFRNTCBhbmQgZGVmaW5lIHRoZSByZXF1aXJlZCBkYXRhIGF0dHJpYnV0ZXMgZm9yIGF1dG9tYXRpYyB1cGRhdGluZzoNCg0KICAgYGBgaHRtbA0KICAgPHByZSBpZD0idW5pcXVlLWlkIiBjbGFzcz0icHJldXB2ZXIiDQogICAgICAgIGRhdGEtYXBpLXVybD0iaHR0cHM6Ly9hcGkuZ2l0aHViLmNvbS9yZXBvcy91c2VybmFtZS9saWJyYXJ5L3RhZ3MiDQogICAgICAgIGRhdGEtZGVzY3JpcHRpb249IkRlc2NyaXB0aW9uIG9mIHRoZSBsaWJyYXJ5IHNjcmlwdCINCiAgICAgICAgZGF0YS11cmw9Imh0dHBzOi8vY2RuLmpzZGVsaXZyLm5ldC9naC91c2VybmFtZS9saWJyYXJ5QCR7dmVyc2lvbn0vZGlzdC9saWJyYXJ5Lm1pbi5qcyI+DQogICA8L3ByZT4NCiAgIGBgYA0KDQogICBSZXBsYWNlIGB1bmlxdWUtaWRgLCBgdXNlcm5hbWVgLCBgbGlicmFyeWAsIGFuZCBvdGhlciBwbGFjZWhvbGRlcnMgd2l0aCB5b3VyIHNwZWNpZmljIGRldGFpbHMuDQoNCjIuICoqQXR0cmlidXRlcyBFeHBsYWluZWQ6KioNCg0KICAgLSBgaWRgOiBBIHVuaXF1ZSBpZGVudGlmaWVyIGZvciB0aGUgYDxwcmU+YCB0YWcuDQogICAtIGBkYXRhLWFwaS11cmxgOiBUaGUgQVBJIFVSTCB0byBmZXRjaCB0aGUgbGF0ZXN0IGxpYnJhcnkgdmVyc2lvbi4NCiAgIC0gYGRhdGEtZGVzY3JpcHRpb25gOiBBIGJyaWVmIGRlc2NyaXB0aW9uIG9mIHRoZSBsaWJyYXJ5IHNjcmlwdC4NCiAgIC0gYGRhdGEtdXJsYDogVGhlIFVSTCBvZiB0aGUgc2NyaXB0LCB3aGVyZSBgJHt2ZXJzaW9ufWAgd2lsbCBiZSByZXBsYWNlZCB3aXRoIHRoZSBsYXRlc3QgdmVyc2lvbiBudW1iZXIuDQoNCiMjIyBFeGFtcGxlDQoNCkNoZWNrIG91dCB0aGUgW3Rlc3RzXShodHRwczovL2dpdC52ZG0uZGV2L0xsZXdlbGx5bi9QcmVVcFZlci9zcmMvYnJhbmNoL21hc3Rlci90ZXN0cy8pIGZvbGRlciBmb3IgdGhlIGV4YW1wbGVzIHdlIHVzZSB0byB0ZXN0IGlmIHRoaXMgbGlicmFyeSB3b3JrcyBhcyBleHBlY3RlZC4NCg0KIyBCdWlsZCBEZXRhaWxzDQoNCisgKkF1dGhvcio6IFtMbGV3ZWxseW4gdmFuIGRlciBNZXJ3ZV0obWFpbHRvOmpvb21sYUB2ZG0uaW8pDQorICpOYW1lKjogW1ByZVVwVmVyIExvYWRlcl0oaHR0cHM6Ly9naXQudmRtLmRldi9MbGV3ZWxseW4vUHJlVXBWZXIpDQorICpGaXJzdCBCdWlsZCo6ICMjI0NSRUFUSU9OREFURSMjIw0KKyAqTGFzdCBCdWlsZCo6ICMjI0JVSUxEREFURSMjIw0KKyAqVmVyc2lvbio6IFtbW3BsdWdpbi52ZXJzaW9uXV1dDQorICpDb3B5cmlnaHQqOiAjIyNDT1BZUklHSFQjIyMNCisgKkxpY2Vuc2UqOiAjIyNMSUNFTlNFIyMjDQoNCj4gVGhpcyAqKnBsdWdpbioqIHdhcyBidWlsZCB3aXRoIGEgSm9vbWxhIFtBdXRvbWF0ZWQgQ29tcG9uZW50IEJ1aWxkZXJdKGh0dHBzOi8vd3d3Lmpvb21sYWNvbXBvbmVudGJ1aWxkZXIuY29tKS4NCj4gRGV2ZWxvcGVkIGJ5IFtMbGV3ZWxseW4gdmFuIGRlciBNZXJ3ZV0obWFpbHRvOmpvb21sYUB2ZG0uaW8p', '', '', '', 'PreUpVer Loader', '', 1, '', '', 1, '2023-11-28 09:01:02', '2023-11-28 11:27:32', 5, '', 2);
--
-- Dumping data for table `#__componentbuilder_admin_view`
--
INSERT INTO `#__componentbuilder_admin_view` (`id`, `add_css_view`, `add_css_views`, `add_custom_button`, `add_custom_import`, `add_fadein`, `add_javascript_view_file`, `add_javascript_view_footer`, `add_javascript_views_file`, `add_javascript_views_footer`, `add_php_ajax`, `add_php_allowedit`, `add_php_batchcopy`, `add_php_batchmove`, `add_php_getitem`, `add_php_getitems`, `add_php_getitems_after_all`, `add_php_getlistquery`, `add_php_postsavehook`, `add_php_save`, `add_sql`, `addlinked_views`, `addpermissions`, `addtables`, `addtabs`, `add_php_before_delete`, `add_php_before_publish`, `add_php_document`, `add_php_after_delete`, `add_php_after_publish`, `php_before_delete`, `php_before_publish`, `php_controller`, `php_document`, `php_after_delete`, `php_after_publish`, `ajax_input`, `css_view`, `css_views`, `custom_button`, `description`, `html_import_view`, `icon`, `icon_add`, `icon_category`, `javascript_view_file`, `javascript_view_footer`, `javascript_views_file`, `javascript_views_footer`, `name_list`, `system_name`, `name_single`, `php_ajaxmethod`, `php_allowedit`, `php_batchcopy`, `php_batchmove`, `php_getitem`, `php_getitems`, `php_getitems_after_all`, `php_getlistquery`, `php_import`, `php_import_display`, `php_import_save`, `php_import_setdata`, `php_model`, `php_postsavehook`, `php_save`, `short_description`, `source`, `sql`, `type`, `php_before_save`, `php_controller_list`, `php_getform`, `php_after_cancel`, `php_allowadd`, `php_before_cancel`, `php_import_ext`, `php_import_headers`, `php_model_list`, `params`, `published`, `created`, `modified`, `version`, `hits`, `ordering`, `guid`) VALUES
(109, '', '', '', '', 1, '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '{}', '{\"addpermissions0\":{\"action\":\"view.edit\",\"implementation\":3},\"addpermissions1\":{\"action\":\"view.edit.own\",\"implementation\":3},\"addpermissions2\":{\"action\":\"view.edit.state\",\"implementation\":3},\"addpermissions3\":{\"action\":\"view.edit.created_by\",\"implementation\":3},\"addpermissions4\":{\"action\":\"view.edit.created\",\"implementation\":3},\"addpermissions5\":{\"action\":\"view.create\",\"implementation\":3},\"addpermissions6\":{\"action\":\"view.delete\",\"implementation\":3},\"addpermissions7\":{\"action\":\"view.access\",\"implementation\":3}}', '{}', '{\"addtabs0\":{\"name\":\"Details\"},\"addtabs1\":{\"name\":\"More\"}}', '', '', '', '', '', '', '', '', '', '', '', '{}', '', '', '{}', '', '', 'images/WoodMannequin-icon.png', 'images/WoodMannequin-icon-plus.png', '', '', '', '', '', 'Looks', 'Look', 'Look', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', 'The demo view', '', '', 1, '', '', '', '', '', '', '', '', '', '{\"fieldordering\":{\"add_admin_ordering\":\"0\",\"admin_ordering_fields\":{\"admin_ordering_fields0\":{\"field\":\"\",\"direction\":\"ASC\"}},\"add_linked_ordering\":\"0\",\"linked_ordering_fields\":{\"linked_ordering_fields0\":{\"field\":\"\",\"direction\":\"ASC\"}}},\"privacy\":{\"activate\":\"1\",\"permissions\":\"1\",\"anonymize\":\"0\",\"anonymize_fields\":[],\"user_link\":\"1\",\"custom_link\":\"$query->where($db->quoteName(\'created_by\') . \' = \' . $db->quote($user->id));\",\"other_user_field\":\"682\"}}', 1, '2016-10-18 11:44:46', '2020-05-21 14:39:27', 18, '', 110, 'c1053952-8a84-4398-aef1-41726f7c0043');
--
-- Dumping data for table `#__componentbuilder_site_view`
--
INSERT INTO `#__componentbuilder_site_view` (`id`, `add_css_document`, `add_css`, `add_js_document`, `add_php_document`, `add_php_jview`, `add_php_jview_display`, `add_php_view`, `add_php_ajax`, `add_custom_button`, `custom_button`, `button_position`, `php_controller`, `php_model`, `ajax_input`, `php_ajaxmethod`, `codename`, `css_document`, `css`, `custom_get`, `default`, `description`, `dynamic_get`, `js_document`, `main_get`, `name`, `system_name`, `php_document`, `php_jview`, `php_jview_display`, `php_view`, `snippet`, `params`, `javascript_file`, `libraries`, `published`, `created`, `modified`, `version`, `hits`, `ordering`, `guid`) VALUES
(23, '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', 'looks', '', '', '', 'PHRhYmxlIGNsYXNzPSJ1ay10YWJsZSB1ay10YWJsZS1ob3ZlciI+DQogICAgPGNhcHRpb24+PD9waHAgZWNobyBUZXh0OjpfKCdMaXN0IG9mIGFsbCBsb29rcycpOyA/PjwvY2FwdGlvbj4NCiAgICA8dGhlYWQ+DQogICAgICAgIDx0cj4NCiAgICAgICAgICAgIDx0aD48P3BocCBlY2hvIFRleHQ6Ol8oJ05hbWUnKTsgPz48L3RoPg0KICAgICAgICAgICAgPHRoPjw/cGhwIGVjaG8gVGV4dDo6XygnRGVzY3JpcHRpb24nKTsgPz48L3RoPg0KICAgICAgICA8L3RyPg0KICAgIDwvdGhlYWQ+DQogICAgPHRib2R5Pg0KICAgICAgICA8P3BocCBmb3JlYWNoICgkdGhpcy0+aXRlbXMgYXMgJGl0ZW0pOiA/Pg0KICAgICAgICA8dHI+DQogICAgICAgICAgICA8dGQ+PGEgaHJlZj0iPD9waHAgZWNobyAgW1tbQ29tcG9uZW50XV1dSGVscGVyUm91dGU6OmdldExvb2tpbmdSb3V0ZSgkaXRlbS0+c2x1Zyk7ID8+IiA+PD9waHAgZWNobyAkaXRlbS0+bmFtZTsgPz48L2E+PC90ZD4NCiAgICAgICAgICAgIDx0ZD48P3BocCBlY2hvICR0aGlzLT5lc2NhcGUoJGl0ZW0tPmRlc2NyaXB0aW9uLCB0cnVlLCAxMjApOyA/Pjw/cGhwIGVjaG8gJGl0ZW0tPmVkaXRMaW5rOyA/PjwvdGQ+DQogICAgICAgIDwvdHI+DQogICAgICAgIDw/cGhwIGVuZGZvcmVhY2g7ID8+DQogICAgPC90Ym9keT4NCjwvdGFibGU+', 'The List of all published looks', 36, '', 36, 'Looks', 'Looks', '', '', '', '', '', '', '', '', 1, '2016-04-05 14:31:59', '2016-10-20 15:57:24', 9, '', 14, 'b2dce59e-e3b8-4467-bcb5-8f2df4bdfeb7'),
(25, '', '', '', '', 1, 1, '', '', '', '', 1, '', '', '', '', 'looking', '', '', '', 'PGFydGljbGUgY2xhc3M9InVrLWNvbW1lbnQiPg0KICAgIDxoZWFkZXIgY2xhc3M9InVrLWNvbW1lbnQtaGVhZGVyIj4NCiAgICAgICAgPGltZyBjbGFzcz0idWstY29tbWVudC1hdmF0YXIiIHNyYz0ie2ltYWdldXJsfSIgYWx0PSIiPg0KICAgICAgICA8aDQgY2xhc3M9InVrLWNvbW1lbnQtdGl0bGUiPjw/cGhwIGVjaG8gJHRoaXMtPmVzY2FwZSgkdGhpcy0+aXRlbS0+bmFtZSk7ID8+PC9oND4NCiAgICAgICAgPGRpdiBjbGFzcz0idWstY29tbWVudC1tZXRhIj48P3BocCBlY2hvIFRleHQ6Ol8oJ0hpdHMnKTsgPz46IDw/cGhwIGVjaG8gJHRoaXMtPml0ZW0tPmhpdHM7ID8+PC9kaXY+DQogICAgPC9oZWFkZXI+DQogICAgPGRpdiBjbGFzcz0idWstY29tbWVudC1ib2R5Ij4NCiAgICAgICAgPD9waHAgZWNobyAkdGhpcy0+aXRlbS0+ZGVzY3JpcHRpb247ID8+DQogICAgICAgIDw/cGhwIGlmICgkdGhpcy0+aXRlbS0+YWRkKTogPz4NCiAgICAgICAgICAgIDxiciAvPg0KICAgICAgICAgICAgPCEtLSBUaGlzIGlzIGEgYnV0dG9uIHRvZ2dsaW5nIHRoZSBtb2RhbCAtLT4NCiAgICAgICAgICAgIDxidXR0b24gY2xhc3M9InVrLWJ1dHRvbiIgZGF0YS11ay1tb2RhbD0ie3RhcmdldDonI21vcmUtZGV0YWlscy0wOTAnfSI+PD9waHAgZWNobyBUZXh0OjpfKCdNb3JlIERldGFpbHMnKTsgPz48L2J1dHRvbj4NCiAgICAgICAgPD9waHAgZW5kaWY7ID8+DQogICAgPC9kaXY+DQo8L2FydGljbGU+DQo8P3BocCBpZiAoJHRoaXMtPml0ZW0tPmFkZCk6ID8+DQo8IS0tIFRoaXMgaXMgdGhlIG1vZGFsIC0tPg0KPGRpdiBpZD0ibW9yZS1kZXRhaWxzLTA5MCIgY2xhc3M9InVrLW1vZGFsIj4NCiAgICA8ZGl2IGNsYXNzPSJ1ay1tb2RhbC1kaWFsb2ciPg0KICAgICAgICA8YSBjbGFzcz0idWstbW9kYWwtY2xvc2UgdWstY2xvc2UiPjwvYT4NCiAgICAgICAgPGRsIGNsYXNzPSJ1ay1kZXNjcmlwdGlvbi1saXN0LWhvcml6b250YWwiPg0KICAgICAgICA8P3BocCBpZiAoU3VwZXJfX18xZjI4Y2I1M182MGQ5XzRkYjFfYjUxN18zYzdkYzZiNDI5ZWZfX19Qb3dlcjo6Y2hlY2soJHRoaXMtPml0ZW0tPmRhdGVvZmJpcnRoKSk6ID8+DQogICAgICAgICAgICA8ZHQ+PD9waHAgZWNobyBUZXh0OjpfKCdCaXJ0aCBkYXknKTsgPz48L2R0PjxkZD48P3BocCBlY2hvIFtbW0NvbXBvbmVudF1dXUhlbHBlcjo6ZmFuY3lEYXRlKCR0aGlzLT5lc2NhcGUoJHRoaXMtPml0ZW0tPmRhdGVvZmJpcnRoKSk7ID8+PC9kZD4NCiAgICAgICAgPD9waHAgZW5kaWY7ID8+DQogICAgICAgIDw/cGhwIGlmIChTdXBlcl9fXzFmMjhjYjUzXzYwZDlfNGRiMV9iNTE3XzNjN2RjNmI0MjllZl9fX1Bvd2VyOjpjaGVjaygkdGhpcy0+aXRlbS0+ZW1haWwpKTogPz4NCiAgICAgICAgICAgIDxkdD48P3BocCBlY2hvIFRleHQ6Ol8oJ0VtYWlsJyk7ID8+PC9kdD48ZGQ+PD9waHAgZWNobyAkdGhpcy0+ZXNjYXBlKCR0aGlzLT5pdGVtLT5lbWFpbCk7ID8+PC9kZD4NCiAgICAgICAgPD9waHAgZW5kaWY7ID8+DQogICAgICAgIDw/cGhwIGlmIChTdXBlcl9fXzFmMjhjYjUzXzYwZDlfNGRiMV9iNTE3XzNjN2RjNmI0MjllZl9fX1Bvd2VyOjpjaGVjaygkdGhpcy0+aXRlbS0+bW9iaWxlX3Bob25lKSk6ID8+DQogICAgICAgICAgICA8ZHQ+PD9waHAgZWNobyBUZXh0OjpfKCdNb2JpbGUnKTsgPz48L2R0PjxkZD48P3BocCBlY2hvICR0aGlzLT5lc2NhcGUoJHRoaXMtPml0ZW0tPm1vYmlsZV9waG9uZSk7ID8+PC9kZD4NCiAgICAgICAgPD9waHAgZW5kaWY7ID8+DQogICAgICAgIDw/cGhwIGlmIChTdXBlcl9fXzFmMjhjYjUzXzYwZDlfNGRiMV9iNTE3XzNjN2RjNmI0MjllZl9fX1Bvd2VyOjpjaGVjaygkdGhpcy0+aXRlbS0+d2Vic2l0ZSkpOiA/Pg0KICAgICAgICAgICAgPGR0Pjw/cGhwIGVjaG8gVGV4dDo6XygnV2Vic2l0ZScpOyA/PjwvZHQ+PGRkPjw/cGhwIGVjaG8gJHRoaXMtPmVzY2FwZSgkdGhpcy0+aXRlbS0+d2Vic2l0ZSk7ID8+PC9kZD4NCiAgICAgICAgPD9waHAgZW5kaWY7ID8+DQogICAgICAgIDwvZGw+DQogICAgPC9kaXY+DQo8L2Rpdj4NCjw/cGhwIGVuZGlmOyA/Pg==', 'Looking at a look', 39, '', 39, 'Looking', 'Looking', '', 'CSAvKioNCgkgKiBJbmNyZW1lbnQgdGhlIGhpdCBjb3VudGVyIGZvciB0aGUgcHJlYWNoZXIuDQoJICoNCgkgKiBAcGFyYW0gICBpbnRlZ2VyICAkcGsgIFByaW1hcnkga2V5IG9mIHRoZSBwcmVhY2hlciB0byBpbmNyZW1lbnQuDQoJICoNCgkgKiBAcmV0dXJuICBib29sZWFuICBUcnVlIGlmIHN1Y2Nlc3NmdWw7DQoJICovDQoJcHVibGljIGZ1bmN0aW9uIGhpdCgkcGsgPSAwKQ0KCXsNCgkJaWYgKCRwaykNCgkJew0KCQkJJGRiID0gRmFjdG9yeTo6Z2V0RGJvKCk7DQoJCQkkcXVlcnkgPSAkZGItPmdldFF1ZXJ5KHRydWUpOw0KDQoJCQkvLyBGaWVsZHMgdG8gdXBkYXRlLg0KCQkJJGZpZWxkcyA9IGFycmF5KA0KCQkJICAgICRkYi0+cXVvdGVOYW1lKCdoaXRzJykgLiAnID0gJy4kZGItPnF1b3RlTmFtZSgnaGl0cycpLicgKyAxJw0KCQkJKTsNCg0KCQkJLy8gQ29uZGl0aW9ucyBmb3Igd2hpY2ggcmVjb3JkcyBzaG91bGQgYmUgdXBkYXRlZC4NCgkJCSRjb25kaXRpb25zID0gYXJyYXkoDQoJCQkgICAgJGRiLT5xdW90ZU5hbWUoJ2lkJykgLiAnID0gJyAuICRwaw0KCQkJKTsNCg0KCQkJJHF1ZXJ5LT51cGRhdGUoJGRiLT5xdW90ZU5hbWUoJyNfX1tbW2NvbXBvbmVudF1dXV9sb29rJykpLT5zZXQoJGZpZWxkcyktPndoZXJlKCRjb25kaXRpb25zKTsNCg0KCQkJJGRiLT5zZXRRdWVyeSgkcXVlcnkpOw0KCQkJcmV0dXJuICRkYi0+ZXhlY3V0ZSgpOw0KCQl9DQoJCXJldHVybiBmYWxzZTsNCgl9', 'Ly8gYWRkIGEgaGl0IHRvIHRoZSBsb29rDQppZiAoJHRoaXMtPmhpdCgkdGhpcy0+aXRlbS0+aWQpKQ0Kew0KCSR0aGlzLT5pdGVtLT5oaXRzKys7DQp9', '', '', '', '', '', 1, '2016-10-20 15:11:29', '2016-10-20 17:10:58', 16, '', 14, '851ed44e-5431-4951-876f-4b62a4c56ad2');
--
-- Dumping data for table `#__componentbuilder_dynamic_get`
--
INSERT INTO `#__componentbuilder_dynamic_get` (`id`, `add_php_after_getitem`, `add_php_before_getitem`, `add_php_after_getitems`, `add_php_before_getitems`, `add_php_getlistquery`, `php_after_getitem`, `php_before_getitem`, `php_before_getitems`, `php_getlistquery`, `php_after_getitems`, `pagination`, `addcalculation`, `db_selection`, `db_table_main`, `filter`, `getcustom`, `gettype`, `global`, `join_db_table`, `join_view_table`, `main_source`, `name`, `order`, `php_calculation`, `php_custom_get`, `view_selection`, `view_table_main`, `where`, `php_router_parse`, `group`, `params`, `published`, `version`, `hits`, `ordering`, `guid`) VALUES
(36, '', '', 1, '', '', '', '', '', '', 'CQkvLyBkbyBhIHF1aWNrIGJ1aWxkIG9mIGFsbCBlZGl0IGxpbmtzIGxpbmtzDQoJCWlmIChpc3NldCgkaXRlbXMpICYmICRpdGVtcykNCgkJew0KCQkJZm9yZWFjaCAoJGl0ZW1zIGFzICRuciA9PiAmJGl0ZW0pDQoJCQl7DQoJCQkJJGNhbkRvID0gW1tbQ29tcG9uZW50XV1dSGVscGVyOjpnZXRBY3Rpb25zKCdsb29rJywkaXRlbSwnbG9va3MnKTsNCgkJCQlpZiAoJGNhbkRvLT5nZXQoJ2xvb2suZWRpdCcpKQ0KCQkJCXsNCgkJCQkJJGl0ZW0tPmVkaXRMaW5rID0gJzxiciAvPjxiciAvPjxhIGNsYXNzPSJ1ay1idXR0b24gdWstYnV0dG9uLXByaW1hcnkgdWstd2lkdGgtMS0xIiBocmVmPSInOw0KCQkJCQkkaXRlbS0+ZWRpdExpbmsgLj0gXEpSb3V0ZTo6XygnaW5kZXgucGhwP29wdGlvbj1jb21fW1tbY29tcG9uZW50XV1dJnZpZXc9bG9vayZ0YXNrPWxvb2suZWRpdCZpZD0nIC4gJGl0ZW0tPmlkKTsNCgkJCQkJJGl0ZW0tPmVkaXRMaW5rIC49ICciPjxpIGNsYXNzPSJ1ay1pY29uLXBlbmNpbCI+PC9pPjxzcGFuIGNsYXNzPSJ1ay1oaWRkZW4tc21hbGwiPic7DQoJCQkJCSRpdGVtLT5lZGl0TGluayAuPSBUZXh0OjpfKCdFZGl0IExvb2snKTsNCgkJCQkJJGl0ZW0tPmVkaXRMaW5rIC49ICc8L3NwYW4+PC9hPic7DQoJCQkJfQ0KCQkJCWVsc2UNCgkJCQl7DQoJCQkJCSRpdGVtLT5lZGl0TGluayA9ICcnOw0KCQkJCX0NCgkJCX0NCgkJfQ==', 1, '', '', '', '', '', 2, '', '', '', 1, 'Looks', '{\"order0\":{\"table_key\":\"a.name\",\"direction\":\"ASC\"}}', '', '', 'a.*', 109, '{\"where0\":{\"table_key\":\"a.published\",\"operator\":\"1\",\"value_key\":\"1\"}}', '', '', '', 1, 12, '', 13, '32b3ae7d-8aa8-47f1-ab2e-30076ddaa029'),
(39, '', '', '', '', '', '', '', '', '', '', 1, '', '', '', '{\"filter0\":{\"filter_type\":\"1\",\"state_key\":\"id\",\"operator\":\"1\",\"table_key\":\"a.id\"}}', '', 1, '', '', '', 1, 'Looking', '', '', '', 'a.id AS id\r\na.name AS name\r\na.alias AS alias\r\na.description AS description\r\na.add AS add\r\na.email AS email\r\na.mobile_phone AS mobile_phone\r\na.dateofbirth AS dateofbirth\r\na.image AS image\r\na.website AS website\r\na.published AS published\r\na.hits AS hits\r\na.created_by AS created_by', 109, '', '', '', '', 1, 8, '', '', '98e6ea56-0911-4d89-b1f4-8f0bb1e4aa5a');
--
-- Dumping data for table `#__componentbuilder_library`
--
INSERT INTO `#__componentbuilder_library` (`id`, `addconditions`, `description`, `type`, `how`, `name`, `php_setdocument`, `published`, `created`, `modified`, `version`, `hits`, `ordering`, `libraries`, `params`, `guid`) VALUES
(1, '', '', 1, '', 'No Library', '', 1, '2017-11-11 22:08:33', '2017-12-08 15:51:34', 4, '', 1, '', '', 'bc8e675d-7536-4a68-b186-fb4b988fa3e2'),
(2, '', '', 1, 1, 'Bootstrap v4', '', 1, '2017-11-12 02:08:39', '2017-12-17 09:04:10', 18, '', 2, '', '', '6f6650a5-ebff-4783-8508-f0285c0e98a6'),
(3, '{}', '', 1, 1, 'Uikit v3', '', 1, '2017-11-11 22:08:45', '2021-05-27 00:18:36', 20, '', 3, '', '', '5eeee148-cebd-4a92-bc0e-56efea3cffdc'),
(4, '', '', 1, 4, 'Uikit v2', '', 1, '2017-11-11 22:08:51', '2018-06-29 02:36:17', 6, '', 4, '', '', '367fbf66-890e-42a7-a82d-f780d2f86786'),
(5, '', '', 1, 4, 'FooTable v2', '', 1, '2017-11-11 22:08:57', '2017-12-11 20:07:32', 9, '', 5, '', '', 'a90edd5a-8521-4fb1-b6b3-9a21e9f56642'),
(6, '', '', 1, 4, 'FooTable v3', '', 1, '2017-11-25 22:11:03', '2017-12-10 15:54:45', 12, '', 6, '', '', '86829029-dc8a-424e-b046-b189a92565d9');
--
-- Dumping data for table `#__componentbuilder_snippet`
--
INSERT INTO `#__componentbuilder_snippet` (`id`, `contributor_company`, `contributor_email`, `contributor_name`, `contributor_website`, `description`, `heading`, `library`, `name`, `snippet`, `type`, `url`, `usage`, `params`, `published`, `created`, `modified`, `version`, `hits`, `ordering`, `guid`) VALUES
(1, 'Vast Development Method', 'Joomla@vdm.io', 'Llewellyn van der Merwe', 'https://www.vdm.io/', 'The grid system of UIkit follows the mobile-first approach and accomodates up to 10 grid columns. It uses units with predefined classes inside each grid, which define the column width. It is also possible to combine the grid with classes from the Flex component, although it works only in modern browsers.', 'Create a fully responsive, fluid and nestable grid layout.', 4, 'Grid', 'PGRpdiBkYXRhLXVrLWdyaWQtbWFyZ2luPSIiIGNsYXNzPSJ0bS1ncmlkLXRydW5jYXRlIHVrLWdyaWQgdWstZ3JpZC1kaXZpZGVyIHVrLXRleHQtY2VudGVyIj4NCiAgICA8ZGl2IGNsYXNzPSJ1ay13aWR0aC1tZWRpdW0tMS0zIj4NCiAgICAJPGRpdiBjbGFzcz0idWstcGFuZWwgdWstcGFuZWwtYm94Ij4NCiAgICAgICAgCXtjb250ZW50fQ0KICAgICAgICA8L2Rpdj4NCiAgICA8L2Rpdj4NCiAgICA8ZGl2IGNsYXNzPSJ1ay13aWR0aC1tZWRpdW0tMS0zIj4NCiAgICAJPGRpdiBjbGFzcz0idWstcGFuZWwgdWstcGFuZWwtYm94Ij4NCiAgICAgICAgCXtjb250ZW50fQ0KICAgICAgICA8L2Rpdj4NCiAgICA8L2Rpdj4NCiAgICA8ZGl2IGNsYXNzPSJ1ay13aWR0aC1tZWRpdW0tMS0zIj4NCiAgICAJPGRpdiBjbGFzcz0idWstcGFuZWwgdWstcGFuZWwtYm94Ij4NCiAgICAgICAgCXtjb250ZW50fQ0KICAgICAgICA8L2Rpdj4NCiAgICA8L2Rpdj4NCjwvZGl2Pg==', 1, 'http://getuikit.com/docs/grid.html', 'To create the grid container, add the .uk-grid class to a parent element. Add one of the .uk-width-* classes to child elements to determine, how the units shall be sized. The grid supports 1, 2, 3, 4, 5, 6 and 10 unit divisions. This table gives you an overview of the uk-width-* classes that can be applied to units.', '', 1, '2015-05-19 17:18:32', '2017-11-11 22:09:27', 77, '', 1, 'fba0aa3f-03e4-49e7-92b6-9d5e98f66967'),
(2, 'Vast Development Method', 'Joomla@vdm.io', 'Llewellyn van der Merwe', 'https://www.vdm.io/', 'UIkit uses panels to outline certain sections of your content, which can be styled differently. Typically, panels are arranged in grid columns from the Grid component.', 'Create layout boxes with different styles.', 4, 'Panel', 'PGRpdiBkYXRhLXVrLWdyaWQtbWFyZ2luPSIiIGNsYXNzPSJ1ay1ncmlkIj4NCiAgICA8ZGl2IGNsYXNzPSJ1ay13aWR0aC1tZWRpdW0tMS0yIj4NCiAgICAgICAgPGRpdiBjbGFzcz0idWstcGFuZWwgdWstcGFuZWwtYm94Ij4NCiAgICAgICAgICAgIDxoMyBjbGFzcz0idWstcGFuZWwtdGl0bGUiPnt0aXRsZX08L2gzPg0KICAgICAgICAgICAge2NvbnRlbnR9DQogICAgICAgIDwvZGl2Pg0KICAgIDwvZGl2Pg0KICAgIDxkaXYgY2xhc3M9InVrLXdpZHRoLW1lZGl1bS0xLTIiPg0KICAgICAgICA8ZGl2IGNsYXNzPSJ1ay1wYW5lbCB1ay1wYW5lbC1ib3giPg0KICAgICAgICAgICAgPGgzIGNsYXNzPSJ1ay1wYW5lbC10aXRsZSI+e3RpdGxlfTwvaDM+DQogICAgICAgICAgICB7Y29udGVudH0NCiAgICAgICAgPC9kaXY+DQogICAgPC9kaXY+DQo8L2Rpdj4=', 1, 'http://getuikit.com/docs/panel.html', 'The Panel component consists of the panel itself, the panel title and a panel badge. To prevent redundant white space, top and bottom margins are removed from the panel\'s content.', '', 1, '2015-05-19 20:04:54', '2017-11-11 22:09:27', 70, '', 1, '4b6e7ee3-75d9-459a-805e-764915247253'),
(3, 'Vast Development Method', 'Joomla@vdm.io', 'Llewellyn van der Merwe', 'https://www.vdm.io/', '', 'Separate content sections by bundling them in blocks with different styles.', 4, 'Block', 'PGRpdiBjbGFzcz0idWstYmxvY2sgdWstYmxvY2stcHJpbWFyeSI+e2NvbnRlbnR9PC9kaXY+', 1, 'http://getuikit.com/docs/block.html', 'To apply this component, just add the .uk-block class to a container element.', '', 1, '2015-05-19 20:09:41', '2017-11-11 22:09:27', 56, '', 2, 'cf2eb2fa-38d1-431c-9383-939c58becd7a'),
(4, 'Vast Development Method', 'Joomla@vdm.io', 'Llewellyn van der Merwe', 'https://www.vdm.io/', '', 'Create articles within your page.', 4, 'Article', 'PGFydGljbGUgY2xhc3M9InVrLWFydGljbGUiPg0KICAgIDxoMSBjbGFzcz0idWstYXJ0aWNsZS10aXRsZSI+e3RpdGxlfTwvaDE+DQogICAgPHAgY2xhc3M9InVrLWFydGljbGUtbWV0YSI+e21ldGF9PC9wPg0KICAgIDxwIGNsYXNzPSJ1ay1hcnRpY2xlLWxlYWQiPntjb250ZW50fTwvcD4NCiAgICB7Y29udGVudH0NCiAgICA8aHIgY2xhc3M9InVrLWFydGljbGUtZGl2aWRlciI+DQogICAge2NvbnRlbnR9DQo8L2FydGljbGU+', 1, 'http://getuikit.com/docs/article.html', 'The article component consists of the article itself, a title, meta data, an opening paragraph and dividers.', '', 1, '2015-05-19 20:12:06', '2017-11-11 22:09:27', 53, '', 3, 'ced3bf82-0a72-4acd-a1f5-471959993f2b'),
(5, 'Vast Development Method', 'Joomla@vdm.io', 'Llewellyn van der Merwe', 'https://www.vdm.io/', '', 'Create comments, for example about articles.', 4, 'Comment', 'PGFydGljbGUgY2xhc3M9InVrLWNvbW1lbnQiPg0KICAgIDxoZWFkZXIgY2xhc3M9InVrLWNvbW1lbnQtaGVhZGVyIj4NCiAgICAgICAgPGltZyBjbGFzcz0idWstY29tbWVudC1hdmF0YXIiIHNyYz0ie2ltYWdldXJsfSIgYWx0PSIiPg0KICAgICAgICA8aDQgY2xhc3M9InVrLWNvbW1lbnQtdGl0bGUiPnt0aXRsZX08L2g0Pg0KICAgICAgICA8ZGl2IGNsYXNzPSJ1ay1jb21tZW50LW1ldGEiPnttZXRhfTwvZGl2Pg0KICAgIDwvaGVhZGVyPg0KICAgIDxkaXYgY2xhc3M9InVrLWNvbW1lbnQtYm9keSI+e3RpdGxlfTwvZGl2Pg0KPC9hcnRpY2xlPg==', 1, 'http://getuikit.com/docs/comment.html', 'The Comment component consists of a comment header, including an avatar, a title and meta data, and a comment body.', '', 1, '2015-05-19 20:13:53', '2017-11-11 22:09:27', 54, '', 4, '29e9ecf1-0646-44a6-a226-37cfdd4242dc'),
(6, 'Vast Development Method', 'Joomla@vdm.io', 'Llewellyn van der Merwe', 'https://www.vdm.io/', '', 'A collection of useful utility classes to style your content.', 4, 'Utility Container', 'PGRpdiBjbGFzcz0idWstd2lkdGgtbWVkaXVtLTEtMiB1ay1jb250YWluZXItY2VudGVyIj57Y29udGVudH08L2Rpdj4=', 1, 'http://getuikit.com/docs/utility.html', 'Add the .uk-container class to a block element to give it a max-width and wrap the main content of your website. For large screens it applies a different max-width.\r\n\r\nTo center the container, use the .uk-container-center class. For any other block element, you additionally need to apply a width.', '', 1, '2015-05-19 20:18:00', '2017-11-11 22:09:27', 56, '', 5, '18735087-2ad0-465b-9468-bfac52b56721'),
(7, 'Vast Development Method', 'Joomla@vdm.io', 'Llewellyn van der Merwe', 'https://www.vdm.io/', '', 'A collection of useful utility classes to style your content.', 4, 'Utility Clearing and floating', 'PGRpdiBjbGFzcz0idWstY2xlYXJmaXgiPg0KICAgIDxkaXYgY2xhc3M9InVrLWZsb2F0LXJpZ2h0Ij57Y29udGVudH08L2Rpdj4NCiAgICA8ZGl2IGNsYXNzPSJ1ay1mbG9hdC1sZWZ0Ij57Y29udGVudH08L2Rpdj4NCjwvZGl2Pg==', 1, 'http://getuikit.com/docs/utility.html', 'Floating is fundamental for creating all kinds of layouts. But floats need to be cleared or in the worst case, you might end up with a scrambled site. The following classes will help you to setup basic layouts.', '', 1, '2015-05-19 20:18:54', '2017-11-11 22:09:27', 54, '', 5, '24e36964-a3ba-416d-93f5-be56c0e30231'),
(8, 'Vast Development Method', 'Joomla@vdm.io', 'Llewellyn van der Merwe', 'https://www.vdm.io/', 'This component uses Flexbox, a concept that is still quite new but extremely powerful for creating layouts.', 'Utilize the power of Flexbox to create a wide range of layouts.', 4, 'Flex', 'PGRpdiBjbGFzcz0idWstZmxleCB1ay1mbGV4LXdyYXAgdWstZmxleC13cmFwLXJldmVyc2UgdWstZmxleC13cmFwLXNwYWNlLWFyb3VuZCI+DQogICAgPGRpdiBjbGFzcz0idWstd2lkdGgtMS0zIHVrLXBhbmVsIHVrLXBhbmVsLWJveCB1ay1wYW5lbC1ib3gtcHJpbWFyeSI+e2NvbnRlbnR9PC9kaXY+DQogICAgPGRpdiBjbGFzcz0idWstd2lkdGgtMS0yIHVrLXBhbmVsIHVrLXBhbmVsLWJveCB1ay1wYW5lbC1ib3gtcHJpbWFyeSB1ay1tYXJnaW4tbGVmdCI+e2NvbnRlbnR9PC9kaXY+DQogICAgPGRpdiBjbGFzcz0idWstd2lkdGgtMS0zIHVrLXBhbmVsIHVrLXBhbmVsLWJveCB1ay1wYW5lbC1ib3gtcHJpbWFyeSI+e2NvbnRlbnR9PC9kaXY+DQogICAgPGRpdiBjbGFzcz0idWstd2lkdGgtMS0zIHVrLXBhbmVsIHVrLXBhbmVsLWJveCB1ay1wYW5lbC1ib3gtcHJpbWFyeSB1ay1tYXJnaW4tbGVmdCI+e2NvbnRlbnR9PC9kaXY+DQogICAgPGRpdiBjbGFzcz0idWstd2lkdGgtMS0yIHVrLXBhbmVsIHVrLXBhbmVsLWJveCB1ay1wYW5lbC1ib3gtcHJpbWFyeSI+e2NvbnRlbnR9PC9kaXY+DQogICAgPGRpdiBjbGFzcz0idWstd2lkdGgtMS0zIHVrLXBhbmVsIHVrLXBhbmVsLWJveCB1ay1wYW5lbC1ib3gtcHJpbWFyeSB1ay1tYXJnaW4tbGVmdCI+e2NvbnRlbnR9PC9kaXY+DQo8L2Rpdj4=', 1, 'http://getuikit.com/docs/flex.html', 'To apply this component, just add the .uk-flex class to a element. This will create the flex container. By default, all flex items will be aligned to the left and equally matched in height and width.', '', 1, '2015-05-19 20:22:23', '2017-11-11 22:09:27', 55, '', 5, '7725158d-f8b6-4fc3-ada7-0cd994f98ce5'),
(9, 'Vast Development Method', 'Joomla@vdm.io', 'Llewellyn van der Merwe', 'https://www.vdm.io/', 'This component allows you to create fullscreen teasers using images, objects or even iframes. Regardless what kind of element, it will always be centered vertically and horizontally and cover its container without losing its proportions. You can also place additional content, like text or an image, on top of the image or video.', 'Expand images or videos to cover their entire container.', 4, 'Cover', 'PGRpdiBjbGFzcz0idWstY292ZXIiPg0KICAgIDx2aWRlbyBjbGFzcz0idWstY292ZXItb2JqZWN0IiB3aWR0aD0iIiBoZWlnaHQ9IiI+DQogICAgICAgIDxzb3VyY2Ugc3JjPSIiIHR5cGU9IiI+DQogICAgPC92aWRlbz4NCjwvZGl2Pg0KDQo8ZGl2IGNsYXNzPSJ1ay1jb3Zlci1iYWNrZ3JvdW5kIj4NCiAgICA8aW1nIGNsYXNzPSJ1ay1pbnZpc2libGUiIHNyYz0iIiB3aWR0aD0iIiBoZWlnaHQ9IiIgYWx0PSIiPg0KPC9kaXY+DQoNCjxkaXYgY2xhc3M9InVrLWNvdmVyIHVrLXBvc2l0aW9uLXJlbGF0aXZlIj4NCiAgICA8aW1nIGNsYXNzPSJ1ay1pbnZpc2libGUiIHNyYz0iIiB3aWR0aD0iIiBoZWlnaHQ9IiIgYWx0PSIiPg0KICAgIDx2aWRlbyBjbGFzcz0idWstY292ZXItb2JqZWN0IHVrLXBvc2l0aW9uLWFic29sdXRlIiB3aWR0aD0iIiBoZWlnaHQ9IiI+DQogICAgICAgIDxzb3VyY2Ugc3JjPSIiIHR5cGU9IiI+DQogICAgPC92aWRlbz4NCjwvZGl2Pg0KDQo8ZGl2IGNsYXNzPSJ1ay1jb3Zlci1iYWNrZ3JvdW5kIHVrLXBvc2l0aW9uLXJlbGF0aXZlIj4NCiAgICA8aW1nIGNsYXNzPSJ1ay1pbnZpc2libGUiIHNyYz0iIiB3aWR0aD0iIiBoZWlnaHQ9IiIgYWx0PSIiPg0KICAgIDxkaXYgY2xhc3M9InVrLXBvc2l0aW9uLWNvdmVyIHVrLWZsZXggdWstZmxleC1jZW50ZXIgdWstZmxleC1taWRkbGUiPntjb250ZW50fTwvZGl2Pg0KPC9kaXY+', 1, 'http://getuikit.com/docs/cover.html', 'The Cover component is applied differently, depending on whether you are using a background image, an object or an iframe. The simplest way is to add the .uk-cover-background class to a element with a background image.', '', 1, '2015-05-19 20:29:57', '2017-11-11 22:09:27', 54, '', 5, '2ca20d4d-82d3-412d-bada-95c2ba0d9bb0'),
(10, 'Vast Development Method', 'Joomla@vdm.io', 'Llewellyn van der Merwe', 'https://www.vdm.io/', 'The Dynamic Grid component allows you to create a dynamic and responsive grid layout utilizing the Grid component. Grid items will arrange themselves fluently and seamlessly for a gap-free multi-column layout on all device sizes.', 'Create a multi-column, dynamic grid layout whose items can be sorted and filtered.', 4, 'Dynamic Grid', 'PCEtLSBUaGlzIGlzIGEgZ3JpZCB1c2luZyB1ay13aWR0aC0qIG9uIGVhY2ggaXRlbSAtLT4NCjxkaXYgZGF0YS11ay1ncmlkPg0KICAgIDxkaXYgY2xhc3M9InVrLXdpZHRoLXNtYWxsLTEtMiB1ay13aWR0aC1tZWRpdW0tMS00Ij57Y29udGVudH08L2Rpdj4NCiAgICA8ZGl2IGNsYXNzPSJ1ay13aWR0aC1zbWFsbC0xLTIgdWstd2lkdGgtbWVkaXVtLTEtNCI+e2NvbnRlbnR9PC9kaXY+DQo8L2Rpdj4NCg0KPCEtLSBUaGlzIGlzIGEgZ3JpZCB1c2luZyB1ay1ncmlkLXdpZHRoLSogb24gdGhlIGdyaWQgaXRzZWxmIC0tPg0KPGRpdiBjbGFzcz0idWstZ3JpZC13aWR0aC1zbWFsbC0xLTIgdWstZ3JpZC13aWR0aC1tZWRpdW0tMS00IiBkYXRhLXVrLWdyaWQ+DQogICAgPGRpdj57Y29udGVudH08L2Rpdj4NCiAgICA8ZGl2Pntjb250ZW50fTwvZGl2Pg0KPC9kaXY+DQoNCjwhLS0gRmlsdGVyIENvbnRyb2xzIC0tPg0KPHVsIGlkPSJteS1pZCIgY2xhc3M9InVrLXN1Ym5hdiI+DQogICAgPGxpIGRhdGEtdWstZmlsdGVyPSIiPjxhIGhyZWY9IiI+QWxsPC9hPjwvbGk+DQogICAgPGxpIGRhdGEtdWstZmlsdGVyPSJmaWx0ZXItYSI+PGEgaHJlZj0iIj5BIEZpbHRlcjwvYT48L2xpPg0KICAgIDxsaSBkYXRhLXVrLWZpbHRlcj0iZmlsdGVyLWIiPjxhIGhyZWY9IiI+YiBGaWx0ZXI8L2E+PC9saT4NCjwvdWw+DQo8IS0tIER5bmFtaWMgR3JpZCAtLT4NCjxkaXYgZGF0YS11ay1ncmlkPSJ7Y29udHJvbHM6ICcjbXktaWQnfSI+DQogICAgPGRpdiBkYXRhLXVrLWZpbHRlcj0iZmlsdGVyLWEiPntjb250ZW50fTwvZGl2Pg0KICAgIDxkaXYgZGF0YS11ay1maWx0ZXI9ImZpbHRlci1iIj57Y29udGVudH08L2Rpdj4NCjwvZGl2Pg==', 1, 'http://getuikit.com/docs/grid-js.html', 'To apply this component, add the data-uk-grid attribute to the container element. Set the width of the grid items by using the uk-width-* or .uk-grid-width-* classes from the Grid component.', '', 1, '2015-05-19 20:35:29', '2017-11-11 22:09:27', 53, '', 5, 'c7824206-e8db-4c3d-a910-5e0735fdb74b'),
(11, 'Vast Development Method', 'Joomla@vdm.io', 'Llewellyn van der Merwe', 'https://www.vdm.io/', '', 'Defines different styles for list navigations.', 4, 'Nav', 'PHVsIGNsYXNzPSJ1ay1uYXYgdWstbmF2LXNpZGUiPg0KICAgIDxsaSBjbGFzcz0idWstYWN0aXZlIj48YSBocmVmPSIjIj5BY3RpdmU8L2E+PC9saT4NCiAgICA8bGk+PGEgaHJlZj0iIyI+SXRlbTwvYT48L2xpPg0KICAgIDxsaT48YSBocmVmPSIjIj5JdGVtPC9hPjwvbGk+DQo8L3VsPg==', 2, 'http://getuikit.com/docs/nav.html', 'To apply this component, add the .uk-nav class to an element. Use elements as menu items within the list. To apply an active state to a menu item, just add the .uk-active class.', '', 1, '2015-05-19 20:39:09', '2017-11-11 22:09:27', 53, '', 6, '5e214ba9-2152-4192-9f26-143346ed8090'),
(12, 'Vast Development Method', 'Joomla@vdm.io', 'Llewellyn van der Merwe', 'https://www.vdm.io/', '', 'Defines different styles for the navigation bar.', 4, 'Navbar', 'PG5hdiBjbGFzcz0idWstbmF2YmFyIj4NCiAgICA8dWwgY2xhc3M9InVrLW5hdmJhci1uYXYiPg0KICAgICAgICA8bGkgY2xhc3M9InVrLWFjdGl2ZSI+PGEgaHJlZj0iIj5BY3RpdmU8L2E+PC9saT4NCiAgICAgICAgPGxpPjxhIGhyZWY9IiI+SXRlbTwvYT48L2xpPg0KICAgICAgICA8bGkgZGF0YS11ay1kcm9wZG93bj0iIiBjbGFzcz0idWstcGFyZW50IiBhcmlhLWhhc3BvcHVwPSJ0cnVlIiBhcmlhLWV4cGFuZGVkPSJmYWxzZSI+DQogICAgICAgICAgICA8YSBocmVmPSIiPlBhcmVudDwvYT4NCiAgICANCiAgICAgICAgICAgIDxkaXYgY2xhc3M9InVrLWRyb3Bkb3duIHVrLWRyb3Bkb3duLW5hdmJhciIgc3R5bGU9IiI+DQogICAgICAgICAgICAgICAgPHVsIGNsYXNzPSJ1ay1uYXYgdWstbmF2LW5hdmJhciI+DQogICAgICAgICAgICAgICAgICAgIDxsaT48YSBocmVmPSIjIj5JdGVtPC9hPjwvbGk+DQogICAgICAgICAgICAgICAgICAgIDxsaT48YSBocmVmPSIjIj5Bbm90aGVyIGl0ZW08L2E+PC9saT4NCiAgICAgICAgICAgICAgICAgICAgPGxpIGNsYXNzPSJ1ay1uYXYtaGVhZGVyIj5IZWFkZXI8L2xpPg0KICAgICAgICAgICAgICAgICAgICA8bGk+PGEgaHJlZj0iIyI+SXRlbTwvYT48L2xpPg0KICAgICAgICAgICAgICAgICAgICA8bGk+PGEgaHJlZj0iIyI+QW5vdGhlciBpdGVtPC9hPjwvbGk+DQogICAgICAgICAgICAgICAgICAgIDxsaSBjbGFzcz0idWstbmF2LWRpdmlkZXIiPjwvbGk+DQogICAgICAgICAgICAgICAgICAgIDxsaT48YSBocmVmPSIjIj5TZXBhcmF0ZWQgaXRlbTwvYT48L2xpPg0KICAgICAgICAgICAgICAgIDwvdWw+DQogICAgICAgICAgICA8L2Rpdj4NCiAgICANCiAgICAgICAgPC9saT4NCiAgICA8L3VsPg0KPC9uYXY+', 2, 'http://getuikit.com/docs/navbar.html', 'The Navbar component consists of the navbar itself and one or more navigations.', '', 1, '2015-05-19 20:41:10', '2017-11-11 22:09:27', 53, '', 6, '431dd68d-40cf-4b3b-9cce-b743a7f36ac3'),
(13, 'Vast Development Method', 'Joomla@vdm.io', 'Llewellyn van der Merwe', 'https://www.vdm.io/', '', 'Defines different styles for a sub navigation.', 4, 'Subnav', 'PHVsIGNsYXNzPSJ1ay1zdWJuYXYgdWstc3VibmF2LXBpbGwiPg0KICAgIDxsaSBjbGFzcz0idWstYWN0aXZlIj48YSBocmVmPSIjIj5BY3RpdmU8L2E+PC9saT4NCiAgICA8bGk+PGEgaHJlZj0iIyI+SXRlbTwvYT48L2xpPg0KICAgIDxsaSBjbGFzcz0idWstZGlzYWJsZWQiPjxhIGhyZWY9IiMiPkRpc2FibGVkPC9hPjwvbGk+DQogICAgPGxpIGRhdGEtdWstZHJvcGRvd249Inttb2RlOidjbGljayd9Ij4NCiAgICAgICAgPGEgaHJlZj0iIyI+TW9yZSA8aSBjbGFzcz0idWstaWNvbi1jYXJldC1kb3duIj48L2k+PC9hPg0KICAgICAgICA8ZGl2IGNsYXNzPSJ1ay1kcm9wZG93biB1ay1kcm9wZG93bi1zbWFsbCI+DQogICAgICAgICAgICA8dWwgY2xhc3M9InVrLW5hdiB1ay1uYXYtZHJvcGRvd24iPg0KICAgICAgICAgICAgICAgIDxsaT48YSBocmVmPSIjIj5JdGVtPC9hPjwvbGk+DQogICAgICAgICAgICAgICAgPGxpPjxhIGhyZWY9IiMiPkFub3RoZXIgaXRlbTwvYT48L2xpPg0KICAgICAgICAgICAgICAgIDxsaSBjbGFzcz0idWstbmF2LWhlYWRlciI+SGVhZGVyPC9saT4NCiAgICAgICAgICAgICAgICA8bGk+PGEgaHJlZj0iIyI+SXRlbTwvYT48L2xpPg0KICAgICAgICAgICAgICAgIDxsaT48YSBocmVmPSIjIj5Bbm90aGVyIGl0ZW08L2E+PC9saT4NCiAgICAgICAgICAgICAgICA8bGkgY2xhc3M9InVrLW5hdi1kaXZpZGVyIj48L2xpPg0KICAgICAgICAgICAgICAgIDxsaT48YSBocmVmPSIjIj5TZXBhcmF0ZWQgaXRlbTwvYT48L2xpPg0KICAgICAgICAgICAgPC91bD4NCiAgICAgICAgPC9kaXY+DQogICAgPC9saT4NCjwvdWw+', 2, 'http://getuikit.com/docs/subnav.html', 'To apply this component, use the following classes. To align a subnav, for example to horizontally center it, you can use the Flex component.', '', 1, '2015-05-19 20:42:37', '2017-11-11 22:09:27', 53, '', 6, 'b8f8835d-ffe4-4b0f-ad69-a7e847dbedbd'),
(14, 'Vast Development Method', 'Joomla@vdm.io', 'Llewellyn van der Merwe', 'https://www.vdm.io/', '', 'Create breadcrumbs to show users their location within a website.', 4, 'Breadcrumb', 'PHVsIGNsYXNzPSJ1ay1icmVhZGNydW1iIj4NCiAgICA8bGk+PGEgaHJlZj0iIyI+SG9tZTwvYT48L2xpPg0KICAgIDxsaT48YSBocmVmPSIjIj5CbG9nPC9hPjwvbGk+DQogICAgPGxpPjxzcGFuPkNhdGVnb3J5PC9zcGFuPjwvbGk+DQogICAgPGxpIGNsYXNzPSJ1ay1hY3RpdmUiPjxzcGFuPlBvc3Q8L3NwYW4+PC9saT4NCjwvdWw+', 2, 'http://getuikit.com/docs/breadcrumb.html', 'The Breadcrumb component consists of links which are aligned side by side and separated by a divider.', '', 1, '2015-05-19 20:44:01', '2017-11-11 22:09:27', 53, '', 6, 'c1cccf2b-84c3-46de-81f1-0ca5f2bfd13d'),
(15, 'Vast Development Method', 'Joomla@vdm.io', 'Llewellyn van der Merwe', 'https://www.vdm.io/', '', 'Easlily create a nicely looking pagination to navigate through pages.', 4, 'Pagination', 'PHVsIGNsYXNzPSJ1ay1wYWdpbmF0aW9uIj4NCiAgICA8bGk+PGEgaHJlZj0iIyI+MTwvYT48L2xpPg0KICAgIDxsaT48c3Bhbj4uLi48L3NwYW4+PC9saT4NCiAgICA8bGk+PGEgaHJlZj0iIyI+ODwvYT48L2xpPg0KICAgIDxsaT48YSBocmVmPSIjIj45PC9hPjwvbGk+DQogICAgPGxpIGNsYXNzPSJ1ay1hY3RpdmUiPjxzcGFuPjEwPC9zcGFuPjwvbGk+DQogICAgPGxpPjxhIGhyZWY9IiMiPjExPC9hPjwvbGk+DQogICAgPGxpPjxhIGhyZWY9IiMiPjEyPC9hPjwvbGk+DQogICAgPGxpPjxzcGFuPi4uLjwvc3Bhbj48L2xpPg0KICAgIDxsaT48YSBocmVmPSIjIj4yMDwvYT48L2xpPg0KPC91bD4=', 2, 'http://getuikit.com/docs/pagination.html', 'The Pagination component consists of button-like styled links, that are aligned side by side.', '', 1, '2015-05-19 20:45:49', '2017-11-11 22:09:27', 53, '', 6, '597e8806-9e28-4411-9a94-61d874d2ac0e'),
(16, 'Vast Development Method', 'Joomla@vdm.io', 'Llewellyn van der Merwe', 'https://www.vdm.io/', '', 'Create a tabbed navigation with different styles.', 4, 'Tab', 'PHVsIGNsYXNzPSJ1ay10YWIiIGRhdGEtdWstdGFiPg0KICAgIDxsaSBjbGFzcz0idWstYWN0aXZlIj48YSBocmVmPSIiPkFjdGl2ZTwvYT48L2xpPg0KICAgIDxsaT48YSBocmVmPSIiPkl0ZW08L2E+PC9saT4NCiAgICA8bGk+PGEgaHJlZj0iIj5JdGVtPC9hPjwvbGk+DQogICAgPGxpIGNsYXNzPSJ1ay1kaXNhYmxlZCI+PGEgaHJlZj0iIj5EaXNhYmxlZDwvYT48L2xpPg0KPC91bD4=', 2, 'http://getuikit.com/docs/tab.html', 'The Tab component consists of clickable tabs, that are aligned side by side.\r\n\r\nThe data-uk-tab attribute is required for two purposes. Firstly, it enables the responsive behaviour. If the parent container is too small to accomodate all tabs, they will be combined into a dropdown, toggled by a single tab, which represents the active tab item. This also requires the Dropdown component in order to work.\r\n\r\nAnd secondly, its functionality is coupled to the Switcher component, which is necessary to dynamically transition through different contents using tabbed navigation.', '', 1, '2015-05-19 20:47:34', '2017-11-11 22:09:27', 55, '', 6, '690739e8-9547-472c-a4e7-c9362321b37b'),
(17, 'Vast Development Method', 'Joomla@vdm.io', 'Llewellyn van der Merwe', 'https://www.vdm.io/', '', 'Create a tabbed navigation with different styles.', 4, 'Thumbnav', 'PHVsIGNsYXNzPSJ1ay10aHVtYm5hdiI+DQogICAgPGxpIGNsYXNzPSJ1ay1hY3RpdmUiPjxhIGhyZWY9IiI+PGltZyBzcmM9IiIgYWx0PSIiPjwvYT48L2xpPg0KICAgIDxsaT48YSBocmVmPSIiPjxpbWcgc3JjPSIiIGFsdD0iIj48L2E+PC9saT4NCjwvdWw+', 2, 'http://getuikit.com/docs/thumbnav.html', 'To apply this component, add the .uk-thumbnav class to an element and nest your thumbnail images inside elements within the list items. The thumbnav will wrap into several rows, if it is wider than its container and automatically applies a gutter. Add the .uk-active class to create an active state.\r\n\r\nTo align a subnav, for example to horizontally center it, you can use the Flex component.', '', 1, '2015-05-19 20:48:42', '2017-11-11 22:09:27', 54, '', 6, '0e405e4f-4701-46e1-8631-8ce5e13736de'),
(18, 'Vast Development Method', 'Joomla@vdm.io', 'Llewellyn van der Merwe', 'https://www.vdm.io/', 'Modifiers\r\n\r\nTo display the list in a different style, just add a modifier class to the the .uk-list class. The modifiers of the List component are not combinable with each other.', 'Easily create nicely looking lists, which come in different styles.', 4, 'List', 'PHVsIGNsYXNzPSJ1ay1saXN0IHVrLWxpc3Qtc3RyaXBlZCI+DQogICAgPGxpPi4uLjwvbGk+DQogICAgPGxpPi4uLjwvbGk+DQogICAgPGxpPi4uLjwvbGk+DQo8L3VsPg==', 3, 'http://getuikit.com/docs/list.html', 'To apply this component, add the .uk-list class to an unordered or ordered list. The list will now display without any spacing or list-style. [uk-list-line] [uk-list-space]', '', 1, '2015-06-01 16:09:04', '2017-11-11 22:09:27', 3, '', 6, '74ab3937-65e0-4dab-9eb1-2ff87554bdde'),
(19, 'Vast Development Method', 'Joomla@vdm.io', 'Llewellyn van der Merwe', 'https://www.vdm.io/', 'Add the .uk-description-list-horizontal class to display terms and descriptions side by side.', 'Easily create nicely looking description lists, which come in different styles.', 4, 'Description list', 'PGRsIGNsYXNzPSJ1ay1kZXNjcmlwdGlvbi1saXN0LWhvcml6b250YWwiPg0KICAgIDxkdD4uLi48L2R0Pg0KICAgIDxkZD4uLi48L2RkPg0KPC9kbD4=', 3, 'http://getuikit.com/docs/description-list.html', 'There is no component class necessary to create a description list, but UIkit provides a couple of modifier classes to display the list in a different style. The modifiers of the Description list component are not combinable with each other. [uk-description-list-line]', '', 1, '2015-06-01 16:10:54', '2017-11-11 22:09:27', 54, '', 6, 'dae0a910-056d-4e04-b603-43c23d705c1a'),
(20, 'Vast Development Method', 'Joomla@vdm.io', 'Llewellyn van der Merwe', 'https://www.vdm.io/', '', 'Easily create nicely looking tables, which come in different styles.', 4, 'Table', 'PHRhYmxlIGNsYXNzPSJ1ay10YWJsZSB1ay10YWJsZS1ob3ZlciI+DQogICAgPGNhcHRpb24+Li4uPC9jYXB0aW9uPg0KICAgIDx0aGVhZD4NCiAgICAgICAgPHRyPg0KICAgICAgICAgICAgPHRoPi4uLjwvdGg+DQogICAgICAgIDwvdHI+DQogICAgPC90aGVhZD4NCiAgICA8dGZvb3Q+DQogICAgICAgIDx0cj4NCiAgICAgICAgICAgIDx0ZD4uLi48L3RkPg0KICAgICAgICA8L3RyPg0KICAgIDwvdGZvb3Q+DQogICAgPHRib2R5Pg0KICAgICAgICA8dHI+DQogICAgICAgICAgICA8dGQ+Li4uPC90ZD4NCiAgICAgICAgPC90cj4NCiAgICA8L3Rib2R5Pg0KPC90YWJsZT4=', 3, 'http://getuikit.com/docs/table.html', 'To apply this component, add the .uk-table class to a element.', '', 1, '2015-06-01 16:12:46', '2017-11-11 22:09:27', 53, '', 6, 'b0f501cf-ca6c-4261-bf4c-dc10e036a259'),
(21, 'Vast Development Method', 'Joomla@vdm.io', 'Llewellyn van der Merwe', 'https://www.vdm.io/', '', 'Easily create nicely looking buttons, which come in different styles.', 4, 'Button href', 'PGEgY2xhc3M9InVrLWJ1dHRvbiB1ay1idXR0b24tcHJpbWFyeSIgaHJlZj0iIj4uLi48L2E+', 4, 'http://getuikit.com/docs/button.html', 'To apply this component, add the .uk-button class to an or element. Now you have created a button. Add the disabled attribute to a element to disable the button.', '', 1, '2015-06-01 16:17:24', '2017-11-11 22:09:27', 11, '', 7, '0a0ed2e9-ab18-472b-899b-6209b60aff08'),
(22, 'Vast Development Method', 'Joomla@vdm.io', 'Llewellyn van der Merwe', 'https://www.vdm.io/', '', 'Easily create nicely looking buttons, which come in different styles.', 4, 'Button primary', 'PGJ1dHRvbiBjbGFzcz0idWstYnV0dG9uIHVrLWJ1dHRvbi1wcmltYXJ5IiB0eXBlPSJidXR0b24iPi4uLjwvYnV0dG9uPg==', 4, 'http://getuikit.com/docs/button.html', 'To apply this component, add the .uk-button class to an or element. Now you have created a button. Add the disabled attribute to a element to disable the button.', '', 1, '2015-06-01 16:18:37', '2017-11-11 22:09:27', 10, '', 7, 'efaae1eb-1cb7-4761-84b7-a804c1b09b15'),
(23, 'Vast Development Method', 'Joomla@vdm.io', 'Llewellyn van der Merwe', 'https://www.vdm.io/', '', 'Easily create nicely looking buttons, which come in different styles.', 4, 'Button disabled', 'PGJ1dHRvbiBjbGFzcz0idWstYnV0dG9uIiB0eXBlPSJidXR0b24iIGRpc2FibGVkPi4uLjwvYnV0dG9uPg==', 4, 'http://getuikit.com/docs/button.html', 'To apply this component, add the .uk-button class to an or element. Now you have created a button. Add the disabled attribute to a element to disable the button.', '', 1, '2015-06-01 16:18:53', '2017-11-11 22:09:27', 10, '', 7, 'b47d9020-eb39-45d4-a6e4-33b28ca51ac7'),
(24, 'Vast Development Method', 'Joomla@vdm.io', 'Llewellyn van der Merwe', 'https://www.vdm.io/', '', 'Easily create nicely looking buttons, which come in different styles.', 4, 'Button success', 'PGJ1dHRvbiBjbGFzcz0idWstYnV0dG9uIHVrLWJ1dHRvbi1zdWNjZXNzIiB0eXBlPSJidXR0b24iPi4uLjwvYnV0dG9uPg==', 4, 'http://getuikit.com/docs/button.html', 'To apply this component, add the .uk-button class to an or element. Now you have created a button. Add the disabled attribute to a element to disable the button.', '', 1, '2015-06-01 16:19:15', '2017-11-11 22:09:27', 10, '', 7, 'd1686780-d1d4-4732-8a0f-184bc29e96ac'),
(25, 'Vast Development Method', 'Joomla@vdm.io', 'Llewellyn van der Merwe', 'https://www.vdm.io/', '', 'Easily create nicely looking buttons, which come in different styles.', 4, 'Button danger', 'PGJ1dHRvbiBjbGFzcz0idWstYnV0dG9uIHVrLWJ1dHRvbi1kYW5nZXIiIHR5cGU9ImJ1dHRvbiI+Li4uPC9idXR0b24+', 4, 'http://getuikit.com/docs/button.html', 'To apply this component, add the .uk-button class to an or element. Now you have created a button. Add the disabled attribute to a element to disable the button.', '', 1, '2015-06-01 16:19:28', '2017-11-11 22:09:27', 10, '', 7, 'aaa1d48e-1f21-4f69-b503-27d462070d29'),
(26, 'Vast Development Method', 'Joomla@vdm.io', 'Llewellyn van der Merwe', 'https://www.vdm.io/', '', 'Easily create nicely looking buttons, which come in different styles.', 4, 'Button mini', 'PGJ1dHRvbiBjbGFzcz0idWstYnV0dG9uIHVrLWJ1dHRvbi1wcmltYXJ5IHVrLWJ1dHRvbi1taW5pIiB0eXBlPSJidXR0b24iPi4uLjwvYnV0dG9uPg==', 4, 'http://getuikit.com/docs/button.html', 'To apply this component, add the .uk-button class to an or element. Now you have created a button. Add the disabled attribute to a element to disable the button.', '', 1, '2015-06-01 16:20:06', '2017-11-11 22:09:27', 10, '', 7, '5f6cfab0-c011-4f01-b4a2-a6e5712b3df1'),
(27, 'Vast Development Method', 'Joomla@vdm.io', 'Llewellyn van der Merwe', 'https://www.vdm.io/', '', 'Easily create nicely looking buttons, which come in different styles.', 4, 'Button small', 'PGJ1dHRvbiBjbGFzcz0idWstYnV0dG9uIHVrLWJ1dHRvbi1zdWNjZXNzIHVrLWJ1dHRvbi1zbWFsbCIgdHlwZT0iYnV0dG9uIj4uLi48L2J1dHRvbj4=', 4, 'http://getuikit.com/docs/button.html', 'To apply this component, add the .uk-button class to an or element. Now you have created a button. Add the disabled attribute to a element to disable the button.', '', 1, '2015-06-01 16:20:37', '2017-11-11 22:09:27', 10, '', 7, 'c91a3e7d-d56c-43d5-90bf-5d0a436a92ea'),
(28, 'Vast Development Method', 'Joomla@vdm.io', 'Llewellyn van der Merwe', 'https://www.vdm.io/', '', 'Easily create nicely looking buttons, which come in different styles.', 4, 'Button large', 'PGJ1dHRvbiBjbGFzcz0idWstYnV0dG9uIHVrLWJ1dHRvbi1sYXJnZSIgdHlwZT0iYnV0dG9uIj4uLi48L2J1dHRvbj4=', 4, 'http://getuikit.com/docs/button.html', 'To apply this component, add the .uk-button class to an or element. Now you have created a button. Add the disabled attribute to a element to disable the button.', '', 1, '2015-06-01 16:20:58', '2017-11-11 22:09:27', 10, '', 7, '29cbadf8-661a-479f-b219-60fbcfb819d9'),
(29, 'Vast Development Method', 'Joomla@vdm.io', 'Llewellyn van der Merwe', 'https://www.vdm.io/', '', 'Easily create nicely looking buttons, which come in different styles.', 4, 'Button full width', 'PGJ1dHRvbiBjbGFzcz0idWstYnV0dG9uIHVrLXdpZHRoLTEtMSB1ay1tYXJnaW4tc21hbGwtYm90dG9tIiB0eXBlPSJidXR0b24iPi4uLjwvYnV0dG9uPg==', 4, 'http://getuikit.com/docs/button.html', 'To apply this component, add the .uk-button class to an or element. Now you have created a button. Add the disabled attribute to a element to disable the button.', '', 1, '2015-06-01 16:21:28', '2017-11-11 22:09:27', 10, '', 7, '1077c3fd-a993-4b8b-97a1-72f82327366c'),
(30, 'Vast Development Method', 'Joomla@vdm.io', 'Llewellyn van der Merwe', 'https://www.vdm.io/', '', 'Easily create nicely looking buttons, which come in different styles.', 4, 'Button group', 'PGRpdiBjbGFzcz0idWstYnV0dG9uLWdyb3VwIj4NCiAgICA8YSBjbGFzcz0idWstYnV0dG9uIiBocmVmPSIiPi4uLjwvYT4NCiAgICA8YnV0dG9uIGNsYXNzPSJ1ay1idXR0b24iPi4uLjwvYnV0dG9uPg0KICAgIDxidXR0b24gY2xhc3M9InVrLWJ1dHRvbiI+Li4uPC9idXR0b24+DQo8L2Rpdj4=', 4, 'http://getuikit.com/docs/button.html', 'To apply this component, add the .uk-button class to an or element. Now you have created a button. Add the disabled attribute to a element to disable the button.', '', 1, '2015-06-01 16:21:42', '2017-11-11 22:09:27', 10, '', 7, '8cb09ac8-95c5-4eaa-a6c2-849f74bf5767'),
(31, 'Vast Development Method', 'Joomla@vdm.io', 'Llewellyn van der Merwe', 'https://www.vdm.io/', '', 'Easily create nicely looking buttons, which come in different styles.', 4, 'Button dropdowns', 'PCEtLSBUaGlzIGlzIHRoZSBjb250YWluZXIgZW5hYmxpbmcgdGhlIEphdmFTY3JpcHQgLS0+DQo8ZGl2IGNsYXNzPSJ1ay1idXR0b24tZHJvcGRvd24iIGRhdGEtdWstZHJvcGRvd24+DQoNCiAgICA8IS0tIFRoaXMgaXMgdGhlIGJ1dHRvbiB0b2dnbGluZyB0aGUgZHJvcGRvd24gLS0+DQogICAgPGJ1dHRvbiBjbGFzcz0idWstYnV0dG9uIj4uLi48L2J1dHRvbj4NCg0KICAgIDwhLS0gVGhpcyBpcyB0aGUgZHJvcGRvd24gLS0+DQogICAgPGRpdiBjbGFzcz0idWstZHJvcGRvd24gdWstZHJvcGRvd24tc21hbGwiPg0KICAgICAgICA8dWwgY2xhc3M9InVrLW5hdiB1ay1uYXYtZHJvcGRvd24iPg0KICAgICAgICAgICAgPGxpPjxhIGhyZWY9IiI+Li4uPC9hPjwvbGk+DQogICAgICAgICAgICA8bGk+PGEgaHJlZj0iIj4uLi48L2E+PC9saT4NCiAgICAgICAgPC91bD4NCiAgICA8L2Rpdj4NCg0KPC9kaXY+', 4, 'http://getuikit.com/docs/button.html', 'To apply this component, add the .uk-button class to an or element. Now you have created a button. Add the disabled attribute to a element to disable the button.', '', 1, '2015-06-01 16:22:52', '2017-11-11 22:09:27', 10, '', 7, '5b5ebfa4-408c-4b5e-9d28-a6370c944bdc'),
(32, 'Vast Development Method', 'Joomla@vdm.io', 'Llewellyn van der Merwe', 'https://www.vdm.io/', 'This component is using the fantastic Font Awesome icon font, a project by Dave Gandy. Altogether Font Awesome provides more than 300 symbols and glyphs for web-related actions. Icon fonts are great, because they enable you to easily change color, size and more via CSS. They are scalable vector graphics, which means that they look great on high-resolution displays.', 'Place vector icons anywhere using an icon font.', 4, 'Icon', 'PGkgY2xhc3M9InVrLWljb24tY29nIj48L2k+', 4, 'http://getuikit.com/docs/icon.html', 'To apply this component, add any .uk-icon-* class to an or element. Et voilà, you have a vector icon, which inherits size and color just like your text does.', '', 1, '2015-06-01 16:24:46', '2017-11-11 22:09:27', 10, '', 8, 'df1fa1bc-231e-4f67-be48-f9ea6812ae3d'),
(33, 'Vast Development Method', 'Joomla@vdm.io', 'Llewellyn van der Merwe', 'https://www.vdm.io/', '', 'Easlily create nicely looking badges to label and highlight your content.', 4, 'Badge', 'PGRpdiBjbGFzcz0idWstYmFkZ2UiPi4uLjwvZGl2Pg==', 4, 'http://getuikit.com/docs/badge.html', 'To create a badge, just add the .uk-badge class to a or element.', '', 1, '2015-06-01 16:25:53', '2017-11-11 22:09:27', 10, '', 8, '20532a80-6b61-4b5d-a861-05dbc4d82e02'),
(34, 'Vast Development Method', 'Joomla@vdm.io', 'Llewellyn van der Merwe', 'https://www.vdm.io/', '', 'Defines styles for success, warning and error messages.', 4, 'Alert', 'PGRpdiBjbGFzcz0idWstYWxlcnQgdWstYWxlcnQtc3VjY2VzcyIgZGF0YS11ay1hbGVydD4NCiAgICA8YSBocmVmPSIiIGNsYXNzPSJ1ay1hbGVydC1jbG9zZSB1ay1jbG9zZSI+PC9hPg0KICAgIDxwPi4uLjwvcD4NCjwvZGl2Pg==', 4, 'http://getuikit.com/docs/badge.html', 'To apply this component, add the .uk-alert class to a block element.', '', 1, '2015-06-01 16:26:54', '2017-11-11 22:09:27', 10, '', 8, '9b0e4beb-680a-412b-a477-391cdb81c844'),
(35, 'Vast Development Method', 'Joomla@vdm.io', 'Llewellyn van der Merwe', 'https://www.vdm.io/', '', 'A collection of useful text utility classes to style your content.', 4, 'Text small', 'PHNwYW4gY2xhc3M9InVrLXRleHQtc21hbGwiPkFkZCB0aGlzIGNsYXNzIHRvIGRlY3JlYXNlIHRoZSBmb250IHNpemUuPC9zcGFuPg==', 4, 'http://getuikit.com/docs/text.html', 'UIkit offers various text utlities to style your text. ', '', 1, '2015-06-01 16:29:02', '2017-11-11 22:09:27', 10, '', 8, '8516fb71-8f10-4828-a670-af861fd8aae5'),
(36, 'Vast Development Method', 'Joomla@vdm.io', 'Llewellyn van der Merwe', 'https://www.vdm.io/', '', 'A collection of useful text utility classes to style your content.', 4, 'Text large', 'PHNwYW4gY2xhc3M9InVrLXRleHQtbGFyZ2UiPkFkZCB0aGlzIGNsYXNzIHRvIGRlY3JlYXNlIHRoZSBmb250IHNpemUuPC9zcGFuPg==', 4, 'http://getuikit.com/docs/text.html', 'UIkit offers various text utlities to style your text. ', '', 1, '2015-06-01 16:29:14', '2017-11-11 22:09:27', 10, '', 8, '6188947b-c807-4ab7-8960-51a1d808efcb'),
(37, 'Vast Development Method', 'Joomla@vdm.io', 'Llewellyn van der Merwe', 'https://www.vdm.io/', '', 'A collection of useful text utility classes to style your content.', 4, 'Text bold', 'PHNwYW4gY2xhc3M9InVrLXRleHQtYm9sZCI+QWRkIHRoaXMgY2xhc3MgdG8gZGVjcmVhc2UgdGhlIGZvbnQgc2l6ZS48L3NwYW4+', 4, 'http://getuikit.com/docs/text.html', 'UIkit offers various text utlities to style your text. ', '', 1, '2015-06-01 16:29:24', '2017-11-11 22:09:27', 10, '', 8, 'adabb157-ec5d-4c62-857f-2d89e77815e2'),
(38, 'Vast Development Method', 'Joomla@vdm.io', 'Llewellyn van der Merwe', 'https://www.vdm.io/', '', 'A collection of useful text utility classes to style your content.', 4, 'Text muted', 'PHNwYW4gY2xhc3M9InVrLXRleHQtbXV0ZWQiPkFkZCB0aGlzIGNsYXNzIHRvIGRlY3JlYXNlIHRoZSBmb250IHNpemUuPC9zcGFuPg==', 4, 'http://getuikit.com/docs/text.html', 'UIkit offers various text utlities to style your text. ', '', 1, '2015-06-01 16:29:36', '2017-11-11 22:09:27', 10, '', 8, 'bb0b4ed1-5fb2-4799-9645-9d878d8d86a7'),
(39, 'Vast Development Method', 'Joomla@vdm.io', 'Llewellyn van der Merwe', 'https://www.vdm.io/', '', 'A collection of useful text utility classes to style your content.', 4, 'Text primary', 'PHNwYW4gY2xhc3M9InVrLXRleHQtcHJpbWFyeSI+QWRkIHRoaXMgY2xhc3MgdG8gZGVjcmVhc2UgdGhlIGZvbnQgc2l6ZS48L3NwYW4+', 4, 'http://getuikit.com/docs/text.html', 'UIkit offers various text utlities to style your text. ', '', 1, '2015-06-01 16:29:46', '2017-11-11 22:09:27', 10, '', 8, '02d1e0d7-d461-46f2-b7d5-4c6d95558e11'),
(40, 'Vast Development Method', 'Joomla@vdm.io', 'Llewellyn van der Merwe', 'https://www.vdm.io/', '', 'A collection of useful text utility classes to style your content.', 4, 'Text success', 'PHNwYW4gY2xhc3M9InVrLXRleHQtc3VjY2VzcyI+QWRkIHRoaXMgY2xhc3MgdG8gZGVjcmVhc2UgdGhlIGZvbnQgc2l6ZS48L3NwYW4+', 4, 'http://getuikit.com/docs/text.html', 'UIkit offers various text utlities to style your text. ', '', 1, '2015-06-01 16:29:57', '2017-11-11 22:09:27', 10, '', 8, 'f6a191bb-ef7a-4a91-823a-466200d35b4d'),
(41, 'Vast Development Method', 'Joomla@vdm.io', 'Llewellyn van der Merwe', 'https://www.vdm.io/', '', 'A collection of useful text utility classes to style your content.', 4, 'Text warning', 'PHNwYW4gY2xhc3M9InVrLXRleHQtd2FybmluZyI+QWRkIHRoaXMgY2xhc3MgdG8gZGVjcmVhc2UgdGhlIGZvbnQgc2l6ZS48L3NwYW4+', 4, 'http://getuikit.com/docs/text.html', 'UIkit offers various text utlities to style your text. ', '', 1, '2015-06-01 16:30:09', '2017-11-11 22:09:27', 10, '', 8, 'd3a259e2-9839-4922-98d1-ef7ddf03da6b'),
(42, 'Vast Development Method', 'Joomla@vdm.io', 'Llewellyn van der Merwe', 'https://www.vdm.io/', '', 'A collection of useful text utility classes to style your content.', 4, 'Text danger', 'PHNwYW4gY2xhc3M9InVrLXRleHQtZGFuZ2VyIj5BZGQgdGhpcyBjbGFzcyB0byBkZWNyZWFzZSB0aGUgZm9udCBzaXplLjwvc3Bhbj4=', 4, 'http://getuikit.com/docs/text.html', 'UIkit offers various text utlities to style your text. ', '', 1, '2015-06-01 16:30:19', '2017-11-11 22:09:27', 10, '', 8, '0994d67d-401e-49e1-a7ad-68f8c3c0460a'),
(43, 'Vast Development Method', 'Joomla@vdm.io', 'Llewellyn van der Merwe', 'https://www.vdm.io/', '', 'A collection of useful text utility classes to style your content.', 4, 'Text contrast', 'PHNwYW4gY2xhc3M9InVrLXRleHQtY29udHJhc3QiPkFkZCB0aGlzIGNsYXNzIHRvIGRlY3JlYXNlIHRoZSBmb250IHNpemUuPC9zcGFuPg==', 4, 'http://getuikit.com/docs/text.html', 'UIkit offers various text utlities to style your text. ', '', 1, '2015-06-01 16:30:31', '2017-11-11 22:09:27', 10, '', 8, 'a5931e90-0d0e-4c60-8485-ae8b5620d540'),
(44, 'Vast Development Method', 'Joomla@vdm.io', 'Llewellyn van der Merwe', 'https://www.vdm.io/', '', 'A collection of useful text utility classes to style your content.', 4, 'Text right', 'PHNwYW4gY2xhc3M9InVrLXRleHQtcmlnaHQiPkFkZCB0aGlzIGNsYXNzIHRvIGRlY3JlYXNlIHRoZSBmb250IHNpemUuPC9zcGFuPg==', 4, 'http://getuikit.com/docs/text.html', 'UIkit offers various text utlities to style your text. ', '', 1, '2015-06-01 16:31:18', '2017-11-11 22:09:27', 10, '', 8, '24d3dcc3-5ac3-4366-85b8-0a75cac6cef9'),
(45, 'Vast Development Method', 'Joomla@vdm.io', 'Llewellyn van der Merwe', 'https://www.vdm.io/', '', 'A collection of useful text utility classes to style your content.', 4, 'Text center', 'PHNwYW4gY2xhc3M9InVrLXRleHQtY2VudGVyIj5BZGQgdGhpcyBjbGFzcyB0byBkZWNyZWFzZSB0aGUgZm9udCBzaXplLjwvc3Bhbj4=', 4, 'http://getuikit.com/docs/text.html', 'UIkit offers various text utlities to style your text. ', '', 1, '2015-06-01 16:31:30', '2017-11-11 22:09:27', 10, '', 8, '2ced9267-0326-440e-85e7-3ac8911fbbf5'),
(46, 'Vast Development Method', 'Joomla@vdm.io', 'Llewellyn van der Merwe', 'https://www.vdm.io/', '', 'A collection of useful text utility classes to style your content.', 4, 'Text justify', 'PHNwYW4gY2xhc3M9InVrLXRleHQtanVzdGlmeSI+QWRkIHRoaXMgY2xhc3MgdG8gZGVjcmVhc2UgdGhlIGZvbnQgc2l6ZS48L3NwYW4+', 4, 'http://getuikit.com/docs/text.html', 'UIkit offers various text utlities to style your text. ', '', 1, '2015-06-01 16:31:41', '2017-11-11 22:09:27', 10, '', 8, '79acfaa7-7a31-441e-8830-3f63c1e1aa54'),
(47, 'Vast Development Method', 'Joomla@vdm.io', 'Llewellyn van der Merwe', 'https://www.vdm.io/', '', 'A collection of useful text utility classes to style your content.', 4, 'Text truncate', 'PHNwYW4gY2xhc3M9InVrLXRleHQtdHJ1bmNhdGUiPkFkZCB0aGlzIGNsYXNzIHRvIGRlY3JlYXNlIHRoZSBmb250IHNpemUuPC9zcGFuPg==', 4, 'http://getuikit.com/docs/text.html', 'UIkit offers various text utlities to style your text. ', '', 1, '2015-06-01 16:32:17', '2017-11-11 22:09:27', 10, '', 8, '0f43f9ec-98d6-4856-be34-f4e852520bf8'),
(48, 'Vast Development Method', 'Joomla@vdm.io', 'Llewellyn van der Merwe', 'https://www.vdm.io/', '', 'A collection of useful text utility classes to style your content.', 4, 'Text nowrap', 'PHNwYW4gY2xhc3M9InVrLXRleHQtbm93cmFwIj5BZGQgdGhpcyBjbGFzcyB0byBkZWNyZWFzZSB0aGUgZm9udCBzaXplLjwvc3Bhbj4=', 4, 'http://getuikit.com/docs/text.html', 'UIkit offers various text utlities to style your text. ', '', 1, '2015-06-01 16:32:30', '2017-11-11 22:09:27', 10, '', 8, '5489c68b-4926-43f3-980b-e5b251f10ac8'),
(49, 'Vast Development Method', 'Joomla@vdm.io', 'Llewellyn van der Merwe', 'https://www.vdm.io/', '', 'A basic collection of smooth animations to use within your page.', 4, 'Animation fade', 'PGRpdiBjbGFzcz0idWstYW5pbWF0aW9uLWZhZGUiPi4uLjwvZGl2Pg==', 4, 'http://getuikit.com/docs/animation.html', 'To apply this component, add any .uk-animation-* class to an element and it will fade in with a nice animation. These classes are commonly set by using JavaScript to apply the animation to specific behaviors.', '', 1, '2015-06-01 16:33:49', '2017-11-11 22:09:27', 10, '', 8, '6cba0fb7-f790-4ad2-ba03-2cdca25a8dd9'),
(50, 'Vast Development Method', 'Joomla@vdm.io', 'Llewellyn van der Merwe', 'https://www.vdm.io/', '', 'A basic collection of smooth animations to use within your page.', 4, 'Animation scale-up', 'PGRpdiBjbGFzcz0idWstYW5pbWF0aW9uLXNjYWxlLXVwIj4uLi48L2Rpdj4=', 4, 'http://getuikit.com/docs/animation.html', 'To apply this component, add any .uk-animation-* class to an element and it will fade in with a nice animation. These classes are commonly set by using JavaScript to apply the animation to specific behaviors.', '', 1, '2015-06-01 16:34:02', '2017-11-11 22:09:27', 10, '', 8, '11df7f35-5e63-43e1-96ef-f2a0f58bef19'),
(51, 'Vast Development Method', 'Joomla@vdm.io', 'Llewellyn van der Merwe', 'https://www.vdm.io/', '', 'A basic collection of smooth animations to use within your page.', 4, 'Animation scale-down', 'PGRpdiBjbGFzcz0idWstYW5pbWF0aW9uLXNjYWxlLWRvd24iPi4uLjwvZGl2Pg==', 4, 'http://getuikit.com/docs/animation.html', 'To apply this component, add any .uk-animation-* class to an element and it will fade in with a nice animation. These classes are commonly set by using JavaScript to apply the animation to specific behaviors.', '', 1, '2015-06-01 16:34:11', '2017-11-11 22:09:27', 10, '', 8, '1b4c533e-94f6-4a55-81a2-1370c088582d'),
(52, 'Vast Development Method', 'Joomla@vdm.io', 'Llewellyn van der Merwe', 'https://www.vdm.io/', '', 'A basic collection of smooth animations to use within your page.', 4, 'Animation slide-top', 'PGRpdiBjbGFzcz0idWstYW5pbWF0aW9uLXNsaWRlLXRvcCI+Li4uPC9kaXY+', 4, 'http://getuikit.com/docs/animation.html', 'To apply this component, add any .uk-animation-* class to an element and it will fade in with a nice animation. These classes are commonly set by using JavaScript to apply the animation to specific behaviors.', '', 1, '2015-06-01 16:34:22', '2017-11-11 22:09:27', 10, '', 8, '8fc46f20-9783-42cb-92e2-3e0fc5a875c7'),
(53, 'Vast Development Method', 'Joomla@vdm.io', 'Llewellyn van der Merwe', 'https://www.vdm.io/', '', 'A basic collection of smooth animations to use within your page.', 4, 'Animation slide-bottom', 'PGRpdiBjbGFzcz0idWstYW5pbWF0aW9uLXNsaWRlLWJvdHRvbSI+Li4uPC9kaXY+', 4, 'http://getuikit.com/docs/animation.html', 'To apply this component, add any .uk-animation-* class to an element and it will fade in with a nice animation. These classes are commonly set by using JavaScript to apply the animation to specific behaviors.', '', 1, '2015-06-01 16:34:34', '2017-11-11 22:09:27', 10, '', 8, '2d8ed2c0-20af-4c3e-8e0a-fea75fdce181'),
(54, 'Vast Development Method', 'Joomla@vdm.io', 'Llewellyn van der Merwe', 'https://www.vdm.io/', '', 'A basic collection of smooth animations to use within your page.', 4, 'Animation slide-left', 'PGRpdiBjbGFzcz0idWstYW5pbWF0aW9uLXNsaWRlLWxlZnQiPi4uLjwvZGl2Pg==', 4, 'http://getuikit.com/docs/animation.html', 'To apply this component, add any .uk-animation-* class to an element and it will fade in with a nice animation. These classes are commonly set by using JavaScript to apply the animation to specific behaviors.', '', 1, '2015-06-01 16:34:46', '2017-11-11 22:09:27', 10, '', 8, '0bb64e85-6438-4aac-9f60-ad9c8f3c522b'),
(55, 'Vast Development Method', 'Joomla@vdm.io', 'Llewellyn van der Merwe', 'https://www.vdm.io/', '', 'A basic collection of smooth animations to use within your page.', 4, 'Animation slide-right', 'PGRpdiBjbGFzcz0idWstYW5pbWF0aW9uLXNsaWRlLXJpZ2h0Ij4uLi48L2Rpdj4=', 4, 'http://getuikit.com/docs/animation.html', 'To apply this component, add any .uk-animation-* class to an element and it will fade in with a nice animation. These classes are commonly set by using JavaScript to apply the animation to specific behaviors.', '', 1, '2015-06-01 16:34:57', '2017-11-11 22:09:27', 10, '', 8, 'cc303d9d-7940-433f-a918-e46b937f34b6'),
(56, 'Vast Development Method', 'Joomla@vdm.io', 'Llewellyn van der Merwe', 'https://www.vdm.io/', '', 'A basic collection of smooth animations to use within your page.', 4, 'Animation shake', 'PGRpdiBjbGFzcz0idWstYW5pbWF0aW9uLXNoYWtlIj4uLi48L2Rpdj4=', 4, 'http://getuikit.com/docs/animation.html', 'To apply this component, add any .uk-animation-* class to an element and it will fade in with a nice animation. These classes are commonly set by using JavaScript to apply the animation to specific behaviors.', '', 1, '2015-06-01 16:35:08', '2017-11-11 22:09:27', 10, '', 8, 'b688ea4a-23b3-470c-b499-dedac36a9c19'),
(57, 'Vast Development Method', 'Joomla@vdm.io', 'Llewellyn van der Merwe', 'https://www.vdm.io/', '', 'A basic collection of smooth animations to use within your page.', 4, 'Animation scale', 'PGRpdiBjbGFzcz0idWstYW5pbWF0aW9uLXNjYWxlIj4uLi48L2Rpdj4=', 4, 'http://getuikit.com/docs/animation.html', 'To apply this component, add any .uk-animation-* class to an element and it will fade in with a nice animation. These classes are commonly set by using JavaScript to apply the animation to specific behaviors.', '', 1, '2015-06-01 16:35:19', '2017-11-11 22:09:27', 10, '', 8, '997b5991-5be8-4efb-b5e6-1ae988ea4f4a'),
(58, 'Vast Development Method', 'Joomla@vdm.io', 'Llewellyn van der Merwe', 'https://www.vdm.io/', '', 'A basic collection of smooth animations to use within your page.', 4, 'Animation fade reverse', 'PGRpdiBjbGFzcz0idWstYW5pbWF0aW9uLWZhZGUgdWstYW5pbWF0aW9uLXJldmVyc2UiPi4uLjwvZGl2Pg==', 4, 'http://getuikit.com/docs/animation.html', 'To apply this component, add any .uk-animation-* class to an element and it will fade in with a nice animation. These classes are commonly set by using JavaScript to apply the animation to specific behaviors.', '', 1, '2015-06-01 16:37:24', '2017-11-11 22:09:27', 11, '', 8, '6bfd3c02-d4f2-464a-a61b-040324d96789'),
(59, 'Vast Development Method', 'Joomla@vdm.io', 'Llewellyn van der Merwe', 'https://www.vdm.io/', '', 'A basic collection of smooth animations to use within your page.', 4, 'Animation scale-up reverse', 'PGRpdiBjbGFzcz0idWstYW5pbWF0aW9uLXNjYWxlLXVwIHVrLWFuaW1hdGlvbi1yZXZlcnNlIj4uLi48L2Rpdj4=', 4, 'http://getuikit.com/docs/animation.html', 'To apply this component, add any .uk-animation-* class to an element and it will fade in with a nice animation. These classes are commonly set by using JavaScript to apply the animation to specific behaviors.', '', 1, '2015-06-01 16:38:33', '2017-11-11 22:09:27', 10, '', 8, '71296148-4c2f-4c69-bbc8-de50d76dc6c8'),
(60, 'Vast Development Method', 'Joomla@vdm.io', 'Llewellyn van der Merwe', 'https://www.vdm.io/', '', 'A basic collection of smooth animations to use within your page.', 4, 'Animation scale-down reverse', 'PGRpdiBjbGFzcz0idWstYW5pbWF0aW9uLXNjYWxlLWRvd24gdWstYW5pbWF0aW9uLXJldmVyc2UiPi4uLjwvZGl2Pg==', 4, 'http://getuikit.com/docs/animation.html', 'To apply this component, add any .uk-animation-* class to an element and it will fade in with a nice animation. These classes are commonly set by using JavaScript to apply the animation to specific behaviors.', '', 1, '2015-06-01 16:38:49', '2017-11-11 22:09:27', 10, '', 8, 'a5c4eadc-e98a-45e1-9c88-d9f761256c88'),
(61, 'Vast Development Method', 'Joomla@vdm.io', 'Llewellyn van der Merwe', 'https://www.vdm.io/', '', 'A basic collection of smooth animations to use within your page.', 4, 'Animation slide-top reverse', 'PGRpdiBjbGFzcz0idWstYW5pbWF0aW9uLXNsaWRlLXRvcCB1ay1hbmltYXRpb24tcmV2ZXJzZSI+Li4uPC9kaXY+', 4, 'http://getuikit.com/docs/animation.html', 'To apply this component, add any .uk-animation-* class to an element and it will fade in with a nice animation. These classes are commonly set by using JavaScript to apply the animation to specific behaviors.', '', 1, '2015-06-01 16:39:02', '2017-11-11 22:09:27', 10, '', 8, '79766303-ff2d-465c-8b4a-a2d2cae268e4'),
(62, 'Vast Development Method', 'Joomla@vdm.io', 'Llewellyn van der Merwe', 'https://www.vdm.io/', '', 'A basic collection of smooth animations to use within your page.', 4, 'Animation slide-bottom reverse', 'PGRpdiBjbGFzcz0idWstYW5pbWF0aW9uLXNsaWRlLWJvdHRvbSB1ay1hbmltYXRpb24tcmV2ZXJzZSI+Li4uPC9kaXY+', 4, 'http://getuikit.com/docs/animation.html', 'To apply this component, add any .uk-animation-* class to an element and it will fade in with a nice animation. These classes are commonly set by using JavaScript to apply the animation to specific behaviors.', '', 1, '2015-06-01 16:39:13', '2017-11-11 22:09:27', 10, '', 8, 'c20f18a6-74b4-4368-be0b-52d532500f79'),
(63, 'Vast Development Method', 'Joomla@vdm.io', 'Llewellyn van der Merwe', 'https://www.vdm.io/', '', 'A basic collection of smooth animations to use within your page.', 4, 'Animation slide-left reverse', 'PGRpdiBjbGFzcz0idWstYW5pbWF0aW9uLXNsaWRlLWxlZnQgdWstYW5pbWF0aW9uLXJldmVyc2UiPi4uLjwvZGl2Pg==', 4, 'http://getuikit.com/docs/animation.html', 'To apply this component, add any .uk-animation-* class to an element and it will fade in with a nice animation. These classes are commonly set by using JavaScript to apply the animation to specific behaviors.', '', 1, '2015-06-01 16:39:26', '2017-11-11 22:09:27', 10, '', 8, 'f4dfb5f9-33ed-4cfc-baab-4f6e3f80fa19'),
(64, 'Vast Development Method', 'Joomla@vdm.io', 'Llewellyn van der Merwe', 'https://www.vdm.io/', '', 'A basic collection of smooth animations to use within your page.', 4, 'Animation slide-right reverse', 'PGRpdiBjbGFzcz0idWstYW5pbWF0aW9uLXNsaWRlLXJpZ2h0IHVrLWFuaW1hdGlvbi1yZXZlcnNlIj4uLi48L2Rpdj4=', 4, 'http://getuikit.com/docs/animation.html', 'To apply this component, add any .uk-animation-* class to an element and it will fade in with a nice animation. These classes are commonly set by using JavaScript to apply the animation to specific behaviors.', '', 1, '2015-06-01 16:39:38', '2017-11-11 22:09:27', 10, '', 8, '735a91e2-6867-43a7-ad66-cb6576018bfe'),
(65, 'Vast Development Method', 'Joomla@vdm.io', 'Llewellyn van der Merwe', 'https://www.vdm.io/', '', 'A basic collection of smooth animations to use within your page.', 4, 'Animation scale reverse', 'PGRpdiBjbGFzcz0idWstYW5pbWF0aW9uLXNjYWxlIHVrLWFuaW1hdGlvbi1yZXZlcnNlIj4uLi48L2Rpdj4=', 4, 'http://getuikit.com/docs/animation.html', 'To apply this component, add any .uk-animation-* class to an element and it will fade in with a nice animation. These classes are commonly set by using JavaScript to apply the animation to specific behaviors.', '', 1, '2015-06-01 16:40:02', '2017-11-11 22:09:27', 10, '', 8, '918eaa08-13ff-4d7b-b691-2ced6afde21e'),
(66, 'Vast Development Method', 'Joomla@vdm.io', 'Llewellyn van der Merwe', 'https://www.vdm.io/', '', 'Create modal dialogs with different styles and transitions.', 4, 'Modal default', 'PCEtLSBUaGlzIGlzIGEgYnV0dG9uIHRvZ2dsaW5nIHRoZSBtb2RhbCAtLT4NCjxidXR0b24gY2xhc3M9InVrLWJ1dHRvbiIgZGF0YS11ay1tb2RhbD0ie3RhcmdldDonI215LWlkJ30iPi4uLjwvYnV0dG9uPg0KDQo8IS0tIFRoaXMgaXMgdGhlIG1vZGFsIC0tPg0KPGRpdiBpZD0ibXktaWQiIGNsYXNzPSJ1ay1tb2RhbCI+DQogICAgPGRpdiBjbGFzcz0idWstbW9kYWwtZGlhbG9nIj4NCiAgICAgICAgPGEgY2xhc3M9InVrLW1vZGFsLWNsb3NlIHVrLWNsb3NlIj48L2E+DQogICAgICAgIC4uLg0KICAgIDwvZGl2Pg0KPC9kaXY+', 5, 'http://getuikit.com/docs/modal.html', 'The modal component consists of an overlay, a dialog and a close button.', '', 1, '2015-06-01 19:57:08', '2017-11-11 22:09:27', 10, '', 8, '732ecce3-c923-4221-ab04-d7f424b8cd1e'),
(67, 'Vast Development Method', 'Joomla@vdm.io', 'Llewellyn van der Merwe', 'https://www.vdm.io/', '', 'Create modal dialogs with different styles and transitions.', 4, 'Modal header-footer', 'PCEtLSBUaGlzIGlzIGEgYnV0dG9uIHRvZ2dsaW5nIHRoZSBtb2RhbCAtLT4NCjxidXR0b24gY2xhc3M9InVrLWJ1dHRvbiIgZGF0YS11ay1tb2RhbD0ie3RhcmdldDonI215LWlkJ30iPi4uLjwvYnV0dG9uPg0KDQo8IS0tIFRoaXMgaXMgdGhlIG1vZGFsIC0tPg0KPGRpdiBpZD0ibXktaWQiIGNsYXNzPSJ1ay1tb2RhbCI+DQogICAgPGRpdiBjbGFzcz0idWstbW9kYWwtZGlhbG9nIj4NCiAgICAgICAgPGRpdiBjbGFzcz0idWstbW9kYWwtaGVhZGVyIj4uLi48L2Rpdj4NCiAgICAgICAgLi4uDQogICAgICAgIDxkaXYgY2xhc3M9InVrLW1vZGFsLWZvb3RlciI+Li4uPC9kaXY+DQogICAgPC9kaXY+DQo8L2Rpdj4=', 5, 'http://getuikit.com/docs/modal.html', 'The modal component consists of an overlay, a dialog and a close button.', '', 1, '2015-06-01 19:57:50', '2017-11-11 22:09:27', 10, '', 8, 'a0114851-724e-4bb1-b617-f44b33abafde'),
(68, 'Vast Development Method', 'Joomla@vdm.io', 'Llewellyn van der Merwe', 'https://www.vdm.io/', '', 'Create modal dialogs with different styles and transitions.', 4, 'Modal image', 'PCEtLSBUaGlzIGlzIGEgYnV0dG9uIHRvZ2dsaW5nIHRoZSBtb2RhbCAtLT4NCjxidXR0b24gY2xhc3M9InVrLWJ1dHRvbiIgZGF0YS11ay1tb2RhbD0ie3RhcmdldDonI215LWlkJ30iPi4uLjwvYnV0dG9uPg0KDQo8IS0tIFRoaXMgaXMgdGhlIG1vZGFsIC0tPg0KPGRpdiBpZD0ibXktaWQiIGNsYXNzPSJ1ay1tb2RhbCI+DQogICAgPGRpdiBjbGFzcz0idWstbW9kYWwtZGlhbG9nIHVrLW1vZGFsLWRpYWxvZy1saWdodGJveCI+DQogICAgICAgIDxhIGhyZWY9IiIgY2xhc3M9InVrLW1vZGFsLWNsb3NlIHVrLWNsb3NlIHVrLWNsb3NlLWFsdCI+PC9hPg0KICAgICAgICA8aW1nIHNyYz0iIiBhbHQ9IiI+DQogICAgPC9kaXY+DQo8L2Rpdj4=', 5, 'http://getuikit.com/docs/modal.html', 'The modal component consists of an overlay, a dialog and a close button.', '', 1, '2015-06-01 19:58:26', '2017-11-11 22:09:27', 10, '', 8, '296abb37-599b-4fe2-bd17-9008b026a2fc'),
(69, 'Vast Development Method', 'Joomla@vdm.io', 'Llewellyn van der Merwe', 'https://www.vdm.io/', 'The Off-canvas component is perfect for building a mobile navigation, similar to those which are popular with many native mobile apps, where a single button in the upper left corner toggles an off-canvas sidebar with a menu.', 'Create a smooth off-canvas sidebar that slides in and out of the page.', 4, 'Off-canvas default', 'PCEtLSBUaGlzIGlzIGEgYnV0dG9uIHRvZ2dsaW5nIHRoZSBvZmYtY2FudmFzIHNpZGViYXIgLS0+DQo8YnV0dG9uIGNsYXNzPSJ1ay1idXR0b24iIGRhdGEtdWstb2ZmY2FudmFzPSJ7dGFyZ2V0OicjbXktaWQnfSI+Li4uPC9idXR0b24+DQoNCjwhLS0gVGhpcyBpcyB0aGUgb2ZmLWNhbnZhcyBzaWRlYmFyIC0tPg0KPGRpdiBpZD0ibXktaWQiIGNsYXNzPSJ1ay1vZmZjYW52YXMiPg0KICAgIDxkaXYgY2xhc3M9InVrLW9mZmNhbnZhcy1iYXIiPi4uLjwvZGl2Pg0KPC9kaXY+', 5, 'http://getuikit.com/docs/offcanvas.html', 'The Off-canvas component consists of an overlay and an off-canvas bar.', '', 1, '2015-06-01 20:00:09', '2017-11-11 22:09:27', 10, '', 8, '063b892a-956b-4950-a7e0-afa8a6c9e14f'),
(70, 'Vast Development Method', 'Joomla@vdm.io', 'Llewellyn van der Merwe', 'https://www.vdm.io/', 'The Off-canvas component is perfect for building a mobile navigation, similar to those which are popular with many native mobile apps, where a single button in the upper left corner toggles an off-canvas sidebar with a menu.', 'Create a smooth off-canvas sidebar that slides in and out of the page.', 4, 'Off-canvas right', 'PCEtLSBUaGlzIGlzIGEgYnV0dG9uIHRvZ2dsaW5nIHRoZSBvZmYtY2FudmFzIHNpZGViYXIgLS0+DQo8YnV0dG9uIGNsYXNzPSJ1ay1idXR0b24iIGRhdGEtdWstb2ZmY2FudmFzPSJ7dGFyZ2V0OicjbXktaWQnfSI+Li4uPC9idXR0b24+DQoNCjwhLS0gVGhpcyBpcyB0aGUgb2ZmLWNhbnZhcyBzaWRlYmFyIC0tPg0KPGRpdiBpZD0ibXktaWQiIGNsYXNzPSJ1ay1vZmZjYW52YXMiPg0KICAgIDxkaXYgY2xhc3M9InVrLW9mZmNhbnZhcy1iYXIgdWstb2ZmY2FudmFzLWJhci1mbGlwIj4uLi48L2Rpdj4NCjwvZGl2Pg==', 5, 'http://getuikit.com/docs/offcanvas.html', 'The Off-canvas component consists of an overlay and an off-canvas bar.', '', 1, '2015-06-01 20:00:37', '2017-11-11 22:09:27', 10, '', 8, 'e5a619b7-ef6f-46b4-a30b-4b79b2d8d43f'),
(71, 'Vast Development Method', 'Joomla@vdm.io', 'Llewellyn van der Merwe', 'https://www.vdm.io/', '', 'Dynamically transition through different content panes.', 4, 'Switcher default', 'PCEtLSBUaGlzIGlzIHRoZSBjb250YWluZXIgb2YgdGhlIHRvZ2dsaW5nIGVsZW1lbnRzIC0tPg0KPHVsIGRhdGEtdWstc3dpdGNoZXI9Intjb25uZWN0OicjbXktaWQnfSI+DQogICAgPGxpPjxhIGhyZWY9IiI+Li4uPC9hPjwvbGk+DQo8L3VsPg0KDQo8IS0tIFRoaXMgaXMgdGhlIGNvbnRhaW5lciBvZiB0aGUgY29udGVudCBpdGVtcyAtLT4NCjx1bCBpZD0ibXktaWQiIGNsYXNzPSJ1ay1zd2l0Y2hlciI+DQogICAgPGxpPi4uLjwvbGk+DQo8L3VsPg==', 5, 'http://getuikit.com/docs/switcher.html', 'The switcher component consists of a number of toggles and their related content items. Add the data-uk-switcher=\"{connect:\'#ID\'}\" attribute to the element which contains the toggles, targetting the same id as is used on the element containing the content items. Add the .uk-switcher class to the same element. Typically the switcher is combined with other components, some of which will be shown here.', '', 1, '2015-06-01 20:02:41', '2017-11-11 22:09:27', 10, '', 8, 'fd850fcf-366b-4b7e-9ccc-bb515f316ab7'),
(72, 'Vast Development Method', 'Joomla@vdm.io', 'Llewellyn van der Merwe', 'https://www.vdm.io/', 'In some cases you want to switch to another content section from within the active content. This is possible using the data-uk-switcher-item attribute. To target the items, you need to set the data attribute to the number of the respective content item.', 'Dynamically transition through different content panes.', 4, 'Switcher in-content', 'PCEtLSBUaGlzIGlzIHRoZSBuYXYgY29udGFpbmluZyB0aGUgdG9nZ2xpbmcgZWxlbWVudHMgLS0+DQo8dWwgZGF0YS11ay1zd2l0Y2hlcj0ie2Nvbm5lY3Q6JyNteS1pZCd9Ij4NCiAgICA8bGk+PGEgaHJlZj0iIj4uLi48L2E+PC9saT4NCjwvdWw+DQoNCjwhLS0gVGhpcyBpcyB0aGUgY29udGFpbmVyIG9mIHRoZSBjb250ZW50IGl0ZW1zIC0tPg0KPHVsIGlkPSJteS1pZCIgY2xhc3M9InVrLXN3aXRjaGVyIj4NCiAgICA8bGk+IC4uLiA8YSBocmVmPSIiIGRhdGEtdWstc3dpdGNoZXItaXRlbT0iMCI+Li4uPC9hPjwvbGk+DQogICAgPGxpPiAuLi4gPGEgaHJlZj0iIiBkYXRhLXVrLXN3aXRjaGVyLWl0ZW09IjEiPi4uLjwvYT48L2xpPg0KPC91bD4=', 5, 'http://getuikit.com/docs/switcher.html', 'The switcher component consists of a number of toggles and their related content items. Add the data-uk-switcher=\"{connect:\'#ID\'}\" attribute to the element which contains the toggles, targetting the same id as is used on the element containing the content items. Add the .uk-switcher class to the same element. Typically the switcher is combined with other components, some of which will be shown here.', '', 1, '2015-06-01 20:04:24', '2017-11-11 22:09:27', 10, '', 8, 'c2e83f1f-facd-43ba-ae8d-fc3ccc1debc7'),
(73, 'Vast Development Method', 'Joomla@vdm.io', 'Llewellyn van der Merwe', 'https://www.vdm.io/', 'It is also possible to connect multiple content containers. Just extend the connect parameter with the ID of the additional container.', 'Dynamically transition through different content panes.', 4, 'Switcher multiple-items', 'PCEtLSBUaGlzIGlzIHRoZSBuYXYgY29udGFpbmluZyB0aGUgdG9nZ2xpbmcgZWxlbWVudHMgLS0+DQo8dWwgZGF0YS11ay1zd2l0Y2hlcj0ie2Nvbm5lY3Q6JyNteS1pZC1vbmUsICNteS1pZC10d28nfSI+DQogICAgPGxpPjxhIGhyZWY9IiI+Li4uPC9hPjwvbGk+DQo8L3VsPg0KDQo8IS0tIFRoZXNlIGFyZSB0aGUgY29udGFpbmVycyBvZiB0aGUgY29udGVudCBpdGVtcyAtLT4NCjx1bCBpZD0ibXktaWQtb25lIiBjbGFzcz0idWstc3dpdGNoZXIiPg0KICAgIDxsaT4uLi48L2xpPg0KPC91bD4NCg0KPHVsIGlkPSJteS1pZC10d28iIGNsYXNzPSJ1ay1zd2l0Y2hlciI+DQogICAgPGxpPi4uLjwvbGk+DQo8L3VsPg==', 5, 'http://getuikit.com/docs/switcher.html', 'The switcher component consists of a number of toggles and their related content items. Add the data-uk-switcher=\"{connect:\'#ID\'}\" attribute to the element which contains the toggles, targetting the same id as is used on the element containing the content items. Add the .uk-switcher class to the same element. Typically the switcher is combined with other components, some of which will be shown here.', '', 1, '2015-06-01 20:04:53', '2017-11-11 22:09:27', 10, '', 8, '7ca69d59-8d39-4d54-a88b-f9c673fcef2d'),
(74, 'Vast Development Method', 'Joomla@vdm.io', 'Llewellyn van der Merwe', 'https://www.vdm.io/', 'The Switcher component allows you to add different animations to items when toggling between them. All you need to do is add the animation parameter to the data-attribute and define the animation that you want to apply. Check the table below for an overview of the animations provided.\r\n\r\nYou can also apply multiple animations by using the uk-animation-* classes from the Animation component. That way you can even create your own custom class to apply a different transition to the switcher.', 'Dynamically transition through different content panes.', 4, 'Switcher animation', 'PCEtLSBUaGlzIGlzIHRoZSBjb250YWluZXIgb2YgdGhlIHRvZ2dsaW5nIGVsZW1lbnRzIC0tPg0KPHVsIGRhdGEtdWstc3dpdGNoZXI9Intjb25uZWN0OicjbXktaWQnLCBhbmltYXRpb246ICd1ay1hbmltYXRpb24tZmFkZSwgdWstYW5pbWF0aW9uLXNsaWRlLWxlZnQnfSI+DQogICAgPGxpPjxhIGhyZWY9IiI+Li4uPC9hPjwvbGk+DQo8L3VsPg0KDQo8IS0tIFRoaXMgaXMgdGhlIGNvbnRhaW5lciBvZiB0aGUgY29udGVudCBpdGVtcyAtLT4NCjx1bCBpZD0ibXktaWQiIGNsYXNzPSJ1ay1zd2l0Y2hlciI+DQogICAgPGxpPi4uLjwvbGk+DQo8L3VsPg==', 5, 'http://getuikit.com/docs/switcher.html', 'The switcher component consists of a number of toggles and their related content items. Add the data-uk-switcher=\"{connect:\'#ID\'}\" attribute to the element which contains the toggles, targetting the same id as is used on the element containing the content items. Add the .uk-switcher class to the same element. Typically the switcher is combined with other components, some of which will be shown here.', '', 1, '2015-06-01 20:06:42', '2017-11-11 22:09:27', 10, '', 8, '2d1b0fad-f2ff-49b8-97dc-aab9d3553a15'),
(75, 'Vast Development Method', 'Joomla@vdm.io', 'Llewellyn van der Merwe', 'https://www.vdm.io/', 'As an exception to the rule, add the data-uk-tab=\"{connect:\'#ID\'}\" attribute, using the parameter \"tab\" instead of \"switcher\", to the tabbed navigation to combine the switcher with the Tab component.', 'Dynamically transition through different content panes.', 4, 'Switcher tabs-horizontal', 'PCEtLSBUaGlzIGlzIHRoZSB0YWJiZWQgbmF2aWdhdGlvbiBjb250YWluaW5nIHRoZSB0b2dnbGluZyBlbGVtZW50cyAtLT4NCjx1bCBjbGFzcz0idWstdGFiIiBkYXRhLXVrLXRhYj0ie2Nvbm5lY3Q6JyNteS1pZCd9Ij4NCiAgICA8bGk+PGEgaHJlZj0iIj4uLi48L2E+PC9saT4NCjwvdWw+DQoNCjwhLS0gVGhpcyBpcyB0aGUgY29udGFpbmVyIG9mIHRoZSBjb250ZW50IGl0ZW1zIC0tPg0KPHVsIGlkPSJteS1pZCIgY2xhc3M9InVrLXN3aXRjaGVyIHVrLW1hcmdpbiI+DQogICAgPGxpPi4uLjwvbGk+DQo8L3VsPg==', 5, 'http://getuikit.com/docs/switcher.html', 'The switcher component consists of a number of toggles and their related content items. Add the data-uk-switcher=\"{connect:\'#ID\'}\" attribute to the element which contains the toggles, targetting the same id as is used on the element containing the content items. Add the .uk-switcher class to the same element. Typically the switcher is combined with other components, some of which will be shown here.', '', 1, '2015-06-01 20:08:04', '2017-11-11 22:09:27', 10, '', 8, 'f271532f-7bbb-4fab-a21c-7487ed72790e'),
(76, 'Vast Development Method', 'Joomla@vdm.io', 'Llewellyn van der Merwe', 'https://www.vdm.io/', 'Use the Grid component to display content correctly with a vertical tabbed navigation.', 'Dynamically transition through different content panes.', 4, 'Switcher tabs-vertical', 'PCEtLSBUaGlzIGlzIHRoZSBsZWZ0IHZlcnRpY2FsIHRhYmJlZCBuYXZpZ2F0aW9uIC0tPg0KPGRpdiBjbGFzcz0idWstZ3JpZCI+DQogICAgPGRpdiBjbGFzcz0idWstd2lkdGgtbWVkaXVtLTEtMiI+DQogICAgICAgIDwhLS0gVGhpcyBpcyB0aGUgdmVydGljYWwgdGFiYmVkIG5hdmlnYXRpb24gY29udGFpbmluZyB0aGUgdG9nZ2xpbmcgZWxlbWVudHMgLS0+DQogICAgICAgIDx1bCBjbGFzcz0idWstdGFiIHVrLXRhYi1sZWZ0IiBkYXRhLXVrLXRhYj0ie2Nvbm5lY3Q6JyNteS1pZCd9Ij4uLi48L3VsPg0KICAgIDwvZGl2Pg0KICAgIDxkaXYgY2xhc3M9InVrLXdpZHRoLW1lZGl1bS0xLTIiPg0KICAgICAgICA8IS0tIFRoaXMgaXMgdGhlIGNvbnRhaW5lciBvZiB0aGUgY29udGVudCBpdGVtcyAtLT4NCiAgICAgICAgPHVsIGlkPSJteS1pZCIgY2xhc3M9InVrLXN3aXRjaGVyIj4uLi48L3VsPg0KICAgIDwvZGl2Pg0KPC9kaXY+DQoNCjwhLS0gVGhpcyBpcyB0aGUgcmlnaHQgdmVydGljYWwgdGFiYmVkIG5hdmlnYXRpb24gLS0+DQo8ZGl2IGNsYXNzPSJ1ay1ncmlkIj4NCiAgICA8ZGl2IGNsYXNzPSJ1ay13aWR0aC1tZWRpdW0tMS0yIHVrLXB1c2gtMS0yIj4NCiAgICAgICAgPCEtLSBUaGlzIGlzIHRoZSB2ZXJ0aWNhbCB0YWJiZWQgbmF2aWdhdGlvbiBjb250YWluaW5nIHRoZSB0b2dnbGluZyBlbGVtZW50cyAtLT4NCiAgICAgICAgPHVsIGNsYXNzPSJ1ay10YWIgdWstdGFiLXJpZ2h0IiBkYXRhLXVrLXRhYj0ie2Nvbm5lY3Q6JyNteS1pZCd9Ij4uLi48L3VsPg0KICAgIDwvZGl2Pg0KICAgIDxkaXYgY2xhc3M9InVrLXdpZHRoLW1lZGl1bS0xLTIgdWstcHVsbC0xLTIiPg0KICAgICAgICA8IS0tIFRoaXMgaXMgdGhlIGNvbnRhaW5lciBvZiB0aGUgY29udGVudCBpdGVtcyAtLT4NCiAgICAgICAgPHVsIGlkPSJteS1pZCIgY2xhc3M9InVrLXN3aXRjaGVyIj4uLi48L3VsPg0KICAgIDwvZGl2Pg0KPC9kaXY+', 5, 'http://getuikit.com/docs/switcher.html', 'The switcher component consists of a number of toggles and their related content items. Add the data-uk-switcher=\"{connect:\'#ID\'}\" attribute to the element which contains the toggles, targetting the same id as is used on the element containing the content items. Add the .uk-switcher class to the same element. Typically the switcher is combined with other components, some of which will be shown here.', '', 1, '2015-06-01 20:09:01', '2017-11-11 22:09:27', 10, '', 8, '86a0a1f5-5cce-4d65-9c74-2e39c6ba1bf8'),
(77, 'Vast Development Method', 'Joomla@vdm.io', 'Llewellyn van der Merwe', 'https://www.vdm.io/', 'The switcher can also be applied to buttons or button groups from the Button component. Just add the switcher data attribute to a element around a group of buttons or to the element with the .button-group class.', 'Dynamically transition through different content panes.', 4, 'Switcher button-group', 'PCEtLSBUaGlzIGlzIHRoZSBidXR0b24gZ3JvdXAgY29udGFpbmluZyB0aGUgdG9nZ2xpbmcgYnV0dG9ucyAtLT4NCjxkaXYgY2xhc3M9InVrLWJ1dHRvbi1ncm91cCIgZGF0YS11ay1zd2l0Y2hlcj0ie2Nvbm5lY3Q6JyNteS1pZCd9Ij4NCiAgICA8YnV0dG9uIGNsYXNzPSJ1ay1idXR0b24iIHR5cGU9ImJ1dHRvbiI+Li4uPC9idXR0b24+DQo8L2Rpdj4NCg0KPCEtLSBUaGlzIGlzIHRoZSBjb250YWluZXIgb2YgdGhlIGNvbnRlbnQgaXRlbXMgLS0+DQo8dWwgaWQ9Im15LWlkIiBjbGFzcz0idWstc3dpdGNoZXIgdWstbWFyZ2luIj4uLi48L3VsPg==', 5, 'http://getuikit.com/docs/switcher.html', 'The switcher component consists of a number of toggles and their related content items. Add the data-uk-switcher=\"{connect:\'#ID\'}\" attribute to the element which contains the toggles, targetting the same id as is used on the element containing the content items. Add the .uk-switcher class to the same element. Typically the switcher is combined with other components, some of which will be shown here.', '', 1, '2015-06-01 20:10:00', '2017-11-11 22:09:27', 10, '', 8, 'd252e658-4c57-4115-845c-0bdf66f4f640'),
(78, 'Vast Development Method', 'Joomla@vdm.io', 'Llewellyn van der Merwe', 'https://www.vdm.io/', 'To apply the switcher to the Nav component, add the data attribute to the nav . Use the Grid component to arrange nav and content in a grid layout.', 'Dynamically transition through different content panes.', 4, 'Switcher navs', 'PGRpdiBjbGFzcz0idWstZ3JpZCI+DQogICAgPGRpdiBjbGFzcz0idWstd2lkdGgtbWVkaXVtLTEtNCI+DQoNCiAgICAgICAgPCEtLSBUaGlzIGlzIHRoZSBuYXYgY29udGFpbmluZyB0aGUgdG9nZ2xpbmcgZWxlbWVudHMgLS0+DQogICAgICAgIDx1bCBjbGFzcz0idWstbmF2IHVrLW5hdi1zaWRlIiBkYXRhLXVrLXN3aXRjaGVyPSJ7Y29ubmVjdDonI215LWlkJ30iPg0KICAgICAgICAgICAgPGxpPjxhIGhyZWY9IiI+Li4uPC9hPjwvbGk+DQogICAgICAgIDwvdWw+DQogICAgPC9kaXY+DQogICAgPGRpdiBjbGFzcz0idWstd2lkdGgtbWVkaXVtLTMtNCI+DQoNCiAgICAgICAgPCEtLSBUaGlzIGlzIHRoZSBjb250YWluZXIgb2YgdGhlIGNvbnRlbnQgaXRlbXMgLS0+DQogICAgICAgIDx1bCBpZD0ibXktaWQiIGNsYXNzPSJ1ay1zd2l0Y2hlciI+DQogICAgICAgICAgICA8bGk+Li4uPC9saT4NCiAgICAgICAgPC91bD4NCiAgICA8L2Rpdj4NCjwvZGl2Pg==', 5, 'http://getuikit.com/docs/switcher.html', 'The switcher component consists of a number of toggles and their related content items. Add the data-uk-switcher=\"{connect:\'#ID\'}\" attribute to the element which contains the toggles, targetting the same id as is used on the element containing the content items. Add the .uk-switcher class to the same element. Typically the switcher is combined with other components, some of which will be shown here.', '', 1, '2015-06-01 20:10:30', '2017-11-11 22:09:27', 10, '', 8, '517a296e-57c2-4d4b-9aae-589b23d1a398'),
(79, 'Vast Development Method', 'Joomla@vdm.io', 'Llewellyn van der Merwe', 'https://www.vdm.io/', '', 'Hide, switch or change the appearence of different contents through a toggle.', 4, 'Toggle default', 'PGJ1dHRvbiBjbGFzcz0idWstYnV0dG9uIiBkYXRhLXVrLXRvZ2dsZT0ie3RhcmdldDonI215LWlkJ30iPi4uLjwvYnV0dG9uPg0KDQo8ZGl2IGlkPSJteS1pZCI+Li4uPC9kaXY+', 5, 'http://getuikit.com/docs/toggle.html', 'To apply this component, just add the data-uk-toggle=\"{target: #ID}\" attribute to a or element. You can use any selector with the toggle attribute.\r\n\r\nThe toggle will add or remove a class from the item. By default, it adds the .uk-hidden class to hide the element.', '', 1, '2015-06-01 20:12:07', '2017-11-11 22:09:27', 10, '', 8, 'dae732b0-379e-4412-9bdb-559f87dc5992'),
(80, 'Vast Development Method', 'Joomla@vdm.io', 'Llewellyn van der Merwe', 'https://www.vdm.io/', 'You can also toggle multiple items at the same time. Just use the appropriate selector.', 'Hide, switch or change the appearence of different contents through a toggle.', 4, 'Toggle multiple', 'PGJ1dHRvbiBjbGFzcz0idWstYnV0dG9uIiBkYXRhLXVrLXRvZ2dsZT0ie3RhcmdldDonLm15LWNsYXNzJ30iPi4uLjwvYnV0dG9uPg0KDQo8ZGl2IGNsYXNzPSJteS1jbGFzcyI+Li4uPC9kaXY+DQo8ZGl2IGNsYXNzPSJteS1jbGFzcyB1ay1oaWRkZW4iPi4uLjwvZGl2Pg==', 5, 'http://getuikit.com/docs/toggle.html', 'To apply this component, just add the data-uk-toggle=\"{target: #ID}\" attribute to a or element. You can use any selector with the toggle attribute.\r\n\r\nThe toggle will add or remove a class from the item. By default, it adds the .uk-hidden class to hide the element.', '', 1, '2015-06-01 20:12:34', '2017-11-11 22:09:27', 10, '', 8, '7a7c7acb-b309-40c5-92fe-33702c5f2f16'),
(81, 'Vast Development Method', 'Joomla@vdm.io', 'Llewellyn van der Merwe', 'https://www.vdm.io/', 'You can also toggle multiple items at the same time. Just use the appropriate selector.', 'Hide, switch or change the appearence of different contents through a toggle.', 4, 'Toggle class', 'PGJ1dHRvbiBjbGFzcz0idWstYnV0dG9uIiBkYXRhLXVrLXRvZ2dsZT0ie3RhcmdldDonI215LWlkJywgY2xzOid1ay1wYW5lbC1ib3gtcHJpbWFyeSd9Ij4uLi48L2J1dHRvbj4NCg0KPGRpdiBpZD0ibXktaWQiIGNsYXNzPSJ1ay1wYW5lbCB1ay1wYW5lbC1ib3giPi4uLjwvZGl2Pg==', 5, 'http://getuikit.com/docs/toggle.html', 'To apply this component, just add the data-uk-toggle=\"{target: #ID}\" attribute to a or element. You can use any selector with the toggle attribute.\r\n\r\nThe toggle will add or remove a class from the item. By default, it adds the .uk-hidden class to hide the element.', '', 1, '2015-06-01 20:13:06', '2017-11-11 22:09:27', 19, '', 8, '10a7755a-4309-4172-b1bd-89a2e0d6edb6'),
(82, 'Vast Development Method', 'Joomla@vdm.io', 'Llewellyn van der Merwe', 'https://www.vdm.io/', 'The Toggle component allows you to add animations to items when toggling between them. Just add one of the .uk-animation-* classes from the Animation component to the animation parameter. The class will be applied to the in as well as the out animation. If you prefer a different out animation, just add another class.', 'Hide, switch or change the appearence of different contents through a toggle.', 4, 'Toggle animations', 'PGJ1dHRvbiBjbGFzcz0idWstYnV0dG9uIiBkYXRhLXVrLXRvZ2dsZT0ie3RhcmdldDonI215LWlkJywgYW5pbWF0aW9uOid1ay1hbmltYXRpb24tc2xpZGUtbGVmdCwgdWstYW5pbWF0aW9uLXNsaWRlLWJvdHRvbSd9Ij4uLi48L2J1dHRvbj4NCg0KPGRpdiBpZD0ibXktaWQiPi4uLjwvZGl2Pg==', 5, 'http://getuikit.com/docs/toggle.html', 'To apply this component, just add the data-uk-toggle=\"{target: #ID}\" attribute to a or element. You can use any selector with the toggle attribute.\r\n\r\nThe toggle will add or remove a class from the item. By default, it adds the .uk-hidden class to hide the element.', '', 1, '2015-06-01 20:13:34', '2017-11-11 22:09:27', 19, '', 8, '31f54883-606b-43d5-b110-fba9774b7a34'),
(83, 'Vast Development Method', 'Joomla@vdm.io', 'Llewellyn van der Merwe', 'https://www.vdm.io/', '', 'Trigger events and animations while scrolling your page.', 4, 'Scrollspy default', 'PGRpdiBkYXRhLXVrLXNjcm9sbHNweT0ie2NsczondWstYW5pbWF0aW9uLWZhZGUnfSI+Li4uPC9kaXY+DQoNCjxkaXYgZGF0YS11ay1zY3JvbGxzcHk9IntjbHM6J3VrLWFuaW1hdGlvbi1mYWRlJywgcmVwZWF0OiB0cnVlfSI+Li4uPC9kaXY+DQoNCjxkaXYgZGF0YS11ay1zY3JvbGxzcHk9IntjbHM6J3VrLWFuaW1hdGlvbi1mYWRlJywgZGVsYXk6OTAwfSI+Li4uPC9kaXY+', 5, 'http://getuikit.com/docs/scrollspy.html', 'The scrollspy component listens to page scrolling and triggers events based on the scroll position. For example, if you scroll down a page and an element appears the first time in the viewport you can trigger a smooth animation to fade in the element. Just add the data-uk-scrollspy attribute and the following options.', '', 1, '2015-06-01 20:15:00', '2017-11-11 22:09:27', 19, '', 8, '39b72b40-85ec-4cc6-aded-c86611f31c24'),
(84, 'Vast Development Method', 'Joomla@vdm.io', 'Llewellyn van der Merwe', 'https://www.vdm.io/', 'You can also group scrollspy elements, so you won\'t have to apply the data attribute to each of them. Just add the data-uk-scollspy\"{target:\'MY-CLASS\'}\" attribute to a container element, targetting the selector the items you want to animate within the container. When using a delay it will be applied cumulatively to the items within the row that scrolls into view. The delay will be resetted for the next row within the group when it scrolls into view.', 'Trigger events and animations while scrolling your page.', 4, 'Scrollspy groups', 'PGRpdiBkYXRhLXVrLXNjcm9sbHNweT0ie2NsczondWstYW5pbWF0aW9uLWZhZGUnLCB0YXJnZXQ6Jy5teS1jbGFzcycsIGRlbGF5OjMwMH0iPg0KDQogICAgPCEtLSBUaGlzIGl0ZW0gaGFzIG5vIGRlbGF5IC0tPg0KICAgIDxkaXYgY2xhc3M9Im15LWNsYXNzIj4uLi48L2Rpdj4NCg0KICAgIDwhLS0gVGhpcyBpdGVtIGhhcyBhIGRlbGF5IG9mIDMwMG1zIC0tPg0KICAgIDxkaXYgY2xhc3M9Im15LWNsYXNzIj4uLi48L2Rpdj4NCg0KICAgIDwhLS0gVGhpcyBpdGVtIGhhcyBhIGRlbGF5IG9mIDYwMG1zIC0tPg0KICAgIDxkaXYgY2xhc3M9Im15LWNsYXNzIj4uLi48L2Rpdj4NCg0KPC9kaXY+', 5, 'http://getuikit.com/docs/scrollspy.html', 'The scrollspy component listens to page scrolling and triggers events based on the scroll position. For example, if you scroll down a page and an element appears the first time in the viewport you can trigger a smooth animation to fade in the element. Just add the data-uk-scrollspy attribute and the following options.', '', 1, '2015-06-01 20:15:18', '2017-11-11 22:09:27', 20, '', 8, '6e666e60-5206-4633-a433-83f41f914ed7'),
(85, 'Vast Development Method', 'Joomla@vdm.io', 'Llewellyn van der Merwe', 'https://www.vdm.io/', '', 'Create a fancy lightbox for images and videos utilizing the Modal component.', 4, 'Lightbox single-image', 'PGEgdGl0bGU9IlRpdGxlIiBkYXRhLXVrLWxpZ2h0Ym94PSIiIGhyZWY9IiIgY2xhc3M9InVrLWJ1dHRvbiI+T3BlbiBsaWdodGJveDwvYT4=', 5, 'http://getuikit.com/docs/lightbox.html', 'To apply this component, add the data-uk-lightbox attribute to an anchor linking to the image you wish to display. If a title attribute exists it will be displayed as a caption for the lightbox.', '', 1, '2015-06-01 20:18:50', '2017-11-11 22:09:27', 19, '', 9, 'b3fb0556-ff50-4380-b7f7-8f2519e02d81'),
(86, 'Vast Development Method', 'Joomla@vdm.io', 'Llewellyn van der Merwe', 'https://www.vdm.io/', 'You can link multiple images to the same lightbox and switch between them from within the lightbox, thus creating a gallery. Just add the {group:\'my-group\'} option to the data attribute of each item using the same name on all items that you want to group. Make sure to include the CSS from the Slidenav component, so you can navigate between the items.', 'Create a fancy lightbox for images and videos utilizing the Modal component.', 4, 'Lightbox groups-image', 'PGRpdiBkYXRhLXVrLWdyaWQtbWFyZ2luPSIiIGNsYXNzPSJ1ay1ncmlkIHVrLWdyaWQtd2lkdGgtbWVkaXVtLTEtNCI+DQogICAgPGRpdj4NCiAgICAgICAgPGEgdGl0bGU9IlRpdGxlIiBkYXRhLXVrLWxpZ2h0Ym94PSJ7Z3JvdXA6J2dyb3VwMSd9IiBocmVmPSJpbWFnZXMvcGxhY2Vob2xkZXJfODAweDYwMF8xLmpwZyI+DQogICAgICAgICAgICA8aW1nIHdpZHRoPSI4MDAiIGhlaWdodD0iNjAwIiBhbHQ9IiIgc3JjPSJpbWFnZXMvcGxhY2Vob2xkZXJfODAweDYwMF8xLmpwZyI+DQogICAgICAgIDwvYT4NCiAgICA8L2Rpdj4NCiAgICA8ZGl2Pg0KICAgICAgICA8YSB0aXRsZT0iVGl0bGUiIGRhdGEtdWstbGlnaHRib3g9Intncm91cDonZ3JvdXAxJ30iIGRhdGEtbGlnaHRib3gtdHlwZT0iaW1hZ2UiIGhyZWY9ImltYWdlcy9wbGFjZWhvbGRlcl84MDB4NjAwXzIuanBnIj4NCiAgICAgICAgICAgIDxpbWcgd2lkdGg9IjgwMCIgaGVpZ2h0PSI2MDAiIGFsdD0iIiBzcmM9ImltYWdlcy9wbGFjZWhvbGRlcl84MDB4NjAwXzIuanBnIj4NCiAgICAgICAgPC9hPg0KICAgIDwvZGl2Pg0KICAgIDxkaXY+DQogICAgICAgIDxhIHRpdGxlPSJUaXRsZSIgZGF0YS11ay1saWdodGJveD0ie2dyb3VwOidncm91cDEnfSIgZGF0YS1saWdodGJveC10eXBlPSJpbWFnZSIgaHJlZj0iaW1hZ2VzL3BsYWNlaG9sZGVyXzgwMHg2MDBfMy5qcGciPg0KICAgICAgICAgICAgPGltZyB3aWR0aD0iODAwIiBoZWlnaHQ9IjYwMCIgYWx0PSIiIHNyYz0iaW1hZ2VzL3BsYWNlaG9sZGVyXzgwMHg2MDBfMy5qcGciPg0KICAgICAgICA8L2E+DQogICAgPC9kaXY+DQogICAgPGRpdj4NCiAgICAgICAgPGEgdGl0bGU9IlRpdGxlIiBkYXRhLXVrLWxpZ2h0Ym94PSJ7Z3JvdXA6J2dyb3VwMSd9IiBkYXRhLWxpZ2h0Ym94LXR5cGU9ImltYWdlIiBocmVmPSJpbWFnZXMvcGxhY2Vob2xkZXJfODAweDYwMF80LmpwZyI+DQogICAgICAgICAgICA8aW1nIHdpZHRoPSI4MDAiIGhlaWdodD0iNjAwIiBhbHQ9IiIgc3JjPSJpbWFnZXMvcGxhY2Vob2xkZXJfODAweDYwMF80LmpwZyI+DQogICAgICAgIDwvYT4NCiAgICA8L2Rpdj4NCjwvZGl2Pg==', 5, 'http://getuikit.com/docs/lightbox.html', 'To apply this component, add the data-uk-lightbox attribute to an anchor linking to the image you wish to display. If a title attribute exists it will be displayed as a caption for the lightbox.', '', 1, '2015-06-01 20:21:01', '2017-11-11 22:09:27', 20, '', 9, '9fb9dbd8-23b1-4a85-a144-c4ad95f105d1'),
(87, 'Vast Development Method', 'Joomla@vdm.io', 'Llewellyn van der Merwe', 'https://www.vdm.io/', 'A lightbox is not restricted to images. Other media, like videos, can be displayed inside a lightbox and it will automatically generate the correct output by evaluating your path.', 'Create a fancy lightbox for images and videos utilizing the Modal component.', 4, 'Lightbox content-sources', 'PHA+DQogICAgPGEgdGl0bGU9IlRpdGxlIiBkYXRhLXVrLWxpZ2h0Ym94PSJ7Z3JvdXA6J2dyb3VwMid9IiBocmVmPSJpbWFnZXMvcGxhY2Vob2xkZXJfODAweDYwMF8xLmpwZyIgY2xhc3M9InVrLWJ1dHRvbiI+SW1hZ2U8L2E+DQogICAgPGEgZGF0YS11ay1saWdodGJveD0ie2dyb3VwOidncm91cDInfSIgaHJlZj0iaHR0cDovL3d3dy5xdWlya3Ntb2RlLm9yZy9odG1sNS92aWRlb3MvYmlnX2J1Y2tfYnVubnkubXA0IiBjbGFzcz0idWstYnV0dG9uIj5NUDQ8L2E+DQogICAgPGEgZGF0YS11ay1saWdodGJveD0ie2dyb3VwOidncm91cDInfSIgaHJlZj0iaHR0cDovL3ZpbWVvLmNvbS8xMDg0NTM3IiBjbGFzcz0idWstYnV0dG9uIj5WaW1lbzwvYT4NCiAgICA8YSBkYXRhLXVrLWxpZ2h0Ym94PSJ7Z3JvdXA6J2dyb3VwMid9IiBocmVmPSJodHRwczovL3d3dy55b3V0dWJlLmNvbS93YXRjaD92PVlFN1Z6bEx0cC00IiBjbGFzcz0idWstYnV0dG9uIj5Zb3VUdWJlPC9hPg0KPC9wPg==', 5, 'http://getuikit.com/docs/lightbox.html', 'To apply this component, add the data-uk-lightbox attribute to an anchor linking to the image you wish to display. If a title attribute exists it will be displayed as a caption for the lightbox.', '', 1, '2015-06-01 20:22:21', '2017-11-11 22:09:27', 19, '', 9, '4e0dcf96-2140-49e9-bbed-8f84b36f4f3c'),
(88, 'Vast Development Method', 'Joomla@vdm.io', 'Llewellyn van der Merwe', 'https://www.vdm.io/', 'To display multiple content sections at the same time without one collapsing when the other one is opened, add the {collapse: false} option to the date attribute.', 'Create a list of items, allowing each item\'s content to be expanded and collapsed by clicking its header.', 4, 'Accordion', 'PGRpdiBjbGFzcz0idWstYWNjb3JkaW9uIiBkYXRhLXVrLWFjY29yZGlvbj4NCg0KICAgIDxoMyBjbGFzcz0idWstYWNjb3JkaW9uLXRpdGxlIj4uLi48L2gzPg0KICAgIDxkaXYgY2xhc3M9InVrLWFjY29yZGlvbi1jb250ZW50Ij4uLi48L2Rpdj4NCg0KICAgIDxoMyBjbGFzcz0idWstYWNjb3JkaW9uLXRpdGxlIj4uLi48L2gzPg0KICAgIDxkaXYgY2xhc3M9InVrLWFjY29yZGlvbi1jb250ZW50Ij4uLi48L2Rpdj4NCg0KICAgIDxoMyBjbGFzcz0idWstYWNjb3JkaW9uLXRpdGxlIj4uLi48L2gzPg0KICAgIDxkaXYgY2xhc3M9InVrLWFjY29yZGlvbi1jb250ZW50Ij4uLi48L2Rpdj4NCg0KPC9kaXY+', 5, 'http://getuikit.com/docs/accordion.html', 'To apply the Accordion component, add the uk-accordion class and the data-uk-accordion attribute to a container element. Add the uk-accordion-content class to each of the content sections within the container. Finally, add the uk-accordion-title class to any element, like a heading, above the content section to create a toggle.', '', 1, '2015-06-01 20:24:59', '2017-11-11 22:09:27', 20, '', 10, 'f5bd905c-8d79-4eb6-bb61-e139af27f573'),
(90, 'Vast Development Method', 'Joomla@vdm.io', 'Llewellyn van der Merwe', 'https://www.vdm.io/', 'This is a input field for uikit form', 'Add Input field - row', 4, 'Input field', 'ICAgICAgICA8ZGl2IGNsYXNzPSJ1ay1mb3JtLXJvdyI+DQoJCTxsYWJlbCBjbGFzcz0idWstZm9ybS1sYWJlbCIgPg0KCQkJPD9waHAgZWNobyBUZXh0OjpfKCdMYWJlbCcpOyA/Pg0KCQk8L2xhYmVsPg0KCQk8aW5wdXQgdHlwZT0idGV4dCIgbmFtZT0ia2V5IiBwbGFjZWhvbGRlcj0iPD9waHAgZWNobyBUZXh0OjpfKCdhZGQgc29tZSB0ZXh0IGhlcmUhJyk7ID8+Ij4gPHNwYW4gY2xhc3M9InVrLWZvcm0taGVscC1pbmxpbmUiPjw/cGhwIGVjaG8gVGV4dDo6XygnaGVscCBuZWVkZWQnKTsgPz48L3NwYW4+DQoJPC9kaXY+', 3, 'http://getuikit.com/docs/form.html', '', '', 1, '2015-11-29 03:54:40', '2017-11-11 22:09:27', 20, '', 12, 'f1319e45-395a-492e-a899-f2fec00de5ec'),
(91, 'Vast Development Method', 'Joomla@vdm.io', 'Llewellyn van der Merwe', 'https://www.vdm.io/', 'This is a textarea field for uikit form', 'Add textarea - row', 4, 'Textarea', 'CTxkaXYgY2xhc3M9InVrLWZvcm0tcm93Ij4NCgkJPGxhYmVsIGNsYXNzPSJ1ay1mb3JtLWxhYmVsIiA+DQoJCQk8P3BocCBlY2hvIEpUZXh0OjpfKCdMYWJlbCcpOyA/Pg0KCQk8L2xhYmVsPg0KCQk8dGV4dGFyZWEgY29scz0iIiByb3dzPSIiICBzdHlsZT0id2lkdGg6IDEwMCU7IGhlaWdodDogMjE2cHg7IiBwbGFjZWhvbGRlcj0iPD9waHAgZWNobyBKVGV4dDo6XygnYWRkIHNvbWUgdGV4dCBoZXJlIScpOyA/PiI+PHx8fHxGSVh8fHx8fHx0ZXh0YXJlYT4NCgkJPHAgY2xhc3M9InVrLWZvcm0taGVscC1ibG9jayI+PD9waHAgZWNobyBKVGV4dDo6XygnaGVscCBuZWVkZWQnKTsgPz48L3A+DQoJPC9kaXY+', 3, 'http://getuikit.com/docs/form.html', '', '', 1, '2015-11-29 03:55:57', '2017-11-11 22:09:27', 22, '', 12, '22207e7c-6096-4b6e-8e03-0616745c8447'),
(92, 'Vast Development Method', 'Joomla@vdm.io', 'Llewellyn van der Merwe', 'https://www.vdm.io/', 'This is a uikit form', 'Add Form', 4, 'Form', 'PGZvcm0gY2xhc3M9InVrLWZvcm0iPg0KICAgIDxmaWVsZHNldD4NCiAgICAgICAgPGxlZ2VuZD48P3BocCBlY2hvIFRleHQ6Ol8oJ0xlZ2VuZCcpOyA/PjwvbGVnZW5kPg0KICAgICAgICA8ZGl2IGNsYXNzPSJ1ay1mb3JtLXJvdyI+DQoJCTxsYWJlbCBjbGFzcz0idWstZm9ybS1sYWJlbCIgPg0KCQkJPD9waHAgZWNobyBUZXh0OjpfKCdMYWJlbCcpOyA/Pg0KCQk8L2xhYmVsPg0KCQk8aW5wdXQgdHlwZT0idGV4dCIgbmFtZT0ia2V5IiBwbGFjZWhvbGRlcj0iPD9waHAgZWNobyBUZXh0OjpfKCdhZGQgc29tZSB0ZXh0IGhlcmUhJyk7ID8+Ij4gPHNwYW4gY2xhc3M9InVrLWZvcm0taGVscC1pbmxpbmUiPjw/cGhwIGVjaG8gVGV4dDo6XygnaGVscCBuZWVkZWQnKTsgPz48L3NwYW4+DQoJPC9kaXY+DQogICAgICAgIDxkaXYgY2xhc3M9InVrLWZvcm0tcm93Ij4NCgkJPGxhYmVsIGNsYXNzPSJ1ay1mb3JtLWxhYmVsIiA+DQoJCQk8P3BocCBlY2hvIFRleHQ6Ol8oJ0xhYmVsJyk7ID8+DQoJCTwvbGFiZWw+DQoJCTx0ZXh0YXJlYSBjb2xzPSIiIHJvd3M9IiIgIHN0eWxlPSJ3aWR0aDogMTAwJTsgaGVpZ2h0OiAyMTZweDsiIHBsYWNlaG9sZGVyPSI8P3BocCBlY2hvIFRleHQ6Ol8oJ2FkZCBzb21lIHRleHQgaGVyZSEnKTsgPz4iPjx8fHx8fEZJWHx8fHx8dGV4dGFyZWE+DQoJCTxwIGNsYXNzPSJ1ay1mb3JtLWhlbHAtYmxvY2siPjw/cGhwIGVjaG8gVGV4dDo6XygnaGVscCBuZWVkZWQnKTsgPz48L3A+DQoJPC9kaXY+DQogICAgPC9maWVsZHNldD4NCjwvZm9ybT4=', 1, 'http://getuikit.com/docs/form.html', 'To apply this component, add the .uk-form class to a form element. All form control elements are placed side by side within the next row.', '', 1, '2015-11-29 03:57:03', '2017-11-20 23:42:28', 21, '', 12, '6d6bebcf-e291-4344-a39e-f072fa22bf71'),
(95, 'Vast Development Method', 'joomla@vdm.io', 'Llewellyn van der Merwe', 'https://www.vdm.io/', '', 'Create a list of items that can be shown individually by clicking an item\'s header.', 3, 'Accordion', 'PHVsIHVrLWFjY29yZGlvbj4NCiAgICA8bGkgY2xhc3M9InVrLW9wZW4iPg0KICAgICAgICA8aDMgY2xhc3M9InVrLWFjY29yZGlvbi10aXRsZSI+SXRlbSAxPC9oMz4NCiAgICAgICAgPGRpdiBjbGFzcz0idWstYWNjb3JkaW9uLWNvbnRlbnQiPg0KICAgICAgICAgICAgPHA+TG9yZW0gaXBzdW0gZG9sb3Igc2l0IGFtZXQsIGNvbnNlY3RldHVyIGFkaXBpc2NpbmcgZWxpdCwgc2VkIGRvIGVpdXNtb2QgdGVtcG9yIGluY2lkaWR1bnQgdXQgbGFib3JlIGV0IGRvbG9yZSBtYWduYSBhbGlxdWEuPC9wPg0KICAgICAgICA8L2Rpdj4NCiAgICA8L2xpPg0KICAgIDxsaT4NCiAgICAgICAgPGgzIGNsYXNzPSJ1ay1hY2NvcmRpb24tdGl0bGUiPkl0ZW0gMjwvaDM+DQogICAgICAgIDxkaXYgY2xhc3M9InVrLWFjY29yZGlvbi1jb250ZW50Ij4NCiAgICAgICAgICAgIDxwPlV0IGVuaW0gYWQgbWluaW0gdmVuaWFtLCBxdWlzIG5vc3RydWQgZXhlcmNpdGF0aW9uIHVsbGFtY28gbGFib3JpcyBuaXNpIHV0IGFsaXF1aXAgZXggZWEgY29tbW9kbyBjb25zZXF1YXQuIER1aXMgYXV0ZSBpcnVyZSBkb2xvciByZXByZWhlbmRlcml0LjwvcD4NCiAgICAgICAgPC9kaXY+DQogICAgPC9saT4NCiAgICA8bGk+DQogICAgICAgIDxoMyBjbGFzcz0idWstYWNjb3JkaW9uLXRpdGxlIj5JdGVtIDM8L2gzPg0KICAgICAgICA8ZGl2IGNsYXNzPSJ1ay1hY2NvcmRpb24tY29udGVudCI+DQogICAgICAgICAgICA8cD5EdWlzIGF1dGUgaXJ1cmUgZG9sb3IgaW4gcmVwcmVoZW5kZXJpdCBpbiB2b2x1cHRhdGUgdmVsaXQgZXNzZSBjaWxsdW0gZG9sb3JlIGV1IGZ1Z2lhdCBudWxsYSBwYXJpYXR1ci4gRXhjZXB0ZXVyIHNpbnQgb2NjYWVjYXQgY3VwaWRhdGF0IHByb2lkZW50LjwvcD4NCiAgICAgICAgPC9kaXY+DQogICAgPC9saT4NCjwvdWw+', 15, 'https://getuikit.com/docs/accordion', 'The Accordion component consists of a parent container with the uk-accordion attribute, and a title and content part for each accordion item.\r\n\r\n.uk-accordion-title - Defines and styles the toggle for each accordion item. Typically used on a heading.\r\n\r\n.uk-accordion-content - Defines the content part for each accordion item.\r\n\r\n', '', 1, '2017-11-20 17:21:09', '2017-11-20 23:41:14', 1, '', 14, 'c76d547f-8bcd-48e6-ba64-4ae971404a1b'),
(96, 'Vast Development Method', 'Joomla@vdm.io', 'Llewellyn van der Merwe', 'https://www.vdm.io/', 'FooTable is a jQuery plugin that aims to make HTML tables on smaller devices look awesome No matter how many columns of data you may have in them.\r\n\r\nHave you ever wanted to show a lot of data in a table, but hate how badly it scales on smaller mobile devices? The FooTable jQuery plugin solves this problem by allowing you to hide certain columns on smaller devices, but still allowing the user to expand each row to see the columns that were hidden.', 'metro-blue', 5, 'FooTable', 'PHRhYmxlIGNsYXNzPSJmb290YWJsZSBtZXRyby1ibHVlIiBkYXRhLWZpbHRlcj0iI2ZpbHRlciIgZGF0YS1wYWdlLXNpemU9IjUiPg0KICA8dGhlYWQ+DQogICAgPHRyPg0KICAgICAgPHRoIGRhdGEtdG9nZ2xlPSJ0cnVlIj5OYW1lPC90aD4NCiAgICAgIDx0aCBkYXRhLWhpZGU9InBob25lLHRhYmxldCI+UGhvbmU8L3RoPg0KICAgICAgPHRoIGRhdGEtaGlkZT0icGhvbmUsdGFibGV0Ij5FbWFpbDwvdGg+DQogICAgPC90cj4NCiAgPC90aGVhZD4NCiAgPHRib2R5Pg0KICAgIDx0cj4NCiAgICAgIDx0ZD5Cb2IgTWFuPC90ZD4NCiAgICAgIDx0ZD41NTUtMTIzNDU8L3RkPg0KICAgICAgPHRkPmJvYkBob21lLmNvbTwvdGQ+DQogICAgPC90cj4NCiAgICA8dHI+DQogICAgICA8dGQ+QnJpZGdldCBKb25lczwvdGQ+DQogICAgICA8dGQ+NTQ0LTc3NjY1NTwvdGQ+DQogICAgICA8dGQ+YmpvbmVzQG15c2l0ZS5jb208L3RkPg0KICAgIDwvdHI+DQogICAgPHRyPg0KICAgICAgPHRkPlRvbSBKb25lczwvdGQ+DQogICAgICA8dGQ+NTU1LTk5OTExPC90ZD4NCiAgICAgIDx0ZD5jcnVpc2UxQGNyYXp5LmNvbTwvdGQ+DQogICAgPC90cj4NCiAgPC90Ym9keT4NCjwvdGFibGU+', 32, 'https://github.com/fooplugins/FooTable/tree/V2', '', '', 1, '2015-09-26 14:07:03', '2017-11-25 22:24:55', 3, '', 15, '57eace63-c278-4685-8bb7-a40bfdee704e'),
(97, 'Most Wanted Web Services, Inc.', 'sales@mwweb.host', 'Steve Voorhees', 'https://mostwantedwebhosting.com', 'Provide contextual feedback messages for typical user actions with the handful of available and flexible alert messages.', 'alert-success', 2, 'Alerts - Success', 'PGRpdiBjbGFzcz0iYWxlcnQgYWxlcnQtc3VjY2VzcyIgcm9sZT0iYWxlcnQiPg0KICAgIDxzdHJvbmc+V2VsbCBkb25lITwvc3Ryb25nPiBZb3Ugc3VjY2Vzc2Z1bGx5IHJlYWQgdGhpcw0KICAgIGltcG9ydGFudCBhbGVydCBtZXNzYWdlLg0KPC9kaXY+', 7, 'https://getbootstrap.com/docs/4.0/components/alerts/', 'Alerts are available for any length of text, as well as an optional dismiss button. For proper styling, use one of the eight required contextual classes (e.g., .alert-success).', '', 1, '2017-11-01 00:00:00', '2017-11-13 10:12:34', 1, '', 16, 'eac77139-a69b-4eef-9276-254194d2bed5'),
(98, 'Most Wanted Web Services, Inc.', 'sales@mwweb.host', 'Steve Voorhees', 'https://mostwantedwebhosting.com', 'Provide contextual feedback messages for typical user actions with the handful of available and flexible alert messages.', 'alert-heading', 2, 'Alerts - Heading', 'PGRpdiBjbGFzcz0iYWxlcnQgYWxlcnQtc3VjY2VzcyIgcm9sZT0iYWxlcnQiPg0KICA8aDQgY2xhc3M9ImFsZXJ0LWhlYWRpbmciPldlbGwgZG9uZSE8L2g0Pg0KICBZb3Ugc3VjY2Vzc2Z1bGx5IHJlYWQgdGhpcyBpbXBvcnRhbnQgYWxlcnQgbWVzc2FnZS4NCjwvZGl2Pg==', 7, 'https://getbootstrap.com/docs/4.0/components/alerts/', 'Alerts are available for any length of text, as well as an optional dismiss button. For proper styling, use one of the eight required contextual classes (e.g., .alert-success).', '', 1, '2017-11-01 00:00:00', '2017-11-21 23:06:26', 1, '', 17, '7fdc4a3a-6b6b-4126-98d6-2c2dfe726f8d'),
(99, 'Most Wanted Web Services, Inc.', 'sales@mwweb.host', 'Steve Voorhees', 'https://mostwantedwebhosting.com', 'Provide contextual feedback messages for typical user actions with the handful of available and flexible alert messages.', 'alert-link', 2, 'Alerts - Link', 'PGRpdiBjbGFzcz0iYWxlcnQgYWxlcnQtZGFuZ2VyIiByb2xlPSJhbGVydCI+DQogIDxzdHJvbmc+T2ggc25hcCE8L3N0cm9uZz4NCiAgPGEgaHJlZj0iIyIgY2xhc3M9ImFsZXJ0LWxpbmsiPkNoYW5nZSBhIGZldyB0aGluZ3MgdXA8L2E+DQogIGFuZCB0cnkgc3VibWl0dGluZyBhZ2Fpbi4NCjwvZGl2Pg==', 7, 'https://getbootstrap.com/docs/4.0/components/alerts/', 'Alerts are available for any length of text, as well as an optional dismiss button. For proper styling, use one of the eight required contextual classes (e.g., .alert-success).', '', 1, '2017-11-01 00:00:00', '2017-11-21 23:06:19', 1, '', 17, '0910fd26-4d44-4d85-827f-14207d99ce45'),
(100, 'Most Wanted Web Services, Inc.', 'sales@mwweb.host', 'Steve Voorhees', 'https://mostwantedwebhosting.com', 'Provide contextual feedback messages for typical user actions with the handful of available and flexible alert messages.', 'alert-danger', 2, 'Alerts - Danger', 'PGRpdiBjbGFzcz0iYWxlcnQgYWxlcnQtZGFuZ2VyIiByb2xlPSJhbGVydCI+DQogIDxzdHJvbmc+T2ggc25hcCE8L3N0cm9uZz4gQ2hhbmdlIGEgZmV3IHRoaW5ncyB1cCBhbmQgdHJ5IHN1Ym1pdHRpbmcgYWdhaW4uDQo8L2Rpdj4=', 7, 'https://getbootstrap.com/docs/4.0/components/alerts/', 'Alerts are available for any length of text, as well as an optional dismiss button. For proper styling, use one of the eight required contextual classes (e.g., .alert-success).', '', 1, '2017-11-01 00:00:00', '2017-11-21 23:06:19', 1, '', 17, '597d1a5b-1dd9-438b-a019-5b074afa8191'),
(101, 'Most Wanted Web Services, Inc.', 'sales@mwweb.host', 'Steve Voorhees', 'https://mostwantedwebhosting.com', 'Provide contextual feedback messages for typical user actions with the handful of available and flexible alert messages.', 'alert-dismissible', 2, 'Alerts - Dismissible', 'PGRpdiBjbGFzcz0iYWxlcnQgYWxlcnQtd2FybmluZyBhbGVydC1kaXNtaXNzaWJsZSBmYWRlIHNob3ciIHJvbGU9ImFsZXJ0Ij4NCiAgPGJ1dHRvbiB0eXBlPSJidXR0b24iIGNsYXNzPSJjbG9zZSIgZGF0YS1kaXNtaXNzPSJhbGVydCIgYXJpYS1sYWJlbD0iQ2xvc2UiPg0KICAgIDxzcGFuIGFyaWEtaGlkZGVuPSJ0cnVlIj7Dlzwvc3Bhbj4NCiAgPC9idXR0b24+DQogIDxzdHJvbmc+SG9seSBndWFjYW1vbGUhPC9zdHJvbmc+IFlvdSBzaG91bGQgY2hlY2sgaW4gb24gc29tZSBvZiB0aG9zZSBmaWVsZHMgYmVsb3cuDQo8L2Rpdj4=', 7, 'https://getbootstrap.com/docs/4.0/components/alerts/', 'Alerts are available for any length of text, as well as an optional dismiss button. For proper styling, use one of the eight required contextual classes (e.g., .alert-success).', '', 1, '2017-11-01 00:00:00', '2017-11-21 23:06:23', 1, '', 17, 'e0f1a436-8527-462b-ba27-cbe60504b8f6'),
(102, 'Most Wanted Web Services, Inc.', 'sales@mwweb.host', 'Steve Voorhees', 'https://mostwantedwebhosting.com', 'Provide contextual feedback messages for typical user actions with the handful of available and flexible alert messages.', 'alert-info', 2, 'Alerts - Info', 'PGRpdiBjbGFzcz0iYWxlcnQgYWxlcnQtaW5mbyIgcm9sZT0iYWxlcnQiPg0KICAgIDxzdHJvbmc+SGVhZHMgdXAhPC9zdHJvbmc+IFRoaXMgYWxlcnQgbmVlZHMgeW91ciBhdHRlbnRpb24sDQogICAgYnV0IGl0J3Mgbm90IHN1cGVyIGltcG9ydGFudC4NCjwvZGl2Pg==', 7, 'https://getbootstrap.com/docs/4.0/components/alerts/', 'Alerts are available for any length of text, as well as an optional dismiss button. For proper styling, use one of the eight required contextual classes (e.g., .alert-success).', '', 1, '2017-11-01 00:00:00', '2017-11-21 23:06:08', 1, '', 18, 'c7a51b7a-c1b7-45cb-95c6-b8cda5d32417'),
(103, 'Most Wanted Web Services, Inc.', 'sales@mwweb.host', 'Steve Voorhees', 'https://mostwantedwebhosting.com', 'Documentation and examples for badges, our small count and labeling component.', 'badge-danger', 2, 'Badge - Danger', 'PHNwYW4gY2xhc3M9ImJhZGdlIGJhZGdlLWRhbmdlciI+RGFuZ2VyPC9zcGFuPg==', 8, 'https://getbootstrap.com/docs/4.0/components/badge/', 'Badges scale to match the size of the immediate parent element by using relative font sizing and em units.', '', 1, '2017-11-01 00:00:00', '2017-11-21 23:13:21', 1, '', 19, '4cc7a7b5-7d3a-4086-8a00-d7b99e3db5b2'),
(104, 'Most Wanted Web Services, Inc.', 'sales@mwweb.host', 'Steve Voorhees', 'https://mostwantedwebhosting.com', 'Provide contextual feedback messages for typical user actions with the handful of available and flexible alert messages.', 'alert-warning', 2, 'Alerts - Warning', 'PGRpdiBjbGFzcz0iYWxlcnQgYWxlcnQtaW5mbyIgcm9sZT0iYWxlcnQiPg0KICAgIDxzdHJvbmc+SGVhZHMgdXAhPC9zdHJvbmc+IFRoaXMgYWxlcnQgbmVlZHMgeW91ciBhdHRlbnRpb24sDQogICAgYnV0IGl0J3Mgbm90IHN1cGVyIGltcG9ydGFudC4NCjwvZGl2Pg==', 7, 'https://getbootstrap.com/docs/4.0/components/alerts/', 'Alerts are available for any length of text, as well as an optional dismiss button. For proper styling, use one of the eight required contextual classes (e.g., .alert-success).', '', 1, '2017-11-01 00:00:00', '2017-11-21 23:06:13', 1, '', 20, 'f7de3d3c-326c-4039-a184-f0aa1e4719d3'),
(105, 'Most Wanted Web Services, Inc.', 'sales@mwweb.host', 'Steve Voorhees', 'https://mostwantedwebhosting.com', 'Documentation and examples for badges, our small count and labeling component.', 'badge-info', 2, 'Badge - Info', 'PHNwYW4gY2xhc3M9ImJhZGdlIGJhZGdlLWluZm8iPkluZm88L3NwYW4+', 8, 'https://getbootstrap.com/docs/4.0/components/badge/', 'Badges scale to match the size of the immediate parent element by using relative font sizing and em units.', '', 1, '2017-11-01 00:00:00', '2017-11-21 23:13:15', 1, '', 21, 'b7eb3854-3024-440b-bb88-2197e3b934dc'),
(106, 'Most Wanted Web Services, Inc.', 'sales@mwweb.host', 'Steve Voorhees', 'https://mostwantedwebhosting.com', 'Documentation and examples for badges, our small count and labeling component.', 'badge-dark', 2, 'Badge - Dark', 'PHNwYW4gY2xhc3M9ImJhZGdlIGJhZGdlLWRhcmsiPkRhcms8L3NwYW4+', 8, 'https://getbootstrap.com/docs/4.0/components/badge/', 'Badges scale to match the size of the immediate parent element by using relative font sizing and em units.', '', 1, '2017-11-01 00:00:00', '2017-11-21 23:13:28', 1, '', 21, 'c3e0aa51-2cbc-4bf3-8e84-1b6bc2672f2b'),
(107, 'Most Wanted Web Services, Inc.', 'sales@mwweb.host', 'Steve Voorhees', 'https://mostwantedwebhosting.com', 'Documentation and examples for badges, our small count and labeling component.', 'badge-light', 2, 'Badge - Light', 'PHNwYW4gY2xhc3M9ImJhZGdlIGJhZGdlLWxpZ2h0Ij5MaWdodDwvc3Bhbj4=', 8, 'https://getbootstrap.com/docs/4.0/components/badge/', 'Badges scale to match the size of the immediate parent element by using relative font sizing and em units.', '', 1, '2017-11-01 00:00:00', '2017-11-21 23:13:26', 1, '', 22, 'f03cb9b8-fffd-41af-9c84-eeed30c97d4b'),
(108, 'Most Wanted Web Services, Inc.', 'sales@mwweb.host', 'Steve Voorhees', 'https://mostwantedwebhosting.com', 'Documentation and examples for badges, our small count and labeling component.', 'badge-pill', 2, 'Badge - Pill', 'PHNwYW4gY2xhc3M9ImJhZGdlIGJhZGdlLXBpbGwgYmFkZ2UtcHJpbWFyeSI+U2Vjb25kYXJ5PC9zcGFuPg==', 8, 'https://getbootstrap.com/docs/4.0/components/badge/', 'Badges scale to match the size of the immediate parent element by using relative font sizing and em units.', '', 1, '2017-11-01 00:00:00', '2017-11-11 23:53:03', 1, '', 23, '491da919-5afe-4cbb-8cec-1a4d49778c0a'),
(109, 'Most Wanted Web Services, Inc.', 'sales@mwweb.host', 'Steve Voorhees', 'https://mostwantedwebhosting.com', 'Documentation and examples for badges, our small count and labeling component.', 'badge-primary', 2, 'Badge - Primary', 'PHNwYW4gY2xhc3M9ImJhZGdlIGJhZGdlLXByaW1hcnkiPlByaW1hcnk8L3NwYW4+', 8, 'https://getbootstrap.com/docs/4.0/components/badge/', 'Badges scale to match the size of the immediate parent element by using relative font sizing and em units.', '', 1, '2017-11-01 00:00:00', '2017-11-21 23:13:06', 1, '', 23, 'c0d1d1f1-907a-4712-afc5-a905ff75bfbe'),
(110, 'Most Wanted Web Services, Inc.', 'sales@mwweb.host', 'Steve Voorhees', 'https://mostwantedwebhosting.com', 'Documentation and examples for badges, our small count and labeling component.', 'badge-secondary', 2, 'Badge - Secondary', 'PHNwYW4gY2xhc3M9ImJhZGdlIGJhZGdlLXNlY29uZGFyeSI+U2Vjb25kYXJ5PC9zcGFuPg==', 8, 'https://getbootstrap.com/docs/4.0/components/badge/', 'Badges scale to match the size of the immediate parent element by using relative font sizing and em units.', '', 1, '2017-11-01 00:00:00', '2017-11-21 23:13:09', 1, '', 24, '72bcef22-7fcc-4152-892f-23f4e619ef24'),
(111, 'Most Wanted Web Services, Inc.', 'sales@mwweb.host', 'Steve Voorhees', 'https://mostwantedwebhosting.com', 'Documentation and examples for badges, our small count and labeling component.', 'badge-warning', 2, 'Badge - Warning', 'PHNwYW4gY2xhc3M9ImJhZGdlIGJhZGdlLXdhcm5pbmciPldhcm5pbmc8L3NwYW4+', 8, 'https://getbootstrap.com/docs/4.0/components/badge/', 'Badges scale to match the size of the immediate parent element by using relative font sizing and em units.', '', 1, '2017-11-01 00:00:00', '2017-11-21 23:13:18', 1, '', 24, 'f6895007-f66b-4d66-ad52-9823e3b7dee0'),
(112, 'Most Wanted Web Services, Inc.', 'sales@mwweb.host', 'Steve Voorhees', 'https://mostwantedwebhosting.com', 'Indicate the current page\'s location within a navigational hierarchy that automatically adds separators via CSS.', 'breadcrumb', 2, 'Breadcrumb', 'PG9sIGNsYXNzPSJicmVhZGNydW1iIj4NCiAgPGxpIGNsYXNzPSJicmVhZGNydW1iLWl0ZW0gYWN0aXZlIj5Ib21lPC9saT4NCjwvb2w+DQo8b2wgY2xhc3M9ImJyZWFkY3J1bWIiPg0KICA8bGkgY2xhc3M9ImJyZWFkY3J1bWItaXRlbSI+PGEgaHJlZj0iIyI+SG9tZTwvYT48L2xpPg0KICA8bGkgY2xhc3M9ImJyZWFkY3J1bWItaXRlbSBhY3RpdmUiPkxpYnJhcnk8L2xpPg0KPC9vbD4NCjxvbCBjbGFzcz0iYnJlYWRjcnVtYiI+DQogIDxsaSBjbGFzcz0iYnJlYWRjcnVtYi1pdGVtIj48YSBocmVmPSIjIj5Ib21lPC9hPjwvbGk+DQogIDxsaSBjbGFzcz0iYnJlYWRjcnVtYi1pdGVtIj48YSBocmVmPSIjIj5MaWJyYXJ5PC9hPjwvbGk+DQogIDxsaSBjbGFzcz0iYnJlYWRjcnVtYi1pdGVtIGFjdGl2ZSI+RGF0YTwvbGk+DQo8L29sPg==', 9, 'https://getbootstrap.com/docs/4.0/components/breadcrumb/', 'Separators are automatically added in CSS through ::before and content.', '', 1, '2017-11-01 00:00:00', '2017-11-22 00:01:21', 1, '', 25, '25ea0f36-f123-4b2e-82c1-3bb44991c0cb'),
(113, 'Most Wanted Web Services, Inc.', 'sales@mwweb.host', 'Steve Voorhees', 'https://mostwantedwebhosting.com', 'Documentation and examples for badges, our small count and labeling component.', 'badge-success', 2, 'Badge - Success', 'PHNwYW4gY2xhc3M9ImJhZGdlIGJhZGdlLXN1Y2Nlc3MiPlN1Y2Nlc3M8L3NwYW4+', 8, 'https://getbootstrap.com/docs/4.0/components/badge/', 'Badges scale to match the size of the immediate parent element by using relative font sizing and em units.', '', 1, '2017-11-01 00:00:00', '2017-11-21 23:13:12', 1, '', 24, '736daa76-4a91-4a26-a684-3412c126e2ec'),
(114, 'Most Wanted Web Services, Inc.', 'sales@mwweb.host', 'Steve Voorhees', 'https://mostwantedwebhosting.com', 'Group a series of buttons together on a single line with the button group, and super-power them with JavaScript.', 'btn-toolbar', 2, 'Button - Toolbar', 'PGRpdiBjbGFzcz0iYnRuLXRvb2xiYXIiIHJvbGU9InRvb2xiYXIiIGFyaWEtbGFiZWw9IlRvb2xiYXIgd2l0aCBidXR0b24gZ3JvdXBzIj4NCiAgPGRpdiBjbGFzcz0iYnRuLWdyb3VwIiByb2xlPSJncm91cCIgYXJpYS1sYWJlbD0iRmlyc3QgZ3JvdXAiPg0KICAgIDxidXR0b24gdHlwZT0iYnV0dG9uIiBjbGFzcz0iYnRuIGJ0bi1zZWNvbmRhcnkiPjE8L2J1dHRvbj4NCiAgICA8YnV0dG9uIHR5cGU9ImJ1dHRvbiIgY2xhc3M9ImJ0biBidG4tc2Vjb25kYXJ5Ij4yPC9idXR0b24+DQogICAgPGJ1dHRvbiB0eXBlPSJidXR0b24iIGNsYXNzPSJidG4gYnRuLXNlY29uZGFyeSI+MzwvYnV0dG9uPg0KICA8L2Rpdj4NCiAgPGRpdiBjbGFzcz0iYnRuLWdyb3VwIiByb2xlPSJncm91cCIgYXJpYS1sYWJlbD0iU2Vjb25kIGdyb3VwIj4NCiAgICA8YnV0dG9uIHR5cGU9ImJ1dHRvbiIgY2xhc3M9ImJ0biBidG4tc2Vjb25kYXJ5Ij41PC9idXR0b24+DQogICAgPGJ1dHRvbiB0eXBlPSJidXR0b24iIGNsYXNzPSJidG4gYnRuLXNlY29uZGFyeSI+NjwvYnV0dG9uPg0KICA8L2Rpdj4NCiAgPGRpdiBjbGFzcz0iYnRuLWdyb3VwIiByb2xlPSJncm91cCIgYXJpYS1sYWJlbD0iVGhpcmQgZ3JvdXAiPg0KICAgIDxidXR0b24gdHlwZT0iYnV0dG9uIiBjbGFzcz0iYnRuIGJ0bi1zZWNvbmRhcnkiPjg8L2J1dHRvbj4NCiAgPC9kaXY+DQo8L2Rpdj4=', 11, 'https://getbootstrap.com/docs/4.0/components/button-group/', 'Combine sets of button groups into button toolbars for more complex components. Use utility classes as needed to space out groups, buttons, and more.', '', 1, '2017-11-01 00:00:00', '2017-11-22 00:28:16', 1, '', 26, 'f7a6f877-ee4c-4cbe-b1a7-314ff55172b7'),
(115, 'Most Wanted Web Services, Inc.', 'sales@mwweb.host', 'Steve Voorhees', 'https://mostwantedwebhosting.com', 'Group a series of buttons together on a single line with the button group, and super-power them with JavaScript.', 'btn-group (nested)', 2, 'Button Group (nested)', 'PGRpdiBjbGFzcz0iYnRuLWdyb3VwIiByb2xlPSJncm91cCIgYXJpYS1sYWJlbD0iQnV0dG9uIGdyb3VwIHdpdGggbmVzdGVkIGRyb3Bkb3duIj4NCiAgPGJ1dHRvbiB0eXBlPSJidXR0b24iIGNsYXNzPSJidG4gYnRuLXNlY29uZGFyeSI+MTwvYnV0dG9uPg0KICA8YnV0dG9uIHR5cGU9ImJ1dHRvbiIgY2xhc3M9ImJ0biBidG4tc2Vjb25kYXJ5Ij4yPC9idXR0b24+DQoNCiAgPGRpdiBjbGFzcz0iYnRuLWdyb3VwIiByb2xlPSJncm91cCI+DQogICAgPGJ1dHRvbiBpZD0iYnRuR3JvdXBEcm9wMSIgdHlwZT0iYnV0dG9uIiBjbGFzcz0iYnRuIGJ0bi1zZWNvbmRhcnkgZHJvcGRvd24tdG9nZ2xlIiBkYXRhLXRvZ2dsZT0iZHJvcGRvd24iIGFyaWEtaGFzcG9wdXA9InRydWUiIGFyaWEtZXhwYW5kZWQ9ImZhbHNlIj4NCiAgICAgIERyb3Bkb3duDQogICAgPC9idXR0b24+DQogICAgPGRpdiBjbGFzcz0iZHJvcGRvd24tbWVudSIgYXJpYS1sYWJlbGxlZGJ5PSJidG5Hcm91cERyb3AxIj4NCiAgICAgIDxhIGNsYXNzPSJkcm9wZG93bi1pdGVtIiBocmVmPSIjIj5Ecm9wZG93biBsaW5rPC9hPg0KICAgICAgPGEgY2xhc3M9ImRyb3Bkb3duLWl0ZW0iIGhyZWY9IiMiPkRyb3Bkb3duIGxpbms8L2E+DQogICAgPC9kaXY+DQogIDwvZGl2Pg0KPC9kaXY+', 11, 'https://getbootstrap.com/docs/4.0/components/button-group/', 'Wrap a series of buttons with .btn in .btn-group. Add on optional JavaScript radio and checkbox style behavior with our buttons plugin.', '', 1, '2017-11-01 00:00:00', '2017-11-22 00:28:08', 1, '', 26, 'e97f45dd-c391-4b01-9737-c1cd90c2be30'),
(116, 'Most Wanted Web Services, Inc.', 'sales@mwweb.host', 'Steve Voorhees', 'https://mostwantedwebhosting.com', 'Documentation and examples for badges, our small count and labeling component.', 'badge', 2, 'Badge', 'PGgxPkV4YW1wbGUgaGVhZGluZyA8c3BhbiBjbGFzcz0iYmFkZ2UgYmFkZ2Utc2Vjb25kYXJ5Ij5OZXc8L3NwYW4+PC9oMT4NCjxoMj5FeGFtcGxlIGhlYWRpbmcgPHNwYW4gY2xhc3M9ImJhZGdlIGJhZGdlLXNlY29uZGFyeSI+TmV3PC9zcGFuPjwvaDI+DQo8aDM+RXhhbXBsZSBoZWFkaW5nIDxzcGFuIGNsYXNzPSJiYWRnZSBiYWRnZS1zZWNvbmRhcnkiPk5ldzwvc3Bhbj48L2gzPg0KPGg0PkV4YW1wbGUgaGVhZGluZyA8c3BhbiBjbGFzcz0iYmFkZ2UgYmFkZ2Utc2Vjb25kYXJ5Ij5OZXc8L3NwYW4+PC9oND4NCjxoNT5FeGFtcGxlIGhlYWRpbmcgPHNwYW4gY2xhc3M9ImJhZGdlIGJhZGdlLXNlY29uZGFyeSI+TmV3PC9zcGFuPjwvaDU+DQo8aDY+RXhhbXBsZSBoZWFkaW5nIDxzcGFuIGNsYXNzPSJiYWRnZSBiYWRnZS1zZWNvbmRhcnkiPk5ldzwvc3Bhbj48L2g2Pg==', 8, 'https://getbootstrap.com/docs/4.0/components/badge/', 'Badges scale to match the size of the immediate parent element by using relative font sizing and em units.', '', 1, '2017-11-01 00:00:00', '2017-11-21 23:12:58', 1, '', 26, '003efb29-e3f9-4378-a463-4de8e5675766'),
(117, 'Most Wanted Web Services, Inc.', 'sales@mwweb.host', 'Steve Voorhees', 'https://mostwantedwebhosting.com', 'Group a series of buttons together on a single line with the button group, and super-power them with JavaScript.', 'btn-group-lg', 2, 'Button Group - Large', 'PGRpdiBjbGFzcz0iYnRuLWdyb3VwIGJ0bi1ncm91cC1sZyIgcm9sZT0iZ3JvdXAiIGFyaWEtbGFiZWw9IkJhc2ljIGV4YW1wbGUiPg0KICA8YnV0dG9uIHR5cGU9ImJ1dHRvbiIgY2xhc3M9ImJ0biBidG4tc2Vjb25kYXJ5Ij5MZWZ0PC9idXR0b24+DQogIDxidXR0b24gdHlwZT0iYnV0dG9uIiBjbGFzcz0iYnRuIGJ0bi1zZWNvbmRhcnkiPk1pZGRsZTwvYnV0dG9uPg0KICA8YnV0dG9uIHR5cGU9ImJ1dHRvbiIgY2xhc3M9ImJ0biBidG4tc2Vjb25kYXJ5Ij5SaWdodDwvYnV0dG9uPg0KPC9kaXY+', 11, 'https://getbootstrap.com/docs/4.0/components/button-group/', 'Wrap a series of buttons with .btn in .btn-group. Add on optional JavaScript radio and checkbox style behavior with our buttons plugin.', '', 1, '2017-11-01 00:00:00', '2017-11-22 00:27:34', 1, '', 27, '710bde0f-89cc-4acc-a83d-e20fa0cbb893'),
(118, 'Most Wanted Web Services, Inc.', 'sales@mwweb.host', 'Steve Voorhees', 'https://mostwantedwebhosting.com', 'Use Bootstrap\'s custom button styles for actions in forms, dialogs, and more with support for multiple sizes, states, and more.', 'radio as button', 2, 'Button - As Radio', 'PGRpdiBjbGFzcz0iYnRuLWdyb3VwIiBkYXRhLXRvZ2dsZT0iYnV0dG9ucyI+DQogIDxsYWJlbCBjbGFzcz0iYnRuIGJ0bi1wcmltYXJ5IGFjdGl2ZSI+DQogICAgPGlucHV0IHR5cGU9InJhZGlvIiBuYW1lPSJvcHRpb25zIiBpZD0ib3B0aW9uMSIgY2hlY2tlZD0iIj4gUmFkaW8gMSAocHJlc2VsZWN0ZWQpDQogIDwvbGFiZWw+DQogIDxsYWJlbCBjbGFzcz0iYnRuIGJ0bi1wcmltYXJ5Ij4NCiAgICA8aW5wdXQgdHlwZT0icmFkaW8iIG5hbWU9Im9wdGlvbnMiIGlkPSJvcHRpb24yIj4gUmFkaW8gMg0KICA8L2xhYmVsPg0KPC9kaXY+', 12, 'https://getbootstrap.com/docs/4.0/components/buttons/', 'Fancy larger or smaller buttons? Add .btn-lg or .btn-sm for additional sizes.', '', 1, '2017-11-01 00:00:00', '2017-11-22 00:35:00', 1, '', 27, '14c313be-d933-4858-92bc-b5d47a9db508'),
(119, 'Most Wanted Web Services, Inc.', 'sales@mwweb.host', 'Steve Voorhees', 'https://mostwantedwebhosting.com', 'Use Bootstrap\'s custom button styles for actions in forms, dialogs, and more with support for multiple sizes, states, and more.', 'active button', 2, 'Button - Active', 'PGEgaHJlZj0iIyIgY2xhc3M9ImJ0biBidG4tcHJpbWFyeSBidG4tbGcgYWN0aXZlIiByb2xlPSJidXR0b24iIGFyaWEtcHJlc3NlZD0idHJ1ZSI+UHJpbWFyeSBsaW5rPC9hPg==', 12, 'https://getbootstrap.com/docs/4.0/components/buttons/', 'Fancy larger or smaller buttons? Add .btn-lg or .btn-sm for additional sizes.', '', 1, '2017-11-01 00:00:00', '2017-11-21 23:17:18', 1, '', 27, '56f1534d-ea2d-471b-8633-aeed414df87a'),
(120, 'Most Wanted Web Services, Inc.', 'sales@mwweb.host', 'Steve Voorhees', 'https://mostwantedwebhosting.com', 'Use Bootstrap\'s custom button styles for actions in forms, dialogs, and more with support for multiple sizes, states, and more.', 'checkbox as button', 2, 'Button - As Checkbox', 'PGRpdiBjbGFzcz0iYnRuLWdyb3VwIiBkYXRhLXRvZ2dsZT0iYnV0dG9ucyI+DQogIDxsYWJlbCBjbGFzcz0iYnRuIGJ0bi1wcmltYXJ5IGFjdGl2ZSI+DQogICAgPGlucHV0IHR5cGU9ImNoZWNrYm94IiBjaGVja2VkPSIiPiBDaGVja2JveCAxIChwcmUtY2hlY2tlZCkNCiAgPC9sYWJlbD4NCiAgPGxhYmVsIGNsYXNzPSJidG4gYnRuLXByaW1hcnkiPg0KICAgIDxpbnB1dCB0eXBlPSJjaGVja2JveCI+IENoZWNrYm94IDINCiAgPC9sYWJlbD4NCjwvZGl2Pg==', 12, 'https://getbootstrap.com/docs/4.0/components/buttons/', 'Fancy larger or smaller buttons? Add .btn-lg or .btn-sm for additional sizes.', '', 1, '2017-11-01 00:00:00', '2017-11-22 00:34:41', 1, '', 27, '7f9ab8c9-15aa-4b2b-8271-114b032cdef4'),
(121, 'Most Wanted Web Services, Inc.', 'sales@mwweb.host', 'Steve Voorhees', 'https://mostwantedwebhosting.com', 'Use Bootstrap\'s custom button styles for actions in forms, dialogs, and more with support for multiple sizes, states, and more.', 'btn-block', 2, 'Button - Block', 'PGJ1dHRvbiB0eXBlPSJidXR0b24iIGNsYXNzPSJidG4gYnRuLXByaW1hcnkgYnRuLWxnIGJ0bi1ibG9jayI+QmxvY2sgbGV2ZWwgYnV0dG9uPC9idXR0b24+', 12, 'https://getbootstrap.com/docs/4.0/components/buttons/', 'Fancy larger or smaller buttons? Add .btn-lg or .btn-sm for additional sizes.', '', 1, '2017-11-01 00:00:00', '2017-11-21 23:17:15', 1, '', 28, 'e64dd4ca-a1cd-4442-9cf4-5d18a9e3dd91'),
(122, 'Most Wanted Web Services, Inc.', 'sales@mwweb.host', 'Steve Voorhees', 'https://mostwantedwebhosting.com', 'Use Bootstrap\'s custom button styles for actions in forms, dialogs, and more with support for multiple sizes, states, and more.', 'disabled button', 2, 'Button - Disabled', 'PGJ1dHRvbiB0eXBlPSJidXR0b24iIGNsYXNzPSJidG4gYnRuLXByaW1hcnkiIGRhdGEtdG9nZ2xlPSJidXR0b24iIGFyaWEtcHJlc3NlZD0iZmFsc2UiPg0KICBTaW5nbGUgdG9nZ2xlDQo8L2J1dHRvbj4=', 12, 'https://getbootstrap.com/docs/4.0/components/buttons/', 'Fancy larger or smaller buttons? Add .btn-lg or .btn-sm for additional sizes.', '', 1, '2017-11-01 00:00:00', '2017-11-22 00:34:21', 1, '', 28, '52c9caa1-7f2b-4a8f-bb60-9a4158d27c0a'),
(123, 'Most Wanted Web Services, Inc.', 'sales@mwweb.host', 'Steve Voorhees', 'https://mostwantedwebhosting.com', 'Group a series of buttons together on a single line with the button group, and super-power them with JavaScript.', 'btn-group-vertical', 2, 'Button Group - Vertical', 'PGRpdiBjbGFzcz0iYnRuLWdyb3VwLXZlcnRpY2FsIiByb2xlPSJncm91cCIgYXJpYS1sYWJlbD0iQmFzaWMgZXhhbXBsZSI+DQogIDxidXR0b24gdHlwZT0iYnV0dG9uIiBjbGFzcz0iYnRuIGJ0bi1zZWNvbmRhcnkiPkxlZnQ8L2J1dHRvbj4NCiAgPGJ1dHRvbiB0eXBlPSJidXR0b24iIGNsYXNzPSJidG4gYnRuLXNlY29uZGFyeSI+TWlkZGxlPC9idXR0b24+DQogIDxidXR0b24gdHlwZT0iYnV0dG9uIiBjbGFzcz0iYnRuIGJ0bi1zZWNvbmRhcnkiPlJpZ2h0PC9idXR0b24+DQo8L2Rpdj4=', 11, 'https://getbootstrap.com/docs/4.0/components/button-group/', 'Wrap a series of buttons with .btn in .btn-group. Add on optional JavaScript radio and checkbox style behavior with our buttons plugin.', '', 1, '2017-11-01 00:00:00', '2017-11-22 00:27:56', 1, '', 28, '64415e4e-f38f-4e46-9ca1-6eea596f2456'),
(124, 'Most Wanted Web Services, Inc.', 'sales@mwweb.host', 'Steve Voorhees', 'https://mostwantedwebhosting.com', 'Use Bootstrap\'s custom button styles for actions in forms, dialogs, and more with support for multiple sizes, states, and more.', 'btn-lg', 2, 'Button - Large', 'PGJ1dHRvbiB0eXBlPSJidXR0b24iIGNsYXNzPSJidG4gYnRuLXByaW1hcnkgYnRuLWxnIj5MYXJnZSBidXR0b248L2J1dHRvbj4=', 12, 'https://getbootstrap.com/docs/4.0/components/buttons/', 'Fancy larger or smaller buttons? Add .btn-lg or .btn-sm for additional sizes.', '', 1, '2017-11-01 00:00:00', '2017-11-21 23:17:07', 1, '', 29, 'ed94a4f7-b396-4201-a7da-b268db30b13d'),
(125, 'Most Wanted Web Services, Inc.', 'sales@mwweb.host', 'Steve Voorhees', 'https://mostwantedwebhosting.com', 'Use Bootstrap\'s custom button styles for actions in forms, dialogs, and more with support for multiple sizes, states, and more.', 'btn-sm', 2, 'Button - Small', 'PGJ1dHRvbiB0eXBlPSJidXR0b24iIGNsYXNzPSJidG4gYnRuLXByaW1hcnkgYnRuLXNtIj5TbWFsbCBidXR0b248L2J1dHRvbj4=', 12, 'https://getbootstrap.com/docs/4.0/components/buttons/', 'Fancy larger or smaller buttons? Add .btn-lg or .btn-sm for additional sizes.', '', 1, '2017-11-01 00:00:00', '2017-11-21 23:17:13', 1, '', 29, '4becf0e5-2fac-483a-b4bb-92b0b1608c3b'),
(126, 'Most Wanted Web Services, Inc.', 'sales@mwweb.host', 'Steve Voorhees', 'https://mostwantedwebhosting.com', 'Group a series of buttons together on a single line with the button group, and super-power them with JavaScript.', 'btn-group-sm', 2, 'Button Group - Small', 'PGRpdiBjbGFzcz0iYnRuLWdyb3VwIGJ0bi1ncm91cC1zbSIgcm9sZT0iZ3JvdXAiIGFyaWEtbGFiZWw9IkJhc2ljIGV4YW1wbGUiPg0KICA8YnV0dG9uIHR5cGU9ImJ1dHRvbiIgY2xhc3M9ImJ0biBidG4tc2Vjb25kYXJ5Ij5MZWZ0PC9idXR0b24+DQogIDxidXR0b24gdHlwZT0iYnV0dG9uIiBjbGFzcz0iYnRuIGJ0bi1zZWNvbmRhcnkiPk1pZGRsZTwvYnV0dG9uPg0KICA8YnV0dG9uIHR5cGU9ImJ1dHRvbiIgY2xhc3M9ImJ0biBidG4tc2Vjb25kYXJ5Ij5SaWdodDwvYnV0dG9uPg0KPC9kaXY+', 11, 'https://getbootstrap.com/docs/4.0/components/button-group/', 'Wrap a series of buttons with .btn in .btn-group. Add on optional JavaScript radio and checkbox style behavior with our buttons plugin.', '', 1, '2017-11-01 00:00:00', '2017-11-22 00:27:45', 1, '', 29, '3af366d7-978f-487a-a966-0477d7ea9d1a'),
(127, 'Most Wanted Web Services, Inc.', 'sales@mwweb.host', 'Steve Voorhees', 'https://mostwantedwebhosting.com', 'Use Bootstrap\'s custom button styles for actions in forms, dialogs, and more with support for multiple sizes, states, and more.', 'btn-danger', 2, 'Button - Danger', 'PGJ1dHRvbiB0eXBlPSJidXR0b24iIGNsYXNzPSJidG4gYnRuLWRhbmdlciI+RGFuZ2VyPC9idXR0b24+', 10, 'https://getbootstrap.com/docs/4.0/components/buttons/', 'Bootstrap includes several predefined button styles, each serving its own semantic purpose, with a few extras thrown in for more control.', '', 1, '2017-11-01 00:00:00', '2017-11-21 23:14:20', 1, '', 30, '772bc812-118c-4bf0-a286-b467c3d4cee6'),
(128, 'Most Wanted Web Services, Inc.', 'sales@mwweb.host', 'Steve Voorhees', 'https://mostwantedwebhosting.com', 'Group a series of buttons together on a single line with the button group, and super-power them with JavaScript.', 'btn-group', 2, 'Button Group', 'PGRpdiBjbGFzcz0iYnRuLWdyb3VwIiByb2xlPSJncm91cCIgYXJpYS1sYWJlbD0iQmFzaWMgZXhhbXBsZSI+DQogIDxidXR0b24gdHlwZT0iYnV0dG9uIiBjbGFzcz0iYnRuIGJ0bi1zZWNvbmRhcnkiPkxlZnQ8L2J1dHRvbj4NCiAgPGJ1dHRvbiB0eXBlPSJidXR0b24iIGNsYXNzPSJidG4gYnRuLXNlY29uZGFyeSI+TWlkZGxlPC9idXR0b24+DQogIDxidXR0b24gdHlwZT0iYnV0dG9uIiBjbGFzcz0iYnRuIGJ0bi1zZWNvbmRhcnkiPlJpZ2h0PC9idXR0b24+DQo8L2Rpdj4=', 11, 'https://getbootstrap.com/docs/4.0/components/button-group/', 'Wrap a series of buttons with .btn in .btn-group. Add on optional JavaScript radio and checkbox style behavior with our buttons plugin.', '', 1, '2017-11-01 00:00:00', '2017-11-22 00:25:49', 1, '', 30, 'cebe97c4-ff4a-4a74-bd12-ebe02ecfd814'),
(129, 'Most Wanted Web Services, Inc.', 'sales@mwweb.host', 'Steve Voorhees', 'https://mostwantedwebhosting.com', 'Use Bootstrap\'s custom button styles for actions in forms, dialogs, and more with support for multiple sizes, states, and more.', 'btn-info', 2, 'Button - Info', 'PGJ1dHRvbiB0eXBlPSJidXR0b24iIGNsYXNzPSJidG4gYnRuLWluZm8iPkluZm88L2J1dHRvbj4=', 10, 'https://getbootstrap.com/docs/4.0/components/buttons/', 'Bootstrap includes several predefined button styles, each serving its own semantic purpose, with a few extras thrown in for more control.', '', 1, '2017-11-01 00:00:00', '2017-11-21 23:14:14', 1, '', 31, '35d64d76-fd06-4821-9cfb-7cc8a8901ccf'),
(130, 'Most Wanted Web Services, Inc.', 'sales@mwweb.host', 'Steve Voorhees', 'https://mostwantedwebhosting.com', 'Use Bootstrap\'s custom button styles for actions in forms, dialogs, and more with support for multiple sizes, states, and more.', 'btn-link', 2, 'Button - Link', 'PGJ1dHRvbiB0eXBlPSJidXR0b24iIGNsYXNzPSJidG4gYnRuLWxpbmsiPkxpbms8L2J1dHRvbj4=', 10, 'https://getbootstrap.com/docs/4.0/components/buttons/', 'Bootstrap includes several predefined button styles, each serving its own semantic purpose, with a few extras thrown in for more control.', '', 1, '2017-11-01 00:00:00', '2017-11-21 23:14:30', 1, '', 32, 'e6356804-5499-478d-b0cb-5f708fd1a739'),
(131, 'Most Wanted Web Services, Inc.', 'sales@mwweb.host', 'Steve Voorhees', 'https://mostwantedwebhosting.com', 'Use Bootstrap\'s custom button styles for actions in forms, dialogs, and more with support for multiple sizes, states, and more.', 'btn-outline-danger', 2, 'Button - Outline Danger', 'PGJ1dHRvbiB0eXBlPSJidXR0b24iIGNsYXNzPSJidG4gYnRuLW91dGxpbmUtZGFuZ2VyIj5EYW5nZXI8L2J1dHRvbj4=', 10, 'https://getbootstrap.com/docs/4.0/components/buttons/', 'In need of a button, but not the hefty background colors they bring? Replace the default modifier classes with the .btn-outline-* ones to remove all background images and colors on any button.', '', 1, '2017-11-01 00:00:00', '2017-11-21 23:15:40', 1, '', 32, '206c8a71-71b4-4e66-9bdb-9247e0efdf27'),
(132, 'Most Wanted Web Services, Inc.', 'sales@mwweb.host', 'Steve Voorhees', 'https://mostwantedwebhosting.com', 'Use Bootstrap\'s custom button styles for actions in forms, dialogs, and more with support for multiple sizes, states, and more.', 'btn-outline-info', 2, 'Button - Outline Info', 'PGJ1dHRvbiB0eXBlPSJidXR0b24iIGNsYXNzPSJidG4gYnRuLW91dGxpbmUtaW5mbyI+SW5mbzwvYnV0dG9uPg==', 10, 'https://getbootstrap.com/docs/4.0/components/buttons/', 'In need of a button, but not the hefty background colors they bring? Replace the default modifier classes with the .btn-outline-* ones to remove all background images and colors on any button.', '', 1, '2017-11-01 00:00:00', '2017-11-21 23:15:34', 1, '', 33, 'ab044e3e-675a-4172-8849-a5fd61d889e3'),
(133, 'Most Wanted Web Services, Inc.', 'sales@mwweb.host', 'Steve Voorhees', 'https://mostwantedwebhosting.com', 'Use Bootstrap\'s custom button styles for actions in forms, dialogs, and more with support for multiple sizes, states, and more.', 'btn-outline-primary', 2, 'Button - Outline Primary', 'PGJ1dHRvbiB0eXBlPSJidXR0b24iIGNsYXNzPSJidG4gYnRuLW91dGxpbmUtcHJpbWFyeSI+UHJpbWFyeTwvYnV0dG9uPg==', 10, 'https://getbootstrap.com/docs/4.0/components/buttons/', 'In need of a button, but not the hefty background colors they bring? Replace the default modifier classes with the .btn-outline-* ones to remove all background images and colors on any button.', '', 1, '2017-11-01 00:00:00', '2017-11-21 23:14:51', 1, '', 34, '6a26904a-fdae-4333-892a-932548b8a11d'),
(134, 'Most Wanted Web Services, Inc.', 'sales@mwweb.host', 'Steve Voorhees', 'https://mostwantedwebhosting.com', 'Use Bootstrap\'s custom button styles for actions in forms, dialogs, and more with support for multiple sizes, states, and more.', 'btn-outline-light', 2, 'Button - Outline Light', 'PGJ1dHRvbiB0eXBlPSJidXR0b24iIGNsYXNzPSJidG4gYnRuLW91dGxpbmUtbGlnaHQiPkxpZ2h0PC9idXR0b24+DQo=', 10, 'https://getbootstrap.com/docs/4.0/components/buttons/', 'In need of a button, but not the hefty background colors they bring? Replace the default modifier classes with the .btn-outline-* ones to remove all background images and colors on any button.', '', 1, '2017-11-01 00:00:00', '2017-11-11 23:54:26', 1, '', 34, '5e418043-9a54-4cc3-abef-ac2c6b467a4f'),
(135, 'Most Wanted Web Services, Inc.', 'sales@mwweb.host', 'Steve Voorhees', 'https://mostwantedwebhosting.com', 'Use Bootstrap\'s custom button styles for actions in forms, dialogs, and more with support for multiple sizes, states, and more.', 'btn-dark', 2, 'Button - Dark', 'PGJ1dHRvbiB0eXBlPSJidXR0b24iIGNsYXNzPSJidG4gYnRuLWRhcmsiPkRhcms8L2J1dHRvbj4=', 10, 'https://getbootstrap.com/docs/4.0/components/buttons/', 'Bootstrap includes several predefined button styles, each serving its own semantic purpose, with a few extras thrown in for more control.', '', 1, '2017-11-01 00:00:00', '2017-11-21 23:14:26', 1, '', 35, 'ad5973b8-1860-49b8-9022-ac43d24a2bc5'),
(136, 'Most Wanted Web Services, Inc.', 'sales@mwweb.host', 'Steve Voorhees', 'https://mostwantedwebhosting.com', 'Use Bootstrap\'s custom button styles for actions in forms, dialogs, and more with support for multiple sizes, states, and more.', 'btn-outline-secondary', 2, 'Button - Outline Secondary', 'PGJ1dHRvbiB0eXBlPSJidXR0b24iIGNsYXNzPSJidG4gYnRuLW91dGxpbmUtc2Vjb25kYXJ5Ij5TZWNvbmRhcnk8L2J1dHRvbj4=', 10, 'https://getbootstrap.com/docs/4.0/components/buttons/', 'In need of a button, but not the hefty background colors they bring? Replace the default modifier classes with the .btn-outline-* ones to remove all background images and colors on any button.', '', 1, '2017-11-01 00:00:00', '2017-11-21 23:14:53', 1, '', 35, 'ea92c635-9155-451c-a7f8-4353c60641c8'),
(137, 'Most Wanted Web Services, Inc.', 'sales@mwweb.host', 'Steve Voorhees', 'https://mostwantedwebhosting.com', 'Use Bootstrap\'s custom button styles for actions in forms, dialogs, and more with support for multiple sizes, states, and more.', 'btn-light', 2, 'Button - Light', 'PGJ1dHRvbiB0eXBlPSJidXR0b24iIGNsYXNzPSJidG4gYnRuLWxpZ2h0Ij5MaWdodDwvYnV0dG9uPg==', 10, 'https://getbootstrap.com/docs/4.0/components/buttons/', 'Bootstrap includes several predefined button styles, each serving its own semantic purpose, with a few extras thrown in for more control.', '', 1, '2017-11-01 00:00:00', '2017-11-21 23:14:23', 1, '', 36, '0cee266b-156e-44a9-aff0-af6935f139e9'),
(138, 'Most Wanted Web Services, Inc.', 'sales@mwweb.host', 'Steve Voorhees', 'https://mostwantedwebhosting.com', 'Use Bootstrap\'s custom button styles for actions in forms, dialogs, and more with support for multiple sizes, states, and more.', 'btn-outline-success', 2, 'Button - Outline Success', 'PGJ1dHRvbiB0eXBlPSJidXR0b24iIGNsYXNzPSJidG4gYnRuLW91dGxpbmUtc3VjY2VzcyI+U3VjY2VzczwvYnV0dG9uPg==', 10, 'https://getbootstrap.com/docs/4.0/components/buttons/', 'In need of a button, but not the hefty background colors they bring? Replace the default modifier classes with the .btn-outline-* ones to remove all background images and colors on any button.', '', 1, '2017-11-01 00:00:00', '2017-11-21 23:14:55', 1, '', 36, '8798c735-ae7b-4657-8776-d07b0ec5bfe3'),
(139, 'Most Wanted Web Services, Inc.', 'sales@mwweb.host', 'Steve Voorhees', 'https://mostwantedwebhosting.com', 'Use Bootstrap\'s custom button styles for actions in forms, dialogs, and more with support for multiple sizes, states, and more.', 'btn-outline-warning', 2, 'Button - Outline Warning', 'PGJ1dHRvbiB0eXBlPSJidXR0b24iIGNsYXNzPSJidG4gYnRuLW91dGxpbmUtd2FybmluZyI+V2FybmluZzwvYnV0dG9uPg==', 10, 'https://getbootstrap.com/docs/4.0/components/buttons/', 'In need of a button, but not the hefty background colors they bring? Replace the default modifier classes with the .btn-outline-* ones to remove all background images and colors on any button.', '', 1, '2017-11-01 00:00:00', '2017-11-21 23:15:37', 1, '', 36, '56c2a53e-7076-4c4a-9a79-0e9037e19fec'),
(140, 'Most Wanted Web Services, Inc.', 'sales@mwweb.host', 'Steve Voorhees', 'https://mostwantedwebhosting.com', 'Use Bootstrap\'s custom button styles for actions in forms, dialogs, and more with support for multiple sizes, states, and more.', 'btn-outline-dark', 2, 'Button - Outline Dark', 'PGJ1dHRvbiB0eXBlPSJidXR0b24iIGNsYXNzPSJidG4gYnRuLW91dGxpbmUtZGFyayI+RGFyazwvYnV0dG9uPg==', 10, 'https://getbootstrap.com/docs/4.0/components/buttons/', 'In need of a button, but not the hefty background colors they bring? Replace the default modifier classes with the .btn-outline-* ones to remove all background images and colors on any button.', '', 1, '2017-11-01 00:00:00', '2017-11-21 23:15:47', 1, '', 36, '4560a0a9-c5e9-4db5-b85b-f547206dc4f5'),
(141, 'Most Wanted Web Services, Inc.', 'sales@mwweb.host', 'Steve Voorhees', 'https://mostwantedwebhosting.com', 'Use Bootstrap\'s custom button styles for actions in forms, dialogs, and more with support for multiple sizes, states, and more.', 'btn-primary', 2, 'Button - Primary', 'PGJ1dHRvbiB0eXBlPSJidXR0b24iIGNsYXNzPSJidG4gYnRuLXByaW1hcnkiPlByaW1hcnk8L2J1dHRvbj4=', 10, 'https://getbootstrap.com/docs/4.0/components/buttons/', 'Bootstrap includes several predefined button styles, each serving its own semantic purpose, with a few extras thrown in for more control.', '', 1, '2017-11-01 00:00:00', '2017-11-21 22:39:59', 1, '', 37, 'a2e15c1b-e002-41ba-b222-808a4de5d3cb'),
(142, 'Most Wanted Web Services, Inc.', 'sales@mwweb.host', 'Steve Voorhees', 'https://mostwantedwebhosting.com', 'Use Bootstrap\'s custom button styles for actions in forms, dialogs, and more with support for multiple sizes, states, and more.', 'btn-success', 2, 'Button - Success', 'PGJ1dHRvbiB0eXBlPSJidXR0b24iIGNsYXNzPSJidG4gYnRuLXN1Y2Nlc3MiPlN1Y2Nlc3M8L2J1dHRvbj4=', 10, 'https://getbootstrap.com/docs/4.0/components/buttons/', 'Bootstrap includes several predefined button styles, each serving its own semantic purpose, with a few extras thrown in for more control.', '', 1, '2017-11-01 00:00:00', '2017-11-21 23:14:11', 1, '', 38, 'ba1c21b9-612d-4d8b-8d74-333e6dd6a140'),
(143, 'Most Wanted Web Services, Inc.', 'sales@mwweb.host', 'Steve Voorhees', 'https://mostwantedwebhosting.com', 'Use Bootstrap\'s custom button styles for actions in forms, dialogs, and more with support for multiple sizes, states, and more.', 'btn-warning', 2, 'Button - Warning', 'PGJ1dHRvbiB0eXBlPSJidXR0b24iIGNsYXNzPSJidG4gYnRuLXdhcm5pbmciPldhcm5pbmc8L2J1dHRvbj4=', 10, 'https://getbootstrap.com/docs/4.0/components/buttons/', 'Bootstrap includes several predefined button styles, each serving its own semantic purpose, with a few extras thrown in for more control.', '', 1, '2017-11-01 00:00:00', '2017-11-21 23:14:17', 1, '', 39, '7c1fd0a6-3460-4034-b562-9eed77e53764'),
(144, 'Most Wanted Web Services, Inc.', 'sales@mwweb.host', 'Steve Voorhees', 'https://mostwantedwebhosting.com', 'Use Bootstrap\'s custom button styles for actions in forms, dialogs, and more with support for multiple sizes, states, and more.', 'btn-secondary', 2, 'Button - Secondary', 'PGJ1dHRvbiB0eXBlPSJidXR0b24iIGNsYXNzPSJidG4gYnRuLXNlY29uZGFyeSI+U2Vjb25kYXJ5PC9idXR0b24+', 10, 'https://getbootstrap.com/docs/4.0/components/buttons/', 'Bootstrap includes several predefined button styles, each serving its own semantic purpose, with a few extras thrown in for more control.', '', 1, '2017-11-01 00:00:00', '2017-11-21 22:40:04', 1, '', 40, '5f6714fb-0030-40a6-b269-4d96d1b1bf08');
--
-- Dumping data for table `#__componentbuilder_validation_rule`
--
INSERT INTO `#__componentbuilder_validation_rule` (`id`, `name`, `php`, `short_description`, `published`, `created`, `params`) VALUES
(1, 'inspect', 'CS8qKg0KCSAqIE1ldGhvZCB0byB0ZXN0IHRoZSB2YWx1ZS4NCgkgKg0KCSAqIEBwYXJhbSAgIFxTaW1wbGVYTUxFbGVtZW50ICAkZWxlbWVudCAgVGhlIFNpbXBsZVhNTEVsZW1lbnQgb2JqZWN0IHJlcHJlc2VudGluZyB0aGUgYDxmaWVsZD5gIHRhZyBmb3IgdGhlIGZvcm0gZmllbGQgb2JqZWN0Lg0KCSAqIEBwYXJhbSAgIG1peGVkICAgICAgICAgICAgICAkdmFsdWUgICAgVGhlIGZvcm0gZmllbGQgdmFsdWUgdG8gdmFsaWRhdGUuDQoJICogQHBhcmFtICAgc3RyaW5nICAgICAgICAgICAgICRncm91cCAgICBUaGUgZmllbGQgbmFtZSBncm91cCBjb250cm9sIHZhbHVlLiBUaGlzIGFjdHMgYXMgYW4gYXJyYXkgY29udGFpbmVyIGZvciB0aGUgZmllbGQuDQoJICogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICBGb3IgZXhhbXBsZSBpZiB0aGUgZmllbGQgaGFzIG5hbWU9ImZvbyIgYW5kIHRoZSBncm91cCB2YWx1ZSBpcyBzZXQgdG8gImJhciIgdGhlbiB0aGUNCgkgKiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIGZ1bGwgZmllbGQgbmFtZSB3b3VsZCBlbmQgdXAgYmVpbmcgImJhcltmb29dIi4NCgkgKiBAcGFyYW0gICBSZWdpc3RyeSAgICAgICAgICAgJGlucHV0ICAgIEFuIG9wdGlvbmFsIFJlZ2lzdHJ5IG9iamVjdCB3aXRoIHRoZSBlbnRpcmUgZGF0YSBzZXQgdG8gdmFsaWRhdGUgYWdhaW5zdCB0aGUgZW50aXJlIGZvcm0uDQoJICogQHBhcmFtICAgRm9ybSAgICAgICAgICAgICAgICRmb3JtICAgICBUaGUgZm9ybSBvYmplY3QgZm9yIHdoaWNoIHRoZSBmaWVsZCBpcyBiZWluZyB0ZXN0ZWQuDQoJICoNCgkgKiBAcmV0dXJuICBib29sZWFuICBUcnVlIGlmIHRoZSB2YWx1ZSBpcyB2YWxpZCwgZmFsc2Ugb3RoZXJ3aXNlLg0KCSAqDQoJICogQHNpbmNlICAgMTEuMQ0KCSAqLw0KCXB1YmxpYyBmdW5jdGlvbiB0ZXN0KFxTaW1wbGVYTUxFbGVtZW50ICRlbGVtZW50LCAkdmFsdWUsICRncm91cCA9IG51bGwsIFJlZ2lzdHJ5ICRpbnB1dCA9IG51bGwsIEZvcm0gJGZvcm0gPSBudWxsKQ0KCXsNCgkJLy8gbG9vayBpbnRvIHRoZXNlIHZhbHVlcyBvbmUgYXQgYSB0aW1lDQoJCWVjaG8gJzxwcmU+ZWxlbWVudDxiciAvPic7DQoJCXZhcl9kdW1wKCRlbGVtZW50KTsNCgkJZWNobyAndmFsdWU8YnIgLz4nOw0KCQl2YXJfZHVtcCgkdmFsdWUpOw0KCQllY2hvICdncm91cDxiciAvPic7DQoJCXZhcl9kdW1wKCRncm91cCk7DQoJCWVjaG8gJ2lucHV0PGJyIC8+JzsNCgkJdmFyX2R1bXAoJGlucHV0KTsNCgkJZWNobyAnZm9ybTxiciAvPic7DQoJCXZhcl9kdW1wKCRmb3JtKTsNCgkJamV4aXQoKTsNCgl9', 'simple function to inspect the test values', 1, '2018-03-30 09:22:15', ''),
(2, 'code', 'CS8qKg0KCSAqIE1ldGhvZCB0byB0ZXN0IHRoZSB2YWx1ZS4NCgkgKg0KCSAqIEBwYXJhbSAgIFxTaW1wbGVYTUxFbGVtZW50ICAkZWxlbWVudCAgVGhlIFNpbXBsZVhNTEVsZW1lbnQgb2JqZWN0IHJlcHJlc2VudGluZyB0aGUgYDxmaWVsZD5gIHRhZyBmb3IgdGhlIGZvcm0gZmllbGQgb2JqZWN0Lg0KCSAqIEBwYXJhbSAgIG1peGVkICAgICAgICAgICAgICAkdmFsdWUgICAgVGhlIGZvcm0gZmllbGQgdmFsdWUgdG8gdmFsaWRhdGUuDQoJICogQHBhcmFtICAgc3RyaW5nICAgICAgICAgICAgICRncm91cCAgICBUaGUgZmllbGQgbmFtZSBncm91cCBjb250cm9sIHZhbHVlLiBUaGlzIGFjdHMgYXMgYW4gYXJyYXkgY29udGFpbmVyIGZvciB0aGUgZmllbGQuDQoJICogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICBGb3IgZXhhbXBsZSBpZiB0aGUgZmllbGQgaGFzIG5hbWU9ImZvbyIgYW5kIHRoZSBncm91cCB2YWx1ZSBpcyBzZXQgdG8gImJhciIgdGhlbiB0aGUNCgkgKiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIGZ1bGwgZmllbGQgbmFtZSB3b3VsZCBlbmQgdXAgYmVpbmcgImJhcltmb29dIi4NCgkgKiBAcGFyYW0gICBSZWdpc3RyeSAgICAgICAgICAgJGlucHV0ICAgIEFuIG9wdGlvbmFsIFJlZ2lzdHJ5IG9iamVjdCB3aXRoIHRoZSBlbnRpcmUgZGF0YSBzZXQgdG8gdmFsaWRhdGUgYWdhaW5zdCB0aGUgZW50aXJlIGZvcm0uDQoJICogQHBhcmFtICAgRm9ybSAgICAgICAgICAgICAgICRmb3JtICAgICBUaGUgZm9ybSBvYmplY3QgZm9yIHdoaWNoIHRoZSBmaWVsZCBpcyBiZWluZyB0ZXN0ZWQuDQoJICoNCgkgKiBAcmV0dXJuICBib29sZWFuICBUcnVlIGlmIHRoZSB2YWx1ZSBpcyB2YWxpZCwgZmFsc2Ugb3RoZXJ3aXNlLg0KCSAqLw0KCXB1YmxpYyBmdW5jdGlvbiB0ZXN0KFxTaW1wbGVYTUxFbGVtZW50ICRlbGVtZW50LCAkdmFsdWUsICRncm91cCA9IG51bGwsIFJlZ2lzdHJ5ICRpbnB1dCA9IG51bGwsIEZvcm0gJGZvcm0gPSBudWxsKQ0KCXsNCgkJLy8gVGhpcyByZW1vdmVzIGFsbCB2YWxpZGF0aW9uIChpcyBkYW5nZXJvdXMpIGJ1dCBuZWVkZWQgdG8gc3VibWl0IGNvZGUgdmlhIEpDQg0KCQlyZXR1cm4gdHJ1ZTsNCg0KCQkvKioNCgkJICogTXkgaWRlYSBpcyB0byBhZGQgc29tZSBraW5kIG9mIHZhbGlkYXRpb24gdG8gaW1wcm92ZSBKQ0IgY29kZSAocGVyL2xhbmd1YWdlKQ0KCQkgKg0KCQkgKiBTbyBhdCB0aGlzIHRpbWUgdGhpcyBjb2RlIHZhbGlkYXRpb24gaXMgdXNlZCBmb3IgSmF2YVNjcmlwdCxDU1MsSFRNTCBhbmQgUEhQLg0KCQkgKiBXZSBjYW4gc2VlIHdoYXQgbGFuZ3VhZ2UgaXMgYmVpbmcgd29ya2VkIG9uIHdpdGggdGhlIHN5bnRheCBwcm9wZXJ0eSBpbiB0aGUgJGVsZW1lbnQuIChpbiBKQ0IpDQoJCSAqIFdoYXQgY29tcGxpY2F0ZXMgdGhpbmdzIGlzIHRoZSBwbGFjZWhvbGRlcnMsIG9mIGJvdGggY3VzdG9tIGNvZGUsIGNvbXBvbmVudCwgYW5kIHZpZXcgbmFtZXMuDQoJCSAqIElkZWFsbHkgd2UgY291bGQgc3RyaXAgdGhlbSBhbmQgdGhlbiB2YWxpZGF0ZSB0aGUgY29kZSB0byBiZWluZyBzeW50YWN0aWNhbGx5IGNvcnJlY3QuDQoJCSAqIEJ1dCBzaW5jZSBzb21lIG9mIHRoZSBwbGFjZWhvbGRlcnMgZm9ybSBwYXJ0IG9mIHRoZSBjbGFzcy9mdW5jdGlvbiBuYW1lcyBhbmQgdGhlIG1vcmUsIGl0IHNlZW1zIGxpa2Ugd2UgYXJlIHByZXNzZWQgZm9yIGEgbXVjaCBtb3JlIGFkdmFuY2Ugc29sdXRpb24uDQoJCSAqIElmIHlvdSBoYXZlIGFueSBpZGVhcyB0byBob3cgd2UgY2FuIGdvIGFib3V0IHRvIGRvIHRoaXMsIHRoZW4gcGxlYXNlIG9wZW4gYW4gaXNzdWUgb24gZ2l0aHViIGFuZCBsZXRzIGJlZ2luLiAodGhpcyBpcyBhIG5pY2UgdG8gaGF2ZSwgc28gZG9uJ3QgYnJlYWsgYSBsZWcuLi4pDQoJCSAqLw0KCX0=', 'To validate code', 1, '2018-06-24 19:11:45', ''),
(3, 'uniquefield', 'CS8qKg0KCSAqIE1ldGhvZCB0byB0ZXN0IHRoZSBmaWVsZCB2YWx1ZSBmb3IgdW5pcXVlbmVzcy4NCgkgKg0KCSAqIEBwYXJhbSAgIFxTaW1wbGVYTUxFbGVtZW50ICAkZWxlbWVudCAgVGhlIFNpbXBsZVhNTEVsZW1lbnQgb2JqZWN0IHJlcHJlc2VudGluZyB0aGUgYDxmaWVsZD5gIHRhZyBmb3IgdGhlIGZvcm0gZmllbGQgb2JqZWN0Lg0KCSAqIEBwYXJhbSAgIG1peGVkICAgICAgICAgICAgICAkdmFsdWUgICAgVGhlIGZvcm0gZmllbGQgdmFsdWUgdG8gdmFsaWRhdGUuDQoJICogQHBhcmFtICAgc3RyaW5nICAgICAgICAgICAgICRncm91cCAgICBUaGUgZmllbGQgbmFtZSBncm91cCBjb250cm9sIHZhbHVlLiBUaGlzIGFjdHMgYXMgYW4gYXJyYXkgY29udGFpbmVyIGZvciB0aGUgZmllbGQuDQoJICogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICBGb3IgZXhhbXBsZSBpZiB0aGUgZmllbGQgaGFzIG5hbWU9ImZvbyIgYW5kIHRoZSBncm91cCB2YWx1ZSBpcyBzZXQgdG8gImJhciIgdGhlbiB0aGUNCgkgKiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIGZ1bGwgZmllbGQgbmFtZSB3b3VsZCBlbmQgdXAgYmVpbmcgImJhcltmb29dIi4NCgkgKiBAcGFyYW0gICBSZWdpc3RyeSAgICAgICAgICAgJGlucHV0ICAgIEFuIG9wdGlvbmFsIFJlZ2lzdHJ5IG9iamVjdCB3aXRoIHRoZSBlbnRpcmUgZGF0YSBzZXQgdG8gdmFsaWRhdGUgYWdhaW5zdCB0aGUgZW50aXJlIGZvcm0uDQoJICogQHBhcmFtICAgRm9ybSAgICAgICAgICAgICAgICRmb3JtICAgICBUaGUgZm9ybSBvYmplY3QgZm9yIHdoaWNoIHRoZSBmaWVsZCBpcyBiZWluZyB0ZXN0ZWQuDQoJICoNCgkgKiBAcmV0dXJuICBib29sZWFuICBUcnVlIGlmIHRoZSB2YWx1ZSBpcyB2YWxpZCwgZmFsc2Ugb3RoZXJ3aXNlLg0KCSAqDQoJICogQHNpbmNlICAgMTEuMQ0KCSAqLw0KCXB1YmxpYyBmdW5jdGlvbiB0ZXN0KFxTaW1wbGVYTUxFbGVtZW50ICRlbGVtZW50LCAkdmFsdWUsICRncm91cCA9IG51bGwsIFJlZ2lzdHJ5ICRpbnB1dCA9IG51bGwsIEZvcm0gJGZvcm0gPSBudWxsKQ0KCXsNCgkJLy8gR2V0IHRoZSBkYXRhYmFzZSBvYmplY3QgYW5kIGEgbmV3IHF1ZXJ5IG9iamVjdC4NCgkJJGRiID0gXEZhY3Rvcnk6OmdldERibygpOw0KCQkkcXVlcnkgPSAkZGItPmdldFF1ZXJ5KHRydWUpOw0KDQoJCS8vIEdldCB0aGUgZXh0cmEgZmllbGQgY2hlY2sgYXR0cmlidXRlLg0KCQkkaWQgPSAoJGlucHV0IGluc3RhbmNlb2YgUmVnaXN0cnkpID8gJGlucHV0LT5nZXQoJ2lkJywgbnVsbCkgOiBudWxsOw0KDQoJCS8vIGdldCB0aGUgY29tcG9uZW50ICYgdGFibGUgbmFtZQ0KCQkkdGFibGUgPSAoJGZvcm0gaW5zdGFuY2VvZiBGb3JtKSA/ICRmb3JtLT5nZXROYW1lKCkgOiAnJzsNCg0KCQkvLyBnZXQgdGhlIGNvbHVtbiBuYW1lDQoJCSRuYW1lID0gKGFycmF5KSAkZWxlbWVudC0+YXR0cmlidXRlcygpLT57J25hbWUnfTsNCgkJJGNvbHVtbiA9IChzdHJpbmcpIHRyaW0oJG5hbWVbMF0pOw0KCQkNCgkJLy8gY2hlY2sgdGhhdCB3ZSBoYXZlIGEgdmFsdWUNCgkJaWYgKHN0cmxlbigkdmFsdWUpICYmIHN0cmxlbigkdGFibGUpID4gMyAmJiBzdHJwb3MoJHRhYmxlLCAnW1tbY29tcG9uZW50XV1dLicpICE9PSBmYWxzZSkNCgkJew0KCQkJLy8gbm93IGdldCB0aGUgdGFibGUgbmFtZQ0KCQkJJHRhYmxlQXJyYXkgPSBleHBsb2RlKCcuJywgJHRhYmxlKTsNCgkJCS8vIGRvIHdlIGhhdmUgdHdvIHZhbHVlcw0KCQkJaWYgKGNvdW50KCAoYXJyYXkpICR0YWJsZUFycmF5KSA9PSAyKQ0KCQkJew0KCQkJCS8vIEJ1aWxkIHRoZSBxdWVyeS4NCgkJCQkkcXVlcnktPnNlbGVjdCgnQ09VTlQoKiknKQ0KCQkJCQktPmZyb20oJyNfX1tbW2NvbXBvbmVudF1dXV8nIC4gKHN0cmluZykgJHRhYmxlQXJyYXlbMV0pDQoJCQkJCS0+d2hlcmUoJGRiLT5xdW90ZU5hbWUoJGNvbHVtbikgLiAnID0gJyAuICRkYi0+cXVvdGUoJHZhbHVlKSk7DQoNCgkJCQkvLyByZW1vdmUgdGhpcyBpdGVtIGZyb20gdGhlIGxpc3QNCgkJCQlpZiAoJGlkID4gMCkNCgkJCQl7DQoJCQkJCSRxdWVyeS0+d2hlcmUoJGRiLT5xdW90ZU5hbWUoJ2lkJykgLiAnIDw+ICcgLiAoaW50KSAkaWQpOw0KCQkJCX0NCg0KCQkJCS8vIFNldCBhbmQgcXVlcnkgdGhlIGRhdGFiYXNlLg0KCQkJCSRkYi0+c2V0UXVlcnkoJHF1ZXJ5KTsNCgkJCQkkZHVwbGljYXRlID0gKGJvb2wpICRkYi0+bG9hZFJlc3VsdCgpOw0KDQoJCQkJaWYgKCRkdXBsaWNhdGUpDQoJCQkJew0KCQkJCQlyZXR1cm4gZmFsc2U7DQoJCQkJfQ0KCQkJfQ0KCQl9DQoNCgkJcmV0dXJuIHRydWU7DQoJfQ==', 'unique field value', 1, '2018-07-21 06:06:42', ''),
(4, 'memberloginname', 'CS8qKg0KCSAqIE1ldGhvZCB0byB0ZXN0IHRoZSB1c2VybmFtZSBmb3IgdW5pcXVlbmVzcy4NCgkgKg0KCSAqIEBwYXJhbSAgIFxTaW1wbGVYTUxFbGVtZW50ICAkZWxlbWVudCAgVGhlIFNpbXBsZVhNTEVsZW1lbnQgb2JqZWN0IHJlcHJlc2VudGluZyB0aGUgYDxmaWVsZD5gIHRhZyBmb3IgdGhlIGZvcm0gZmllbGQgb2JqZWN0Lg0KCSAqIEBwYXJhbSAgIG1peGVkICAgICAgICAgICAgICAkdmFsdWUgICAgVGhlIGZvcm0gZmllbGQgdmFsdWUgdG8gdmFsaWRhdGUuDQoJICogQHBhcmFtICAgc3RyaW5nICAgICAgICAgICAgICRncm91cCAgICBUaGUgZmllbGQgbmFtZSBncm91cCBjb250cm9sIHZhbHVlLiBUaGlzIGFjdHMgYXMgYW4gYXJyYXkgY29udGFpbmVyIGZvciB0aGUgZmllbGQuDQoJICogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICBGb3IgZXhhbXBsZSBpZiB0aGUgZmllbGQgaGFzIG5hbWU9ImZvbyIgYW5kIHRoZSBncm91cCB2YWx1ZSBpcyBzZXQgdG8gImJhciIgdGhlbiB0aGUNCgkgKiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIGZ1bGwgZmllbGQgbmFtZSB3b3VsZCBlbmQgdXAgYmVpbmcgImJhcltmb29dIi4NCgkgKiBAcGFyYW0gICBSZWdpc3RyeSAgICAgICAgICAgJGlucHV0ICAgIEFuIG9wdGlvbmFsIFJlZ2lzdHJ5IG9iamVjdCB3aXRoIHRoZSBlbnRpcmUgZGF0YSBzZXQgdG8gdmFsaWRhdGUgYWdhaW5zdCB0aGUgZW50aXJlIGZvcm0uDQoJICogQHBhcmFtICAgRm9ybSAgICAgICAgICAgICAgICRmb3JtICAgICBUaGUgZm9ybSBvYmplY3QgZm9yIHdoaWNoIHRoZSBmaWVsZCBpcyBiZWluZyB0ZXN0ZWQuDQoJICoNCgkgKiBAcmV0dXJuICBib29sZWFuICBUcnVlIGlmIHRoZSB2YWx1ZSBpcyB2YWxpZCwgZmFsc2Ugb3RoZXJ3aXNlLg0KCSAqDQoJICogQHNpbmNlICAgMTEuMQ0KCSAqLw0KCXB1YmxpYyBmdW5jdGlvbiB0ZXN0KFxTaW1wbGVYTUxFbGVtZW50ICRlbGVtZW50LCAkdmFsdWUsICRncm91cCA9IG51bGwsIFJlZ2lzdHJ5ICRpbnB1dCA9IG51bGwsIEZvcm0gJGZvcm0gPSBudWxsKQ0KCXsNCgkJLy8gR2V0IHRoZSBkYXRhYmFzZSBvYmplY3QgYW5kIGEgbmV3IHF1ZXJ5IG9iamVjdC4NCgkJJGRiID0gXEZhY3Rvcnk6OmdldERibygpOw0KCQkkcXVlcnkgPSAkZGItPmdldFF1ZXJ5KHRydWUpOw0KDQoJCS8vIEJ1aWxkIHRoZSBxdWVyeS4NCgkJJHF1ZXJ5LT5zZWxlY3QoJ0NPVU5UKCopJykNCgkJCS0+ZnJvbSgnI19fdXNlcnMnKQ0KCQkJLT53aGVyZSgndXNlcm5hbWUgPSAnIC4gJGRiLT5xdW90ZSgkdmFsdWUpKTsNCg0KCQkvLyBHZXQgdGhlIHVzZXIgSUQgaWYgc2V0Lg0KCQkkdXNlcklkID0gKCRmb3JtIGluc3RhbmNlb2YgRm9ybSAmJiAoJHVzZXJJZCA9ICRmb3JtLT5nZXRWYWx1ZSgndXNlcicpKSkgPyAkdXNlcklkIDogKCgkaW5wdXQgaW5zdGFuY2VvZiBSZWdpc3RyeSAmJiAoJHVzZXJJZCA9ICRpbnB1dC0+Z2V0KCd1c2VyJykpKSA/ICR1c2VySWQgOiAwKTsNCgkJLy8gaWYgc3RpbGwgbm90IHVzZXIgaXMgZm91bmQgZ2V0IG1lbWJlciBpZA0KCQlpZiAoJHVzZXJJZCA9PSAwKQ0KCQl7DQoJCQkkbWVtYmVySWQgPSAoJGZvcm0gaW5zdGFuY2VvZiBGb3JtICYmICgkbWVtYmVySWQgPSAkZm9ybS0+Z2V0VmFsdWUoJ2lkJykpKSA/ICRtZW1iZXJJZCA6ICgoJGlucHV0IGluc3RhbmNlb2YgUmVnaXN0cnkgJiYgKCRtZW1iZXJJZCA9ICRpbnB1dC0+Z2V0KCdpZCcpKSkgPyAkbWVtYmVySWQgOiAwKTsNCgkJfQ0KCQkvLyBnZXQgYWNjb3VudCB0eXBlIGlmIG5lZWRlZA0KCQlpZiAoJHVzZXJJZCA9PSAwICYmICRtZW1iZXJJZCA+IDApDQoJCXsNCgkJCSRhY2NvdW50SWQgPSAoJGZvcm0gaW5zdGFuY2VvZiBGb3JtICYmICgkYWNjb3VudElkID0gJGZvcm0tPmdldFZhbHVlKCdhY2NvdW50JykpKSA/ICRhY2NvdW50SWQgOiAoKCRpbnB1dCBpbnN0YW5jZW9mIFJlZ2lzdHJ5ICYmICgkYWNjb3VudElkID0gJGlucHV0LT5nZXQoJ2FjY291bnQnKSkpID8gJGFjY291bnRJZCA6IDApOw0KCQkJLy8gbWFrZSBzdXJlIHRoZXNlIGFjY291bnQgaXMgc2V0DQoJCQlpZiAoJGFjY291bnRJZCA9PSAwKQ0KCQkJew0KCQkJCSRhY2NvdW50SWQgPSBTdXBlcl9fX2RiODdjMzM5XzViYjZfNDI5MV9hN2VmXzJjNDhlYTFiMDZiY19fX1Bvd2VyOjp2YXIoJ21lbWJlcicsICRtZW1iZXJJZCwgJ2lkJywgJ2FjY291bnQnKTsNCgkJCX0NCgkJfQ0KCQkvLyBnZXQgdXNlciB2YWx1ZSBpZiBub3Qgc2V0IChkdWUgdG8gcGVybWlzc2lvbnMpDQoJCWlmICgkdXNlcklkID09IDAgJiYgJG1lbWJlcklkID4gMCAmJiAkYWNjb3VudElkID4gMCAmJiAoMSA9PSAkYWNjb3VudElkIHx8IDQgPT0gJGFjY291bnRJZCkpDQoJCXsNCgkJCSR1c2VySWQgPSBTdXBlcl9fX2RiODdjMzM5XzViYjZfNDI5MV9hN2VmXzJjNDhlYTFiMDZiY19fX1Bvd2VyOjp2YXIoJ21lbWJlcicsICRtZW1iZXJJZCwgJ2lkJywgJ3VzZXInKTsNCgkJfQ0KCQkkcXVlcnktPndoZXJlKCRkYi0+cXVvdGVOYW1lKCdpZCcpIC4gJyA8PiAnIC4gKGludCkgJHVzZXJJZCk7DQoNCgkJLy8gU2V0IGFuZCBxdWVyeSB0aGUgZGF0YWJhc2UuDQoJCSRkYi0+c2V0UXVlcnkoJHF1ZXJ5KTsNCgkJJGR1cGxpY2F0ZSA9IChib29sKSAkZGItPmxvYWRSZXN1bHQoKTsNCg0KCQlpZiAoJGR1cGxpY2F0ZSkNCgkJew0KCQkJcmV0dXJuIGZhbHNlOw0KCQl9DQoNCgkJcmV0dXJuIHRydWU7DQoJfQ==', 'Validate the member username', 1, '2018-09-16 00:42:59', ''),
(5, 'memberuseremail', 'CS8qKg0KCSAqIFRoZSByZWd1bGFyIGV4cHJlc3Npb24gdG8gdXNlIGluIHRlc3RpbmcgYSBmb3JtIGZpZWxkIHZhbHVlLg0KCSAqDQoJICogQHZhciAgICBzdHJpbmcNCgkgKiBAc2luY2UgIDExLjENCgkgKiBAbGluayAgIGh0dHA6Ly93d3cudzMub3JnL1RSL2h0bWwtbWFya3VwL2lucHV0LmVtYWlsLmh0bWwNCgkgKi8NCglwcm90ZWN0ZWQgJHJlZ2V4ID0gIl5bYS16QS1aMC05LiEjJCUmJyorLz0/Xl9ge3x9fi1dK0BbYS16QS1aMC05LV0rKD86XC5bYS16QS1aMC05LV0rKSokIjsNCg0KCS8qKg0KCSAqIE1ldGhvZCB0byB0ZXN0IHRoZSBlbWFpbCBhZGRyZXNzIGFuZCBvcHRpb25hbGx5IGNoZWNrIGZvciB1bmlxdWVuZXNzLg0KCSAqDQoJICogQHBhcmFtICAgXFNpbXBsZVhNTEVsZW1lbnQgICRlbGVtZW50ICBUaGUgU2ltcGxlWE1MRWxlbWVudCBvYmplY3QgcmVwcmVzZW50aW5nIHRoZSBgPGZpZWxkPmAgdGFnIGZvciB0aGUgZm9ybSBmaWVsZCBvYmplY3QuDQoJICogQHBhcmFtICAgbWl4ZWQgICAgICAgICAgICAgICR2YWx1ZSAgICBUaGUgZm9ybSBmaWVsZCB2YWx1ZSB0byB2YWxpZGF0ZS4NCgkgKiBAcGFyYW0gICBzdHJpbmcgICAgICAgICAgICAgJGdyb3VwICAgIFRoZSBmaWVsZCBuYW1lIGdyb3VwIGNvbnRyb2wgdmFsdWUuIFRoaXMgYWN0cyBhcyBhbiBhcnJheSBjb250YWluZXIgZm9yIHRoZSBmaWVsZC4NCgkgKiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIEZvciBleGFtcGxlIGlmIHRoZSBmaWVsZCBoYXMgbmFtZT0iZm9vIiBhbmQgdGhlIGdyb3VwIHZhbHVlIGlzIHNldCB0byAiYmFyIiB0aGVuIHRoZQ0KCSAqICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgZnVsbCBmaWVsZCBuYW1lIHdvdWxkIGVuZCB1cCBiZWluZyAiYmFyW2Zvb10iLg0KCSAqIEBwYXJhbSAgIFJlZ2lzdHJ5ICAgICAgICAgICAkaW5wdXQgICAgQW4gb3B0aW9uYWwgUmVnaXN0cnkgb2JqZWN0IHdpdGggdGhlIGVudGlyZSBkYXRhIHNldCB0byB2YWxpZGF0ZSBhZ2FpbnN0IHRoZSBlbnRpcmUgZm9ybS4NCgkgKiBAcGFyYW0gICBGb3JtICAgICAgICAgICAgICAgJGZvcm0gICAgIFRoZSBmb3JtIG9iamVjdCBmb3Igd2hpY2ggdGhlIGZpZWxkIGlzIGJlaW5nIHRlc3RlZC4NCgkgKg0KCSAqIEByZXR1cm4gIGJvb2xlYW4gIFRydWUgaWYgdGhlIHZhbHVlIGlzIHZhbGlkLCBmYWxzZSBvdGhlcndpc2UuDQoJICoNCgkgKiBAc2luY2UgICAxMS4xDQoJICovDQoJcHVibGljIGZ1bmN0aW9uIHRlc3QoXFNpbXBsZVhNTEVsZW1lbnQgJGVsZW1lbnQsICR2YWx1ZSwgJGdyb3VwID0gbnVsbCwgUmVnaXN0cnkgJGlucHV0ID0gbnVsbCwgRm9ybSAkZm9ybSA9IG51bGwpDQoJew0KCQkvLyBJZiB0aGUgZmllbGQgaXMgZW1wdHkgYW5kIG5vdCByZXF1aXJlZCwgdGhlIGZpZWxkIGlzIHZhbGlkLg0KCQkkcmVxdWlyZWQgPSAoKHN0cmluZykgJGVsZW1lbnRbJ3JlcXVpcmVkJ10gPT0gJ3RydWUnIHx8IChzdHJpbmcpICRlbGVtZW50WydyZXF1aXJlZCddID09ICdyZXF1aXJlZCcpOw0KDQoJCWlmICghJHJlcXVpcmVkICYmIGVtcHR5KCR2YWx1ZSkpDQoJCXsNCgkJCXJldHVybiB0cnVlOw0KCQl9DQoNCgkJLy8gSWYgdGhlIHRsZCBhdHRyaWJ1dGUgaXMgcHJlc2VudCwgY2hhbmdlIHRoZSByZWd1bGFyIGV4cHJlc3Npb24gdG8gcmVxdWlyZSBhdCBsZWFzdCAyIGNoYXJhY3RlcnMgZm9yIGl0Lg0KCQkkdGxkID0gKChzdHJpbmcpICRlbGVtZW50Wyd0bGQnXSA9PSAndGxkJyB8fCAoc3RyaW5nKSAkZWxlbWVudFsndGxkJ10gPT0gJ3JlcXVpcmVkJyk7DQoNCgkJaWYgKCR0bGQpDQoJCXsNCgkJCSR0aGlzLT5yZWdleCA9ICJeW2EtekEtWjAtOS4hIyQlJicqKy89P15fYHt8fX4tXStAW2EtekEtWjAtOV0oPzpbYS16QS1aMC05LV17MCw2MX1bYS16QS1aMC05XSkiDQoJCQkJLiAnPyg/OlwuW2EtekEtWjAtOV0oPzpbYS16QS1aMC05LV17MCw2MX1bYS16QS1aMC05XSk/KSskJzsNCgkJfQ0KDQoJCS8vIERldGVybWluZSBpZiB0aGUgbXVsdGlwbGUgYXR0cmlidXRlIGlzIHByZXNlbnQNCgkJJG11bHRpcGxlID0gKChzdHJpbmcpICRlbGVtZW50WydtdWx0aXBsZSddID09ICd0cnVlJyB8fCAoc3RyaW5nKSAkZWxlbWVudFsnbXVsdGlwbGUnXSA9PSAnbXVsdGlwbGUnKTsNCg0KCQlpZiAoISRtdWx0aXBsZSkNCgkJew0KCQkJLy8gSGFuZGxlIGlkbiBlbWFpbCBhZGRyZXNzZXMgYnkgY29udmVydGluZyB0byBwdW55Y29kZS4NCgkJCSR2YWx1ZSA9IFxKU3RyaW5nUHVueWNvZGU6OmVtYWlsVG9QdW55Y29kZSgkdmFsdWUpOw0KDQoJCQkvLyBUZXN0IHRoZSB2YWx1ZSBhZ2FpbnN0IHRoZSByZWd1bGFyIGV4cHJlc3Npb24uDQoJCQlpZiAoIXBhcmVudDo6dGVzdCgkZWxlbWVudCwgJHZhbHVlLCAkZ3JvdXAsICRpbnB1dCwgJGZvcm0pKQ0KCQkJew0KCQkJCXJldHVybiBmYWxzZTsNCgkJCX0NCgkJfQ0KCQllbHNlDQoJCXsNCgkJCSR2YWx1ZXMgPSBleHBsb2RlKCcsJywgJHZhbHVlKTsNCg0KCQkJZm9yZWFjaCAoJHZhbHVlcyBhcyAkdmFsdWUpDQoJCQl7DQoJCQkJLy8gSGFuZGxlIGlkbiBlbWFpbCBhZGRyZXNzZXMgYnkgY29udmVydGluZyB0byBwdW55Y29kZS4NCgkJCQkkdmFsdWUgPSBcSlN0cmluZ1B1bnljb2RlOjplbWFpbFRvUHVueWNvZGUoJHZhbHVlKTsNCg0KCQkJCS8vIFRlc3QgdGhlIHZhbHVlIGFnYWluc3QgdGhlIHJlZ3VsYXIgZXhwcmVzc2lvbi4NCgkJCQlpZiAoIXBhcmVudDo6dGVzdCgkZWxlbWVudCwgJHZhbHVlLCAkZ3JvdXAsICRpbnB1dCwgJGZvcm0pKQ0KCQkJCXsNCgkJCQkJcmV0dXJuIGZhbHNlOw0KCQkJCX0NCgkJCX0NCgkJfQ0KDQoJCS8vIENoZWNrIGlmIHdlIHNob3VsZCB0ZXN0IGZvciB1bmlxdWVuZXNzLiBUaGlzIG9ubHkgY2FuIGJlIHVzZWQgaWYgbXVsdGlwbGUgaXMgbm90IHRydWUNCgkJJHVuaXF1ZSA9ICgoc3RyaW5nKSAkZWxlbWVudFsndW5pcXVlJ10gPT0gJ3RydWUnIHx8IChzdHJpbmcpICRlbGVtZW50Wyd1bmlxdWUnXSA9PSAndW5pcXVlJyk7DQoNCgkJaWYgKCR1bmlxdWUgJiYgISRtdWx0aXBsZSkNCgkJew0KCQkJLy8gR2V0IHRoZSBkYXRhYmFzZSBvYmplY3QgYW5kIGEgbmV3IHF1ZXJ5IG9iamVjdC4NCgkJCSRkYiA9IFxGYWN0b3J5OjpnZXREYm8oKTsNCgkJCSRxdWVyeSA9ICRkYi0+Z2V0UXVlcnkodHJ1ZSk7DQoNCgkJCS8vIEJ1aWxkIHRoZSBxdWVyeS4NCgkJCSRxdWVyeS0+c2VsZWN0KCdDT1VOVCgqKScpDQoJCQkJLT5mcm9tKCcjX191c2VycycpDQoJCQkJLT53aGVyZSgnZW1haWwgPSAnIC4gJGRiLT5xdW90ZSgkdmFsdWUpKTsNCg0KCQkJLy8gR2V0IHRoZSB1c2VyIElEIGlmIHNldC4NCgkJCSR1c2VySWQgPSAoJGZvcm0gaW5zdGFuY2VvZiBGb3JtICYmICgkdXNlcklkID0gJGZvcm0tPmdldFZhbHVlKCd1c2VyJykpKSA/ICR1c2VySWQgOiAoKCRpbnB1dCBpbnN0YW5jZW9mIFJlZ2lzdHJ5ICYmICgkdXNlcklkID0gJGlucHV0LT5nZXQoJ3VzZXInKSkpID8gJHVzZXJJZCA6IDApOw0KCQkJLy8gaWYgc3RpbGwgbm90IHVzZXIgaXMgZm91bmQgZ2V0IG1lbWJlciBpZA0KCQkJaWYgKCR1c2VySWQgPT0gMCkNCgkJCXsNCgkJCQkkbWVtYmVySWQgPSAoJGZvcm0gaW5zdGFuY2VvZiBGb3JtICYmICgkbWVtYmVySWQgPSAkZm9ybS0+Z2V0VmFsdWUoJ2lkJykpKSA/ICRtZW1iZXJJZCA6ICgoJGlucHV0IGluc3RhbmNlb2YgUmVnaXN0cnkgJiYgKCRtZW1iZXJJZCA9ICRpbnB1dC0+Z2V0KCdpZCcpKSkgPyAkbWVtYmVySWQgOiAwKTsNCgkJCX0NCgkJCS8vIGdldCBhY2NvdW50IHR5cGUgaWYgbmVlZGVkDQoJCQlpZiAoJHVzZXJJZCA9PSAwICYmICRtZW1iZXJJZCA+IDApDQoJCQl7DQoJCQkJJGFjY291bnRJZCA9ICgkZm9ybSBpbnN0YW5jZW9mIEZvcm0gJiYgKCRhY2NvdW50SWQgPSAkZm9ybS0+Z2V0VmFsdWUoJ2FjY291bnQnKSkpID8gJGFjY291bnRJZCA6ICgoJGlucHV0IGluc3RhbmNlb2YgUmVnaXN0cnkgJiYgKCRhY2NvdW50SWQgPSAkaW5wdXQtPmdldCgnYWNjb3VudCcpKSkgPyAkYWNjb3VudElkIDogMCk7DQoJCQkJLy8gbWFrZSBzdXJlIHRoZXNlIGFjY291bnQgaXMgc2V0DQoJCQkJaWYgKCRhY2NvdW50SWQgPT0gMCkNCgkJCQl7DQoJCQkJCSRhY2NvdW50SWQgPSBTdXBlcl9fX2RiODdjMzM5XzViYjZfNDI5MV9hN2VmXzJjNDhlYTFiMDZiY19fX1Bvd2VyOjp2YXIoJ21lbWJlcicsICRtZW1iZXJJZCwgJ2lkJywgJ2FjY291bnQnKTsNCgkJCQl9DQoJCQl9DQoJCQkvLyBnZXQgdXNlciB2YWx1ZSBpZiBub3Qgc2V0IChkdWUgdG8gcGVybWlzc2lvbnMpDQoJCQlpZiAoJHVzZXJJZCA9PSAwICYmICRtZW1iZXJJZCA+IDAgJiYgJGFjY291bnRJZCA+IDAgJiYgKDEgPT0gJGFjY291bnRJZCB8fCA0ID09ICRhY2NvdW50SWQpKQ0KCQkJew0KCQkJCSR1c2VySWQgPSBTdXBlcl9fX2RiODdjMzM5XzViYjZfNDI5MV9hN2VmXzJjNDhlYTFiMDZiY19fX1Bvd2VyOjp2YXIoJ21lbWJlcicsICRtZW1iZXJJZCwgJ2lkJywgJ3VzZXInKTsNCgkJCX0NCgkJCSRxdWVyeS0+d2hlcmUoJGRiLT5xdW90ZU5hbWUoJ2lkJykgLiAnIDw+ICcgLiAoaW50KSAkdXNlcklkKTsNCg0KCQkJLy8gU2V0IGFuZCBxdWVyeSB0aGUgZGF0YWJhc2UuDQoJCQkkZGItPnNldFF1ZXJ5KCRxdWVyeSk7DQoJCQkkZHVwbGljYXRlID0gKGJvb2wpICRkYi0+bG9hZFJlc3VsdCgpOw0KDQoJCQlpZiAoJGR1cGxpY2F0ZSkNCgkJCXsNCgkJCQlyZXR1cm4gZmFsc2U7DQoJCQl9DQoJCX0NCg0KCQlyZXR1cm4gdHJ1ZTsNCgl9', 'Validate the member useremail', 1, '2018-09-16 00:43:44', ''),
(6, 'iban', 'CS8qKg0KCSogTWV0aG9kIHRvIGNoZWNrIGlmIElCQU4gaXMgdmFsaWQuDQoJKg0KCSogQHBhcmFtICAgXFNpbXBsZVhNTEVsZW1lbnQgICRlbGVtZW50ICBUaGUgU2ltcGxlWE1MRWxlbWVudCBvYmplY3QgcmVwcmVzZW50aW5nIHRoZSBgPGZpZWxkPmAgdGFnIGZvciB0aGUgZm9ybSBmaWVsZCBvYmplY3QuDQoJKiBAcGFyYW0gICBtaXhlZCAgICAgICAgICAgICAgJHZhbHVlICAgIFRoZSBmb3JtIGZpZWxkIHZhbHVlIHRvIHZhbGlkYXRlLg0KCSogQHBhcmFtICAgc3RyaW5nICAgICAgICAgICAgICRncm91cCAgICBUaGUgZmllbGQgbmFtZSBncm91cCBjb250cm9sIHZhbHVlLiBUaGlzIGFjdHMgYXMgYW4gYXJyYXkgY29udGFpbmVyIGZvciB0aGUgZmllbGQuDQoJKiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIEZvciBleGFtcGxlIGlmIHRoZSBmaWVsZCBoYXMgbmFtZT0iZm9vIiBhbmQgdGhlIGdyb3VwIHZhbHVlIGlzIHNldCB0byAiYmFyIiB0aGVuIHRoZQ0KCSogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICBmdWxsIGZpZWxkIG5hbWUgd291bGQgZW5kIHVwIGJlaW5nICJiYXJbZm9vXSIuDQoJKiBAcGFyYW0gICBSZWdpc3RyeSAgICAgICAgICAgJGlucHV0ICAgIEFuIG9wdGlvbmFsIFJlZ2lzdHJ5IG9iamVjdCB3aXRoIHRoZSBlbnRpcmUgZGF0YSBzZXQgdG8gdmFsaWRhdGUgYWdhaW5zdCB0aGUgZW50aXJlIGZvcm0uDQoJKiBAcGFyYW0gICBGb3JtICAgICAgICAgICAgICAgJGZvcm0gICAgIFRoZSBmb3JtIG9iamVjdCBmb3Igd2hpY2ggdGhlIGZpZWxkIGlzIGJlaW5nIHRlc3RlZC4NCgkqDQoJKiBAcmV0dXJuICBib29sZWFuICBUcnVlIGlmIHRoZSB2YWx1ZSBpcyB2YWxpZCwgZmFsc2Ugb3RoZXJ3aXNlLg0KCSoNCgkqIEBzaW5jZSAgIDMuOS4wDQoJKi8NCglwdWJsaWMgZnVuY3Rpb24gdGVzdChcU2ltcGxlWE1MRWxlbWVudCAkZWxlbWVudCwgJHZhbHVlLCAkZ3JvdXAgPSBudWxsLCBSZWdpc3RyeSAkaW5wdXQgPSBudWxsLCBGb3JtICRmb3JtID0gbnVsbCkNCgl7DQoJCSRjb3VudHJ5Q29kZU9mZnNldCA9IDA7IC8vIENPVU5UUllfQ09ERV9PRkZTRVQNCgkJJGNvdW50cnlDb2RlTGVuZ3RoID0gMjsgLy9DT1VOVFJZX0NPREVfTEVOR1RIDQoJCSRjaGVja3N1bU9mZnNldCA9IDI7IC8vQ0hFQ0tTVU1fT0ZGU0VUDQoJCSRjaGVja3N1bUxlbmd0aCA9IDI7IC8vQ0hFQ0tTVU1fTEVOR1RIDQoJCSRpbnN0aXR1dGVJZGVudGlmaWNhdGlvbk9mZnNldCA9IDQ7IC8vSU5TVElUVVRFX0lERU5USUZJQ0FUSU9OX09GRlNFVA0KDQoJCS8qKg0KCQkqIEB2YXIgYXJyYXkgQ291bnRyeSBjb2RlIHRvIHNpemUsIHJlZ2V4IGZvcm1hdCBmb3IgZWFjaCBjb3VudHJ5IHRoYXQgc3VwcG9ydHMgSUJBTg0KCQkqLw0KCQkkaWJhbkZvcm1hdE1hcCA9IGFycmF5KA0KCQkJJ0FBJyA9PiBhcnJheSgxMiwgJ15bQS1aMC05XXsxMn0kJyksDQoJCQknQUQnID0+IGFycmF5KDIwLCAnXlswLTldezR9WzAtOV17NH1bQS1aMC05XXsxMn0kJyksDQoJCQknQUUnID0+IGFycmF5KDE5LCAnXlswLTldezN9WzAtOV17MTZ9JCcpLA0KCQkJJ0FMJyA9PiBhcnJheSgyNCwgJ15bMC05XXs4fVtBLVowLTldezE2fSQnKSwNCgkJCSdBTycgPT4gYXJyYXkoMjEsICdeWzAtOV17MjF9JCcpLA0KCQkJJ0FUJyA9PiBhcnJheSgxNiwgJ15bMC05XXs1fVswLTldezExfSQnKSwNCgkJCSdBWCcgPT4gYXJyYXkoMTQsICdeWzAtOV17Nn1bMC05XXs3fVswLTldezF9JCcpLA0KCQkJJ0FaJyA9PiBhcnJheSgyNCwgJ15bQS1aXXs0fVtBLVowLTldezIwfSQnKSwNCgkJCSdCQScgPT4gYXJyYXkoMTYsICdeWzAtOV17M31bMC05XXszfVswLTldezh9WzAtOV17Mn0kJyksDQoJCQknQkUnID0+IGFycmF5KDEyLCAnXlswLTldezN9WzAtOV17N31bMC05XXsyfSQnKSwNCgkJCSdCRicgPT4gYXJyYXkoMjMsICdeWzAtOV17MjN9JCcpLA0KCQkJJ0JHJyA9PiBhcnJheSgxOCwgJ15bQS1aXXs0fVswLTldezR9WzAtOV17Mn1bQS1aMC05XXs4fSQnKSwNCgkJCSdCSCcgPT4gYXJyYXkoMTgsICdeW0EtWl17NH1bQS1aMC05XXsxNH0kJyksDQoJCQknQkknID0+IGFycmF5KDEyLCAnXlswLTldezEyfSQnKSwNCgkJCSdCSicgPT4gYXJyYXkoMjQsICdeW0EtWl17MX1bMC05XXsyM30kJyksDQoJCQknQkwnID0+IGFycmF5KDIzLCAnXlswLTldezV9WzAtOV17NX1bQS1aMC05XXsxMX1bMC05XXsyfSQnKSwNCgkJCSdCUicgPT4gYXJyYXkoMjUsICdeWzAtOV17OH1bMC05XXs1fVswLTldezEwfVtBLVpdezF9W0EtWjAtOV17MX0kJyksDQoJCQknQ0gnID0+IGFycmF5KDE3LCAnXlswLTldezV9W0EtWjAtOV17MTJ9JCcpLA0KCQkJJ0NJJyA9PiBhcnJheSgyNCwgJ15bQS1aXXsxfVswLTldezIzfSQnKSwNCgkJCSdDTScgPT4gYXJyYXkoMjMsICdeWzAtOV17MjN9JCcpLA0KCQkJJ0NSJyA9PiBhcnJheSgxNywgJ15bMC05XXs0fVswLTldezEzfSQnKSwNCgkJCSdDVicgPT4gYXJyYXkoMjEsICdeWzAtOV17MjF9JCcpLA0KCQkJJ0NZJyA9PiBhcnJheSgyNCwgJ15bMC05XXszfVswLTldezV9W0EtWjAtOV17MTZ9JCcpLA0KCQkJJ0NaJyA9PiBhcnJheSgyMCwgJ15bMC05XXs0fVswLTldezZ9WzAtOV17MTB9JCcpLA0KCQkJJ0RFJyA9PiBhcnJheSgxOCwgJ15bMC05XXs4fVswLTldezEwfSQnKSwNCgkJCSdESycgPT4gYXJyYXkoMTQsICdeWzAtOV17NH1bMC05XXs5fVswLTldezF9JCcpLA0KCQkJJ0RPJyA9PiBhcnJheSgyNCwgJ15bQS1aMC05XXs0fVswLTldezIwfSQnKSwNCgkJCSdEWicgPT4gYXJyYXkoMjAsICdeWzAtOV17MjB9JCcpLA0KCQkJJ0VFJyA9PiBhcnJheSgxNiwgJ15bMC05XXsyfVswLTldezJ9WzAtOV17MTF9WzAtOV17MX0kJyksDQoJCQknRVMnID0+IGFycmF5KDIwLCAnXlswLTldezR9WzAtOV17NH1bMC05XXsxfVswLTldezF9WzAtOV17MTB9JCcpLA0KCQkJJ0ZJJyA9PiBhcnJheSgxNCwgJ15bMC05XXs2fVswLTldezd9WzAtOV17MX0kJyksDQoJCQknRk8nID0+IGFycmF5KDE0LCAnXlswLTldezR9WzAtOV17OX1bMC05XXsxfSQnKSwNCgkJCSdGUicgPT4gYXJyYXkoMjMsICdeWzAtOV17NX1bMC05XXs1fVtBLVowLTldezExfVswLTldezJ9JCcpLA0KCQkJJ0dCJyA9PiBhcnJheSgxOCwgJ15bQS1aXXs0fVswLTldezZ9WzAtOV17OH0kJyksDQoJCQknR0UnID0+IGFycmF5KDE4LCAnXltBLVpdezJ9WzAtOV17MTZ9JCcpLA0KCQkJJ0dGJyA9PiBhcnJheSgyMywgJ15bMC05XXs1fVswLTldezV9W0EtWjAtOV17MTF9WzAtOV17Mn0kJyksDQoJCQknR0knID0+IGFycmF5KDE5LCAnXltBLVpdezR9W0EtWjAtOV17MTV9JCcpLA0KCQkJJ0dMJyA9PiBhcnJheSgxNCwgJ15bMC05XXs0fVswLTldezl9WzAtOV17MX0kJyksDQoJCQknR1AnID0+IGFycmF5KDIzLCAnXlswLTldezV9WzAtOV17NX1bQS1aMC05XXsxMX1bMC05XXsyfSQnKSwNCgkJCSdHUicgPT4gYXJyYXkoMjMsICdeWzAtOV17M31bMC05XXs0fVtBLVowLTldezE2fSQnKSwNCgkJCSdHVCcgPT4gYXJyYXkoMjQsICdeW0EtWjAtOV17NH1bQS1aMC05XXsyMH0kJyksDQoJCQknSFInID0+IGFycmF5KDE3LCAnXlswLTldezd9WzAtOV17MTB9JCcpLA0KCQkJJ0hVJyA9PiBhcnJheSgyNCwgJ15bMC05XXszfVswLTldezR9WzAtOV17MX1bMC05XXsxNX1bMC05XXsxfSQnKSwNCgkJCSdJRScgPT4gYXJyYXkoMTgsICdeW0EtWl17NH1bMC05XXs2fVswLTldezh9JCcpLA0KCQkJJ0lMJyA9PiBhcnJheSgxOSwgJ15bMC05XXszfVswLTldezN9WzAtOV17MTN9JCcpLA0KCQkJJ0lSJyA9PiBhcnJheSgyMiwgJ15bMC05XXsyMn0kJyksDQoJCQknSVMnID0+IGFycmF5KDIyLCAnXlswLTldezR9WzAtOV17Mn1bMC05XXs2fVswLTldezEwfSQnKSwNCgkJCSdJVCcgPT4gYXJyYXkoMjMsICdeW0EtWl17MX1bMC05XXs1fVswLTldezV9W0EtWjAtOV17MTJ9JCcpLA0KCQkJJ0pPJyA9PiBhcnJheSgyNiwgJ15bQS1aXXs0fVswLTldezR9W0EtWjAtOV17MTh9JCcpLA0KCQkJJ0tXJyA9PiBhcnJheSgyNiwgJ15bQS1aXXs0fVtBLVowLTldezIyfSQnKSwNCgkJCSdLWicgPT4gYXJyYXkoMTYsICdeWzAtOV17M31bQS1aMC05XXsxM30kJyksDQoJCQknTEInID0+IGFycmF5KDI0LCAnXlswLTldezR9W0EtWjAtOV17MjB9JCcpLA0KCQkJJ0xDJyA9PiBhcnJheSgyOCwgJ15bQS1aXXs0fVtBLVowLTldezI0fSQnKSwNCgkJCSdMSScgPT4gYXJyYXkoMTcsICdeWzAtOV17NX1bQS1aMC05XXsxMn0kJyksDQoJCQknTFQnID0+IGFycmF5KDE2LCAnXlswLTldezV9WzAtOV17MTF9JCcpLA0KCQkJJ0xVJyA9PiBhcnJheSgxNiwgJ15bMC05XXszfVtBLVowLTldezEzfSQnKSwNCgkJCSdMVicgPT4gYXJyYXkoMTcsICdeW0EtWl17NH1bQS1aMC05XXsxM30kJyksDQoJCQknTUMnID0+IGFycmF5KDIzLCAnXlswLTldezV9WzAtOV17NX1bQS1aMC05XXsxMX1bMC05XXsyfSQnKSwNCgkJCSdNRCcgPT4gYXJyYXkoMjAsICdeW0EtWjAtOV17Mn1bQS1aMC05XXsxOH0kJyksDQoJCQknTUUnID0+IGFycmF5KDE4LCAnXlswLTldezN9WzAtOV17MTN9WzAtOV17Mn0kJyksDQoJCQknTUYnID0+IGFycmF5KDIzLCAnXlswLTldezV9WzAtOV17NX1bQS1aMC05XXsxMX1bMC05XXsyfSQnKSwNCgkJCSdNRycgPT4gYXJyYXkoMjMsICdeWzAtOV17MjN9JCcpLA0KCQkJJ01LJyA9PiBhcnJheSgxNSwgJ15bMC05XXszfVtBLVowLTldezEwfVswLTldezJ9JCcpLA0KCQkJJ01MJyA9PiBhcnJheSgyNCwgJ15bQS1aXXsxfVswLTldezIzfSQnKSwNCgkJCSdNUScgPT4gYXJyYXkoMjMsICdeWzAtOV17NX1bMC05XXs1fVtBLVowLTldezExfVswLTldezJ9JCcpLA0KCQkJJ01SJyA9PiBhcnJheSgyMywgJ15bMC05XXs1fVswLTldezV9WzAtOV17MTF9WzAtOV17Mn0kJyksDQoJCQknTVQnID0+IGFycmF5KDI3LCAnXltBLVpdezR9WzAtOV17NX1bQS1aMC05XXsxOH0kJyksDQoJCQknTVUnID0+IGFycmF5KDI2LCAnXltBLVpdezR9WzAtOV17Mn1bMC05XXsyfVswLTldezEyfVswLTldezN9W0EtWl17M30kJyksDQoJCQknTVonID0+IGFycmF5KDIxLCAnXlswLTldezIxfSQnKSwNCgkJCSdOQycgPT4gYXJyYXkoMjMsICdeWzAtOV17NX1bMC05XXs1fVtBLVowLTldezExfVswLTldezJ9JCcpLA0KCQkJJ05MJyA9PiBhcnJheSgxNCwgJ15bQS1aXXs0fVswLTldezEwfSQnKSwNCgkJCSdOTycgPT4gYXJyYXkoMTEsICdeWzAtOV17NH1bMC05XXs2fVswLTldezF9JCcpLA0KCQkJJ1BGJyA9PiBhcnJheSgyMywgJ15bMC05XXs1fVswLTldezV9W0EtWjAtOV17MTF9WzAtOV17Mn0kJyksDQoJCQknUEsnID0+IGFycmF5KDIwLCAnXltBLVpdezR9W0EtWjAtOV17MTZ9JCcpLA0KCQkJJ1BMJyA9PiBhcnJheSgyNCwgJ15bMC05XXs4fVswLTldezE2fSQnKSwNCgkJCSdQTScgPT4gYXJyYXkoMjMsICdeWzAtOV17NX1bMC05XXs1fVtBLVowLTldezExfVswLTldezJ9JCcpLA0KCQkJJ1BTJyA9PiBhcnJheSgyNSwgJ15bQS1aXXs0fVtBLVowLTldezIxfSQnKSwNCgkJCSdQVCcgPT4gYXJyYXkoMjEsICdeWzAtOV17NH1bMC05XXs0fVswLTldezExfVswLTldezJ9JCcpLA0KCQkJJ1FBJyA9PiBhcnJheSgyNSwgJ15bQS1aXXs0fVswLTldezR9W0EtWjAtOV17MTd9JCcpLA0KCQkJJ1JFJyA9PiBhcnJheSgyMywgJ15bMC05XXs1fVswLTldezV9W0EtWjAtOV17MTF9WzAtOV17Mn0kJyksDQoJCQknUk8nID0+IGFycmF5KDIwLCAnXltBLVpdezR9W0EtWjAtOV17MTZ9JCcpLA0KCQkJJ1JTJyA9PiBhcnJheSgxOCwgJ15bMC05XXszfVswLTldezEzfVswLTldezJ9JCcpLA0KCQkJJ1NBJyA9PiBhcnJheSgyMCwgJ15bMC05XXsyfVtBLVowLTldezE4fSQnKSwNCgkJCSdTQycgPT4gYXJyYXkoMjcsICdeW0EtWl17NH1bMC05XXs0fVswLTldezE2fVtBLVpdezN9JCcpLA0KCQkJJ1NFJyA9PiBhcnJheSgyMCwgJ15bMC05XXszfVswLTldezE2fVswLTldezF9JCcpLA0KCQkJJ1NJJyA9PiBhcnJheSgxNSwgJ15bMC05XXs1fVswLTldezh9WzAtOV17Mn0kJyksDQoJCQknU0snID0+IGFycmF5KDIwLCAnXlswLTldezR9WzAtOV17Nn1bMC05XXsxMH0kJyksDQoJCQknU00nID0+IGFycmF5KDIzLCAnXltBLVpdezF9WzAtOV17NX1bMC05XXs1fVtBLVowLTldezEyfSQnKSwNCgkJCSdTTicgPT4gYXJyYXkoMjQsICdeW0EtWl17MX1bMC05XXsyM30kJyksDQoJCQknU1QnID0+IGFycmF5KDIxLCAnXlswLTldezh9WzAtOV17MTF9WzAtOV17Mn0kJyksDQoJCQknVEYnID0+IGFycmF5KDIzLCAnXlswLTldezV9WzAtOV17NX1bQS1aMC05XXsxMX1bMC05XXsyfSQnKSwNCgkJCSdUTCcgPT4gYXJyYXkoMTksICdeWzAtOV17M31bMC05XXsxNH1bMC05XXsyfSQnKSwNCgkJCSdUTicgPT4gYXJyYXkoMjAsICdeWzAtOV17Mn1bMC05XXszfVswLTldezEzfVswLTldezJ9JCcpLA0KCQkJJ1RSJyA9PiBhcnJheSgyMiwgJ15bMC05XXs1fVswLTldezF9W0EtWjAtOV17MTZ9JCcpLA0KCQkJJ1VBJyA9PiBhcnJheSgyNSwgJ15bMC05XXs2fVtBLVowLTldezE5fSQnKSwNCgkJCSdWRycgPT4gYXJyYXkoMjAsICdeW0EtWl17NH1bMC05XXsxNn0kJyksDQoJCQknV0YnID0+IGFycmF5KDIzLCAnXlswLTldezV9WzAtOV17NX1bQS1aMC05XXsxMX1bMC05XXsyfSQnKSwNCgkJCSdYSycgPT4gYXJyYXkoMTYsICdeWzAtOV17NH1bMC05XXsxMH1bMC05XXsyfSQnKSwNCgkJCSdZVCcgPT4gYXJyYXkoMjMsICdeWzAtOV17NX1bMC05XXs1fVtBLVowLTldezExfVswLTldezJ9JCcpDQoJCSk7DQoNCgkJLy8gQ0xFQU4gVVAgSUJBTg0KCQkkaWJhbiA9IHByZWdfcmVwbGFjZSgnL1teYS16MC05XSsvaScsICcnLCB0cmltKHN0cnRvdXBwZXIoJHZhbHVlKSkpOw0KDQoJCS8vIENIRUNLIENvdW50cnkgQ29kZQ0KCQkkY291bnRyeUNvZGUgPSBzdWJzdHIoJGliYW4sICRjb3VudHJ5Q29kZU9mZnNldCwgJGNvdW50cnlDb2RlTGVuZ3RoKTsNCgkJJGlzQ291bnRyeUNvZGVWYWxpZCA9ICEoaXNzZXQoJGliYW5Gb3JtYXRNYXBbJGNvdW50cnlDb2RlXSkgPT09IGZhbHNlKTsNCg0KCQkkdmFsaWRMZW5ndGggPSAkY291bnRyeUNvZGVMZW5ndGggKyAkY2hlY2tzdW1MZW5ndGggKyAkaWJhbkZvcm1hdE1hcFskY291bnRyeUNvZGVdWzBdOw0KCQkkaXNMZW5ndGhWYWxpZCA9IHN0cmxlbigkaWJhbikgPT09ICR2YWxpZExlbmd0aDsNCg0KCQkkYWNjb3VudElkZW50aWZpY2F0aW9uID0gc3Vic3RyKCRpYmFuLCAkaW5zdGl0dXRlSWRlbnRpZmljYXRpb25PZmZzZXQpOw0KCQkkaXNGb3JtYXRWYWxpZCA9ICEocHJlZ19tYXRjaCgnLycgLiAkaWJhbkZvcm1hdE1hcFskY291bnRyeUNvZGVdWzFdIC4gJy8nLCAkYWNjb3VudElkZW50aWZpY2F0aW9uKSAhPT0gMSk7DQoNCgkJJGNoZWNrc3VtID0gc3Vic3RyKCRpYmFuLCAkY2hlY2tzdW1PZmZzZXQsICRjaGVja3N1bUxlbmd0aCk7DQoJCSRhY2NvdW50SWRlbnRpZmljYXRpb24gPSBzdWJzdHIoJGliYW4sICRpbnN0aXR1dGVJZGVudGlmaWNhdGlvbk9mZnNldCk7DQoNCgkJLy8gR0VUIE5VTUVSSUMgQ09VTlRSWSBDT0RFDQoJCSRudW1lcmljUmVwcmVzZW50YXRpb24gPSAnJzsNCgkJJGxldHRlclJlcHJlc2VudGF0aW9uID0gJGNvdW50cnlDb2RlOw0KCQlmb3JlYWNoIChzdHJfc3BsaXQoJGxldHRlclJlcHJlc2VudGF0aW9uKSBhcyAkY2hhcikNCgkJew0KCQkJJG9yZCA9IG9yZCgkY2hhcik7DQoJCQlpZiAoJG9yZCA+PSA2NSAmJiAkb3JkIDw9IDkwKQ0KCQkJew0KCQkJCSRudW1lcmljUmVwcmVzZW50YXRpb24gLj0gKHN0cmluZykgKCRvcmQgLSA1NSk7DQoJCQl9DQoJCQllbHNlaWYgKCRvcmQgPj0gNDggJiYgJG9yZCA8PSA1NykNCgkJCXsNCgkJCQkkbnVtZXJpY1JlcHJlc2VudGF0aW9uIC49IChzdHJpbmcpICgkb3JkIC0gNDgpOw0KCQkJfQ0KCQl9DQoJCSRudW1lcmljQ291bnRyeUNvZGUgPSAkbnVtZXJpY1JlcHJlc2VudGF0aW9uOw0KDQoJCSRudW1lcmljUmVwcmVzZW50YXRpb24gPSAnJzsNCgkJJGxldHRlclJlcHJlc2VudGF0aW9uID0gJGFjY291bnRJZGVudGlmaWNhdGlvbjsNCgkJZm9yZWFjaCAoc3RyX3NwbGl0KCRsZXR0ZXJSZXByZXNlbnRhdGlvbikgYXMgJGNoYXIpDQoJCXsNCgkJCSRvcmQgPSBvcmQoJGNoYXIpOw0KCQkJaWYgKCRvcmQgPj0gNjUgJiYgJG9yZCA8PSA5MCkNCgkJCXsNCgkJCQkkbnVtZXJpY1JlcHJlc2VudGF0aW9uIC49IChzdHJpbmcpICgkb3JkIC0gNTUpOw0KCQkJfQ0KCQkJZWxzZWlmICgkb3JkID49IDQ4ICYmICRvcmQgPD0gNTcpDQoJCQl7DQoJCQkJJG51bWVyaWNSZXByZXNlbnRhdGlvbiAuPSAoc3RyaW5nKSAoJG9yZCAtIDQ4KTsNCgkJCX0NCgkJfQ0KCQkkbnVtZXJpY0FjY291bnRJZGVudGlmaWNhdGlvbiA9ICRudW1lcmljUmVwcmVzZW50YXRpb247DQoJCSRpbnZlcnRlZEliYW4gPSAkbnVtZXJpY0FjY291bnRJZGVudGlmaWNhdGlvbiAuICRudW1lcmljQ291bnRyeUNvZGUgLiAkY2hlY2tzdW07DQoNCgkJLy8gQ0hFQ0tTVU0gQkNNT0QNCgkJJHggPSAkaW52ZXJ0ZWRJYmFuOw0KCQkkeSA9IDk3Ow0KCQlpZiAoIWZ1bmN0aW9uX2V4aXN0cygnYmNtb2QnKSkNCgkJew0KCQkJJHRha2UgPSA1Ow0KCQkJJG1vZCA9ICcnOw0KCQkJZG8gew0KCQkJCSRhID0gKGludCkkbW9kIC4gc3Vic3RyKCR4LCAwLCAkdGFrZSk7DQoJCQkJJHggPSBzdWJzdHIoJHgsICR0YWtlKTsNCgkJCQkkbW9kID0gJGEgJSAkeTsNCgkJCX0gd2hpbGUgKHN0cmxlbigkeCkpOw0KCQkJJGJjbW9kID0gKHN0cmluZykkbW9kOw0KCQl9DQoJCWVsc2UNCgkJew0KCQkJJGJjbW9kID0gYmNtb2QoJHgsICR5KTsNCgkJfQ0KDQoJCSRpc0NoZWNrc3VtVmFsaWQgPSAkYmNtb2QgPT09ICcxJzsNCg0KCQlpZiAoISRpc0NvdW50cnlDb2RlVmFsaWQgfHwgISRpc0xlbmd0aFZhbGlkIHx8ICEkaXNGb3JtYXRWYWxpZCB8fCAhJGlzQ2hlY2tzdW1WYWxpZCkNCgkJew0KCQkJcmV0dXJuIGZhbHNlOw0KCQl9DQoJCWVsc2UNCgkJew0KCQkgICAgcmV0dXJuIHRydWU7DQoJCX0NCgl9', 'IBAN validation', 1, '2019-02-12 23:14:43', '');
--
-- Dumping data for table `#__componentbuilder_field`
--
INSERT INTO `#__componentbuilder_field` (`id`, `add_css_view`, `add_css_views`, `add_javascript_view_footer`, `add_javascript_views_footer`, `css_view`, `css_views`, `datadefault`, `datadefault_other`, `datalenght`, `datalenght_other`, `datatype`, `indexes`, `javascript_view_footer`, `javascript_views_footer`, `name`, `null_switch`, `store`, `fieldtype`, `xml`, `published`, `created`, `modified`, `version`, `hits`, `ordering`, `guid`, `on_get_model_field`, `on_save_model_field`, `initiator_on_get_model`, `initiator_on_save_model`, `params`) VALUES
(1, '', '', '', '', '', '', '', '', 64, '', 'CHAR', 1, '', '', 'Acronym', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"acronym\\\"\\n\\tlabel=\\\"Acronymb\\\"\\n\\tdescription=\\\"Enter an acronym\\\"\\n\\tclass=\\\"text_area\\\"\\n\\trequired=\\\"true\\\"\\n\\tfilter=\\\"WORD\\\"\\n\\tmessage=\\\"Error! Please add an acronym here.\\\"\\n\\thint=\\\"Acronym Here\\\"\\n\\/>\"', 1, '2015-04-24 07:21:57', '2020-01-16 17:18:27', 44, '', 198, 'c94297cc-340e-484b-af1b-032c244ca78d', '', '', '', '', ''),
(2, '', '', '', '', '', '', '', '', 64, '', 'CHAR', '', '', '', 'Action Name', 'NOT NULL', '', 11, '\"<field\\n\\ttype=\\\"list\\\"\\n\\tname=\\\"action\\\"\\n\\tlabel=\\\"Action Name\\\"\\n\\tdescription=\\\"Enter Action Name Here\\\"\\n\\tclass=\\\"list_class\\\"\\n\\tmultiple=\\\"false\\\"\\n\\tfilter=\\\"CMD\\\"\\n\\trequired=\\\"true\\\"\\n\\toption=\\\"core.edit,core.edit.own,core.edit.state,core.edit.access,core.edit.created_by,core.edit.created,core.create,core.delete,view.edit,view.edit.own,view.edit.state,view.edit.access,view.edit.created_by,view.edit.created,view.create,view.delete,view.access\\\"\\n\\tdefault=\\\"\\\"\\n\\/>\"', 1, '2015-03-19 17:30:59', '2019-02-05 22:36:35', 19, '', 200, '3695d0f0-fba2-4e3a-9d0a-915b2403ec8e', '', '', '', '', ''),
(3, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Add Access', 'NOT NULL', '', 3, '\"<field\\n\\ttype=\\\"checkbox\\\"\\n\\tname=\\\"access\\\"\\n\\tlabel=\\\"Add Access\\\"\\n\\tvalue=\\\"1\\\"\\n\\tdefault=\\\"1\\\"\\n\\tdescription=\\\"Select if this view<br \\/>should use access.\\\"\\n\\tclass=\\\"inputbox\\\"\\n\\/>\"', 1, '2015-05-11 23:14:53', '2019-06-11 12:16:57', 11, '', 199, 'a336dc99-c188-45aa-8804-dfa2922d5ec6', '', '', '', '', ''),
(4, '', '', 1, '', '', '', '', '', '', '', 'TEXT', '', 'alF1ZXJ5KGRvY3VtZW50KS5yZWFkeShmdW5jdGlvbigpew0KCWpRdWVyeShkb2N1bWVudCkub24oJ3N1YmZvcm0tcm93LWFkZCcsIGZ1bmN0aW9uKGV2ZW50LCByb3cpew0KCQl2YXIgZ3JvdXBfa2V5ID0galF1ZXJ5KHJvdykuY29udGV4dC5kYXRhc2V0Lmdyb3VwOw0KCQlqUXVlcnkocm93KS5maW5kKCcjamZvcm1fYWRkYWRtaW5fdmlld3NfXycgKyBncm91cF9rZXkgKyAnX19zdWJtZW51JykucHJvcCgnY2hlY2tlZCcsIHRydWUpOw0KCQlqUXVlcnkocm93KS5maW5kKCcjamZvcm1fYWRkYWRtaW5fdmlld3NfXycgKyBncm91cF9rZXkgKyAnX19jaGVja2luJykucHJvcCgnY2hlY2tlZCcsIHRydWUpOw0KCQlqUXVlcnkocm93KS5maW5kKCcjamZvcm1fYWRkYWRtaW5fdmlld3NfXycgKyBncm91cF9rZXkgKyAnX19oaXN0b3J5JykucHJvcCgnY2hlY2tlZCcsIHRydWUpOw0KCQlqUXVlcnkocm93KS5maW5kKCcjamZvcm1fYWRkYWRtaW5fdmlld3NfXycgKyBncm91cF9rZXkgKyAnX19hY2Nlc3MnKS5wcm9wKCdjaGVja2VkJywgdHJ1ZSk7DQoJCWpRdWVyeShyb3cpLmZpbmQoJyNqZm9ybV9hZGRhZG1pbl92aWV3c19fJyArIGdyb3VwX2tleSArICdfX3BvcnQnKS5wcm9wKCdjaGVja2VkJywgdHJ1ZSk7DQoJfSkNCn0pOw==', '', 'Add Admin Views', 'NOT NULL', '', 35, '\"<field\\n\\ttype=\\\"subform\\\"\\n\\tname=\\\"addadmin_views\\\"\\n\\tlabel=\\\"Admin Views\\\"\\n\\tlayout=\\\"repeatablejcb\\\"\\n\\tmultiple=\\\"true\\\"\\n\\tfields=\\\"39,690,175,67,68,263,37,169,2364,154,3,680,2852,686,221\\\"\\n\\tdescription=\\\"Setup the admin views for this component.\\\"\\n\\tdefault=\\\"[{&quot;submenu&quot;:&quot;1&quot;,&quot;checkin&quot;:&quot;1&quot;,&quot;history&quot;:&quot;1&quot;,&quot;access&quot;:&quot;1&quot;,&quot;port&quot;:&quot;1&quot;,&quot;filter&quot;:&quot;2&quot;}]\\\"\\n\\ticon=\\\"list\\\"\\n\\tmin=\\\"1\\\"\\n\\/>\"', 1, '2015-05-09 22:50:20', '2020-11-17 13:47:38', 32, '', 201, '3bac32ec-8dcf-4257-b518-ecaa952140c2', '', '', '', '', ''),
(5, '', '', '', '', '', '', '', '', '', '', 'MEDIUMTEXT', '', '', '', 'Add Conditions', 'NOT NULL', '', 35, '\"<field\\n\\ttype=\\\"subform\\\"\\n\\tname=\\\"addconditions\\\"\\n\\tlabel=\\\"Conditions\\\"\\n\\tlayout=\\\"repeatablejcb\\\"\\n\\tmultiple=\\\"true\\\"\\n\\tfields=\\\"1831,266,268,1832,179,180\\\"\\n\\tdescription=\\\"Conditional setup for the fields behaviour.\\\"\\n\\tdefault=\\\"\\\"\\n\\ticon=\\\"list\\\"\\n\\/>\"', 1, '2015-05-09 22:50:20', '2020-05-28 20:11:33', 12, '', 220, '434a8099-51f0-49d1-bbbb-ed7aa5145a3c', '', '', '', '', ''),
(6, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Add Contributors', 'NOT NULL', '', 35, '\"<field \\r\\n\\ttype=\\\"subform\\\" \\r\\n\\tname=\\\"addcontributors\\\" \\r\\n\\tlabel=\\\"Contributors\\\" \\r\\n\\tdescription=\\\"Setup contributors for the component.\\\" \\r\\n\\tlayout=\\\"joomla.form.field.subform.repeatable-table\\\" \\r\\n\\tmultiple=\\\"true\\\" \\r\\n\\tfields=\\\"199,51,100,280,52,50\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\ticon=\\\"list\\\" \\r\\n\\tmaximum=\\\"50\\\" \\r\\n\\tfilter=\\\"\\\" \\r\\n\\tshowon=\\\"\\\" \\r\\n\\/>\"', 1, '2015-05-09 22:50:20', '2017-10-22 00:36:06', 3, '', 197, '8e416ff9-3bd1-4115-a08b-06594978ace6', '', '', '', '', ''),
(7, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Add CSS (view)', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"add_css_view\\\" \\r\\n\\tlabel=\\\"Add CSS (view)\\\" \\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-11 12:36:14', '2015-08-25 21:15:22', 1, '', 196, '6746d3ba-b120-4918-8bba-2a14260e99c8', '', '', '', '', ''),
(8, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Add CSS (views)', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"add_css_views\\\" \\r\\n\\tlabel=\\\"Add CSS (views)\\\" \\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-11 12:36:14', '2015-08-25 21:15:22', 1, '', 195, 'a2098911-926a-42b6-8498-d8a453c34d93', '', '', '', '', ''),
(9, '', '', '', '', '', '', '', '', '', '', 'MEDIUMTEXT', '', '', '', 'Add Fields (for views)', 'NOT NULL', '', 35, '\"<field\\n\\ttype=\\\"subform\\\"\\n\\tname=\\\"addfields\\\"\\n\\tlabel=\\\"Fields\\\"\\n\\tlayout=\\\"repeatablejcb\\\"\\n\\tmultiple=\\\"true\\\"\\n\\tfields=\\\"143,38,223,166,161,165,164,162,163,1829,24,222,700\\\"\\n\\tdescription=\\\"Setup fields for this view.\\\"\\n\\tdefault=\\\"\\\"\\n\\ticon=\\\"list\\\"\\n\\tmin=\\\"1\\\"\\n\\/>\"', 1, '2015-05-09 22:50:20', '2020-05-28 18:58:31', 9, '', 194, '15e1f13d-25db-46a4-ae7c-fb616140338e', '', '', '', '', ''),
(10, '', '', '', '', '', '', '', '', 64, '', 'CHAR', '', '', '', 'Add Icon', 'NOT NULL', '', 12, '\"<field \\r\\n\\ttype=\\\"media\\\" \\r\\n\\tname=\\\"icon_add\\\" \\r\\n\\tlabel=\\\"Add Icon\\\" \\r\\n\\tdescription=\\\"Must be 128px x 128px and a png format..\\\" \\r\\n\\tdirectory=\\\"\\\" \\r\\n\\/>\"', 1, '2015-04-29 14:00:56', '2015-08-25 21:15:22', 1, '', 193, '92ff3e2c-081b-4b84-a10c-e1a9f3245063', '', '', '', '', ''),
(11, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Add Javascript (view-file)', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"add_javascript_view_file\\\" \\r\\n\\tlabel=\\\"Add JavaScript (view-file)\\\" \\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-11 12:36:14', '2015-08-25 21:15:22', 1, '', 192, '42991cef-d988-4ad9-b3d2-f29d9809f0b3', '', '', '', '', ''),
(12, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Add Javascript (views-file)', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"add_javascript_views_file\\\" \\r\\n\\tlabel=\\\"Add JavaScript (views-file)\\\" \\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-11 12:36:14', '2015-08-25 21:15:22', 1, '', 191, 'e19c4fa4-804f-488b-90d7-1ea827bba52e', '', '', '', '', ''),
(13, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Add MySql - (Install)', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"add_sql\\\"\\n\\tlabel=\\\"Add MySQL - (Install)\\\"\\n\\tdescription=\\\"\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"1|Yes,0|No\\\"\\n\\tdefault=\\\"0\\\"\\n\\trequired=\\\"true\\\"\\n\\/>\"', 1, '2015-05-11 12:36:14', '2018-05-11 03:28:51', 3, '', 190, '7c652c71-e00e-45ff-8acb-e1bc0344e4c0', '', '', '', '', ''),
(14, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Add Permissions (to view)', 'NOT NULL', '', 35, '\"<field \\r\\n\\ttype=\\\"subform\\\" \\r\\n\\tname=\\\"addpermissions\\\" \\r\\n\\tlabel=\\\"Permissions\\\" \\r\\n\\tdescription=\\\"Set permissions for this view\\\" \\r\\n\\tlayout=\\\"joomla.form.field.subform.repeatable-table\\\" \\r\\n\\tmultiple=\\\"true\\\"\\r\\n\\ticon=\\\"list\\\" \\r\\n\\tmaximum=\\\"20\\\" \\r\\n\\tfields=\\\"2,159\\\" \\r\\n\\/>\"', 1, '2015-05-09 22:50:20', '2017-10-09 18:26:10', 4, '', 189, '6e7d306a-9210-41bd-b951-6e897fcff773', '', '', '', '', ''),
(15, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Add PHP (getItem Method)', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"add_php_getitem\\\" \\r\\n\\tlabel=\\\"Add PHP (getItem Method)\\\" \\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-11 12:36:14', '2015-08-25 21:15:22', 1, '', 188, '95eb062e-f221-43b4-b4d4-c32e9d70e8a7', '', '', '', '', ''),
(16, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Add PHP (getItems Method - before translation fix & decryption)', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"add_php_getitems\\\" \\r\\n\\tlabel=\\\"Add PHP (getItems Method - before translation fix & decryption)\\\" \\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-11 12:36:14', '2016-09-02 15:31:29', 5, '', 187, '1eecc354-f454-48dd-ab12-4cf85b88f97b', '', '', '', '', ''),
(17, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Add PHP (helper_admin Class)', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"add_php_helper_admin\\\" \\r\\n\\tlabel=\\\"Add PHP (helper_admin 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-05-11 12:36:14', '2015-08-25 21:15:22', 2, '', 186, 'abc5e604-4a2b-4f4c-9add-9e371249adf8', '', '', '', '', ''),
(18, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Add PHP (postSaveHook Method)', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"add_php_postsavehook\\\" \\r\\n\\tlabel=\\\"Add PHP (postSaveHook Method)\\\" \\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-11 12:36:14', '2015-08-25 21:15:22', 1, '', 202, '45559d2a-7537-4719-8caa-aa99df171000', '', '', '', '', ''),
(19, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Add PHP (save Method - after data modeling)', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"add_php_save\\\" \\r\\n\\tlabel=\\\"Add PHP (save Method - after data modeling)\\\" \\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-11 12:36:14', '2017-08-28 15:13:53', 2, '', 203, '5799fcb7-8de8-41bf-9a2a-dcf84cae3949', '', '', '', '', ''),
(20, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Add Tabs', 'NOT NULL', '', 35, '\"<field \\r\\n\\ttype=\\\"subform\\\" \\r\\n\\tname=\\\"addtabs\\\" \\r\\n\\tlabel=\\\"Tabs\\\" \\r\\n\\tdescription=\\\"Setup tabs for this view.\\\" \\r\\n\\tlayout=\\\"joomla.form.field.subform.repeatable-table\\\" \\r\\n\\tmultiple=\\\"true\\\"\\r\\n\\tmaximum=\\\"14\\\" \\r\\n\\tfields=\\\"199\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\ticon=\\\"list\\\" \\r\\n\\/>\"', 1, '2015-05-09 22:50:20', '2017-10-22 09:22:20', 3, '', 219, '0c06ec4b-448e-4c8a-8869-d424b6ab1f4a', '', '', '', '', ''),
(21, '', '', '', '', '', '', '', '', 64, '', 'CHAR', '', '', '', 'Adjustable', 'NOT NULL', '', 3, '\"<field \\r\\n\\ttype=\\\"checkbox\\\" \\r\\n\\tname=\\\"adjustable\\\" \\r\\n\\tlabel=\\\"Adjustable\\\" \\r\\n\\tdescription=\\\"Select if the value is adjustable.<br \\/>If not the Value\\/Example will be enforced.\\\" \\r\\n\\tvalue=\\\"1\\\" \\r\\n\\tclass=\\\"inputbox\\\" \\r\\n\\/>\"', 1, '2015-05-10 21:38:22', '2017-09-21 02:03:04', 6, '', 218, '062b7901-ff23-41c6-98f1-209d82dad2e7', '', '', '', '', ''),
(22, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Aims', 'NOT NULL', '', 8, '\"<field \\r\\n\\ttype=\\\"editor\\\" \\r\\n\\tname=\\\"aims\\\" \\r\\n\\tlabel=\\\"Aims\\\" \\r\\n\\twidth=\\\"100%\\\" \\r\\n\\theight=\\\"75px\\\" \\r\\n\\tbuttons=\\\"false\\\" \\r\\n\\tfilter=\\\"safehtml\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\/>\"', 1, '2015-04-24 11:20:51', '2015-08-25 21:15:22', 2, '', 217, 'e2dbc087-3a13-4fc1-89be-fb61df8a72af', '', '', '', '', ''),
(23, '', '', '', '', '', '', '', '', 64, '', 'CHAR', 2, '', '', 'Alias', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"alias\\\"\\n\\tlabel=\\\"Alias\\\"\\n\\tfilter=\\\"STRING\\\"\\n\\thint=\\\"Auto-generated from name\\\"\\n\\/>\"', 1, '2015-04-09 13:46:04', '2023-06-27 23:46:54', 3, '', 216, '335866ce-b81b-4329-901d-c20254135c9c', '', '', '', '', ''),
(24, '', '', '', '', '', '', '', '', 11, '', 'INT', '', '', '', 'Alignment', 'NOT NULL', '', 11, '\"<field \\r\\n\\ttype=\\\"list\\\" \\r\\n\\tname=\\\"alignment\\\" \\r\\n\\tlabel=\\\"Alignment\\\" \\r\\n\\tdescription=\\\"Select the field alignment inside a tab\\/view.\\\" \\r\\n\\tclass=\\\"fieldMedium\\\" \\r\\n\\tmultiple=\\\"false\\\" \\r\\n\\tfilter=\\\"INT\\\" \\r\\n\\trequired=\\\"\\\" \\r\\n\\toption=\\\"1|Left in Tab,2|Right in Tab,3|Full Width in Tab,4|Above Tabs,5|Underneath Tabs,6|Left of Tabs,7|Right of Tabs\\\" \\r\\n\\tdefault=\\\"1\\\" \\r\\n\\/>\"', 1, '2015-05-11 13:02:32', '2015-08-25 21:15:22', 1, '', 215, '6014463c-9321-4256-afd1-17ac302ee51e', '', '', '', '', ''),
(25, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Answer List', 'NOT NULL', '', 4, '\"<field \\r\\n\\ttype=\\\"checkboxes\\\" \\r\\n\\tname=\\\"answer_list\\\" \\r\\n\\tlabel=\\\"Select Correct Selection\\\" \\r\\n\\toption=\\\"1|Selection One,2|Selection Two,3|Selection Three,4|Selection Four,5|Selection Five,6|Selection Six,7|Selection Seven,8|Selection Eight,9|Selection Nine,10|Selection Ten\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\trequired=\\\"true\\\"\\r\\n\\tdescription=\\\"Select the correct answer\\/s to the question\\\" \\r\\n\\tclass=\\\"\\\" \\r\\n\\/>\"', '', '2015-04-28 10:48:58', '2015-08-25 21:15:22', 2, '', 214, '0347cd28-ae62-4db3-baec-f06147e00c51', '', '', '', '', ''),
(26, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'Answer Type', 'NOT NULL', '', 11, '\"<field \\r\\n\\ttype=\\\"list\\\" \\r\\n\\tname=\\\"answer_type\\\" \\r\\n\\tlabel=\\\"Answer Type\\\" \\r\\n\\tdescription=\\\"Select an answer type\\\" \\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\tmultiple=\\\"false\\\" \\r\\n\\trequired=\\\"true\\\"\\r\\n\\toption=\\\"|Select an option,1|Yes\\/No,2|List Selection,3|Text\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\/>\"', 1, '2015-04-28 10:45:32', '2015-09-11 20:29:40', 2, '', 213, 'c7819436-8c78-43d7-86de-7af3f401e32d', '', '', '', '', ''),
(27, '', '', '', '', '', '', '', '', 64, '', 'CHAR', '', '', '', 'Answer YesNo', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"answer_yesno\\\" \\r\\n\\tlabel=\\\"Answer\\\" \\r\\n\\tdescription=\\\"Select the correct answer to the question\\\" \\r\\n\\tclass=\\\"btn-group btn-group-yesno\\\" \\r\\n\\trequired=\\\"true\\\"\\r\\n\\toption=\\\"Yes,No\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\/>\"', 1, '2015-04-28 10:48:58', '2015-08-25 21:15:22', 1, '', 212, '884f6d24-ce44-410f-b52d-f726b9e48b70', '', '', '', '', ''),
(28, '', '', '', '', '', '', '', '', 11, '', 'INT', '', '', '', 'Assessment Type (category)', 'NOT NULL', '', 2, '\"<field type=\\\"category\\\" name=\\\"catid\\\" label=\\\"Assessment Type\\\" extension=\\\"com_###component###.assessments\\\" scope=\\\"\\\" required=\\\"true\\\" class=\\\"inputbox\\\" othername=\\\"Assessment Types\\\" views=\\\"assessments\\\" view=\\\"assessment\\\"\\/>\"', 1, '2015-03-28 06:56:00', '2015-08-25 21:15:22', 1, '', 211, 'ec07f1ba-eb3c-4a11-a1b1-68b4e79ee119', '', '', '', '', ''),
(29, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'Assessment Types (show archived also)', 'NOT NULL', '', 6, '\"<field\\n\\ttype=\\\"assessmenttype\\\"\\n\\tname=\\\"assessment_type\\\"\\n\\tlabel=\\\"Assessment Type\\\"\\n\\tdescription=\\\"Select an assessment type\\\"\\n\\tclass=\\\"list_class\\\"\\n\\tmultiple=\\\"false\\\"\\n\\trequired=\\\"true\\\"\\n\\textends=\\\"list\\\"\\n\\tbutton=\\\"true\\\"\\n\\ttable=\\\"#__###component###_assessment_type\\\"\\n\\tcomponent=\\\"com_###component###\\\"\\n\\tview=\\\"assessment_type\\\"\\n\\tviews=\\\"assessment_types\\\"\\n\\tvalue_field=\\\"name\\\"\\n\\tkey_field=\\\"id\\\"\\n\\ttype_php_1=\\\"$db = JFactory::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->where($db->quoteName(\'a.published\') . \' >= 1\');\\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[] = JHtml::_(\'select.option\', \'\', \'Select a type\');\\r\\n\\\\tforeach($items as $item)\\r\\n\\\\t{\\r\\n\\\\t\\\\t$options[] = JHtml::_(\'select.option\', $item->###ID###, $item->###CODE_TEXT###);\\r\\n\\\\t}\\r\\n}\\r\\nreturn $options;\\\"\\n\\/>\"', 1, '2015-04-28 10:07:13', '2018-04-14 21:56:00', 6, '', 210, '297e7b2d-e299-415b-9f8b-837658422718', '', '', '', '', ''),
(30, '', '', '', '', '', '', '', '', 11, '', 'INT', '', '', '', 'Assessments', 'NOT NULL', '', 2, '\"<field \\r\\n\\ttype=\\\"category\\\" \\r\\n\\tname=\\\"assessment\\\" \\r\\n\\tlabel=\\\"Assessment Type\\\" \\r\\n\\textension=\\\"com_###component###\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tclass=\\\"inputbox\\\" \\r\\n\\/>\"', 1, '2015-03-28 06:56:00', '2015-08-25 21:15:22', 1, '', 209, '202f0ab6-c508-4406-87d4-e55e2b9f8db7', '', '', '', '', ''),
(31, '', '', '', '', '', '', '', '', 64, '', 'CHAR', '', '', '', 'Attachment 1', 'NOT NULL', '', 12, '\"<field \\r\\n\\ttype=\\\"media\\\" \\r\\n\\tname=\\\"attachment_1\\\" \\r\\n\\tlabel=\\\"Attachment\\\" \\r\\n\\tdescription=\\\"Add a attachment to this email\\\" \\r\\n\\tdirectory=\\\"\\\" \\r\\n\\tpreview=\\\"false\\\" \\r\\n\\/>\"', 1, '2015-04-29 14:00:56', '2015-08-25 21:15:22', 1, '', 208, 'cad8c91f-5092-4115-a071-2c58b9645617', '', '', '', '', ''),
(32, '', '', '', '', '', '', '', '', 64, '', 'CHAR', '', '', '', 'Attachment 2', 'NOT NULL', '', 12, '\"<field \\r\\n\\ttype=\\\"media\\\" \\r\\n\\tname=\\\"attachment_2\\\" \\r\\n\\tlabel=\\\"Attachment\\\" \\r\\n\\tdescription=\\\"Add a attachment to this email\\\" \\r\\n\\tdirectory=\\\"\\\" \\r\\n\\tpreview=\\\"false\\\" \\r\\n\\/>\"', 1, '2015-04-29 14:00:56', '2015-08-25 21:15:22', 1, '', 207, 'dfb9c3c2-b2e7-4db7-8de5-ae79f8e4221f', '', '', '', '', ''),
(33, '', '', '', '', '', '', '', '', 64, '', 'CHAR', '', '', '', 'Attachment 3', 'NOT NULL', '', 12, '\"<field \\r\\n\\ttype=\\\"media\\\" \\r\\n\\tname=\\\"attachment_3\\\" \\r\\n\\tlabel=\\\"Attachment\\\" \\r\\n\\tdescription=\\\"Add a attachment to this email\\\" \\r\\n\\tdirectory=\\\"\\\" \\r\\n\\tpreview=\\\"false\\\" \\r\\n\\/>\"', 1, '2015-04-29 14:00:56', '2015-08-25 21:15:22', 1, '', 206, '9d5b4404-efae-454c-97d0-97200a4a9c6c', '', '', '', '', ''),
(34, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Author', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"author\\\" \\r\\n\\tlabel=\\\"Author\\\" \\r\\n\\tsize=\\\"10\\\" \\r\\n\\tmaxlength=\\\"120\\\" \\r\\n\\tdescription=\\\"The Author\'s Name &amp; Surname.\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\treadonly=\\\"false\\\" \\r\\n\\tdisabled=\\\"false\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\tfilter=\\\"HTML\\\" \\r\\n\\tmessage=\\\"Error! Please add author name here.\\\" \\r\\n\\thint=\\\"Author Name &amp; Surname Here\\\" \\r\\n\\/>\"', 1, '2015-05-05 17:06:17', '2018-02-23 07:54:59', 3, '', 205, 'd4a595fb-2264-4e18-8b80-7affee1a6abf', '', '', '', '', ''),
(35, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Author Email', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"email\\\" \\r\\n\\tlabel=\\\"Author Email\\\" \\r\\n\\tsize=\\\"40\\\" \\r\\n\\tmaxlength=\\\"150\\\" \\r\\n\\tdescription=\\\"Enter Author Email\\\" \\r\\n\\tclass=\\\"text_area\\\"\\r\\n\\tfilter=\\\"STRING\\\" \\r\\n\\tvalidate=\\\"email\\\" \\r\\n\\trequired=\\\"true\\\"\\r\\n\\tmessage=\\\"Error! Please author email address here.\\\" \\r\\n\\thint=\\\"Author Email Here\\\" \\r\\n\\/>\"', 1, '2015-05-05 23:44:32', '2015-08-25 21:15:22', 1, '', 204, '2a9d2cda-1be7-4ae7-b672-9139a8a62d14', '', '', '', '', ''),
(36, '', '', '', '', '', '', '', '', 255, '', 'CHAR', '', '', '', 'Author Website', 'NOT NULL', '', 27, '\"<field \\r\\n\\ttype=\\\"url\\\" \\r\\n\\tname=\\\"website\\\" \\r\\n\\tlabel=\\\"Author Website\\\" \\r\\n\\tsize=\\\"60\\\" \\r\\n\\tmaxlength=\\\"150\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tdescription=\\\"Enter website address\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\treadonly=\\\"\\\" \\r\\n\\tdisabled=\\\"\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\tfilter=\\\"url\\\" \\r\\n\\tvalidated=\\\"url\\\" \\r\\n\\tmessage=\\\"Error! Please add website here.\\\" \\r\\n\\thint=\\\"http:\\/\\/www.example.com\\\" \\r\\n\\/>\"', 1, '2015-04-08 00:36:16', '2015-08-25 21:15:22', 1, '', 185, '9f474240-eb27-40d7-9512-fbb3acf370d5', '', '', '', '', ''),
(37, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'Auto Check-in', 'NOT NULL', '', 3, '\"<field\\n\\ttype=\\\"checkbox\\\"\\n\\tname=\\\"checkin\\\"\\n\\tlabel=\\\"Auto Check-in\\\"\\n\\tvalue=\\\"1\\\"\\n\\tdefault=\\\"1\\\"\\n\\tdescription=\\\"Select if the items of this view should automatically be checked in.\\\"\\n\\tclass=\\\"inputbox\\\"\\n\\/>\"', 1, '2015-05-11 23:14:53', '2019-06-11 12:19:37', 4, '', 184, '07882a4a-363e-41ee-83d2-833d946122d7', '', '', '', '', ''),
(38, '', '', 1, '', '', '', '', '', 1, '', 'TINYINT', '', 'Ly8gbGl0dGxlIHNjcmlwdCB0byBjaGVjayB2YWx1ZSBhbmQgZ2l2ZSBub3RpY2UNCmZ1bmN0aW9uIGNoZWNrQWRtaW5CZWhhdmlvdXIoZmllbGQpIHsNCgkvLyBnZXQgdGhlIElEDQoJdmFyIGlkID0galF1ZXJ5KGZpZWxkKS5hdHRyKCdpZCcpOw0KCXZhciB0YXJnZXQgPSBpZC5zcGxpdCgnX18nKTsNCgkvL3NldCB0aGUgc3ViSUQNCgl2YXIgc3ViSUQgPSB0YXJnZXRbMF0rJ19fJyt0YXJnZXRbMV07DQoJLy8gZ2V0IHZhbHVlDQoJdmFyIHZhbHVlID0galF1ZXJ5KCcjJytzdWJJRCsnX19saXN0JykudmFsKCk7DQoJLy8gc2V0IG5vdGljZSBhbmQgZG8gaG91c2UgY2xlYW5pbmcNCglpZiAoMiA9PSB2YWx1ZSkgew0KCQkvLyBubyBkYXRhYmFzZQ0KCQlpZiAodGFyZ2V0WzJdID09ICdsaXN0Jykgew0KCQkJalF1ZXJ5LlVJa2l0Lm5vdGlmeSh7bWVzc2FnZTogSm9vbWxhLkpUZXh0Ll8oJ09ubHkgdXNlIHRoZSA8Yj5Ob25lIERCPC9iPiBvcHRpb24gaWYgeW91IGFyZSBwbGFubmluZyBvbiB0YXJnZXRpbmcgdGhpcyBmaWVsZCB3aXRoIEphdmFTY3JpcHQvQ3VzdG9tIFBIUCB0byBtb3ZlIGl0cyB2YWx1ZSBpbnRvIGFub3RoZXIgZmllbGQgdGhhdCBkb2VzIGdldCBzYXZlZCB0byB0aGUgZGF0YWJhc2UuJyksIHRpbWVvdXQ6IDEwMDAwLCBzdGF0dXM6ICd3YXJuaW5nJywgcG9zOiAndG9wLXJpZ2h0J30pOw0KCQkJalF1ZXJ5LlVJa2l0Lm5vdGlmeSh7bWVzc2FnZTogSm9vbWxhLkpUZXh0Ll8oJ1RoZSA8Yj5Ob25lIERCPC9iPiBvcHRpb24gd2lsbCByZW1vdmUgdGhpcyBmaWVsZCBmcm9tIGJlaW5nIHNhdmVkIGluIHRoZSBkYXRhYmFzZS4nKSwgdGltZW91dDogNTAwMCwgc3RhdHVzOiAncHJpbWFyeScsIHBvczogJ3RvcC1yaWdodCd9KTsNCgkJfSBlbHNlIHsNCgkJCWpRdWVyeS5VSWtpdC5ub3RpZnkoe21lc3NhZ2U6IEpvb21sYS5KVGV4dC5fKCdUaGVzZSBvcHRpb25zIGFyZSBub3QgYXZhaWxhYmxlIHRvIHRoZSBmaWVsZCBpZiA8Yj5Ob25lIERCPC9iPiBvcHRpb24gaXMgc2VsZWN0ZWQuJyksIHRpbWVvdXQ6IDcwMDAsIHN0YXR1czogJ3dhcm5pbmcnLCBwb3M6ICd0b3AtcmlnaHQnfSk7DQoJCX0NCgkJLy8gZG8gc29tZSBob3VzZSBjbGVhbmluZw0KCQlqUXVlcnkoJyMnK3N1YklEKydfX29yZGVyX2xpc3QnKS52YWwoMCkudHJpZ2dlcignbGlzenQ6dXBkYXRlZCcpOw0KCQlqUXVlcnkoJyMnK3N1YklEKydfX2ZpbHRlcicpLnZhbCgnJykudHJpZ2dlcignbGlzenQ6dXBkYXRlZCcpOw0KCQlqUXVlcnkoJyMnK3N1YklEKydfX3RpdGxlJykucHJvcCgnY2hlY2tlZCcsIGZhbHNlKS50cmlnZ2VyKCdjaGFuZ2UnKTsNCgkJalF1ZXJ5KCcjJytzdWJJRCsnX19hbGlhcycpLnByb3AoJ2NoZWNrZWQnLCBmYWxzZSkudHJpZ2dlcignY2hhbmdlJyk7DQoJCWpRdWVyeSgnIycrc3ViSUQrJ19fc29ydCcpLnByb3AoJ2NoZWNrZWQnLCBmYWxzZSkudHJpZ2dlcignY2hhbmdlJyk7DQoJCWpRdWVyeSgnIycrc3ViSUQrJ19fc2VhcmNoJykucHJvcCgnY2hlY2tlZCcsIGZhbHNlKS50cmlnZ2VyKCdjaGFuZ2UnKTsNCgkJalF1ZXJ5KCcjJytzdWJJRCsnX19saW5rJykucHJvcCgnY2hlY2tlZCcsIGZhbHNlKS50cmlnZ2VyKCdjaGFuZ2UnKTsNCgl9IGVsc2UgaWYgKDEgPT0gdmFsdWUgfHwgMyA9PSB2YWx1ZSAgfHwgNCA9PSB2YWx1ZSkgew0KCQkvLyBnZXQgbnVtYmVyIG9mIGl0ZW1zDQoJCXZhciBudW1JdGVtcyA9IGpRdWVyeSgnLmNvdW50LXRoZS1pdGVtczEyMzUnKS5sZW5ndGggKyAxMDsNCgkJLy8gc2hvdyBpbiBsaXN0IHZpZXcNCgkJaWYgKHRhcmdldFsyXSA9PSAnbGlzdCcpIHsNCgkJCWlmICgxID09IHZhbHVlKSB7DQoJCQkJalF1ZXJ5LlVJa2l0Lm5vdGlmeSh7bWVzc2FnZTogSm9vbWxhLkpUZXh0Ll8oJ1RoZSA8Yj5TaG93IGluIEFsbCBMaXN0IFZpZXdzPC9iPiBvcHRpb24gd2lsbCBBZGQgdGhpcyBmaWVsZCB0byBhbGwgbGlzdCB2aWV3cywgYWRtaW4gJmFtcDsgbGlua2VkLicpLCB0aW1lb3V0OiA1MDAwLCBzdGF0dXM6ICdwcmltYXJ5JywgcG9zOiAndG9wLXJpZ2h0J30pOw0KCQkJfSBlbHNlIGlmICgzID09IHZhbHVlKSB7DQoJCQkJalF1ZXJ5LlVJa2l0Lm5vdGlmeSh7bWVzc2FnZTogSm9vbWxhLkpUZXh0Ll8oJ1RoZSA8Yj5Pbmx5IGluIEFkbWluIExpc3QgVmlldzwvYj4gb3B0aW9uIHdpbGwgb25seSBBZGQgdGhpcyBmaWVsZCB0byB0aGUgYWRtaW4gbGlzdCB2aWV3LCBub3QgdG8gYW55IGxpbmtlZCB2aWV3cy4nKSwgdGltZW91dDogNTAwMCwgc3RhdHVzOiAncHJpbWFyeScsIHBvczogJ3RvcC1yaWdodCd9KTsNCgkJCX0gZWxzZSBpZiAoNCA9PSB2YWx1ZSkgew0KCQkJCWpRdWVyeS5VSWtpdC5ub3RpZnkoe21lc3NhZ2U6IEpvb21sYS5KVGV4dC5fKCdUaGUgPGI+T25seSBpbiBMaW5rZWQgTGlzdCBWaWV3czwvYj4gb3B0aW9uIHdpbGwgb25seSBBZGQgdGhpcyBmaWVsZCB0byB0aGUgbGlua2VkIGxpc3QgdmlldywgaWYgdGhpcyB2aWV3IGdldHMgbGlua2VkIHRvIG90aGVyIHZpZXcsIG5vdCB0byB0aGlzIGFkbWluIGxpc3Qgdmlldy4nKSwgdGltZW91dDogNTAwMCwgc3RhdHVzOiAncHJpbWFyeScsIHBvczogJ3RvcC1yaWdodCd9KTsNCgkJCX0NCgkJfQ0KCQkvLyBjaGVjayBpZiB0aGUgb3JkZXIgbGlzdCBhbHJlYWR5IGhhcyBhIHZhbHVlDQoJCXZhciBvcmRlckxpc3QgPSBqUXVlcnkoJyMnK3N1YklEKydfX29yZGVyX2xpc3QnKS52YWwoKTsNCgkJaWYgKG9yZGVyTGlzdCA9PSAwKSB7DQoJCQkvLyBjb3VudCB0aGUgYWxyZWFkeSBzZXQgYW5kIGdldCB0aGUgbmV4dCBudW1iZXIgYXZhaWxhYmxlDQoJCQl2YXIgbGlzdHZpZXdOdW1iZXIgPSBmYW5Bc2dmZFNmZnNOdW1iZXIoc3ViSUQucmVwbGFjZSgvXGQrL2csICcnKSwgbnVtSXRlbXMpOw0KCQkJLy8gdXBkYXRlIHRoZSBwb3NpdGlvbg0KCQkJalF1ZXJ5KCcjJytzdWJJRCsnX19vcmRlcl9saXN0JykudmFsKGxpc3R2aWV3TnVtYmVyKS50cmlnZ2VyKCdsaXN6dDp1cGRhdGVkJyk7DQoJCX0NCgl9IGVsc2Ugew0KCQkvLyBkbyBzb21lIGhvdXNlIGNsZWFuaW5nDQoJCWpRdWVyeSgnIycrc3ViSUQrJ19fb3JkZXJfbGlzdCcpLnZhbCgwKS50cmlnZ2VyKCdsaXN6dDp1cGRhdGVkJyk7DQoJCWpRdWVyeSgnIycrc3ViSUQrJ19fZmlsdGVyJykudmFsKCcnKS50cmlnZ2VyKCdsaXN6dDp1cGRhdGVkJyk7DQoJCWpRdWVyeSgnIycrc3ViSUQrJ19fc29ydCcpLnByb3AoJ2NoZWNrZWQnLCBmYWxzZSkudHJpZ2dlcignY2hhbmdlJyk7DQoJCWpRdWVyeSgnIycrc3ViSUQrJ19fbGluaycpLnByb3AoJ2NoZWNrZWQnLCBmYWxzZSkudHJpZ2dlcignY2hhbmdlJyk7DQoJfQ0KfQ0KDQovLyBjb3VudCB0aGUgYWxyZWFkeSBzZXQgYW5kIGdldCB0aGUgbmV4dCBudW1iZXIgYXZhaWxhYmxlDQpmdW5jdGlvbiBmYW5Bc2dmZFNmZnNOdW1iZXIodGFyZ2V0Rm9ybSwgbnVtSXRlbXMpIHsNCgl2YXIgaTsNCgkvLyBubyBjaGVjayBhbGwgdGhlIG9yZGVyIHZhbHVlcyBhbHJlYWR5IHNldCBzbyB0byBmaWxsIGluIHRoZSBjYXBzDQoJdmFyIG51bWJlcnMgPSBbXTsNCglmb3IgKGkgPSAwOyBpIDwgbnVtSXRlbXM7IGkrKykgeyAvLyBmb3Igbm93IHRoaXMgaXMgdGhlIG51bWJlciBvZiBmaWVsZCB3ZSBzaG91bGQgY2hlY2sNCgkJLy8gYnVpbGQgSUQNCgkJdmFyIGlkX2NoZWNrID0gdGFyZ2V0Rm9ybStpKydfX29yZGVyX2xpc3QnOw0KCQkvLyBmaXJzdCBjaGVjayBpZiBJZCBpcyBvbiBwYWdlDQoJCWlmIChqUXVlcnkoIiMiK2lkX2NoZWNrKS5sZW5ndGgpIHsNCgkJCS8vIGdldCB0aGUgcHJvcGVydHkgdmFsdWUNCgkJCXZhciB0bXAgPSBqUXVlcnkoIiMiK2lkX2NoZWNrKyIgb3B0aW9uOnNlbGVjdGVkIikudmFsKCk7DQoJCQkvLyBub3cgdmFsaWRhdGUNCgkJCWlmICh0bXAgPj0gMSkgew0KCQkJCW51bWJlcnMucHVzaChwYXJzZUludCh0bXApKTsNCgkJCX0NCgkJfQ0KCX0NCgkvLyBjaGVjayB0aGF0IHRoZXJlIGFyZSBhY3R1YWxseSBzb21lIHNldA0KCWlmIChudW1iZXJzLmxlbmd0aCkgew0KCQkvLyBzb3J0IHRoZSBhcnJheQ0KCQludW1iZXJzLnNvcnQoZmFuQXNnZmRTZmZzU29ydCk7DQoJCS8vIGdldCB0aGUgYWJzZW50IHZhbHVlcw0KCQl2YXIgYWJzZW50ID0gZmFuQXNnZmRTZmZzQWJzZW50KG51bWJlcnMpOw0KCQkvLyBjaGVjayBpZiBhbiBhYnNlbnQgdmFsdWUgd2FzIGZvdW5kDQoJCWlmIChhYnNlbnQubGVuZ3RoKSB7DQoJCQkvLyBzb3J0IHRoZSBhcnJheSAoanVzdCB0byBiZSBzYWZlKQ0KCQkJYWJzZW50LnNvcnQoZmFuQXNnZmRTZmZzU29ydCk7DQoJCQkvLyByZXR1cm4gbG93ZXN0IGZvdW5kIHZhbHVlDQoJCQlyZXR1cm4gYWJzZW50WzBdOw0KCQl9DQoJfQ0KCS8vIHNpbmNlIG5vIGFic2VudCB2YWx1ZSB3YXMgZm91bmQgYWRkIHRvIG5leHQgYXZhaWxhYmxlIG9wdGlvbg0KCXZhciB0b3RhbCA9IDA7DQoJZm9yIChpID0gMDsgaSA8IG51bUl0ZW1zOyBpKyspIHsgLy8gZm9yIG5vdyB0aGlzIGlzIHRoZSBudW1iZXIgb2YgZmllbGQgd2Ugc2hvdWxkIGNoZWNrDQoJCS8vIGJ1aWxkIElEDQoJCXZhciBpZF9jaGVjayA9IHRhcmdldEZvcm0raSsnX19saXN0JzsNCgkJLy8gZmlyc3QgY2hlY2sgaWYgSWQgaXMgb24gcGFnZQ0KCQlpZiAoalF1ZXJ5KCIjIitpZF9jaGVjaykubGVuZ3RoKSB7DQoJCQkvLyBnZXQgdGhlIHByb3BlcnR5IHZhbHVlDQoJCQl2YXIgdG1wID0galF1ZXJ5KCIjIitpZF9jaGVjaysiIG9wdGlvbjpzZWxlY3RlZCIpLnZhbCgpOw0KCQkJLy8gbm93IHZhbGlkYXRlDQoJCQlpZiAodG1wID49IDEpIHsNCgkJCQl0b3RhbCsrOw0KCQkJfQ0KCQl9DQoJfQ0KCXJldHVybiB0b3RhbDsNCn0NCg0KLy8gc2ltcGxlIHNvcnQgZnVuY3Rpb24NCmZ1bmN0aW9uIGZhbkFzZ2ZkU2Zmc1NvcnQoYSxiKSB7DQogICAgcmV0dXJuIGEgLSBiOw0KfQ0KDQovLyBzaW1wbGUgYWJzZW50IGZ1bmN0aW9uDQpmdW5jdGlvbiBmYW5Bc2dmZFNmZnNBYnNlbnQoYXJyKXsNCiAgICB2YXIgYWJzZW50QXJyYXkgPSBbXSwgbWluPSAxLCBtYXggPSBhcnJbYXJyLmxlbmd0aC0xXTsNCiAgICB3aGlsZShtaW4gPCBtYXgpew0KICAgICAgICBpZihqUXVlcnkuaW5BcnJheShtaW4sIGFycikgPT0gLTEpIHsNCgkJCWFic2VudEFycmF5LnB1c2gobWluKTsNCgkJfQ0KCQltaW4rKzsNCiAgICB9DQogICAgcmV0dXJuIGFic2VudEFycmF5Ow0KfQ==', '', 'Admin Behaviour', 'NOT NULL', '', 11, '\"<field\\n\\ttype=\\\"list\\\"\\n\\tname=\\\"list\\\"\\n\\tlabel=\\\"Admin\\\"\\n\\tdescription=\\\"behaviour\\\"\\n\\tclass=\\\"fieldMedium count-the-items1235\\\"\\n\\tmultiple=\\\"false\\\"\\n\\toption=\\\"|Default,1|Show in All List Views,3|Only in Admin List View,4|Only in Linked List Views,2|None DB\\\"\\n\\tonchange=\\\"checkAdminBehaviour(this)\\\"\\n\\/>\"', 1, '2015-05-11 13:02:32', '2020-11-14 02:27:47', 35, '', 183, '49a92e23-180d-4df6-86ef-1157883a4e18', '', '', '', '', ''),
(39, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'Admin View (dynamic)', 'NOT NULL', '', 6, '\"<field\\n\\ttype=\\\"adminviews\\\"\\n\\tname=\\\"adminview\\\"\\n\\tlabel=\\\"View\\\"\\n\\tdescription=\\\"Select an admin view\\\"\\n\\tclass=\\\"fieldMedium\\\"\\n\\tmultiple=\\\"false\\\"\\n\\tdefault=\\\"\\\"\\n\\trequired=\\\"true\\\"\\n\\treadonly=\\\"\\\"\\n\\tdisabled=\\\"\\\"\\n\\textends=\\\"list\\\"\\n\\tbutton=\\\"true\\\"\\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\\ttype_php_1=\\\"__.o0=base64=Oo.__JGRiID0gSkZhY3Rvcnk6OmdldERCTygpOw0KJHF1ZXJ5ID0gJGRiLT5nZXRRdWVyeSh0cnVlKTsNCiRxdWVyeS0+c2VsZWN0KCRkYi0+cXVvdGVOYW1lKGFycmF5KCdhLiMjI0lEIyMjJywnYS4jIyNURVhUIyMjJyksYXJyYXkoJyMjI0lEIyMjJywnIyMjQ09ERV9URVhUIyMjJykpKTsNCiRxdWVyeS0+ZnJvbSgkZGItPnF1b3RlTmFtZSgnIyMjVEFCTEUjIyMnLCAnYScpKTsNCiRxdWVyeS0+d2hlcmUoJGRiLT5xdW90ZU5hbWUoJ2EucHVibGlzaGVkJykgLiAnID49IDEnKTsNCiRxdWVyeS0+b3JkZXIoJ2EuIyMjVEVYVCMjIyBBU0MnKTsNCiRkYi0+c2V0UXVlcnkoKHN0cmluZykkcXVlcnkpOw0KJGl0ZW1zID0gJGRiLT5sb2FkT2JqZWN0TGlzdCgpOw0KJG9wdGlvbnMgPSBhcnJheSgpOw0KaWYgKCRpdGVtcykNCnsNClx0JG9wdGlvbnNbXSA9IEpIdG1sOjpfKCdzZWxlY3Qub3B0aW9uJywgJycsICdTZWxlY3QgYW4gb3B0aW9uJyk7DQpcdGZvcmVhY2goJGl0ZW1zIGFzICRpdGVtKQ0KXHR7DQpcdFx0JG9wdGlvbnNbXSA9IEpIdG1sOjpfKCdzZWxlY3Qub3B0aW9uJywgJGl0ZW0tPiMjI0lEIyMjLCAkaXRlbS0+IyMjQ09ERV9URVhUIyMjKTsNClx0fQ0KfQ0KDQpyZXR1cm4gJG9wdGlvbnM7\\\"\\n\\/>\"', 1, '2015-04-28 10:45:32', '2019-07-19 02:24:38', 14, '', 164, '5633c14b-a5cc-4741-9077-b6976af898f6', '', '', '', '', ''),
(40, '', '', '', '', '', '', '', '', 11, '', 'CHAR', '', '', '', 'Background', 'NOT NULL', '', 5, '\"<field type=\\\"color\\\" name=\\\"background\\\" default=\\\"#FFFFFF\\\" label=\\\"Background\\\" description=\\\"Select the background color here.\\\" \\/>\"', 1, '2015-03-30 11:33:34', '2015-08-25 21:15:22', 1, '', 163, '89d225cd-00c0-4540-a714-056b04f6cf93', '', '', '', '', ''),
(41, '', '', '', '', '', '', '', '', 64, '', 'CHAR', '', '', '', 'Banner', 'NOT NULL', '', 12, '\"<field \\r\\n\\ttype=\\\"media\\\" \\r\\n\\tname=\\\"banner\\\" \\r\\n\\tlabel=\\\"Banner\\\" \\r\\n\\tdescription=\\\"\\\" \\r\\n\\tdirectory=\\\"\\\"\\r\\n\\/>\"', 1, '2015-04-29 14:00:56', '2015-08-25 21:15:22', 1, '', 162, '744b4ffc-961c-4e62-adff-495256479798', '', '', '', '', ''),
(42, '', '', '', '', '', '', '', '', 11, '', 'INT', '', '', '', 'Book', 'NOT NULL', '', 6, '\"<field\\n\\ttype=\\\"books\\\"\\n\\tname=\\\"book\\\"\\n\\tlabel=\\\"Select a Book\\\"\\n\\tclass=\\\"list_class\\\"\\n\\trequired=\\\"true\\\"\\n\\textends=\\\"list\\\"\\n\\tbutton=\\\"true\\\"\\n\\ttable=\\\"#__###component###_book\\\"\\n\\tcomponent=\\\"com_###component###\\\"\\n\\tview=\\\"book\\\"\\n\\tviews=\\\"books\\\"\\n\\tvalue_field=\\\"name\\\"\\n\\tkey_field=\\\"id\\\"\\n\\ttype_php_1=\\\"__.o0=base64=Oo.__JGRiID0gSkZhY3Rvcnk6OmdldERCTygpOw0KJHF1ZXJ5ID0gJGRiLT5nZXRRdWVyeSh0cnVlKTsNCiRxdWVyeS0+c2VsZWN0KCRkYi0+cXVvdGVOYW1lKGFycmF5KCdhLiMjI0lEIyMjJywnYS4jIyNURVhUIyMjJyksYXJyYXkoJyMjI0lEIyMjJywnIyMjQ09ERV9URVhUIyMjJykpKTsNCiRxdWVyeS0+ZnJvbSgkZGItPnF1b3RlTmFtZSgnIyMjVEFCTEUjIyMnLCAnYScpKTsNCiRxdWVyeS0+d2hlcmUoJGRiLT5xdW90ZU5hbWUoJ2EucHVibGlzaGVkJykgLiAnID0gMScpOw0KJHF1ZXJ5LT5vcmRlcignYS4jIyNURVhUIyMjIEFTQycpOw0KJGRiLT5zZXRRdWVyeSgoc3RyaW5nKSRxdWVyeSk7DQokaXRlbXMgPSAkZGItPmxvYWRPYmplY3RMaXN0KCk7DQokb3B0aW9ucyA9IGFycmF5KCk7DQppZiAoJGl0ZW1zKQ0Kew0KXHQkb3B0aW9uc1tdID0gSkh0bWw6Ol8oJ3NlbGVjdC5vcHRpb24nLCAnJywgJ1NlbGVjdCBhbiBvcHRpb24nKTsNClx0Zm9yZWFjaCgkaXRlbXMgYXMgJGl0ZW0pDQpcdHsNClx0XHQkb3B0aW9uc1tdID0gSkh0bWw6Ol8oJ3NlbGVjdC5vcHRpb24nLCAkaXRlbS0+IyMjSUQjIyMsICRpdGVtLT4jIyNDT0RFX1RFWFQjIyMpOw0KXHR9DQp9DQoNCnJldHVybiAkb3B0aW9uczs=\\\"\\n\\/>\"', 1, '2015-04-24 07:50:46', '2018-09-21 00:00:44', 9, '', 161, 'e2bbda81-a6c1-41be-907b-24b9d5b97492', '', '', '', '', ''),
(43, '', '', '', '', '', '', '', '', 64, '', 'CHAR', '', '', '', 'Category Icon', 'NOT NULL', '', 12, '\"<field \\r\\n\\ttype=\\\"media\\\" \\r\\n\\tname=\\\"icon_category\\\" \\r\\n\\tlabel=\\\"Category Icon\\\" \\r\\n\\tdescription=\\\"Must be 128px x 128px and a png format..\\\" \\r\\n\\tdirectory=\\\"\\\" \\r\\n\\/>\"', 1, '2015-04-29 14:00:56', '2015-08-25 21:15:22', 1, '', 160, '0d2bdd49-7559-4cc1-a25b-56aacb830760', '', '', '', '', ''),
(44, '', '', '', '', '', '', '', '', 64, '', 'CHAR', '', '', '', 'Company Name (name)', 'NOT NULL', '', 24, '\"<field\\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"name\\\" \\r\\n\\tlabel=\\\"Company Name\\\" \\r\\n\\tsize=\\\"40\\\" \\r\\n\\tmaxlength=\\\"150\\\" \\r\\n\\tdescription=\\\"Enter Company Name Here\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\treadonly=\\\"false\\\" \\r\\n\\tdisabled=\\\"false\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\tfilter=\\\"STRING\\\" \\r\\n\\tmessage=\\\"Error! Please add company name here.\\\" \\r\\n\\thint=\\\"Company Name Here\\\" \\r\\n\\/>\"', 1, '2015-03-19 17:30:59', '2015-08-25 21:15:22', 4, '', 159, 'bb5ba507-fd8d-4a99-950c-a541c3fbeb60', '', '', '', '', ''),
(45, '', '', '', '', '', '', '', '', 7, '', 'INT', '', '', '', 'Completion Point', 'NOT NULL', '', 10, '\"<field \\r\\n\\ttype=\\\"integer\\\" \\r\\n\\tname=\\\"completion_point\\\" \\r\\n\\tlabel=\\\"Completion Point\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tdescription=\\\"Set the completion point\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\tfirst=\\\"0\\\" \\r\\n\\tlast=\\\"20\\\" \\r\\n\\tstep=\\\"1\\\" \\r\\n\\tfilter=\\\"INT\\\"\\r\\n\\/>\"', 1, '2015-04-28 10:52:33', '2015-08-25 21:15:22', 1, '', 158, '863482f3-98b7-4db2-a039-c9704a332e9a', '', '', '', '', ''),
(46, '', '', '', '', '', '', '', '', 64, '', 'CHAR', '', '', '', 'Component Image', 'NOT NULL', '', 12, '\"<field \\r\\n\\ttype=\\\"media\\\" \\r\\n\\tname=\\\"image\\\" \\r\\n\\tlabel=\\\"Component Image\\\" \\r\\n\\tdescription=\\\"The component image (product box) for the dashboard and install page, must be 300px X 300px.\\\"\\r\\n\\tdirectory=\\\"\\\"\\r\\n\\/>\"', 1, '2015-04-29 14:00:56', '2015-08-25 21:15:22', 1, '', 157, '4003ab3f-70d8-4092-a11b-b23215844ffa', '', '', '', '', ''),
(47, '', '', '', '', '', '', '', '', 64, '', 'CHAR', '', '', '', 'Component Name', 'NOT NULL', '', 24, '\"<field\\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"name\\\" \\r\\n\\tlabel=\\\"Name\\\" \\r\\n\\tsize=\\\"40\\\" \\r\\n\\tmaxlength=\\\"150\\\" \\r\\n\\tdescription=\\\"Enter Name Here\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\treadonly=\\\"false\\\" \\r\\n\\tdisabled=\\\"false\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\tfilter=\\\"STRING\\\" \\r\\n\\tmessage=\\\"Error! Please add component name here.\\\" \\r\\n\\thint=\\\"Component Name\\\" \\r\\n\\/>\"', 1, '2015-03-19 17:30:59', '2018-03-10 23:46:30', 3, '', 156, 'b607dfed-bb4a-463d-9e14-f1264c67279b', '', '', '', '', ''),
(48, '', '', '', '', '', '', '', '', 64, '', 'CHAR', '', '', '', 'Component Version', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"component_version\\\" \\r\\n\\tlabel=\\\"Version\\\" \\r\\n\\tsize=\\\"40\\\" \\r\\n\\tmaxlength=\\\"50\\\" \\r\\n\\tdefault=\\\"1.0.0\\\" \\r\\n\\tdescription=\\\"Add Version Number Here\\\" \\r\\n\\tclass=\\\"text_area\\\"\\r\\n\\trequired=\\\"true\\\" \\r\\n\\tfilter=\\\"CMD\\\" \\r\\n\\tmessage=\\\"Error! Please add version here.\\\" \\r\\n\\thint=\\\"1.0.0\\\" \\r\\n\\/>\"', 1, '2015-05-06 08:44:48', '2015-08-25 21:15:22', 1, '', 155, 'dde96c4d-1528-402a-bdea-96ec481a11ef', '', '', '', '', ''),
(49, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Content', 'NOT NULL', '', 8, '\"<field \\r\\n\\ttype=\\\"editor\\\" \\r\\n\\tname=\\\"content\\\" \\r\\n\\tlabel=\\\"Content\\\" \\r\\n\\twidth=\\\"100%\\\" \\r\\n\\theight=\\\"500\\\" \\r\\n\\tfilter=\\\"safehtml\\\" \\r\\n\\trequired=\\\"true\\\"\\r\\n\\/>\"', 1, '2015-04-24 11:30:17', '2015-08-25 21:15:22', 1, '', 154, '7c42bee8-73fb-4483-960a-53de4625eda9', '', '', '', '', ''),
(50, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'Contributor Show', 'NOT NULL', '', 11, '\"<field \\r\\n\\ttype=\\\"list\\\" \\r\\n\\tname=\\\"show\\\" \\r\\n\\tlabel=\\\"Show\\\" \\r\\n\\tdescription=\\\"Select where you want this contributor to show in the component.\\\" \\r\\n\\tclass=\\\"fieldMedium\\\" \\r\\n\\tmultiple=\\\"false\\\" \\r\\n\\tfilter=\\\"\\\" \\r\\n\\trequired=\\\"\\\" \\r\\n\\toption=\\\"0|None,1|Back,2|Front,3|Both\\\" \\r\\n\\tdefault=\\\"3\\\" \\r\\n\\/>\"', 1, '2015-05-11 23:07:30', '2015-08-25 21:15:22', 1, '', 153, 'dff8b457-9e9d-4976-a77d-bb517b183015', '', '', '', '', ''),
(51, '', '', '', '', '', '', '', '', 11, '', 'INT', '', '', '', 'Contributor Title', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"title\\\" \\r\\n\\tlabel=\\\"Job Title\\\" \\r\\n\\tsize=\\\"40\\\" \\r\\n\\tmaxlength=\\\"150\\\" \\r\\n\\tdescription=\\\"Enter contributor\'s title in relation to this component\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\treadonly=\\\"false\\\" \\r\\n\\tdisabled=\\\"false\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\tfilter=\\\"STRING\\\" \\r\\n\\tvalidate=\\\"\\\" \\r\\n\\tfield=\\\"\\\" \\r\\n\\tmessage=\\\"Error! Please add some text here.\\\" \\r\\n\\thint=\\\"Contributor\'s Role\\\" \\r\\n\\/>\"', 1, '2015-05-11 13:02:32', '2015-08-25 21:15:22', 1, '', 152, '30f5a9a8-512a-4aa2-81dc-602a2aa6e6f5', '', '', '', '', ''),
(52, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'Contributor Use', 'NOT NULL', '', 11, '\"<field \\r\\n\\ttype=\\\"list\\\" \\r\\n\\tname=\\\"use\\\" \\r\\n\\tlabel=\\\"Use\\\" \\r\\n\\tdescription=\\\"How should we link to this contributor.\\\" \\r\\n\\tclass=\\\"fieldMedium\\\" \\r\\n\\tmultiple=\\\"false\\\" \\r\\n\\tfilter=\\\"\\\" \\r\\n\\trequired=\\\"\\\" \\r\\n\\toption=\\\"0|None,1|Email,2|Website\\\" \\r\\n\\tdefault=\\\"2\\\" \\r\\n\\/>\"', 1, '2015-05-11 23:05:45', '2015-08-25 21:15:22', 1, '', 151, 'fee57f76-d976-4308-89e2-72a114d37fb1', '', '', '', '', ''),
(53, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Copyright', 'NOT NULL', '', 25, '\"<field\\n\\ttype=\\\"textarea\\\"\\n\\tname=\\\"copyright\\\"\\n\\tlabel=\\\"Copyright\\\"\\n\\trows=\\\"7\\\"\\n\\tcols=\\\"10\\\"\\n\\tdefault=\\\"Copyright (C) 2015. All Rights Reserved\\\"\\n\\tdescription=\\\"Add Copyright Here\\\"\\n\\tclass=\\\"text_area span12\\\"\\n\\tfilter=\\\"SAFEHTML\\\"\\n\\thint=\\\"Add Copyright Here\\\"\\n\\trequired=\\\"true\\\"\\n\\/>\"', 1, '2015-03-19 18:20:49', '2020-07-29 22:32:31', 2, '', 150, 'd4241cde-3446-4318-9269-905b7ea929f4', '', '', '', '', ''),
(54, '', '', '', '', '', '', '', '', 11, '', 'INT', '', '', '', 'Course', 'NOT NULL', '', 6, '\"<field \\r\\n\\ttype=\\\"course\\\" \\r\\n\\tname=\\\"course\\\" \\r\\n\\tlabel=\\\"Select a Course\\\"\\r\\n\\tfilter=\\\"INT\\\"\\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\trequired=\\\"true\\\"\\r\\n\\textends=\\\"list\\\" \\r\\n\\tbutton=\\\"true\\\"\\r\\n\\ttable=\\\"#__###component###_course\\\" \\r\\n\\tcomponent=\\\"com_###component###\\\" \\r\\n\\tview=\\\"course\\\" \\r\\n\\tviews=\\\"courses\\\" \\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###\')))->select($db->quoteName(array(\'c.acronym\'),array(\'program\')));\\\" \\r\\n\\ttype_php_4=\\\"$query->from($db->quoteName(\'#__###component###_course\', \'a\'))->join(\'LEFT\', $db->quoteName(\'#__###component###_program\', \'c\') . \' ON (\' . $db->quoteName(\'a.program\') . \' = \' . $db->quoteName(\'c.id\') . \')\');\\\" \\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$options[] = JHtml::_(\'select.option\', \'\', \'Select an option\');\\\" \\r\\n\\ttype_php_12=\\\"\\\\tforeach($items as $item)\\\" \\r\\n\\ttype_php_13=\\\"\\\\t{\\\" \\r\\n\\ttype_php_14=\\\"\\\\t\\\\t$options[] = JHtml::_(\'select.option\', $item->###ID###, $item->###CODE_TEXT### . \' (\' . $item->program . \')\' );\\\" \\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-04-24 07:50:46', '2016-02-06 21:42:55', 7, '', 149, '48349cda-448d-43b3-97c1-ced5b6474577', '', '', '', '', ''),
(55, '', '', '', '', '', '', '', '', 11, '', 'INT', '', '', '', 'Course 1', 'NOT NULL', '', 6, '\"<field\\r\\n\\ttype=\\\"courses\\\"\\r\\n\\tname=\\\"course_1\\\"\\r\\n\\tlabel=\\\"Select a Course\\\"\\r\\n\\tfilter=\\\"INT\\\"\\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\trequired=\\\"true\\\"\\r\\n\\textends=\\\"list\\\"\\r\\n\\ttable=\\\"#__###component###_course\\\"\\r\\n\\tcomponent=\\\"com_###component###\\\"\\r\\n\\tview=\\\"course\\\"\\r\\n\\tviews=\\\"courses\\\"\\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###\')))->select($db->quoteName(array(\'c.acronym\'),array(\'program\')));\\\" \\r\\n\\ttype_php_4=\\\"$query->from($db->quoteName(\'#__###component###_course\', \'a\'))->join(\'LEFT\', $db->quoteName(\'#__###component###_program\', \'c\') . \' ON (\' . $db->quoteName(\'a.program\') . \' = \' . $db->quoteName(\'c.id\') . \')\');\\\" \\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$options[] = JHtml::_(\'select.option\', \'\', \'Select an option\');\\\" \\r\\n\\ttype_php_12=\\\"\\\\tforeach($items as $item)\\\" \\r\\n\\ttype_php_13=\\\"\\\\t{\\\" \\r\\n\\ttype_php_14=\\\"\\\\t\\\\t$options[] = JHtml::_(\'select.option\', $item->###ID###, $item->###CODE_TEXT### . \' (\' . $item->program . \')\' );\\\" \\r\\n\\ttype_php_15=\\\"\\\\t}\\\" \\r\\n\\ttype_php_16=\\\"}\\\" \\r\\n\\ttype_php_17=\\\"$options = array_merge(parent::getOptions(), $options);\\\" \\r\\n\\ttype_php_18=\\\"return $options;\\\" \\r\\n\\/>\"', -2, '2015-04-24 07:50:46', '2015-08-25 21:15:22', 2, '', 165, '1a4d0599-b066-4537-8a53-08dbd8d950b0', '', '', '', '', ''),
(56, '', '', '', '', '', '', '', '', 11, '', 'INT', '', '', '', 'Course 10', 'NOT NULL', '', 6, '\"<field \\r\\n\\ttype=\\\"courses\\\" \\r\\n\\tname=\\\"course_10\\\" \\r\\n\\tlabel=\\\"Select a Course\\\"\\r\\n\\tfilter=\\\"INT\\\"\\r\\n\\tclass=\\\"list_class\\\"\\r\\n\\textends=\\\"list\\\" \\r\\n\\ttable=\\\"#__###component###_course\\\" \\r\\n\\tcomponent=\\\"com_###component###\\\" \\r\\n\\tview=\\\"course\\\" \\r\\n\\tviews=\\\"courses\\\" \\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###\')))->select($db->quoteName(array(\'c.acronym\'),array(\'program\')));\\\" \\r\\n\\ttype_php_4=\\\"$query->from($db->quoteName(\'#__###component###_course\', \'a\'))->join(\'LEFT\', $db->quoteName(\'#__###component###_program\', \'c\') . \' ON (\' . $db->quoteName(\'a.program\') . \' = \' . $db->quoteName(\'c.id\') . \')\');\\\" \\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$options[] = JHtml::_(\'select.option\', \'\', \'Select an option\');\\\" \\r\\n\\ttype_php_12=\\\"\\\\tforeach($items as $item)\\\" \\r\\n\\ttype_php_13=\\\"\\\\t{\\\" \\r\\n\\ttype_php_14=\\\"\\\\t\\\\t$options[] = JHtml::_(\'select.option\', $item->###ID###, $item->###CODE_TEXT### . \' (\' . $item->program . \')\' );\\\" \\r\\n\\ttype_php_15=\\\"\\\\t}\\\" \\r\\n\\ttype_php_16=\\\"}\\\" \\r\\n\\ttype_php_17=\\\"$options = array_merge(parent::getOptions(), $options);\\\" \\r\\n\\ttype_php_18=\\\"return $options;\\\" \\r\\n\\/>\"', -2, '2015-04-24 07:50:46', '2015-08-25 21:15:22', 2, '', 166, '61e485ab-96d9-4c88-a195-b07db8a66bd1', '', '', '', '', ''),
(57, '', '', '', '', '', '', '', '', 11, '', 'INT', '', '', '', 'Course 2', 'NOT NULL', '', 6, '\"<field \\r\\n\\ttype=\\\"courses\\\" \\r\\n\\tname=\\\"course_2\\\" \\r\\n\\tlabel=\\\"Select a Course\\\"\\r\\n\\tfilter=\\\"INT\\\"\\r\\n\\tclass=\\\"list_class\\\"\\r\\n\\textends=\\\"list\\\" \\r\\n\\ttable=\\\"#__###component###_course\\\" \\r\\n\\tcomponent=\\\"com_###component###\\\" \\r\\n\\tview=\\\"course\\\" \\r\\n\\tviews=\\\"courses\\\" \\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###\')))->select($db->quoteName(array(\'c.acronym\'),array(\'program\')));\\\" \\r\\n\\ttype_php_4=\\\"$query->from($db->quoteName(\'#__###component###_course\', \'a\'))->join(\'LEFT\', $db->quoteName(\'#__###component###_program\', \'c\') . \' ON (\' . $db->quoteName(\'a.program\') . \' = \' . $db->quoteName(\'c.id\') . \')\');\\\" \\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$options[] = JHtml::_(\'select.option\', \'\', \'Select an option\');\\\" \\r\\n\\ttype_php_12=\\\"\\\\tforeach($items as $item)\\\" \\r\\n\\ttype_php_13=\\\"\\\\t{\\\" \\r\\n\\ttype_php_14=\\\"\\\\t\\\\t$options[] = JHtml::_(\'select.option\', $item->###ID###, $item->###CODE_TEXT### . \' (\' . $item->program . \')\' );\\\" \\r\\n\\ttype_php_15=\\\"\\\\t}\\\" \\r\\n\\ttype_php_16=\\\"}\\\" \\r\\n\\ttype_php_17=\\\"$options = array_merge(parent::getOptions(), $options);\\\" \\r\\n\\ttype_php_18=\\\"return $options;\\\" \\r\\n\\/>\"', -2, '2015-04-24 07:50:46', '2015-08-25 21:15:22', 3, '', 182, 'a4cb9b66-0b43-4f2d-8f69-b0421c67f7e9', '', '', '', '', ''),
(58, '', '', '', '', '', '', '', '', 11, '', 'INT', '', '', '', 'Course 3', 'NOT NULL', '', 6, '\"<field \\r\\n\\ttype=\\\"courses\\\" \\r\\n\\tname=\\\"course_3\\\" \\r\\n\\tlabel=\\\"Select a Course\\\"\\r\\n\\tfilter=\\\"INT\\\"\\r\\n\\tclass=\\\"list_class\\\"\\r\\n\\textends=\\\"list\\\" \\r\\n\\ttable=\\\"#__###component###_course\\\" \\r\\n\\tcomponent=\\\"com_###component###\\\" \\r\\n\\tview=\\\"course\\\" \\r\\n\\tviews=\\\"courses\\\" \\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###\')))->select($db->quoteName(array(\'c.acronym\'),array(\'program\')));\\\" \\r\\n\\ttype_php_4=\\\"$query->from($db->quoteName(\'#__###component###_course\', \'a\'))->join(\'LEFT\', $db->quoteName(\'#__###component###_program\', \'c\') . \' ON (\' . $db->quoteName(\'a.program\') . \' = \' . $db->quoteName(\'c.id\') . \')\');\\\" \\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$options[] = JHtml::_(\'select.option\', \'\', \'Select an option\');\\\" \\r\\n\\ttype_php_12=\\\"\\\\tforeach($items as $item)\\\" \\r\\n\\ttype_php_13=\\\"\\\\t{\\\" \\r\\n\\ttype_php_14=\\\"\\\\t\\\\t$options[] = JHtml::_(\'select.option\', $item->###ID###, $item->###CODE_TEXT### . \' (\' . $item->program . \')\' );\\\" \\r\\n\\ttype_php_15=\\\"\\\\t}\\\" \\r\\n\\ttype_php_16=\\\"}\\\" \\r\\n\\ttype_php_17=\\\"$options = array_merge(parent::getOptions(), $options);\\\" \\r\\n\\ttype_php_18=\\\"return $options;\\\" \\r\\n\\/>\"', -2, '2015-04-24 07:50:46', '2015-08-25 21:15:22', 2, '', 181, 'c5913e72-c856-4ffe-83b0-91a3a234faca', '', '', '', '', ''),
(59, '', '', '', '', '', '', '', '', 11, '', 'INT', '', '', '', 'Course 4', 'NOT NULL', '', 6, '\"<field \\r\\n\\ttype=\\\"courses\\\" \\r\\n\\tname=\\\"course_4\\\" \\r\\n\\tlabel=\\\"Select a Course\\\"\\r\\n\\tfilter=\\\"INT\\\"\\r\\n\\tclass=\\\"list_class\\\"\\r\\n\\textends=\\\"list\\\" \\r\\n\\ttable=\\\"#__###component###_course\\\" \\r\\n\\tcomponent=\\\"com_###component###\\\" \\r\\n\\tview=\\\"course\\\" \\r\\n\\tviews=\\\"courses\\\" \\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###\')))->select($db->quoteName(array(\'c.acronym\'),array(\'program\')));\\\" \\r\\n\\ttype_php_4=\\\"$query->from($db->quoteName(\'#__###component###_course\', \'a\'))->join(\'LEFT\', $db->quoteName(\'#__###component###_program\', \'c\') . \' ON (\' . $db->quoteName(\'a.program\') . \' = \' . $db->quoteName(\'c.id\') . \')\');\\\" \\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$options[] = JHtml::_(\'select.option\', \'\', \'Select an option\');\\\" \\r\\n\\ttype_php_12=\\\"\\\\tforeach($items as $item)\\\" \\r\\n\\ttype_php_13=\\\"\\\\t{\\\" \\r\\n\\ttype_php_14=\\\"\\\\t\\\\t$options[] = JHtml::_(\'select.option\', $item->###ID###, $item->###CODE_TEXT### . \' (\' . $item->program . \')\' );\\\" \\r\\n\\ttype_php_15=\\\"\\\\t}\\\" \\r\\n\\ttype_php_16=\\\"}\\\" \\r\\n\\ttype_php_17=\\\"$options = array_merge(parent::getOptions(), $options);\\\" \\r\\n\\ttype_php_18=\\\"return $options;\\\" \\r\\n\\/>\"', -2, '2015-04-24 07:50:46', '2015-08-25 21:15:22', 2, '', 180, '890b9521-452f-42da-9798-75e6d829b024', '', '', '', '', ''),
(60, '', '', '', '', '', '', '', '', 11, '', 'INT', '', '', '', 'Course 5', 'NOT NULL', '', 6, '\"<field \\r\\n\\ttype=\\\"courses\\\" \\r\\n\\tname=\\\"course_5\\\" \\r\\n\\tlabel=\\\"Select a Course\\\"\\r\\n\\tfilter=\\\"INT\\\"\\r\\n\\tclass=\\\"list_class\\\"\\r\\n\\textends=\\\"list\\\" \\r\\n\\ttable=\\\"#__###component###_course\\\" \\r\\n\\tcomponent=\\\"com_###component###\\\" \\r\\n\\tview=\\\"course\\\" \\r\\n\\tviews=\\\"courses\\\" \\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###\')))->select($db->quoteName(array(\'c.acronym\'),array(\'program\')));\\\" \\r\\n\\ttype_php_4=\\\"$query->from($db->quoteName(\'#__###component###_course\', \'a\'))->join(\'LEFT\', $db->quoteName(\'#__###component###_program\', \'c\') . \' ON (\' . $db->quoteName(\'a.program\') . \' = \' . $db->quoteName(\'c.id\') . \')\');\\\" \\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$options[] = JHtml::_(\'select.option\', \'\', \'Select an option\');\\\" \\r\\n\\ttype_php_12=\\\"\\\\tforeach($items as $item)\\\" \\r\\n\\ttype_php_13=\\\"\\\\t{\\\" \\r\\n\\ttype_php_14=\\\"\\\\t\\\\t$options[] = JHtml::_(\'select.option\', $item->###ID###, $item->###CODE_TEXT### . \' (\' . $item->program . \')\' );\\\" \\r\\n\\ttype_php_15=\\\"\\\\t}\\\" \\r\\n\\ttype_php_16=\\\"}\\\" \\r\\n\\ttype_php_17=\\\"$options = array_merge(parent::getOptions(), $options);\\\" \\r\\n\\ttype_php_18=\\\"return $options;\\\" \\r\\n\\/>\"', -2, '2015-04-24 07:50:46', '2015-08-25 21:15:22', 2, '', 179, '5d6c5f5b-3779-4f8d-8c4f-ff98a3d2a373', '', '', '', '', ''),
(61, '', '', '', '', '', '', '', '', 11, '', 'INT', '', '', '', 'Course 6', 'NOT NULL', '', 6, '\"<field \\r\\n\\ttype=\\\"courses\\\" \\r\\n\\tname=\\\"course_6\\\" \\r\\n\\tlabel=\\\"Select a Course\\\"\\r\\n\\tfilter=\\\"INT\\\"\\r\\n\\tclass=\\\"list_class\\\"\\r\\n\\textends=\\\"list\\\" \\r\\n\\ttable=\\\"#__###component###_course\\\" \\r\\n\\tcomponent=\\\"com_###component###\\\" \\r\\n\\tview=\\\"course\\\" \\r\\n\\tviews=\\\"courses\\\" \\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###\')))->select($db->quoteName(array(\'c.acronym\'),array(\'program\')));\\\" \\r\\n\\ttype_php_4=\\\"$query->from($db->quoteName(\'#__###component###_course\', \'a\'))->join(\'LEFT\', $db->quoteName(\'#__###component###_program\', \'c\') . \' ON (\' . $db->quoteName(\'a.program\') . \' = \' . $db->quoteName(\'c.id\') . \')\');\\\" \\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$options[] = JHtml::_(\'select.option\', \'\', \'Select an option\');\\\" \\r\\n\\ttype_php_12=\\\"\\\\tforeach($items as $item)\\\" \\r\\n\\ttype_php_13=\\\"\\\\t{\\\" \\r\\n\\ttype_php_14=\\\"\\\\t\\\\t$options[] = JHtml::_(\'select.option\', $item->###ID###, $item->###CODE_TEXT### . \' (\' . $item->program . \')\' );\\\" \\r\\n\\ttype_php_15=\\\"\\\\t}\\\" \\r\\n\\ttype_php_16=\\\"}\\\" \\r\\n\\ttype_php_17=\\\"$options = array_merge(parent::getOptions(), $options);\\\" \\r\\n\\ttype_php_18=\\\"return $options;\\\" \\r\\n\\/>\"', -2, '2015-04-24 07:50:46', '2015-08-25 21:15:22', 2, '', 178, '85f47d11-ef73-458a-af6d-6738e8a0c15a', '', '', '', '', ''),
(62, '', '', '', '', '', '', '', '', 11, '', 'INT', '', '', '', 'Course 7', 'NOT NULL', '', 6, '\"<field \\r\\n\\ttype=\\\"courses\\\" \\r\\n\\tname=\\\"course_7\\\" \\r\\n\\tlabel=\\\"Select a Course\\\"\\r\\n\\tfilter=\\\"INT\\\"\\r\\n\\tclass=\\\"list_class\\\"\\r\\n\\textends=\\\"list\\\" \\r\\n\\ttable=\\\"#__###component###_course\\\" \\r\\n\\tcomponent=\\\"com_###component###\\\" \\r\\n\\tview=\\\"course\\\" \\r\\n\\tviews=\\\"courses\\\" \\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###\')))->select($db->quoteName(array(\'c.acronym\'),array(\'program\')));\\\" \\r\\n\\ttype_php_4=\\\"$query->from($db->quoteName(\'#__###component###_course\', \'a\'))->join(\'LEFT\', $db->quoteName(\'#__###component###_program\', \'c\') . \' ON (\' . $db->quoteName(\'a.program\') . \' = \' . $db->quoteName(\'c.id\') . \')\');\\\" \\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$options[] = JHtml::_(\'select.option\', \'\', \'Select an option\');\\\" \\r\\n\\ttype_php_12=\\\"\\\\tforeach($items as $item)\\\" \\r\\n\\ttype_php_13=\\\"\\\\t{\\\" \\r\\n\\ttype_php_14=\\\"\\\\t\\\\t$options[] = JHtml::_(\'select.option\', $item->###ID###, $item->###CODE_TEXT### . \' (\' . $item->program . \')\' );\\\" \\r\\n\\ttype_php_15=\\\"\\\\t}\\\" \\r\\n\\ttype_php_16=\\\"}\\\" \\r\\n\\ttype_php_17=\\\"$options = array_merge(parent::getOptions(), $options);\\\" \\r\\n\\ttype_php_18=\\\"return $options;\\\" \\r\\n\\/>\"', -2, '2015-04-24 07:50:46', '2015-08-25 21:15:22', 2, '', 177, '4b058cb4-2e8b-4d86-b98b-d7f4a1d3c975', '', '', '', '', ''),
(63, '', '', '', '', '', '', '', '', 11, '', 'INT', '', '', '', 'Course 8', 'NOT NULL', '', 6, '\"<field \\r\\n\\ttype=\\\"courses\\\" \\r\\n\\tname=\\\"course_8\\\" \\r\\n\\tlabel=\\\"Select a Course\\\"\\r\\n\\tfilter=\\\"INT\\\"\\r\\n\\tclass=\\\"list_class\\\"\\r\\n\\textends=\\\"list\\\" \\r\\n\\ttable=\\\"#__###component###_course\\\" \\r\\n\\tcomponent=\\\"com_###component###\\\" \\r\\n\\tview=\\\"course\\\" \\r\\n\\tviews=\\\"courses\\\" \\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###\')))->select($db->quoteName(array(\'c.acronym\'),array(\'program\')));\\\" \\r\\n\\ttype_php_4=\\\"$query->from($db->quoteName(\'#__###component###_course\', \'a\'))->join(\'LEFT\', $db->quoteName(\'#__###component###_program\', \'c\') . \' ON (\' . $db->quoteName(\'a.program\') . \' = \' . $db->quoteName(\'c.id\') . \')\');\\\" \\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$options[] = JHtml::_(\'select.option\', \'\', \'Select an option\');\\\" \\r\\n\\ttype_php_12=\\\"\\\\tforeach($items as $item)\\\" \\r\\n\\ttype_php_13=\\\"\\\\t{\\\" \\r\\n\\ttype_php_14=\\\"\\\\t\\\\t$options[] = JHtml::_(\'select.option\', $item->###ID###, $item->###CODE_TEXT### . \' (\' . $item->program . \')\' );\\\" \\r\\n\\ttype_php_15=\\\"\\\\t}\\\" \\r\\n\\ttype_php_16=\\\"}\\\" \\r\\n\\ttype_php_17=\\\"$options = array_merge(parent::getOptions(), $options);\\\" \\r\\n\\ttype_php_18=\\\"return $options;\\\" \\r\\n\\/>\"', -2, '2015-04-24 07:50:46', '2015-08-25 21:15:22', 2, '', 176, 'a1e788e4-ab8d-4590-9c58-5a3531d2145d', '', '', '', '', ''),
(64, '', '', '', '', '', '', '', '', 11, '', 'INT', '', '', '', 'Course 9', 'NOT NULL', '', 6, '\"<field \\r\\n\\ttype=\\\"courses\\\" \\r\\n\\tname=\\\"course_9\\\" \\r\\n\\tlabel=\\\"Select a Course\\\"\\r\\n\\tfilter=\\\"INT\\\"\\r\\n\\tclass=\\\"list_class\\\"\\r\\n\\textends=\\\"list\\\" \\r\\n\\ttable=\\\"#__###component###_course\\\" \\r\\n\\tcomponent=\\\"com_###component###\\\" \\r\\n\\tview=\\\"course\\\" \\r\\n\\tviews=\\\"courses\\\" \\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###\')))->select($db->quoteName(array(\'c.acronym\'),array(\'program\')));\\\" \\r\\n\\ttype_php_4=\\\"$query->from($db->quoteName(\'#__###component###_course\', \'a\'))->join(\'LEFT\', $db->quoteName(\'#__###component###_program\', \'c\') . \' ON (\' . $db->quoteName(\'a.program\') . \' = \' . $db->quoteName(\'c.id\') . \')\');\\\" \\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$options[] = JHtml::_(\'select.option\', \'\', \'Select an option\');\\\" \\r\\n\\ttype_php_12=\\\"\\\\tforeach($items as $item)\\\" \\r\\n\\ttype_php_13=\\\"\\\\t{\\\" \\r\\n\\ttype_php_14=\\\"\\\\t\\\\t$options[] = JHtml::_(\'select.option\', $item->###ID###, $item->###CODE_TEXT### . \' (\' . $item->program . \')\' );\\\" \\r\\n\\ttype_php_15=\\\"\\\\t}\\\" \\r\\n\\ttype_php_16=\\\"}\\\" \\r\\n\\ttype_php_17=\\\"$options = array_merge(parent::getOptions(), $options);\\\" \\r\\n\\ttype_php_18=\\\"return $options;\\\" \\r\\n\\/>\"', -2, '2015-04-24 07:50:46', '2015-08-25 21:15:22', 2, '', 175, 'facf920c-9f84-4902-832f-90c99f985b29', '', '', '', '', ''),
(65, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'CSS (view)', 'NOT NULL', 2, 8, '\"<field\\n\\ttype=\\\"editor\\\"\\n\\tname=\\\"css_view\\\"\\n\\tlabel=\\\"CSS\\\"\\n\\tdescription=\\\"Add CSS for the edit view. 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-11 12:36:14', '2019-07-08 14:08:52', 3, '', 174, '1ad12721-9ee9-4623-98d2-071ba013a373', '', '', '', '', ''),
(66, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'CSS (views)', 'NOT NULL', 2, 8, '\"<field\\n\\ttype=\\\"editor\\\"\\n\\tname=\\\"css_views\\\"\\n\\tlabel=\\\"CSS\\\"\\n\\tdescription=\\\"Add CSS for the list view. 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-11 12:36:14', '2019-07-08 14:11:27', 3, '', 173, '63d5585f-c9bd-485d-9c1d-4a29a4fbf4b2', '', '', '', '', ''),
(67, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Dashboard (add record)', 'NOT NULL', '', 3, '\"<field\\n\\ttype=\\\"checkbox\\\"\\n\\tname=\\\"dashboard_add\\\"\\n\\tlabel=\\\"Dashboard (add record)\\\"\\n\\tvalue=\\\"1\\\"\\n\\tdefault=\\\"\\\"\\n\\tdescription=\\\"Select if the view should show on the dashboard.\\\"\\n\\tclass=\\\"inputbox\\\"\\n\\/>\"', 1, '2015-05-11 23:14:53', '2019-06-11 12:18:56', 3, '', 172, '83be05c9-a5ec-4e50-a4f2-13a784c3ed81', '', '', '', '', ''),
(68, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'Dashboard (list of records)', 'NOT NULL', '', 3, '\"<field\\n\\ttype=\\\"checkbox\\\"\\n\\tname=\\\"dashboard_list\\\"\\n\\tlabel=\\\"Dashboard (list of records)\\\"\\n\\tvalue=\\\"1\\\"\\n\\tdefault=\\\"1\\\"\\n\\tdescription=\\\"Select if the view should show on the dashboard.\\\"\\n\\tclass=\\\"inputbox\\\"\\n\\/>\"', 1, '2015-05-11 23:14:53', '2019-06-11 12:19:11', 4, '', 171, '85d0ff42-adf5-41dc-9164-6f249f17b90d', '', '', '', '', ''),
(69, '', '', '', '', '', '', '', '', 64, '', 'CHAR', 2, '', '', 'Data Default', 'NOT NULL', '', 11, '\"<field \\r\\n\\ttype=\\\"list\\\" \\r\\n\\tname=\\\"datadefault\\\" \\r\\n\\tlabel=\\\"Data Default\\\" \\r\\n\\tdescription=\\\"The data default value for mysql\\\" \\r\\n\\tclass=\\\"btn-group\\\" \\r\\n\\tmultiple=\\\"false\\\" \\r\\n\\tfilter=\\\"\\\" \\r\\n\\trequired=\\\"\\\" \\r\\n\\toption=\\\"|None,0,1,CURRENT_TIMESTAMP,DATETIME,Other\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\/>\"', 1, '2015-05-10 21:24:57', '2015-08-25 21:15:22', 1, '', 170, '6ba76a0f-55a4-49ce-911a-0a3f05674bef', '', '', '', '', ''),
(70, '', '', '', '', '', '', '', '', 64, '', 'CHAR', 2, '', '', 'Data Length', 'NOT NULL', '', 11, '\"<field\\n\\ttype=\\\"list\\\"\\n\\tname=\\\"datalenght\\\"\\n\\tlabel=\\\"Data Length\\\"\\n\\tdescription=\\\"The data length for selected data type (size)\\\"\\n\\tclass=\\\"btn-group\\\"\\n\\tmultiple=\\\"false\\\"\\n\\trequired=\\\"true\\\"\\n\\toption=\\\"|None Set,1,7,10,11,50,64,100,255,1024,2048,Other\\\"\\n\\tdefault=\\\"\\\"\\n\\/>\"', 1, '2015-05-10 21:23:10', '2019-09-12 19:42:19', 3, '', 169, 'b3ea0d94-1029-41d8-9f6b-bcbec6b715f4', '', '', '', '', ''),
(71, '', '', '', '', '', '', '', '', 64, '', 'CHAR', 2, '', '', 'Data Type', 'NOT NULL', '', 11, '\"<field\\n\\ttype=\\\"list\\\"\\n\\tname=\\\"datatype\\\"\\n\\tlabel=\\\"Data Type\\\"\\n\\tdescription=\\\"The data type for mysql\\\"\\n\\tclass=\\\"btn-group\\\"\\n\\tmultiple=\\\"false\\\"\\n\\tfilter=\\\"\\\"\\n\\trequired=\\\"true\\\"\\n\\toption=\\\"|Select an option,CHAR,VARCHAR,TEXT,MEDIUMTEXT,LONGTEXT,BLOB,TINYBLOB,MEDIUMBLOB,LONGBLOB,DATETIME,DATE,TIME,INT,TINYINT,BIGINT,FLOAT,DECIMAL,DOUBLE\\\"\\n\\tdefault=\\\"\\\"\\n\\/>\"', 1, '2015-05-10 21:23:10', '2019-01-07 07:46:06', 9, '', 168, 'e41e74b2-a265-4269-8ec6-1d890c893798', '', '', '', '', ''),
(72, '', '', '', '', '', '', 'Other', '0000-00-00 00:00:00', '', '', 'DATETIME', '', '', '', 'Date', 'NOT NULL', '', 1, '\"<field \\r\\n\\ttype=\\\"calendar\\\" \\r\\n\\tname=\\\"date\\\" \\r\\n\\tlabel=\\\"Date\\\" \\r\\n\\tdefault=\\\"now\\\" \\r\\n\\trequired=\\\"true\\\"\\r\\n\\tsize=\\\"22\\\" \\r\\n\\tformat=\\\"%Y-%m-%d\\\"\\r\\n\\tfilter=\\\"user_utc\\\" \\r\\n\\/>\"', 1, '2015-04-28 23:17:23', '2017-09-21 22:26:50', 7, '', 167, '0679c333-95ed-4408-b75e-30581021e921', '', '', '', '', ''),
(82, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'Day', 'NOT NULL', '', 11, '\"<field \\r\\n\\ttype=\\\"list\\\" \\r\\n\\tname=\\\"day\\\" \\r\\n\\tlabel=\\\"Select a day\\\" \\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\tmultiple=\\\"false\\\" \\r\\n\\trequired=\\\"true\\\"\\r\\n\\tfilter=\\\"INT\\\"\\r\\n\\toption=\\\"|Select an option,1|First Day,2|Second Day,3|Third Day,4|Fourth Day,5|Fifth Day,6|Sixth Day,7|Seventh Day,8|Eight Day,9|Ninth Day,10|Tenth Day,11|Eleventh Day,12|Twelfth Day,13|Thirteenth Day,14|Fourteenth Day,15|Fifteenth Day,16|Sixteenth Day,17|Seventeenth Day,18|Eighteenth Day,19|Nineteenth Day,20|Twentieth Day,21|Twenty First Day,22|Twenty Second Day,23|Twenty Third Day,24|Twenty Fourth Day,25|Twenty Fifth Day,26|Twenty Sixth Day,27|Twenty Seventh Day,28|Twenty Eighth Day,29|Twenty Ninth Day,30|Thirtieth Day,31|Thirty First Day\\\" \\r\\n\\/>\"', 1, '2015-04-24 11:04:31', '2015-09-11 17:14:02', 4, '', 267, 'a794b9bc-3cbc-41ed-b23b-ab07d6be80e5', '', '', '', '', ''),
(83, '', '', '', '', '', '', '', '', 11, '', 'INT', '', '', '', 'DayClosed', 'NOT NULL', '', 6, '\"<field \\r\\n\\ttype=\\\"days\\\" \\r\\n\\tname=\\\"day\\\" \\r\\n\\tlabel=\\\"Select a Day\\\"\\r\\n\\tfilter=\\\"INT\\\"\\r\\n\\tclass=\\\"list_class\\\"\\r\\n\\textends=\\\"list\\\" \\r\\n\\ttable=\\\"#__###component###_day\\\" \\r\\n\\tcomponent=\\\"com_###component###\\\" \\r\\n\\tview=\\\"day\\\" \\r\\n\\tviews=\\\"days\\\" \\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 an option\');\\\" \\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-04-24 07:50:46', '2015-08-25 21:15:22', 4, '', 266, '29439dc3-d7b6-4a3d-8c2e-389d1b27ae34', '', '', '', '', ''),
(84, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Description (full width)', 'NULL', '', 25, '\"<field\\n\\ttype=\\\"textarea\\\"\\n\\tname=\\\"description\\\"\\n\\tlabel=\\\"Description\\\"\\n\\trows=\\\"11\\\"\\n\\tcols=\\\"10\\\"\\n\\tdescription=\\\"Add Description Here\\\"\\n\\tclass=\\\"text_area span12\\\"\\n\\tfilter=\\\"HTML\\\"\\n\\thint=\\\"Add Description Here\\\"\\n\\/>\"', 1, '2015-03-19 18:20:49', '2024-03-06 15:53:48', 5, '', 265, '749a9917-90c3-49c4-9e72-aa33b0683a87', '', '', '', '', ''),
(85, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Description (one line)', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"description\\\"\\n\\tlabel=\\\"Description\\\"\\n\\tsize=\\\"80\\\"\\n\\tmaxlength=\\\"150\\\"\\n\\tdescription=\\\"Enter some description\\\"\\n\\tclass=\\\"text_area\\\"\\n\\treadonly=\\\"false\\\"\\n\\tdisabled=\\\"false\\\"\\n\\trequired=\\\"true\\\"\\n\\tfilter=\\\"STRING\\\"\\n\\tmessage=\\\"Error! Please add description here.\\\"\\n\\thint=\\\"Description Here\\\"\\n\\/>\"', 1, '2015-03-19 18:20:49', '2019-06-26 00:10:46', 4, '', 264, 'a5ef0756-5ecd-49ae-a36c-058b90758988', '', '', '', '', ''),
(86, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Description (small box)', 'NOT NULL', '', 25, '\"<field \\r\\n\\ttype=\\\"textarea\\\" \\r\\n\\tname=\\\"description\\\" \\r\\n\\tlabel=\\\"Description\\\" \\r\\n\\trows=\\\"5\\\" \\r\\n\\tcols=\\\"8\\\" \\r\\n\\tdescription=\\\"Add Description Here\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\tfilter=\\\"HTML\\\" \\r\\n\\thint=\\\"Add Description Here\\\" \\r\\n\\/>\"', 1, '2015-03-19 18:20:49', '2015-08-25 21:15:22', 1, '', 263, 'ee1dbecf-f67e-4db3-a676-7da886536cae', '', '', '', '', ''),
(87, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Details', 'NOT NULL', '', 8, '\"<field \\r\\n\\ttype=\\\"editor\\\" \\r\\n\\tname=\\\"details\\\" \\r\\n\\tlabel=\\\"Details\\\" \\r\\n\\twidth=\\\"100%\\\" \\r\\n\\theight=\\\"500\\\" \\r\\n\\tfilter=\\\"safehtml\\\" \\r\\n\\trequired=\\\"true\\\"\\r\\n\\/>\"', 1, '2015-03-19 18:20:49', '2015-08-25 21:15:22', 1, '', 262, '0b1e25b6-6910-4236-8d6a-76ca069edf41', '', '', '', '', ''),
(88, '', '', '', '', '', '', '', '', 64, '', 'CHAR', '', '', '', 'Doc 1', 'NOT NULL', '', 12, '\"<field \\r\\n\\ttype=\\\"media\\\" \\r\\n\\tname=\\\"doc_1\\\" \\r\\n\\tlabel=\\\"Document\\\" \\r\\n\\tdescription=\\\"Add a document to this session\\\" \\r\\n\\tdirectory=\\\"\\\" \\r\\n\\tpreview=\\\"false\\\" \\r\\n\\/>\"', 1, '2015-04-29 14:00:56', '2015-08-25 21:15:22', 1, '', 261, 'aa0df8c6-1cde-447a-b176-89636f5a706f', '', '', '', '', ''),
(89, '', '', '', '', '', '', '', '', 64, '', 'CHAR', '', '', '', 'Doc 10', 'NOT NULL', '', 12, '\"<field \\r\\n\\ttype=\\\"media\\\" \\r\\n\\tname=\\\"doc_10\\\" \\r\\n\\tlabel=\\\"Document\\\" \\r\\n\\tdescription=\\\"Add a document to this session\\\" \\r\\n\\tdirectory=\\\"\\\" \\r\\n\\tpreview=\\\"false\\\" \\r\\n\\/>\"', 1, '2015-04-29 14:00:56', '2015-08-25 21:15:22', 1, '', 260, '0d555add-53b2-4777-be4f-dec82c066336', '', '', '', '', ''),
(90, '', '', '', '', '', '', '', '', 64, '', 'CHAR', '', '', '', 'Doc 11', 'NOT NULL', '', 12, '\"<field \\r\\n\\ttype=\\\"media\\\" \\r\\n\\tname=\\\"doc_11\\\" \\r\\n\\tlabel=\\\"Document\\\" \\r\\n\\tdescription=\\\"Add a document to this session\\\" \\r\\n\\tdirectory=\\\"\\\" \\r\\n\\tpreview=\\\"false\\\" \\r\\n\\/>\"', 1, '2015-04-29 14:00:56', '2015-08-25 21:15:22', 1, '', 259, '3f468941-377a-46f2-b54c-aaf45c0b2f87', '', '', '', '', ''),
(91, '', '', '', '', '', '', '', '', 64, '', 'CHAR', '', '', '', 'Doc 12', 'NOT NULL', '', 12, '\"<field \\r\\n\\ttype=\\\"media\\\" \\r\\n\\tname=\\\"doc_12\\\" \\r\\n\\tlabel=\\\"Document\\\" \\r\\n\\tdescription=\\\"Add a document to this session\\\" \\r\\n\\tdirectory=\\\"\\\" \\r\\n\\tpreview=\\\"false\\\" \\r\\n\\/>\"', 1, '2015-04-29 14:00:56', '2015-08-25 21:15:22', 1, '', 275, '681c4329-7ecc-419c-b7eb-9de6aec72d91', '', '', '', '', ''),
(92, '', '', '', '', '', '', '', '', 64, '', 'CHAR', '', '', '', 'Doc 2', 'NOT NULL', '', 12, '\"<field \\r\\n\\ttype=\\\"media\\\" \\r\\n\\tname=\\\"doc_2\\\" \\r\\n\\tlabel=\\\"Document\\\" \\r\\n\\tdescription=\\\"Add a document to this session\\\" \\r\\n\\tdirectory=\\\"\\\" \\r\\n\\tpreview=\\\"false\\\" \\r\\n\\/>\"', 1, '2015-04-29 14:00:56', '2015-08-25 21:15:22', 1, '', 276, '01dc4025-85c3-4bed-a141-c55fac7437e6', '', '', '', '', ''),
(93, '', '', '', '', '', '', '', '', 64, '', 'CHAR', '', '', '', 'Doc 3', 'NOT NULL', '', 12, '\"<field \\r\\n\\ttype=\\\"media\\\" \\r\\n\\tname=\\\"doc_3\\\" \\r\\n\\tlabel=\\\"Document\\\" \\r\\n\\tdescription=\\\"Add a document to this session\\\" \\r\\n\\tdirectory=\\\"\\\" \\r\\n\\tpreview=\\\"false\\\" \\r\\n\\/>\"', 1, '2015-04-29 14:00:56', '2015-08-25 21:15:22', 1, '', 286, 'df78ffd1-f3f6-4d24-a0a8-bb9d3ce0df56', '', '', '', '', ''),
(94, '', '', '', '', '', '', '', '', 64, '', 'CHAR', '', '', '', 'Doc 4', 'NOT NULL', '', 12, '\"<field \\r\\n\\ttype=\\\"media\\\" \\r\\n\\tname=\\\"doc_4\\\" \\r\\n\\tlabel=\\\"Document\\\" \\r\\n\\tdescription=\\\"Add a document to this session\\\" \\r\\n\\tdirectory=\\\"\\\" \\r\\n\\tpreview=\\\"false\\\" \\r\\n\\/>\"', 1, '2015-04-29 14:00:56', '2015-08-25 21:15:22', 1, '', 287, '5df9dd11-d510-45c2-89cd-51e4f1af94a5', '', '', '', '', ''),
(95, '', '', '', '', '', '', '', '', 64, '', 'CHAR', '', '', '', 'Doc 5', 'NOT NULL', '', 12, '\"<field \\r\\n\\ttype=\\\"media\\\" \\r\\n\\tname=\\\"doc_5\\\" \\r\\n\\tlabel=\\\"Document\\\" \\r\\n\\tdescription=\\\"Add a document to this session\\\" \\r\\n\\tdirectory=\\\"\\\" \\r\\n\\tpreview=\\\"false\\\" \\r\\n\\/>\"', 1, '2015-04-29 14:00:56', '2015-08-25 21:15:22', 1, '', 288, '14a0f886-6f6c-43b2-8a6f-6c87e9bf0734', '', '', '', '', ''),
(96, '', '', '', '', '', '', '', '', 64, '', 'CHAR', '', '', '', 'Doc 6', 'NOT NULL', '', 12, '\"<field \\r\\n\\ttype=\\\"media\\\" \\r\\n\\tname=\\\"doc_6\\\" \\r\\n\\tlabel=\\\"Document\\\" \\r\\n\\tdescription=\\\"Add a document to this session\\\" \\r\\n\\tdirectory=\\\"\\\" \\r\\n\\tpreview=\\\"false\\\" \\r\\n\\/>\"', 1, '2015-04-29 14:00:56', '2015-08-25 21:15:22', 1, '', 290, 'fd7b27f5-66fb-4b29-86cf-7cabc7ab643a', '', '', '', '', ''),
(97, '', '', '', '', '', '', '', '', 64, '', 'CHAR', '', '', '', 'Doc 7', 'NOT NULL', '', 12, '\"<field \\r\\n\\ttype=\\\"media\\\" \\r\\n\\tname=\\\"doc_7\\\" \\r\\n\\tlabel=\\\"Document\\\" \\r\\n\\tdescription=\\\"Add a document to this session\\\" \\r\\n\\tdirectory=\\\"\\\" \\r\\n\\tpreview=\\\"false\\\" \\r\\n\\/>\"', 1, '2015-04-29 14:00:56', '2015-08-25 21:15:22', 1, '', 291, '38e4d645-66b7-4d2e-a976-5769bbf86338', '', '', '', '', ''),
(98, '', '', '', '', '', '', '', '', 64, '', 'CHAR', '', '', '', 'Doc 8', 'NOT NULL', '', 12, '\"<field \\r\\n\\ttype=\\\"media\\\" \\r\\n\\tname=\\\"doc_8\\\" \\r\\n\\tlabel=\\\"Document\\\" \\r\\n\\tdescription=\\\"Add a document to this session\\\" \\r\\n\\tdirectory=\\\"\\\" \\r\\n\\tpreview=\\\"false\\\" \\r\\n\\/>\"', 1, '2015-04-29 14:00:56', '2015-08-25 21:15:22', 1, '', 292, 'd5a2dbd1-79fb-45d4-b0ba-0983178500cc', '', '', '', '', ''),
(99, '', '', '', '', '', '', '', '', 64, '', 'CHAR', '', '', '', 'Doc 9', 'NOT NULL', '', 12, '\"<field \\r\\n\\ttype=\\\"media\\\" \\r\\n\\tname=\\\"doc_9\\\" \\r\\n\\tlabel=\\\"Document\\\" \\r\\n\\tdescription=\\\"Add a document to this session\\\" \\r\\n\\tdirectory=\\\"\\\" \\r\\n\\tpreview=\\\"false\\\" \\r\\n\\/>\"', 1, '2015-04-29 14:00:56', '2015-08-25 21:15:22', 1, '', 293, '5f14c959-afa3-4223-a684-74f8583e03b5', '', '', '', '', ''),
(100, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Email (required)', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"email\\\" \\r\\n\\tlabel=\\\"Email\\\" \\r\\n\\tsize=\\\"10\\\" \\r\\n\\tmaxlength=\\\"50\\\" \\r\\n\\tdescription=\\\"Enter Email\\\" \\r\\n\\tclass=\\\"text_area\\\"\\r\\n\\tfilter=\\\"STRING\\\" \\r\\n\\tvalidate=\\\"email\\\" \\r\\n\\trequired=\\\"true\\\"\\r\\n\\tmessage=\\\"Error! Please add email address here.\\\" \\r\\n\\thint=\\\"demo@example.com\\\" \\r\\n\\/>\"', 1, '2015-05-05 23:44:32', '2016-02-07 22:43:18', 4, '', 285, '10c1eccb-b3c3-4325-a056-45a72d116fd8', '', '', '', '', ''),
(101, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'HTML Body', 'NOT NULL', '', 8, '\"<field type=\\\"editor\\\" name=\\\"html-body\\\" label=\\\"HTML Body\\\" width=\\\"100%\\\" height=\\\"500\\\" filter=\\\"safehtml\\\" \\r\\n\\trequired=\\\"true\\\" \\/>\"', 1, '2015-04-07 22:08:34', '2016-05-02 01:45:57', 2, '', 284, '01163773-cdff-474c-8a07-05de21e9c30b', '', '', '', '', ''),
(102, '', '', '', '', '', '', '', '', 11, '', 'INT', '', '', '', 'Event (also show archived)', 'NOT NULL', '', 6, '\"<field \\r\\n\\ttype=\\\"events\\\" \\r\\n\\tname=\\\"event\\\" \\r\\n\\tlabel=\\\"Select an Event\\\" \\r\\n\\tdescription=\\\"\\\" \\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\trequired=\\\"true\\\"\\r\\n\\textends=\\\"list\\\" \\r\\n\\tbutton=\\\"true\\\"\\r\\n\\ttable=\\\"#__###component###_event\\\" \\r\\n\\tcomponent=\\\"com_###component###\\\" \\r\\n\\tview=\\\"event\\\" \\r\\n\\tviews=\\\"events\\\" \\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);\\\" type_php_3=\\\"$query->select($db->quoteName(array(\'a.###ID###\',\'a.###TEXT###\'),array(\'###ID###\',\'###CODE_TEXT###\')))->select($db->quoteName(array(\'c.acronym\'),array(\'program\')));\\\" \\r\\n\\ttype_php_4=\\\"$query->from($db->quoteName(\'###TABLE###\', \'a\'))->join(\'LEFT\', $db->quoteName(\'#__###component###_program\', \'c\') . \' ON (\' . $db->quoteName(\'a.program\') . \' = \' . $db->quoteName(\'c.id\') . \')\');\\\" \\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_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### . \' (\' . $item->program . \')\');\\\" \\r\\n\\ttype_php_16=\\\"\\\\t}\\\" \\r\\n\\ttype_php_17=\\\"}\\\" \\r\\n\\ttype_php_19=\\\"return $options;\\\" \\r\\n\\/>\"', 1, '2015-05-01 21:34:58', '2017-01-25 10:40:48', 8, '', 283, '5e0f843c-cbcd-4d22-8d55-e4dd2ced8dfa', '', '', '', '', ''),
(103, '', '', '', '', '', '', '', '', 11, '', 'INT', '', '', '', 'Facilitator 1', 'NOT NULL', '', 7, '\"<field\\n\\ttype=\\\"facilitator\\\"\\n\\tname=\\\"facilitator_one\\\"\\n\\tlabel=\\\"Facilitator\\\"\\n\\tdescription=\\\"\\\"\\n\\trequired=\\\"true\\\"\\n\\textends=\\\"user\\\"\\n\\ttable=\\\"#__users\\\"\\n\\tcomponent=\\\"com_users\\\"\\n\\tview=\\\"###view###\\\"\\n\\tviews=\\\"###views###\\\"\\n\\tvalue_field=\\\"name\\\"\\n\\tkey_field=\\\"id\\\"\\n\\ttype_php_1=\\\"__.o0=base64=Oo.__Ly8gc2V0IHRoZSBncm91cHMgYXJyYXkNCiRncm91cHMgPSBKQ29tcG9uZW50SGVscGVyOjpnZXRQYXJhbXMoJ2NvbV8jIyNjb21wb25lbnQjIyMnKS0+Z2V0KCcjIyN0eXBlIyMjJyk7DQpyZXR1cm4gJGdyb3Vwczs=\\\"\\n\\/>\"', 1, '2015-04-23 20:57:19', '2018-09-21 00:07:42', 4, '', 282, 'd38c5c14-4d33-45b0-b621-4aba6f3614fc', '', '', '', '', ''),
(104, '', '', '', '', '', '', '', '', 7, '', 'INT', '', '', '', 'Facilitator 10', 'NOT NULL', '', 7, '\"<field \\r\\n\\ttype=\\\"facilitator\\\" \\r\\n\\tname=\\\"facilitator_10\\\" \\r\\n\\tlabel=\\\"Facilitator\\\" \\r\\n\\tdescription=\\\"\\\" \\r\\n\\textends=\\\"user\\\" \\r\\n\\ttable=\\\"#__users\\\" \\r\\n\\tcomponent=\\\"com_users\\\" \\r\\n\\tview=\\\"###view###\\\" \\r\\n\\tviews=\\\"###views###\\\" \\r\\n\\tvalue_field=\\\"name\\\" \\r\\n\\tkey_field=\\\"id\\\" \\r\\n\\ttype_php_1=\\\"\\/\\/ set the groups array\\\" \\r\\n\\ttype_php_2=\\\"$groups = JComponentHelper::getParams(\'com_###component###\')->get(\'###type###\');\\\" \\r\\n\\ttype_php_3=\\\"return $groups;\\\"\\r\\n\\/>\"', 1, '2015-04-23 20:57:19', '2015-08-25 21:15:22', 1, '', 281, 'e7fb27c8-085e-441a-86f2-5b184029803a', '', '', '', '', ''),
(105, '', '', '', '', '', '', '', '', 11, '', 'INT', '', '', '', 'Facilitator 2', 'NOT NULL', '', 7, '\"<field\\n\\ttype=\\\"facilitator\\\"\\n\\tname=\\\"facilitator_two\\\"\\n\\tlabel=\\\"Facilitator\\\"\\n\\tdescription=\\\"\\\"\\n\\textends=\\\"user\\\"\\n\\ttable=\\\"#__users\\\"\\n\\tcomponent=\\\"com_users\\\"\\n\\tview=\\\"###view###\\\"\\n\\tviews=\\\"###views###\\\"\\n\\tvalue_field=\\\"name\\\"\\n\\tkey_field=\\\"id\\\"\\n\\ttype_php_1=\\\"\\/\\/ set the groups array\\r\\n$groups = JComponentHelper::getParams(\'com_###component###\')->get(\'###type###\');\\r\\nreturn $groups;\\\"\\n\\/>\"', 1, '2015-04-23 20:57:19', '2018-04-14 22:15:32', 2, '', 280, '403900e4-3935-4382-bf3a-66e6952ef988', '', '', '', '', ''),
(106, '', '', '', '', '', '', '', '', 7, '', 'INT', '', '', '', 'Facilitator 3', 'NOT NULL', '', 7, '\"<field \\r\\n\\ttype=\\\"facilitator\\\" \\r\\n\\tname=\\\"facilitator_3\\\" \\r\\n\\tlabel=\\\"Facilitator\\\" \\r\\n\\tdescription=\\\"\\\" \\r\\n\\textends=\\\"user\\\" \\r\\n\\ttable=\\\"#__users\\\" \\r\\n\\tcomponent=\\\"com_users\\\" \\r\\n\\tview=\\\"###view###\\\" \\r\\n\\tviews=\\\"###views###\\\" \\r\\n\\tvalue_field=\\\"name\\\" \\r\\n\\tkey_field=\\\"id\\\" \\r\\n\\ttype_php_1=\\\"\\/\\/ set the groups array\\\" \\r\\n\\ttype_php_2=\\\"$groups = JComponentHelper::getParams(\'com_###component###\')->get(\'###type###\');\\\" \\r\\n\\ttype_php_3=\\\"return $groups;\\\"\\r\\n\\/>\"', 1, '2015-04-23 20:57:19', '2015-08-25 21:15:22', 1, '', 279, '86468f16-4f2d-4848-87c5-b274ee0bba9a', '', '', '', '', ''),
(107, '', '', '', '', '', '', '', '', 7, '', 'INT', '', '', '', 'Facilitator 4', 'NOT NULL', '', 7, '\"<field \\r\\n\\ttype=\\\"facilitator\\\" \\r\\n\\tname=\\\"facilitator_4\\\" \\r\\n\\tlabel=\\\"Facilitator\\\" \\r\\n\\tdescription=\\\"\\\" \\r\\n\\textends=\\\"user\\\" \\r\\n\\ttable=\\\"#__users\\\" \\r\\n\\tcomponent=\\\"com_users\\\" \\r\\n\\tview=\\\"###view###\\\" \\r\\n\\tviews=\\\"###views###\\\" \\r\\n\\tvalue_field=\\\"name\\\" \\r\\n\\tkey_field=\\\"id\\\" \\r\\n\\ttype_php_1=\\\"\\/\\/ set the groups array\\\" \\r\\n\\ttype_php_2=\\\"$groups = JComponentHelper::getParams(\'com_###component###\')->get(\'###type###\');\\\" \\r\\n\\ttype_php_3=\\\"return $groups;\\\"\\r\\n\\/>\"', 1, '2015-04-23 20:57:19', '2015-08-25 21:15:22', 1, '', 278, 'e2cf5b8a-68a4-4ee2-aca1-7eaa5a8ac5d6', '', '', '', '', ''),
(108, '', '', '', '', '', '', '', '', 7, '', 'INT', '', '', '', 'Facilitator 5', 'NOT NULL', '', 7, '\"<field \\r\\n\\ttype=\\\"facilitator\\\" \\r\\n\\tname=\\\"facilitator_5\\\" \\r\\n\\tlabel=\\\"Facilitator\\\" \\r\\n\\tdescription=\\\"\\\" \\r\\n\\textends=\\\"user\\\" \\r\\n\\ttable=\\\"#__users\\\" \\r\\n\\tcomponent=\\\"com_users\\\" \\r\\n\\tview=\\\"###view###\\\" \\r\\n\\tviews=\\\"###views###\\\" \\r\\n\\tvalue_field=\\\"name\\\" \\r\\n\\tkey_field=\\\"id\\\" \\r\\n\\ttype_php_1=\\\"\\/\\/ set the groups array\\\" \\r\\n\\ttype_php_2=\\\"$groups = JComponentHelper::getParams(\'com_###component###\')->get(\'###type###\');\\\" \\r\\n\\ttype_php_3=\\\"return $groups;\\\"\\r\\n\\/>\"', 1, '2015-04-23 20:57:19', '2015-08-25 21:15:22', 1, '', 277, 'b50e99cb-3561-4eb7-827e-72d35988ceb8', '', '', '', '', ''),
(109, '', '', '', '', '', '', '', '', 7, '', 'INT', '', '', '', 'Facilitator 6', 'NOT NULL', '', 7, '\"<field \\r\\n\\ttype=\\\"facilitator\\\" \\r\\n\\tname=\\\"facilitator_6\\\" \\r\\n\\tlabel=\\\"Facilitator\\\" \\r\\n\\tdescription=\\\"\\\" \\r\\n\\textends=\\\"user\\\" \\r\\n\\ttable=\\\"#__users\\\" \\r\\n\\tcomponent=\\\"com_users\\\" \\r\\n\\tview=\\\"###view###\\\" \\r\\n\\tviews=\\\"###views###\\\" \\r\\n\\tvalue_field=\\\"name\\\" \\r\\n\\tkey_field=\\\"id\\\" \\r\\n\\ttype_php_1=\\\"\\/\\/ set the groups array\\\" \\r\\n\\ttype_php_2=\\\"$groups = JComponentHelper::getParams(\'com_###component###\')->get(\'###type###\');\\\" \\r\\n\\ttype_php_3=\\\"return $groups;\\\"\\r\\n\\/>\"', 1, '2015-04-23 20:57:19', '2015-08-25 21:15:22', 1, '', 258, 'c07c05f1-6732-48ec-99b7-861a8ee76f6e', '', '', '', '', ''),
(110, '', '', '', '', '', '', '', '', 7, '', 'INT', '', '', '', 'Facilitator 7', 'NOT NULL', '', 7, '\"<field \\r\\n\\ttype=\\\"facilitator\\\" \\r\\n\\tname=\\\"facilitator_7\\\" \\r\\n\\tlabel=\\\"Facilitator\\\" \\r\\n\\tdescription=\\\"\\\" \\r\\n\\textends=\\\"user\\\" \\r\\n\\ttable=\\\"#__users\\\" \\r\\n\\tcomponent=\\\"com_users\\\" \\r\\n\\tview=\\\"###view###\\\" \\r\\n\\tviews=\\\"###views###\\\" \\r\\n\\tvalue_field=\\\"name\\\" \\r\\n\\tkey_field=\\\"id\\\" \\r\\n\\ttype_php_1=\\\"\\/\\/ set the groups array\\\" \\r\\n\\ttype_php_2=\\\"$groups = JComponentHelper::getParams(\'com_###component###\')->get(\'###type###\');\\\" \\r\\n\\ttype_php_3=\\\"return $groups;\\\"\\r\\n\\/>\"', 1, '2015-04-23 20:57:19', '2015-08-25 21:15:22', 1, '', 257, '4b3b94f1-534b-46d4-8d5f-6f471f5895cb', '', '', '', '', ''),
(111, '', '', '', '', '', '', '', '', 7, '', 'INT', '', '', '', 'Facilitator 8', 'NOT NULL', '', 7, '\"<field \\r\\n\\ttype=\\\"facilitator\\\" \\r\\n\\tname=\\\"facilitator_8\\\" \\r\\n\\tlabel=\\\"Facilitator\\\" \\r\\n\\tdescription=\\\"\\\" \\r\\n\\textends=\\\"user\\\" \\r\\n\\ttable=\\\"#__users\\\" \\r\\n\\tcomponent=\\\"com_users\\\" \\r\\n\\tview=\\\"###view###\\\" \\r\\n\\tviews=\\\"###views###\\\" \\r\\n\\tvalue_field=\\\"name\\\" \\r\\n\\tkey_field=\\\"id\\\" \\r\\n\\ttype_php_1=\\\"\\/\\/ set the groups array\\\" \\r\\n\\ttype_php_2=\\\"$groups = JComponentHelper::getParams(\'com_###component###\')->get(\'###type###\');\\\" \\r\\n\\ttype_php_3=\\\"return $groups;\\\"\\r\\n\\/>\"', 1, '2015-04-23 20:57:19', '2015-08-25 21:15:22', 1, '', 256, '7f59df6e-0f31-425b-90d2-bb10d379162f', '', '', '', '', ''),
(112, '', '', '', '', '', '', '', '', 7, '', 'INT', '', '', '', 'Facilitator 9', 'NOT NULL', '', 7, '\"<field \\r\\n\\ttype=\\\"facilitator\\\" \\r\\n\\tname=\\\"facilitator_9\\\" \\r\\n\\tlabel=\\\"Facilitator\\\" \\r\\n\\tdescription=\\\"\\\" \\r\\n\\textends=\\\"user\\\" \\r\\n\\ttable=\\\"#__users\\\" \\r\\n\\tcomponent=\\\"com_users\\\" \\r\\n\\tview=\\\"###view###\\\" \\r\\n\\tviews=\\\"###views###\\\" \\r\\n\\tvalue_field=\\\"name\\\" \\r\\n\\tkey_field=\\\"id\\\" \\r\\n\\ttype_php_1=\\\"\\/\\/ set the groups array\\\" \\r\\n\\ttype_php_2=\\\"$groups = JComponentHelper::getParams(\'com_###component###\')->get(\'###type###\');\\\" \\r\\n\\ttype_php_3=\\\"return $groups;\\\"\\r\\n\\/>\"', 1, '2015-04-23 20:57:19', '2015-08-25 21:15:22', 1, '', 237, '4b79041e-42a9-4ead-94a6-819cb1efe94d', '', '', '', '', ''),
(113, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Faculty Members (dynamic)', 'NOT NULL', 1, 6, '\"<field \\r\\n\\ttype=\\\"facultymember\\\" \\r\\n\\tname=\\\"faculty_members\\\" \\r\\n\\tlabel=\\\"Faculty Members\\\" \\r\\n\\tdescription=\\\"Select faculty members\\\" \\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\tmultiple=\\\"true\\\" \\r\\n\\tdefault=\\\"0\\\" \\r\\n\\trequired=\\\"\\\" \\r\\n\\treadonly=\\\"\\\" \\r\\n\\tdisabled=\\\"\\\" \\r\\n\\textends=\\\"list\\\" \\r\\n\\tbutton=\\\"true\\\" \\r\\n\\ttable=\\\"#__###component###_faculty_member\\\" \\r\\n\\tcomponent=\\\"com_###component###\\\" \\r\\n\\tview=\\\"faculty_member\\\" \\r\\n\\tviews=\\\"faculty_members\\\" \\r\\n\\tvalue_field=\\\"user\\\" \\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_13=\\\"\\\\tforeach($items as $item)\\\" \\r\\n\\ttype_php_14=\\\"\\\\t{\\\" \\r\\n\\ttype_php_15=\\\"\\\\t\\\\t$options[] = JHtml::_(\'select.option\', $item->###ID###, JFactory::getUser($item->###CODE_TEXT###)->name);\\\" \\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-04-23 20:57:19', '2015-09-11 03:52:23', 5, '', 236, 'bd50fc15-f479-4578-a49b-736b0173ebbb', '', '', '', '', ''),
(114, '', '', '', '', '', '', '', '', 11, '', 'INT', '', '', '', 'Faculty Member 10', 'NOT NULL', '', 7, '\"<field \\r\\n\\ttype=\\\"facultymember\\\" \\r\\n\\tname=\\\"faculty_member_10\\\" \\r\\n\\tlabel=\\\"Faculty Member\\\" \\r\\n\\tdescription=\\\"\\\" \\r\\n\\textends=\\\"user\\\" \\r\\n\\ttable=\\\"#__users\\\" \\r\\n\\tcomponent=\\\"com_users\\\" \\r\\n\\tview=\\\"###view###\\\" \\r\\n\\tviews=\\\"###views###\\\" \\r\\n\\tvalue_field=\\\"name\\\" \\r\\n\\tkey_field=\\\"id\\\" \\r\\n\\ttype_php_1=\\\"\\/\\/ set the groups array\\\" \\r\\n\\ttype_php_2=\\\"$groups = JComponentHelper::getParams(\'com_###component###\')->get(\'###type###\');\\\" \\r\\n\\ttype_php_3=\\\"return $groups;\\\"\\r\\n\\/>\"', -2, '2015-04-23 20:57:19', '2015-09-11 03:28:16', 1, '', '', '945a7643-9a8f-43ed-921e-6cb76893d02a', '', '', '', '', ''),
(115, '', '', '', '', '', '', '', '', 11, '', 'INT', '', '', '', 'Faculty Member 11', 'NOT NULL', '', 7, '\"<field \\r\\n\\ttype=\\\"facultymember\\\" \\r\\n\\tname=\\\"faculty_member_11\\\" \\r\\n\\tlabel=\\\"Faculty Member\\\" \\r\\n\\tdescription=\\\"\\\" \\r\\n\\textends=\\\"user\\\" \\r\\n\\ttable=\\\"#__users\\\" \\r\\n\\tcomponent=\\\"com_users\\\" \\r\\n\\tview=\\\"###view###\\\" \\r\\n\\tviews=\\\"###views###\\\" \\r\\n\\tvalue_field=\\\"name\\\" \\r\\n\\tkey_field=\\\"id\\\" \\r\\n\\ttype_php_1=\\\"\\/\\/ set the groups array\\\" \\r\\n\\ttype_php_2=\\\"$groups = JComponentHelper::getParams(\'com_###component###\')->get(\'###type###\');\\\" \\r\\n\\ttype_php_3=\\\"return $groups;\\\"\\r\\n\\/>\"', -2, '2015-04-23 20:57:19', '2015-09-11 03:28:16', 1, '', '', 'e9807509-2a0c-4ac4-b096-16f8f57dc543', '', '', '', '', ''),
(116, '', '', '', '', '', '', '', '', 11, '', 'INT', '', '', '', 'Faculty Member 12', 'NOT NULL', '', 7, '\"<field \\r\\n\\ttype=\\\"facultymember\\\" \\r\\n\\tname=\\\"faculty_member_12\\\" \\r\\n\\tlabel=\\\"Faculty Member\\\" \\r\\n\\tdescription=\\\"\\\" \\r\\n\\textends=\\\"user\\\" \\r\\n\\ttable=\\\"#__users\\\" \\r\\n\\tcomponent=\\\"com_users\\\" \\r\\n\\tview=\\\"###view###\\\" \\r\\n\\tviews=\\\"###views###\\\" \\r\\n\\tvalue_field=\\\"name\\\" \\r\\n\\tkey_field=\\\"id\\\" \\r\\n\\ttype_php_1=\\\"\\/\\/ set the groups array\\\" \\r\\n\\ttype_php_2=\\\"$groups = JComponentHelper::getParams(\'com_###component###\')->get(\'###type###\');\\\" \\r\\n\\ttype_php_3=\\\"return $groups;\\\"\\r\\n\\/>\"', -2, '2015-04-23 20:57:19', '2015-09-11 03:28:16', 1, '', '', 'd479ed7d-4cb9-4610-92b7-ca2bbc62ea85', '', '', '', '', ''),
(117, '', '', '', '', '', '', '', '', 11, '', 'INT', '', '', '', 'Faculty Member 13', 'NOT NULL', '', 7, '\"<field \\r\\n\\ttype=\\\"facultymember\\\" \\r\\n\\tname=\\\"faculty_member_13\\\" \\r\\n\\tlabel=\\\"Faculty Member\\\" \\r\\n\\tdescription=\\\"\\\" \\r\\n\\textends=\\\"user\\\" \\r\\n\\ttable=\\\"#__users\\\" \\r\\n\\tcomponent=\\\"com_users\\\" \\r\\n\\tview=\\\"###view###\\\" \\r\\n\\tviews=\\\"###views###\\\" \\r\\n\\tvalue_field=\\\"name\\\" \\r\\n\\tkey_field=\\\"id\\\" \\r\\n\\ttype_php_1=\\\"\\/\\/ set the groups array\\\" \\r\\n\\ttype_php_2=\\\"$groups = JComponentHelper::getParams(\'com_###component###\')->get(\'###type###\');\\\" \\r\\n\\ttype_php_3=\\\"return $groups;\\\"\\r\\n\\/>\"', -2, '2015-04-23 20:57:19', '2015-09-11 03:28:16', 1, '', '', '3c3286d1-e0cb-4b96-91ec-e23c54f6bc5f', '', '', '', '', ''),
(118, '', '', '', '', '', '', '', '', 11, '', 'INT', '', '', '', 'Faculty Member 14', 'NOT NULL', '', 7, '\"<field \\r\\n\\ttype=\\\"facultymember\\\" \\r\\n\\tname=\\\"faculty_member_14\\\" \\r\\n\\tlabel=\\\"Faculty Member\\\" \\r\\n\\tdescription=\\\"\\\" \\r\\n\\textends=\\\"user\\\" \\r\\n\\ttable=\\\"#__users\\\" \\r\\n\\tcomponent=\\\"com_users\\\" \\r\\n\\tview=\\\"###view###\\\" \\r\\n\\tviews=\\\"###views###\\\" \\r\\n\\tvalue_field=\\\"name\\\" \\r\\n\\tkey_field=\\\"id\\\" \\r\\n\\ttype_php_1=\\\"\\/\\/ set the groups array\\\" \\r\\n\\ttype_php_2=\\\"$groups = JComponentHelper::getParams(\'com_###component###\')->get(\'###type###\');\\\" \\r\\n\\ttype_php_3=\\\"return $groups;\\\"\\r\\n\\/>\"', -2, '2015-04-23 20:57:19', '2015-09-11 03:28:16', 1, '', '', '7d1a6675-496c-41d4-9424-1873563f3347', '', '', '', '', ''),
(119, '', '', '', '', '', '', '', '', 11, '', 'INT', '', '', '', 'Faculty Member 15', 'NOT NULL', '', 7, '\"<field \\r\\n\\ttype=\\\"facultymember\\\" \\r\\n\\tname=\\\"faculty_member_15\\\" \\r\\n\\tlabel=\\\"Faculty Member\\\" \\r\\n\\tdescription=\\\"\\\" \\r\\n\\textends=\\\"user\\\" \\r\\n\\ttable=\\\"#__users\\\" \\r\\n\\tcomponent=\\\"com_users\\\" \\r\\n\\tview=\\\"###view###\\\" \\r\\n\\tviews=\\\"###views###\\\" \\r\\n\\tvalue_field=\\\"name\\\" \\r\\n\\tkey_field=\\\"id\\\" \\r\\n\\ttype_php_1=\\\"\\/\\/ set the groups array\\\" \\r\\n\\ttype_php_2=\\\"$groups = JComponentHelper::getParams(\'com_###component###\')->get(\'###type###\');\\\" \\r\\n\\ttype_php_3=\\\"return $groups;\\\"\\r\\n\\/>\"', -2, '2015-04-23 20:57:19', '2015-09-11 03:28:16', 1, '', '', '0eb62de6-bd4f-4e30-b1a2-6eeab253a928', '', '', '', '', ''),
(120, '', '', '', '', '', '', '', '', 11, '', 'INT', '', '', '', 'Faculty Member 16', 'NOT NULL', '', 7, '\"<field \\r\\n\\ttype=\\\"facultymember\\\" \\r\\n\\tname=\\\"faculty_member_16\\\" \\r\\n\\tlabel=\\\"Faculty Member\\\" \\r\\n\\tdescription=\\\"\\\" \\r\\n\\textends=\\\"user\\\" \\r\\n\\ttable=\\\"#__users\\\" \\r\\n\\tcomponent=\\\"com_users\\\" \\r\\n\\tview=\\\"###view###\\\" \\r\\n\\tviews=\\\"###views###\\\" \\r\\n\\tvalue_field=\\\"name\\\" \\r\\n\\tkey_field=\\\"id\\\" \\r\\n\\ttype_php_1=\\\"\\/\\/ set the groups array\\\" \\r\\n\\ttype_php_2=\\\"$groups = JComponentHelper::getParams(\'com_###component###\')->get(\'###type###\');\\\" \\r\\n\\ttype_php_3=\\\"return $groups;\\\"\\r\\n\\/>\"', -2, '2015-04-23 20:57:19', '2015-09-11 03:28:16', 1, '', '', '4d3109a2-745e-4fb6-ab3c-5a3cb4a30b1c', '', '', '', '', ''),
(121, '', '', '', '', '', '', '', '', 11, '', 'INT', '', '', '', 'Faculty Member 17', 'NOT NULL', '', 7, '\"<field \\r\\n\\ttype=\\\"facultymember\\\" \\r\\n\\tname=\\\"faculty_member_17\\\" \\r\\n\\tlabel=\\\"Faculty Member\\\" \\r\\n\\tdescription=\\\"\\\" \\r\\n\\textends=\\\"user\\\" \\r\\n\\ttable=\\\"#__users\\\" \\r\\n\\tcomponent=\\\"com_users\\\" \\r\\n\\tview=\\\"###view###\\\" \\r\\n\\tviews=\\\"###views###\\\" \\r\\n\\tvalue_field=\\\"name\\\" \\r\\n\\tkey_field=\\\"id\\\" \\r\\n\\ttype_php_1=\\\"\\/\\/ set the groups array\\\" \\r\\n\\ttype_php_2=\\\"$groups = JComponentHelper::getParams(\'com_###component###\')->get(\'###type###\');\\\" \\r\\n\\ttype_php_3=\\\"return $groups;\\\"\\r\\n\\/>\"', -2, '2015-04-23 20:57:19', '2015-09-11 03:28:16', 1, '', '', 'ef26b14d-dbae-40ba-8287-d7acb5ec7e50', '', '', '', '', ''),
(122, '', '', '', '', '', '', '', '', 11, '', 'INT', '', '', '', 'Faculty Member 18', 'NOT NULL', '', 7, '\"<field \\r\\n\\ttype=\\\"facultymember\\\" \\r\\n\\tname=\\\"faculty_member_18\\\" \\r\\n\\tlabel=\\\"Faculty Member\\\" \\r\\n\\tdescription=\\\"\\\" \\r\\n\\textends=\\\"user\\\" \\r\\n\\ttable=\\\"#__users\\\" \\r\\n\\tcomponent=\\\"com_users\\\" \\r\\n\\tview=\\\"###view###\\\" \\r\\n\\tviews=\\\"###views###\\\" \\r\\n\\tvalue_field=\\\"name\\\" \\r\\n\\tkey_field=\\\"id\\\" \\r\\n\\ttype_php_1=\\\"\\/\\/ set the groups array\\\" \\r\\n\\ttype_php_2=\\\"$groups = JComponentHelper::getParams(\'com_###component###\')->get(\'###type###\');\\\" \\r\\n\\ttype_php_3=\\\"return $groups;\\\"\\r\\n\\/>\"', -2, '2015-04-23 20:57:19', '2015-09-11 03:28:16', 1, '', '', '722149c9-bdc9-4d90-8335-5bfaa4dc301e', '', '', '', '', ''),
(123, '', '', '', '', '', '', '', '', 11, '', 'INT', '', '', '', 'Faculty Member 19', 'NOT NULL', '', 7, '\"<field \\r\\n\\ttype=\\\"facultymember\\\" \\r\\n\\tname=\\\"faculty_member_19\\\" \\r\\n\\tlabel=\\\"Faculty Member\\\" \\r\\n\\tdescription=\\\"\\\" \\r\\n\\textends=\\\"user\\\" \\r\\n\\ttable=\\\"#__users\\\" \\r\\n\\tcomponent=\\\"com_users\\\" \\r\\n\\tview=\\\"###view###\\\" \\r\\n\\tviews=\\\"###views###\\\" \\r\\n\\tvalue_field=\\\"name\\\" \\r\\n\\tkey_field=\\\"id\\\" \\r\\n\\ttype_php_1=\\\"\\/\\/ set the groups array\\\" \\r\\n\\ttype_php_2=\\\"$groups = JComponentHelper::getParams(\'com_###component###\')->get(\'###type###\');\\\" \\r\\n\\ttype_php_3=\\\"return $groups;\\\"\\r\\n\\/>\"', -2, '2015-04-23 20:57:19', '2015-09-11 03:28:16', 1, '', '', '30402148-168f-4a42-b7a4-8c34d271dff1', '', '', '', '', ''),
(124, '', '', '', '', '', '', '', '', 11, '', 'INT', '', '', '', 'Faculty Member 2', 'NOT NULL', '', 7, '\"<field \\r\\n\\ttype=\\\"facultymember\\\" \\r\\n\\tname=\\\"faculty_member_2\\\" \\r\\n\\tlabel=\\\"Faculty Member\\\" \\r\\n\\tdescription=\\\"\\\" \\r\\n\\textends=\\\"user\\\" \\r\\n\\ttable=\\\"#__users\\\" \\r\\n\\tcomponent=\\\"com_users\\\" \\r\\n\\tview=\\\"###view###\\\" \\r\\n\\tviews=\\\"###views###\\\" \\r\\n\\tvalue_field=\\\"name\\\" \\r\\n\\tkey_field=\\\"id\\\" \\r\\n\\ttype_php_1=\\\"\\/\\/ set the groups array\\\" \\r\\n\\ttype_php_2=\\\"$groups = array();\\\" \\r\\n\\ttype_php_3=\\\"$groups[] = JComponentHelper::getParams(\'com_###component###\')->get(\'###view_type###\');\\\" \\r\\n\\ttype_php_4=\\\"return $groups;\\\"\\r\\n\\/>\"', -2, '2015-04-23 20:57:19', '2015-09-11 03:28:16', 1, '', '', '1cb53347-66cd-4733-96e0-9d56244379cc', '', '', '', '', ''),
(125, '', '', '', '', '', '', '', '', 11, '', 'INT', '', '', '', 'Faculty Member 20', 'NOT NULL', '', 7, '\"<field \\r\\n\\ttype=\\\"facultymember\\\" \\r\\n\\tname=\\\"faculty_member_20\\\" \\r\\n\\tlabel=\\\"Faculty Member\\\" \\r\\n\\tdescription=\\\"\\\" \\r\\n\\textends=\\\"user\\\" \\r\\n\\ttable=\\\"#__users\\\" \\r\\n\\tcomponent=\\\"com_users\\\" \\r\\n\\tview=\\\"###view###\\\" \\r\\n\\tviews=\\\"###views###\\\" \\r\\n\\tvalue_field=\\\"name\\\" \\r\\n\\tkey_field=\\\"id\\\" \\r\\n\\ttype_php_1=\\\"\\/\\/ set the groups array\\\" \\r\\n\\ttype_php_2=\\\"$groups = JComponentHelper::getParams(\'com_###component###\')->get(\'###type###\');\\\" \\r\\n\\ttype_php_3=\\\"return $groups;\\\"\\r\\n\\/>\"', -2, '2015-04-23 20:57:19', '2015-09-11 03:28:16', 1, '', '', '4e18fadc-2fd5-4252-9ac9-fbc1049bbfe4', '', '', '', '', ''),
(126, '', '', '', '', '', '', '', '', 11, '', 'INT', '', '', '', 'Faculty Member 21', 'NOT NULL', '', 7, '\"<field \\r\\n\\ttype=\\\"facultymember\\\" \\r\\n\\tname=\\\"faculty_member_21\\\" \\r\\n\\tlabel=\\\"Faculty Member\\\" \\r\\n\\tdescription=\\\"\\\" \\r\\n\\textends=\\\"user\\\" \\r\\n\\ttable=\\\"#__users\\\" \\r\\n\\tcomponent=\\\"com_users\\\" \\r\\n\\tview=\\\"###view###\\\" \\r\\n\\tviews=\\\"###views###\\\" \\r\\n\\tvalue_field=\\\"name\\\" \\r\\n\\tkey_field=\\\"id\\\" \\r\\n\\ttype_php_1=\\\"\\/\\/ set the groups array\\\" \\r\\n\\ttype_php_2=\\\"$groups = JComponentHelper::getParams(\'com_###component###\')->get(\'###type###\');\\\" \\r\\n\\ttype_php_3=\\\"return $groups;\\\"\\r\\n\\/>\"', -2, '2015-04-23 20:57:19', '2015-09-11 03:28:16', 1, '', '', '41d07c57-86ad-469a-a4a2-3ab4b6ec867f', '', '', '', '', ''),
(127, '', '', '', '', '', '', '', '', 11, '', 'INT', '', '', '', 'Faculty Member 22', 'NOT NULL', '', 7, '\"<field \\r\\n\\ttype=\\\"facultymember\\\" \\r\\n\\tname=\\\"faculty_member_22\\\" \\r\\n\\tlabel=\\\"Faculty Member\\\" \\r\\n\\tdescription=\\\"\\\" \\r\\n\\textends=\\\"user\\\" \\r\\n\\ttable=\\\"#__users\\\" \\r\\n\\tcomponent=\\\"com_users\\\" \\r\\n\\tview=\\\"###view###\\\" \\r\\n\\tviews=\\\"###views###\\\" \\r\\n\\tvalue_field=\\\"name\\\" \\r\\n\\tkey_field=\\\"id\\\" \\r\\n\\ttype_php_1=\\\"\\/\\/ set the groups array\\\" \\r\\n\\ttype_php_2=\\\"$groups = JComponentHelper::getParams(\'com_###component###\')->get(\'###type###\');\\\" \\r\\n\\ttype_php_3=\\\"return $groups;\\\"\\r\\n\\/>\"', -2, '2015-04-23 20:57:19', '2015-09-11 03:28:16', 1, '', '', '0bff08d1-a410-4d44-9370-c89749f623ea', '', '', '', '', ''),
(128, '', '', '', '', '', '', '', '', 11, '', 'INT', '', '', '', 'Faculty Member 23', 'NOT NULL', '', 7, '\"<field \\r\\n\\ttype=\\\"facultymember\\\" \\r\\n\\tname=\\\"faculty_member_23\\\" \\r\\n\\tlabel=\\\"Faculty Member\\\" \\r\\n\\tdescription=\\\"\\\" \\r\\n\\textends=\\\"user\\\" \\r\\n\\ttable=\\\"#__users\\\" \\r\\n\\tcomponent=\\\"com_users\\\" \\r\\n\\tview=\\\"###view###\\\" \\r\\n\\tviews=\\\"###views###\\\" \\r\\n\\tvalue_field=\\\"name\\\" \\r\\n\\tkey_field=\\\"id\\\" \\r\\n\\ttype_php_1=\\\"\\/\\/ set the groups array\\\" \\r\\n\\ttype_php_2=\\\"$groups = JComponentHelper::getParams(\'com_###component###\')->get(\'###type###\');\\\" \\r\\n\\ttype_php_3=\\\"return $groups;\\\"\\r\\n\\/>\"', -2, '2015-04-23 20:57:19', '2015-09-11 03:28:16', 1, '', '', '8752e2ba-1c8f-4ebc-a707-43a4db4b05f1', '', '', '', '', ''),
(129, '', '', '', '', '', '', '', '', 11, '', 'INT', '', '', '', 'Faculty Member 24', 'NOT NULL', '', 7, '\"<field \\r\\n\\ttype=\\\"facultymember\\\" \\r\\n\\tname=\\\"faculty_member_24\\\" \\r\\n\\tlabel=\\\"Faculty Member\\\" \\r\\n\\tdescription=\\\"\\\" \\r\\n\\textends=\\\"user\\\" \\r\\n\\ttable=\\\"#__users\\\" \\r\\n\\tcomponent=\\\"com_users\\\" \\r\\n\\tview=\\\"###view###\\\" \\r\\n\\tviews=\\\"###views###\\\" \\r\\n\\tvalue_field=\\\"name\\\" \\r\\n\\tkey_field=\\\"id\\\" \\r\\n\\ttype_php_1=\\\"\\/\\/ set the groups array\\\" \\r\\n\\ttype_php_2=\\\"$groups = JComponentHelper::getParams(\'com_###component###\')->get(\'###type###\');\\\" \\r\\n\\ttype_php_3=\\\"return $groups;\\\"\\r\\n\\/>\"', -2, '2015-04-23 20:57:19', '2015-09-11 03:28:16', 1, '', '', '438e049c-f07d-4200-a5ce-c9bf6b613210', '', '', '', '', ''),
(130, '', '', '', '', '', '', '', '', 11, '', 'INT', '', '', '', 'Faculty Member 25', 'NOT NULL', '', 7, '\"<field \\r\\n\\ttype=\\\"facultymember\\\" \\r\\n\\tname=\\\"faculty_member_25\\\" \\r\\n\\tlabel=\\\"Faculty Member\\\" \\r\\n\\tdescription=\\\"\\\" \\r\\n\\textends=\\\"user\\\" \\r\\n\\ttable=\\\"#__users\\\" \\r\\n\\tcomponent=\\\"com_users\\\" \\r\\n\\tview=\\\"###view###\\\" \\r\\n\\tviews=\\\"###views###\\\" \\r\\n\\tvalue_field=\\\"name\\\" \\r\\n\\tkey_field=\\\"id\\\" \\r\\n\\ttype_php_1=\\\"\\/\\/ set the groups array\\\" \\r\\n\\ttype_php_2=\\\"$groups = JComponentHelper::getParams(\'com_###component###\')->get(\'###type###\');\\\" \\r\\n\\ttype_php_3=\\\"return $groups;\\\"\\r\\n\\/>\"', -2, '2015-04-23 20:57:19', '2015-09-11 03:28:16', 1, '', '', '0c616d62-c292-4c3a-98c3-d15fce10a584', '', '', '', '', ''),
(131, '', '', '', '', '', '', '', '', 11, '', 'INT', '', '', '', 'Faculty Member 26', 'NOT NULL', '', 7, '\"<field \\r\\n\\ttype=\\\"facultymember\\\" \\r\\n\\tname=\\\"faculty_member_26\\\" \\r\\n\\tlabel=\\\"Faculty Member\\\" \\r\\n\\tdescription=\\\"\\\" \\r\\n\\textends=\\\"user\\\" \\r\\n\\ttable=\\\"#__users\\\" \\r\\n\\tcomponent=\\\"com_users\\\" \\r\\n\\tview=\\\"###view###\\\" \\r\\n\\tviews=\\\"###views###\\\" \\r\\n\\tvalue_field=\\\"name\\\" \\r\\n\\tkey_field=\\\"id\\\" \\r\\n\\ttype_php_1=\\\"\\/\\/ set the groups array\\\" \\r\\n\\ttype_php_2=\\\"$groups = JComponentHelper::getParams(\'com_###component###\')->get(\'###type###\');\\\" \\r\\n\\ttype_php_3=\\\"return $groups;\\\"\\r\\n\\/>\"', -2, '2015-04-23 20:57:19', '2015-09-11 03:28:16', 1, '', '', 'b7c47a52-fb88-400f-b9a3-443c21a83fe6', '', '', '', '', ''),
(132, '', '', '', '', '', '', '', '', 11, '', 'INT', '', '', '', 'Faculty Member 27', 'NOT NULL', '', 7, '\"<field \\r\\n\\ttype=\\\"facultymember\\\" \\r\\n\\tname=\\\"faculty_member_27\\\" \\r\\n\\tlabel=\\\"Faculty Member\\\" \\r\\n\\tdescription=\\\"\\\" \\r\\n\\textends=\\\"user\\\" \\r\\n\\ttable=\\\"#__users\\\" \\r\\n\\tcomponent=\\\"com_users\\\" \\r\\n\\tview=\\\"###view###\\\" \\r\\n\\tviews=\\\"###views###\\\" \\r\\n\\tvalue_field=\\\"name\\\" \\r\\n\\tkey_field=\\\"id\\\" \\r\\n\\ttype_php_1=\\\"\\/\\/ set the groups array\\\" \\r\\n\\ttype_php_2=\\\"$groups = JComponentHelper::getParams(\'com_###component###\')->get(\'###type###\');\\\" \\r\\n\\ttype_php_3=\\\"return $groups;\\\"\\r\\n\\/>\"', -2, '2015-04-23 20:57:19', '2015-09-11 03:28:16', 1, '', '', '4c82862d-71e7-4178-977f-664ced500a6e', '', '', '', '', ''),
(133, '', '', '', '', '', '', '', '', 11, '', 'INT', '', '', '', 'Faculty Member 28', 'NOT NULL', '', 7, '\"<field \\r\\n\\ttype=\\\"facultymember\\\" \\r\\n\\tname=\\\"faculty_member_28\\\" \\r\\n\\tlabel=\\\"Faculty Member\\\" \\r\\n\\tdescription=\\\"\\\" \\r\\n\\textends=\\\"user\\\" \\r\\n\\ttable=\\\"#__users\\\" \\r\\n\\tcomponent=\\\"com_users\\\" \\r\\n\\tview=\\\"###view###\\\" \\r\\n\\tviews=\\\"###views###\\\" \\r\\n\\tvalue_field=\\\"name\\\" \\r\\n\\tkey_field=\\\"id\\\" \\r\\n\\ttype_php_1=\\\"\\/\\/ set the groups array\\\" \\r\\n\\ttype_php_2=\\\"$groups = JComponentHelper::getParams(\'com_###component###\')->get(\'###type###\');\\\" \\r\\n\\ttype_php_3=\\\"return $groups;\\\"\\r\\n\\/>\"', -2, '2015-04-23 20:57:19', '2015-09-11 03:28:16', 1, '', '', 'f13c3003-e5b6-4244-9670-36a7434b716d', '', '', '', '', ''),
(134, '', '', '', '', '', '', '', '', 11, '', 'INT', '', '', '', 'Faculty Member 29', 'NOT NULL', '', 7, '\"<field \\r\\n\\ttype=\\\"facultymember\\\" \\r\\n\\tname=\\\"faculty_member_29\\\" \\r\\n\\tlabel=\\\"Faculty Member\\\" \\r\\n\\tdescription=\\\"\\\" \\r\\n\\textends=\\\"user\\\" \\r\\n\\ttable=\\\"#__users\\\" \\r\\n\\tcomponent=\\\"com_users\\\" \\r\\n\\tview=\\\"###view###\\\" \\r\\n\\tviews=\\\"###views###\\\" \\r\\n\\tvalue_field=\\\"name\\\" \\r\\n\\tkey_field=\\\"id\\\" \\r\\n\\ttype_php_1=\\\"\\/\\/ set the groups array\\\" \\r\\n\\ttype_php_2=\\\"$groups = JComponentHelper::getParams(\'com_###component###\')->get(\'###type###\');\\\" \\r\\n\\ttype_php_3=\\\"return $groups;\\\"\\r\\n\\/>\"', -2, '2015-04-23 20:57:19', '2015-09-11 03:28:16', 1, '', '', 'd48ac3e2-0187-4267-97a1-2892f0dd5995', '', '', '', '', ''),
(135, '', '', '', '', '', '', '', '', 11, '', 'INT', '', '', '', 'Faculty Member 3', 'NOT NULL', '', 7, '\"<field \\r\\n\\ttype=\\\"facultymember\\\" \\r\\n\\tname=\\\"faculty_member_3\\\" \\r\\n\\tlabel=\\\"Faculty Member\\\" \\r\\n\\tdescription=\\\"\\\" \\r\\n\\textends=\\\"user\\\" \\r\\n\\ttable=\\\"#__users\\\" \\r\\n\\tcomponent=\\\"com_users\\\" \\r\\n\\tview=\\\"###view###\\\" \\r\\n\\tviews=\\\"###views###\\\" \\r\\n\\tvalue_field=\\\"name\\\" \\r\\n\\tkey_field=\\\"id\\\" \\r\\n\\ttype_php_1=\\\"\\/\\/ set the groups array\\\" \\r\\n\\ttype_php_2=\\\"$groups = JComponentHelper::getParams(\'com_###component###\')->get(\'###type###\');\\\" \\r\\n\\ttype_php_3=\\\"return $groups;\\\"\\r\\n\\/>\"', -2, '2015-04-23 20:57:19', '2015-09-11 03:28:16', 1, '', '', '4005fc82-12c5-4f9a-b9a1-6d9a88e89e25', '', '', '', '', ''),
(136, '', '', '', '', '', '', '', '', 11, '', 'INT', '', '', '', 'Faculty Member 30', 'NOT NULL', '', 7, '\"<field \\r\\n\\ttype=\\\"facultymember\\\" \\r\\n\\tname=\\\"faculty_member_30\\\" \\r\\n\\tlabel=\\\"Faculty Member\\\" \\r\\n\\tdescription=\\\"\\\" \\r\\n\\textends=\\\"user\\\" \\r\\n\\ttable=\\\"#__users\\\" \\r\\n\\tcomponent=\\\"com_users\\\" \\r\\n\\tview=\\\"###view###\\\" \\r\\n\\tviews=\\\"###views###\\\" \\r\\n\\tvalue_field=\\\"name\\\" \\r\\n\\tkey_field=\\\"id\\\" \\r\\n\\ttype_php_1=\\\"\\/\\/ set the groups array\\\" \\r\\n\\ttype_php_2=\\\"$groups = JComponentHelper::getParams(\'com_###component###\')->get(\'###type###\');\\\" \\r\\n\\ttype_php_3=\\\"return $groups;\\\"\\r\\n\\/>\"', -2, '2015-04-23 20:57:19', '2015-09-11 03:28:16', 1, '', '', '760abaf4-acfc-4eb9-b1ff-22390f79a326', '', '', '', '', ''),
(137, '', '', '', '', '', '', '', '', 11, '', 'INT', '', '', '', 'Faculty Member 4', 'NOT NULL', '', 7, '\"<field \\r\\n\\ttype=\\\"facultymember\\\" \\r\\n\\tname=\\\"faculty_member_4\\\" \\r\\n\\tlabel=\\\"Faculty Member\\\" \\r\\n\\tdescription=\\\"\\\" \\r\\n\\textends=\\\"user\\\" \\r\\n\\ttable=\\\"#__users\\\" \\r\\n\\tcomponent=\\\"com_users\\\" \\r\\n\\tview=\\\"###view###\\\" \\r\\n\\tviews=\\\"###views###\\\" \\r\\n\\tvalue_field=\\\"name\\\" \\r\\n\\tkey_field=\\\"id\\\" \\r\\n\\ttype_php_1=\\\"\\/\\/ set the groups array\\\" \\r\\n\\ttype_php_2=\\\"$groups = JComponentHelper::getParams(\'com_###component###\')->get(\'###type###\');\\\" \\r\\n\\ttype_php_3=\\\"return $groups;\\\"\\r\\n\\/>\"', -2, '2015-04-23 20:57:19', '2015-09-11 03:28:16', 1, '', '', 'fe45a56a-d60e-45c1-8c66-bf8b548981b8', '', '', '', '', ''),
(138, '', '', '', '', '', '', '', '', 11, '', 'INT', '', '', '', 'Faculty Member 5', 'NOT NULL', '', 7, '\"<field \\r\\n\\ttype=\\\"facultymember\\\" \\r\\n\\tname=\\\"faculty_member_5\\\" \\r\\n\\tlabel=\\\"Faculty Member\\\" \\r\\n\\tdescription=\\\"\\\" \\r\\n\\textends=\\\"user\\\" \\r\\n\\ttable=\\\"#__users\\\" \\r\\n\\tcomponent=\\\"com_users\\\" \\r\\n\\tview=\\\"###view###\\\" \\r\\n\\tviews=\\\"###views###\\\" \\r\\n\\tvalue_field=\\\"name\\\" \\r\\n\\tkey_field=\\\"id\\\" \\r\\n\\ttype_php_1=\\\"\\/\\/ set the groups array\\\" \\r\\n\\ttype_php_2=\\\"$groups = JComponentHelper::getParams(\'com_###component###\')->get(\'###type###\');\\\" \\r\\n\\ttype_php_3=\\\"return $groups;\\\"\\r\\n\\/>\"', -2, '2015-04-23 20:57:19', '2015-09-11 03:28:16', 1, '', '', '038e8bbf-6451-45ca-9ae8-0c1caec74863', '', '', '', '', ''),
(139, '', '', '', '', '', '', '', '', 11, '', 'INT', '', '', '', 'Faculty Member 6', 'NOT NULL', '', 7, '\"<field \\r\\n\\ttype=\\\"facultymember\\\" \\r\\n\\tname=\\\"faculty_member_6\\\" \\r\\n\\tlabel=\\\"Faculty Member\\\" \\r\\n\\tdescription=\\\"\\\" \\r\\n\\textends=\\\"user\\\" \\r\\n\\ttable=\\\"#__users\\\" \\r\\n\\tcomponent=\\\"com_users\\\" \\r\\n\\tview=\\\"###view###\\\" \\r\\n\\tviews=\\\"###views###\\\" \\r\\n\\tvalue_field=\\\"name\\\" \\r\\n\\tkey_field=\\\"id\\\" \\r\\n\\ttype_php_1=\\\"\\/\\/ set the groups array\\\" \\r\\n\\ttype_php_2=\\\"$groups = JComponentHelper::getParams(\'com_###component###\')->get(\'###type###\');\\\" \\r\\n\\ttype_php_3=\\\"return $groups;\\\"\\r\\n\\/>\"', -2, '2015-04-23 20:57:19', '2015-09-11 03:28:16', 1, '', '', '2652e31a-f09d-4c7f-a8dd-b6c0b5fb94d4', '', '', '', '', ''),
(140, '', '', '', '', '', '', '', '', 11, '', 'INT', '', '', '', 'Faculty Member 7', 'NOT NULL', '', 7, '\"<field \\r\\n\\ttype=\\\"facultymember\\\" \\r\\n\\tname=\\\"faculty_member_7\\\" \\r\\n\\tlabel=\\\"Faculty Member\\\" \\r\\n\\tdescription=\\\"\\\" \\r\\n\\textends=\\\"user\\\" \\r\\n\\ttable=\\\"#__users\\\" \\r\\n\\tcomponent=\\\"com_users\\\" \\r\\n\\tview=\\\"###view###\\\" \\r\\n\\tviews=\\\"###views###\\\" \\r\\n\\tvalue_field=\\\"name\\\" \\r\\n\\tkey_field=\\\"id\\\" \\r\\n\\ttype_php_1=\\\"\\/\\/ set the groups array\\\" \\r\\n\\ttype_php_2=\\\"$groups = JComponentHelper::getParams(\'com_###component###\')->get(\'###type###\');\\\" \\r\\n\\ttype_php_3=\\\"return $groups;\\\"\\r\\n\\/>\"', -2, '2015-04-23 20:57:19', '2015-09-11 03:28:16', 1, '', '', '04f408fe-fd85-4340-8639-a191dcb06d67', '', '', '', '', ''),
(141, '', '', '', '', '', '', '', '', 11, '', 'INT', '', '', '', 'Faculty Member 8', 'NOT NULL', '', 7, '\"<field \\r\\n\\ttype=\\\"facultymember\\\" \\r\\n\\tname=\\\"faculty_member_8\\\" \\r\\n\\tlabel=\\\"Faculty Member\\\" \\r\\n\\tdescription=\\\"\\\" \\r\\n\\textends=\\\"user\\\" \\r\\n\\ttable=\\\"#__users\\\" \\r\\n\\tcomponent=\\\"com_users\\\" \\r\\n\\tview=\\\"###view###\\\" \\r\\n\\tviews=\\\"###views###\\\" \\r\\n\\tvalue_field=\\\"name\\\" \\r\\n\\tkey_field=\\\"id\\\" \\r\\n\\ttype_php_1=\\\"\\/\\/ set the groups array\\\" \\r\\n\\ttype_php_2=\\\"$groups = JComponentHelper::getParams(\'com_###component###\')->get(\'###type###\');\\\" \\r\\n\\ttype_php_3=\\\"return $groups;\\\"\\r\\n\\/>\"', -2, '2015-04-23 20:57:19', '2015-09-11 03:28:16', 1, '', '', '63b5b351-d5aa-4ff1-b0c1-7a0424ce476b', '', '', '', '', ''),
(142, '', '', '', '', '', '', '', '', 11, '', 'INT', '', '', '', 'Faculty Member 9', 'NOT NULL', '', 7, '\"<field \\r\\n\\ttype=\\\"facultymember\\\" \\r\\n\\tname=\\\"faculty_member_9\\\" \\r\\n\\tlabel=\\\"Faculty Member\\\" \\r\\n\\tdescription=\\\"\\\" \\r\\n\\textends=\\\"user\\\" \\r\\n\\ttable=\\\"#__users\\\" \\r\\n\\tcomponent=\\\"com_users\\\" \\r\\n\\tview=\\\"###view###\\\" \\r\\n\\tviews=\\\"###views###\\\" \\r\\n\\tvalue_field=\\\"name\\\" \\r\\n\\tkey_field=\\\"id\\\" \\r\\n\\ttype_php_1=\\\"\\/\\/ set the groups array\\\" \\r\\n\\ttype_php_2=\\\"$groups = JComponentHelper::getParams(\'com_###component###\')->get(\'###type###\');\\\" \\r\\n\\ttype_php_3=\\\"return $groups;\\\"\\r\\n\\/>\"', -2, '2015-04-23 20:57:19', '2015-09-11 03:28:16', 1, '', '', '3d740f7b-7d02-428a-864a-7ffa4f49b4e4', '', '', '', '', ''),
(143, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'Field (required)', 'NOT NULL', '', 6, '\"<field\\n\\ttype=\\\"fields\\\"\\n\\tname=\\\"field\\\"\\n\\tlabel=\\\"Field\\\"\\n\\tdescription=\\\"Select a field\\\"\\n\\tclass=\\\"list_class fieldFull\\\"\\n\\tmultiple=\\\"false\\\"\\n\\trequired=\\\"true\\\"\\n\\textends=\\\"list\\\"\\n\\ttable=\\\"#__###component###_field\\\"\\n\\tcomponent=\\\"com_###component###\\\"\\n\\tview=\\\"field\\\"\\n\\tviews=\\\"fields\\\"\\n\\tvalue_field=\\\"name\\\"\\n\\tkey_field=\\\"id\\\"\\n\\tprime_php=\\\"1\\\"\\n\\ttype_php_1=\\\"__.o0=base64=Oo.__JGRiID0gSkZhY3Rvcnk6OmdldERCTygpOw0KCQkkcXVlcnkgPSAkZGItPmdldFF1ZXJ5KHRydWUpOw0KCQkkcXVlcnktPnNlbGVjdCgkZGItPnF1b3RlTmFtZShhcnJheSgnYS4jIyNJRCMjIycsICdhLiMjI1RFWFQjIyMnLCAnYS54bWwnLCAnYi5uYW1lJyksIGFycmF5KCcjIyNJRCMjIycsICcjIyNDT0RFX1RFWFQjIyMnLCAneG1sJywgJ3R5cGUnKSkpOw0KCQkkcXVlcnktPmZyb20oJGRiLT5xdW90ZU5hbWUoJyMjI1RBQkxFIyMjJywgJ2EnKSk7DQoJCSRxdWVyeS0+am9pbignTEVGVCcsICcjX18jIyNjb21wb25lbnQjIyNfZmllbGR0eXBlIEFTIGIgT04gYi5pZCA9IGEuZmllbGR0eXBlJyk7DQoJCSRxdWVyeS0+d2hlcmUoJGRiLT5xdW90ZU5hbWUoJ2EucHVibGlzaGVkJykgLiAnID49IDEnKTsNCgkJJHF1ZXJ5LT5vcmRlcignYS4jIyNURVhUIyMjIEFTQycpOw0KCQkkZGItPnNldFF1ZXJ5KChzdHJpbmcpICRxdWVyeSk7DQoJCSRpdGVtcyA9ICRkYi0+bG9hZE9iamVjdExpc3QoKTsNCgkJJG9wdGlvbnMgPSBhcnJheSgpOw0KCQlpZiAoJGl0ZW1zKQ0KCQl7DQoJCQkkb3B0aW9uc1tdID0gSkh0bWw6Ol8oJ3NlbGVjdC5vcHRpb24nLCAnJywgJ1NlbGVjdCBhbiBvcHRpb24nKTsNCgkJCWZvcmVhY2goJGl0ZW1zIGFzICRpdGVtKQ0KCQkJew0KCQkJCS8vIGdldCB0aGUgZmllbGQgbmFtZSAoVE9ETyB0aGlzIGNvdWxkIHNsb3cgZG93biB0aGUgc3lzdGVtIHNvIHdlIHdpbGwgbmVlZCB0byBpbXByb3ZlIG9uIHRoaXMpDQoJCQkJaWYgKGlzc2V0KCRpdGVtLT54bWwpICYmIFtbW0NvbXBvbmVudF1dXUhlbHBlcjo6Y2hlY2tKc29uKCRpdGVtLT54bWwpKQ0KCQkJCXsNCgkJCQkJJGZpZWxkX3htbCA9IGpzb25fZGVjb2RlKCRpdGVtLT54bWwpOw0KCQkJCQkkZmllbGRfbmFtZSA9IFtbW0NvbXBvbmVudF1dXUhlbHBlcjo6Z2V0QmV0d2VlbigkZmllbGRfeG1sLCduYW1lPSInLCciJyk7DQoJCQkJCSRmaWVsZF9uYW1lID0gW1tbQ29tcG9uZW50XV1dSGVscGVyOjpzYWZlRmllbGROYW1lKCRmaWVsZF9uYW1lKTsNCgkJCQkJJG9wdGlvbnNbXSA9IEpIdG1sOjpfKCdzZWxlY3Qub3B0aW9uJywgJGl0ZW0tPiMjI0lEIyMjLCAkaXRlbS0+IyMjQ09ERV9URVhUIyMjIC4gJyBbICcgLiAkZmllbGRfbmFtZSAuICcgLSAnIC4gJGl0ZW0tPnR5cGUgLiAnIF0nKTsNCgkJCQl9DQoJCQkJZWxzZQ0KCQkJCXsNCgkJCQkJJG9wdGlvbnNbXSA9IEpIdG1sOjpfKCdzZWxlY3Qub3B0aW9uJywgJGl0ZW0tPiMjI0lEIyMjLCAkaXRlbS0+IyMjQ09ERV9URVhUIyMjIC4gJyBbIGVtcHR5IC0gJyAuICRpdGVtLT50eXBlIC4gJyBdJyk7DQoJCQkJfQ0KCQkJfQ0KCQl9DQoNCgkJcmV0dXJuICRvcHRpb25zOw==\\\"\\n\\/>\"', 1, '2015-04-28 10:45:32', '2023-10-06 16:03:56', 19, '', 241, 'a6eb2b20-082d-4f86-9a23-952fe0ff8214', '', '', '', '', ''),
(144, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', 2, '', '', 'Form - Label', 'NOT NULL', '', 24, '\"<field\\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"label\\\" \\r\\n\\tlabel=\\\"Label\\\" \\r\\n\\tsize=\\\"60\\\" \\r\\n\\tmaxlength=\\\"150\\\" \\r\\n\\tdescription=\\\"Enter Field Label Here. It is the descriptive title of the field. This is what the user will see above the input field.\\\"\\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\treadonly=\\\"false\\\" \\r\\n\\tdisabled=\\\"false\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\tfilter=\\\"STRING\\\" \\r\\n\\tmessage=\\\"Error! Please add field label here.\\\" \\r\\n\\thint=\\\"Label Here\\\" \\r\\n\\/>\"', 1, '2015-03-19 17:30:59', '2015-12-04 02:18:34', 4, '', 242, 'a1478573-20da-4722-8132-eeafaa66d89d', '', '', '', '', ''),
(145, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Form - Description', 'NOT NULL', '', 25, '\"<field \\r\\n\\ttype=\\\"textarea\\\" \\r\\n\\tname=\\\"description\\\" \\r\\n\\tlabel=\\\"Description\\\" \\r\\n\\trows=\\\"5\\\" \\r\\n\\tcols=\\\"20\\\" \\r\\n\\tdescription=\\\"Add the field description. It is text that will be shown as a tooltip when the user moves the mouse over the drop-down box.\\\" \\r\\n\\tclass=\\\"span12\\\" \\r\\n\\tfilter=\\\"SAFEHTML\\\" \\r\\n\\trequired=\\\"false\\\"\\r\\n\\thint=\\\"Description Here\\\" \\r\\n\\/>\"', 1, '2015-05-01 14:57:25', '2015-12-05 05:57:50', 4, '', 243, '438a3d21-d13c-4ebd-a6d1-c67bf39e545d', '', '', '', '', ''),
(146, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Form - Field Type', 'NOT NULL', '', 11, '\"<field \\r\\n\\ttype=\\\"list\\\" \\r\\n\\tname=\\\"field_type\\\" \\r\\n\\tlabel=\\\"Field Type\\\" \\r\\n\\tdescription=\\\"Select a field type.\\\" \\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\trequired=\\\"true\\\"\\r\\n\\tmultiple=\\\"false\\\" \\r\\n\\toption=\\\"|Select an option,5|Text,6|Url,7|Email,8|Tel,4|Text-area,3|Editor,1|Radio,2|List Selection,9|Calendar,10|Colour,11|Country,17|Region,12|Hidden,14|Text Note,15|Spacer,16|Custom HTML\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\/>\"', 1, '2015-04-28 10:45:32', '2016-06-11 18:14:11', 10, '', 244, 'a4ddc104-573d-4adc-86f6-c0841109bf81', '', '', '', '', ''),
(147, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'Field (Category)', 'NOT NULL', '', 2, '\"<field\\n\\ttype=\\\"category\\\"\\n\\tname=\\\"catid\\\"\\n\\tlabel=\\\"Category\\\"\\n\\textension=\\\"com_###component###.field\\\"\\n\\tdescription=\\\"select one of the following categories\\\"\\n\\tclass=\\\"inputbox\\\"\\n\\/>\"', 1, '2015-05-10 23:12:22', '2020-05-30 18:13:00', 7, '', 147, 'ef722d2d-0fa0-4aa7-92d2-7783ec1c9f7f', '', '', '', '', ''),
(148, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'FieldType (dynamic)', 'NOT NULL', '', 6, '\"<field\\n\\ttype=\\\"fieldtypes\\\"\\n\\tname=\\\"fieldtype\\\"\\n\\tlabel=\\\"Type\\\"\\n\\tdescription=\\\"Set the field type\\\"\\n\\tclass=\\\"btn-group\\\"\\n\\tmultiple=\\\"false\\\"\\n\\tdefault=\\\"\\\"\\n\\trequired=\\\"true\\\"\\n\\treadonly=\\\"\\\"\\n\\tdisabled=\\\"\\\"\\n\\textends=\\\"list\\\"\\n\\tbutton=\\\"true\\\"\\n\\ttable=\\\"#__###component###_fieldtype\\\"\\n\\tcomponent=\\\"com_###component###\\\"\\n\\tview=\\\"fieldtype\\\"\\n\\tviews=\\\"fieldtypes\\\"\\n\\tvalue_field=\\\"name\\\"\\n\\tkey_field=\\\"id\\\"\\n\\ttype_php_1=\\\"__.o0=base64=Oo.__JGRiID0gSkZhY3Rvcnk6OmdldERCTygpOw0KJHF1ZXJ5ID0gJGRiLT5nZXRRdWVyeSh0cnVlKTsNCiRxdWVyeS0+c2VsZWN0KCRkYi0+cXVvdGVOYW1lKGFycmF5KCdhLiMjI0lEIyMjJywnYS4jIyNURVhUIyMjJyksYXJyYXkoJyMjI0lEIyMjJywnIyMjQ09ERV9URVhUIyMjJykpKTsNCiRxdWVyeS0+ZnJvbSgkZGItPnF1b3RlTmFtZSgnIyMjVEFCTEUjIyMnLCAnYScpKTsNCiRxdWVyeS0+d2hlcmUoJGRiLT5xdW90ZU5hbWUoJ2EucHVibGlzaGVkJykgLiAnID0gMScpOw0KJHF1ZXJ5LT5vcmRlcignYS4jIyNURVhUIyMjIEFTQycpOw0KJGRiLT5zZXRRdWVyeSgoc3RyaW5nKSRxdWVyeSk7DQokaXRlbXMgPSAkZGItPmxvYWRPYmplY3RMaXN0KCk7DQokb3B0aW9ucyA9IGFycmF5KCk7DQppZiAoJGl0ZW1zKQ0Kew0KXHQkb3B0aW9uc1tdID0gSkh0bWw6Ol8oJ3NlbGVjdC5vcHRpb24nLCAnJywgJ1NlbGVjdCBhbiBvcHRpb24nKTsNClx0Zm9yZWFjaCgkaXRlbXMgYXMgJGl0ZW0pDQpcdHsNClx0XHQkb3B0aW9uc1tdID0gSkh0bWw6Ol8oJ3NlbGVjdC5vcHRpb24nLCAkaXRlbS0+IyMjSUQjIyMsICRpdGVtLT4jIyNDT0RFX1RFWFQjIyMpOw0KXHR9DQp9DQoNCnJldHVybiAkb3B0aW9uczs=\\\"\\n\\/>\"', 1, '2015-04-28 10:45:32', '2018-09-21 00:45:12', 7, '', 73, '91a4f538-1383-4ae4-85d8-55ddada7d6cd', '', '', '', '', ''),
(149, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'Fieldtypes (Category)', 'NOT NULL', '', 2, '\"<field\\n\\ttype=\\\"category\\\"\\n\\tname=\\\"catid\\\"\\n\\tlabel=\\\"Category\\\"\\n\\textension=\\\"com_###component###.fieldtype\\\"\\n\\tdefault=\\\"\\\"\\n\\tdescription=\\\"select one of the following categories\\\"\\n\\tclass=\\\"inputbox\\\"\\n\\/>\"', 1, '2015-05-10 23:12:22', '2020-05-30 17:07:02', 2, '', 54, '7cc4ab46-0d77-4ef8-a2a7-d5b656546a30', '', '', '', '', ''),
(150, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Email', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"email\\\" \\r\\n\\tlabel=\\\"Email\\\" \\r\\n\\tsize=\\\"10\\\" \\r\\n\\tmaxlength=\\\"50\\\" \\r\\n\\tdescription=\\\"Enter Email\\\" \\r\\n\\tclass=\\\"text_area\\\"\\r\\n\\tfilter=\\\"STRING\\\" \\r\\n\\tvalidate=\\\"email\\\" \\r\\n\\trequired=\\\"true\\\"\\r\\n\\tmessage=\\\"Error! Please add email address here.\\\" \\r\\n\\thint=\\\"Email Address Here\\\" \\r\\n\\/>\"', 1, '2015-05-05 23:44:32', '2018-03-11 01:46:36', 6, '', 53, 'ac539a5a-971d-4b4e-9f2f-93fc6d486e58', '', '', '', '', ''),
(151, '', '', '', '', '', '', '', '', 64, '', 'CHAR', '', '', '', 'From Name', 'NOT NULL', '', 24, '\"<field type=\\\"text\\\" name=\\\"name\\\" label=\\\"From Name\\\" description=\\\"\\\" class=\\\"text_area\\\" filter=\\\"STRING\\\" \\r\\n\\trequired=\\\"true\\\" hint=\\\"From Name Here\\\" \\/>\"', 1, '2015-03-19 17:30:59', '2015-08-25 21:15:22', 1, '', 52, '53ded5f9-2d93-4904-b5f6-eb7f3e1d524e', '', '', '', '', ''),
(152, '', '', '', '', '', '', '', '', 11, '', 'INT', '', '', '', 'Group', 'NOT NULL', '', 29, '\"<field\\n\\ttype=\\\"usergroup\\\"\\n\\tname=\\\"group\\\"\\n\\tlabel=\\\"Group\\\"\\n\\tdescription=\\\"Select the group\\\"\\n\\trequired=\\\"true\\\"\\n\\/>\"', 1, '2015-04-24 07:46:01', '2018-07-31 07:14:55', 2, '', 51, 'af9a010c-e22c-451c-9118-17c54342fccf', '', '', '', '', ''),
(153, '', '', '', '', '', '', '', '', 64, '', 'CHAR', '', '', '', 'Student Groups (multi)', 'NOT NULL', 1, 29, '\"<field \\r\\n\\ttype=\\\"usergroup\\\" \\r\\n\\tname=\\\"groups\\\" \\r\\n\\tlabel=\\\"Group\\/s\\\" \\r\\n\\trequired=\\\"true\\\"\\r\\n\\tdescription=\\\"Select a student group\\/s\\\"\\r\\n\\tmultiple=\\\"true\\\"\\r\\n\\/>\"', 1, '2015-04-24 07:46:01', '2015-09-25 17:03:15', 3, '', 50, '7f25f3f6-86e1-4b99-95a9-4eb40d998ce8', '', '', '', '', ''),
(154, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'Has Metadata', 'NOT NULL', '', 3, '\"<field\\n\\ttype=\\\"checkbox\\\"\\n\\tname=\\\"metadata\\\"\\n\\tlabel=\\\"Has Metadata\\\"\\n\\tvalue=\\\"1\\\"\\n\\tdefault=\\\"1\\\"\\n\\tdescription=\\\"Select if this view should have metadata.\\\"\\n\\tclass=\\\"inputbox\\\"\\n\\/>\"', 1, '2015-05-11 23:14:53', '2019-06-11 12:20:23', 5, '', 49, 'f2028e1b-b4c0-4f73-85a6-a580d1395618', '', '', '', '', ''),
(155, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Form - Hint', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"hint\\\" \\r\\n\\tlabel=\\\"Hint\\\" \\r\\n\\tsize=\\\"60\\\" \\r\\n\\tmaxlength=\\\"150\\\"\\r\\n\\tdescription=\\\"Hint to show in text box\\\" \\r\\n\\tclass=\\\"text_area\\\"\\r\\n\\tfilter=\\\"HTML\\\" \\r\\n\\tmessage=\\\"Error! Please add hint to show in text box.\\\" \\r\\n\\thint=\\\"Add Hint Here\\\" \\r\\n\\/>\"', 1, '2015-05-02 09:31:55', '2015-12-04 03:38:46', 2, '', 48, 'ce6912c7-eb78-4f06-9274-97e599b83d88', '', '', '', '', ''),
(156, '', '', '', '', '', '', '', '', 64, '', 'VARCHAR', '', '', '', 'Home Phone', 'NOT NULL', '', 23, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"home_phone\\\"\\n\\tlabel=\\\"Home Phone\\\"\\n\\tsize=\\\"10\\\"\\n\\tmaxlength=\\\"50\\\"\\n\\tdefault=\\\"\\\"\\n\\tdescription=\\\"Enter Home Phone Number\\\"\\n\\tclass=\\\"text_area\\\"\\n\\tfilter=\\\"tel\\\"\\n\\tvalidated=\\\"tel\\\"\\n\\tmessage=\\\"Error! Please add home phone number here.\\\"\\n\\thint=\\\"Home Phone Here\\\"\\n\\/>\"', 1, '2015-04-07 22:12:58', '2019-09-12 19:44:58', 3, '', 47, '38d7bc98-ccbf-48ee-a0c3-259e51652206', '', '', '', '', ''),
(157, '', '', '', '', '', '', '', '', 64, '', 'CHAR', '', '', '', 'Icon', 'NOT NULL', '', 12, '\"<field \\r\\n\\ttype=\\\"media\\\" \\r\\n\\tname=\\\"icon\\\" \\r\\n\\tlabel=\\\"Icon\\\" \\r\\n\\tdescription=\\\"Must be 128px x 128px and a png format.\\\" \\r\\n\\tdirectory=\\\"\\\" \\r\\n\\/>\"', 1, '2015-04-29 14:00:56', '2015-08-25 21:15:22', 1, '', 46, '3b731d0a-3205-4409-a9fd-e74d1db25055', '', '', '', '', ''),
(158, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Image', 'NOT NULL', '', 12, '\"<field\\n\\ttype=\\\"media\\\"\\n\\tname=\\\"image\\\"\\n\\tlabel=\\\"Image\\\"\\n\\/>\"', 1, '2015-04-29 14:00:56', '2020-06-07 02:17:46', 2, '', 45, '0d6970af-b361-4f65-84f6-0eb0c5f09bad', '', '', '', '', ''),
(159, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'Implementation', 'NOT NULL', '', 11, '\"<field \\r\\n\\ttype=\\\"list\\\"\\r\\n\\tname=\\\"implementation\\\" \\r\\n\\tlabel=\\\"Implementation\\\" \\r\\n\\tdescription=\\\"Select applicable implementation.\\\" \\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\tmultiple=\\\"false\\\" \\r\\n\\tfilter=\\\"INT\\\" \\r\\n\\trequired=\\\"\\\" \\r\\n\\toption=\\\"1|In Relation to each Record,2|In Relation to the Whole View,3|Both\\\" \\r\\n\\tdefault=\\\"1\\\" \\r\\n\\/>\"', 1, '2015-05-10 21:26:50', '2017-10-09 19:03:21', 3, '', 44, 'bc5bed02-8fa3-462e-9c54-c39886fcdfe1', '', '', '', '', ''),
(160, '', '', '', '', '', '', '', '', 64, '', 'CHAR', 2, '', '', 'Indexes Type', 'NOT NULL', '', 11, '\"<field\\n\\ttype=\\\"list\\\"\\n\\tname=\\\"indexes\\\"\\n\\tlabel=\\\"Indexes Type\\\"\\n\\tclass=\\\"btn-group\\\"\\n\\tmultiple=\\\"false\\\"\\n\\tfilter=\\\"INT\\\"\\n\\trequired=\\\"true\\\"\\n\\toption=\\\"1|UNIQUE KEY,2|KEY,0|None\\\"\\n\\tdefault=\\\"0\\\"\\n\\/>\"', 1, '2015-05-10 21:26:50', '2020-05-25 00:22:37', 2, '', 43, '63ff758d-a866-4d37-bc2a-a7432bd9bb44', '', '', '', '', ''),
(161, '', '', 1, '', '', '', '', '', 11, '', 'INT', '', 'Ly8gbGl0dGxlIHNjcmlwdCB0byBjaGVjayB0aGF0IG9ubHkgb25lIHRpdGxlIGlzIHNlbGVjdGVkDQpmdW5jdGlvbiBjaGVja0FsaWFzKGZpZWxkKSB7DQoJLy8gZ2V0IHRoZSBJRA0KCXZhciBpZCA9IGpRdWVyeShmaWVsZCkuYXR0cignaWQnKTsNCgl2YXIgdGFyZ2V0ID0gaWQuc3BsaXQoJ19fJyk7DQoJLy9zZXQgdGhlIHN1YklEDQoJdmFyIHN1YklEID0gdGFyZ2V0WzBdKydfXycrdGFyZ2V0WzFdOw0KCXZhciBzdWJJRCA9IHN1YklELnJlcGxhY2UoL1xkKy9nLCAnJyk7DQoJLy8gc2V0IG5vdGljZSBhbmQgZG8gaG91c2UgY2xlYW5pbmcNCglpZiAoalF1ZXJ5KCcjJytpZCkucHJvcCgnY2hlY2tlZCcpKSB7DQoJCS8vIGdldCBudW1iZXIgb2YgaXRlbXMNCgkJdmFyIG51bUl0ZW1zID0galF1ZXJ5KCcuY291bnQtdGhlLWl0ZW1zMTIzNScpLmxlbmd0aCArIDEwOw0KCQlmb3IgKGkgPSAwOyBpIDwgbnVtSXRlbXM7IGkrKykgeyAvLyBmb3Igbm93IHRoaXMgaXMgdGhlIG51bWJlciBvZiBmaWVsZCB3ZSBzaG91bGQgY2hlY2sNCgkJCS8vIGJ1aWxkIElEDQoJCQl2YXIgaWRfY2hlY2sgPSBzdWJJRCtpKydfX2FsaWFzJzsNCgkJCS8vIGZpcnN0IGNoZWNrIGlmIElkIGlzIG9uIHBhZ2UNCgkJCWlmIChqUXVlcnkoIiMiK2lkX2NoZWNrKS5sZW5ndGggJiYgaWRfY2hlY2sgIT09IGlkKSB7DQoJCQkJLy8gdW5jaGVjayBpdA0KCQkJCWpRdWVyeSgiIyIraWRfY2hlY2spLnByb3AoJ2NoZWNrZWQnLCBmYWxzZSkudHJpZ2dlcignY2hhbmdlJyk7DQoJCQl9DQoJCX0NCgl9DQp9', '', 'Is Alias', 'NOT NULL', '', 3, '\"<field\\n\\ttype=\\\"checkbox\\\"\\n\\tname=\\\"alias\\\"\\n\\tlabel=\\\"Alias\\\"\\n\\tvalue=\\\"1\\\"\\n\\tdefault=\\\"\\\"\\n\\trequired=\\\"\\\"\\n\\tdescription=\\\"Select if the field is the alias field.\\\"\\n\\tclass=\\\"inputbox\\\"\\n\\tonchange=\\\"checkAlias(this)\\\"\\n\\/>\"', 1, '2015-05-11 13:02:32', '2018-04-19 14:22:08', 6, '', 42, '790d2db0-bda5-4e91-996c-3f90b8794004', '', '', '', '', ''),
(162, '', '', 1, '', '', '', '', '', 11, '', 'INT', '', 'Ly8gbGl0dGxlIHNjcmlwdCB0byBjaGVjayB2YWx1ZSBhbmQgZ2l2ZSBub3RpY2UNCmZ1bmN0aW9uIGV4cGxhaW5GaWx0ZXJCZWhhdmlvdXIoZmllbGQpIHsNCgkvLyBnZXQgdGhlIElEDQoJbGV0IGlkID0galF1ZXJ5KGZpZWxkKS5hdHRyKCdpZCcpOw0KCS8vIGdldCB2YWx1ZQ0KCWxldCB2YWx1ZSA9IGpRdWVyeSgnIycraWQpLnZhbCgpOw0KCS8vIHNldCBub3RpY2UgYW5kIGRvIGhvdXNlIGNsZWFuaW5nDQoJaWYgKDIgPT0gdmFsdWUpIHsNCgkJLy8gbWVhbnMgbXVsdGkgb3B0aW9uIGNhbiBiZSBzZWxlY3RlZCBpbiB0aGUgZmlsdGVyLCB0aGlzIGlzIGp1c3QgYXZhaWxhYmxlIHdpdGggdGhlIG5ldyBmaWx0ZXJzDQoJCWpRdWVyeS5VSWtpdC5ub3RpZnkoe21lc3NhZ2U6IEpvb21sYS5KVGV4dC5fKCdUaGUgPGI+bXVsdGkgZmlsdGVyPC9iPiBzZWxlY3Rpb24gb3B0aW9uIGFsbG93cyB0aGUgdXNlciB0byBzZWxlY3QgbW9yZSB0aGVuIG9uZSB2YWx1ZSBpbiB0aGlzIGZpbHRlci9maWVsZC4gUGxlYXNlIG5vdGUgdGhhdCB0aGlzIG9wdGlvbiA8Yj5vbmx5IHdvcmtzPC9iPiB3aXRoIHRoZSA8Yj5uZXc8L2I+IGZpbHRlcnMgdGhhdCBsb2FkIGFib3ZlIHRoZSBhZG1pbiBsaXN0IHZpZXcuIFlvdSBjYW4gc2VsZWN0IHRoZSBuZXcgZmlsdGVyIG9wdGlvbiB3aGVuL3doZXJlIHlvdSBhZGQgdGhlIHZpZXcgdG8gdGhlIGNvbXBvbmVudC4nKSwgdGltZW91dDogMTAwMDAsIHN0YXR1czogJ3ByaW1hcnknLCBwb3M6ICd0b3AtcmlnaHQnfSk7DQoJfSBlbHNlIGlmICgxID09IHZhbHVlKSB7DQoJCS8vIG1lYW5zIHNpbmdsZSBvcHRpb24gY2FuIGJlIHNlbGVjdGVkIGluIHRoZSBmaWx0ZXINCgkJalF1ZXJ5LlVJa2l0Lm5vdGlmeSh7bWVzc2FnZTogSm9vbWxhLkpUZXh0Ll8oJ1RoZSA8Yj5zaW5nbGUgZmlsdGVyPC9iPiBzZWxlY3Rpb24gb3B0aW9uIGFsbG93cyB0aGUgdXNlciB0byBzZWxlY3QganVzdCBvbmUgdmFsdWUgaW4gdGhpcyBmaWx0ZXIvZmllbGQuJyksIHRpbWVvdXQ6IDUwMDAsIHN0YXR1czogJ3ByaW1hcnknLCBwb3M6ICd0b3AtcmlnaHQnfSk7DQoJfQ0KfQ==', '', 'Is Filter', 'NOT NULL', '', 11, '\"<field\\n\\ttype=\\\"list\\\"\\n\\tname=\\\"filter\\\"\\n\\tlabel=\\\"Filter\\\"\\n\\tdescription=\\\"Should this field be used as a filter in list view, if shown.\\\"\\n\\tclass=\\\"fieldSmall\\\"\\n\\tmultiple=\\\"false\\\"\\n\\toption=\\\"|No,1|Yes (single),2|Yes (multi)\\\"\\n\\tdefault=\\\"\\\"\\n\\tonchange=\\\"explainFilterBehaviour(this)\\\"\\n\\/>\"', 1, '2015-05-11 13:02:32', '2020-11-14 02:52:45', 11, '', 41, 'a1cc8554-4816-4cec-87ea-3525c36c8366', '', '', '', '', ''),
(163, '', '', '', '', '', '', '', '', 11, '', 'INT', '', '', '', 'Is Link', 'NOT NULL', '', 3, '\"<field\\n\\ttype=\\\"checkbox\\\"\\n\\tname=\\\"link\\\"\\n\\tlabel=\\\"Link\\\"\\n\\tvalue=\\\"1\\\"\\n\\tdefault=\\\"\\\"\\n\\trequired=\\\"\\\"\\n\\tdescription=\\\"Select if the field is to be used as a link to a single record, if shown.\\\"\\n\\tclass=\\\"inputbox\\\"\\n\\/>\"', 1, '2015-05-11 13:02:32', '2018-04-13 14:11:19', 4, '', 40, '0dd43656-cb30-4a0f-a66a-4d4527d8d794', '', '', '', '', ''),
(164, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'Is Searchable', 'NOT NULL', '', 3, '\"<field\\n\\ttype=\\\"checkbox\\\"\\n\\tname=\\\"search\\\"\\n\\tlabel=\\\"Searchable\\\"\\n\\tvalue=\\\"1\\\"\\n\\tdefault=\\\"\\\"\\n\\trequired=\\\"\\\"\\n\\tdescription=\\\"Select if the field is to be searchable in list view, if shown.\\\"\\n\\tclass=\\\"inputbox\\\"\\n\\/>\"', 1, '2015-05-11 13:02:32', '2018-04-13 14:11:24', 4, '', 39, '01a8932d-2422-416f-bea1-7fd2117dc6a6', '', '', '', '', ''),
(165, '', '', '', '', '', '', '', '', 11, '', 'INT', '', '', '', 'Is Sortable', 'NOT NULL', '', 3, '\"<field\\n\\ttype=\\\"checkbox\\\"\\n\\tname=\\\"sort\\\"\\n\\tlabel=\\\"Sortable\\\"\\n\\tvalue=\\\"1\\\"\\n\\tdefault=\\\"\\\"\\n\\trequired=\\\"\\\"\\n\\tdescription=\\\"Select if the field should be sortable in list view, if shown.\\\"\\n\\tclass=\\\"inputbox\\\"\\n\\/>\"', 1, '2015-05-11 13:02:32', '2018-04-13 14:11:29', 4, '', 55, 'cf97c040-e31e-4670-902f-5f03ef797720', '', '', '', '', ''),
(166, '', '', 1, '', '', '', '', '', 1, '', 'TINYINT', '', 'Ly8gbGl0dGxlIHNjcmlwdCB0byBjaGVjayB0aGF0IG9ubHkgb25lIHRpdGxlIGlzIHNlbGVjdGVkDQpmdW5jdGlvbiBjaGVja1RpdGxlKGZpZWxkKSB7DQoJLy8gZ2V0IHRoZSBJRA0KCXZhciBpZCA9IGpRdWVyeShmaWVsZCkuYXR0cignaWQnKTsNCgl2YXIgdGFyZ2V0ID0gaWQuc3BsaXQoJ19fJyk7DQoJLy9zZXQgdGhlIHN1YklEDQoJdmFyIHN1YklEID0gdGFyZ2V0WzBdKydfXycrdGFyZ2V0WzFdOw0KCXZhciBzdWJJRCA9IHN1YklELnJlcGxhY2UoL1xkKy9nLCAnJyk7DQoJLy8gc2V0IG5vdGljZSBhbmQgZG8gaG91c2UgY2xlYW5pbmcNCglpZiAoalF1ZXJ5KCcjJytpZCkucHJvcCgnY2hlY2tlZCcpKSB7DQoJCS8vIGdldCBudW1iZXIgb2YgaXRlbXMNCgkJdmFyIG51bUl0ZW1zID0galF1ZXJ5KCcuY291bnQtdGhlLWl0ZW1zMTIzNScpLmxlbmd0aCArIDEwOw0KCQlmb3IgKGkgPSAwOyBpIDwgbnVtSXRlbXM7IGkrKykgeyAvLyBmb3Igbm93IHRoaXMgaXMgdGhlIG51bWJlciBvZiBmaWVsZCB3ZSBzaG91bGQgY2hlY2sNCgkJCS8vIGJ1aWxkIElEDQoJCQl2YXIgaWRfY2hlY2sgPSBzdWJJRCtpKydfX3RpdGxlJzsNCgkJCS8vIGZpcnN0IGNoZWNrIGlmIElkIGlzIG9uIHBhZ2UNCgkJCWlmIChqUXVlcnkoIiMiK2lkX2NoZWNrKS5sZW5ndGggJiYgaWRfY2hlY2sgIT09IGlkKSB7DQoJCQkJLy8gdW5jaGVjayBpdA0KCQkJCWpRdWVyeSgiIyIraWRfY2hlY2spLnByb3AoJ2NoZWNrZWQnLCBmYWxzZSkudHJpZ2dlcignY2hhbmdlJyk7DQoJCQl9DQoJCX0NCgl9DQp9', '', 'Is Title', 'NOT NULL', '', 3, '\"<field\\n\\ttype=\\\"checkbox\\\"\\n\\tname=\\\"title\\\"\\n\\tlabel=\\\"Title\\\"\\n\\tvalue=\\\"1\\\"\\n\\tdefault=\\\"\\\"\\n\\trequired=\\\"\\\"\\n\\tdescription=\\\"Select if the field is the title field.\\\"\\n\\tclass=\\\"inputbox\\\"\\n\\tonchange=\\\"checkTitle(this)\\\"\\n\\/>\"', 1, '2015-05-11 13:02:32', '2018-04-19 14:21:03', 7, '', 56, 'fdb1dfd5-1946-463f-9d70-ec2a876a97bb', '', '', '', '', ''),
(167, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Javascript (view-file)', 'NOT NULL', 2, 8, '\"<field\\n\\ttype=\\\"editor\\\"\\n\\tname=\\\"javascript_view_file\\\"\\n\\tlabel=\\\"Javascript (edit view file)\\\"\\n\\tdescription=\\\"Add JavaScript for the edit view that is loaded in the header of the document via a JS file. Do not add the script tags. PHP does not work in this field\\/area\\/file.\\\"\\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-11 12:36:14', '2019-07-08 14:12:02', 10, '', 72, '5f7479f2-b499-4094-8294-d580e51244a1', '', '', '', '', ''),
(168, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Javascript (views-file)', 'NOT NULL', 2, 8, '\"<field\\n\\ttype=\\\"editor\\\"\\n\\tname=\\\"javascript_views_file\\\"\\n\\tlabel=\\\"Javascript (list view file)\\\"\\n\\tdescription=\\\"Add JavaScript for the list view that is loaded in the header of the document via a JS file. Do not add the script tags. PHP does not work in this field\\/area\\/file.\\\"\\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-11 12:36:14', '2019-07-08 14:12:23', 4, '', 71, 'ec2db8b1-d779-4bf2-b4cd-374a894fdc83', '', '', '', '', ''),
(169, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'Keep History', 'NOT NULL', '', 3, '\"<field\\n\\ttype=\\\"checkbox\\\"\\n\\tname=\\\"history\\\"\\n\\tlabel=\\\"Keep History\\\"\\n\\tvalue=\\\"1\\\"\\n\\tdefault=\\\"1\\\"\\n\\tdescription=\\\"Select if the items of this view should keep a history of item changes.\\\"\\n\\tclass=\\\"inputbox\\\"\\n\\/>\"', 1, '2015-05-11 23:14:53', '2019-06-11 12:19:51', 4, '', 70, 'dd9f51ff-db9c-4c15-9d34-f634a7ffd7f5', '', '', '', '', ''),
(170, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Key Words', 'NOT NULL', '', 25, '\"<field \\r\\n\\ttype=\\\"textarea\\\" \\r\\n\\tname=\\\"key_words\\\" \\r\\n\\tlabel=\\\"Key Words\\\" \\r\\n\\tdescription=\\\"Enter some key words, separated by comas\\\" \\r\\n\\trows=\\\"10\\\"\\r\\n\\tcols=\\\"720\\\"\\r\\n\\tclass=\\\"span12\\\"\\r\\n\\tfilter=\\\"STRING\\\" \\r\\n\\tmessage=\\\"Error! Please add some key words here.\\\" \\r\\n\\thint=\\\"Add Key Words Here\\\" \\r\\n\\/>\"', 1, '2015-04-24 11:33:09', '2015-08-25 21:15:22', 1, '', 69, '003f47e3-7017-489f-83ee-c648cc013232', '', '', '', '', ''),
(171, '', '', '', '', '', '', '', '', 7, '', 'INT', '', '', '', 'Key Words Point', 'NOT NULL', '', 10, '\"<field \\r\\n\\ttype=\\\"integer\\\" \\r\\n\\tname=\\\"key_words_point\\\" \\r\\n\\tlabel=\\\"Key Words Point\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tdescription=\\\"Set the key words point, per correct key word.\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\trequired=\\\"true\\\"\\r\\n\\tfirst=\\\"0\\\" \\r\\n\\tlast=\\\"20\\\" \\r\\n\\tstep=\\\"1\\\" \\r\\n\\tfilter=\\\"INT\\\"\\r\\n\\/>\"', 1, '2015-04-28 10:52:33', '2015-08-25 21:15:22', 1, '', 68, 'dc8e3803-b069-4e38-8e7b-78603628066e', '', '', '', '', ''),
(172, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'License', 'NOT NULL', '', 25, '\"<field \\r\\n\\ttype=\\\"textarea\\\" \\r\\n\\tname=\\\"license\\\" \\r\\n\\tlabel=\\\"License\\\" \\r\\n\\tdefault=\\\"GNU\\/GPL Version 2 or later - http:\\/\\/www.gnu.org\\/licenses\\/gpl-2.0.html\\\"\\r\\n\\trows=\\\"7\\\" \\r\\n\\tcols=\\\"10\\\" \\r\\n\\tdescription=\\\"Add License Here\\\" \\r\\n\\tclass=\\\"text_area span12\\\" \\r\\n\\tfilter=\\\"HTML\\\" \\r\\n\\thint=\\\"Add License Here\\\" \\r\\n\\trequired=\\\"true\\\"\\r\\n\\/>\"', 1, '2015-03-19 18:20:49', '2015-08-25 21:15:22', 1, '', 67, 'e5346711-63a0-45b8-a093-06486959a1d0', '', '', '', '', ''),
(173, '', '', '', '', '', '', '', '', 7, '', 'INT', '', '', '', 'List Point', 'NOT NULL', '', 10, '\"<field \\r\\n\\ttype=\\\"integer\\\" \\r\\n\\tname=\\\"list_point\\\" \\r\\n\\tlabel=\\\"List Point\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tdescription=\\\"Set the list selection point, per correct selection.\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\trequired=\\\"true\\\"\\r\\n\\tfirst=\\\"0\\\" \\r\\n\\tlast=\\\"20\\\" \\r\\n\\tstep=\\\"1\\\" \\r\\n\\tfilter=\\\"INT\\\"\\r\\n\\/>\"', 1, '2015-04-28 10:52:33', '2015-08-25 21:15:22', 1, '', 66, 'aede9923-0aa9-4be7-9f17-102936868ae7', '', '', '', '', ''),
(174, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'Location (site,admin.both)', 'NOT NULL', '', 11, '\"<field \\r\\n\\ttype=\\\"list\\\" \\r\\n\\tname=\\\"location\\\" \\r\\n\\tlabel=\\\"Location\\\" \\r\\n\\tdescription=\\\"\\\" \\r\\n\\tclass=\\\"btn-group\\\" \\r\\n\\tsize=\\\"1\\\" \\r\\n\\tdefault=\\\"3\\\" \\r\\n\\tfilter=\\\"INT\\\" \\r\\n\\trequired=\\\"\\\" \\r\\n\\toption=\\\"1|Site,2|Admin,3|Both\\\" \\r\\n\\/>\"', 1, '2015-03-19 18:23:52', '2015-08-25 21:15:22', 2, '', 65, 'fc2bbe2b-629d-4ff6-b011-189f76fc90d1', '', '', '', '', ''),
(175, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'Main Menu', 'NOT NULL', '', 3, '\"<field\\n\\ttype=\\\"checkbox\\\"\\n\\tname=\\\"mainmenu\\\"\\n\\tlabel=\\\"Main Menu\\\"\\n\\tvalue=\\\"1\\\"\\n\\tdefault=\\\"1\\\"\\n\\tdescription=\\\"Select if the view should show in the main menu.\\\"\\n\\tclass=\\\"inputbox\\\"\\n\\/>\"', 1, '2015-05-11 23:14:53', '2019-06-11 12:18:37', 4, '', 64, 'e2b4dae2-b179-4d4f-89c9-9dbf11c21156', '', '', '', '', ''),
(176, '', '', '', '', '', '', '', '', 64, '', 'CHAR', '', '', '', 'Mandatory', 'NOT NULL', '', 3, '\"<field \\r\\n\\ttype=\\\"checkbox\\\"\\r\\n\\tname=\\\"mandatory\\\" \\r\\n\\tlabel=\\\"Mandatory\\\" \\r\\n\\tdescription=\\\"Select if the property<br \\/>is mandatory.\\\" \\r\\n\\tvalue=\\\"1\\\" \\r\\n\\tclass=\\\"inputbox\\\" \\r\\n\\/>\"', 1, '2015-05-10 21:38:22', '2017-09-21 02:04:45', 3, '', 63, 'ff561cee-63b4-476a-ad29-38e34100e928', '', '', '', '', ''),
(177, '', '', '', '', '', '', 1, '', 7, '', 'TINYINT', '', '', '', 'Mark', 'NOT NULL', '', 17, '\"<field type=\\\"radio\\\" name=\\\"mark\\\" label=\\\"Pass\\\" description=\\\"\\\" class=\\\"btn-group btn-group-yesno\\\" option=\\\"1|Yes,0|No\\\" default=\\\"0\\\" \\/>\"', 1, '2015-04-07 22:10:47', '2015-08-25 21:15:22', 1, '', 62, 'bc65b952-72ef-4960-9836-396b06e4b4ac', '', '', '', '', ''),
(178, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Markup Presidance', 'NOT NULL', '', 11, '\"<field \\r\\n\\ttype=\\\"list\\\" \\r\\n\\tname=\\\"markup_presidance\\\" \\r\\n\\tlabel=\\\"Select an Markup Presidance\\\" \\r\\n\\tdescription=\\\"\\\"\\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\tmultiple=\\\"false\\\" \\r\\n\\toption=\\\"overide,global,add,deduct\\\" \\r\\n\\tdefault=\\\"global\\\"\\r\\n\\/>\"', 1, '2015-04-07 21:15:11', '2015-08-25 21:15:22', 1, '', 61, '43376c7d-bb54-47dc-b615-01fc8a034fe9', '', '', '', '', ''),
(179, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'Match Behavior', 'NOT NULL', '', 11, '\"<field\\n\\ttype=\\\"list\\\"\\n\\tname=\\\"match_behavior\\\"\\n\\tlabel=\\\"Match Behavior\\\"\\n\\tdescription=\\\"Select the match behavior.\\\"\\n\\tclass=\\\"list_class fieldLarge\\\"\\n\\tmultiple=\\\"false\\\"\\n\\tfilter=\\\"INT\\\"\\n\\trequired=\\\"true\\\"\\n\\toption=\\\"1|Is (only 4 list\\/radio\\/checkboxes),2|Is Not (only 4 list\\/radio\\/checkboxes),3|Any Selection (only 4 list\\/radio\\/checkboxes\\/dynamic_list),4|Active (only 4 text_field),5|Unactive (only 4 text_field),6|Key Word All case-sensitive (only 4 text_field),7|Key Word Any case-sensitive (only 4 text_field),8|Key Word All case-insensitive (only 4 text_field),9|Key Word Any case-insensitive (only 4 text_field),10|Min Length (only 4 text_field),11|Max Length (only 4 text_field),12|Exact Length (only 4 text_field)\\\"\\n\\tdefault=\\\"1\\\"\\n\\/>\"', 1, '2015-05-11 18:49:20', '2020-05-20 12:11:15', 2, '', 60, '1623dfd2-c89e-485b-865d-064bb6554ec8', '', '', '', '', ''),
(180, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Match Options', 'NOT NULL', '', 25, '\"<field \\r\\n\\ttype=\\\"textarea\\\" \\r\\n\\tname=\\\"match_options\\\" \\r\\n\\tlabel=\\\"Match Options\\\" \\r\\n\\trows=\\\"10\\\" \\r\\n\\tcols=\\\"5\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\tfilter=\\\"STRING\\\" \\r\\n\\thint=\\\"Options here\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\/>\"', 1, '2015-05-11 18:49:20', '2015-08-25 21:15:22', 1, '', 59, 'da4d7380-431d-437f-97c4-288dac810910', '', '', '', '', ''),
(181, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'Match Field (dynamic)', 'NOT NULL', '', 6, '\"<field\\n\\ttype=\\\"fields\\\"\\n\\tname=\\\"match_field\\\"\\n\\tlabel=\\\"Match Field\\\"\\n\\tdescription=\\\"Select the match field.\\\"\\n\\tclass=\\\"\\\"\\n\\tmultiple=\\\"false\\\"\\n\\tdefault=\\\"\\\"\\n\\trequired=\\\"true\\\"\\n\\treadonly=\\\"\\\"\\n\\tdisabled=\\\"\\\"\\n\\textends=\\\"list\\\"\\n\\ttable=\\\"#__###component###_field\\\"\\n\\tcomponent=\\\"com_###component###\\\"\\n\\tview=\\\"field\\\"\\n\\tviews=\\\"fields\\\"\\n\\tvalue_field=\\\"name\\\"\\n\\tkey_field=\\\"id\\\"\\n\\ttype_php_1=\\\"__.o0=base64=Oo.__JGRiID0gSkZhY3Rvcnk6OmdldERCTygpOw0KJHF1ZXJ5ID0gJGRiLT5nZXRRdWVyeSh0cnVlKTsNCiRxdWVyeS0+c2VsZWN0KCRkYi0+cXVvdGVOYW1lKGFycmF5KCdhLiMjI0lEIyMjJywnYS4jIyNURVhUIyMjJyksYXJyYXkoJyMjI0lEIyMjJywnIyMjQ09ERV9URVhUIyMjJykpKTsNCiRxdWVyeS0+ZnJvbSgkZGItPnF1b3RlTmFtZSgnIyMjVEFCTEUjIyMnLCAnYScpKTsNCiRxdWVyeS0+d2hlcmUoJGRiLT5xdW90ZU5hbWUoJ2EucHVibGlzaGVkJykgLiAnID0gMScpOw0KJHF1ZXJ5LT5vcmRlcignYS4jIyNURVhUIyMjIEFTQycpOw0KJGRiLT5zZXRRdWVyeSgoc3RyaW5nKSRxdWVyeSk7DQokaXRlbXMgPSAkZGItPmxvYWRPYmplY3RMaXN0KCk7DQokb3B0aW9ucyA9IGFycmF5KCk7DQppZiAoJGl0ZW1zKQ0Kew0KXHQkb3B0aW9uc1tdID0gSkh0bWw6Ol8oJ3NlbGVjdC5vcHRpb24nLCAnJywgJ1NlbGVjdCBhbiBvcHRpb24nKTsNClx0Zm9yZWFjaCgkaXRlbXMgYXMgJGl0ZW0pDQpcdHsNClx0XHQkb3B0aW9uc1tdID0gSkh0bWw6Ol8oJ3NlbGVjdC5vcHRpb24nLCAkaXRlbS0+IyMjSUQjIyMsICRpdGVtLT4jIyNDT0RFX1RFWFQjIyMpOw0KXHR9DQp9DQokb3B0aW9ucyA9IGFycmF5X21lcmdlKHBhcmVudDo6Z2V0T3B0aW9ucygpLCAkb3B0aW9ucyk7DQpyZXR1cm4gJG9wdGlvbnM7\\\"\\n\\/>\"', 2, '2015-04-28 10:45:32', '2021-01-18 08:58:27', 4, '', 58, '99d6ff45-c209-4739-85de-777f27ca351f', '', '', '', '', ''),
(182, '', '', '', '', '', '', '', '', 64, '', 'CHAR', '', '', '', 'Media', 'NOT NULL', '', 12, '\"<field \\r\\n\\ttype=\\\"media\\\" \\r\\n\\tname=\\\"media\\\" \\r\\n\\tlabel=\\\"Media\\\" \\r\\n\\tdescription=\\\"\\\"\\r\\n\\tdirectory=\\\"\\\" \\r\\n\\tpreview=\\\"false\\\" \\r\\n\\/>\"', 1, '2015-04-29 14:00:56', '2015-08-25 21:15:22', 1, '', 57, '85a94073-2597-4446-9329-fe779b563425', '', '', '', '', ''),
(183, '', '', '', '', '', '', '', '', 64, '', 'CHAR', '', '', '', 'Media 1', 'NOT NULL', '', 12, '\"<field \\r\\n\\ttype=\\\"media\\\" \\r\\n\\tname=\\\"media_1\\\" \\r\\n\\tlabel=\\\"Media\\\" \\r\\n\\tdescription=\\\"\\\" \\r\\n\\tdirectory=\\\"\\\" \\r\\n\\tpreview=\\\"false\\\" \\r\\n\\/>\"', 1, '2015-04-29 14:00:56', '2015-08-25 21:15:22', 1, '', 38, '40947bb8-e43b-4101-a3ce-7db94cb48fb1', '', '', '', '', ''),
(184, '', '', '', '', '', '', '', '', 64, '', 'CHAR', '', '', '', 'Media 10', 'NOT NULL', '', 12, '\"<field \\r\\n\\ttype=\\\"media\\\" \\r\\n\\tname=\\\"media_10\\\" \\r\\n\\tlabel=\\\"Media\\\" \\r\\n\\tdescription=\\\"\\\" \\r\\n\\tdirectory=\\\"\\\" \\r\\n\\tpreview=\\\"false\\\" \\r\\n\\/>\"', 1, '2015-04-29 14:00:56', '2015-08-25 21:15:22', 1, '', 37, '4204fb1c-6f1f-4496-b6f1-08d9e02b6ede', '', '', '', '', ''),
(185, '', '', '', '', '', '', '', '', 64, '', 'CHAR', '', '', '', 'Media 11', 'NOT NULL', '', 12, '\"<field \\r\\n\\ttype=\\\"media\\\" \\r\\n\\tname=\\\"media_11\\\" \\r\\n\\tlabel=\\\"Media\\\" \\r\\n\\tdescription=\\\"\\\" \\r\\n\\tdirectory=\\\"\\\" \\r\\n\\tpreview=\\\"false\\\" \\r\\n\\/>\"', 1, '2015-04-29 14:00:56', '2015-08-25 21:15:22', 1, '', 36, '672e144a-1c97-4756-947e-01be600157c5', '', '', '', '', ''),
(186, '', '', '', '', '', '', '', '', 64, '', 'CHAR', '', '', '', 'Media 12', 'NOT NULL', '', 12, '\"<field \\r\\n\\ttype=\\\"media\\\" \\r\\n\\tname=\\\"media_12\\\" \\r\\n\\tlabel=\\\"Media\\\" \\r\\n\\tdescription=\\\"\\\" \\r\\n\\tdirectory=\\\"\\\" \\r\\n\\tpreview=\\\"false\\\" \\r\\n\\/>\"', 1, '2015-04-29 14:00:56', '2015-08-25 21:15:22', 1, '', 17, 'a81c95fe-f2d7-4613-b78f-d7887fcf4ae9', '', '', '', '', ''),
(187, '', '', '', '', '', '', '', '', 64, '', 'CHAR', '', '', '', 'Media 2', 'NOT NULL', '', 12, '\"<field \\r\\n\\ttype=\\\"media\\\" \\r\\n\\tname=\\\"media_2\\\" \\r\\n\\tlabel=\\\"Media\\\" \\r\\n\\tdescription=\\\"\\\" \\r\\n\\tdirectory=\\\"\\\" \\r\\n\\tpreview=\\\"false\\\" \\r\\n\\/>\"', 1, '2015-04-29 14:00:56', '2015-08-25 21:15:22', 1, '', 16, '68ee0d4e-570b-4045-a388-d1b00607a123', '', '', '', '', ''),
(188, '', '', '', '', '', '', '', '', 64, '', 'CHAR', '', '', '', 'Media 3', 'NOT NULL', '', 12, '\"<field \\r\\n\\ttype=\\\"media\\\" \\r\\n\\tname=\\\"media_3\\\" \\r\\n\\tlabel=\\\"Media\\\" \\r\\n\\tdescription=\\\"\\\" \\r\\n\\tdirectory=\\\"\\\" \\r\\n\\tpreview=\\\"false\\\" \\r\\n\\/>\"', 1, '2015-04-29 14:00:56', '2015-08-25 21:15:22', 1, '', 15, 'c18b5951-7b7d-4e5d-9d6e-c6dffb2e26e4', '', '', '', '', ''),
(189, '', '', '', '', '', '', '', '', 64, '', 'CHAR', '', '', '', 'Media 4', 'NOT NULL', '', 12, '\"<field \\r\\n\\ttype=\\\"media\\\" \\r\\n\\tname=\\\"media_4\\\" \\r\\n\\tlabel=\\\"Media\\\" \\r\\n\\tdescription=\\\"\\\" \\r\\n\\tdirectory=\\\"\\\" \\r\\n\\tpreview=\\\"false\\\" \\r\\n\\/>\"', 1, '2015-04-29 14:00:56', '2015-08-25 21:15:22', 1, '', 14, 'ea4ceacd-9b13-40b5-bbd1-9690b160e1c7', '', '', '', '', ''),
(190, '', '', '', '', '', '', '', '', 64, '', 'CHAR', '', '', '', 'Media 5', 'NOT NULL', '', 12, '\"<field \\r\\n\\ttype=\\\"media\\\" \\r\\n\\tname=\\\"media_5\\\" \\r\\n\\tlabel=\\\"Media\\\" \\r\\n\\tdescription=\\\"\\\" \\r\\n\\tdirectory=\\\"\\\" \\r\\n\\tpreview=\\\"false\\\" \\r\\n\\/>\"', 1, '2015-04-29 14:00:56', '2015-08-25 21:15:22', 1, '', 13, '31f937aa-dbad-4bb2-807d-a3f789e52e11', '', '', '', '', ''),
(191, '', '', '', '', '', '', '', '', 64, '', 'CHAR', '', '', '', 'Media 6', 'NOT NULL', '', 12, '\"<field \\r\\n\\ttype=\\\"media\\\" \\r\\n\\tname=\\\"media_6\\\" \\r\\n\\tlabel=\\\"Media\\\" \\r\\n\\tdescription=\\\"\\\" \\r\\n\\tdirectory=\\\"\\\" \\r\\n\\tpreview=\\\"false\\\" \\r\\n\\/>\"', 1, '2015-04-29 14:00:56', '2015-08-25 21:15:22', 1, '', 12, '3d2b4217-1e96-4bdb-b2dd-6fbe599174ff', '', '', '', '', ''),
(192, '', '', '', '', '', '', '', '', 64, '', 'CHAR', '', '', '', 'Media 7', 'NOT NULL', '', 12, '\"<field \\r\\n\\ttype=\\\"media\\\" \\r\\n\\tname=\\\"media_7\\\" \\r\\n\\tlabel=\\\"Media\\\" \\r\\n\\tdescription=\\\"\\\" \\r\\n\\tdirectory=\\\"\\\" \\r\\n\\tpreview=\\\"false\\\" \\r\\n\\/>\"', 1, '2015-04-29 14:00:56', '2015-08-25 21:15:22', 1, '', 11, 'f1c1f404-28eb-4965-b6c9-d6cf34f2126e', '', '', '', '', ''),
(193, '', '', '', '', '', '', '', '', 64, '', 'CHAR', '', '', '', 'Media 8', 'NOT NULL', '', 12, '\"<field \\r\\n\\ttype=\\\"media\\\" \\r\\n\\tname=\\\"media_8\\\" \\r\\n\\tlabel=\\\"Media\\\" \\r\\n\\tdescription=\\\"\\\" \\r\\n\\tdirectory=\\\"\\\" \\r\\n\\tpreview=\\\"false\\\" \\r\\n\\/>\"', 1, '2015-04-29 14:00:56', '2015-08-25 21:15:22', 1, '', 10, '908816f2-336b-45ce-89df-3d4992254e8e', '', '', '', '', ''),
(194, '', '', '', '', '', '', '', '', 64, '', 'CHAR', '', '', '', 'Media 9', 'NOT NULL', '', 12, '\"<field \\r\\n\\ttype=\\\"media\\\" \\r\\n\\tname=\\\"media_9\\\" \\r\\n\\tlabel=\\\"Media\\\" \\r\\n\\tdescription=\\\"\\\" \\r\\n\\tdirectory=\\\"\\\" \\r\\n\\tpreview=\\\"false\\\" \\r\\n\\/>\"', 1, '2015-04-29 14:00:56', '2015-08-25 21:15:22', 1, '', 9, '08355c02-04c2-4fde-8e50-0aa5caa24541', '', '', '', '', ''),
(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', '', '', '', '', ''),
(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', '', '', '', '', ''),
(202, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', 2, '', '', 'Name in Code', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"name_code\\\"\\n\\tlabel=\\\"Name in Code<br \\/>\\r\\n<small><a href=&quot;https:\\/\\/docs.joomla.org\\/J3.x:File_Structure_and_Naming_Conventions&quot; target=&quot;_blank&quot;>Naming Conventions<\\/a><\\/small>\\\"\\n\\tsize=\\\"40\\\"\\n\\tmaxlength=\\\"50\\\"\\n\\tdefault=\\\"\\\"\\n\\tdescription=\\\"Add Name in Code Here\\\"\\n\\tclass=\\\"text_area\\\"\\n\\trequired=\\\"true\\\"\\n\\tfilter=\\\"CMD\\\"\\n\\tmessage=\\\"Error! Please add name in code here.\\\"\\n\\thint=\\\"codename\\\"\\n\\/>\"', 1, '2015-05-06 08:44:48', '2021-04-26 13:46:22', 6, '', 18, 'af7b6b08-e8c5-4551-b6e6-cde297e78e40', '', '', '', '', ''),
(203, '', '', '', '', '', '', '', '', 1, '', 'INT', '', '', '', 'Not Required', 'NOT NULL', '', 9, '\"<field\\n\\ttype=\\\"hidden\\\"\\n\\tname=\\\"not_required\\\"\\n\\tdefault=\\\"\\u4e00_\\u4e00\\\"\\n\\/>\"', 1, '2015-05-08 16:19:16', '2023-09-27 07:57:19', 16, '', 19, 'da5e6901-6958-40e5-a4f5-6822d6fe57ac', '', '', '', '', ''),
(204, '', '', '', '', '', '', '', '', '', '', 'CHAR', '', '', '', 'Note - Answer Temp', 'NOT NULL', '', 14, '\"<field \\r\\n\\ttype=\\\"note\\\" \\r\\n\\tname=\\\"temp_note\\\" \\r\\n\\tlabel=\\\"The submitted question and answers will show here.\\\" \\r\\n\\tdescription=\\\"The screening of the submissions would also be able to be done here, but we will still look at that.\\\" \\r\\n\\theading=\\\"h4\\\" \\r\\n\\tclass=\\\"alert\\\" \\r\\n\\/>\"', 1, '2015-05-01 21:05:48', '2015-08-25 21:15:22', 1, '', 35, '4a883e7f-b5a9-44ad-b14c-4f398d144a53', '', '', '', '', ''),
(205, '', '', '', '', '', '', '', '', '', '', 'CHAR', '', '', '', 'Note - Application Temp', 'NOT NULL', '', 14, '\"<field \\r\\n\\ttype=\\\"note\\\" \\r\\n\\tname=\\\"temp_note\\\" \\r\\n\\tlabel=\\\"All the application details will show here\\\" \\r\\n\\tdescription=\\\"Approval of the application will also be done here,\\\" \\r\\n\\theading=\\\"h4\\\" \\r\\n\\tclass=\\\"alert\\\" \\r\\n\\/>\"', 1, '2015-05-01 21:38:16', '2015-08-25 21:15:22', 1, '', 34, '5a5ed948-339e-4b28-8e5f-956659d64153', '', '', '', '', ''),
(206, '', '', '', '', '', '', '', '', '', '', '', '', '', '', 'Note - Condition Implementation', 'NOT NULL', '', 14, '\"<field\\n\\ttype=\\\"note\\\"\\n\\tname=\\\"note_on_conditions\\\"\\n\\tlabel=\\\"Condition Implementation\\\"\\n\\tdescription=\\\"Here you can add conditional settings\\\"\\n\\theading=\\\"h4\\\"\\n\\tclass=\\\"alert alert-info\\\"\\n\\tclose=\\\"true\\\"\\n\\/>\"', 1, '2015-05-10 18:12:30', '2018-05-21 20:33:56', 2, '', 33, 'aba8c849-1c17-4c39-a70e-c0fbc14b7d7c', '', '', '', '', ''),
(207, '', '', '', '', '', '', '', '', '', '', 'CHAR', '', '', '', 'Note - Doc Embed (notes)', 'NOT NULL', '', 14, '\"<field \\r\\n\\ttype=\\\"note\\\" \\r\\n\\tname=\\\"doc_embed_note\\\" \\r\\n\\tlabel=\\\"To embed downloadable document links\\\" \\r\\n\\tdescription=\\\"First make sure that you did add the document to the session under extras.<br \\/>Next if the document name is the_document_name.doc then to add this document to the text area below using the following short script <code>{embed the_document_name.doc}<\\/code>\\\" \\r\\n\\theading=\\\"h4\\\" \\r\\n\\tclass=\\\"alert alert-info\\\" \\r\\n\\tclose=\\\"true\\\" \\r\\n\\/>\"', 1, '2015-04-30 14:30:35', '2015-08-25 21:15:22', 1, '', 32, '1569eda0-0f51-4426-be31-1234e3d63192', '', '', '', '', ''),
(208, '', '', '', '', '', '', '', '', '', '', 'CHAR', '', '', '', 'Note - Doc Embed (session)', 'NOT NULL', '', 14, '\"<field \\r\\n\\ttype=\\\"note\\\" \\r\\n\\tname=\\\"doc_embed_note\\\" \\r\\n\\tlabel=\\\"To embed downloadable document links\\\" \\r\\n\\tdescription=\\\"First make sure that you did add the document to the session under extras that this NOTE is linked to.<br \\/>Next if the document name is the_document_name.doc then to add this document to the text area below using the following short script <code>{embed the_document_name.doc}<\\/code>\\\" \\r\\n\\theading=\\\"h4\\\" \\r\\n\\tclass=\\\"alert alert-info\\\" \\r\\n\\tclose=\\\"true\\\" \\r\\n\\/>\"', 1, '2015-04-30 14:30:35', '2015-08-25 21:15:22', 1, '', 31, 'ca1ca0c5-7ee3-40e0-b409-6974e57526b2', '', '', '', '', ''),
(209, '', '', '', '', '', '', '', '', '', '', 'CHAR', '', '', '', 'Note - Doc Naming Convention', 'NOT NULL', '', 14, '\"<field \\r\\n\\ttype=\\\"note\\\" \\r\\n\\tname=\\\"doc_note\\\" \\r\\n\\tlabel=\\\"Document Naming Convention\\\" \\r\\n\\tdescription=\\\"The naming convention has the following rules.<br \\/>ONE: No spaces, all spaces in the document name must be replaced with and underscore like this the_document_name.doc<br \\/>TWO: Please make sure that all documents added are correctly named, since we will use the name to generate the link. \\\" \\r\\n\\theading=\\\"h4\\\" \\r\\n\\tclass=\\\"alert alert-info\\\" \\r\\n\\tclose=\\\"true\\\" \\r\\n\\/>\"', 1, '2015-04-30 14:14:29', '2015-08-25 21:15:22', 1, '', 30, '2abeb944-e551-4907-8c8e-34d68960a12c', '', '', '', '', ''),
(210, '', '', '', '', '', '', '', '', '', '', 'CHAR', '', '', '', 'Note - Fields are added', 'NOT NULL', '', 14, '\"<field \\r\\n\\ttype=\\\"note\\\" \\r\\n\\tname=\\\"note_on_views\\\" \\r\\n\\tlabel=\\\"The following fields are added by default to all views.\\\" \\r\\n\\tdescription=\\\"id, asset_id, state, access, ordering, created_by, created, modified_by, modified, checked_out, checked_out_time, version, hits, metakey, metadesc, metadata (you don\'t need to add them again)<br \\/>For more help <a href=\'https:\\/\\/youtu.be\\/CdSKSCTzmRA?list=PLQRGFI8XZ_wtGvPQZWBfDzzlERLQgpMRE&t=32m28s\' target=\'_blank\'>please watch this tutorial<\\/a>.\\\" \\r\\n\\theading=\\\"h4\\\" \\r\\n\\tclass=\\\"alert alert-info\\\" \\r\\n\\/>\"', 1, '2015-05-10 18:12:30', '2017-11-28 18:16:02', 6, '', 29, '904a9721-ae9c-4917-8f30-76596bd6c2c7', '', '', '', '', ''),
(211, '', '', '', '', '', '', '', '', '', '', 'CHAR', '', '', '', 'Note - More field types', 'NOT NULL', '', 14, '\"<field \\r\\n\\ttype=\\\"note\\\" \\r\\n\\tname=\\\"note_on_fields\\\" \\r\\n\\tlabel=\\\"More Standard form field types\\\" \\r\\n\\tdescription=\\\"To get more form field settings go to https:\\/\\/docs.joomla.org\\/Form_field\\\" \\r\\n\\theading=\\\"h4\\\" \\r\\n\\tclass=\\\"alert alert-info\\\" \\r\\n\\/>\"', 1, '2015-05-10 18:12:30', '2017-10-26 15:45:22', 2, '', 28, 'ded93bf8-1f1e-44ee-83b1-5537590f0300', '', '', '', '', ''),
(212, '', '', '', '', '', '', '', '', '', '', 'CHAR', '', '', '', 'Note - Permission Implementation', 'NOT NULL', '', 14, '\"<field \\r\\n\\ttype=\\\"note\\\" \\r\\n\\tname=\\\"note_on_permissions\\\" \\r\\n\\tlabel=\\\"Permission Implementation\\\" \\r\\n\\tdescription=\\\"Only if you add permissions here will this view have permissions. Please watch this <a href=\'https:\\/\\/youtu.be\\/CdSKSCTzmRA?list=PLQRGFI8XZ_wtGvPQZWBfDzzlERLQgpMRE&t=6m19s\' target=\'_blank\'>tutorial<\\/a> for more info.\\\" \\r\\n\\theading=\\\"h4\\\" \\r\\n\\tclass=\\\"alert alert-info\\\" \\r\\n\\/>\"', 1, '2015-05-10 18:12:30', '2017-10-26 15:36:24', 3, '', 27, '8b6ed3e7-1c38-463f-a11d-49589f1f1080', '', '', '', '', ''),
(213, '', '', '', '', '', '', '', '', '', '', 'CHAR', '', '', '', 'Note - Setting Contributors', 'NOT NULL', '', 14, '\"<field \\r\\n\\ttype=\\\"note\\\" \\r\\n\\tname=\\\"note_on_contributors\\\" \\r\\n\\tlabel=\\\"Setting Contributors\\\" \\r\\n\\tdescription=\\\"Only add contributors if you would like them listed on the component dashboard.\\\" \\r\\n\\theading=\\\"h4\\\" \\r\\n\\tclass=\\\"alert alert-info\\\" \\r\\n\\/>\"', 1, '2015-05-10 18:12:30', '2017-10-26 15:35:17', 2, '', 26, '99b38f09-d2c4-4c9c-890b-ae2442dfe560', '', '', '', '', ''),
(214, '', '', '', '', '', '', '', '', '', '', 'CHAR', '', '', '', 'Note - Setting Admin Views', 'NOT NULL', '', 14, '\"<field \\r\\n\\ttype=\\\"note\\\" \\r\\n\\tname=\\\"note_on_admin_views\\\" \\r\\n\\tlabel=\\\"Setting Admin Views\\\" \\r\\n\\tdescription=\\\"Do not add the same view twice it will not work. Please <a href=\'https:\\/\\/youtu.be\\/39vY66X7GGU?list=PLQRGFI8XZ_wtGvPQZWBfDzzlERLQgpMRE\' target=\'_blank\'>watch this tutorial for more help<\\/a>.\\\" \\r\\n\\theading=\\\"h4\\\" \\r\\n\\tclass=\\\"alert alert-info\\\" \\r\\n\\/>\"', 1, '2015-05-10 18:12:30', '2017-10-23 14:58:18', 4, '', 25, '66a34cf2-5d6b-448e-9f43-ddbcbcd8f612', '', '', '', '', ''),
(215, '', '', '', '', '', '', '', '', '', '', 'CHAR', '', '', '', 'Note - Tab Setup Options', 'NOT NULL', '', 14, '\"<field \\r\\n\\ttype=\\\"note\\\" \\r\\n\\tname=\\\"note_on_tabs\\\" \\r\\n\\tlabel=\\\"Tab Setup Options\\\" \\r\\n\\tdescription=\\\"If no tabs has been set all fields will be displayed together in one tab. Please watch this <a href=\'https:\\/\\/youtu.be\\/CdSKSCTzmRA?list=PLQRGFI8XZ_wtGvPQZWBfDzzlERLQgpMRE&t=19m25s\' target=\'_blank\'>tutorial<\\/a> for more info.\\\" \\r\\n\\theading=\\\"h4\\\" \\r\\n\\tclass=\\\"alert alert-info\\\" \\r\\n\\/>\"', 1, '2015-05-10 18:12:30', '2017-10-26 15:36:49', 4, '', 24, '1593798f-a2d9-4c06-bb93-b8cb0552165d', '', '', '', '', ''),
(216, '', '', '', '', '', '', '', '', '', '', '', '', '', '', 'Note - WHMCS Encryption', 'NOT NULL', '', 14, '\"<field\\n\\ttype=\\\"note\\\"\\n\\tname=\\\"note_whmcs_encryption\\\"\\n\\tlabel=\\\"The WHMCS Encryption\\\"\\n\\tdescription=\\\"<p>When using the WHMCS encryption you need to get a WHMCS key from:<br \\/><a href=\'https:\\/\\/www.vdm.io\\/support\' target=\'_blank\'>https:\\/\\/www.vdm.io<\\/a>, or your own <a href=\'https:\\/\\/www.whmcs.com\\/members\\/aff.php?aff=37513\' target=\'_blank\'>WHMCS<\\/a> install.<\\/p><p>Please note that you will need to <b>enable the add-on<\\/b> in the Joomla Component area (Add WHMCS)->Yes.<\\/p><p>You can get more info about the WHMCS licensing add-on at the following links.<\\/p><p><b>Helpful Links:<\\/b><br \\/>\\r\\n<a href=\'https:\\/\\/www.whmcs.com\\/members\\/aff.php?aff=37513\' target=\'_blank\'>https:\\/\\/www.whmcs.com\\/software-licensing\\/<\\/a><br \\/>\\r\\n<a href=\'http:\\/\\/docs.whmcs.com\\/Licensing_Addon\\/\' target=\'_blank\'>http:\\/\\/docs.whmcs.com\\/Licensing_Addon\\/<\\/a><\\/p><p>Support JCB and use our affiliate link (<a href=\'https:\\/\\/www.whmcs.com\\/members\\/aff.php?aff=37513\' target=\'_blank\'>https:\\/\\/www.whmcs.com\\/members\\/aff.php?aff=37513<\\/a>) to sign-up with <a href=\'https:\\/\\/www.whmcs.com\\/members\\/aff.php?aff=37513\' target=\'_blank\'>WHMCS<\\/a>.<\\/p>\\\"\\n\\theading=\\\"h4\\\"\\n\\tclass=\\\"alert alert-success note_whmcs_encryption\\\"\\n\\/>\"', 1, '2015-05-12 13:15:33', '2018-07-08 00:37:00', 8, '', 23, '700f1075-c5c5-4781-bbed-e8eb4d95c627', '', '', '', '', ''),
(217, '', '', '', '', '', '', '', '', '', '', 'CHAR', '', '', '', 'Note - Youtube', 'NOT NULL', '', 14, '\"<field \\r\\n\\ttype=\\\"note\\\" \\r\\n\\tname=\\\"youtube_note\\\" \\r\\n\\tlabel=\\\"Getting the youtube.com url\\\" \\r\\n\\tdescription=\\\"On youtube.com, under the video that you would like to add to this session, there is a button\\/link called <b>Share<\\/b>, once you click on it there will open an area with three options [<b>Share<\\/b>, embed, email]. Under the <b>Share<\\/b> option you will see a box with an url like (https:\\/\\/youtu.be\\/gWU12DzPTUo) simply copy that url into the box below. <b>Done!<\\/b>\\\" \\r\\n\\theading=\\\"h4\\\" \\r\\n\\tclass=\\\"alert alert-info\\\" \\r\\n\\tclose=\\\"true\\\" \\r\\n\\/>\"', 1, '2015-04-30 14:20:00', '2015-08-25 21:15:22', 1, '', 22, '64f9f319-39ea-4fc7-84d2-57656dc64918', '', '', '', '', ''),
(218, '', '', '', '', '', '', '', '', 64, '', 'CHAR', 2, '', '', 'Null Switch', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"null_switch\\\" \\r\\n\\tlabel=\\\"Null Switch\\\" \\r\\n\\tdescription=\\\"\\\" \\r\\n\\tclass=\\\"btn-group btn-group-yesno\\\" \\r\\n\\toption=\\\"NULL,NOT NULL\\\" \\r\\n\\tdefault=\\\"NOT NULL\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\/>\"', 1, '2015-05-10 21:38:22', '2015-08-25 21:15:22', 1, '', 21, '6a3d21ad-7cb1-4456-a623-20aa71ba0b12', '', '', '', '', ''),
(219, '', '', '', '', '', '', '', '', 11, '', 'INT', '', '', '', 'Number', 'NOT NULL', '', 15, '\"<field \\r\\n\\ttype=\\\"number\\\" \\r\\n\\tname=\\\"number\\\" \\r\\n\\tlabel=\\\"Number\\\" \\r\\n\\tdefault=\\\"4\\\" \\r\\n\\tdescription=\\\"\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\trequired=\\\"\\\" \\r\\n\\tmin=\\\"1\\\" \\r\\n\\tmax=\\\"40\\\" \\r\\n\\tstep=\\\"1\\\" \\r\\n\\tonchange=\\\"\\\" \\r\\n\\/>\"', 1, '2015-05-09 18:23:27', '2015-08-25 21:15:22', 1, '', 20, 'c2ce0b7e-e917-40c0-9c63-016425dd11fd', '', '', '', '', ''),
(220, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Objective', 'NOT NULL', '', 8, '\"<field \\r\\n\\ttype=\\\"editor\\\" \\r\\n\\tname=\\\"objective\\\" \\r\\n\\tlabel=\\\"Objective\\\" \\r\\n\\twidth=\\\"100%\\\"\\r\\n\\theight=\\\"500\\\"\\r\\n\\tfilter=\\\"safehtml\\\" \\r\\n\\trequired=\\\"true\\\"\\r\\n\\/>\"', 1, '2015-04-24 07:58:59', '2015-08-25 21:15:22', 1, '', 1, 'acd5be1f-fecc-4c27-bd8a-bc322bb5c6e7', '', '', '', '', ''),
(221, '', '', '', '', '', '', '', '', 11, '', 'INT', '', '', '', 'Order', 'NOT NULL', '', 10, '\"<field \\r\\n\\ttype=\\\"integer\\\" \\r\\n\\tname=\\\"order\\\" \\r\\n\\tlabel=\\\"Order\\\" \\r\\n\\tdefault=\\\"0\\\" \\r\\n\\tdescription=\\\"Overide the default order\\\" \\r\\n\\tclass=\\\"fieldSmall\\\" \\r\\n\\trequired=\\\"\\\" \\r\\n\\tfirst=\\\"0\\\" \\r\\n\\tlast=\\\"400\\\" \\r\\n\\tstep=\\\"1\\\" \\r\\n\\/>\"', 1, '2015-05-11 13:15:08', '2015-08-25 21:15:22', 1, '', 146, '6d75ad18-74e3-421f-b6e9-e7f3d3bdf0ac', '', '', '', '', ''),
(222, '', '', '', '', '', '', '', '', 11, '', 'INT', '', '', '', 'Order in Edit', 'NOT NULL', '', 10, '\"<field \\r\\n\\ttype=\\\"integer\\\" \\r\\n\\tname=\\\"order_edit\\\" \\r\\n\\tlabel=\\\"Order in Edit\\\" \\r\\n\\tdefault=\\\"0\\\" \\r\\n\\tdescription=\\\"Order in relation to tab &amp; alignment of admin and site.\\\" \\r\\n\\tclass=\\\"fieldSmall\\\" \\r\\n\\trequired=\\\"\\\" \\r\\n\\tfirst=\\\"0\\\" \\r\\n\\tlast=\\\"100\\\" \\r\\n\\tstep=\\\"1\\\" \\r\\n\\/>\"', 1, '2015-05-11 13:19:19', '2015-08-25 21:15:22', 1, '', 127, '2e9ffee9-b05e-42c3-a497-9d566e52324b', '', '', '', '', ''),
(223, '', '', '', '', '', '', '', '', 11, '', 'INT', '', '', '', 'Order in list views', 'NOT NULL', '', 10, '\"<field\\n\\ttype=\\\"integer\\\"\\n\\tname=\\\"order_list\\\"\\n\\tlabel=\\\"Order in list views\\\"\\n\\tdescription=\\\"Ordering in relation to list view of admin area\\\"\\n\\tclass=\\\"fieldSmall\\\"\\n\\tfirst=\\\"0\\\"\\n\\tlast=\\\"20\\\"\\n\\tstep=\\\"1\\\"\\n\\tonchange=\\\"checkAdminBehaviour(this)\\\"\\n\\/>\"', 1, '2015-05-11 13:15:08', '2018-04-13 13:29:41', 10, '', 126, '87056801-539b-43d9-bb53-be49093132d0', '', '', '', '', ''),
(224, '', '', '', '', '', '', '', '', 64, '', 'CHAR', 2, '', '', 'Other Data Length', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"datalenght_other\\\"\\n\\tlabel=\\\"Other Length\\\"\\n\\tsize=\\\"10\\\"\\n\\tmaxlength=\\\"50\\\"\\n\\tdescription=\\\"The other data length for selected data type\\\"\\n\\tclass=\\\"text_area\\\"\\n\\trequired=\\\"true\\\"\\n\\tfilter=\\\"STRING\\\"\\n\\tmessage=\\\"Error! Please add other data length here.\\\"\\n\\thint=\\\"Other Here\\\"\\n\\/>\"', 1, '2015-05-10 21:38:22', '2020-04-19 00:53:32', 4, '', 125, 'fd7ff7b0-a8e9-476c-8e9d-ac4ca338c589', '', '', '', '', ''),
(225, '', '', '', '', '', '', '', '', 64, '', 'CHAR', 2, '', '', 'Other Data Default', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"datadefault_other\\\"\\n\\tlabel=\\\"Other Default\\\"\\n\\tsize=\\\"10\\\"\\n\\tmaxlength=\\\"50\\\"\\n\\tdescription=\\\"The other default data for selected data type\\\"\\n\\tclass=\\\"text_area\\\"\\n\\treadonly=\\\"false\\\"\\n\\tdisabled=\\\"false\\\"\\n\\trequired=\\\"true\\\"\\n\\tfilter=\\\"STRING\\\"\\n\\tmessage=\\\"Error! Please add other default here.\\\"\\n\\thint=\\\"Other Default Here\\\"\\n\\/>\"', 1, '2015-05-10 21:38:22', '2019-09-12 19:52:59', 2, '', 124, '6b2277f3-44e1-4bbb-8e55-3315bdba736e', '', '', '', '', ''),
(226, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Outcome', 'NOT NULL', '', 8, '\"<field \\r\\n\\ttype=\\\"editor\\\" \\r\\n\\tname=\\\"outcome\\\" \\r\\n\\tlabel=\\\"Outcome\\\" \\r\\n\\twidth=\\\"100%\\\" \\r\\n\\theight=\\\"75px\\\" \\r\\n\\tbuttons=\\\"false\\\" \\r\\n\\tfilter=\\\"safehtml\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\/>\"', 1, '2015-04-24 11:18:50', '2015-08-25 21:15:22', 2, '', 123, 'aece0b93-473f-4822-ac49-c368e625fb0c', '', '', '', '', ''),
(227, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Overview', 'NOT NULL', '', 8, '\"<field\\n\\ttype=\\\"editor\\\"\\n\\tname=\\\"overview\\\"\\n\\tlabel=\\\"Overview\\\"\\n\\twidth=\\\"100%\\\"\\n\\theight=\\\"190 px\\\"\\n\\tbuttons=\\\"false\\\"\\n\\teditor=\\\"jce|tinymce\\\"\\n\\tfilter=\\\"safehtml\\\"\\n\\/>\"', 1, '2015-04-24 11:18:50', '2019-10-10 21:03:58', 3, '', 122, '0a6f6867-afac-440b-b9ff-9eeddf1d3e07', '', '', '', '', ''),
(228, '', '', '', '', '', '', '', '', 11, '', 'INT', '', '', '', 'Period Length', 'NOT NULL', '', 10, '\"<field \\r\\n\\ttype=\\\"integer\\\" \\r\\n\\tname=\\\"period_length\\\" \\r\\n\\tlabel=\\\"Period Length\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tdescription=\\\"Select the period length.\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\tfirst=\\\"1\\\" \\r\\n\\tlast=\\\"365\\\" \\r\\n\\tstep=\\\"1\\\" \\r\\n\\tfilter=\\\"INT\\\"\\r\\n\\/>\"', 1, '2015-05-05 23:57:28', '2015-09-23 04:00:51', 3, '', 121, '4ed9a470-d2fe-4c7b-93a1-3ed88d50fd8a', '', '', '', '', ''),
(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', '', '', '', '', ''),
(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', '', '', '', '', ''),
(236, '', '', '', '', '', '', '', '', 11, '', 'INT', '', '', '', 'Program', 'NOT NULL', '', 6, '\"<field \\r\\n\\ttype=\\\"programs\\\" \\r\\n\\tname=\\\"program\\\" \\r\\n\\tlabel=\\\"Select a Program\\\" \\r\\n\\tdescription=\\\"\\\" \\r\\n\\trequired=\\\"true\\\"\\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\tmultiple=\\\"false\\\"\\r\\n\\textends=\\\"list\\\" \\r\\n\\tbutton=\\\"true\\\"\\r\\n\\ttable=\\\"#__###component###_program\\\" \\r\\n\\tcomponent=\\\"com_###component###\\\" \\r\\n\\tview=\\\"program\\\" \\r\\n\\tviews=\\\"programs\\\" \\r\\n\\tvalue_field=\\\"acronym\\\" \\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_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-04-07 07:54:26', '2015-08-25 21:15:22', 6, '', 113, '52771d2c-977b-4312-af7d-e2cb2b2a3e55', '', '', '', '', ''),
(237, '', '', '', '', '', '', '', '', 11, '', 'INT', '', '', '', 'Program Type', 'NOT NULL', '', 2, '\"<field \\r\\n\\ttype=\\\"category\\\" \\r\\n\\tname=\\\"catid\\\" \\r\\n\\tlabel=\\\"Program Type\\\" \\r\\n\\textension=\\\"com_###component###.programs\\\" \\r\\n\\tscope=\\\"\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\tclass=\\\"inputbox\\\" \\r\\n\\tothername=\\\"Program Type\\\" \\r\\n\\tviews=\\\"programs\\\" \\r\\n\\tview=\\\"program\\\" \\r\\n\\/>\"', 1, '2015-03-28 06:56:00', '2015-09-08 19:05:30', 2, '', 112, 'e855d772-ef2f-46aa-8199-51900a20c982', '', '', '', '', ''),
(238, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Properties', 'NOT NULL', '', 35, '\"<field\\n\\ttype=\\\"subform\\\"\\n\\tname=\\\"properties\\\"\\n\\tlabel=\\\"Properties\\\"\\n\\tlayout=\\\"repeatablejcb\\\"\\n\\tmultiple=\\\"true\\\"\\n\\tfields=\\\"199,277,21,176,275,86\\\"\\n\\tdescription=\\\"Options for this field\\\"\\n\\ticon=\\\"list\\\"\\n\\/>\"', 1, '2015-05-09 22:50:20', '2021-12-16 04:47:37', 3, '', 128, 'ddb8f57f-77c8-4cad-a8cb-0cdc799ce4a1', '', '', '', '', ''),
(239, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Question', 'NOT NULL', '', 8, '\"<field type=\\\"editor\\\" name=\\\"question\\\" label=\\\"Question\\\" width=\\\"100%\\\" height=\\\"500\\\" filter=\\\"safehtml\\\" \\r\\n\\trequired=\\\"true\\\"\\/>\"', 1, '2015-04-07 22:08:34', '2015-08-25 21:15:22', 1, '', 129, '95f10df0-1f14-4fa9-8876-a217fcb13d30', '', '', '', '', ''),
(240, '', '', '', '', '', '', '', '', 64, '', 'CHAR', '', '', '', 'Form - Required', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"required\\\" \\r\\n\\tlabel=\\\"Required\\\" \\r\\n\\tdescription=\\\"Set if this field is required.\\\" \\r\\n\\tclass=\\\"btn-group btn-group-yesno\\\" \\r\\n\\tfilter=\\\"WORD\\\"\\r\\n\\toption=\\\"true|Yes,false|No\\\" \\r\\n\\tdefault=\\\"false\\\" \\r\\n\\/>\"', 1, '2015-05-02 09:34:03', '2015-12-04 03:40:21', 2, '', 145, '2eb9c193-4cd3-41ed-815d-ac1e0d5c1f69', '', '', '', '', ''),
(241, '', '', '', '', '', '', '', '', 64, '', 'CHAR', '', '', '', 'Requirement', 'NOT NULL', '', 6, '\"<field \\r\\n\\ttype=\\\"trainingprocess\\\" \\r\\n\\tname=\\\"requirement\\\" \\r\\n\\tlabel=\\\"Requirement\\/s\\\" \\r\\n\\tdescription=\\\"\\\" \\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\tmultiple=\\\"true\\\"\\r\\n\\textends=\\\"list\\\"\\r\\n\\ttable=\\\"#__###component###_training_process\\\" \\r\\n\\tcomponent=\\\"com_###component###\\\" \\r\\n\\tview=\\\"training_process\\\" \\r\\n\\tviews=\\\"training_processes\\\" \\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 an option\');\\\" \\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-04-07 07:54:26', '2015-08-25 21:15:22', 4, '', 144, '11a5f89a-b07b-4233-8306-eeb91190bbb4', '', '', '', '', ''),
(242, '', '', '', '', '', '', '', '', 1, '', 'INT', '', '', '', 'Reviewed', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"reviewed\\\" \\r\\n\\tlabel=\\\"Reviewed\\\" \\r\\n\\tdescription=\\\"\\\" \\r\\n\\tclass=\\\"btn-group btn-group-yesno\\\" \\r\\n\\toption=\\\"1|Yes,0|No\\\" \\r\\n\\tdefault=\\\"0\\\" \\r\\n\\/>\"', 1, '2015-05-03 00:13:32', '2015-08-25 21:15:22', 1, '', 143, 'b54cda53-a114-4213-8cd0-d8d7a5519459', '', '', '', '', ''),
(243, '', '', '', '', '', '', '', '', 11, '', 'INT', '', '', '', 'Select Tab', 'NOT NULL', '', 10, '\"<field\\n\\ttype=\\\"integer\\\"\\n\\tname=\\\"tab\\\"\\n\\tlabel=\\\"Tab\\\"\\n\\tdefault=\\\"1\\\"\\n\\tdescription=\\\"Select the tab this view belongs to.\\\"\\n\\tclass=\\\"fieldSmall\\\"\\n\\trequired=\\\"\\\"\\n\\tfirst=\\\"1\\\"\\n\\tlast=\\\"14\\\"\\n\\tstep=\\\"1\\\"\\n\\/>\"', 1, '2015-05-11 13:16:53', '2018-08-23 17:02:50', 3, '', 142, '00c4d921-5517-4bb8-b38a-54740ae36e6c', '', '', '', '', ''),
(244, '', '', '', '', '', '', '', '', 64, '', 'CHAR', '', '', '', 'Selection', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"selection\\\" \\r\\n\\tlabel=\\\"Selection\\\" \\r\\n\\tsize=\\\"40\\\" \\r\\n\\tmaxlength=\\\"150\\\" \\r\\n\\tclass=\\\"span5\\\" \\r\\n\\trequired=\\\"true\\\"\\r\\n\\tdefault=\\\"\\\" \\r\\n\\tdescription=\\\"Enter the selection option\\\" \\r\\n\\tfilter=\\\"STRING\\\" \\r\\n\\thint=\\\"Add Option Here\\\" \\r\\n\\/>\"', 1, '2015-04-28 10:48:58', '2015-09-11 21:01:37', 3, '', 141, '2fc2a804-0388-4bb4-a8cb-a86cd742d8b3', '', '', '', '', ''),
(245, '', '', '', '', '', '', '', '', 64, '', 'CHAR', '', '', '', 'Selection 10', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"selection_10\\\" \\r\\n\\tlabel=\\\"Selection Ten\\\" \\r\\n\\tsize=\\\"40\\\" \\r\\n\\tmaxlength=\\\"150\\\" \\r\\n\\tclass=\\\"span12\\\"\\r\\n\\tdefault=\\\"\\\" \\r\\n\\tdescription=\\\"Enter the tenth selection option\\\" \\r\\n\\tfilter=\\\"STRING\\\" \\r\\n\\thint=\\\"Add Option Here\\\" \\r\\n\\/>\"', -2, '2015-04-28 10:48:58', '2015-08-25 21:15:22', 1, '', 140, '91679552-5ed1-44b1-b9cb-29488077c4d0', '', '', '', '', ''),
(246, '', '', '', '', '', '', '', '', 64, '', 'CHAR', '', '', '', 'Selection 2', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"selection_2\\\" \\r\\n\\tlabel=\\\"Selection Two\\\" \\r\\n\\tsize=\\\"40\\\" \\r\\n\\tmaxlength=\\\"150\\\" \\r\\n\\tclass=\\\"span12\\\"\\r\\n\\tdefault=\\\"\\\" \\r\\n\\tdescription=\\\"Enter the second selection option\\\" \\r\\n\\tfilter=\\\"STRING\\\" \\r\\n\\thint=\\\"Add Option Here\\\" \\r\\n\\/>\"', -2, '2015-04-28 10:48:58', '2015-08-25 21:15:22', 1, '', 139, 'c775e966-e8ca-4f06-9e68-3d39407d6e2e', '', '', '', '', ''),
(247, '', '', '', '', '', '', '', '', 64, '', 'CHAR', '', '', '', 'Selection 3', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"selection_3\\\" \\r\\n\\tlabel=\\\"Selection Three\\\" \\r\\n\\tsize=\\\"40\\\" \\r\\n\\tmaxlength=\\\"150\\\" \\r\\n\\tclass=\\\"span12\\\"\\r\\n\\tdefault=\\\"\\\" \\r\\n\\tdescription=\\\"Enter the third selection option\\\" \\r\\n\\tfilter=\\\"STRING\\\" \\r\\n\\thint=\\\"Add Option Here\\\" \\r\\n\\/>\"', -2, '2015-04-28 10:48:58', '2015-08-25 21:15:22', 1, '', 138, '03a71d7d-b6a3-4d59-aec8-d756d4fe5837', '', '', '', '', ''),
(248, '', '', '', '', '', '', '', '', 64, '', 'CHAR', '', '', '', 'Selection 4', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"selection_4\\\" \\r\\n\\tlabel=\\\"Selection Four\\\" \\r\\n\\tsize=\\\"40\\\" \\r\\n\\tmaxlength=\\\"150\\\" \\r\\n\\tclass=\\\"span12\\\"\\r\\n\\tdefault=\\\"\\\" \\r\\n\\tdescription=\\\"Enter the fourth selection option\\\" \\r\\n\\tfilter=\\\"STRING\\\" \\r\\n\\thint=\\\"Add Option Here\\\" \\r\\n\\/>\"', -2, '2015-04-28 10:48:58', '2015-08-25 21:15:22', 1, '', 137, '93afec03-e2e8-463c-b66b-df3ae5e696f5', '', '', '', '', ''),
(249, '', '', '', '', '', '', '', '', 64, '', 'CHAR', '', '', '', 'Selection 5', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"selection_5\\\" \\r\\n\\tlabel=\\\"Selection Five\\\" \\r\\n\\tsize=\\\"40\\\" \\r\\n\\tmaxlength=\\\"150\\\" \\r\\n\\tclass=\\\"span12\\\"\\r\\n\\tdefault=\\\"\\\" \\r\\n\\tdescription=\\\"Enter the fifth selection option\\\" \\r\\n\\tfilter=\\\"STRING\\\" \\r\\n\\thint=\\\"Add Option Here\\\" \\r\\n\\/>\"', -2, '2015-04-28 10:48:58', '2015-08-25 21:15:22', 1, '', 136, 'f7c7c1ec-d01a-4a84-ac9a-74633cf681f9', '', '', '', '', ''),
(250, '', '', '', '', '', '', '', '', 64, '', 'CHAR', '', '', '', 'Selection 6', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"selection_6\\\" \\r\\n\\tlabel=\\\"Selection Six\\\" \\r\\n\\tsize=\\\"40\\\" \\r\\n\\tmaxlength=\\\"150\\\" \\r\\n\\tclass=\\\"span12\\\"\\r\\n\\tdefault=\\\"\\\" \\r\\n\\tdescription=\\\"Enter the sixth selection option\\\" \\r\\n\\tfilter=\\\"STRING\\\" \\r\\n\\thint=\\\"Add Option Here\\\" \\r\\n\\/>\"', -2, '2015-04-28 10:48:58', '2015-08-25 21:15:22', 1, '', 135, '673c3909-017f-4ba8-acb7-bfc19b8688f7', '', '', '', '', ''),
(251, '', '', '', '', '', '', '', '', 64, '', 'CHAR', '', '', '', 'Selection 7', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"selection_7\\\" \\r\\n\\tlabel=\\\"Selection Seven\\\" \\r\\n\\tsize=\\\"40\\\" \\r\\n\\tmaxlength=\\\"150\\\" \\r\\n\\tclass=\\\"span12\\\"\\r\\n\\tdefault=\\\"\\\" \\r\\n\\tdescription=\\\"Enter the seventh selection option\\\" \\r\\n\\tfilter=\\\"STRING\\\" \\r\\n\\thint=\\\"Add Option Here\\\" \\r\\n\\/>\"', -2, '2015-04-28 10:48:58', '2015-08-25 21:15:22', 1, '', 134, '4b0f97dc-03b1-42d0-a5ad-189630e4abe1', '', '', '', '', ''),
(252, '', '', '', '', '', '', '', '', 64, '', 'CHAR', '', '', '', 'Selection 8', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"selection_8\\\" \\r\\n\\tlabel=\\\"Selection Eight\\\" \\r\\n\\tsize=\\\"40\\\" \\r\\n\\tmaxlength=\\\"150\\\" \\r\\n\\tclass=\\\"span12\\\"\\r\\n\\tdefault=\\\"\\\" \\r\\n\\tdescription=\\\"Enter the eighth selection option\\\" \\r\\n\\tfilter=\\\"STRING\\\" \\r\\n\\thint=\\\"Add Option Here\\\" \\r\\n\\/>\"', -2, '2015-04-28 10:48:58', '2015-08-25 21:15:22', 1, '', 133, '59ab407f-799d-4937-836e-37594e7480af', '', '', '', '', ''),
(253, '', '', '', '', '', '', '', '', 64, '', 'CHAR', '', '', '', 'Selection 9', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"selection_9\\\" \\r\\n\\tlabel=\\\"Selection Nine\\\" \\r\\n\\tsize=\\\"40\\\" \\r\\n\\tmaxlength=\\\"150\\\" \\r\\n\\tclass=\\\"span12\\\"\\r\\n\\tdefault=\\\"\\\" \\r\\n\\tdescription=\\\"Enter the ninth selection option\\\" \\r\\n\\tfilter=\\\"STRING\\\" \\r\\n\\thint=\\\"Add Option Here\\\" \\r\\n\\/>\"', -2, '2015-04-28 10:48:58', '2015-08-25 21:15:22', 1, '', 132, '78dd26c0-72eb-43e5-aefb-1391ef2a15aa', '', '', '', '', ''),
(254, '', '', '', '', '', '', '', '', 11, '', 'INT', '', '', '', 'Session', 'NOT NULL', '', 6, '\"<field \\r\\n\\ttype=\\\"session\\\" \\r\\n\\tname=\\\"session\\\" \\r\\n\\tlabel=\\\"Select a Session\\\"\\r\\n\\tfilter=\\\"INT\\\"\\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\trequired=\\\"true\\\"\\r\\n\\textends=\\\"list\\\" \\r\\n\\tbutton=\\\"true\\\"\\r\\n\\ttable=\\\"#__###component###_session\\\" \\r\\n\\tcomponent=\\\"com_###component###\\\" \\r\\n\\tview=\\\"session\\\" \\r\\n\\tviews=\\\"sessions\\\" \\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###\')))->select($db->quoteName(array(\'p.acronym\'),array(\'program\')))->select($db->quoteName(array(\'c.name\'),array(\'course\')));\\\" \\r\\n\\ttype_php_4=\\\"$query->from($db->quoteName(\'###TABLE###\', \'a\'))->join(\'LEFT\', $db->quoteName(\'#__###component###_course\', \'c\') . \' ON (\' . $db->quoteName(\'a.course\') . \' = \' . $db->quoteName(\'c.id\') . \')\')->join(\'LEFT\', $db->quoteName(\'#__###component###_program\', \'p\') . \' ON (\' . $db->quoteName(\'c.program\') . \' = \' . $db->quoteName(\'p.id\') . \')\');\\\" \\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_12=\\\"\\\\tforeach($items as $item)\\\" \\r\\n\\ttype_php_13=\\\"\\\\t{\\\" \\r\\n\\ttype_php_14=\\\"\\\\t\\\\t$options[] = JHtml::_(\'select.option\', $item->###ID###, $item->###CODE_TEXT### . \' - \' . $item->course . \' (\' . $item->program . \')\');\\\" \\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-04-24 07:50:46', '2016-02-06 21:45:16', 6, '', 131, 'c2b386ee-90c2-4c5b-8798-c6766125170c', '', '', '', '', ''),
(255, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Short Description', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"short_description\\\" \\r\\n\\tlabel=\\\"Short Description\\\" \\r\\n\\tsize=\\\"40\\\" \\r\\n\\tmaxlength=\\\"150\\\" \\r\\n\\tdescription=\\\"Enter short description\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\tfilter=\\\"HTML\\\" \\r\\n\\trequired=\\\"true\\\"\\r\\n\\tmessage=\\\"Error! Please add some short description here.\\\" \\r\\n\\thint=\\\"Your Short Description Here\\\" \\r\\n\\/>\"', 1, '2015-03-19 18:20:49', '2015-08-25 21:15:22', 1, '', 130, '46503007-43d9-485f-8cd0-8427a6a8bef2', '', '', '', '', ''),
(256, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'SMS Text', 'NOT NULL', '', 25, '\"<field \\r\\n\\ttype=\\\"textarea\\\" \\r\\n\\tname=\\\"text\\\" \\r\\n\\tlabel=\\\"SMS Text\\\" \\r\\n\\tdescription=\\\"Enter sms text here.\\\" \\r\\n\\trows=\\\"6\\\" \\r\\n\\tcols=\\\"5\\\"\\r\\n\\tclass=\\\"span12\\\" \\r\\n\\trequired=\\\"true\\\"\\r\\n\\tfilter=\\\"safehtml\\\"\\r\\n\\thint=\\\"Add SMS Here\\\"\\r\\n\\/>\"', 1, '2015-04-24 09:35:47', '2015-08-25 21:15:22', 1, '', 111, '9ed10826-ae75-4219-9345-d8d9796b17ce', '', '', '', '', ''),
(257, '', '', '', '', '', '', '', '', 1, '', 'CHAR', '', '', '', 'Spacer hr', 'NOT NULL', '', 20, '\"<field name=\\\"spacer_hr\\\" type=\\\"spacer\\\" hr=\\\"true\\\" \\/>\"', 1, '2015-04-08 00:33:17', '2015-08-25 21:15:22', 1, '', 110, '1cf7d30a-6af1-41c7-80bc-91a0fcc52ef2', '', '', '', '', ''),
(258, '', '', '', '', '', '', '', '', 11, '', 'INT', '', '', '', 'Field Modelling Method', 'NOT NULL', '', 11, '\"<field\\n\\ttype=\\\"list\\\"\\n\\tname=\\\"store\\\"\\n\\tlabel=\\\"Modelling Method\\\"\\n\\tdescription=\\\"How should the field value be modeled during saving and getting of the value. <b>Default<\\/b> is the Joomla basic normal storing way of dealing with this field type.\\\"\\n\\tclass=\\\"list_class\\\"\\n\\tmultiple=\\\"false\\\"\\n\\tfilter=\\\"INT\\\"\\n\\trequired=\\\"true\\\"\\n\\toption=\\\"0|Default,1|JSON,2|base64,3|Basic Encryption (local-DB-key),5|Medium Encryption (local-file-key),4|WHMCS-key Encryption,6|Expert Mode - Custom\\\"\\n\\tdefault=\\\"0\\\"\\n\\/>\"', 1, '2015-05-12 12:40:42', '2023-10-10 07:58:41', 8, '', 109, '48b78ab1-bfb0-44eb-9ec8-4f5cdbf4a32c', '', '', '', '', ''),
(259, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'Strength', 'NOT NULL', '', 18, '\"<field \\r\\n\\ttype=\\\"range\\\" \\r\\n\\tname=\\\"strength_slide\\\" \\r\\n\\tlabel=\\\"Strength\\\" \\r\\n\\tdefault=\\\"2\\\"\\r\\n\\tclass=\\\"span12\\\" \\r\\n\\tmin=\\\"0\\\" \\r\\n\\tmax=\\\"20\\\" \\r\\n\\tstep=\\\"1\\\" \\r\\n\\tonchange=\\\"var value = jQuery(\'#jform_strength\').val(); jQuery(\'#jform_strenth\').val(value);\\\"\\r\\n\\/>\"', 1, '2015-05-09 16:20:17', '2015-08-25 21:15:22', 1, '', 90, '62ec9ef8-36ad-447e-981b-351ac4854e55', '', '', '', '', ''),
(260, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'Strenth Value', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"strength\\\" \\r\\n\\tlabel=\\\"Value\\\" \\r\\n\\tsize=\\\"10\\\" \\r\\n\\tmaxlength=\\\"50\\\" \\r\\n\\tdefault=\\\"2\\\"\\r\\n\\tclass=\\\"text_area span3\\\" \\r\\n\\treadonly=\\\"true\\\" \\r\\n\\tdisabled=\\\"false\\\" \\r\\n\\trequired=\\\"false\\\" \\r\\n\\tfilter=\\\"int\\\" \\r\\n\\tvalidate=\\\"\\\" \\r\\n\\/>\"', 1, '2015-05-09 17:39:32', '2015-08-25 21:15:22', 1, '', 89, 'e0cb48a2-f338-4014-b1b0-4c069c654014', '', '', '', '', ''),
(261, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'Student (users)', 'NOT NULL', '', 7, '\"<field \\r\\n\\ttype=\\\"studentusers\\\" \\r\\n\\tname=\\\"studentuser\\\" \\r\\n\\tlabel=\\\"Student\\\" \\r\\n\\trequired=\\\"true\\\"\\r\\n\\thint=\\\"select a student\\\" \\r\\n\\textends=\\\"user\\\" \\r\\n\\ttable=\\\"#__users\\\" \\r\\n\\tcomponent=\\\"com_users\\\" \\r\\n\\tview=\\\"###view###\\\" \\r\\n\\tviews=\\\"###views###\\\" \\r\\n\\tvalue_field=\\\"name\\\" \\r\\n\\tkey_field=\\\"id\\\" \\r\\n\\ttype_php_1=\\\"\\/\\/ set the groups array\\\" \\r\\n\\ttype_php_2=\\\"$groups = JComponentHelper::getParams(\'com_###component###\')->get(\'###type###\');\\\" \\r\\n\\ttype_php_3=\\\"return $groups;\\\"\\r\\n\\/>\"', 1, '2015-04-13 23:34:55', '2015-09-11 03:35:58', 4, '', 88, '181fe0b4-0199-4b2a-9b5b-5de5935cf2a4', '', '', '', '', ''),
(262, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Subject', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"subject\\\"\\n\\tlabel=\\\"Subject\\\"\\n\\tsize=\\\"50\\\"\\n\\tmaxlength=\\\"150\\\"\\n\\tdescription=\\\"add the subject here\\\"\\n\\tclass=\\\"input-xxlarge input-large-text\\\"\\n\\trequired=\\\"true\\\"\\n\\tfilter=\\\"HTML\\\"\\n\\tmessage=\\\"Error! Please add subject.\\\"\\n\\thint=\\\"Add Subject Here\\\"\\n\\/>\"', 1, '2015-05-05 23:30:50', '2020-07-01 22:37:50', 9, '', 87, 'f02ed2fc-949d-4ca9-a18e-2cb8005f3340', '', '', '', '', ''),
(263, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'Submenu', 'NOT NULL', '', 3, '\"<field\\n\\ttype=\\\"checkbox\\\"\\n\\tname=\\\"submenu\\\"\\n\\tlabel=\\\"Submenu\\\"\\n\\tvalue=\\\"1\\\"\\n\\tdefault=\\\"1\\\"\\n\\tdescription=\\\"Select if the view should show in the submenu.\\\"\\n\\tclass=\\\"inputbox\\\"\\n\\/>\"', 1, '2015-05-11 23:14:53', '2019-06-11 12:19:24', 4, '', 86, '74f2e2ca-6f72-4d1a-813a-3355ea997161', '', '', '', '', ''),
(264, '', '', '', '', '', '', '', '', 255, '', 'CHAR', '', '', '', 'Surname', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"surname\\\"\\n\\tlabel=\\\"Surname\\\"\\n\\tdescription=\\\"Enter Surname Here\\\"\\n\\tsize=\\\"30\\\"\\n\\tmaxlength=\\\"150\\\"\\n\\tclass=\\\"text_area\\\"\\n\\tfilter=\\\"STRING\\\"\\n\\tmessage=\\\"Error! Please add your surname here.\\\"\\n\\thint=\\\"Surname Here\\\"\\n\\/>\"', 1, '2015-04-13 14:23:12', '2018-09-15 22:41:03', 3, '', 85, '0c0a7421-2160-481e-a080-5d184122ef30', '', '', '', '', ''),
(265, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'Tags', 'NOT NULL', '', 22, '\"<field\\r\\n\\ttype=\\\"tag\\\"\\r\\n\\tname=\\\"tags\\\"\\r\\n\\tmode=\\\"ajax\\\"\\r\\n\\tlabel=\\\"Tags\\\"\\r\\n\\tdescription=\\\"Assign tags to ###view### items. Tag names must be unique.\\\"\\r\\n\\tid=\\\"\\\"\\r\\n\\tclass=\\\"inputbox small\\\"\\r\\n\\tpublished=\\\"\\\"\\r\\n\\tlanguage=\\\"\\\"\\r\\n\\tmultiple=\\\"true\\\"\\r\\n\\tcustom=\\\"\\\"\\r\\n\\/>\"', 1, '2015-04-12 15:05:32', '2017-04-07 06:19:54', 2, '', 84, '83b63e41-afde-4578-af6c-c2010b01faee', '', '', '', '', ''),
(266, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'Target Behavior', 'NOT NULL', '', 11, '\"<field\\n\\ttype=\\\"list\\\"\\n\\tname=\\\"target_behavior\\\"\\n\\tlabel=\\\"Target Behavior\\\"\\n\\tdescription=\\\"Select the target field\\/s behavior.\\\"\\n\\tclass=\\\"list_class fieldLarge\\\"\\n\\tmultiple=\\\"false\\\"\\n\\tfilter=\\\"INT\\\"\\n\\trequired=\\\"true\\\"\\n\\toption=\\\"1|Show Toggle,2|Hide Toggle,3|Show Only,4|Hide Only\\\"\\n\\tdefault=\\\"1\\\"\\n\\/>\"', 1, '2015-05-11 18:49:20', '2020-05-20 12:07:44', 4, '', 83, '65d97520-692f-43a7-b2ce-c980f3469384', '', '', '', '', ''),
(267, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Alias Builder', 'NOT NULL', '', 6, '\"<field\\n\\ttype=\\\"aliasbuilder\\\"\\n\\tname=\\\"alias_builder\\\"\\n\\tlabel=\\\"Alias Builder\\\"\\n\\tdescription=\\\"Select the field\\/s you would like to use to build the alias.\\\"\\n\\tclass=\\\"list_class fieldFull\\\"\\n\\tlayout=\\\"joomla.form.field.list-fancy-select\\\"\\n\\tmultiple=\\\"true\\\"\\n\\tshowon=\\\"alias_builder_type:2\\\"\\n\\textends=\\\"list\\\"\\n\\ttable=\\\"#__###component###_field\\\"\\n\\tcomponent=\\\"com_###component###\\\"\\n\\tview=\\\"field\\\"\\n\\tviews=\\\"fields\\\"\\n\\tvalue_field=\\\"name\\\"\\n\\tkey_field=\\\"id\\\"\\n\\tprime_php=\\\"1\\\"\\n\\ttype_php_1=\\\"__.o0=base64=Oo.__Ly8gbG9hZCB0aGUgZGIgb2JqZWN0DQoJCSRkYiA9IEZhY3Rvcnk6OmdldERCTygpOwkJDQoJCS8vIGdldCB0aGUgaW5wdXQgZnJvbSB1cmwNCgkJJGppbnB1dCA9IEZhY3Rvcnk6OmdldEFwcGxpY2F0aW9uKCktPmlucHV0Ow0KCQkvLyBnZXQgdGhlIGlkDQoJCSRhZG1pblZpZXcgPSAkamlucHV0LT5nZXRJbnQoJ2lkJywgMCk7DQoJCS8vIHJlc3QgdGhlIGZpZWxkcyBpZHMNCgkJJGZpZWxkSWRzID0gYXJyYXkoKTsNCgkJaWYgKGlzX251bWVyaWMoJGFkbWluVmlldykgJiYgJGFkbWluVmlldyA+PSAxKQ0KCQl7DQoJCQkvLyBnZXQgYWxsIHRoZSBmaWVsZHMgbGlua2VkIHRvIHRoZSBhZG1pbiB2aWV3DQoJCQlpZiAoJGFkZEZpZWxkcyA9ICMjI0NvbXBvbmVudCMjI0hlbHBlcjo6Z2V0VmFyKCdhZG1pbl9maWVsZHMnLCAoaW50KSAkYWRtaW5WaWV3LCAnYWRtaW5fdmlldycsICdhZGRmaWVsZHMnKSkNCgkJCXsNCgkJCQlpZiAoU3VwZXJfX180YjIyNWM1MV9kMjkzXzQ4ZTRfYjNmNl81MTM2Y2Y1YzNmMThfX19Qb3dlcjo6Y2hlY2soJGFkZEZpZWxkcykpDQoJCQkJew0KCQkJCQkkYWRkRmllbGRzID0ganNvbl9kZWNvZGUoJGFkZEZpZWxkcywgdHJ1ZSk7DQoJCQkJCWlmIChTdXBlcl9fXzBhNTljNjVjXzlkYWZfNGJjOV9iYWY0X2UwNjNmZjllNmE4YV9fX1Bvd2VyOjpjaGVjaygkYWRkRmllbGRzKSkNCgkJCQkJew0KCQkJCQkJZm9yZWFjaCgkYWRkRmllbGRzIGFzICRhZGRGaWVsZCkNCgkJCQkJCXsNCgkJCQkJCQlpZiAoaXNzZXQoJGFkZEZpZWxkWydmaWVsZCddKSAmJiAoIWlzc2V0KCRhZGRGaWVsZFsnYWxpYXMnXSkgfHwgMSAhPSAkYWRkRmllbGRbJ2FsaWFzJ10pKQ0KCQkJCQkJCXsNCgkJCQkJCQkJJGZpZWxkSWRzW10gPSAoaW50KSAkYWRkRmllbGRbJ2ZpZWxkJ107DQoJCQkJCQkJfQ0KCQkJCQkJfQ0KCQkJCQl9DQoJCQkJfQ0KCQkJfQ0KCQl9DQoJCS8vIGZpbHRlciBieSBmaWVsZHMgbGlua2VkDQoJCWlmIChTdXBlcl9fXzBhNTljNjVjXzlkYWZfNGJjOV9iYWY0X2UwNjNmZjllNmE4YV9fX1Bvd2VyOjpjaGVjaygkZmllbGRJZHMpKQ0KCQl7DQoJCQkvLyBnZXQgbGlzdCBvZiBmaWVsZCB0eXBlcyB0aGF0IGRvZXMgbm90IHdvcmsgaW4gbGlzdCB2aWV3cyAobm90ZSwgc3BhY2VyKQ0KCQkJJHNwYWNlcnMgPSAjIyNDb21wb25lbnQjIyNIZWxwZXI6OmdldFNwYWNlcklkcygpOw0KCQkJJHF1ZXJ5ID0gJGRiLT5nZXRRdWVyeSh0cnVlKTsNCgkJCSRxdWVyeS0+c2VsZWN0KCRkYi0+cXVvdGVOYW1lKGFycmF5KCdhLmlkJywnYS5uYW1lJywnYi5uYW1lJyksYXJyYXkoJ2lkJywnbmFtZScsJ3R5cGUnKSkpOw0KCQkJJHF1ZXJ5LT5mcm9tKCRkYi0+cXVvdGVOYW1lKCcjX18jIyNjb21wb25lbnQjIyNfZmllbGQnLCAnYScpKTsNCgkJCSRxdWVyeS0+am9pbignTEVGVCcsICRkYi0+cXVvdGVOYW1lKCcjX18jIyNjb21wb25lbnQjIyNfZmllbGR0eXBlJywgJ2InKSAuICcgT04gKCcgLiAkZGItPnF1b3RlTmFtZSgnYS5maWVsZHR5cGUnKSAuICcgPSAnIC4gJGRiLT5xdW90ZU5hbWUoJ2IuaWQnKSAuICcpJyk7DQoJCQkkcXVlcnktPndoZXJlKCRkYi0+cXVvdGVOYW1lKCdhLnB1Ymxpc2hlZCcpIC4gJyA+PSAxJyk7DQoJCQkvLyBvbmx5IGxvYWQgdGhlc2UgZmllbGRzDQoJCQkkcXVlcnktPndoZXJlKCRkYi0+cXVvdGVOYW1lKCdhLmlkJykgLiAnIElOICgnIC4gaW1wbG9kZSgnLCcsICRmaWVsZElkcykgLiAnKScpOw0KCQkJLy8gbm9uZSBvZiB0aGVzZSBmaWVsZCB0eXBlcw0KCQkJaWYgKFN1cGVyX19fMGE1OWM2NWNfOWRhZl80YmM5X2JhZjRfZTA2M2ZmOWU2YThhX19fUG93ZXI6OmNoZWNrKCRzcGFjZXJzKSkNCgkJCXsNCgkJCQkkcXVlcnktPndoZXJlKCRkYi0+cXVvdGVOYW1lKCdhLmZpZWxkdHlwZScpIC4gJyBOT1QgSU4gKCcgLiBpbXBsb2RlKCcsJywgJHNwYWNlcnMpIC4gJyknKTsNCgkJCX0NCgkJCSRxdWVyeS0+b3JkZXIoJ2EubmFtZSBBU0MnKTsNCgkJCSRkYi0+c2V0UXVlcnkoKHN0cmluZykkcXVlcnkpOw0KCQkJJGl0ZW1zID0gJGRiLT5sb2FkT2JqZWN0TGlzdCgpOw0KCQkJJG9wdGlvbnMgPSBhcnJheSgpOw0KCQkJaWYgKCRpdGVtcykNCgkJCXsNCgkJCQlmb3JlYWNoKCRpdGVtcyBhcyAkaXRlbSkNCgkJCQl7DQoJCQkJCSRvcHRpb25zW10gPSBIdG1sOjpfKCdzZWxlY3Qub3B0aW9uJywgJGl0ZW0tPmlkLCAkaXRlbS0+bmFtZSAuICcgWycgLiAkaXRlbS0+dHlwZSAuICddJyk7DQoJCQkJfQ0KCQkJCXJldHVybiAkb3B0aW9uczsNCgkJCX0NCgkJfQ0KCQlyZXR1cm4gYXJyYXkoSHRtbDo6Xygnc2VsZWN0Lm9wdGlvbicsICcnLCBUZXh0OjpfKCdBZGQgbW9yZSBmaWVsZHMgdG8gdGhpcyBhZG1pbiB2aWV3JykpKTs=\\\"\\n\\/>\"', 1, '2015-04-28 10:45:32', '2024-03-26 13:25:23', 15, '', 82, '96e3d0e6-e8b5-488f-8758-7cec18bd5858', '', '', '', '', ''),
(268, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Target Relation', 'NOT NULL', '', 11, '\"<field\\n\\ttype=\\\"list\\\"\\n\\tname=\\\"target_relation\\\"\\n\\tlabel=\\\"Target Relation\\\"\\n\\tdescription=\\\"Select the target field\\/s relation to other of the same target field\\/s.\\\"\\n\\tclass=\\\"list_class fieldLarge\\\"\\n\\tmultiple=\\\"false\\\"\\n\\tfilter=\\\"INT\\\"\\n\\trequired=\\\"true\\\"\\n\\toption=\\\"0|Isolate,1|Chain\\\"\\n\\tdefault=\\\"0\\\"\\n\\/>\"', 1, '2015-05-11 18:49:20', '2020-05-20 12:16:26', 5, '', 81, 'e393e7fe-b0b9-450d-b51f-d89cb53b2165', '', '', '', '', ''),
(269, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Teaser', 'NOT NULL', '', 25, '\"<field \\r\\n\\ttype=\\\"textarea\\\" \\r\\n\\tname=\\\"teaser\\\" \\r\\n\\tlabel=\\\"Teaser\\\" \\r\\n\\tdescription=\\\"Enter a short teaser description\\\" \\r\\n\\trows=\\\"10\\\" \\r\\n\\tcols=\\\"5\\\"\\r\\n\\tclass=\\\"span12\\\" \\r\\n\\tfilter=\\\"safehtml\\\"\\r\\n\\trequired=\\\"true\\\"\\r\\n\\thint=\\\"Add Teaser Here\\\"\\r\\n\\/>\"', 1, '2015-04-24 09:35:47', '2015-08-25 21:15:22', 1, '', 80, 'aba2f94c-5e2a-48c0-be5a-e6775c90475d', '', '', '', '', ''),
(270, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'Text Mark Type', 'NOT NULL', '', 11, '\"<field \\r\\n\\ttype=\\\"list\\\" \\r\\n\\tname=\\\"text_mark_type\\\" \\r\\n\\tlabel=\\\"Mark Type\\\" \\r\\n\\tdescription=\\\"Select a text mark type\\\" \\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\tmultiple=\\\"false\\\" \\r\\n\\toption=\\\"|Select an option,1|Complete,2|Complete Plus\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\/>\"', 1, '2015-04-28 10:45:32', '2015-08-25 21:15:22', 1, '', 79, '22f4b781-8195-4d7d-a605-da260415731b', '', '', '', '', ''),
(271, '', '', '', '', '', '', '', '', 64, '', 'CHAR', '', '', '', 'Thumb', 'NOT NULL', '', 12, '\"<field \\r\\n\\ttype=\\\"media\\\" \\r\\n\\tname=\\\"thumb\\\" \\r\\n\\tlabel=\\\"Thumb\\\" \\r\\n\\tdescription=\\\"\\\" \\r\\n\\tdirectory=\\\"\\\"\\r\\n\\/>\"', 1, '2015-04-29 14:00:56', '2015-08-25 21:15:22', 1, '', 78, 'b27247a6-663b-4c44-a460-ad40f09db78b', '', '', '', '', ''),
(272, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Release Type (email)', 'NOT NULL', '', 11, '\"<field \\r\\n\\ttype=\\\"list\\\" \\r\\n\\tname=\\\"release_type\\\" \\r\\n\\tlabel=\\\"Release Type\\\" \\r\\n\\tdescription=\\\"Select the release behaviour of this email.\\\" \\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\tmultiple=\\\"false\\\" \\r\\n\\toption=\\\"1|Before Target Start,2|After Target End,3|On Target Start,4|Date\\\" \\r\\n\\tdefault=\\\"3\\\" \\r\\nrequired=\\\"true\\\"\\r\\nfilter=\\\"int\\\"\\r\\n\\/>\"', 1, '2015-05-05 23:57:28', '2016-02-06 22:43:52', 6, '', 77, '06c3c5d5-a4ac-4d28-9f73-4dcee5623046', '', '', '', '', ''),
(273, '', '', '', '', '', '', '', '', 64, '', 'CHAR', 2, '', '', 'Title', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"title\\\"\\n\\tlabel=\\\"Title\\\"\\n\\tsize=\\\"40\\\"\\n\\tmaxlength=\\\"150\\\"\\n\\tdescription=\\\"Enter Title Here\\\"\\n\\tclass=\\\"text_area\\\"\\n\\treadonly=\\\"false\\\"\\n\\tdisabled=\\\"false\\\"\\n\\trequired=\\\"true\\\"\\n\\tfilter=\\\"STRING\\\"\\n\\tmessage=\\\"Error! Please add title here.\\\"\\n\\thint=\\\"Title Here\\\"\\n\\/>\"', 1, '2015-03-19 17:30:59', '2023-06-27 23:45:55', 2, '', 76, 'edda1847-ef2e-4a76-9763-c41c82b08c00', '', '', '', '', ''),
(274, '', '', '', '', '', '', '', '', 64, '', 'CHAR', '', '', '', 'Toppings', 'NOT NULL', '', 4, '\"<field \\r\\n\\ttype=\\\"checkboxes\\\" \\r\\n\\tname=\\\"toppings\\\" \\r\\n\\tlabel=\\\"Select Toppings\\\" \\r\\n\\toption=\\\"anch|Anchovies,chor|Chorizo,on|Onions,mush|Mushrooms\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tdescription=\\\"Select the topping of your choice\\\" \\r\\n\\tclass=\\\"\\\" \\r\\n\\/>\"', 1, '2015-04-23 20:57:19', '2015-08-25 21:15:22', 2, '', 75, '622f395d-84d8-434b-8362-a9f9cde06dd5', '', '', '', '', ''),
(275, '', '', '', '', '', '', '', '', 64, '', 'CHAR', '', '', '', 'Translatable', 'NOT NULL', '', 3, '\"<field \\r\\n\\ttype=\\\"checkbox\\\" \\r\\n\\tname=\\\"translatable\\\" \\r\\n\\tlabel=\\\"Translatable\\\" \\r\\n\\tdescription=\\\"Select if the property is translatable.\\\" \\r\\n\\tvalue=\\\"1\\\"\\r\\n\\tclass=\\\"inputbox\\\" \\r\\n\\/>\"', 1, '2015-05-10 21:38:22', '2017-09-21 02:05:18', 3, '', 91, 'e8038a0c-f819-4e1d-99ed-e4928bea1664', '', '', '', '', ''),
(276, '', '', '', '', '', '', '', '', 64, '', 'VARCHAR', '', '', '', 'Use Global From', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"mailer\\\" \\r\\n\\tlabel=\\\"Use Global Details\\\" \\r\\n\\tdescription=\\\"Set if you would like to use the global details.\\\" \\r\\n\\tclass=\\\"btn-group btn-group-yesno\\\" \\r\\n\\toption=\\\"global|Yes,default|No\\\" \\r\\n\\tdefault=\\\"global\\\" \\r\\n\\/>\"', 1, '2015-05-06 00:06:05', '2016-05-02 00:47:45', 3, '', 92, '31af5638-b133-4b54-8bc2-abc49c8f7834', '', '', '', '', ''),
(277, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Value/Example', 'NOT NULL', '', 25, '\"<field\\n\\ttype=\\\"textarea\\\"\\n\\tname=\\\"example\\\"\\n\\tlabel=\\\"Value\\/Example\\\"\\n\\trows=\\\"2\\\"\\n\\tcols=\\\"15\\\"\\n\\tdefault=\\\"\\\"\\n\\tdescription=\\\"Text Area\\\"\\n\\tmessage=\\\"Error! Please add value\\/example here.\\\"\\n\\tclass=\\\"text_area span12\\\"\\n\\tfilter=\\\"RAW\\\"\\n\\thint=\\\"Value\\/Example Here\\\"\\n\\/>\"', 1, '2015-05-10 21:38:22', '2018-09-26 22:07:18', 4, '', 108, '7f5be0e7-39e8-4938-8ebc-e6ba37a3da53', '', '', '', '', ''),
(278, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'VDM Public Key', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"vdm_key\\\" \\r\\n\\tlabel=\\\"VDM Public Key\\\" \\r\\n\\tsize=\\\"40\\\" \\r\\n\\tmaxlength=\\\"150\\\"\\r\\n\\tdescription=\\\"Enter the VDM publick key here.\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\treadonly=\\\"false\\\" \\r\\n\\tdisabled=\\\"false\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\tfilter=\\\"STRING\\\" \\r\\n\\tvalidate=\\\"\\\" \\r\\n\\tmessage=\\\"Error! Please add key here.\\\" \\r\\n\\thint=\\\"VDM Key Here\\\" \\r\\n\\/>\"', 1, '2015-05-12 13:17:56', '2015-08-25 21:15:22', 1, '', 107, '57043d50-9ee1-443e-bdf5-9df150d063e5', '', '', '', '', ''),
(279, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'View Type', 'NOT NULL', '', 11, '\"<field \\r\\n\\ttype=\\\"list\\\" \\r\\n\\tname=\\\"type\\\" \\r\\n\\tlabel=\\\"Type\\\" \\r\\n\\tdescription=\\\"Set the type of view\\\" \\r\\n\\tclass=\\\"btn-group\\\" \\r\\n\\tsize=\\\"1\\\" \\r\\n\\tdefault=\\\"1\\\" \\r\\n\\tfilter=\\\"INT\\\" \\r\\n\\trequired=\\\"\\\" \\r\\n\\toption=\\\"1|read\\/write,2|readonly\\\" \\r\\n\\/>\"', 1, '2015-03-19 18:23:52', '2015-08-25 21:15:22', 1, '', 106, '5f2ddc22-11f5-49a5-bebf-8313d8006e46', '', '', '', '', ''),
(280, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Website', 'NOT NULL', '', 27, '\"<field\\n\\ttype=\\\"url\\\"\\n\\tname=\\\"website\\\"\\n\\tlabel=\\\"Website\\\"\\n\\tsize=\\\"60\\\"\\n\\tmaxlength=\\\"150\\\"\\n\\tdescription=\\\"Enter website address\\\"\\n\\tclass=\\\"text_area\\\"\\n\\tfilter=\\\"url\\\"\\n\\tvalidated=\\\"url\\\"\\n\\tmessage=\\\"Error! Please add website here.\\\"\\n\\thint=\\\"http:\\/\\/www.example.com\\\"\\n\\tscheme=\\\"http,https\\\"\\n\\/>\"', 1, '2015-04-08 00:36:16', '2018-07-08 00:11:05', 2, '', 105, '6c3a6983-d1bf-4e5e-9e99-deea00b0cefd', '', '', '', '', ''),
(281, '', '', '', '', '', '', '', '', 64, '', 'INT', '', '', '', 'Word Count', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"word_count\\\" \\r\\n\\tlabel=\\\"Max Word Count\\\" \\r\\n\\tsize=\\\"5\\\" \\r\\n\\tmaxlength=\\\"5\\\" \\r\\n\\tdescription=\\\"Enter max word count\\\" \\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-04-28 10:45:32', '2015-08-25 21:15:22', 1, '', 104, '7e2e8d03-c15f-4776-b568-456aac735e0a', '', '', '', '', ''),
(282, '', '', '', '', '', '', '', '', 7, '', 'INT', '', '', '', 'Word Count Point', 'NOT NULL', '', 10, '\"<field \\r\\n\\ttype=\\\"integer\\\" \\r\\n\\tname=\\\"word_count_point\\\" \\r\\n\\tlabel=\\\"Word Count Point\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tdescription=\\\"Set the max word count point\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\trequired=\\\"true\\\"\\r\\n\\tfirst=\\\"0\\\" \\r\\n\\tlast=\\\"20\\\" \\r\\n\\tstep=\\\"1\\\" \\r\\n\\tfilter=\\\"INT\\\"\\r\\n\\/>\"', 1, '2015-04-28 10:52:33', '2015-08-25 21:15:22', 1, '', 103, '90eb6129-8156-42ea-b92b-b57e1f88b393', '', '', '', '', ''),
(283, '', '', '', '', '', '', '', '', 64, '', 'VARCHAR', '', '', '', 'Work Phone', 'NOT NULL', '', 23, '\"<field type=\\\"text\\\" name=\\\"work_phone\\\" label=\\\"Work Phone\\\" size=\\\"10\\\" maxlength=\\\"50\\\" default=\\\"\\\" description=\\\"Enter Work Phone Number\\\" class=\\\"text_area\\\" filter=\\\"tel\\\" validated=\\\"tel\\\" message=\\\"Error! Please add work phone number here.\\\" hint=\\\"Work Phone Here\\\" \\/>\"', 1, '2015-04-07 22:12:58', '2015-08-25 21:15:22', 1, '', 102, 'ac9a313d-2c9b-4a83-a64c-d81683617f52', '', '', '', '', ''),
(284, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'XML Field Definition', 'NOT NULL', 1, 9, '\"<field \\r\\n\\ttype=\\\"hidden\\\" \\r\\n\\tname=\\\"xml\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tfilter=\\\"raw\\\" \\r\\n\\/>\"', 1, '2015-05-10 21:38:22', '2018-04-09 08:45:14', 2, '', 101, '83a3c115-1a4f-44a7-9572-e91043acdbaa', '', '', '', '', ''),
(285, '', '', '', '', '', '', '', '', 1, '', 'INT', '', '', '', 'Yes', 'NOT NULL', '', 3, '\"<field \\r\\n\\ttype=\\\"checkbox\\\" \\r\\n\\tname=\\\"yes\\\" \\r\\n\\tlabel=\\\"Yes\\\" \\r\\n\\tvalue=\\\"1\\\" \\r\\n\\tdefault=\\\"0\\\" \\r\\n\\tdescription=\\\"Select to agree\\\" \\r\\n\\tclass=\\\"inputbox\\\" \\r\\n\\tfilter=\\\"INT\\\"\\r\\n\\/>\"', 1, '2015-04-23 20:56:23', '2015-08-25 21:15:22', 1, '', 100, 'c167f40e-936e-4032-bc5a-ef49a450a710', '', '', '', '', ''),
(286, '', '', '', '', '', '', '', '', 7, '', 'INT', '', '', '', 'YesNo Point', 'NOT NULL', '', 10, '\"<field \\r\\n\\ttype=\\\"integer\\\" \\r\\n\\tname=\\\"yesno_point\\\" \\r\\n\\tlabel=\\\"YesNo Point\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tdescription=\\\"Set the yes or no point.\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\trequired=\\\"true\\\"\\r\\n\\tfirst=\\\"0\\\" \\r\\n\\tlast=\\\"20\\\" \\r\\n\\tstep=\\\"1\\\" \\r\\n\\tfilter=\\\"INT\\\"\\r\\n\\/>\"', 1, '2015-04-28 10:52:33', '2015-08-25 21:15:22', 1, '', 99, 'd11263b8-2da9-4b12-af6d-47ea3541b7f6', '', '', '', '', ''),
(287, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Youtube', 'NOT NULL', '', 27, '\"<field \\r\\n\\ttype=\\\"url\\\" \\r\\n\\tname=\\\"youtube\\\" \\r\\n\\tlabel=\\\"Youtube URL\\\" \\r\\n\\tsize=\\\"20\\\" \\r\\n\\tmaxlength=\\\"50\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tdescription=\\\"Enter youtube url (the share link)\\\" \\r\\n\\tclass=\\\"text_area\\\"\\r\\n\\tfilter=\\\"url\\\" \\r\\n\\tvalidated=\\\"url\\\" \\r\\n\\thint=\\\"https:\\/\\/youtu.be\\/gWU12DzPTUo\\\" \\r\\n\\/>\"', 1, '2015-04-30 14:05:30', '2015-08-25 21:15:22', 1, '', 98, '4e3742b4-a8aa-40f5-b400-1736e0e79d74', '', '', '', '', ''),
(288, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Add Javascript (view-footer)', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"add_javascript_view_footer\\\" \\r\\n\\tlabel=\\\"Add JavaScript (view-footer)\\\" \\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:37:16', '2015-08-25 21:15:22', 1, '', 294, '9405da44-900c-4f7c-823d-734a68f5d6f6', '', '', '', '', ''),
(289, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Add Javascript (views-footer)', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"add_javascript_views_footer\\\" \\r\\n\\tlabel=\\\"Add JavaScript (views-footer)\\\" \\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:37:29', '2015-08-25 21:15:22', 1, '', 295, '70995b9c-d0a9-4a57-b59b-54d39c379e66', '', '', '', '', ''),
(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', '', '', '', '', ''),
(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', '', '', '', '', ''),
(297, '', '', '', '', '', '', '', '', '', '', 'CHAR', '', '', '', 'Note - Add Files', 'NOT NULL', '', 14, '\"<field \\r\\n\\ttype=\\\"note\\\" \\r\\n\\tname=\\\"note_add_files\\\" \\r\\n\\tlabel=\\\"Adding Custom Files\\\" \\r\\n\\tdescription=\\\"You can add custom files to the component, simply add the files to the administrator\\/components\\/com_###component###\\/custom folder and then select them here.\\\" \\r\\n\\theading=\\\"h4\\\" \\r\\n\\tclass=\\\"alert alert-info\\\" \\r\\n\\/>\"', 1, '2015-05-13 15:24:04', '2017-11-24 23:21:42', 4, '', 307, 'b483276a-db33-4aae-a178-17dc989114f1', '', '', '', '', ''),
(298, '', '', '', '', '', '', '', '', '', '', 'CHAR', '', '', '', 'Note - Add Folders', 'NOT NULL', '', 14, '\"<field \\r\\n\\ttype=\\\"note\\\" \\r\\n\\tname=\\\"note_add_folders\\\" \\r\\n\\tlabel=\\\"Adding Custom Folders\\\" \\r\\n\\tdescription=\\\"You can add custom folders to the component, simply add the folders to the administrator\\/components\\/com_###component###\\/custom folder and then select them here.\\\" \\r\\n\\theading=\\\"h4\\\" \\r\\n\\tclass=\\\"alert alert-info\\\" \\r\\n\\/>\"', 1, '2015-05-13 15:25:04', '2017-11-24 23:22:12', 3, '', 306, 'b79528e9-d7fe-4dc3-90f0-fb90c3b53f9c', '', '', '', '', ''),
(299, '', '', '', '', '', '', '', '', 64, '', 'CHAR', '', '', '', 'Folder', 'NOT NULL', '', 6, '\"<field \\r\\n\\ttype=\\\"customfolderlist\\\" \\r\\n\\tname=\\\"folder\\\" \\r\\n\\tlabel=\\\"Folder\\\" \\r\\n\\tdescription=\\\"Add the folder to custom folder\\\" \\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\tmultiple=\\\"false\\\" \\r\\n\\tdefault=\\\"0\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\treadonly=\\\"\\\" \\r\\n\\tdisabled=\\\"\\\" \\r\\n\\textends=\\\"list\\\" \\r\\n\\tbutton=\\\"false\\\" \\r\\n\\ttype_php_1=\\\"\\/\\/ get custom folder folder\\r\\n\\t\\t$localfolder = JComponentHelper::getParams(\'com_###component###\')->get(\'custom_folder_path\', JPATH_COMPONENT_ADMINISTRATOR.\'\\/custom\');\\r\\n\\t\\t\\/\\/ set the default\\r\\n\\t\\t$options[] = JHtml::_(\'select.option\', \'\', JText::sprintf(\'Please add folders to (%s)\',$localfolder));\\r\\n\\t\\t\\/\\/ import all needed classes\\r\\n\\t\\tjimport(\'joomla.filesystem.file\');\\r\\n\\t\\tjimport(\'joomla.filesystem.folder\');\\r\\n\\t\\t\\/\\/ setup the folder if it does not exist\\r\\n\\t\\tif (!JFolder::exists($localfolder))\\r\\n\\t\\t{\\r\\n\\t\\t\\tJFolder::create($localfolder);\\r\\n\\t\\t}\\r\\n\\t\\t\\/\\/ now check if there are files in the folder\\r\\n\\t\\tif ($folders = JFolder::folders($localfolder))\\r\\n\\t\\t{\\r\\n\\t\\t\\t$options = array();\\r\\n\\t\\t\\tforeach ($folders as $folder)\\r\\n\\t\\t\\t{\\r\\n\\t\\t\\t\\t$options[] = JHtml::_(\'select.option\', $folder, $folder);\\r\\n\\t\\t\\t}\\r\\n\\t\\t}\\r\\n\\t\\treturn $options;\\\" \\r\\n\\/>\"', 1, '2015-05-13 15:27:18', '2015-11-24 23:58:07', 2, '', 304, '31f144af-ed45-4c80-85c8-fff4c4e0ca0d', '', '', '', '', ''),
(300, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Add Files', 'NOT NULL', '', 35, '\"<field \\r\\n\\ttype=\\\"subform\\\" \\r\\n\\tname=\\\"addfiles\\\" \\r\\n\\tlabel=\\\"Files (custom folder)\\\" \\r\\n\\tdescription=\\\"Add custom files to this component from the custom folder. Path: \\/administrator\\/components\\/com_componentbuilder\\/custom\\/\\\" \\r\\n\\tlayout=\\\"joomla.form.field.subform.repeatable-table\\\" \\r\\n\\tmultiple=\\\"true\\\" \\r\\n\\tfields=\\\"295,296,328\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\ticon=\\\"list\\\" \\r\\n\\tmaximum=\\\"500\\\" \\r\\n\\/>\"', 1, '2015-05-13 15:31:20', '2018-02-16 13:30:03', 3, '', 310, '143f8b3d-5b58-4b26-aaad-a5f14a57865b', '', '', '', '', ''),
(301, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Add Folder', 'NOT NULL', '', 35, '\"<field \\r\\n\\ttype=\\\"subform\\\"\\r\\n\\tname=\\\"addfolders\\\" \\r\\n\\tlabel=\\\"Folder (custom folder)\\\"\\r\\n\\tdescription=\\\"Add custom folder to this component from the custom folder. Path: \\/administrator\\/components\\/com_componentbuilder\\/custom\\/\\\" \\r\\n\\tlayout=\\\"joomla.form.field.subform.repeatable-table\\\" \\r\\n\\tmultiple=\\\"true\\\" \\r\\n\\tfields=\\\"299,296,329\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\ticon=\\\"list\\\" \\r\\n\\tmaximum=\\\"500\\\" \\r\\n\\tfilter=\\\"\\\" \\r\\n\\/>\"', 1, '2015-05-13 15:36:30', '2018-02-16 13:31:40', 3, '', 309, '483f2c40-2348-4168-817b-471f5ba96984', '', '', '', '', ''),
(302, '', '', '', '', '', '', '', '', '', '', 'CHAR', '', '', '', 'Note - Field Information', 'NOT NULL', '', 14, '\"<field \\r\\n\\ttype=\\\"note\\\" \\r\\n\\tname=\\\"helpNote\\\" \\r\\n\\tlabel=\\\"Field Information\\\" \\r\\n\\tdescription=\\\"\\\" \\r\\n\\theading=\\\"\\\" \\r\\n\\tclass=\\\"helpNote\\\" \\r\\n\\tclose=\\\"\\\" \\r\\n\\/>\"', 1, '2015-05-13 21:22:14', '2015-08-25 21:15:22', 1, '', 312, '50fb0b10-d6b7-477e-b847-024337dc9de9', '', '', '', '', ''),
(303, '', '', '', '', '', '', '', '', '', '', 'CHAR', '', '', '', 'Note - Filter Information', 'NOT NULL', '', 14, '\"<field \\r\\n\\ttype=\\\"note\\\" \\r\\n\\tname=\\\"note_filter_information\\\" \\r\\n\\tdescription=\\\"<div class=\'form-horizontal\'>\\r\\n\\t<div class=\'span4\'>\\r\\n\\t<h1>Filter Information<\\/h1>\\r\\n\\t<!-- The available values for the filter attribute are: -->\\r\\n\\t<table class=\'uk-table uk-table-hover uk-table-striped uk-table-condensed\'>\\r\\n\\t \\t<caption>The available values for the filter attribute are:<\\/caption>\\r\\n\\t\\t<thead>\\r\\n\\t\\t\\t<tr>\\r\\n\\t\\t\\t\\t<th class=\'uk-text-right\'>Filter<\\/th>\\r\\n\\t\\t\\t\\t<th>Description<\\/th>\\r\\n\\t\\t\\t<\\/tr>\\r\\n\\t\\t<\\/thead>\\r\\n\\t\\t<tbody>\\r\\n\\t\\t\\t<tr>\\r\\n\\t\\t\\t\\t<td class=\'uk-text-right\'><code>INT<\\/code><\\/td>\\r\\n\\t\\t\\t\\t<td>An integer<\\/td>\\r\\n\\t\\t\\t<\\/tr>\\r\\n\\t\\t\\t<tr>\\r\\n\\t\\t\\t\\t<td class=\'uk-text-right\'><code>UINT<\\/code><\\/td>\\r\\n\\t\\t\\t\\t<td>An unsigned integer<\\/td>\\r\\n\\t\\t\\t<\\/tr>\\r\\n\\t\\t\\t<tr>\\r\\n\\t\\t\\t\\t<td class=\'uk-text-right\'><code>FLOAT<\\/code><\\/td>\\r\\n\\t\\t\\t\\t<td>A floating point number<\\/td>\\r\\n\\t\\t\\t<\\/tr>\\r\\n\\t\\t\\t<tr>\\r\\n\\t\\t\\t\\t<td class=\'uk-text-right\'><code>BOOLEAN<\\/code><\\/td>\\r\\n\\t\\t\\t\\t<td>A boolean value<\\/td>\\r\\n\\t\\t\\t<\\/tr>\\r\\n\\t\\t\\t<tr>\\r\\n\\t\\t\\t\\t<td class=\'uk-text-right\'><code>WORD<\\/code><\\/td>\\r\\n\\t\\t\\t\\t<td>A string containing A-Z or underscores only (not case sensitive)<\\/td>\\r\\n\\t\\t\\t<\\/tr>\\r\\n\\t\\t\\t<tr>\\r\\n\\t\\t\\t\\t<td class=\'uk-text-right\'><code>ALNUM<\\/code><\\/td>\\r\\n\\t\\t\\t\\t<td>A string containing A-Z or 0-9 only (not case sensitive)<\\/td>\\r\\n\\t\\t\\t<\\/tr>\\r\\n\\t\\t\\t<tr>\\r\\n\\t\\t\\t\\t<td class=\'uk-text-right\'><code>CMD<\\/code><\\/td>\\r\\n\\t\\t\\t\\t<td>A string containing A-Z, 0-9, underscores, periods or hyphens (not case sensitive)<\\/td>\\r\\n\\t\\t\\t<\\/tr>\\r\\n\\t\\t\\t<tr>\\r\\n\\t\\t\\t\\t<td class=\'uk-text-right\'><code>BASE64<\\/code><\\/td>\\r\\n\\t\\t\\t\\t<td>A string containing A-Z, 0-9, forward slashes, plus or equals (not case sensitive)<\\/td>\\r\\n\\t\\t\\t<\\/tr>\\r\\n\\t\\t\\t<tr>\\r\\n\\t\\t\\t\\t<td class=\'uk-text-right\'><code>STRING<\\/code><\\/td>\\r\\n\\t\\t\\t\\t<td>A fully decoded and sanitized string (default)<\\/td>\\r\\n\\t\\t\\t<\\/tr>\\r\\n\\t\\t\\t<tr>\\r\\n\\t\\t\\t\\t<td class=\'uk-text-right\'><code>HTML<\\/code><\\/td>\\r\\n\\t\\t\\t\\t<td>A sanitized string<\\/td>\\r\\n\\t\\t\\t<\\/tr>\\r\\n\\t\\t\\t<tr>\\r\\n\\t\\t\\t\\t<td class=\'uk-text-right\'><code>ARRAY<\\/code><\\/td>\\r\\n\\t\\t\\t\\t<td>An array<\\/td>\\r\\n\\t\\t\\t<\\/tr>\\r\\n\\t\\t\\t<tr>\\r\\n\\t\\t\\t\\t<td class=\'uk-text-right\'><code>PATH<\\/code><\\/td>\\r\\n\\t\\t\\t\\t<td>A sanitized file path<\\/td>\\r\\n\\t\\t\\t<\\/tr>\\r\\n\\t\\t\\t<tr>\\r\\n\\t\\t\\t\\t<td class=\'uk-text-right\'><code>USERNAME<\\/code><\\/td>\\r\\n\\t\\t\\t\\t<td>Do not use (use an application specific filter)<\\/td>\\r\\n\\t\\t\\t<\\/tr>\\r\\n\\t\\t\\t<tr>\\r\\n\\t\\t\\t\\t<td class=\'uk-text-right\'><code>RAW<\\/code><\\/td>\\r\\n\\t\\t\\t\\t<td>The raw string is returned with no filtering<\\/td>\\r\\n\\t\\t\\t<\\/tr>\\r\\n\\t\\t\\t<tr>\\r\\n\\t\\t\\t\\t<td class=\'uk-text-right\'><code>unknown<\\/code><\\/td>\\r\\n\\t\\t\\t\\t<td>An unknown filter will act like STRING. If the input is an array it will return an array of fully decoded and sanitized strings.<\\/td>\\r\\n\\t\\t\\t<\\/tr>\\r\\n\\t\\t<\\/tbody>\\r\\n\\t<\\/table>\\r\\n\\t<\\/div>\\r\\n\\t<div class=\'span5\'>\\r\\n\\t\\t<h1>Validation Rules <span id=\'validation_rules_header\'><\\/span><\\/h1>\\r\\n\\t\\t<!-- The available validation rules for the validate attribute are: -->\\r\\n\\t\\t<div id=\'display_validation_rules\'>Searching the system.<span class=\'loading-dots\'><\\/span><\\/div>\\r\\n\\t<\\/div>\\r\\n\\t<div class=\'span3\'>\\r\\n\\t\\t<h1>Linked To<\\/h1>\\r\\n\\t\\t<!-- Places across JCB where this field is linked. -->\\r\\n\\t\\t<div id=\'display_linked_to\'>Searching the database.<span class=\'loading-dots\'><\\/span><\\/div>\\r\\n\\t<\\/div>\\r\\n<\\/div>\\\" \\r\\n\\/>\"', 1, '2015-05-13 21:26:14', '2018-03-27 13:31:14', 19, '', 311, 'a3b96357-7a72-427d-a5b7-4711c86591cb', '', '', '', '', ''),
(304, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Link', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"link\\\" \\r\\n\\tlabel=\\\"Link\\\" \\r\\n\\tsize=\\\"50\\\" \\r\\n\\tmaxlength=\\\"150\\\" \\r\\n\\tdescription=\\\"Enter menu link\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\treadonly=\\\"false\\\" \\r\\n\\tdisabled=\\\"false\\\" \\r\\n\\trequired=\\\"false\\\" \\r\\n\\tfilter=\\\"STRING\\\"\\r\\n\\tmessage=\\\"Error! Please add menu link.\\\" \\r\\n\\thint=\\\"Menu Link Here\\\" \\r\\n\\/>\"', 1, '2015-05-15 12:15:11', '2015-08-25 21:15:22', 1, '', 313, '4569fcfe-2027-453b-a1b5-615f71347912', '', '', '', '', ''),
(305, '', '', '', '', '', '', '', '', 64, '', 'CHAR', '', '', '', 'Icon (FileList - images)', 'NOT NULL', '', 30, '\"<field \\r\\n\\ttype=\\\"filelist\\\" \\r\\n\\tname=\\\"icon\\\" \\r\\n\\tlabel=\\\"Icon\\\" \\r\\n\\tdirectory=\\\"images\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tdescription=\\\"Add the icon to the image folder and select it here (128 x 128px)\\\" \\r\\n\\tfilter=\\\"\\\" \\r\\n\\texclude=\\\"\\\" \\r\\n\\tstripext=\\\"\\\" \\r\\n\\thide_none=\\\"\\\" \\r\\n\\thide_default=\\\"true\\\" \\r\\n\\/>\"', 1, '2015-05-15 12:19:11', '2015-08-25 21:15:22', 1, '', 301, 'f342ee50-ae2b-4a69-a177-ebd6a68785c0', '', '', '', '', ''),
(306, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'Before This Admin View (dynamic)', 'NOT NULL', '', 6, '\"<field\\n\\ttype=\\\"componentadminmenus\\\"\\n\\tname=\\\"before\\\"\\n\\tlabel=\\\"Order Before\\\"\\n\\tdescription=\\\"Select before what admin view this one should be placed\\\"\\n\\tclass=\\\"list_class fieldMedium\\\"\\n\\tmultiple=\\\"false\\\"\\n\\textends=\\\"list\\\"\\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\\ttype_php_1=\\\"__.o0=base64=Oo.__Ly8gbG9hZCB0aGUgZGIgb3BiamVjdA0KCQkkZGIgPSBKRmFjdG9yeTo6Z2V0REJPKCk7CQkNCgkJLy8gZ2V0IHRoZSBpbnB1dCBmcm9tIHVybA0KCQkkamlucHV0ID0gSkZhY3Rvcnk6OmdldEFwcGxpY2F0aW9uKCktPmlucHV0Ow0KCQkvLyBnZXQgdGhlIGlkDQoJCSRJRCA9ICRqaW5wdXQtPmdldEludCgnaWQnLCAwKTsNCgkJLy8gcmVzdCB0aGUgZmllbGRzIGlkcw0KCQkkdmlld2lkcyA9IGFycmF5KCk7DQoJCWlmIChpc19udW1lcmljKCRJRCkgJiYgJElEID49IDEpDQoJCXsNCgkJCS8vIGdldCB0aGUgam9vbWxhIGNvbXBvbmVudCBJRA0KCQkJJGpvb21sYWNvbXBvbmVudCA9ICMjI0NvbXBvbmVudCMjI0hlbHBlcjo6Z2V0VmFyKCdjb21wb25lbnRfY3VzdG9tX2FkbWluX21lbnVzJywgKGludCkgJElELCAnaWQnLCAnam9vbWxhX2NvbXBvbmVudCcpOw0KCQl9DQoJCWVsc2UNCgkJew0KCQkJLy8gZ2V0IHRoZSBqb29tbGEgY29tcG9uZW50IElEDQoJCQkkam9vbWxhY29tcG9uZW50ID0gJGppbnB1dC0+Z2V0SW50KCdyZWZpZCcsIDApOw0KCQl9DQoJCWlmIChpc19udW1lcmljKCRqb29tbGFjb21wb25lbnQpICYmICRqb29tbGFjb21wb25lbnQgPj0gMSkNCgkJew0KCQkJLy8gZ2V0IGFsbCB0aGUgYWRtaW4gdmlld3MgbGlua2VkIHRvIHRoZSBqb29tbGEgY29tcG9uZW50DQoJCQlpZiAoJGFkZEFkbWluVmlld3MgPSAjIyNDb21wb25lbnQjIyNIZWxwZXI6OmdldFZhcignY29tcG9uZW50X2FkbWluX3ZpZXdzJywgKGludCkgJGpvb21sYWNvbXBvbmVudCwgJ2pvb21sYV9jb21wb25lbnQnLCAnYWRkYWRtaW5fdmlld3MnKSkNCgkJCXsNCgkJCQlpZiAoIyMjQ29tcG9uZW50IyMjSGVscGVyOjpjaGVja0pzb24oJGFkZEFkbWluVmlld3MpKQ0KCQkJCXsNCgkJCQkJJGFkZEFkbWluVmlld3MgPSBqc29uX2RlY29kZSgkYWRkQWRtaW5WaWV3cywgdHJ1ZSk7DQoJCQkJCWlmICgjIyNDb21wb25lbnQjIyNIZWxwZXI6OmNoZWNrQXJyYXkoJGFkZEFkbWluVmlld3MpKQ0KCQkJCQl7DQoJCQkJCQlmb3JlYWNoKCRhZGRBZG1pblZpZXdzIGFzICRhZGRBZG1pblZpZXcpDQoJCQkJCQl7DQoJCQkJCQkJaWYgKGlzc2V0KCRhZGRBZG1pblZpZXdbJ2FkbWludmlldyddKSkNCgkJCQkJCQl7DQoJCQkJCQkJCSR2aWV3aWRzW10gPSAoaW50KSAkYWRkQWRtaW5WaWV3WydhZG1pbnZpZXcnXTsNCgkJCQkJCQl9DQoJCQkJCQl9DQoJCQkJCX0NCgkJCQl9DQoJCQl9DQoJCX0NCgkJJHF1ZXJ5ID0gJGRiLT5nZXRRdWVyeSh0cnVlKTsNCgkJJHF1ZXJ5LT5zZWxlY3QoJGRiLT5xdW90ZU5hbWUoYXJyYXkoJ2EuaWQnLCdhLnN5c3RlbV9uYW1lJyksYXJyYXkoJ2lkJywnbmFtZScpKSk7DQoJCSRxdWVyeS0+ZnJvbSgkZGItPnF1b3RlTmFtZSgnI19fIyMjY29tcG9uZW50IyMjX2FkbWluX3ZpZXcnLCAnYScpKTsNCgkJJHF1ZXJ5LT53aGVyZSgkZGItPnF1b3RlTmFtZSgnYS5wdWJsaXNoZWQnKSAuICcgPj0gMScpOw0KCQkvLyBmaWx0ZXIgYnkgZmllbGRzIGxpbmtlZA0KCQlpZiAoIyMjQ29tcG9uZW50IyMjSGVscGVyOjpjaGVja0FycmF5KCR2aWV3aWRzKSkNCgkJew0KCQkJLy8gb25seSBsb2FkIHRoZXNlIGZpZWxkcw0KCQkJJHF1ZXJ5LT53aGVyZSgkZGItPnF1b3RlTmFtZSgnYS5pZCcpIC4gJyBJTiAoJyAuIGltcGxvZGUoJywnLCAkdmlld2lkcykgLiAnKScpOw0KCQl9DQoJCSRxdWVyeS0+b3JkZXIoJ2Euc3lzdGVtX25hbWUgQVNDJyk7DQoJCSRkYi0+c2V0UXVlcnkoKHN0cmluZykkcXVlcnkpOw0KCQkkaXRlbXMgPSAkZGItPmxvYWRPYmplY3RMaXN0KCk7DQoJCSRvcHRpb25zID0gYXJyYXkoKTsNCgkJaWYgKCRpdGVtcykNCgkJew0KCQkJJG9wdGlvbnNbXSA9IEpIdG1sOjpfKCdzZWxlY3Qub3B0aW9uJywgJycsICdTZWxlY3QgYW4gb3B0aW9uJyk7DQoJCQlmb3JlYWNoKCRpdGVtcyBhcyAkaXRlbSkNCgkJCXsNCgkJCQkkb3B0aW9uc1tdID0gSkh0bWw6Ol8oJ3NlbGVjdC5vcHRpb24nLCAkaXRlbS0+aWQsICRpdGVtLT5uYW1lKTsNCgkJCX0NCgkJfQ0KCQkNCgkJcmV0dXJuICRvcHRpb25zOw==\\\"\\n\\/>\"', 1, '2015-05-15 12:22:26', '2019-06-11 12:40:36', 10, '', 314, '0f6db2fb-cba1-4584-a7a4-b4ff20ff8516', '', '', '', '', ''),
(307, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Add Custom Admin Menu', 'NOT NULL', '', 35, '\"<field\\n\\ttype=\\\"subform\\\"\\n\\tname=\\\"addcustommenus\\\"\\n\\tlabel=\\\"Custom Admin Menus\\\"\\n\\tlayout=\\\"repeatablejcb\\\"\\n\\tmultiple=\\\"true\\\"\\n\\tfields=\\\"199,202,304,305,175,68,263,306\\\"\\n\\tdescription=\\\"\\\"\\n\\tdefault=\\\"\\\"\\n\\ticon=\\\"list\\\"\\n\\/>\"', 1, '2015-05-15 12:22:52', '2021-12-16 04:48:29', 5, '', 316, '60d68340-14c1-45a9-8240-30f6bdf96345', '', '', '', '', ''),
(308, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Database Tables', 'NOT NULL', '', 6, '\"<field\\n\\ttype=\\\"dbtables\\\"\\n\\tname=\\\"table\\\"\\n\\tlabel=\\\"Select a Table\\\"\\n\\tclass=\\\"list_class\\\"\\n\\tmultiple=\\\"false\\\"\\n\\tdefault=\\\"0\\\"\\n\\textends=\\\"list\\\"\\n\\tprime_php=\\\"1\\\"\\n\\ttype_php_1=\\\"__.o0=base64=Oo.__Ly8gZ2V0IGRiIG9iamVjdA0KCQkkZGIgPSBGYWN0b3J5OjpnZXREQk8oKTsNCgkJLy8gZ2V0IGFsbCB0YWJsZXMNCgkJJHRhYmxlcz0gJGRiLT5nZXRUYWJsZUxpc3QoKTsNCgkJLy8gZ2V0IGNvbmZpZw0KCQkkY29uZmlnID0gRmFjdG9yeTo6Z2V0Q29uZmlnKCk7DQoJCSRkYnByZWZpeCA9IFx2ZXJzaW9uX2NvbXBhcmUoSlZFUlNJT04sJzMuMCcsJ2x0JykgPyAkY29uZmlnLT5nZXRWYWx1ZSgnY29uZmlnLmRicHJlZml4JykgOiAkY29uZmlnLT5nZXQoJ2RicHJlZml4Jyk7DQoJCSRvcHRpb25zID0gYXJyYXkoKTsNCgkJJG9wdGlvbnNbXSA9IEh0bWw6Ol8oJ3NlbGVjdC5vcHRpb24nLCAnJywgJ1NlbGVjdCBhbiBvcHRpb24nKTsNCgkJZm9yICgkaT0wOyAkaSA8IGNvdW50KCR0YWJsZXMpOyAkaSsrKQ0KCQl7DQoJCQkvL29ubHkgdGFibGVzIHdpdGggcHJpbWFyeSBrZXkNCgkJCSRkYi0+c2V0UXVlcnkoJ1NIT1cgRklFTERTIEZST00gYCcuJHRhYmxlc1skaV0uJ2AgV0hFUkUgTE9XRVIoIGBLZXlgICkgPSBcJ3ByaVwnJyk7DQoJCQlpZiAoJGRiLT5sb2FkUmVzdWx0KCkpDQoJCQl7DQoJCQkJJGtleSA9ICRpKzE7DQoJCQkJJG9wdGlvbnNbJGtleV0gPSBuZXcgXHN0ZENsYXNzOw0KCQkJCSRvcHRpb25zWyRrZXldLT52YWx1ZSA9IHN0cl9yZXBsYWNlKCRkYnByZWZpeCwgJycsICR0YWJsZXNbJGldKTsNCgkJCQkkb3B0aW9uc1ska2V5XS0+dGV4dCA9ICR0YWJsZXNbJGldOw0KCQkJfQ0KCQl9DQoJCXJldHVybiAkb3B0aW9uczs=\\\"\\n\\/>\"', 1, '2015-05-15 13:26:09', '2024-03-08 19:54:35', 16, '', 329, 'e79d6000-1b3b-4d6c-8183-2153c2f5dc40', '', '', '', '', ''),
(309, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Select MySql Source', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"source\\\"\\n\\tlabel=\\\"Select MySql Source\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"1|Table,2|Dump\\\"\\n\\tdefault=\\\"0\\\"\\n\\trequired=\\\"true\\\"\\n\\/>\"', 1, '2015-05-15 13:31:20', '2024-03-12 13:37:52', 2, '', 331, '21eff77d-da38-4ce1-96c5-e6af26463942', '', '', '', '', ''),
(310, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'MySQL (Source Map)', 'NOT NULL', 2, 25, '\"<field\\n\\ttype=\\\"textarea\\\"\\n\\tname=\\\"sourcemap\\\"\\n\\tlabel=\\\"Source Map\\\"\\n\\trows=\\\"22\\\"\\n\\tcols=\\\"30\\\"\\n\\tdescription=\\\"Map the Source to this view\'s fields.<br \\/><b>\\/\\/ First Table Map.<\\/b><br \\/>SourceField => viewField<br \\/><b>\\/\\/ Other Tables Map.<\\/b><br \\/>firstTableKeySourceField == keySourceField<br \\/>SourceField => viewField<br \\/><b>\\/\\/ Remember to add all fields that has no default value, and is not null.<\\/b>\\\"\\n\\tmessage=\\\"Please review the Source Map selection, as it appears that certain mandatory fields have been excluded from the (MySQL -> Tables -> Source Map) selection. These specific fields are designated as \'not null\' and lack default values. This oversight may lead to errors when installing your component on Joomla 5 and above. To address this issue, you are presented with a few options:\\r\\n<br \\/><br \\/>\\r\\n1. Assign a default value to the field. This can be done within the specific field settings under the Database Tab.<br \\/>\\r\\n2. Modify the field\'s Null Switch to \'NULL\'. This adjustment also takes place in the field settings.\\r\\n3. Alternatively, you could add these fields into the <b>MySQL -> Tables -> Source Map<\\/b> selection. This inclusion ensures that all necessary data parameters are correctly mapped in the MySQL (dump) and available during the Joomla component installation process.\\r\\n<br \\/><br \\/>\\r\\nBy taking one of these actions, you will prevent potential installation errors and ensure compatibility with the requirements of Joomla 5 and above.\\\"\\n\\tclass=\\\"text_area span4\\\"\\n\\tfilter=\\\"HTML\\\"\\n\\thint=\\\"SourceField => viewField\\\"\\n\\trequired=\\\"false\\\"\\n\\tvalidate=\\\"sourcemapchecker\\\"\\n\\/>\"', 1, '2015-05-15 13:37:38', '2024-02-07 15:36:26', 6, '', 358, '0adf625e-798e-401f-b0b1-d5e1af73ff2a', '', '', '', '', ''),
(311, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Add Tables', 'NOT NULL', '', 35, '\"<field \\r\\n\\ttype=\\\"subform\\\" \\r\\n\\tname=\\\"addtables\\\" \\r\\n\\tlabel=\\\"Tables\\\" \\r\\n\\tlayout=\\\"joomla.form.field.subform.repeatable-table\\\" \\r\\n\\tmultiple=\\\"true\\\" \\r\\n\\tdescription=\\\"\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\ticon=\\\"list\\\" \\r\\n\\tmaximum=\\\"50\\\"\\r\\n\\tfields=\\\"308,310\\\" \\r\\n\\/>\"', 1, '2015-05-15 15:59:32', '2017-10-09 18:20:38', 2, '', 315, '33a9df05-3e39-4cc8-af2b-234653aadb7a', '', '', '', '', ''),
(312, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Add Config Fields', 'NOT NULL', '', 35, '\"<field \\r\\n\\ttype=\\\"repeatable\\\" \\r\\n\\tname=\\\"addconfig\\\" \\r\\n\\tlabel=\\\"Config\\\" \\r\\n\\tdescription=\\\"Setup config fields.\\\" \\r\\n\\tlayout=\\\"joomla.form.field.subform.repeatable-table\\\"\\r\\n\\tdefault=\\\"\\\" \\r\\n\\tid=\\\"addconfigs\\\" \\r\\n\\tclass=\\\"addconfig\\\" \\r\\n\\tselect=\\\"Add\\\" \\r\\n\\ticon=\\\"list\\\" \\r\\n\\tmaximum=\\\"500\\\" \\r\\n\\tfields=\\\"143,317,313\\\"\\r\\n\\/>\"', 1, '2015-05-18 12:30:57', '2017-12-05 17:41:30', 3, '', 359, '851d8f15-3ce4-42a3-9041-08c943f61cab', '', '', '', '', ''),
(313, '', '', '', '', '', '', '', '', 11, '', 'INT', '', '', '', 'Config Tabs', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"tabname\\\" \\r\\n\\tlabel=\\\"Tab Name\\\" \\r\\n\\tsize=\\\"40\\\" \\r\\n\\tmaxlength=\\\"150\\\" \\r\\n\\tdefault=\\\"Global\\\" \\r\\n\\tdescription=\\\"The name of the tab this field belongs to.\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\treadonly=\\\"false\\\" \\r\\n\\tdisabled=\\\"false\\\" \\r\\n\\trequired=\\\"false\\\" \\r\\n\\tfilter=\\\"STRING\\\" \\r\\n\\tmessage=\\\"Error! Please add tab name here.\\\" \\r\\n\\thint=\\\"Global\\\" \\r\\n\\/>\"', 1, '2015-05-18 12:42:10', '2015-08-25 21:15:22', 1, '', 360, 'cbe06176-d618-4fe6-bb4b-0852871e2bb6', '', '', '', '', ''),
(314, '', '', '', '', '', '', '', '', '', '', 'CHAR', '', '', '', 'Note - Add Config', 'NOT NULL', '', 14, '\"<field \\r\\n\\ttype=\\\"note\\\" \\r\\n\\tname=\\\"note_add_config\\\" \\r\\n\\tlabel=\\\"Adding Custom Config Fields\\\" \\r\\n\\tdescription=\\\"You can add custom config fields to the component here. The normal Global config is already being added so only add custom fields that you would like to use in custom scripts.<span id=\'jform_button_add_config\'><\\/span>\\\" \\r\\n\\theading=\\\"h4\\\" \\r\\n\\tclass=\\\"alert alert-info\\\" \\r\\n\\/>\"', 1, '2015-05-18 15:53:39', '2017-10-26 15:34:59', 3, '', 305, '9fdfddf4-8618-44cd-8443-bbe3fed8588a', '', '', '', '', ''),
(315, '', '', '', '', '', '', '', '', '', '', 'CHAR', '', '', '', 'Note - Add Custom Menus', 'NOT NULL', '', 14, '\"<field \\r\\n\\ttype=\\\"note\\\" \\r\\n\\tname=\\\"note_add_custom_menus\\\" \\r\\n\\tlabel=\\\"Adding Custom Menus\\\" \\r\\n\\tdescription=\\\"You can add custom menus to the component here. The normal Menus are already being added so only add custom Menus that you would like to use for custom scripts.<span id=\'jform_button_add_custom_menus\'><\\/span>\\\" \\r\\n\\theading=\\\"h4\\\" \\r\\n\\tclass=\\\"alert alert-info\\\" \\r\\n\\/>\"', 1, '2015-05-18 15:55:31', '2017-10-25 18:53:20', 3, '', 308, 'b9d63536-2c8f-47c8-b3a2-817164c56a81', '', '', '', '', ''),
(316, '', '', '', '', '', '', '', '', 11, '', 'INT', '', '', '', 'Minify JS', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"minify\\\" \\r\\n\\tlabel=\\\"Minify JS\\\" \\r\\n\\tdescription=\\\"Should the JavaScript be minified when compiled.\\\" \\r\\n\\tclass=\\\"btn-group btn-group-yesno\\\" \\r\\n\\toption=\\\"1|Yes,0|No\\\" \\r\\n\\tdefault=\\\"0\\\" \\r\\n\\/>\"', 1, '2015-05-18 17:35:36', '2015-08-25 21:15:22', 1, '', 361, 'c50783bb-a755-45c3-9432-1bf7fcddbec5', '', '', '', '', ''),
(317, '', '', '', '', '', '', '', '', '', '', 'CHAR', '', '', '', 'Custom Value', 'NOT NULL', '', 25, '\"<field \\r\\n\\ttype=\\\"textarea\\\" \\r\\n\\tname=\\\"custom_value\\\" \\r\\n\\tlabel=\\\"Custom Value\\\" \\r\\n\\trows=\\\"2\\\" \\r\\n\\tcols=\\\"4\\\" \\r\\n\\tdescription=\\\"Enter custom value if needed\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\treadonly=\\\"false\\\" \\r\\n\\tdisabled=\\\"false\\\" \\r\\n\\trequired=\\\"false\\\" \\r\\n\\thint=\\\"Custom Value Here\\\"\\r\\n\\/>\"', 1, '2015-05-18 20:05:44', '2017-11-24 23:15:58', 7, '', 362, 'ed9cd669-f816-4c23-a10b-48ad82bd8faf', '', '', '', '', ''),
(318, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Add Empty Contributors', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"emptycontributors\\\" \\r\\n\\tlabel=\\\"Empty Contributor Fields\\\" \\r\\n\\tdescription=\\\"Set if a list of empty contributor fields should be added.\\\" \\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-05-18 20:32:42', '2015-08-25 21:15:22', 1, '', 363, '05e16c3f-1f5e-4355-a948-5331546f218c', '', '', '', '', ''),
(319, '', '', '', '', '', '', '', '', '', '', 'CHAR', '', '', '', 'Note - Snippet Usage', 'NOT NULL', '', 14, '\"<field \\r\\n\\ttype=\\\"note\\\" \\r\\n\\tname=\\\"note_snippet_usage\\\" \\r\\n\\tlabel=\\\"Snippet Usage\\\" \\r\\n\\tdescription=\\\"\\\" \\r\\n\\theading=\\\"h4\\\" \\r\\n\\tclass=\\\"snippet-usage\\\" \\r\\n\\/>\"', 1, '2015-05-19 09:27:04', '2015-08-25 21:15:22', 1, '', 364, 'b04feeec-bca6-4897-9abe-ac40bd294265', '', '', '', '', ''),
(320, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Layout', 'NOT NULL', 2, 8, '\"<field\\n\\ttype=\\\"editor\\\"\\n\\tname=\\\"layout\\\"\\n\\tlabel=\\\"Layout<br \\/><small>$displayData is the Object that is used inside the layout file to build displayed output<\\/small>\\\"\\n\\tdescription=\\\"Add the layout code here.\\\"\\n\\twidth=\\\"100%\\\"\\n\\theight=\\\"450px\\\"\\n\\tcols=\\\"15\\\"\\n\\trows=\\\"30\\\"\\n\\tbuttons=\\\"no\\\"\\n\\tsyntax=\\\"html\\\"\\n\\teditor=\\\"codemirror|none\\\"\\n\\tfilter=\\\"raw\\\"\\n\\tvalidate=\\\"code\\\"\\n\\/>\"', 1, '2015-05-19 09:54:01', '2019-07-08 14:13:55', 5, '', 368, '7c9289e1-b326-4596-9dd8-f6ebe861a0ef', '', '', '', '', ''),
(321, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'UIkit Data', 'NOT NULL', 1, 11, '\"<field \\r\\n\\ttype=\\\"list\\\" \\r\\n\\tname=\\\"uk_data\\\" \\r\\n\\tlabel=\\\"UIkit Data\\\" \\r\\n\\tdescription=\\\"\\\" \\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\tmultiple=\\\"true\\\" \\r\\n\\tfilter=\\\"STRING\\\" \\r\\n\\trequired=\\\"\\\" \\r\\n\\toption=\\\"margin, grid-match, grid-margin, check-display, observe, smooth-scroll, scrollspy, scrollspy-nav, toggle, alert, button-radio, button-checkbox, button, dropdown, modal, nav, offcanvas, switcher, switcher-item, tab, cover,\\r\\n accordion, autocomplete, datepicker, form-password, form-select, grid, filter, sort, htmleditor, tooltip, lightbox, nestable, pagination, parallax, search, slider, slider-item, slideset, slideset-item, slideshow,\\r\\n slideshow-item, sortable, sticky, timepicker\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\/>\"', 1, '2015-05-19 09:57:07', '2015-08-25 21:15:22', 1, '', 369, '950c79fb-fa75-40c4-ba18-1cff25fbcc76', '', '', '', '', ''),
(322, '', '', '', '', '', '', '', '', '', '', 'MEDIUMTEXT', '', '', '', 'PHP site (view)', 'NOT NULL', 2, 8, '\"<field\\n\\ttype=\\\"editor\\\"\\n\\tname=\\\"php_view\\\"\\n\\tlabel=\\\"Custom Script\\\"\\n\\tdescription=\\\"the PHP script that must run in the head of the file.\\\"\\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-19 14:20:42', '2019-07-08 14:14:03', 7, '', 370, 'e27df414-cf8a-45c3-bc38-cc48e6146fef', '', '', '', '', ''),
(323, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Snippets', 'NOT NULL', 2, 25, '\"<field \\r\\n\\ttype=\\\"textarea\\\" \\r\\n\\tname=\\\"snippet\\\" \\r\\n\\tlabel=\\\"Snippet\\\" \\r\\n\\trows=\\\"27\\\" \\r\\n\\tcols=\\\"10\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tclass=\\\"text_area span12\\\" \\r\\n\\tfilter=\\\"raw\\\" \\r\\n\\thint=\\\"\\/\\/ Add the snippets code here\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\/>\"', 1, '2015-05-19 14:51:31', '2015-08-25 21:15:22', 1, '', 367, '144a1f95-97d5-42b4-be3e-39f21215780e', '', '', '', '', ''),
(324, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'URL', 'NOT NULL', '', 27, '\"<field\\n\\ttype=\\\"url\\\"\\n\\tname=\\\"url\\\"\\n\\tlabel=\\\"URL\\\"\\n\\tsize=\\\"60\\\"\\n\\tmaxlength=\\\"150\\\"\\n\\tdescription=\\\"Enter url\\\"\\n\\tclass=\\\"text_area\\\"\\n\\trequired=\\\"true\\\"\\n\\tfilter=\\\"url\\\"\\n\\tvalidated=\\\"url\\\"\\n\\tscheme=\\\"http,https\\\"\\n\\tmessage=\\\"Error! Please add url here.\\\"\\n\\thint=\\\"http:\\/\\/www.example.com\\\"\\n\\/>\"', 1, '2015-05-19 16:08:22', '2022-06-18 10:23:24', 4, '', 378, 'd29d6854-bb4a-4fa2-83a1-5a1b9c9a0eaf', '', '', '', '', ''),
(325, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'Snippet Types', 'NOT NULL', '', 6, '\"<field \\r\\n\\ttype=\\\"snippettype\\\" \\r\\n\\tname=\\\"type\\\" \\r\\n\\tlabel=\\\"Type\\\" \\r\\n\\tdescription=\\\"Snippet Types\\\" \\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\tmultiple=\\\"false\\\" \\r\\n\\trequired=\\\"true\\\"\\r\\n\\tfilter=\\\"INT\\\"\\r\\n\\tdefault=\\\"0\\\"\\r\\n\\textends=\\\"list\\\" \\r\\n\\ttable=\\\"#__###component###_snippet_type\\\" \\r\\n\\tcomponent=\\\"com_###component###\\\" \\r\\n\\tview=\\\"snippet_type\\\" \\r\\n\\tviews=\\\"snippet_types\\\" \\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 an option\');\\\" \\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\\/>\\r\\n\\/\\/\\/ 1|Layout,2|Navigations,3|Elements,4|Common,5|JavaScript,6|Charts\"', 1, '2015-05-19 16:27:33', '2017-11-19 23:15:02', 5, '', 379, '0cc69ef6-eb4d-4a0d-ad40-84bc1845e48f', '', '', '', '', ''),
(326, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Usage', 'NOT NULL', '', 25, '\"<field \\r\\n\\ttype=\\\"textarea\\\" \\r\\n\\tname=\\\"usage\\\" \\r\\n\\tlabel=\\\"Usage\\\" \\r\\n\\trows=\\\"11\\\" \\r\\n\\tcols=\\\"10\\\" \\r\\n\\tdescription=\\\"Add Usage Here\\\" \\r\\n\\tclass=\\\"text_area span12\\\" \\r\\n\\tfilter=\\\"STRING\\\" \\r\\n\\thint=\\\"Add Usage Here\\\" \\r\\n\\/>\"', 1, '2015-05-19 16:30:48', '2015-08-25 21:15:22', 1, '', 380, '155d8238-a2cf-446c-91a5-c8322ee1d890', '', '', '', '', ''),
(327, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Heading', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"heading\\\" \\r\\n\\tlabel=\\\"Heading\\\" \\r\\n\\tsize=\\\"40\\\" \\r\\n\\tmaxlength=\\\"150\\\" \\r\\n\\tdescription=\\\"Enter short heading\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\tfilter=\\\"HTML\\\" \\r\\n\\trequired=\\\"true\\\"\\r\\n\\tmessage=\\\"Error! Please add some short heading here.\\\" \\r\\n\\thint=\\\"Your Heading Here\\\" \\r\\n\\/>\"', 1, '2015-05-19 16:51:55', '2015-08-25 21:15:22', 1, '', 381, 'fc671dc8-a9be-43d9-b42a-671750ad869d', '', '', '', '', ''),
(328, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Update (Not New)', 'NOT NULL', '', 3, '\"<field\\n\\ttype=\\\"checkbox\\\"\\n\\tname=\\\"notnew\\\"\\n\\tlabel=\\\"Update\\\"\\n\\tvalue=\\\"1\\\"\\n\\tdefault=\\\"\\\"\\n\\tdescription=\\\"Should file be updated.\\\"\\n\\tclass=\\\"inputbox\\\"\\n\\/>\"', 1, '2015-05-19 17:58:35', '2019-06-11 12:24:24', 3, '', 382, 'f4aee176-7c3c-4bc2-8b01-52f960525cdc', '', '', '', '', ''),
(329, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'Rename', 'NOT NULL', '', 3, '\"<field\\n\\ttype=\\\"checkbox\\\"\\n\\tname=\\\"rename\\\"\\n\\tlabel=\\\"Rename\\\"\\n\\tvalue=\\\"1\\\"\\n\\tdefault=\\\"\\\"\\n\\tclass=\\\"inputbox\\\"\\n\\/>\"', 1, '2015-05-19 19:14:30', '2019-06-11 12:24:45', 3, '', 383, 'cf557971-11ed-4ccc-9d28-a3478aaa12ff', '', '', '', '', ''),
(330, '', '', '', '', '', '', '', '', '', '', 'CHAR', '', '', '', 'Note - UIkit Snippet Details', 'NOT NULL', '', 14, '\"<field \\r\\n\\ttype=\\\"note\\\" \\r\\n\\tname=\\\"note_uikit_snippet\\\" \\r\\n\\tlabel=\\\"Snippet Details\\\" \\r\\n\\tclass=\\\"snippet-code\\\"\\r\\n\\theading=\\\"h4\\\" \\r\\n\\/>\"', 1, '2015-05-19 21:02:29', '2015-08-25 21:15:22', 1, '', 377, 'a056497a-d35f-44e5-b3cb-1cac030fcd3c', '', '', '', '', ''),
(331, 1, '', 1, '', 'I2pmb3JtX3NuaXBwZXRfY2h6biB7DQp3aWR0aDogMTAwJSAhaW1wb3J0YW50Ow0KfQ0KLmpmb3JtX3NuaXBwZXRfaW5wdXRfd2lkdGggew0Kd2lkdGg6IDkwJSAhaW1wb3J0YW50Ow0KfQ==', '', '', '', 11, '', 'INT', '', 'alF1ZXJ5KCcjamZvcm1fc25pcHBldCcpLmNsb3Nlc3QoJy5pbnB1dC1hcHBlbmQnKS5hZGRDbGFzcygnamZvcm1fc25pcHBldF9pbnB1dF93aWR0aCcpOw==', '', 'Snippet (Dynamic)', 'NOT NULL', '', 6, '\"<field \\r\\n\\ttype=\\\"snippets\\\" \\r\\n\\tname=\\\"snippet\\\" \\r\\n\\tlabel=\\\"Select a Snippet\\\" \\r\\n\\tdescription=\\\"Select a snippet you would like to use or review.\\\" \\r\\n\\trequired=\\\"false\\\"\\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\tmultiple=\\\"false\\\"\\r\\n\\textends=\\\"list\\\" \\r\\n\\tbutton=\\\"true\\\"\\r\\n\\ttable=\\\"#__###component###_snippet\\\" \\r\\n\\tcomponent=\\\"com_###component###\\\" \\r\\n\\tview=\\\"snippet\\\" \\r\\n\\tviews=\\\"snippets\\\" \\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###\',\'b.name\',\'c.name\'),array(\'###ID###\',\'###CODE_TEXT###\',\'type\',\'library\')));\\\" \\r\\n\\ttype_php_4=\\\"$query->from($db->quoteName(\'###TABLE###\', \'a\'));\\r\\n\\t\\t\\/\\/ From the ###component###_snippet_type table.\\r\\n\\t\\t$query->join(\'LEFT\', $db->quoteName(\'#__###component###_snippet_type\', \'b\') . \' ON (\' . $db->quoteName(\'a.type\') . \' = \' . $db->quoteName(\'b.id\') . \')\');\\r\\n\\t\\t\\/\\/ From the ###component###_library table.\\r\\n\\t\\t$query->join(\'LEFT\', $db->quoteName(\'#__###component###_library\', \'c\') . \' ON (\' . $db->quoteName(\'a.library\') . \' = \' . $db->quoteName(\'c.id\') . \')\');\\\" \\r\\n\\ttype_php_5=\\\"$query->where($db->quoteName(\'a.published\') . \' >= 1\');\\\\n\\\\t\\\\t$query->order(\'c.ordering ASC\');\\\\n\\\\t\\\\t$query->order(\'b.name 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_12=\\\"\\\\tforeach($items as $item)\\\" \\r\\n\\ttype_php_13=\\\"\\\\t{\\\\n\\\\t\\\\t\\\\t\\\\t$lib = (isset($item->library) && ###Component###Helper::checkString($item->library)) ? \' (\' . $item->library . \')\' :\'\';\\r\\n\\\\t\\\\t\\\\t\\\\t$type = (isset($item->type) && ###Component###Helper::checkString($item->type)) ? $item->type :JText::_(\'No Type\');\\\" \\r\\n\\ttype_php_14=\\\"\\\\t\\\\t$options[] = JHtml::_(\'select.option\', $item->###ID###, $type . \' - \' . $item->###CODE_TEXT### . $lib );\\\" \\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-05-19 21:43:35', '2017-11-22 21:34:55', 14, '', 384, 'fc4bc2f3-1a12-4484-88dc-273199fe3b63', '', '', '', '', ''),
(332, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Add PHP (AJAX)', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"add_php_ajax\\\" \\r\\n\\tlabel=\\\"Add PHP (AJAX)\\\" \\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-20 08:26:25', '2015-08-25 21:15:22', 1, '', 385, '625b65cb-7569-437a-a6dd-b3290c662e18', '', '', '', '', ''),
(333, '', '', '', '', '', '', '', '', '', '', 'MEDIUMTEXT', '', '', '', 'PHP (AJAX Model Method)', 'NOT NULL', 2, 8, '\"<field\\n\\ttype=\\\"editor\\\"\\n\\tname=\\\"php_ajaxmethod\\\"\\n\\tlabel=\\\"PHP Ajax Methods\\\"\\n\\tdescription=\\\"Add PHP Methods that should run in the AJAX Model. 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-20 08:27:44', '2019-07-08 14:14:11', 3, '', 386, 'c731b5f5-5bd3-4ad3-ac3e-9e0281104121', '', '', '', '', ''),
(334, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Task Name', 'NOT NULL', '', 24, '\"<field\\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"task_name\\\" \\r\\n\\tlabel=\\\"Task Name\\\" \\r\\n\\tsize=\\\"40\\\" \\r\\n\\tmaxlength=\\\"150\\\" \\r\\n\\tdescription=\\\"Enter Task Name Here\\\" \\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 task name here.\\\" \\r\\n\\thint=\\\"Task Name Here\\\" \\r\\n\\/>\"', 1, '2015-05-20 08:31:55', '2015-08-25 21:15:22', 1, '', 388, '9943a4a2-ef23-4d0d-bda8-af7c28dad726', '', '', '', '', ''),
(335, '', '', '', '', '', '', '', '', 64, '', 'CHAR', 2, '', '', 'Input Filter', 'NOT NULL', '', 11, '\"<field\\n\\ttype=\\\"list\\\"\\n\\tname=\\\"input_filter\\\"\\n\\tlabel=\\\"Select a Filter\\\"\\n\\tdescription=\\\"Select the filter used to sanitized the input value.\\\"\\n\\tclass=\\\"list_class\\\"\\n\\tmultiple=\\\"false\\\"\\n\\tfilter=\\\"ALNUM\\\"\\n\\trequired=\\\"true\\\"\\n\\toption=\\\"INT,UINT,FLOAT,BOOLEAN,WORD,ALNUM,CMD,BASE64,STRING,HTML,ARRAY,PATH,USERNAME,RAW,unknown\\\"\\n\\tdefault=\\\"INT\\\"\\n\\/>\"', 1, '2015-05-20 08:39:38', '2021-12-21 14:39:15', 2, '', 389, 'e60e7a4c-1ac9-4f6b-a70c-4af18c28d230', '', '', '', '', ''),
(336, '', '', '', '', '', '', '', '', 64, '', 'CHAR', '', '', '', 'Default Value', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"input_default\\\" \\r\\n\\tlabel=\\\"Default\\\" \\r\\n\\tsize=\\\"40\\\" \\r\\n\\tmaxlength=\\\"150\\\" \\r\\n\\tdefault=\\\"NULL\\\" \\r\\n\\tdescription=\\\"Enter default input value\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\treadonly=\\\"false\\\" \\r\\n\\tdisabled=\\\"false\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\tfilter=\\\"STRING\\\" \\r\\n\\tmessage=\\\"Error! Please add default input value here.\\\" \\r\\n\\thint=\\\"Default Value Here\\\" \\r\\n\\/>\"', 1, '2015-05-20 08:49:57', '2015-08-25 21:15:22', 1, '', 390, '652e3d0d-b2de-4557-91b4-9c8cbf5ab0c0', '', '', '', '', ''),
(337, '', '', '', '', '', '', '', '', 64, '', 'CHAR', '', '', '', 'Method Name (AJAX)', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"method_name\\\" \\r\\n\\tlabel=\\\"Method Name\\\" \\r\\n\\tsize=\\\"40\\\" \\r\\n\\tmaxlength=\\\"150\\\" \\r\\n\\tdefault=\\\"getValueNow\\\" \\r\\n\\tdescription=\\\"Enter method name.\\\" \\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 method name here.\\\" \\r\\n\\thint=\\\"Method Name Here\\\" \\r\\n\\/>\"', 1, '2015-05-20 08:51:41', '2015-08-25 21:15:22', 1, '', 391, '4c478509-238f-416d-b722-f25d83a82dfe', '', '', '', '', ''),
(338, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Add Ajax Input', 'NOT NULL', '', 35, '\"<field\\n\\ttype=\\\"subform\\\"\\n\\tname=\\\"ajax_input\\\"\\n\\tlabel=\\\"Ajax Input\\\"\\n\\tlayout=\\\"joomla.form.field.subform.repeatable-table\\\"\\n\\tmultiple=\\\"true\\\"\\n\\tfields=\\\"339,334,336,335,337,2508,898\\\"\\n\\tdescription=\\\"\\\"\\n\\tdefault=\\\"\\\"\\n\\ticon=\\\"list\\\"\\n\\/>\"', 1, '2015-05-20 09:19:33', '2019-04-27 21:26:41', 4, '', 392, 'e407f6f1-e4e9-4f23-a8c7-8ad75e14a820', '', '', '', '', ''),
(339, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', 2, '', '', 'Value Name', 'NOT NULL', '', 24, '\"<field\\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"value_name\\\" \\r\\n\\tlabel=\\\"Value Name\\\" \\r\\n\\tsize=\\\"40\\\" \\r\\n\\tmaxlength=\\\"150\\\" \\r\\n\\tdescription=\\\"Enter Value Name Here\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\treadonly=\\\"false\\\" \\r\\n\\tdisabled=\\\"false\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\tfilter=\\\"STRING\\\" \\r\\n\\tmessage=\\\"Error! Please add value name here.\\\" \\r\\n\\thint=\\\"Value Name Here\\\" \\r\\n\\/>\"', 1, '2015-05-20 09:31:07', '2015-08-25 21:15:22', 1, '', 393, '9ee74269-0624-44d5-91ae-99805b838fa1', '', '', '', '', ''),
(340, '', '', '', '', '', '', '', '', '', '', 'CHAR', '', '', '', 'Note - Dynamic Values', 'NOT NULL', '', 14, '\"<field \\r\\n\\ttype=\\\"note\\\" \\r\\n\\tname=\\\"dynamic_values\\\" \\r\\n\\tlabel=\\\"Dynamic Values\\\" \\r\\n\\tdescription=\\\"Only use dynamic get values that is linked to the same component.\\\" \\r\\n\\theading=\\\"h4\\\" \\r\\n\\/>\"', 1, '2015-05-21 13:20:01', '2015-08-25 21:15:22', 3, '', 394, 'bd250dba-7443-4bef-a94d-5c11a742f799', '', '', '', '', ''),
(341, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'Admin View (dynamic - not required)', 'NOT NULL', '', 6, '\"<field \\r\\n\\ttype=\\\"adminviews\\\" \\r\\n\\tname=\\\"adminview\\\" \\r\\n\\tlabel=\\\"Admin View\\\" \\r\\n\\tdescription=\\\"Select an admin view\\\" \\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###_admin_view\\\" \\r\\n\\tcomponent=\\\"com_###component###\\\" \\r\\n\\tview=\\\"admin_view\\\" \\r\\n\\tviews=\\\"admin_views\\\" \\r\\n\\tvalue_field=\\\"system_name\\\" \\r\\n\\tkey_field=\\\"id\\\" \\r\\n\\ttype_php_1=\\\"$db = Factory::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[] = Html::_(\'select.option\', \'\', \'Select an option\');\\\" \\r\\n\\ttype_php_13=\\\"\\\\tforeach($items as $item)\\\" \\r\\n\\ttype_php_14=\\\"\\\\t{\\\" \\r\\n\\ttype_php_15=\\\"\\\\t\\\\t$options[] = Html::_(\'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-05-21 13:25:23', '2017-10-26 01:49:15', 7, '', 405, '13c70205-e63c-4a6c-bffb-096079a6bcd8', '', '', '', '', ''),
(342, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Get Type', 'NOT NULL', '', 11, '\"<field \\r\\n\\ttype=\\\"list\\\" \\r\\n\\tname=\\\"gettype\\\" \\r\\n\\tlabel=\\\"getType\\\" \\r\\n\\tdescription=\\\"Set the type of get method.\\\" \\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\tmultiple=\\\"false\\\" \\r\\n\\tfilter=\\\"INT\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\toption=\\\"1|getItem,2|getListQuery,3|getCustom,4|getCustoms\\\" \\r\\n\\tdefault=\\\"1\\\" \\r\\n\\/>\"', 1, '2015-05-21 22:04:46', '2015-08-25 21:15:22', 1, '', 414, '5377a931-8a17-4eed-92dd-8a8808408a5a', '', '', '', '', ''),
(343, '', '', '', '', '', '', '', '', 11, '', 'INT', '', '', '', 'View Table (main)', 'NOT NULL', '', 6, '\"<field \\r\\n\\ttype=\\\"adminviews\\\" \\r\\n\\tname=\\\"view_table_main\\\" \\r\\n\\tlabel=\\\"View Table (main)\\\" \\r\\n\\tdescription=\\\"Select a back-end view\\\" \\r\\n\\tmultiple=\\\"false\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\treadonly=\\\"\\\" \\r\\n\\tdisabled=\\\"\\\" \\r\\n\\textends=\\\"list\\\" \\r\\n\\ttable=\\\"#__###component###_admin_view\\\" \\r\\n\\tcomponent=\\\"com_###component###\\\" \\r\\n\\tview=\\\"admin_view\\\" \\r\\n\\tviews=\\\"admin_views\\\" \\r\\n\\tvalue_field=\\\"system_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 an option\');\\\" \\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-05-21 22:07:44', '2016-01-10 16:40:33', 5, '', 400, 'f398a2ca-122e-47ad-8e4e-3ee2ac30bf26', '', '', '', '', ''),
(351, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'DB Table (main)', 'NOT NULL', '', 6, '\"<field\\n\\ttype=\\\"dbtables\\\"\\n\\tname=\\\"db_table_main\\\"\\n\\tlabel=\\\"DB Table (main)\\\"\\n\\tdescription=\\\"Select a database table\\\"\\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.__Ly8gY2hlY2sgb3V0IHByaW1l\\\"\\n\\/>\"', 1, '2015-05-21 22:15:09', '2024-03-26 13:25:13', 8, '', 327, '4c744096-3d1c-406d-87f4-71169002e85f', '', '', '', '', ''),
(375, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'Add View Table (main)', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"add_view_table\\\" \\r\\n\\tlabel=\\\"Add View Table (main)\\\" \\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-21 23:01:59', '2015-08-25 21:15:22', 1, '', 474, '59821262-b8ef-490f-9b1e-efa7e93f858d', '', '', '', '', ''),
(376, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Jount View Table', 'NOT NULL', '', 35, '\"<field\\n\\ttype=\\\"subform\\\"\\n\\tname=\\\"join_view_table\\\"\\n\\tlabel=\\\"Join View Tables\\\"\\n\\tlayout=\\\"repeatablejcb\\\"\\n\\tmultiple=\\\"true\\\"\\n\\tfields=\\\"381,547,537,505,430,541,455,480\\\"\\n\\tdescription=\\\"Here you can add more tables to the query from the views of this component.\\\"\\n\\ticon=\\\"list\\\"\\n\\/>\"', 1, '2015-05-21 23:05:08', '2020-06-05 00:59:22', 6, '', 97, '79ab7f6c-a6b5-4bad-bcdd-c113d49db876', '', '', '', '', ''),
(378, '', '', '', '', '', '', '', '', 64, '', 'CHAR', '', '', '', 'View On Field (main)', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"view_on_field\\\" \\r\\n\\tlabel=\\\"On Field\\\" \\r\\n\\tsize=\\\"40\\\" \\r\\n\\tmaxlength=\\\"150\\\" \\r\\n\\tdescription=\\\"Name of the field\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\treadonly=\\\"false\\\" \\r\\n\\tdisabled=\\\"false\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\tfilter=\\\"CMD\\\" \\r\\n\\tmessage=\\\"Error! Please add field name here.\\\" \\r\\n\\thint=\\\"n.mainfield\\\" \\r\\n\\/>\"', -2, '2015-05-21 23:13:35', '2015-05-23 12:07:02', 1, '', 511, 'd82c9cfe-a1de-43c5-8266-aaae6751934f', '', '', '', '', ''),
(379, '', '', '', '', '', '', '', '', 64, '', 'CHAR', '', '', '', 'View Equal Field (main)', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"equal_field\\\" \\r\\n\\tlabel=\\\"Equal Field\\\" \\r\\n\\tsize=\\\"40\\\" \\r\\n\\tmaxlength=\\\"150\\\" \\r\\n\\tdescription=\\\"Name of the field\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\treadonly=\\\"false\\\" \\r\\n\\tdisabled=\\\"false\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\tfilter=\\\"CMD\\\" \\r\\n\\tmessage=\\\"Error! Please add field name here.\\\" \\r\\n\\thint=\\\"a.field\\\" \\r\\n\\/>\"', -2, '2015-05-21 23:14:04', '2015-05-23 12:07:37', 1, '', 96, '6125988d-386d-4406-9ebb-cde52e161cfb', '', '', '', '', ''),
(380, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'View Select Fields (main)', 'NOT NULL', '', 25, '\"<field \\r\\n\\ttype=\\\"textarea\\\" \\r\\n\\tname=\\\"view_selection\\\" \\r\\n\\tlabel=\\\"Selection\\\" \\r\\n\\trows=\\\"22\\\" \\r\\n\\tcols=\\\"30\\\"\\r\\n\\tdescription=\\\"Fields to be selected from table.\\\" \\r\\n\\tclass=\\\"text_area span12\\\" \\r\\n\\tfilter=\\\"HTML\\\" \\r\\n\\thint=\\\"a.field AS field\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\/>\"', 1, '2015-05-21 23:17:05', '2015-08-25 21:15:22', 1, '', 341, '14f4d49c-7e54-494e-b103-eaccb6428ee8', '', '', '', '', ''),
(381, '', '', '', '', '', '', '', '', 11, '', 'INT', '', '', '', 'View Table (join)', 'NOT NULL', '', 6, '\"<field \\r\\n\\ttype=\\\"adminviews\\\" \\r\\n\\tname=\\\"view_table\\\" \\r\\n\\tlabel=\\\"View Table\\\" \\r\\n\\tdescription=\\\"Select a back-end view\\\" \\r\\n\\tmultiple=\\\"false\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\treadonly=\\\"\\\" \\r\\n\\tdisabled=\\\"\\\" \\r\\n\\textends=\\\"list\\\" \\r\\n\\ttable=\\\"#__###component###_admin_view\\\" \\r\\n\\tcomponent=\\\"com_###component###\\\" \\r\\n\\tview=\\\"admin_view\\\" \\r\\n\\tviews=\\\"admin_views\\\" \\r\\n\\tvalue_field=\\\"system_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 an option\');\\\" \\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-05-22 12:06:57', '2017-10-26 01:56:11', 6, '', 395, 'b970f2d3-be9c-4194-baae-83f18df21ce4', '', '', '', '', ''),
(382, '', '', '', '', '', '', '', '', 11, '', 'INT', '', '', '', 'View Table (c)', 'NOT NULL', '', 6, '\"<field \\r\\n\\ttype=\\\"adminviews\\\" \\r\\n\\tname=\\\"view_table_c\\\" \\r\\n\\tlabel=\\\"View Table (c)\\\" \\r\\n\\tdescription=\\\"Select a back-end view\\\" \\r\\n\\tmultiple=\\\"false\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\treadonly=\\\"\\\" \\r\\n\\tdisabled=\\\"\\\" \\r\\n\\textends=\\\"list\\\" \\r\\n\\ttable=\\\"#__###component###_admin_view\\\" \\r\\n\\tcomponent=\\\"com_###component###\\\" \\r\\n\\tview=\\\"admin_view\\\" \\r\\n\\tviews=\\\"admin_views\\\" \\r\\n\\tvalue_field=\\\"name_single\\\" \\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(\'###TABLE###.###ID### as ###ID###, ###TABLE###.###TEXT### as ###CODE_TEXT###\');\\\" \\r\\n\\ttype_php_4=\\\"$query->from(\'###TABLE###\');\\\" \\r\\n\\ttype_php_5=\\\"$query->order(\'###TABLE###.###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$options[] = JHtml::_(\'select.option\', \'\', \'Select an option\');\\\" \\r\\n\\ttype_php_12=\\\"\\\\tforeach($items as $item)\\\" \\r\\n\\ttype_php_13=\\\"\\\\t{\\\" \\r\\n\\ttype_php_14=\\\"\\\\t\\\\t$options[] = JHtml::_(\'select.option\', $item->###ID###, $item->###CODE_TEXT###);\\\" \\r\\n\\ttype_php_15=\\\"\\\\t}\\\" \\r\\n\\ttype_php_16=\\\"}\\\" \\r\\n\\ttype_php_17=\\\"$options = array_merge(parent::getOptions(), $options);\\\" \\r\\n\\ttype_php_18=\\\"return $options;\\\" \\r\\n\\/>\"', -2, '2015-05-22 12:08:51', '2015-05-22 16:25:04', 1, '', 401, 'b54a6c40-1459-4498-809c-85632f136771', '', '', '', '', ''),
(383, '', '', '', '', '', '', '', '', 11, '', 'INT', '', '', '', 'View Table (d)', 'NOT NULL', '', 6, '\"<field \\r\\n\\ttype=\\\"adminviews\\\" \\r\\n\\tname=\\\"view_table_d\\\" \\r\\n\\tlabel=\\\"View Table (d)\\\" \\r\\n\\tdescription=\\\"Select a back-end view\\\" \\r\\n\\tmultiple=\\\"false\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\treadonly=\\\"\\\" \\r\\n\\tdisabled=\\\"\\\" \\r\\n\\textends=\\\"list\\\" \\r\\n\\ttable=\\\"#__###component###_admin_view\\\" \\r\\n\\tcomponent=\\\"com_###component###\\\" \\r\\n\\tview=\\\"admin_view\\\" \\r\\n\\tviews=\\\"admin_views\\\" \\r\\n\\tvalue_field=\\\"name_single\\\" \\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(\'###TABLE###.###ID### as ###ID###, ###TABLE###.###TEXT### as ###CODE_TEXT###\');\\\" \\r\\n\\ttype_php_4=\\\"$query->from(\'###TABLE###\');\\\" \\r\\n\\ttype_php_5=\\\"$query->order(\'###TABLE###.###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$options[] = JHtml::_(\'select.option\', \'\', \'Select an option\');\\\" \\r\\n\\ttype_php_12=\\\"\\\\tforeach($items as $item)\\\" \\r\\n\\ttype_php_13=\\\"\\\\t{\\\" \\r\\n\\ttype_php_14=\\\"\\\\t\\\\t$options[] = JHtml::_(\'select.option\', $item->###ID###, $item->###CODE_TEXT###);\\\" \\r\\n\\ttype_php_15=\\\"\\\\t}\\\" \\r\\n\\ttype_php_16=\\\"}\\\" \\r\\n\\ttype_php_17=\\\"$options = array_merge(parent::getOptions(), $options);\\\" \\r\\n\\ttype_php_18=\\\"return $options;\\\" \\r\\n\\/>\"', -2, '2015-05-22 12:09:05', '2015-05-22 16:25:08', 1, '', 397, 'cf33907d-f058-4f3b-adb8-f33a113b7041', '', '', '', '', ''),
(384, '', '', '', '', '', '', '', '', 11, '', 'INT', '', '', '', 'View Table (e)', 'NOT NULL', '', 6, '\"<field \\r\\n\\ttype=\\\"adminviews\\\" \\r\\n\\tname=\\\"view_table_e\\\" \\r\\n\\tlabel=\\\"View Table (e)\\\" \\r\\n\\tdescription=\\\"Select a back-end view\\\" \\r\\n\\tmultiple=\\\"false\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\treadonly=\\\"\\\" \\r\\n\\tdisabled=\\\"\\\" \\r\\n\\textends=\\\"list\\\" \\r\\n\\ttable=\\\"#__###component###_admin_view\\\" \\r\\n\\tcomponent=\\\"com_###component###\\\" \\r\\n\\tview=\\\"admin_view\\\" \\r\\n\\tviews=\\\"admin_views\\\" \\r\\n\\tvalue_field=\\\"name_single\\\" \\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(\'###TABLE###.###ID### as ###ID###, ###TABLE###.###TEXT### as ###CODE_TEXT###\');\\\" \\r\\n\\ttype_php_4=\\\"$query->from(\'###TABLE###\');\\\" \\r\\n\\ttype_php_5=\\\"$query->order(\'###TABLE###.###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$options[] = JHtml::_(\'select.option\', \'\', \'Select an option\');\\\" \\r\\n\\ttype_php_12=\\\"\\\\tforeach($items as $item)\\\" \\r\\n\\ttype_php_13=\\\"\\\\t{\\\" \\r\\n\\ttype_php_14=\\\"\\\\t\\\\t$options[] = JHtml::_(\'select.option\', $item->###ID###, $item->###CODE_TEXT###);\\\" \\r\\n\\ttype_php_15=\\\"\\\\t}\\\" \\r\\n\\ttype_php_16=\\\"}\\\" \\r\\n\\ttype_php_17=\\\"$options = array_merge(parent::getOptions(), $options);\\\" \\r\\n\\ttype_php_18=\\\"return $options;\\\" \\r\\n\\/>\"', -2, '2015-05-22 12:09:18', '2015-05-22 16:25:11', 1, '', 407, 'dcac6796-5701-4a02-a555-784cacef17a6', '', '', '', '', ''),
(385, '', '', '', '', '', '', '', '', 11, '', 'INT', '', '', '', 'View Table (f)', 'NOT NULL', '', 6, '\"<field \\r\\n\\ttype=\\\"adminviews\\\" \\r\\n\\tname=\\\"view_table_f\\\" \\r\\n\\tlabel=\\\"View Table (f)\\\" \\r\\n\\tdescription=\\\"Select a back-end view\\\" \\r\\n\\tmultiple=\\\"false\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\treadonly=\\\"\\\" \\r\\n\\tdisabled=\\\"\\\" \\r\\n\\textends=\\\"list\\\" \\r\\n\\ttable=\\\"#__###component###_admin_view\\\" \\r\\n\\tcomponent=\\\"com_###component###\\\" \\r\\n\\tview=\\\"admin_view\\\" \\r\\n\\tviews=\\\"admin_views\\\" \\r\\n\\tvalue_field=\\\"name_single\\\" \\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(\'###TABLE###.###ID### as ###ID###, ###TABLE###.###TEXT### as ###CODE_TEXT###\');\\\" \\r\\n\\ttype_php_4=\\\"$query->from(\'###TABLE###\');\\\" \\r\\n\\ttype_php_5=\\\"$query->order(\'###TABLE###.###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$options[] = JHtml::_(\'select.option\', \'\', \'Select an option\');\\\" \\r\\n\\ttype_php_12=\\\"\\\\tforeach($items as $item)\\\" \\r\\n\\ttype_php_13=\\\"\\\\t{\\\" \\r\\n\\ttype_php_14=\\\"\\\\t\\\\t$options[] = JHtml::_(\'select.option\', $item->###ID###, $item->###CODE_TEXT###);\\\" \\r\\n\\ttype_php_15=\\\"\\\\t}\\\" \\r\\n\\ttype_php_16=\\\"}\\\" \\r\\n\\ttype_php_17=\\\"$options = array_merge(parent::getOptions(), $options);\\\" \\r\\n\\ttype_php_18=\\\"return $options;\\\" \\r\\n\\/>\"', -2, '2015-05-22 12:09:35', '2015-05-22 16:25:14', 1, '', 409, '5d212e39-41bc-47a1-a9b5-daf4fba4732d', '', '', '', '', ''),
(386, '', '', '', '', '', '', '', '', 11, '', 'INT', '', '', '', 'View Table (g)', 'NOT NULL', '', 6, '\"<field \\r\\n\\ttype=\\\"adminviews\\\" \\r\\n\\tname=\\\"view_table_g\\\" \\r\\n\\tlabel=\\\"View Table (g)\\\" \\r\\n\\tdescription=\\\"Select a back-end view\\\" \\r\\n\\tmultiple=\\\"false\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\treadonly=\\\"\\\" \\r\\n\\tdisabled=\\\"\\\" \\r\\n\\textends=\\\"list\\\" \\r\\n\\ttable=\\\"#__###component###_admin_view\\\" \\r\\n\\tcomponent=\\\"com_###component###\\\" \\r\\n\\tview=\\\"admin_view\\\" \\r\\n\\tviews=\\\"admin_views\\\" \\r\\n\\tvalue_field=\\\"name_single\\\" \\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(\'###TABLE###.###ID### as ###ID###, ###TABLE###.###TEXT### as ###CODE_TEXT###\');\\\" \\r\\n\\ttype_php_4=\\\"$query->from(\'###TABLE###\');\\\" \\r\\n\\ttype_php_5=\\\"$query->order(\'###TABLE###.###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$options[] = JHtml::_(\'select.option\', \'\', \'Select an option\');\\\" \\r\\n\\ttype_php_12=\\\"\\\\tforeach($items as $item)\\\" \\r\\n\\ttype_php_13=\\\"\\\\t{\\\" \\r\\n\\ttype_php_14=\\\"\\\\t\\\\t$options[] = JHtml::_(\'select.option\', $item->###ID###, $item->###CODE_TEXT###);\\\" \\r\\n\\ttype_php_15=\\\"\\\\t}\\\" \\r\\n\\ttype_php_16=\\\"}\\\" \\r\\n\\ttype_php_17=\\\"$options = array_merge(parent::getOptions(), $options);\\\" \\r\\n\\ttype_php_18=\\\"return $options;\\\" \\r\\n\\/>\"', -2, '2015-05-22 12:09:49', '2015-05-22 16:25:18', 1, '', 411, 'f784baa0-9862-4eed-9fde-1c3f739b553f', '', '', '', '', ''),
(387, '', '', '', '', '', '', '', '', 11, '', 'INT', '', '', '', 'View Table (h)', 'NOT NULL', '', 6, '\"<field \\r\\n\\ttype=\\\"adminviews\\\" \\r\\n\\tname=\\\"view_table_h\\\" \\r\\n\\tlabel=\\\"View Table (h)\\\" \\r\\n\\tdescription=\\\"Select a back-end view\\\" \\r\\n\\tmultiple=\\\"false\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\treadonly=\\\"\\\" \\r\\n\\tdisabled=\\\"\\\" \\r\\n\\textends=\\\"list\\\" \\r\\n\\ttable=\\\"#__###component###_admin_view\\\" \\r\\n\\tcomponent=\\\"com_###component###\\\" \\r\\n\\tview=\\\"admin_view\\\" \\r\\n\\tviews=\\\"admin_views\\\" \\r\\n\\tvalue_field=\\\"name_single\\\" \\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(\'###TABLE###.###ID### as ###ID###, ###TABLE###.###TEXT### as ###CODE_TEXT###\');\\\" \\r\\n\\ttype_php_4=\\\"$query->from(\'###TABLE###\');\\\" \\r\\n\\ttype_php_5=\\\"$query->order(\'###TABLE###.###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$options[] = JHtml::_(\'select.option\', \'\', \'Select an option\');\\\" \\r\\n\\ttype_php_12=\\\"\\\\tforeach($items as $item)\\\" \\r\\n\\ttype_php_13=\\\"\\\\t{\\\" \\r\\n\\ttype_php_14=\\\"\\\\t\\\\t$options[] = JHtml::_(\'select.option\', $item->###ID###, $item->###CODE_TEXT###);\\\" \\r\\n\\ttype_php_15=\\\"\\\\t}\\\" \\r\\n\\ttype_php_16=\\\"}\\\" \\r\\n\\ttype_php_17=\\\"$options = array_merge(parent::getOptions(), $options);\\\" \\r\\n\\ttype_php_18=\\\"return $options;\\\" \\r\\n\\/>\"', -2, '2015-05-22 12:10:03', '2015-05-22 16:25:20', 1, '', 412, '0b934802-144c-49cb-ac8c-30ee237ca6ad', '', '', '', '', ''),
(388, '', '', '', '', '', '', '', '', 11, '', 'INT', '', '', '', 'View Table (i)', 'NOT NULL', '', 6, '\"<field \\r\\n\\ttype=\\\"adminviews\\\" \\r\\n\\tname=\\\"view_table_i\\\" \\r\\n\\tlabel=\\\"View Table (i)\\\" \\r\\n\\tdescription=\\\"Select a back-end view\\\" \\r\\n\\tmultiple=\\\"false\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\treadonly=\\\"\\\" \\r\\n\\tdisabled=\\\"\\\" \\r\\n\\textends=\\\"list\\\" \\r\\n\\ttable=\\\"#__###component###_admin_view\\\" \\r\\n\\tcomponent=\\\"com_###component###\\\" \\r\\n\\tview=\\\"admin_view\\\" \\r\\n\\tviews=\\\"admin_views\\\" \\r\\n\\tvalue_field=\\\"name_single\\\" \\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(\'###TABLE###.###ID### as ###ID###, ###TABLE###.###TEXT### as ###CODE_TEXT###\');\\\" \\r\\n\\ttype_php_4=\\\"$query->from(\'###TABLE###\');\\\" \\r\\n\\ttype_php_5=\\\"$query->order(\'###TABLE###.###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$options[] = JHtml::_(\'select.option\', \'\', \'Select an option\');\\\" \\r\\n\\ttype_php_12=\\\"\\\\tforeach($items as $item)\\\" \\r\\n\\ttype_php_13=\\\"\\\\t{\\\" \\r\\n\\ttype_php_14=\\\"\\\\t\\\\t$options[] = JHtml::_(\'select.option\', $item->###ID###, $item->###CODE_TEXT###);\\\" \\r\\n\\ttype_php_15=\\\"\\\\t}\\\" \\r\\n\\ttype_php_16=\\\"}\\\" \\r\\n\\ttype_php_17=\\\"$options = array_merge(parent::getOptions(), $options);\\\" \\r\\n\\ttype_php_18=\\\"return $options;\\\" \\r\\n\\/>\"', -2, '2015-05-22 12:10:17', '2015-05-22 16:25:24', 1, '', 413, 'ef1deb42-7c0d-4580-be26-66cf4ac3fdcb', '', '', '', '', ''),
(389, '', '', '', '', '', '', '', '', 11, '', 'INT', '', '', '', 'View Table (j)', 'NOT NULL', '', 6, '\"<field \\r\\n\\ttype=\\\"adminviews\\\" \\r\\n\\tname=\\\"view_table_j\\\" \\r\\n\\tlabel=\\\"View Table (j)\\\" \\r\\n\\tdescription=\\\"Select a back-end view\\\" \\r\\n\\tmultiple=\\\"false\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\treadonly=\\\"\\\" \\r\\n\\tdisabled=\\\"\\\" \\r\\n\\textends=\\\"list\\\" \\r\\n\\ttable=\\\"#__###component###_admin_view\\\" \\r\\n\\tcomponent=\\\"com_###component###\\\" \\r\\n\\tview=\\\"admin_view\\\" \\r\\n\\tviews=\\\"admin_views\\\" \\r\\n\\tvalue_field=\\\"name_single\\\" \\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(\'###TABLE###.###ID### as ###ID###, ###TABLE###.###TEXT### as ###CODE_TEXT###\');\\\" \\r\\n\\ttype_php_4=\\\"$query->from(\'###TABLE###\');\\\" \\r\\n\\ttype_php_5=\\\"$query->order(\'###TABLE###.###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$options[] = JHtml::_(\'select.option\', \'\', \'Select an option\');\\\" \\r\\n\\ttype_php_12=\\\"\\\\tforeach($items as $item)\\\" \\r\\n\\ttype_php_13=\\\"\\\\t{\\\" \\r\\n\\ttype_php_14=\\\"\\\\t\\\\t$options[] = JHtml::_(\'select.option\', $item->###ID###, $item->###CODE_TEXT###);\\\" \\r\\n\\ttype_php_15=\\\"\\\\t}\\\" \\r\\n\\ttype_php_16=\\\"}\\\" \\r\\n\\ttype_php_17=\\\"$options = array_merge(parent::getOptions(), $options);\\\" \\r\\n\\ttype_php_18=\\\"return $options;\\\" \\r\\n\\/>\"', -2, '2015-05-22 12:10:33', '2015-05-22 16:25:27', 1, '', 398, 'f215957d-a07d-4895-b350-5be261b3d228', '', '', '', '', ''),
(390, '', '', '', '', '', '', '', '', 11, '', 'INT', '', '', '', 'View Table (k)', 'NOT NULL', '', 6, '\"<field \\r\\n\\ttype=\\\"adminviews\\\" \\r\\n\\tname=\\\"view_table_k\\\" \\r\\n\\tlabel=\\\"View Table (k)\\\" \\r\\n\\tdescription=\\\"Select a back-end view\\\" \\r\\n\\tmultiple=\\\"false\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\treadonly=\\\"\\\" \\r\\n\\tdisabled=\\\"\\\" \\r\\n\\textends=\\\"list\\\" \\r\\n\\ttable=\\\"#__###component###_admin_view\\\" \\r\\n\\tcomponent=\\\"com_###component###\\\" \\r\\n\\tview=\\\"admin_view\\\" \\r\\n\\tviews=\\\"admin_views\\\" \\r\\n\\tvalue_field=\\\"name_single\\\" \\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(\'###TABLE###.###ID### as ###ID###, ###TABLE###.###TEXT### as ###CODE_TEXT###\');\\\" \\r\\n\\ttype_php_4=\\\"$query->from(\'###TABLE###\');\\\" \\r\\n\\ttype_php_5=\\\"$query->order(\'###TABLE###.###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$options[] = JHtml::_(\'select.option\', \'\', \'Select an option\');\\\" \\r\\n\\ttype_php_12=\\\"\\\\tforeach($items as $item)\\\" \\r\\n\\ttype_php_13=\\\"\\\\t{\\\" \\r\\n\\ttype_php_14=\\\"\\\\t\\\\t$options[] = JHtml::_(\'select.option\', $item->###ID###, $item->###CODE_TEXT###);\\\" \\r\\n\\ttype_php_15=\\\"\\\\t}\\\" \\r\\n\\ttype_php_16=\\\"}\\\" \\r\\n\\ttype_php_17=\\\"$options = array_merge(parent::getOptions(), $options);\\\" \\r\\n\\ttype_php_18=\\\"return $options;\\\" \\r\\n\\/>\"', -2, '2015-05-22 12:10:46', '2015-05-22 16:25:32', 1, '', 408, 'f1f1bd6c-10d3-426f-8acd-9150eac0daa6', '', '', '', '', ''),
(391, '', '', '', '', '', '', '', '', 11, '', 'INT', '', '', '', 'View Table (l)', 'NOT NULL', '', 6, '\"<field \\r\\n\\ttype=\\\"adminviews\\\" \\r\\n\\tname=\\\"view_table_l\\\" \\r\\n\\tlabel=\\\"View Table (l)\\\" \\r\\n\\tdescription=\\\"Select a back-end view\\\" \\r\\n\\tmultiple=\\\"false\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\treadonly=\\\"\\\" \\r\\n\\tdisabled=\\\"\\\" \\r\\n\\textends=\\\"list\\\" \\r\\n\\ttable=\\\"#__###component###_admin_view\\\" \\r\\n\\tcomponent=\\\"com_###component###\\\" \\r\\n\\tview=\\\"admin_view\\\" \\r\\n\\tviews=\\\"admin_views\\\" \\r\\n\\tvalue_field=\\\"name_single\\\" \\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(\'###TABLE###.###ID### as ###ID###, ###TABLE###.###TEXT### as ###CODE_TEXT###\');\\\" \\r\\n\\ttype_php_4=\\\"$query->from(\'###TABLE###\');\\\" \\r\\n\\ttype_php_5=\\\"$query->order(\'###TABLE###.###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$options[] = JHtml::_(\'select.option\', \'\', \'Select an option\');\\\" \\r\\n\\ttype_php_12=\\\"\\\\tforeach($items as $item)\\\" \\r\\n\\ttype_php_13=\\\"\\\\t{\\\" \\r\\n\\ttype_php_14=\\\"\\\\t\\\\t$options[] = JHtml::_(\'select.option\', $item->###ID###, $item->###CODE_TEXT###);\\\" \\r\\n\\ttype_php_15=\\\"\\\\t}\\\" \\r\\n\\ttype_php_16=\\\"}\\\" \\r\\n\\ttype_php_17=\\\"$options = array_merge(parent::getOptions(), $options);\\\" \\r\\n\\ttype_php_18=\\\"return $options;\\\" \\r\\n\\/>\"', -2, '2015-05-22 12:11:00', '2015-05-22 16:25:36', 1, '', 396, '386b3ea6-1f7d-4900-89d7-245d2ac8b05a', '', '', '', '', ''),
(392, '', '', '', '', '', '', '', '', 11, '', 'INT', '', '', '', 'View Table (m)', 'NOT NULL', '', 6, '\"<field \\r\\n\\ttype=\\\"adminviews\\\" \\r\\n\\tname=\\\"view_table_m\\\" \\r\\n\\tlabel=\\\"View Table (m)\\\" \\r\\n\\tdescription=\\\"Select a back-end view\\\" \\r\\n\\tmultiple=\\\"false\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\treadonly=\\\"\\\" \\r\\n\\tdisabled=\\\"\\\" \\r\\n\\textends=\\\"list\\\" \\r\\n\\ttable=\\\"#__###component###_admin_view\\\" \\r\\n\\tcomponent=\\\"com_###component###\\\" \\r\\n\\tview=\\\"admin_view\\\" \\r\\n\\tviews=\\\"admin_views\\\" \\r\\n\\tvalue_field=\\\"name_single\\\" \\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(\'###TABLE###.###ID### as ###ID###, ###TABLE###.###TEXT### as ###CODE_TEXT###\');\\\" \\r\\n\\ttype_php_4=\\\"$query->from(\'###TABLE###\');\\\" \\r\\n\\ttype_php_5=\\\"$query->order(\'###TABLE###.###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$options[] = JHtml::_(\'select.option\', \'\', \'Select an option\');\\\" \\r\\n\\ttype_php_12=\\\"\\\\tforeach($items as $item)\\\" \\r\\n\\ttype_php_13=\\\"\\\\t{\\\" \\r\\n\\ttype_php_14=\\\"\\\\t\\\\t$options[] = JHtml::_(\'select.option\', $item->###ID###, $item->###CODE_TEXT###);\\\" \\r\\n\\ttype_php_15=\\\"\\\\t}\\\" \\r\\n\\ttype_php_16=\\\"}\\\" \\r\\n\\ttype_php_17=\\\"$options = array_merge(parent::getOptions(), $options);\\\" \\r\\n\\ttype_php_18=\\\"return $options;\\\" \\r\\n\\/>\"', -2, '2015-05-22 12:11:12', '2015-05-22 16:25:39', 1, '', 399, 'ef38bc20-23a0-469d-8b18-8119b1021b42', '', '', '', '', ''),
(393, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'DB Table (join)', 'NOT NULL', '', 6, '\"<field\\n\\ttype=\\\"dbtables\\\"\\n\\tname=\\\"db_table\\\"\\n\\tlabel=\\\"DB Table\\\"\\n\\tdescription=\\\"Select a database table\\\"\\n\\tclass=\\\"list_class\\\"\\n\\tmultiple=\\\"false\\\"\\n\\trequired=\\\"true\\\"\\n\\textends=\\\"list\\\"\\n\\ttype_php_1=\\\"__.o0=base64=Oo.__Ly8gY2hlY2sgb3V0IHByaW1l\\\"\\n\\/>\"', 1, '2015-05-22 12:11:47', '2018-10-29 16:15:14', 3, '', 325, 'e7a79ab6-3097-44a5-9699-0a14ceaa47c2', '', '', '', '', ''),
(394, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'DB Table (p)', 'NOT NULL', '', 6, '\"<field \\r\\n\\ttype=\\\"dbtables\\\" \\r\\n\\tname=\\\"db_table_p\\\" \\r\\n\\tlabel=\\\"DB Table (p)\\\" \\r\\n\\tdescription=\\\"Select a database table\\\" \\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\tmultiple=\\\"false\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\treadonly=\\\"\\\" \\r\\n\\tdisabled=\\\"\\\" \\r\\n\\textends=\\\"list\\\" \\r\\n\\ttable=\\\"\\\" \\r\\n\\tcomponent=\\\" \\r\\n\\tview=\\\"\\\" \\r\\n\\tviews=\\\"\\\" \\r\\n\\tvalue_field=\\\"\\\" \\r\\n\\tkey_field=\\\"\\\" \\r\\n\\ttype_php_1=\\\"$db = JFactory::getDBO();\\\" \\r\\n\\ttype_php_2=\\\"$tables= $db->getTableList();\\\" \\r\\n\\ttype_php_3=\\\"$config = JFactory::getConfig();\\\" \\r\\n\\ttype_php_4=\\\"$options = array();\\\" \\r\\n\\ttype_php_5=\\\"$db = JFactory::getDBO(); $options[] = JHtml::_(\'select.option\', \'\', \'Select an option\');\\\" \\r\\n\\ttype_php_6=\\\"for ($i=0; $i < count($tables); $i++)\\\" \\r\\n\\ttype_php_7=\\\"{\\\" \\r\\n\\ttype_php_8=\\\"\\\\t\\/\\/only tables with primary key\\\" \\r\\n\\ttype_php_9=\\\"\\\\t$db->setQuery(\'SHOW FIELDS FROM `\'.$tables[$i].\'` WHERE LOWER( `Key` ) = \\\\\'pri\\\\\'\');\\\" \\r\\n\\ttype_php_10=\\\"\\\\tif ($db->loadResult())\\\" \\r\\n\\ttype_php_11=\\\"\\\\t{\\\" \\r\\n\\ttype_php_12=\\\"\\\\t\\\\t$dbprefix = version_compare(JVERSION,\'3.0\',\'lt\') ? $config->getValue(\'config.dbprefix\') : $config->get(\'dbprefix\'); $key = $i+1;\\\" \\r\\n\\ttype_php_13=\\\"\\\\t\\\\t$options[$key] = new stdClass;\\\" \\r\\n\\ttype_php_14=\\\"\\\\t\\\\t$options[$key]->value = str_replace($dbprefix, \'\', $tables[$i]);\\\" \\r\\n\\ttype_php_15=\\\"\\\\t\\\\t$options[$key]->text = $tables[$i];\\\" \\r\\n\\ttype_php_16=\\\"\\\\t}\\\" \\r\\n\\ttype_php_17=\\\"}\\\" \\r\\n\\ttype_php_18=\\\"return $options;\\\" \\r\\n\\/>\"', -2, '2015-05-22 12:12:00', '2015-05-22 12:11:37', 1, '', 317, '9c960f4d-03b4-4a7f-9d0a-aab70f74e5f4', '', '', '', '', ''),
(395, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'DB Table (q)', 'NOT NULL', '', 6, '\"<field \\r\\n\\ttype=\\\"dbtables\\\" \\r\\n\\tname=\\\"db_table_q\\\" \\r\\n\\tlabel=\\\"DB Table (q)\\\" \\r\\n\\tdescription=\\\"Select a database table\\\" \\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\tmultiple=\\\"false\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\treadonly=\\\"\\\" \\r\\n\\tdisabled=\\\"\\\" \\r\\n\\textends=\\\"list\\\" \\r\\n\\ttable=\\\"\\\" \\r\\n\\tcomponent=\\\" \\r\\n\\tview=\\\"\\\" \\r\\n\\tviews=\\\"\\\" \\r\\n\\tvalue_field=\\\"\\\" \\r\\n\\tkey_field=\\\"\\\" \\r\\n\\ttype_php_1=\\\"$db = JFactory::getDBO();\\\" \\r\\n\\ttype_php_2=\\\"$tables= $db->getTableList();\\\" \\r\\n\\ttype_php_3=\\\"$config = JFactory::getConfig();\\\" \\r\\n\\ttype_php_4=\\\"$options = array();\\\" \\r\\n\\ttype_php_5=\\\"$db = JFactory::getDBO(); $options[] = JHtml::_(\'select.option\', \'\', \'Select an option\');\\\" \\r\\n\\ttype_php_6=\\\"for ($i=0; $i < count($tables); $i++)\\\" \\r\\n\\ttype_php_7=\\\"{\\\" \\r\\n\\ttype_php_8=\\\"\\\\t\\/\\/only tables with primary key\\\" \\r\\n\\ttype_php_9=\\\"\\\\t$db->setQuery(\'SHOW FIELDS FROM `\'.$tables[$i].\'` WHERE LOWER( `Key` ) = \\\\\'pri\\\\\'\');\\\" \\r\\n\\ttype_php_10=\\\"\\\\tif ($db->loadResult())\\\" \\r\\n\\ttype_php_11=\\\"\\\\t{\\\" \\r\\n\\ttype_php_12=\\\"\\\\t\\\\t$dbprefix = version_compare(JVERSION,\'3.0\',\'lt\') ? $config->getValue(\'config.dbprefix\') : $config->get(\'dbprefix\'); $key = $i+1;\\\" \\r\\n\\ttype_php_13=\\\"\\\\t\\\\t$options[$key] = new stdClass;\\\" \\r\\n\\ttype_php_14=\\\"\\\\t\\\\t$options[$key]->value = str_replace($dbprefix, \'\', $tables[$i]);\\\" \\r\\n\\ttype_php_15=\\\"\\\\t\\\\t$options[$key]->text = $tables[$i];\\\" \\r\\n\\ttype_php_16=\\\"\\\\t}\\\" \\r\\n\\ttype_php_17=\\\"}\\\" \\r\\n\\ttype_php_18=\\\"return $options;\\\" \\r\\n\\/>\"', -2, '2015-05-22 12:12:13', '2015-05-22 12:11:37', 1, '', 328, '74486755-963e-4197-a2d8-d9e3cd7c78f0', '', '', '', '', ''),
(396, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'DB Table (r)', 'NOT NULL', '', 6, '\"<field \\r\\n\\ttype=\\\"dbtables\\\" \\r\\n\\tname=\\\"db_table_r\\\" \\r\\n\\tlabel=\\\"DB Table (r)\\\" \\r\\n\\tdescription=\\\"Select a database table\\\" \\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\tmultiple=\\\"false\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\treadonly=\\\"\\\" \\r\\n\\tdisabled=\\\"\\\" \\r\\n\\textends=\\\"list\\\" \\r\\n\\ttable=\\\"\\\" \\r\\n\\tcomponent=\\\" \\r\\n\\tview=\\\"\\\" \\r\\n\\tviews=\\\"\\\" \\r\\n\\tvalue_field=\\\"\\\" \\r\\n\\tkey_field=\\\"\\\" \\r\\n\\ttype_php_1=\\\"$db = JFactory::getDBO();\\\" \\r\\n\\ttype_php_2=\\\"$tables= $db->getTableList();\\\" \\r\\n\\ttype_php_3=\\\"$config = JFactory::getConfig();\\\" \\r\\n\\ttype_php_4=\\\"$options = array();\\\" \\r\\n\\ttype_php_5=\\\"$db = JFactory::getDBO(); $options[] = JHtml::_(\'select.option\', \'\', \'Select an option\');\\\" \\r\\n\\ttype_php_6=\\\"for ($i=0; $i < count($tables); $i++)\\\" \\r\\n\\ttype_php_7=\\\"{\\\" \\r\\n\\ttype_php_8=\\\"\\\\t\\/\\/only tables with primary key\\\" \\r\\n\\ttype_php_9=\\\"\\\\t$db->setQuery(\'SHOW FIELDS FROM `\'.$tables[$i].\'` WHERE LOWER( `Key` ) = \\\\\'pri\\\\\'\');\\\" \\r\\n\\ttype_php_10=\\\"\\\\tif ($db->loadResult())\\\" \\r\\n\\ttype_php_11=\\\"\\\\t{\\\" \\r\\n\\ttype_php_12=\\\"\\\\t\\\\t$dbprefix = version_compare(JVERSION,\'3.0\',\'lt\') ? $config->getValue(\'config.dbprefix\') : $config->get(\'dbprefix\'); $key = $i+1;\\\" \\r\\n\\ttype_php_13=\\\"\\\\t\\\\t$options[$key] = new stdClass;\\\" \\r\\n\\ttype_php_14=\\\"\\\\t\\\\t$options[$key]->value = str_replace($dbprefix, \'\', $tables[$i]);\\\" \\r\\n\\ttype_php_15=\\\"\\\\t\\\\t$options[$key]->text = $tables[$i];\\\" \\r\\n\\ttype_php_16=\\\"\\\\t}\\\" \\r\\n\\ttype_php_17=\\\"}\\\" \\r\\n\\ttype_php_18=\\\"return $options;\\\" \\r\\n\\/>\"', -2, '2015-05-22 12:12:25', '2015-05-22 12:11:37', 1, '', 326, '854aaa26-d1f2-4730-96f0-2734686790fe', '', '', '', '', ''),
(397, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'DB Table (s)', 'NOT NULL', '', 6, '\"<field \\r\\n\\ttype=\\\"dbtables\\\" \\r\\n\\tname=\\\"db_table_s\\\" \\r\\n\\tlabel=\\\"DB Table (s)\\\" \\r\\n\\tdescription=\\\"Select a database table\\\" \\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\tmultiple=\\\"false\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\treadonly=\\\"\\\" \\r\\n\\tdisabled=\\\"\\\" \\r\\n\\textends=\\\"list\\\" \\r\\n\\ttable=\\\"\\\" \\r\\n\\tcomponent=\\\" \\r\\n\\tview=\\\"\\\" \\r\\n\\tviews=\\\"\\\" \\r\\n\\tvalue_field=\\\"\\\" \\r\\n\\tkey_field=\\\"\\\" \\r\\n\\ttype_php_1=\\\"$db = JFactory::getDBO();\\\" \\r\\n\\ttype_php_2=\\\"$tables= $db->getTableList();\\\" \\r\\n\\ttype_php_3=\\\"$config = JFactory::getConfig();\\\" \\r\\n\\ttype_php_4=\\\"$options = array();\\\" \\r\\n\\ttype_php_5=\\\"$db = JFactory::getDBO(); $options[] = JHtml::_(\'select.option\', \'\', \'Select an option\');\\\" \\r\\n\\ttype_php_6=\\\"for ($i=0; $i < count($tables); $i++)\\\" \\r\\n\\ttype_php_7=\\\"{\\\" \\r\\n\\ttype_php_8=\\\"\\\\t\\/\\/only tables with primary key\\\" \\r\\n\\ttype_php_9=\\\"\\\\t$db->setQuery(\'SHOW FIELDS FROM `\'.$tables[$i].\'` WHERE LOWER( `Key` ) = \\\\\'pri\\\\\'\');\\\" \\r\\n\\ttype_php_10=\\\"\\\\tif ($db->loadResult())\\\" \\r\\n\\ttype_php_11=\\\"\\\\t{\\\" \\r\\n\\ttype_php_12=\\\"\\\\t\\\\t$dbprefix = version_compare(JVERSION,\'3.0\',\'lt\') ? $config->getValue(\'config.dbprefix\') : $config->get(\'dbprefix\'); $key = $i+1;\\\" \\r\\n\\ttype_php_13=\\\"\\\\t\\\\t$options[$key] = new stdClass;\\\" \\r\\n\\ttype_php_14=\\\"\\\\t\\\\t$options[$key]->value = str_replace($dbprefix, \'\', $tables[$i]);\\\" \\r\\n\\ttype_php_15=\\\"\\\\t\\\\t$options[$key]->text = $tables[$i];\\\" \\r\\n\\ttype_php_16=\\\"\\\\t}\\\" \\r\\n\\ttype_php_17=\\\"}\\\" \\r\\n\\ttype_php_18=\\\"return $options;\\\" \\r\\n\\/>\"', -2, '2015-05-22 12:12:38', '2015-05-22 12:11:37', 1, '', 330, '527e2a8c-c5e5-4c9a-862f-3b15a3f8da63', '', '', '', '', ''),
(398, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'DB Table (t)', 'NOT NULL', '', 6, '\"<field \\r\\n\\ttype=\\\"dbtables\\\" \\r\\n\\tname=\\\"db_table_t\\\" \\r\\n\\tlabel=\\\"DB Table (t)\\\" \\r\\n\\tdescription=\\\"Select a database table\\\" \\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\tmultiple=\\\"false\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\treadonly=\\\"\\\" \\r\\n\\tdisabled=\\\"\\\" \\r\\n\\textends=\\\"list\\\" \\r\\n\\ttable=\\\"\\\" \\r\\n\\tcomponent=\\\" \\r\\n\\tview=\\\"\\\" \\r\\n\\tviews=\\\"\\\" \\r\\n\\tvalue_field=\\\"\\\" \\r\\n\\tkey_field=\\\"\\\" \\r\\n\\ttype_php_1=\\\"$db = JFactory::getDBO();\\\" \\r\\n\\ttype_php_2=\\\"$tables= $db->getTableList();\\\" \\r\\n\\ttype_php_3=\\\"$config = JFactory::getConfig();\\\" \\r\\n\\ttype_php_4=\\\"$options = array();\\\" \\r\\n\\ttype_php_5=\\\"$db = JFactory::getDBO(); $options[] = JHtml::_(\'select.option\', \'\', \'Select an option\');\\\" \\r\\n\\ttype_php_6=\\\"for ($i=0; $i < count($tables); $i++)\\\" \\r\\n\\ttype_php_7=\\\"{\\\" \\r\\n\\ttype_php_8=\\\"\\\\t\\/\\/only tables with primary key\\\" \\r\\n\\ttype_php_9=\\\"\\\\t$db->setQuery(\'SHOW FIELDS FROM `\'.$tables[$i].\'` WHERE LOWER( `Key` ) = \\\\\'pri\\\\\'\');\\\" \\r\\n\\ttype_php_10=\\\"\\\\tif ($db->loadResult())\\\" \\r\\n\\ttype_php_11=\\\"\\\\t{\\\" \\r\\n\\ttype_php_12=\\\"\\\\t\\\\t$dbprefix = version_compare(JVERSION,\'3.0\',\'lt\') ? $config->getValue(\'config.dbprefix\') : $config->get(\'dbprefix\'); $key = $i+1;\\\" \\r\\n\\ttype_php_13=\\\"\\\\t\\\\t$options[$key] = new stdClass;\\\" \\r\\n\\ttype_php_14=\\\"\\\\t\\\\t$options[$key]->value = str_replace($dbprefix, \'\', $tables[$i]);\\\" \\r\\n\\ttype_php_15=\\\"\\\\t\\\\t$options[$key]->text = $tables[$i];\\\" \\r\\n\\ttype_php_16=\\\"\\\\t}\\\" \\r\\n\\ttype_php_17=\\\"}\\\" \\r\\n\\ttype_php_18=\\\"return $options;\\\" \\r\\n\\/>\"', -2, '2015-05-22 12:12:49', '2015-05-22 12:11:37', 1, '', 324, '5dd13a43-d0db-40bd-8dc6-3e847879ff24', '', '', '', '', ''),
(399, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'DB Table (u)', 'NOT NULL', '', 6, '\"<field \\r\\n\\ttype=\\\"dbtables\\\" \\r\\n\\tname=\\\"db_table_u\\\" \\r\\n\\tlabel=\\\"DB Table (u)\\\" \\r\\n\\tdescription=\\\"Select a database table\\\" \\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\tmultiple=\\\"false\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\treadonly=\\\"\\\" \\r\\n\\tdisabled=\\\"\\\" \\r\\n\\textends=\\\"list\\\" \\r\\n\\ttable=\\\"\\\" \\r\\n\\tcomponent=\\\" \\r\\n\\tview=\\\"\\\" \\r\\n\\tviews=\\\"\\\" \\r\\n\\tvalue_field=\\\"\\\" \\r\\n\\tkey_field=\\\"\\\" \\r\\n\\ttype_php_1=\\\"$db = JFactory::getDBO();\\\" \\r\\n\\ttype_php_2=\\\"$tables= $db->getTableList();\\\" \\r\\n\\ttype_php_3=\\\"$config = JFactory::getConfig();\\\" \\r\\n\\ttype_php_4=\\\"$options = array();\\\" \\r\\n\\ttype_php_5=\\\"$db = JFactory::getDBO(); $options[] = JHtml::_(\'select.option\', \'\', \'Select an option\');\\\" \\r\\n\\ttype_php_6=\\\"for ($i=0; $i < count($tables); $i++)\\\" \\r\\n\\ttype_php_7=\\\"{\\\" \\r\\n\\ttype_php_8=\\\"\\\\t\\/\\/only tables with primary key\\\" \\r\\n\\ttype_php_9=\\\"\\\\t$db->setQuery(\'SHOW FIELDS FROM `\'.$tables[$i].\'` WHERE LOWER( `Key` ) = \\\\\'pri\\\\\'\');\\\" \\r\\n\\ttype_php_10=\\\"\\\\tif ($db->loadResult())\\\" \\r\\n\\ttype_php_11=\\\"\\\\t{\\\" \\r\\n\\ttype_php_12=\\\"\\\\t\\\\t$dbprefix = version_compare(JVERSION,\'3.0\',\'lt\') ? $config->getValue(\'config.dbprefix\') : $config->get(\'dbprefix\'); $key = $i+1;\\\" \\r\\n\\ttype_php_13=\\\"\\\\t\\\\t$options[$key] = new stdClass;\\\" \\r\\n\\ttype_php_14=\\\"\\\\t\\\\t$options[$key]->value = str_replace($dbprefix, \'\', $tables[$i]);\\\" \\r\\n\\ttype_php_15=\\\"\\\\t\\\\t$options[$key]->text = $tables[$i];\\\" \\r\\n\\ttype_php_16=\\\"\\\\t}\\\" \\r\\n\\ttype_php_17=\\\"}\\\" \\r\\n\\ttype_php_18=\\\"return $options;\\\" \\r\\n\\/>\"', -2, '2015-05-22 12:13:01', '2015-05-22 12:11:37', 1, '', 323, '9589965f-952d-4139-bc24-1dc1e94f9a0f', '', '', '', '', ''),
(400, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'DB Table (v)', 'NOT NULL', '', 6, '\"<field \\r\\n\\ttype=\\\"dbtables\\\" \\r\\n\\tname=\\\"db_table_v\\\" \\r\\n\\tlabel=\\\"DB Table (v)\\\" \\r\\n\\tdescription=\\\"Select a database table\\\" \\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\tmultiple=\\\"false\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\treadonly=\\\"\\\" \\r\\n\\tdisabled=\\\"\\\" \\r\\n\\textends=\\\"list\\\" \\r\\n\\ttable=\\\"\\\" \\r\\n\\tcomponent=\\\" \\r\\n\\tview=\\\"\\\" \\r\\n\\tviews=\\\"\\\" \\r\\n\\tvalue_field=\\\"\\\" \\r\\n\\tkey_field=\\\"\\\" \\r\\n\\ttype_php_1=\\\"$db = JFactory::getDBO();\\\" \\r\\n\\ttype_php_2=\\\"$tables= $db->getTableList();\\\" \\r\\n\\ttype_php_3=\\\"$config = JFactory::getConfig();\\\" \\r\\n\\ttype_php_4=\\\"$options = array();\\\" \\r\\n\\ttype_php_5=\\\"$db = JFactory::getDBO(); $options[] = JHtml::_(\'select.option\', \'\', \'Select an option\');\\\" \\r\\n\\ttype_php_6=\\\"for ($i=0; $i < count($tables); $i++)\\\" \\r\\n\\ttype_php_7=\\\"{\\\" \\r\\n\\ttype_php_8=\\\"\\\\t\\/\\/only tables with primary key\\\" \\r\\n\\ttype_php_9=\\\"\\\\t$db->setQuery(\'SHOW FIELDS FROM `\'.$tables[$i].\'` WHERE LOWER( `Key` ) = \\\\\'pri\\\\\'\');\\\" \\r\\n\\ttype_php_10=\\\"\\\\tif ($db->loadResult())\\\" \\r\\n\\ttype_php_11=\\\"\\\\t{\\\" \\r\\n\\ttype_php_12=\\\"\\\\t\\\\t$dbprefix = version_compare(JVERSION,\'3.0\',\'lt\') ? $config->getValue(\'config.dbprefix\') : $config->get(\'dbprefix\'); $key = $i+1;\\\" \\r\\n\\ttype_php_13=\\\"\\\\t\\\\t$options[$key] = new stdClass;\\\" \\r\\n\\ttype_php_14=\\\"\\\\t\\\\t$options[$key]->value = str_replace($dbprefix, \'\', $tables[$i]);\\\" \\r\\n\\ttype_php_15=\\\"\\\\t\\\\t$options[$key]->text = $tables[$i];\\\" \\r\\n\\ttype_php_16=\\\"\\\\t}\\\" \\r\\n\\ttype_php_17=\\\"}\\\" \\r\\n\\ttype_php_18=\\\"return $options;\\\" \\r\\n\\/>\"', -2, '2015-05-22 12:13:13', '2015-05-22 12:11:37', 1, '', 322, '147659e4-5c26-4be9-b90c-a3e1405119ee', '', '', '', '', ''),
(401, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'DB Table (w)', 'NOT NULL', '', 6, '\"<field \\r\\n\\ttype=\\\"dbtables\\\" \\r\\n\\tname=\\\"db_table_w\\\" \\r\\n\\tlabel=\\\"DB Table (w)\\\" \\r\\n\\tdescription=\\\"Select a database table\\\" \\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\tmultiple=\\\"false\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\treadonly=\\\"\\\" \\r\\n\\tdisabled=\\\"\\\" \\r\\n\\textends=\\\"list\\\" \\r\\n\\ttable=\\\"\\\" \\r\\n\\tcomponent=\\\" \\r\\n\\tview=\\\"\\\" \\r\\n\\tviews=\\\"\\\" \\r\\n\\tvalue_field=\\\"\\\" \\r\\n\\tkey_field=\\\"\\\" \\r\\n\\ttype_php_1=\\\"$db = JFactory::getDBO();\\\" \\r\\n\\ttype_php_2=\\\"$tables= $db->getTableList();\\\" \\r\\n\\ttype_php_3=\\\"$config = JFactory::getConfig();\\\" \\r\\n\\ttype_php_4=\\\"$options = array();\\\" \\r\\n\\ttype_php_5=\\\"$db = JFactory::getDBO(); $options[] = JHtml::_(\'select.option\', \'\', \'Select an option\');\\\" \\r\\n\\ttype_php_6=\\\"for ($i=0; $i < count($tables); $i++)\\\" \\r\\n\\ttype_php_7=\\\"{\\\" \\r\\n\\ttype_php_8=\\\"\\\\t\\/\\/only tables with primary key\\\" \\r\\n\\ttype_php_9=\\\"\\\\t$db->setQuery(\'SHOW FIELDS FROM `\'.$tables[$i].\'` WHERE LOWER( `Key` ) = \\\\\'pri\\\\\'\');\\\" \\r\\n\\ttype_php_10=\\\"\\\\tif ($db->loadResult())\\\" \\r\\n\\ttype_php_11=\\\"\\\\t{\\\" \\r\\n\\ttype_php_12=\\\"\\\\t\\\\t$dbprefix = version_compare(JVERSION,\'3.0\',\'lt\') ? $config->getValue(\'config.dbprefix\') : $config->get(\'dbprefix\'); $key = $i+1;\\\" \\r\\n\\ttype_php_13=\\\"\\\\t\\\\t$options[$key] = new stdClass;\\\" \\r\\n\\ttype_php_14=\\\"\\\\t\\\\t$options[$key]->value = str_replace($dbprefix, \'\', $tables[$i]);\\\" \\r\\n\\ttype_php_15=\\\"\\\\t\\\\t$options[$key]->text = $tables[$i];\\\" \\r\\n\\ttype_php_16=\\\"\\\\t}\\\" \\r\\n\\ttype_php_17=\\\"}\\\" \\r\\n\\ttype_php_18=\\\"return $options;\\\" \\r\\n\\/>\"', -2, '2015-05-22 12:13:25', '2015-05-22 12:11:37', 1, '', 321, 'ef841d12-2632-4d58-a5c8-05493c6c106d', '', '', '', '', ''),
(402, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'DB Table (x)', 'NOT NULL', '', 6, '\"<field \\r\\n\\ttype=\\\"dbtables\\\" \\r\\n\\tname=\\\"db_table_x\\\" \\r\\n\\tlabel=\\\"DB Table (x)\\\" \\r\\n\\tdescription=\\\"Select a database table\\\" \\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\tmultiple=\\\"false\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\treadonly=\\\"\\\" \\r\\n\\tdisabled=\\\"\\\" \\r\\n\\textends=\\\"list\\\" \\r\\n\\ttable=\\\"\\\" \\r\\n\\tcomponent=\\\" \\r\\n\\tview=\\\"\\\" \\r\\n\\tviews=\\\"\\\" \\r\\n\\tvalue_field=\\\"\\\" \\r\\n\\tkey_field=\\\"\\\" \\r\\n\\ttype_php_1=\\\"$db = JFactory::getDBO();\\\" \\r\\n\\ttype_php_2=\\\"$tables= $db->getTableList();\\\" \\r\\n\\ttype_php_3=\\\"$config = JFactory::getConfig();\\\" \\r\\n\\ttype_php_4=\\\"$options = array();\\\" \\r\\n\\ttype_php_5=\\\"$db = JFactory::getDBO(); $options[] = JHtml::_(\'select.option\', \'\', \'Select an option\');\\\" \\r\\n\\ttype_php_6=\\\"for ($i=0; $i < count($tables); $i++)\\\" \\r\\n\\ttype_php_7=\\\"{\\\" \\r\\n\\ttype_php_8=\\\"\\\\t\\/\\/only tables with primary key\\\" \\r\\n\\ttype_php_9=\\\"\\\\t$db->setQuery(\'SHOW FIELDS FROM `\'.$tables[$i].\'` WHERE LOWER( `Key` ) = \\\\\'pri\\\\\'\');\\\" \\r\\n\\ttype_php_10=\\\"\\\\tif ($db->loadResult())\\\" \\r\\n\\ttype_php_11=\\\"\\\\t{\\\" \\r\\n\\ttype_php_12=\\\"\\\\t\\\\t$dbprefix = version_compare(JVERSION,\'3.0\',\'lt\') ? $config->getValue(\'config.dbprefix\') : $config->get(\'dbprefix\'); $key = $i+1;\\\" \\r\\n\\ttype_php_13=\\\"\\\\t\\\\t$options[$key] = new stdClass;\\\" \\r\\n\\ttype_php_14=\\\"\\\\t\\\\t$options[$key]->value = str_replace($dbprefix, \'\', $tables[$i]);\\\" \\r\\n\\ttype_php_15=\\\"\\\\t\\\\t$options[$key]->text = $tables[$i];\\\" \\r\\n\\ttype_php_16=\\\"\\\\t}\\\" \\r\\n\\ttype_php_17=\\\"}\\\" \\r\\n\\ttype_php_18=\\\"return $options;\\\" \\r\\n\\/>\"', -2, '2015-05-22 12:13:36', '2015-05-22 12:11:37', 1, '', 320, '3bc4d66c-e7ea-4ec2-a378-cad562f96411', '', '', '', '', ''),
(403, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'DB Table (y)', 'NOT NULL', '', 6, '\"<field \\r\\n\\ttype=\\\"dbtables\\\" \\r\\n\\tname=\\\"db_table_y\\\" \\r\\n\\tlabel=\\\"DB Table (y)\\\" \\r\\n\\tdescription=\\\"Select a database table\\\" \\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\tmultiple=\\\"false\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\treadonly=\\\"\\\" \\r\\n\\tdisabled=\\\"\\\" \\r\\n\\textends=\\\"list\\\" \\r\\n\\ttable=\\\"\\\" \\r\\n\\tcomponent=\\\" \\r\\n\\tview=\\\"\\\" \\r\\n\\tviews=\\\"\\\" \\r\\n\\tvalue_field=\\\"\\\" \\r\\n\\tkey_field=\\\"\\\" \\r\\n\\ttype_php_1=\\\"$db = JFactory::getDBO();\\\" \\r\\n\\ttype_php_2=\\\"$tables= $db->getTableList();\\\" \\r\\n\\ttype_php_3=\\\"$config = JFactory::getConfig();\\\" \\r\\n\\ttype_php_4=\\\"$options = array();\\\" \\r\\n\\ttype_php_5=\\\"$db = JFactory::getDBO(); $options[] = JHtml::_(\'select.option\', \'\', \'Select an option\');\\\" \\r\\n\\ttype_php_6=\\\"for ($i=0; $i < count($tables); $i++)\\\" \\r\\n\\ttype_php_7=\\\"{\\\" \\r\\n\\ttype_php_8=\\\"\\\\t\\/\\/only tables with primary key\\\" \\r\\n\\ttype_php_9=\\\"\\\\t$db->setQuery(\'SHOW FIELDS FROM `\'.$tables[$i].\'` WHERE LOWER( `Key` ) = \\\\\'pri\\\\\'\');\\\" \\r\\n\\ttype_php_10=\\\"\\\\tif ($db->loadResult())\\\" \\r\\n\\ttype_php_11=\\\"\\\\t{\\\" \\r\\n\\ttype_php_12=\\\"\\\\t\\\\t$dbprefix = version_compare(JVERSION,\'3.0\',\'lt\') ? $config->getValue(\'config.dbprefix\') : $config->get(\'dbprefix\'); $key = $i+1;\\\" \\r\\n\\ttype_php_13=\\\"\\\\t\\\\t$options[$key] = new stdClass;\\\" \\r\\n\\ttype_php_14=\\\"\\\\t\\\\t$options[$key]->value = str_replace($dbprefix, \'\', $tables[$i]);\\\" \\r\\n\\ttype_php_15=\\\"\\\\t\\\\t$options[$key]->text = $tables[$i];\\\" \\r\\n\\ttype_php_16=\\\"\\\\t}\\\" \\r\\n\\ttype_php_17=\\\"}\\\" \\r\\n\\ttype_php_18=\\\"return $options;\\\" \\r\\n\\/>\"', -2, '2015-05-22 12:13:48', '2015-05-22 12:11:37', 1, '', 319, 'c6b319e0-9d53-41b0-84ee-11e6e4819cd0', '', '', '', '', ''),
(404, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'DB Table (z)', 'NOT NULL', '', 6, '\"<field \\r\\n\\ttype=\\\"dbtables\\\" \\r\\n\\tname=\\\"db_table_z\\\" \\r\\n\\tlabel=\\\"DB Table (z)\\\" \\r\\n\\tdescription=\\\"Select a database table\\\" \\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\tmultiple=\\\"false\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\treadonly=\\\"\\\" \\r\\n\\tdisabled=\\\"\\\" \\r\\n\\textends=\\\"list\\\" \\r\\n\\ttable=\\\"\\\" \\r\\n\\tcomponent=\\\" \\r\\n\\tview=\\\"\\\" \\r\\n\\tviews=\\\"\\\" \\r\\n\\tvalue_field=\\\"\\\" \\r\\n\\tkey_field=\\\"\\\" \\r\\n\\ttype_php_1=\\\"$db = JFactory::getDBO();\\\" \\r\\n\\ttype_php_2=\\\"$tables= $db->getTableList();\\\" \\r\\n\\ttype_php_3=\\\"$config = JFactory::getConfig();\\\" \\r\\n\\ttype_php_4=\\\"$options = array();\\\" \\r\\n\\ttype_php_5=\\\"$db = JFactory::getDBO(); $options[] = JHtml::_(\'select.option\', \'\', \'Select an option\');\\\" \\r\\n\\ttype_php_6=\\\"for ($i=0; $i < count($tables); $i++)\\\" \\r\\n\\ttype_php_7=\\\"{\\\" \\r\\n\\ttype_php_8=\\\"\\\\t\\/\\/only tables with primary key\\\" \\r\\n\\ttype_php_9=\\\"\\\\t$db->setQuery(\'SHOW FIELDS FROM `\'.$tables[$i].\'` WHERE LOWER( `Key` ) = \\\\\'pri\\\\\'\');\\\" \\r\\n\\ttype_php_10=\\\"\\\\tif ($db->loadResult())\\\" \\r\\n\\ttype_php_11=\\\"\\\\t{\\\" \\r\\n\\ttype_php_12=\\\"\\\\t\\\\t$dbprefix = version_compare(JVERSION,\'3.0\',\'lt\') ? $config->getValue(\'config.dbprefix\') : $config->get(\'dbprefix\'); $key = $i+1;\\\" \\r\\n\\ttype_php_13=\\\"\\\\t\\\\t$options[$key] = new stdClass;\\\" \\r\\n\\ttype_php_14=\\\"\\\\t\\\\t$options[$key]->value = str_replace($dbprefix, \'\', $tables[$i]);\\\" \\r\\n\\ttype_php_15=\\\"\\\\t\\\\t$options[$key]->text = $tables[$i];\\\" \\r\\n\\ttype_php_16=\\\"\\\\t}\\\" \\r\\n\\ttype_php_17=\\\"}\\\" \\r\\n\\ttype_php_18=\\\"return $options;\\\" \\r\\n\\/>\"', -2, '2015-05-22 12:14:23', '2015-05-22 12:11:37', 1, '', 318, 'd5754f88-3ae2-4cd7-8735-5b585e197efc', '', '', '', '', ''),
(405, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'Add View Table (b)', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"add_view_table_b\\\" \\r\\n\\tlabel=\\\"Add View Table (b)\\\" \\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\\/>\"', -2, '2015-05-22 12:18:30', '2015-05-22 16:00:47', 1, '', 510, '9aec84ea-2196-42c6-adda-84656a3f80b1', '', '', '', '', ''),
(406, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'Add View Table (c)', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"add_view_table_c\\\" \\r\\n\\tlabel=\\\"Add View Table (c)\\\" \\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\\/>\"', -2, '2015-05-22 12:18:43', '2015-05-22 16:00:53', 1, '', 482, '13be4696-8edf-42c1-bf38-afedfb42d88e', '', '', '', '', ''),
(407, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'Add View Table (d)', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"add_view_table_d\\\" \\r\\n\\tlabel=\\\"Add View Table (d)\\\" \\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\\/>\"', -2, '2015-05-22 12:18:53', '2015-05-22 16:00:57', 1, '', 473, '80be7858-e18b-405a-b856-509094c9f396', '', '', '', '', ''),
(408, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'Add View Table (e)', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"add_view_table_e\\\" \\r\\n\\tlabel=\\\"Add View Table (e)\\\" \\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\\/>\"', -2, '2015-05-22 12:19:03', '2015-05-22 16:01:00', 1, '', 471, '3d78ebda-164f-439e-b05b-af3338b126bb', '', '', '', '', ''),
(409, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'Add View Table (f)', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"add_view_table_f\\\" \\r\\n\\tlabel=\\\"Add View Table (f)\\\" \\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\\/>\"', -2, '2015-05-22 12:19:13', '2015-05-22 16:00:35', 1, '', 470, 'bccb502f-6402-44cd-a9bb-649399ae2d5b', '', '', '', '', ''),
(410, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'Add View Table (g)', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"add_view_table_g\\\" \\r\\n\\tlabel=\\\"Add View Table (g)\\\" \\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\\/>\"', -2, '2015-05-22 12:19:25', '2015-05-22 16:01:09', 1, '', 469, '4ec231c8-0329-4ad0-9ef0-2af042461019', '', '', '', '', ''),
(411, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'Add View Table (h)', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"add_view_table_h\\\" \\r\\n\\tlabel=\\\"Add View Table (h)\\\" \\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\\/>\"', -2, '2015-05-22 12:19:36', '2015-05-22 16:01:20', 1, '', 466, '969ff034-51b0-49c5-98e1-9bb14f74df9e', '', '', '', '', ''),
(412, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'Add View Table (i)', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"add_view_table_i\\\" \\r\\n\\tlabel=\\\"Add View Table (i)\\\" \\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\\/>\"', -2, '2015-05-22 12:19:46', '2015-05-22 16:01:25', 1, '', 448, '57c8047b-59da-469a-92ef-b1c64fa2554e', '', '', '', '', ''),
(413, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'Add View Table (j)', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"add_view_table_j\\\" \\r\\n\\tlabel=\\\"Add View Table (j)\\\" \\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\\/>\"', -2, '2015-05-22 12:19:58', '2015-05-22 16:01:32', 1, '', 467, '53e123f6-33b3-44fb-aca9-cf45dc558681', '', '', '', '', ''),
(414, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'Add View Table (k)', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"add_view_table_k\\\" \\r\\n\\tlabel=\\\"Add View Table (k)\\\" \\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\\/>\"', -2, '2015-05-22 12:20:12', '2015-05-22 16:01:39', 1, '', 468, '49676b47-c5e8-4332-8129-eeb65ba14f3e', '', '', '', '', ''),
(415, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'Add View Table (l)', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"add_view_table_l\\\" \\r\\n\\tlabel=\\\"Add View Table (l)\\\" \\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\\/>\"', -2, '2015-05-22 12:20:22', '2015-05-22 16:01:46', 1, '', 472, '7f5b6c6f-6109-4caf-912c-98ed1445b131', '', '', '', '', ''),
(416, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'Add View Table (m)', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"add_view_table_m\\\" \\r\\n\\tlabel=\\\"Add View Table (m)\\\" \\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\\/>\"', -2, '2015-05-22 12:20:36', '2015-05-22 16:01:55', 1, '', 475, '3498064f-a575-4834-9644-833a561cd752', '', '', '', '', ''),
(417, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'Add DB Table (main)', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"add_db_table\\\" \\r\\n\\tlabel=\\\"Add DB Table (main)\\\" \\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-22 12:23:23', '2015-08-25 21:15:22', 1, '', 476, 'f440af91-9956-444c-995d-b66a9d263359', '', '', '', '', ''),
(418, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'Add DB Table (o)', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"add_db_table_o\\\" \\r\\n\\tlabel=\\\"Add DB Table (o)\\\" \\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\\/>\"', -2, '2015-05-22 12:23:44', '2015-05-22 16:02:08', 1, '', 477, '8087cd69-cd21-4d73-92ab-2ee189aaf0a3', '', '', '', '', ''),
(419, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'Add DB Table (p)', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"add_db_table_p\\\" \\r\\n\\tlabel=\\\"Add DB Table (p)\\\" \\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\\/>\"', -2, '2015-05-22 12:23:57', '2015-05-22 16:02:14', 1, '', 478, 'fbe839c1-f458-41a8-bbc9-38fa30413d52', '', '', '', '', ''),
(420, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'Add DB Table (q)', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"add_db_table_q\\\" \\r\\n\\tlabel=\\\"Add DB Table (q)\\\" \\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\\/>\"', -2, '2015-05-22 12:24:07', '2015-05-22 16:02:21', 1, '', 479, '74ee6124-8d7a-4c6f-a7fa-0ae402f54f5c', '', '', '', '', ''),
(421, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'Add DB Table (r)', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"add_db_table_r\\\" \\r\\n\\tlabel=\\\"Add DB Table (r)\\\" \\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\\/>\"', -2, '2015-05-22 12:24:18', '2015-05-22 16:02:29', 1, '', 480, '00b24817-7857-4b69-b01b-a16d49e13c4a', '', '', '', '', ''),
(422, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'Add DB Table (s)', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"add_db_table_s\\\" \\r\\n\\tlabel=\\\"Add DB Table (s)\\\" \\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\\/>\"', -2, '2015-05-22 12:24:32', '2015-05-22 16:02:35', 1, '', 465, '31c814f1-cceb-4d9a-89f4-2ec46e33e096', '', '', '', '', ''),
(423, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'Add DB Table (t)', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"add_db_table_t\\\" \\r\\n\\tlabel=\\\"Add DB Table (t)\\\" \\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\\/>\"', -2, '2015-05-22 12:24:42', '2015-05-22 16:02:41', 1, '', 464, 'ba3db7d1-dcce-4bbd-9d11-f1c670d2bc7a', '', '', '', '', ''),
(424, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'Add DB Table (u)', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"add_db_table_u\\\" \\r\\n\\tlabel=\\\"Add DB Table (u)\\\" \\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\\/>\"', -2, '2015-05-22 12:24:59', '2015-05-22 16:02:48', 1, '', 449, '52074b56-5f3c-487b-b297-b2d5a1c427eb', '', '', '', '', ''),
(425, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'Add DB Table (v)', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"add_db_table_v\\\" \\r\\n\\tlabel=\\\"Add DB Table (v)\\\" \\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\\/>\"', -2, '2015-05-22 12:25:09', '2015-05-22 16:02:58', 1, '', 450, '16221a14-82b1-44ca-ab41-87c828690ec3', '', '', '', '', ''),
(426, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'Add DB Table (w)', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"add_db_table_w\\\" \\r\\n\\tlabel=\\\"Add DB Table (w)\\\" \\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\\/>\"', -2, '2015-05-22 12:25:18', '2015-05-22 16:03:06', 1, '', 451, 'b58b4f07-fafb-4d4f-9b7b-97f94cd6d784', '', '', '', '', ''),
(427, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'Add DB Table (x)', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"add_db_table_x\\\" \\r\\n\\tlabel=\\\"Add DB Table (x)\\\" \\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\\/>\"', -2, '2015-05-22 12:25:29', '2015-05-22 16:03:17', 1, '', 452, '3594cabd-378e-4108-b123-248af555f940', '', '', '', '', ''),
(428, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'Add DB Table (y)', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"add_db_table_y\\\" \\r\\n\\tlabel=\\\"Add DB Table (y)\\\" \\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\\/>\"', -2, '2015-05-22 12:25:40', '2015-05-22 16:03:23', 1, '', 453, '796bb13a-17b5-4a75-9d4a-207f2dd67c55', '', '', '', '', ''),
(429, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'Add DB Table (z)', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"add_db_table_z\\\" \\r\\n\\tlabel=\\\"Add DB Table (z)\\\" \\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\\/>\"', -2, '2015-05-22 12:25:51', '2015-05-22 16:03:31', 1, '', 454, 'e44c62ec-8782-4438-8d3f-779967081644', '', '', '', '', ''),
(430, '', '', '', '', '', '', '', '', 64, '', 'CHAR', '', '', '', 'On Field (join)', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"on_field\\\" \\r\\n\\tlabel=\\\"On Field\\\" \\r\\n\\tsize=\\\"40\\\" \\r\\n\\tmaxlength=\\\"150\\\" \\r\\n\\tdescription=\\\"Name of the field\\\" \\r\\n\\tclass=\\\"text_area fieldMedium\\\" \\r\\n\\treadonly=\\\"false\\\" \\r\\n\\tdisabled=\\\"false\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\tfilter=\\\"CMD\\\" \\r\\n\\tmessage=\\\"Error! Please add field name here.\\\" \\r\\n\\thint=\\\"a.mainfield\\\" \\r\\n\\/>\"', 1, '2015-05-22 12:35:25', '2015-08-25 21:15:22', 1, '', 455, 'ee777081-87d6-447a-8f43-99ed565459da', '', '', '', '', ''),
(431, '', '', '', '', '', '', '', '', 64, '', 'CHAR', '', '', '', 'On Field (c)', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"on_field_c\\\" \\r\\n\\tlabel=\\\"On Field (c)\\\" \\r\\n\\tsize=\\\"40\\\" \\r\\n\\tmaxlength=\\\"150\\\" \\r\\n\\tdescription=\\\"Name of the field\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\treadonly=\\\"false\\\" \\r\\n\\tdisabled=\\\"false\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\tfilter=\\\"CMD\\\" \\r\\n\\tmessage=\\\"Error! Please add field name here.\\\" \\r\\n\\thint=\\\"a.mainfield\\\" \\r\\n\\/>\"', -2, '2015-05-22 12:35:35', '2015-05-22 16:16:34', 1, '', 456, '76274887-ac07-4f67-b4f0-0e4806760390', '', '', '', '', ''),
(432, '', '', '', '', '', '', '', '', 64, '', 'CHAR', '', '', '', 'On Field (d)', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"on_field_d\\\" \\r\\n\\tlabel=\\\"On Field (d)\\\" \\r\\n\\tsize=\\\"40\\\" \\r\\n\\tmaxlength=\\\"150\\\" \\r\\n\\tdescription=\\\"Name of the field\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\treadonly=\\\"false\\\" \\r\\n\\tdisabled=\\\"false\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\tfilter=\\\"CMD\\\" \\r\\n\\tmessage=\\\"Error! Please add field name here.\\\" \\r\\n\\thint=\\\"a.mainfield\\\" \\r\\n\\/>\"', -2, '2015-05-22 12:35:46', '2015-05-22 16:16:38', 1, '', 457, '2bd5d76f-124a-495d-b171-af9995aa03d4', '', '', '', '', ''),
(433, '', '', '', '', '', '', '', '', 64, '', 'CHAR', '', '', '', 'On Field (e)', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"on_field_e\\\" \\r\\n\\tlabel=\\\"On Field (e)\\\" \\r\\n\\tsize=\\\"40\\\" \\r\\n\\tmaxlength=\\\"150\\\" \\r\\n\\tdescription=\\\"Name of the field\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\treadonly=\\\"false\\\" \\r\\n\\tdisabled=\\\"false\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\tfilter=\\\"CMD\\\" \\r\\n\\tmessage=\\\"Error! Please add field name here.\\\" \\r\\n\\thint=\\\"a.mainfield\\\" \\r\\n\\/>\"', -2, '2015-05-22 12:36:00', '2015-05-22 16:16:41', 1, '', 458, '7222a79e-cced-47fd-a879-9e4568e73abe', '', '', '', '', ''),
(434, '', '', '', '', '', '', '', '', 64, '', 'CHAR', '', '', '', 'On Field (f)', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"on_field_f\\\" \\r\\n\\tlabel=\\\"On Field (f)\\\" \\r\\n\\tsize=\\\"40\\\" \\r\\n\\tmaxlength=\\\"150\\\" \\r\\n\\tdescription=\\\"Name of the field\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\treadonly=\\\"false\\\" \\r\\n\\tdisabled=\\\"false\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\tfilter=\\\"CMD\\\" \\r\\n\\tmessage=\\\"Error! Please add field name here.\\\" \\r\\n\\thint=\\\"a.mainfield\\\" \\r\\n\\/>\"', -2, '2015-05-22 12:36:16', '2015-05-22 16:16:45', 1, '', 459, '9ddad4f9-c2aa-46bf-ba12-51c3ef9049ad', '', '', '', '', ''),
(435, '', '', '', '', '', '', '', '', 64, '', 'CHAR', '', '', '', 'On Field (g)', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"on_field_g\\\" \\r\\n\\tlabel=\\\"On Field (g)\\\" \\r\\n\\tsize=\\\"40\\\" \\r\\n\\tmaxlength=\\\"150\\\" \\r\\n\\tdescription=\\\"Name of the field\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\treadonly=\\\"false\\\" \\r\\n\\tdisabled=\\\"false\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\tfilter=\\\"CMD\\\" \\r\\n\\tmessage=\\\"Error! Please add field name here.\\\" \\r\\n\\thint=\\\"a.mainfield\\\" \\r\\n\\/>\"', -2, '2015-05-22 12:36:27', '2015-05-22 16:16:49', 1, '', 460, '4058c0d1-ecd7-4e3d-9756-0c1fa55dcabf', '', '', '', '', ''),
(436, '', '', '', '', '', '', '', '', 64, '', 'CHAR', '', '', '', 'On Field (h)', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"on_field_h\\\" \\r\\n\\tlabel=\\\"On Field (h)\\\" \\r\\n\\tsize=\\\"40\\\" \\r\\n\\tmaxlength=\\\"150\\\" \\r\\n\\tdescription=\\\"Name of the field\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\treadonly=\\\"false\\\" \\r\\n\\tdisabled=\\\"false\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\tfilter=\\\"CMD\\\" \\r\\n\\tmessage=\\\"Error! Please add field name here.\\\" \\r\\n\\thint=\\\"a.mainfield\\\" \\r\\n\\/>\"', -2, '2015-05-22 12:36:39', '2015-05-22 16:16:52', 1, '', 461, 'c0f18876-4640-4368-aed6-070d83b3cfd0', '', '', '', '', ''),
(437, '', '', '', '', '', '', '', '', 64, '', 'CHAR', '', '', '', 'On Field (j)', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"on_field_j\\\" \\r\\n\\tlabel=\\\"On Field (j)\\\" \\r\\n\\tsize=\\\"40\\\" \\r\\n\\tmaxlength=\\\"150\\\" \\r\\n\\tdescription=\\\"Name of the field\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\treadonly=\\\"false\\\" \\r\\n\\tdisabled=\\\"false\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\tfilter=\\\"CMD\\\" \\r\\n\\tmessage=\\\"Error! Please add field name here.\\\" \\r\\n\\thint=\\\"a.mainfield\\\" \\r\\n\\/>\"', -2, '2015-05-22 12:37:02', '2015-05-22 16:16:56', 1, '', 462, '7242a8a1-e763-41cd-95f8-42428d401df1', '', '', '', '', ''),
(438, '', '', '', '', '', '', '', '', 64, '', 'CHAR', '', '', '', 'On Field (k)', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"on_field_k\\\" \\r\\n\\tlabel=\\\"On Field (k)\\\" \\r\\n\\tsize=\\\"40\\\" \\r\\n\\tmaxlength=\\\"150\\\" \\r\\n\\tdescription=\\\"Name of the field\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\treadonly=\\\"false\\\" \\r\\n\\tdisabled=\\\"false\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\tfilter=\\\"CMD\\\" \\r\\n\\tmessage=\\\"Error! Please add field name here.\\\" \\r\\n\\thint=\\\"a.mainfield\\\" \\r\\n\\/>\"', -2, '2015-05-22 12:37:12', '2015-05-22 16:17:01', 1, '', 463, 'b03e9321-b14d-4040-b340-a33d76004aa3', '', '', '', '', ''),
(439, '', '', '', '', '', '', '', '', 64, '', 'CHAR', '', '', '', 'On Field (l)', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"on_field_l\\\" \\r\\n\\tlabel=\\\"On Field (l)\\\" \\r\\n\\tsize=\\\"40\\\" \\r\\n\\tmaxlength=\\\"150\\\" \\r\\n\\tdescription=\\\"Name of the field\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\treadonly=\\\"false\\\" \\r\\n\\tdisabled=\\\"false\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\tfilter=\\\"CMD\\\" \\r\\n\\tmessage=\\\"Error! Please add field name here.\\\" \\r\\n\\thint=\\\"a.mainfield\\\" \\r\\n\\/>\"', -2, '2015-05-22 12:37:25', '2015-05-22 16:17:05', 1, '', 481, '5f2fbf64-82cc-49d3-a1fd-1b7814d93c7c', '', '', '', '', ''),
(440, '', '', '', '', '', '', '', '', 64, '', 'CHAR', '', '', '', 'On Field (m)', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"on_field_m\\\" \\r\\n\\tlabel=\\\"On Field (m)\\\" \\r\\n\\tsize=\\\"40\\\" \\r\\n\\tmaxlength=\\\"150\\\" \\r\\n\\tdescription=\\\"Name of the field\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\treadonly=\\\"false\\\" \\r\\n\\tdisabled=\\\"false\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\tfilter=\\\"CMD\\\" \\r\\n\\tmessage=\\\"Error! Please add field name here.\\\" \\r\\n\\thint=\\\"a.mainfield\\\" \\r\\n\\/>\"', -2, '2015-05-22 12:37:37', '2015-05-22 16:17:09', 1, '', 500, '381a778d-9c8c-4be3-b1ab-3819bee00491', '', '', '', '', ''),
(441, '', '', '', '', '', '', '', '', 64, '', 'CHAR', '', '', '', 'On Field (n)', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"on_field_n\\\" \\r\\n\\tlabel=\\\"On Field (n)\\\" \\r\\n\\tsize=\\\"40\\\" \\r\\n\\tmaxlength=\\\"150\\\" \\r\\n\\tdescription=\\\"Name of the field\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\treadonly=\\\"false\\\" \\r\\n\\tdisabled=\\\"false\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\tfilter=\\\"CMD\\\" \\r\\n\\tmessage=\\\"Error! Please add field name here.\\\" \\r\\n\\thint=\\\"a.mainfield\\\" \\r\\n\\/>\"', -2, '2015-05-22 12:37:48', '2015-05-22 16:17:13', 1, '', 501, '1fbe45f5-c7f0-4f02-b7e6-eeb35dd2a969', '', '', '', '', ''),
(442, '', '', '', '', '', '', '', '', 64, '', 'CHAR', '', '', '', 'On Field (o)', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"on_field_o\\\" \\r\\n\\tlabel=\\\"On Field (o)\\\" \\r\\n\\tsize=\\\"40\\\" \\r\\n\\tmaxlength=\\\"150\\\" \\r\\n\\tdescription=\\\"Name of the field\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\treadonly=\\\"false\\\" \\r\\n\\tdisabled=\\\"false\\\" \\r\\n\\trequired=\\\"false\\\" \\r\\n\\tfilter=\\\"CMD\\\" \\r\\n\\tmessage=\\\"Error! Please add field name here.\\\" \\r\\n\\thint=\\\"n.mainfield\\\" \\r\\n\\/>\"', -2, '2015-05-22 12:37:57', '2015-05-22 16:17:19', 1, '', 502, 'a151c74d-bf88-4273-83af-02e9fa5311a8', '', '', '', '', ''),
(443, '', '', '', '', '', '', '', '', 64, '', 'CHAR', '', '', '', 'On Field (p)', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"on_field_p\\\" \\r\\n\\tlabel=\\\"On Field (p)\\\" \\r\\n\\tsize=\\\"40\\\" \\r\\n\\tmaxlength=\\\"150\\\" \\r\\n\\tdescription=\\\"Name of the field\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\treadonly=\\\"false\\\" \\r\\n\\tdisabled=\\\"false\\\" \\r\\n\\trequired=\\\"false\\\" \\r\\n\\tfilter=\\\"CMD\\\" \\r\\n\\tmessage=\\\"Error! Please add field name here.\\\" \\r\\n\\thint=\\\"n.mainfield\\\" \\r\\n\\/>\"', -2, '2015-05-22 12:38:11', '2015-05-22 16:17:23', 1, '', 503, '358f8810-3bc1-4809-bdeb-e31880159a2a', '', '', '', '', ''),
(444, '', '', '', '', '', '', '', '', 64, '', 'CHAR', '', '', '', 'On Field (q)', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"on_field_q\\\" \\r\\n\\tlabel=\\\"On Field (q)\\\" \\r\\n\\tsize=\\\"40\\\" \\r\\n\\tmaxlength=\\\"150\\\" \\r\\n\\tdescription=\\\"Name of the field\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\treadonly=\\\"false\\\" \\r\\n\\tdisabled=\\\"false\\\" \\r\\n\\trequired=\\\"false\\\" \\r\\n\\tfilter=\\\"CMD\\\" \\r\\n\\tmessage=\\\"Error! Please add field name here.\\\" \\r\\n\\thint=\\\"n.mainfield\\\" \\r\\n\\/>\"', -2, '2015-05-22 12:38:29', '2015-05-22 16:17:55', 1, '', 504, '860fc142-fec2-4794-8a3b-f3fe1406986f', '', '', '', '', ''),
(445, '', '', '', '', '', '', '', '', 64, '', 'CHAR', '', '', '', 'On Field (r)', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"on_field_r\\\" \\r\\n\\tlabel=\\\"On Field (r)\\\" \\r\\n\\tsize=\\\"40\\\" \\r\\n\\tmaxlength=\\\"150\\\" \\r\\n\\tdescription=\\\"Name of the field\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\treadonly=\\\"false\\\" \\r\\n\\tdisabled=\\\"false\\\" \\r\\n\\trequired=\\\"false\\\" \\r\\n\\tfilter=\\\"CMD\\\" \\r\\n\\tmessage=\\\"Error! Please add field name here.\\\" \\r\\n\\thint=\\\"n.mainfield\\\" \\r\\n\\/>\"', -2, '2015-05-22 12:38:40', '2015-05-22 16:18:00', 1, '', 505, '1186e591-d414-4ee0-9856-a69377a355a4', '', '', '', '', ''),
(446, '', '', '', '', '', '', '', '', 64, '', 'CHAR', '', '', '', 'On Field (s)', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"on_field_s\\\" \\r\\n\\tlabel=\\\"On Field (s)\\\" \\r\\n\\tsize=\\\"40\\\" \\r\\n\\tmaxlength=\\\"150\\\" \\r\\n\\tdescription=\\\"Name of the field\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\treadonly=\\\"false\\\" \\r\\n\\tdisabled=\\\"false\\\" \\r\\n\\trequired=\\\"false\\\" \\r\\n\\tfilter=\\\"CMD\\\" \\r\\n\\tmessage=\\\"Error! Please add field name here.\\\" \\r\\n\\thint=\\\"n.mainfield\\\" \\r\\n\\/>\"', -2, '2015-05-22 12:38:56', '2015-05-22 16:18:04', 1, '', 506, '96254caf-8097-4f4f-8297-3d2d9a1ab47d', '', '', '', '', ''),
(447, '', '', '', '', '', '', '', '', 64, '', 'CHAR', '', '', '', 'On Field (t)', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"on_field_t\\\" \\r\\n\\tlabel=\\\"On Field (t)\\\" \\r\\n\\tsize=\\\"40\\\" \\r\\n\\tmaxlength=\\\"150\\\" \\r\\n\\tdescription=\\\"Name of the field\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\treadonly=\\\"false\\\" \\r\\n\\tdisabled=\\\"false\\\" \\r\\n\\trequired=\\\"false\\\" \\r\\n\\tfilter=\\\"CMD\\\" \\r\\n\\tmessage=\\\"Error! Please add field name here.\\\" \\r\\n\\thint=\\\"n.mainfield\\\" \\r\\n\\/>\"', -2, '2015-05-22 12:39:11', '2015-05-22 16:18:09', 1, '', 507, 'b6f70511-3bf1-4d88-a403-89db0d0ebf7c', '', '', '', '', ''),
(448, '', '', '', '', '', '', '', '', 64, '', 'CHAR', '', '', '', 'On Field (u)', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"on_field_u\\\" \\r\\n\\tlabel=\\\"On Field (u)\\\" \\r\\n\\tsize=\\\"40\\\" \\r\\n\\tmaxlength=\\\"150\\\" \\r\\n\\tdescription=\\\"Name of the field\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\treadonly=\\\"false\\\" \\r\\n\\tdisabled=\\\"false\\\" \\r\\n\\trequired=\\\"false\\\" \\r\\n\\tfilter=\\\"CMD\\\" \\r\\n\\tmessage=\\\"Error! Please add field name here.\\\" \\r\\n\\thint=\\\"n.mainfield\\\" \\r\\n\\/>\"', -2, '2015-05-22 12:39:23', '2015-05-22 16:18:14', 1, '', 508, 'ebf336c8-0a0b-436d-aea3-6a3fd162428e', '', '', '', '', ''),
(449, '', '', '', '', '', '', '', '', 64, '', 'CHAR', '', '', '', 'On Field (v)', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"on_field_v\\\" \\r\\n\\tlabel=\\\"On Field (v)\\\" \\r\\n\\tsize=\\\"40\\\" \\r\\n\\tmaxlength=\\\"150\\\" \\r\\n\\tdescription=\\\"Name of the field\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\treadonly=\\\"false\\\" \\r\\n\\tdisabled=\\\"false\\\" \\r\\n\\trequired=\\\"false\\\" \\r\\n\\tfilter=\\\"CMD\\\" \\r\\n\\tmessage=\\\"Error! Please add field name here.\\\" \\r\\n\\thint=\\\"n.mainfield\\\" \\r\\n\\/>\"', -2, '2015-05-22 12:39:34', '2015-05-22 16:18:18', 1, '', 509, '1f0e491e-186f-4ee9-bc2c-f047cd10566e', '', '', '', '', ''),
(450, '', '', '', '', '', '', '', '', 64, '', 'CHAR', '', '', '', 'On Field (w)', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"on_field_w\\\" \\r\\n\\tlabel=\\\"On Field (w)\\\" \\r\\n\\tsize=\\\"40\\\" \\r\\n\\tmaxlength=\\\"150\\\" \\r\\n\\tdescription=\\\"Name of the field\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\treadonly=\\\"false\\\" \\r\\n\\tdisabled=\\\"false\\\" \\r\\n\\trequired=\\\"false\\\" \\r\\n\\tfilter=\\\"CMD\\\" \\r\\n\\tmessage=\\\"Error! Please add field name here.\\\" \\r\\n\\thint=\\\"n.mainfield\\\" \\r\\n\\/>\"', -2, '2015-05-22 12:39:48', '2015-05-22 16:18:22', 1, '', 426, '9a2fbd5d-8c82-452e-962a-94a711280a45', '', '', '', '', ''),
(451, '', '', '', '', '', '', '', '', 64, '', 'CHAR', '', '', '', 'On Field (x)', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"on_field_x\\\" \\r\\n\\tlabel=\\\"On Field (x)\\\" \\r\\n\\tsize=\\\"40\\\" \\r\\n\\tmaxlength=\\\"150\\\" \\r\\n\\tdescription=\\\"Name of the field\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\treadonly=\\\"false\\\" \\r\\n\\tdisabled=\\\"false\\\" \\r\\n\\trequired=\\\"false\\\" \\r\\n\\tfilter=\\\"CMD\\\" \\r\\n\\tmessage=\\\"Error! Please add field name here.\\\" \\r\\n\\thint=\\\"n.mainfield\\\" \\r\\n\\/>\"', -2, '2015-05-22 12:40:00', '2015-05-22 16:18:27', 1, '', 512, '089d9677-0e27-4a45-b8b7-7b858c48efe7', '', '', '', '', ''),
(452, '', '', '', '', '', '', '', '', 64, '', 'CHAR', '', '', '', 'On Field (y)', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"on_field_y\\\" \\r\\n\\tlabel=\\\"On Field (y)\\\" \\r\\n\\tsize=\\\"40\\\" \\r\\n\\tmaxlength=\\\"150\\\" \\r\\n\\tdescription=\\\"Name of the field\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\treadonly=\\\"false\\\" \\r\\n\\tdisabled=\\\"false\\\" \\r\\n\\trequired=\\\"false\\\" \\r\\n\\tfilter=\\\"CMD\\\" \\r\\n\\tmessage=\\\"Error! Please add field name here.\\\" \\r\\n\\thint=\\\"n.mainfield\\\" \\r\\n\\/>\"', -2, '2015-05-22 12:40:11', '2015-05-22 16:18:31', 1, '', 513, '0186a14a-6b6a-4404-89d5-2cb849044244', '', '', '', '', ''),
(453, '', '', '', '', '', '', '', '', 64, '', 'CHAR', '', '', '', 'On Field (z)', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"on_field_z\\\" \\r\\n\\tlabel=\\\"On Field (z)\\\" \\r\\n\\tsize=\\\"40\\\" \\r\\n\\tmaxlength=\\\"150\\\" \\r\\n\\tdescription=\\\"Name of the field\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\treadonly=\\\"false\\\" \\r\\n\\tdisabled=\\\"false\\\" \\r\\n\\trequired=\\\"false\\\" \\r\\n\\tfilter=\\\"CMD\\\" \\r\\n\\tmessage=\\\"Error! Please add field name here.\\\" \\r\\n\\thint=\\\"n.mainfield\\\" \\r\\n\\/>\"', -2, '2015-05-22 12:40:23', '2015-05-22 16:18:35', 1, '', 514, '147f172a-a06d-4bb6-bccf-14e2a81c8441', '', '', '', '', ''),
(454, '', '', '', '', '', '', '', '', 64, '', 'CHAR', '', '', '', 'On Field (i)', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"on_field_i\\\" \\r\\n\\tlabel=\\\"On Field (i)\\\" \\r\\n\\tsize=\\\"40\\\" \\r\\n\\tmaxlength=\\\"150\\\" \\r\\n\\tdescription=\\\"Name of the field\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\treadonly=\\\"false\\\" \\r\\n\\tdisabled=\\\"false\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\tfilter=\\\"CMD\\\" \\r\\n\\tmessage=\\\"Error! Please add field name here.\\\" \\r\\n\\thint=\\\"a.mainfield\\\" \\r\\n\\/>\"', -2, '2015-05-22 12:45:14', '2015-05-22 16:18:39', 1, '', 499, '35543bd7-7327-476e-9050-a4e68d6ddeba', '', '', '', '', ''),
(455, '', '', '', '', '', '', '', '', 64, '', 'CHAR', '', '', '', 'Join Field (join)', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"join_field\\\"\\n\\tlabel=\\\"Join Field\\\"\\n\\tsize=\\\"40\\\"\\n\\tmaxlength=\\\"150\\\"\\n\\tdescription=\\\"Name of the field\\\"\\n\\tclass=\\\"text_area fieldLarge\\\"\\n\\treadonly=\\\"false\\\"\\n\\tdisabled=\\\"false\\\"\\n\\trequired=\\\"true\\\"\\n\\tfilter=\\\"CMD\\\"\\n\\tmessage=\\\"Error! Please add field name here.\\\"\\n\\thint=\\\"b.field\\\"\\n\\/>\"', 1, '2015-05-22 12:45:15', '2020-05-20 11:59:45', 2, '', 498, '753f632a-755b-4a44-ae7a-68b42a6d91cd', '', '', '', '', ''),
(456, '', '', '', '', '', '', '', '', 64, '', 'CHAR', '', '', '', 'Equal Field (c)', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"equal_field_c\\\" \\r\\n\\tlabel=\\\"Equal Field (c)\\\" \\r\\n\\tsize=\\\"40\\\" \\r\\n\\tmaxlength=\\\"150\\\" \\r\\n\\tdescription=\\\"Name of the field\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\treadonly=\\\"false\\\" \\r\\n\\tdisabled=\\\"false\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\tfilter=\\\"CMD\\\" \\r\\n\\tmessage=\\\"Error! Please add field name here.\\\" \\r\\n\\thint=\\\"c.field\\\" \\r\\n\\/>\"', -2, '2015-05-22 12:45:17', '2015-05-22 16:18:49', 1, '', 483, '8305d6a3-7930-4f83-82c1-27d33a66392b', '', '', '', '', ''),
(457, '', '', '', '', '', '', '', '', 64, '', 'CHAR', '', '', '', 'Equal Field (d)', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"equal_field_d\\\" \\r\\n\\tlabel=\\\"Equal Field (d)\\\" \\r\\n\\tsize=\\\"40\\\" \\r\\n\\tmaxlength=\\\"150\\\" \\r\\n\\tdescription=\\\"Name of the field\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\treadonly=\\\"false\\\" \\r\\n\\tdisabled=\\\"false\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\tfilter=\\\"CMD\\\" \\r\\n\\tmessage=\\\"Error! Please add field name here.\\\" \\r\\n\\thint=\\\"d.field\\\" \\r\\n\\/>\"', -2, '2015-05-22 12:45:19', '2015-05-22 16:18:53', 1, '', 484, 'f67f06a4-6061-4505-be08-b9d752b0856c', '', '', '', '', ''),
(458, '', '', '', '', '', '', '', '', 64, '', 'CHAR', '', '', '', 'Equal Field (e)', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"equal_field_e\\\" \\r\\n\\tlabel=\\\"Equal Field (e)\\\" \\r\\n\\tsize=\\\"40\\\" \\r\\n\\tmaxlength=\\\"150\\\" \\r\\n\\tdescription=\\\"Name of the field\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\treadonly=\\\"false\\\" \\r\\n\\tdisabled=\\\"false\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\tfilter=\\\"CMD\\\" \\r\\n\\tmessage=\\\"Error! Please add field name here.\\\" \\r\\n\\thint=\\\"e.field\\\" \\r\\n\\/>\"', -2, '2015-05-22 12:45:22', '2015-05-22 16:18:58', 1, '', 485, '40f62816-e89b-404a-828c-38cba3e7051b', '', '', '', '', ''),
(459, '', '', '', '', '', '', '', '', 64, '', 'CHAR', '', '', '', 'Equal Field (f)', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"equal_field_f\\\" \\r\\n\\tlabel=\\\"Equal Field (f)\\\" \\r\\n\\tsize=\\\"40\\\" \\r\\n\\tmaxlength=\\\"150\\\" \\r\\n\\tdescription=\\\"Name of the field\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\treadonly=\\\"false\\\" \\r\\n\\tdisabled=\\\"false\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\tfilter=\\\"CMD\\\" \\r\\n\\tmessage=\\\"Error! Please add field name here.\\\" \\r\\n\\thint=\\\"f.field\\\" \\r\\n\\/>\"', -2, '2015-05-22 12:50:58', '2015-05-22 16:19:03', 1, '', 486, 'fecbeb4a-d19b-46d2-a735-0ccc0400e291', '', '', '', '', ''),
(460, '', '', '', '', '', '', '', '', 64, '', 'CHAR', '', '', '', 'Equal Field (g)', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"equal_field_g\\\" \\r\\n\\tlabel=\\\"Equal Field (g)\\\" \\r\\n\\tsize=\\\"40\\\" \\r\\n\\tmaxlength=\\\"150\\\" \\r\\n\\tdescription=\\\"Name of the field\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\treadonly=\\\"false\\\" \\r\\n\\tdisabled=\\\"false\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\tfilter=\\\"CMD\\\" \\r\\n\\tmessage=\\\"Error! Please add field name here.\\\" \\r\\n\\thint=\\\"g.field\\\" \\r\\n\\/>\"', -2, '2015-05-22 12:51:07', '2015-05-22 16:19:07', 1, '', 487, '168e8eac-acba-4df5-ad95-e812da21cbf3', '', '', '', '', ''),
(461, '', '', '', '', '', '', '', '', 64, '', 'CHAR', '', '', '', 'Equal Field (h)', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"equal_field_h\\\" \\r\\n\\tlabel=\\\"Equal Field (h)\\\" \\r\\n\\tsize=\\\"40\\\" \\r\\n\\tmaxlength=\\\"150\\\" \\r\\n\\tdescription=\\\"Name of the field\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\treadonly=\\\"false\\\" \\r\\n\\tdisabled=\\\"false\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\tfilter=\\\"CMD\\\" \\r\\n\\tmessage=\\\"Error! Please add field name here.\\\" \\r\\n\\thint=\\\"h.field\\\" \\r\\n\\/>\"', -2, '2015-05-22 12:51:14', '2015-05-22 16:19:12', 1, '', 423, 'cf04bf21-1be6-4ca1-8b2d-71fbafff9687', '', '', '', '', ''),
(462, '', '', '', '', '', '', '', '', 64, '', 'CHAR', '', '', '', 'Equal Field (i)', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"equal_field_i\\\" \\r\\n\\tlabel=\\\"Equal Field (i)\\\" \\r\\n\\tsize=\\\"40\\\" \\r\\n\\tmaxlength=\\\"150\\\" \\r\\n\\tdescription=\\\"Name of the field\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\treadonly=\\\"false\\\" \\r\\n\\tdisabled=\\\"false\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\tfilter=\\\"CMD\\\" \\r\\n\\tmessage=\\\"Error! Please add field name here.\\\" \\r\\n\\thint=\\\"i.field\\\" \\r\\n\\/>\"', -2, '2015-05-22 12:51:24', '2015-05-22 16:19:20', 1, '', 488, '226761d7-4e8e-43d8-bfb1-9bd404e9204f', '', '', '', '', ''),
(463, '', '', '', '', '', '', '', '', 64, '', 'CHAR', '', '', '', 'Equal Field (j)', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"equal_field_j\\\" \\r\\n\\tlabel=\\\"Equal Field (j)\\\" \\r\\n\\tsize=\\\"40\\\" \\r\\n\\tmaxlength=\\\"150\\\" \\r\\n\\tdescription=\\\"Name of the field\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\treadonly=\\\"false\\\" \\r\\n\\tdisabled=\\\"false\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\tfilter=\\\"CMD\\\" \\r\\n\\tmessage=\\\"Error! Please add field name here.\\\" \\r\\n\\thint=\\\"j.field\\\" \\r\\n\\/>\"', -2, '2015-05-22 12:51:38', '2015-05-22 16:19:24', 1, '', 489, 'deae1fed-d4ad-4c98-8872-8776f1e23d0e', '', '', '', '', ''),
(464, '', '', '', '', '', '', '', '', 64, '', 'CHAR', '', '', '', 'Equal Field (k)', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"equal_field_k\\\" \\r\\n\\tlabel=\\\"Equal Field (k)\\\" \\r\\n\\tsize=\\\"40\\\" \\r\\n\\tmaxlength=\\\"150\\\" \\r\\n\\tdescription=\\\"Name of the field\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\treadonly=\\\"false\\\" \\r\\n\\tdisabled=\\\"false\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\tfilter=\\\"CMD\\\" \\r\\n\\tmessage=\\\"Error! Please add field name here.\\\" \\r\\n\\thint=\\\"k.field\\\" \\r\\n\\/>\"', -2, '2015-05-22 12:51:47', '2015-05-22 16:19:28', 1, '', 490, '7125e9c4-4420-41f1-855c-a244036b4696', '', '', '', '', ''),
(465, '', '', '', '', '', '', '', '', 64, '', 'CHAR', '', '', '', 'Equal Field (l)', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"equal_field_l\\\" \\r\\n\\tlabel=\\\"Equal Field (l)\\\" \\r\\n\\tsize=\\\"40\\\" \\r\\n\\tmaxlength=\\\"150\\\" \\r\\n\\tdescription=\\\"Name of the field\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\treadonly=\\\"false\\\" \\r\\n\\tdisabled=\\\"false\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\tfilter=\\\"CMD\\\" \\r\\n\\tmessage=\\\"Error! Please add field name here.\\\" \\r\\n\\thint=\\\"l.field\\\" \\r\\n\\/>\"', -2, '2015-05-22 12:51:55', '2015-05-22 16:19:31', 1, '', 491, '0efca137-de6d-4326-b0b0-0b02606e048e', '', '', '', '', ''),
(466, '', '', '', '', '', '', '', '', 64, '', 'CHAR', '', '', '', 'Equal Field (m)', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"equal_field_m\\\" \\r\\n\\tlabel=\\\"Equal Field (m)\\\" \\r\\n\\tsize=\\\"40\\\" \\r\\n\\tmaxlength=\\\"150\\\" \\r\\n\\tdescription=\\\"Name of the field\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\treadonly=\\\"false\\\" \\r\\n\\tdisabled=\\\"false\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\tfilter=\\\"CMD\\\" \\r\\n\\tmessage=\\\"Error! Please add field name here.\\\" \\r\\n\\thint=\\\"m.field\\\" \\r\\n\\/>\"', -2, '2015-05-22 12:52:04', '2015-05-22 16:19:36', 1, '', 492, 'c6b2772a-72ac-404c-8fa8-4a005f1273b6', '', '', '', '', ''),
(467, '', '', '', '', '', '', '', '', 64, '', 'CHAR', '', '', '', 'Equal Field (n)', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"equal_field_n\\\" \\r\\n\\tlabel=\\\"Equal Field (n)\\\" \\r\\n\\tsize=\\\"40\\\" \\r\\n\\tmaxlength=\\\"150\\\" \\r\\n\\tdescription=\\\"Name of the field\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\treadonly=\\\"false\\\" \\r\\n\\tdisabled=\\\"false\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\tfilter=\\\"CMD\\\" \\r\\n\\tmessage=\\\"Error! Please add field name here.\\\" \\r\\n\\thint=\\\"n.field\\\" \\r\\n\\/>\"', -2, '2015-05-22 12:52:14', '2015-05-22 16:19:43', 1, '', 493, '762b47cc-1dc6-44cf-9f82-0dee5661c9df', '', '', '', '', ''),
(468, '', '', '', '', '', '', '', '', 64, '', 'CHAR', '', '', '', 'Equal Field (o)', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"equal_field_o\\\" \\r\\n\\tlabel=\\\"Equal Field (o)\\\" \\r\\n\\tsize=\\\"40\\\" \\r\\n\\tmaxlength=\\\"150\\\" \\r\\n\\tdescription=\\\"Name of the field\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\treadonly=\\\"false\\\" \\r\\n\\tdisabled=\\\"false\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\tfilter=\\\"CMD\\\" \\r\\n\\tmessage=\\\"Error! Please add field name here.\\\" \\r\\n\\thint=\\\"o.field\\\" \\r\\n\\/>\"', -2, '2015-05-22 12:52:23', '2015-05-22 16:19:47', 1, '', 494, 'c6160caa-1969-4ce9-8015-8095e76d06ea', '', '', '', '', ''),
(469, '', '', '', '', '', '', '', '', 64, '', 'CHAR', '', '', '', 'Equal Field (p)', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"equal_field_p\\\" \\r\\n\\tlabel=\\\"Equal Field (p)\\\" \\r\\n\\tsize=\\\"40\\\" \\r\\n\\tmaxlength=\\\"150\\\" \\r\\n\\tdescription=\\\"Name of the field\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\treadonly=\\\"false\\\" \\r\\n\\tdisabled=\\\"false\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\tfilter=\\\"CMD\\\" \\r\\n\\tmessage=\\\"Error! Please add field name here.\\\" \\r\\n\\thint=\\\"p.field\\\" \\r\\n\\/>\"', -2, '2015-05-22 12:52:33', '2015-05-22 16:19:51', 1, '', 495, 'a34f6bd3-8682-4eb3-8640-06e210d45a6c', '', '', '', '', ''),
(470, '', '', '', '', '', '', '', '', 64, '', 'CHAR', '', '', '', 'Equal Field (q)', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"equal_field_q\\\" \\r\\n\\tlabel=\\\"Equal Field (q)\\\" \\r\\n\\tsize=\\\"40\\\" \\r\\n\\tmaxlength=\\\"150\\\" \\r\\n\\tdescription=\\\"Name of the field\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\treadonly=\\\"false\\\" \\r\\n\\tdisabled=\\\"false\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\tfilter=\\\"CMD\\\" \\r\\n\\tmessage=\\\"Error! Please add field name here.\\\" \\r\\n\\thint=\\\"q.field\\\" \\r\\n\\/>\"', -2, '2015-05-22 12:52:41', '2015-05-22 16:19:55', 1, '', 496, 'ec2d6163-675b-4e1d-907d-d0aeb0663a10', '', '', '', '', ''),
(471, '', '', '', '', '', '', '', '', 64, '', 'CHAR', '', '', '', 'Equal Field (r)', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"equal_field_r\\\" \\r\\n\\tlabel=\\\"Equal Field (r)\\\" \\r\\n\\tsize=\\\"40\\\" \\r\\n\\tmaxlength=\\\"150\\\" \\r\\n\\tdescription=\\\"Name of the field\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\treadonly=\\\"false\\\" \\r\\n\\tdisabled=\\\"false\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\tfilter=\\\"CMD\\\" \\r\\n\\tmessage=\\\"Error! Please add field name here.\\\" \\r\\n\\thint=\\\"r.field\\\" \\r\\n\\/>\"', -2, '2015-05-22 12:52:51', '2015-05-22 16:19:59', 1, '', 497, '8c1b4a6f-5731-4d91-a423-f42355034442', '', '', '', '', ''),
(472, '', '', '', '', '', '', '', '', 64, '', 'CHAR', '', '', '', 'Equal Field (s)', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"equal_field_s\\\" \\r\\n\\tlabel=\\\"Equal Field (s)\\\" \\r\\n\\tsize=\\\"40\\\" \\r\\n\\tmaxlength=\\\"150\\\" \\r\\n\\tdescription=\\\"Name of the field\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\treadonly=\\\"false\\\" \\r\\n\\tdisabled=\\\"false\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\tfilter=\\\"CMD\\\" \\r\\n\\tmessage=\\\"Error! Please add field name here.\\\" \\r\\n\\thint=\\\"s.field\\\" \\r\\n\\/>\"', -2, '2015-05-22 12:53:01', '2015-05-22 16:20:04', 1, '', 515, '01becaf5-25c8-4ace-9353-07b367e5a830', '', '', '', '', ''),
(473, '', '', '', '', '', '', '', '', 64, '', 'CHAR', '', '', '', 'Equal Field (t)', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"equal_field_t\\\" \\r\\n\\tlabel=\\\"Equal Field (t)\\\" \\r\\n\\tsize=\\\"40\\\" \\r\\n\\tmaxlength=\\\"150\\\" \\r\\n\\tdescription=\\\"Name of the field\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\treadonly=\\\"false\\\" \\r\\n\\tdisabled=\\\"false\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\tfilter=\\\"CMD\\\" \\r\\n\\tmessage=\\\"Error! Please add field name here.\\\" \\r\\n\\thint=\\\"t.field\\\" \\r\\n\\/>\"', -2, '2015-05-22 12:53:10', '2015-05-22 16:20:08', 1, '', 447, '9d540325-05bf-4ce4-9884-2f7da6bad26c', '', '', '', '', ''),
(474, '', '', '', '', '', '', '', '', 64, '', 'CHAR', '', '', '', 'Equal Field (u)', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"equal_field_u\\\" \\r\\n\\tlabel=\\\"Equal Field (u)\\\" \\r\\n\\tsize=\\\"40\\\" \\r\\n\\tmaxlength=\\\"150\\\" \\r\\n\\tdescription=\\\"Name of the field\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\treadonly=\\\"false\\\" \\r\\n\\tdisabled=\\\"false\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\tfilter=\\\"CMD\\\" \\r\\n\\tmessage=\\\"Error! Please add field name here.\\\" \\r\\n\\thint=\\\"u.field\\\" \\r\\n\\/>\"', -2, '2015-05-22 12:53:22', '2015-05-22 16:20:13', 1, '', 416, 'eddbee05-33a6-41ee-a71d-a4fbd2aa7dca', '', '', '', '', ''),
(475, '', '', '', '', '', '', '', '', 64, '', 'CHAR', '', '', '', 'Equal Field (v)', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"equal_field_v\\\" \\r\\n\\tlabel=\\\"Equal Field (v)\\\" \\r\\n\\tsize=\\\"40\\\" \\r\\n\\tmaxlength=\\\"150\\\" \\r\\n\\tdescription=\\\"Name of the field\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\treadonly=\\\"false\\\" \\r\\n\\tdisabled=\\\"false\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\tfilter=\\\"CMD\\\" \\r\\n\\tmessage=\\\"Error! Please add field name here.\\\" \\r\\n\\thint=\\\"v.field\\\" \\r\\n\\/>\"', -2, '2015-05-22 12:53:31', '2015-05-22 16:20:18', 1, '', 418, 'd1fd7796-e44f-4e04-b29a-ec6c807a9f43', '', '', '', '', ''),
(476, '', '', '', '', '', '', '', '', 64, '', 'CHAR', '', '', '', 'Equal Field (w)', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"equal_field_w\\\" \\r\\n\\tlabel=\\\"Equal Field (w)\\\" \\r\\n\\tsize=\\\"40\\\" \\r\\n\\tmaxlength=\\\"150\\\" \\r\\n\\tdescription=\\\"Name of the field\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\treadonly=\\\"false\\\" \\r\\n\\tdisabled=\\\"false\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\tfilter=\\\"CMD\\\" \\r\\n\\tmessage=\\\"Error! Please add field name here.\\\" \\r\\n\\thint=\\\"w.field\\\" \\r\\n\\/>\"', -2, '2015-05-22 12:53:39', '2015-05-22 16:20:23', 1, '', 419, '85498f9a-a805-434e-8f12-e6ef45973328', '', '', '', '', ''),
(477, '', '', '', '', '', '', '', '', 64, '', 'CHAR', '', '', '', 'Equal Field (x)', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"equal_field_x\\\" \\r\\n\\tlabel=\\\"Equal Field (x)\\\" \\r\\n\\tsize=\\\"40\\\" \\r\\n\\tmaxlength=\\\"150\\\" \\r\\n\\tdescription=\\\"Name of the field\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\treadonly=\\\"false\\\" \\r\\n\\tdisabled=\\\"false\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\tfilter=\\\"CMD\\\" \\r\\n\\tmessage=\\\"Error! Please add field name here.\\\" \\r\\n\\thint=\\\"x.field\\\" \\r\\n\\/>\"', -2, '2015-05-22 12:53:47', '2015-05-22 16:20:28', 1, '', 420, '2f426aa0-75c0-4c40-a075-77516da18df3', '', '', '', '', ''),
(478, '', '', '', '', '', '', '', '', 64, '', 'CHAR', '', '', '', 'Equal Field (y)', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"equal_field_y\\\" \\r\\n\\tlabel=\\\"Equal Field (y)\\\" \\r\\n\\tsize=\\\"40\\\" \\r\\n\\tmaxlength=\\\"150\\\" \\r\\n\\tdescription=\\\"Name of the field\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\treadonly=\\\"false\\\" \\r\\n\\tdisabled=\\\"false\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\tfilter=\\\"CMD\\\" \\r\\n\\tmessage=\\\"Error! Please add field name here.\\\" \\r\\n\\thint=\\\"y.field\\\" \\r\\n\\/>\"', -2, '2015-05-22 12:53:56', '2015-05-22 16:20:32', 1, '', 422, '246e0ab2-144f-4cd6-8471-c1ab0cdc250f', '', '', '', '', ''),
(479, '', '', '', '', '', '', '', '', 64, '', 'CHAR', '', '', '', 'Equal Field (z)', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"equal_field_z\\\" \\r\\n\\tlabel=\\\"Equal Field (z)\\\" \\r\\n\\tsize=\\\"40\\\" \\r\\n\\tmaxlength=\\\"150\\\" \\r\\n\\tdescription=\\\"Name of the field\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\treadonly=\\\"false\\\" \\r\\n\\tdisabled=\\\"false\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\tfilter=\\\"CMD\\\" \\r\\n\\tmessage=\\\"Error! Please add field name here.\\\" \\r\\n\\thint=\\\"z.field\\\" \\r\\n\\/>\"', -2, '2015-05-22 12:54:07', '2015-05-22 16:20:38', 1, '', 424, '90d27dac-8d1b-4719-966b-a0183c9efb33', '', '', '', '', ''),
(480, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Select Fields (join)', 'NOT NULL', '', 25, '\"<field \\r\\n\\ttype=\\\"textarea\\\" \\r\\n\\tname=\\\"selection\\\" \\r\\n\\tlabel=\\\"Selection\\\" \\r\\n\\trows=\\\"22\\\" \\r\\n\\tcols=\\\"30\\\"\\r\\n\\tdescription=\\\"Fields to be selected from table.\\\" \\r\\n\\tclass=\\\"text_area span12\\\" \\r\\n\\tfilter=\\\"HTML\\\" \\r\\n\\thint=\\\"b.field AS field\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\/>\"', 1, '2015-05-22 12:58:37', '2017-09-25 20:41:03', 2, '', 354, 'e80df791-9e30-47ac-a45e-8dfc493fde42', '', '', '', '', ''),
(481, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Select Fields (c)', 'NOT NULL', '', 25, '\"<field \\r\\n\\ttype=\\\"textarea\\\" \\r\\n\\tname=\\\"selection_c\\\" \\r\\n\\tlabel=\\\"Selection (c)\\\" \\r\\n\\trows=\\\"22\\\" \\r\\n\\tcols=\\\"30\\\"\\r\\n\\tdescription=\\\"Fields to be selected from table.\\\" \\r\\n\\tclass=\\\"text_area span12\\\" \\r\\n\\tfilter=\\\"HTML\\\" \\r\\n\\thint=\\\"c.field AS field\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\/>\"', -2, '2015-05-22 12:58:51', '2015-05-22 13:03:04', 1, '', 353, '7a040e89-6fd7-4bd0-8d11-d0071d83b155', '', '', '', '', ''),
(482, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Select Fields (d)', 'NOT NULL', '', 25, '\"<field \\r\\n\\ttype=\\\"textarea\\\" \\r\\n\\tname=\\\"selection_d\\\" \\r\\n\\tlabel=\\\"Selection (d)\\\" \\r\\n\\trows=\\\"22\\\" \\r\\n\\tcols=\\\"30\\\"\\r\\n\\tdescription=\\\"Fields to be selected from table.\\\" \\r\\n\\tclass=\\\"text_area span12\\\" \\r\\n\\tfilter=\\\"HTML\\\" \\r\\n\\thint=\\\"d.field AS field\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\/>\"', -2, '2015-05-22 12:59:05', '2015-05-22 13:03:14', 1, '', 352, '87be8d07-e333-4c30-8f2c-6efac5fccf32', '', '', '', '', ''),
(483, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Select Fields (e)', 'NOT NULL', '', 25, '\"<field \\r\\n\\ttype=\\\"textarea\\\" \\r\\n\\tname=\\\"selection_e\\\" \\r\\n\\tlabel=\\\"Selection (e)\\\" \\r\\n\\trows=\\\"22\\\" \\r\\n\\tcols=\\\"30\\\"\\r\\n\\tdescription=\\\"Fields to be selected from table.\\\" \\r\\n\\tclass=\\\"text_area span12\\\" \\r\\n\\tfilter=\\\"HTML\\\" \\r\\n\\thint=\\\"e.field AS field\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\/>\"', -2, '2015-05-22 12:59:19', '2015-05-22 13:03:28', 1, '', 351, '439b1413-b54e-4da0-af46-3dcfa43f35bb', '', '', '', '', ''),
(484, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Select Fields (f)', 'NOT NULL', '', 25, '\"<field \\r\\n\\ttype=\\\"textarea\\\" \\r\\n\\tname=\\\"selection_f\\\" \\r\\n\\tlabel=\\\"Selection (f)\\\" \\r\\n\\trows=\\\"22\\\" \\r\\n\\tcols=\\\"30\\\"\\r\\n\\tdescription=\\\"Fields to be selected from table.\\\" \\r\\n\\tclass=\\\"text_area span12\\\" \\r\\n\\tfilter=\\\"HTML\\\" \\r\\n\\thint=\\\"f.field AS field\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\/>\"', -2, '2015-05-22 12:59:28', '2015-05-22 13:03:35', 1, '', 350, '9e4f9831-775d-46c8-8988-4154f5551aad', '', '', '', '', ''),
(485, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Select Fields (g)', 'NOT NULL', '', 25, '\"<field \\r\\n\\ttype=\\\"textarea\\\" \\r\\n\\tname=\\\"selection_g\\\" \\r\\n\\tlabel=\\\"Selection (g)\\\" \\r\\n\\trows=\\\"22\\\" \\r\\n\\tcols=\\\"30\\\"\\r\\n\\tdescription=\\\"Fields to be selected from table.\\\" \\r\\n\\tclass=\\\"text_area span12\\\" \\r\\n\\tfilter=\\\"HTML\\\" \\r\\n\\thint=\\\"g.field AS field\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\/>\"', -2, '2015-05-22 12:59:38', '2015-05-22 13:03:47', 1, '', 357, '9f909da0-64d6-4f6d-9a89-b2c5d6376ab7', '', '', '', '', ''),
(486, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Select Fields (h)', 'NOT NULL', '', 25, '\"<field \\r\\n\\ttype=\\\"textarea\\\" \\r\\n\\tname=\\\"selection_h\\\" \\r\\n\\tlabel=\\\"Selection (h)\\\" \\r\\n\\trows=\\\"22\\\" \\r\\n\\tcols=\\\"30\\\"\\r\\n\\tdescription=\\\"Fields to be selected from table.\\\" \\r\\n\\tclass=\\\"text_area span12\\\" \\r\\n\\tfilter=\\\"HTML\\\" \\r\\n\\thint=\\\"h.field AS field\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\/>\"', -2, '2015-05-22 12:59:47', '2015-05-22 13:03:58', 1, '', 348, 'b8be0723-08d0-4be5-b4a6-55f7d810f65e', '', '', '', '', ''),
(487, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Select Fields (i)', 'NOT NULL', '', 25, '\"<field \\r\\n\\ttype=\\\"textarea\\\" \\r\\n\\tname=\\\"selection_i\\\" \\r\\n\\tlabel=\\\"Selection (i)\\\" \\r\\n\\trows=\\\"22\\\" \\r\\n\\tcols=\\\"30\\\"\\r\\n\\tdescription=\\\"Fields to be selected from table.\\\" \\r\\n\\tclass=\\\"text_area span12\\\" \\r\\n\\tfilter=\\\"HTML\\\" \\r\\n\\thint=\\\"i.field AS field\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\/>\"', -2, '2015-05-22 12:59:56', '2015-05-22 13:05:52', 1, '', 347, '82e039f3-988a-4e17-a3f3-e74192abc222', '', '', '', '', ''),
(488, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Select Fields (j)', 'NOT NULL', '', 25, '\"<field \\r\\n\\ttype=\\\"textarea\\\" \\r\\n\\tname=\\\"selection_j\\\" \\r\\n\\tlabel=\\\"Selection (j)\\\" \\r\\n\\trows=\\\"22\\\" \\r\\n\\tcols=\\\"30\\\"\\r\\n\\tdescription=\\\"Fields to be selected from table.\\\" \\r\\n\\tclass=\\\"text_area span12\\\" \\r\\n\\tfilter=\\\"HTML\\\" \\r\\n\\thint=\\\"j.field AS field\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\/>\"', -2, '2015-05-22 13:00:08', '2015-05-22 13:04:38', 1, '', 346, '01a441f6-b8f2-430d-84c0-c57674038e66', '', '', '', '', ''),
(489, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Select Fields (k)', 'NOT NULL', '', 25, '\"<field \\r\\n\\ttype=\\\"textarea\\\" \\r\\n\\tname=\\\"selection_k\\\" \\r\\n\\tlabel=\\\"Selection (k)\\\" \\r\\n\\trows=\\\"22\\\" \\r\\n\\tcols=\\\"30\\\"\\r\\n\\tdescription=\\\"Fields to be selected from table.\\\" \\r\\n\\tclass=\\\"text_area span12\\\" \\r\\n\\tfilter=\\\"HTML\\\" \\r\\n\\thint=\\\"k.field AS field\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\/>\"', -2, '2015-05-22 13:00:17', '2015-05-22 13:04:32', 1, '', 356, 'afb6ea40-50fd-40e4-ba4c-411e239c3d47', '', '', '', '', ''),
(490, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Select Fields (l)', 'NOT NULL', '', 25, '\"<field \\r\\n\\ttype=\\\"textarea\\\" \\r\\n\\tname=\\\"selection_l\\\" \\r\\n\\tlabel=\\\"Selection (l)\\\" \\r\\n\\trows=\\\"22\\\" \\r\\n\\tcols=\\\"30\\\"\\r\\n\\tdescription=\\\"Fields to be selected from table.\\\" \\r\\n\\tclass=\\\"text_area span12\\\" \\r\\n\\tfilter=\\\"HTML\\\" \\r\\n\\thint=\\\"l.field AS field\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\/>\"', -2, '2015-05-22 13:00:26', '2015-05-22 13:04:50', 1, '', 332, '57be6c4e-37a0-4bd3-a1d7-ff8dfa36785f', '', '', '', '', ''),
(491, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Select Fields (m)', 'NOT NULL', '', 25, '\"<field \\r\\n\\ttype=\\\"textarea\\\" \\r\\n\\tname=\\\"selection_m\\\" \\r\\n\\tlabel=\\\"Selection (m)\\\" \\r\\n\\trows=\\\"22\\\" \\r\\n\\tcols=\\\"30\\\"\\r\\n\\tdescription=\\\"Fields to be selected from table.\\\" \\r\\n\\tclass=\\\"text_area span12\\\" \\r\\n\\tfilter=\\\"HTML\\\" \\r\\n\\thint=\\\"m.field AS field\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\/>\"', -2, '2015-05-22 13:00:36', '2015-05-22 13:06:01', 1, '', 345, '595445eb-9965-431a-96fb-df5b2f6f58a4', '', '', '', '', ''),
(492, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'DB Select Fields (main)', 'NOT NULL', '', 25, '\"<field \\r\\n\\ttype=\\\"textarea\\\" \\r\\n\\tname=\\\"db_selection\\\" \\r\\n\\tlabel=\\\"Selection\\\" \\r\\n\\trows=\\\"22\\\" \\r\\n\\tcols=\\\"30\\\"\\r\\n\\tdescription=\\\"Fields to be selected from table.\\\" \\r\\n\\tclass=\\\"text_area span12\\\" \\r\\n\\tfilter=\\\"HTML\\\" \\r\\n\\thint=\\\"n.field AS field\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\/>\"', 1, '2015-05-22 13:00:45', '2015-08-25 21:15:22', 1, '', 349, '661c16f9-71be-41e2-8428-efd5509e6291', '', '', '', '', ''),
(493, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Select Fields (o)', 'NOT NULL', '', 25, '\"<field \\r\\n\\ttype=\\\"textarea\\\" \\r\\n\\tname=\\\"selection_o\\\" \\r\\n\\tlabel=\\\"Selection (o)\\\" \\r\\n\\trows=\\\"22\\\" \\r\\n\\tcols=\\\"30\\\"\\r\\n\\tdescription=\\\"Fields to be selected from table.\\\" \\r\\n\\tclass=\\\"text_area span12\\\" \\r\\n\\tfilter=\\\"HTML\\\" \\r\\n\\thint=\\\"o.field AS field\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\/>\"', -2, '2015-05-22 13:01:15', '2015-05-22 13:06:13', 1, '', 337, '9ce22415-8dcc-4a7e-9e65-49a055a00e02', '', '', '', '', ''),
(494, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Select Fields (p)', 'NOT NULL', '', 25, '\"<field \\r\\n\\ttype=\\\"textarea\\\" \\r\\n\\tname=\\\"selection_p\\\" \\r\\n\\tlabel=\\\"Selection (p)\\\" \\r\\n\\trows=\\\"22\\\" \\r\\n\\tcols=\\\"30\\\"\\r\\n\\tdescription=\\\"Fields to be selected from table.\\\" \\r\\n\\tclass=\\\"text_area span12\\\" \\r\\n\\tfilter=\\\"HTML\\\" \\r\\n\\thint=\\\"p.field AS field\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\/>\"', -2, '2015-05-22 13:06:28', '2015-05-22 13:06:13', 1, '', 355, '541bafda-94b3-4d1e-861b-f546327c44a8', '', '', '', '', ''),
(495, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Select Fields (q)', 'NOT NULL', '', 25, '\"<field \\r\\n\\ttype=\\\"textarea\\\" \\r\\n\\tname=\\\"selection_q\\\" \\r\\n\\tlabel=\\\"Selection (q)\\\" \\r\\n\\trows=\\\"22\\\" \\r\\n\\tcols=\\\"30\\\"\\r\\n\\tdescription=\\\"Fields to be selected from table.\\\" \\r\\n\\tclass=\\\"text_area span12\\\" \\r\\n\\tfilter=\\\"HTML\\\" \\r\\n\\thint=\\\"q.field AS field\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\/>\"', -2, '2015-05-22 13:06:38', '2015-05-22 13:06:13', 1, '', 344, '8b8b1f5c-01cf-420b-b0de-30db8e612cde', '', '', '', '', ''),
(496, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Select Fields (r)', 'NOT NULL', '', 25, '\"<field \\r\\n\\ttype=\\\"textarea\\\" \\r\\n\\tname=\\\"selection_r\\\" \\r\\n\\tlabel=\\\"Selection (r)\\\" \\r\\n\\trows=\\\"22\\\" \\r\\n\\tcols=\\\"30\\\"\\r\\n\\tdescription=\\\"Fields to be selected from table.\\\" \\r\\n\\tclass=\\\"text_area span12\\\" \\r\\n\\tfilter=\\\"HTML\\\" \\r\\n\\thint=\\\"r.field AS field\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\/>\"', -2, '2015-05-22 13:06:51', '2015-05-22 13:06:13', 1, '', 343, '1276ac67-a9f8-4e91-aa43-84c933b54e99', '', '', '', '', ''),
(497, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Select Fields (s)', 'NOT NULL', '', 25, '\"<field \\r\\n\\ttype=\\\"textarea\\\" \\r\\n\\tname=\\\"selection_s\\\" \\r\\n\\tlabel=\\\"Selection (s)\\\" \\r\\n\\trows=\\\"22\\\" \\r\\n\\tcols=\\\"30\\\"\\r\\n\\tdescription=\\\"Fields to be selected from table.\\\" \\r\\n\\tclass=\\\"text_area span12\\\" \\r\\n\\tfilter=\\\"HTML\\\" \\r\\n\\thint=\\\"s.field AS field\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\/>\"', -2, '2015-05-22 13:07:03', '2015-05-22 13:06:13', 1, '', 342, 'cb5051c0-e3a5-42a0-b9bc-a9e65f95d4bd', '', '', '', '', ''),
(498, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Select Fields (t)', 'NOT NULL', '', 25, '\"<field \\r\\n\\ttype=\\\"textarea\\\" \\r\\n\\tname=\\\"selection_t\\\" \\r\\n\\tlabel=\\\"Selection (t)\\\" \\r\\n\\trows=\\\"22\\\" \\r\\n\\tcols=\\\"30\\\"\\r\\n\\tdescription=\\\"Fields to be selected from table.\\\" \\r\\n\\tclass=\\\"text_area span12\\\" \\r\\n\\tfilter=\\\"HTML\\\" \\r\\n\\thint=\\\"t.field AS field\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\/>\"', -2, '2015-05-22 13:07:14', '2015-05-22 13:06:13', 1, '', 333, 'a8dbedb3-47ae-40f1-9d16-3d8831725574', '', '', '', '', ''),
(499, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Select Fields (u)', 'NOT NULL', '', 25, '\"<field \\r\\n\\ttype=\\\"textarea\\\" \\r\\n\\tname=\\\"selection_u\\\" \\r\\n\\tlabel=\\\"Selection (u)\\\" \\r\\n\\trows=\\\"22\\\" \\r\\n\\tcols=\\\"30\\\"\\r\\n\\tdescription=\\\"Fields to be selected from table.\\\" \\r\\n\\tclass=\\\"text_area span12\\\" \\r\\n\\tfilter=\\\"HTML\\\" \\r\\n\\thint=\\\"u.field AS field\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\/>\"', -2, '2015-05-22 13:07:26', '2015-05-22 13:06:13', 1, '', 334, '1f413830-7870-4e96-bcc9-f35dbb5a9c3d', '', '', '', '', ''),
(500, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Select Fields (v)', 'NOT NULL', '', 25, '\"<field \\r\\n\\ttype=\\\"textarea\\\" \\r\\n\\tname=\\\"selection_v\\\" \\r\\n\\tlabel=\\\"Selection (v)\\\" \\r\\n\\trows=\\\"22\\\" \\r\\n\\tcols=\\\"30\\\"\\r\\n\\tdescription=\\\"Fields to be selected from table.\\\" \\r\\n\\tclass=\\\"text_area span12\\\" \\r\\n\\tfilter=\\\"HTML\\\" \\r\\n\\thint=\\\"v.field AS field\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\/>\"', -2, '2015-05-22 13:07:38', '2015-05-22 13:06:13', 1, '', 335, '5b324b01-5ee4-4ee2-b058-6b0ee4662a11', '', '', '', '', ''),
(501, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Select Fields (w)', 'NOT NULL', '', 25, '\"<field \\r\\n\\ttype=\\\"textarea\\\" \\r\\n\\tname=\\\"selection_w\\\" \\r\\n\\tlabel=\\\"Selection (w)\\\" \\r\\n\\trows=\\\"22\\\" \\r\\n\\tcols=\\\"30\\\"\\r\\n\\tdescription=\\\"Fields to be selected from table.\\\" \\r\\n\\tclass=\\\"text_area span12\\\" \\r\\n\\tfilter=\\\"HTML\\\" \\r\\n\\thint=\\\"w.field AS field\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\/>\"', -2, '2015-05-22 13:07:50', '2015-05-22 13:06:13', 1, '', 336, 'a2d7ce0a-8d5b-4ca2-9e0f-832f8e5aad7f', '', '', '', '', ''),
(502, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Select Fields (x)', 'NOT NULL', '', 25, '\"<field \\r\\n\\ttype=\\\"textarea\\\" \\r\\n\\tname=\\\"selection_x\\\" \\r\\n\\tlabel=\\\"Selection (x)\\\" \\r\\n\\trows=\\\"22\\\" \\r\\n\\tcols=\\\"30\\\"\\r\\n\\tdescription=\\\"Fields to be selected from table.\\\" \\r\\n\\tclass=\\\"text_area span12\\\" \\r\\n\\tfilter=\\\"HTML\\\" \\r\\n\\thint=\\\"x.field AS field\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\/>\"', -2, '2015-05-22 13:08:00', '2015-05-22 13:06:13', 1, '', 338, '717cce83-c321-4f05-b54e-501c566711e7', '', '', '', '', ''),
(503, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Select Fields (y)', 'NOT NULL', '', 25, '\"<field \\r\\n\\ttype=\\\"textarea\\\" \\r\\n\\tname=\\\"selection_y\\\" \\r\\n\\tlabel=\\\"Selection (y)\\\" \\r\\n\\trows=\\\"22\\\" \\r\\n\\tcols=\\\"30\\\"\\r\\n\\tdescription=\\\"Fields to be selected from table.\\\" \\r\\n\\tclass=\\\"text_area span12\\\" \\r\\n\\tfilter=\\\"HTML\\\" \\r\\n\\thint=\\\"y.field AS field\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\/>\"', -2, '2015-05-22 13:08:11', '2015-05-22 13:06:13', 1, '', 339, 'f4f14188-efcc-41c8-a297-2e323b5e30bc', '', '', '', '', ''),
(504, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Select Fields (z)', 'NOT NULL', '', 25, '\"<field \\r\\n\\ttype=\\\"textarea\\\" \\r\\n\\tname=\\\"selection_z\\\" \\r\\n\\tlabel=\\\"Selection (z)\\\" \\r\\n\\trows=\\\"22\\\" \\r\\n\\tcols=\\\"30\\\"\\r\\n\\tdescription=\\\"Fields to be selected from table.\\\" \\r\\n\\tclass=\\\"text_area span12\\\" \\r\\n\\tfilter=\\\"HTML\\\" \\r\\n\\thint=\\\"z.field AS field\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\/>\"', -2, '2015-05-22 13:08:23', '2015-05-22 13:06:13', 1, '', 340, '0d0f66eb-c551-488b-a54a-13bd895a0c6b', '', '', '', '', ''),
(505, '', '', '', '', '', '', '', '', 1, '', 'INT', '', '', '', 'Table Type (join)', 'NOT NULL', '', 11, '\"<field \\r\\n\\ttype=\\\"list\\\" \\r\\n\\tname=\\\"type\\\" \\r\\n\\tlabel=\\\"Type\\\" \\r\\n\\tdescription=\\\"\\\" \\r\\n\\tclass=\\\"list_class fieldMedium\\\" \\r\\n\\tmultiple=\\\"false\\\" \\r\\n\\tfilter=\\\"INT\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\toption=\\\"1|Join LEFT,2|Join LEFT OUTER,3|Join INNER,4|Join RIGHT,5|Join RIGHT OUTER\\\" \\r\\n\\tdefault=\\\"1\\\" \\r\\n\\/>\"', 1, '2015-05-22 13:25:50', '2015-08-25 21:15:22', 1, '', 437, '69f3381d-21b2-460a-9bfc-28db39b4c9dd', '', '', '', '', ''),
(506, '', '', '', '', '', '', '', '', 1, '', 'INT', '', '', '', 'Table Type (c)', 'NOT NULL', '', 11, '\"<field \\r\\n\\ttype=\\\"list\\\" \\r\\n\\tname=\\\"type_c\\\" \\r\\n\\tlabel=\\\"Type (c)\\\" \\r\\n\\tdescription=\\\"\\\" \\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\tmultiple=\\\"false\\\" \\r\\n\\tfilter=\\\"INT\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\toption=\\\"2|Join LEFT,3|Join LEFT OUTER,4|Join INNER,5|Join RIGHT,6|Join RIGHT OUTER\\\" \\r\\n\\tdefault=\\\"2\\\" \\r\\n\\/>\"', -2, '2015-05-22 13:25:59', '2015-05-22 16:07:11', 1, '', 438, '349626b2-9c18-48d7-a881-8c2a97488b7c', '', '', '', '', ''),
(507, '', '', '', '', '', '', '', '', 1, '', 'INT', '', '', '', 'Table Type (d)', 'NOT NULL', '', 11, '\"<field \\r\\n\\ttype=\\\"list\\\" \\r\\n\\tname=\\\"type_d\\\" \\r\\n\\tlabel=\\\"Type (d)\\\" \\r\\n\\tdescription=\\\"\\\" \\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\tmultiple=\\\"false\\\" \\r\\n\\tfilter=\\\"INT\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\toption=\\\"2|Join LEFT,3|Join LEFT OUTER,4|Join INNER,5|Join RIGHT,6|Join RIGHT OUTER\\\" \\r\\n\\tdefault=\\\"2\\\" \\r\\n\\/>\"', -2, '2015-05-22 13:26:08', '2015-05-22 16:07:17', 1, '', 439, 'e8db334d-c382-41c7-9734-aa92c9d6e9c5', '', '', '', '', ''),
(508, '', '', '', '', '', '', '', '', 1, '', 'INT', '', '', '', 'Table Type (e)', 'NOT NULL', '', 11, '\"<field \\r\\n\\ttype=\\\"list\\\" \\r\\n\\tname=\\\"type_e\\\" \\r\\n\\tlabel=\\\"Type (e)\\\" \\r\\n\\tdescription=\\\"\\\" \\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\tmultiple=\\\"false\\\" \\r\\n\\tfilter=\\\"INT\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\toption=\\\"2|Join LEFT,3|Join LEFT OUTER,4|Join INNER,5|Join RIGHT,6|Join RIGHT OUTER\\\" \\r\\n\\tdefault=\\\"2\\\" \\r\\n\\/>\"', -2, '2015-05-22 13:26:17', '2015-05-22 16:07:21', 1, '', 421, '1bb17422-7656-44b2-992c-d235b6b9d339', '', '', '', '', ''),
(509, '', '', '', '', '', '', '', '', 1, '', 'INT', '', '', '', 'Table Type (f)', 'NOT NULL', '', 11, '\"<field \\r\\n\\ttype=\\\"list\\\" \\r\\n\\tname=\\\"type_f\\\" \\r\\n\\tlabel=\\\"Type (f)\\\" \\r\\n\\tdescription=\\\"\\\" \\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\tmultiple=\\\"false\\\" \\r\\n\\tfilter=\\\"INT\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\toption=\\\"2|Join LEFT,3|Join LEFT OUTER,4|Join INNER,5|Join RIGHT,6|Join RIGHT OUTER\\\" \\r\\n\\tdefault=\\\"2\\\" \\r\\n\\/>\"', -2, '2015-05-22 13:26:26', '2015-05-22 16:07:25', 1, '', 440, '0e2143b9-da10-440c-89f8-f8159c1b8f0a', '', '', '', '', ''),
(510, '', '', '', '', '', '', '', '', 1, '', 'INT', '', '', '', 'Table Type (g)', 'NOT NULL', '', 11, '\"<field \\r\\n\\ttype=\\\"list\\\" \\r\\n\\tname=\\\"type_g\\\" \\r\\n\\tlabel=\\\"Type (g)\\\" \\r\\n\\tdescription=\\\"\\\" \\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\tmultiple=\\\"false\\\" \\r\\n\\tfilter=\\\"INT\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\toption=\\\"2|Join LEFT,3|Join LEFT OUTER,4|Join INNER,5|Join RIGHT,6|Join RIGHT OUTER\\\" \\r\\n\\tdefault=\\\"2\\\" \\r\\n\\/>\"', -2, '2015-05-22 13:26:34', '2015-05-22 16:07:30', 1, '', 441, '93fcf7d9-7dcb-4344-bd29-53d5676aa169', '', '', '', '', ''),
(511, '', '', '', '', '', '', '', '', 1, '', 'INT', '', '', '', 'Table Type (h)', 'NOT NULL', '', 11, '\"<field \\r\\n\\ttype=\\\"list\\\" \\r\\n\\tname=\\\"type_h\\\" \\r\\n\\tlabel=\\\"Type (h)\\\" \\r\\n\\tdescription=\\\"\\\" \\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\tmultiple=\\\"false\\\" \\r\\n\\tfilter=\\\"INT\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\toption=\\\"2|Join LEFT,3|Join LEFT OUTER,4|Join INNER,5|Join RIGHT,6|Join RIGHT OUTER\\\" \\r\\n\\tdefault=\\\"2\\\" \\r\\n\\/>\"', -2, '2015-05-22 13:26:43', '2015-05-22 16:07:35', 1, '', 442, '942b152c-8480-482b-b9b5-b37ae5c01062', '', '', '', '', ''),
(512, '', '', '', '', '', '', '', '', 1, '', 'INT', '', '', '', 'Table Type (i)', 'NOT NULL', '', 11, '\"<field \\r\\n\\ttype=\\\"list\\\" \\r\\n\\tname=\\\"type_i\\\" \\r\\n\\tlabel=\\\"Type (i)\\\" \\r\\n\\tdescription=\\\"\\\" \\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\tmultiple=\\\"false\\\" \\r\\n\\tfilter=\\\"INT\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\toption=\\\"2|Join LEFT,3|Join LEFT OUTER,4|Join INNER,5|Join RIGHT,6|Join RIGHT OUTER\\\" \\r\\n\\tdefault=\\\"2\\\" \\r\\n\\/>\"', -2, '2015-05-22 13:26:53', '2015-05-22 16:07:38', 1, '', 443, 'e2b18167-058d-4f36-9576-28ca15a6af17', '', '', '', '', ''),
(513, '', '', '', '', '', '', '', '', 1, '', 'INT', '', '', '', 'Table Type (j)', 'NOT NULL', '', 11, '\"<field \\r\\n\\ttype=\\\"list\\\" \\r\\n\\tname=\\\"type_j\\\" \\r\\n\\tlabel=\\\"Type (j)\\\" \\r\\n\\tdescription=\\\"\\\" \\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\tmultiple=\\\"false\\\" \\r\\n\\tfilter=\\\"INT\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\toption=\\\"2|Join LEFT,3|Join LEFT OUTER,4|Join INNER,5|Join RIGHT,6|Join RIGHT OUTER\\\" \\r\\n\\tdefault=\\\"2\\\" \\r\\n\\/>\"', -2, '2015-05-22 13:28:58', '2015-05-22 16:07:42', 1, '', 444, '0b0eb245-4c36-440b-82ea-c28501384871', '', '', '', '', ''),
(514, '', '', '', '', '', '', '', '', 1, '', 'INT', '', '', '', 'Table Type (k)', 'NOT NULL', '', 11, '\"<field \\r\\n\\ttype=\\\"list\\\" \\r\\n\\tname=\\\"type_k\\\" \\r\\n\\tlabel=\\\"Type (k)\\\" \\r\\n\\tdescription=\\\"\\\" \\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\tmultiple=\\\"false\\\" \\r\\n\\tfilter=\\\"INT\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\toption=\\\"2|Join LEFT,3|Join LEFT OUTER,4|Join INNER,5|Join RIGHT,6|Join RIGHT OUTER\\\" \\r\\n\\tdefault=\\\"2\\\" \\r\\n\\/>\"', -2, '2015-05-22 13:29:13', '2015-05-22 16:07:46', 1, '', 445, '21ba090b-448a-40c5-b4a7-5fcd12b1de78', '', '', '', '', ''),
(515, '', '', '', '', '', '', '', '', 1, '', 'INT', '', '', '', 'Table Type (l)', 'NOT NULL', '', 11, '\"<field \\r\\n\\ttype=\\\"list\\\" \\r\\n\\tname=\\\"type_l\\\" \\r\\n\\tlabel=\\\"Type (l)\\\" \\r\\n\\tdescription=\\\"\\\" \\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\tmultiple=\\\"false\\\" \\r\\n\\tfilter=\\\"INT\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\toption=\\\"2|Join LEFT,3|Join LEFT OUTER,4|Join INNER,5|Join RIGHT,6|Join RIGHT OUTER\\\" \\r\\n\\tdefault=\\\"2\\\" \\r\\n\\/>\"', -2, '2015-05-22 13:29:22', '2015-05-22 16:07:50', 1, '', 436, 'ed1208fb-a1ff-409d-9656-c7518892c884', '', '', '', '', ''),
(516, '', '', '', '', '', '', '', '', 1, '', 'INT', '', '', '', 'Table Type (m)', 'NOT NULL', '', 11, '\"<field \\r\\n\\ttype=\\\"list\\\" \\r\\n\\tname=\\\"type_m\\\" \\r\\n\\tlabel=\\\"Type (m)\\\" \\r\\n\\tdescription=\\\"\\\" \\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\tmultiple=\\\"false\\\" \\r\\n\\tfilter=\\\"INT\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\toption=\\\"2|Join LEFT,3|Join LEFT OUTER,4|Join INNER,5|Join RIGHT,6|Join RIGHT OUTER\\\" \\r\\n\\tdefault=\\\"2\\\" \\r\\n\\/>\"', -2, '2015-05-22 13:29:35', '2015-05-22 16:07:54', 1, '', 435, '048d2d76-505c-4cc9-b2d7-219d4b3f0bff', '', '', '', '', ''),
(517, '', '', '', '', '', '', '', '', 1, '', 'INT', '', '', '', 'Table Type (join)', 'NOT NULL', '', 11, '\"<field \\r\\n\\ttype=\\\"list\\\" \\r\\n\\tname=\\\"type_n\\\" \\r\\n\\tlabel=\\\"Type\\\" \\r\\n\\tdescription=\\\"Only one main Table per\\/dynamic get.\\\" \\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\tmultiple=\\\"false\\\" \\r\\n\\tfilter=\\\"INT\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\toption=\\\"1|MAIN,2|Join LEFT,3|Join LEFT OUTER,4|Join INNER,5|Join RIGHT,6|Join RIGHT OUTER\\\" \\r\\n\\tdefault=\\\"2\\\" \\r\\n\\/>\"', -2, '2015-05-22 13:29:57', '2015-05-23 12:03:02', 1, '', 94, '9f78bdc9-0297-409a-b877-78749b864e92', '', '', '', '', ''),
(518, '', '', '', '', '', '', '', '', 1, '', 'INT', '', '', '', 'Table Type (o)', 'NOT NULL', '', 11, '\"<field \\r\\n\\ttype=\\\"list\\\" \\r\\n\\tname=\\\"type_o\\\" \\r\\n\\tlabel=\\\"Type (o)\\\" \\r\\n\\tdescription=\\\"\\\" \\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\tmultiple=\\\"false\\\" \\r\\n\\tfilter=\\\"INT\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\toption=\\\"2|Join LEFT,3|Join LEFT OUTER,4|Join INNER,5|Join RIGHT,6|Join RIGHT OUTER\\\" \\r\\n\\tdefault=\\\"2\\\" \\r\\n\\/>\"', -2, '2015-05-22 13:30:22', '2015-05-23 12:02:28', 1, '', 95, 'f3313652-2750-4911-81d9-3356b232822d', '', '', '', '', ''),
(519, '', '', '', '', '', '', '', '', 1, '', 'INT', '', '', '', 'Table Type (p)', 'NOT NULL', '', 11, '\"<field \\r\\n\\ttype=\\\"list\\\" \\r\\n\\tname=\\\"type_p\\\" \\r\\n\\tlabel=\\\"Type (p)\\\" \\r\\n\\tdescription=\\\"\\\" \\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\tmultiple=\\\"false\\\" \\r\\n\\tfilter=\\\"INT\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\toption=\\\"2|Join LEFT,3|Join LEFT OUTER,4|Join INNER,5|Join RIGHT,6|Join RIGHT OUTER\\\" \\r\\n\\tdefault=\\\"2\\\" \\r\\n\\/>\"', -2, '2015-05-22 13:30:33', '2015-05-22 16:08:07', 1, '', 427, '7e0b4649-0d0d-4933-aa6f-5c9f9a29ad79', '', '', '', '', ''),
(520, '', '', '', '', '', '', '', '', 1, '', 'INT', '', '', '', 'Table Type (q)', 'NOT NULL', '', 11, '\"<field \\r\\n\\ttype=\\\"list\\\" \\r\\n\\tname=\\\"type_q\\\" \\r\\n\\tlabel=\\\"Type (q)\\\" \\r\\n\\tdescription=\\\"\\\" \\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\tmultiple=\\\"false\\\" \\r\\n\\tfilter=\\\"INT\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\toption=\\\"2|Join LEFT,3|Join LEFT OUTER,4|Join INNER,5|Join RIGHT,6|Join RIGHT OUTER\\\" \\r\\n\\tdefault=\\\"2\\\" \\r\\n\\/>\"', -2, '2015-05-22 13:30:42', '2015-05-22 16:08:11', 1, '', 428, '132d5599-ae8e-4901-bfdd-85f6e4380234', '', '', '', '', ''),
(521, '', '', '', '', '', '', '', '', 1, '', 'INT', '', '', '', 'Table Type (r)', 'NOT NULL', '', 11, '\"<field \\r\\n\\ttype=\\\"list\\\" \\r\\n\\tname=\\\"type_r\\\" \\r\\n\\tlabel=\\\"Type (r)\\\" \\r\\n\\tdescription=\\\"\\\" \\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\tmultiple=\\\"false\\\" \\r\\n\\tfilter=\\\"INT\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\toption=\\\"2|Join LEFT,3|Join LEFT OUTER,4|Join INNER,5|Join RIGHT,6|Join RIGHT OUTER\\\" \\r\\n\\tdefault=\\\"2\\\" \\r\\n\\/>\"', -2, '2015-05-22 13:30:55', '2015-05-22 16:08:15', 1, '', 429, 'b5352477-9cd5-43b4-9913-cd5193e26172', '', '', '', '', ''),
(522, '', '', '', '', '', '', '', '', 1, '', 'INT', '', '', '', 'Table Type (s)', 'NOT NULL', '', 11, '\"<field \\r\\n\\ttype=\\\"list\\\" \\r\\n\\tname=\\\"type_s\\\" \\r\\n\\tlabel=\\\"Type (s)\\\" \\r\\n\\tdescription=\\\"\\\" \\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\tmultiple=\\\"false\\\" \\r\\n\\tfilter=\\\"INT\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\toption=\\\"2|Join LEFT,3|Join LEFT OUTER,4|Join INNER,5|Join RIGHT,6|Join RIGHT OUTER\\\" \\r\\n\\tdefault=\\\"2\\\" \\r\\n\\/>\"', -2, '2015-05-22 13:31:05', '2015-05-22 16:08:19', 1, '', 430, 'a1219c9a-3efc-487e-aa3b-8351d1983c7e', '', '', '', '', ''),
(523, '', '', '', '', '', '', '', '', 1, '', 'INT', '', '', '', 'Table Type (t)', 'NOT NULL', '', 11, '\"<field \\r\\n\\ttype=\\\"list\\\" \\r\\n\\tname=\\\"type_t\\\" \\r\\n\\tlabel=\\\"Type (t)\\\" \\r\\n\\tdescription=\\\"\\\" \\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\tmultiple=\\\"false\\\" \\r\\n\\tfilter=\\\"INT\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\toption=\\\"2|Join LEFT,3|Join LEFT OUTER,4|Join INNER,5|Join RIGHT,6|Join RIGHT OUTER\\\" \\r\\n\\tdefault=\\\"2\\\" \\r\\n\\/>\"', -2, '2015-05-22 13:31:13', '2015-05-22 16:08:23', 1, '', 425, '89c310ce-a577-44c6-bd6a-2da097f2f495', '', '', '', '', ''),
(524, '', '', '', '', '', '', '', '', 1, '', 'INT', '', '', '', 'Table Type (u)', 'NOT NULL', '', 11, '\"<field \\r\\n\\ttype=\\\"list\\\" \\r\\n\\tname=\\\"type_u\\\" \\r\\n\\tlabel=\\\"Type (u)\\\" \\r\\n\\tdescription=\\\"\\\" \\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\tmultiple=\\\"false\\\" \\r\\n\\tfilter=\\\"INT\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\toption=\\\"2|Join LEFT,3|Join LEFT OUTER,4|Join INNER,5|Join RIGHT,6|Join RIGHT OUTER\\\" \\r\\n\\tdefault=\\\"2\\\" \\r\\n\\/>\"', -2, '2015-05-22 13:31:26', '2015-05-22 16:08:27', 1, '', 431, '35c853bd-8d75-4d69-ac0c-31b7717bb8f2', '', '', '', '', ''),
(525, '', '', '', '', '', '', '', '', 1, '', 'INT', '', '', '', 'Table Type (v)', 'NOT NULL', '', 11, '\"<field \\r\\n\\ttype=\\\"list\\\" \\r\\n\\tname=\\\"type_v\\\" \\r\\n\\tlabel=\\\"Type (v)\\\" \\r\\n\\tdescription=\\\"\\\" \\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\tmultiple=\\\"false\\\" \\r\\n\\tfilter=\\\"INT\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\toption=\\\"2|Join LEFT,3|Join LEFT OUTER,4|Join INNER,5|Join RIGHT,6|Join RIGHT OUTER\\\" \\r\\n\\tdefault=\\\"2\\\" \\r\\n\\/>\"', -2, '2015-05-22 13:31:35', '2015-05-22 16:08:31', 1, '', 432, 'be6e8d01-6205-4c56-b193-96082e4ea59b', '', '', '', '', ''),
(526, '', '', '', '', '', '', '', '', 1, '', 'INT', '', '', '', 'Table Type (w)', 'NOT NULL', '', 11, '\"<field \\r\\n\\ttype=\\\"list\\\" \\r\\n\\tname=\\\"type_w\\\" \\r\\n\\tlabel=\\\"Type (w)\\\" \\r\\n\\tdescription=\\\"\\\" \\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\tmultiple=\\\"false\\\" \\r\\n\\tfilter=\\\"INT\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\toption=\\\"2|Join LEFT,3|Join LEFT OUTER,4|Join INNER,5|Join RIGHT,6|Join RIGHT OUTER\\\" \\r\\n\\tdefault=\\\"2\\\" \\r\\n\\/>\"', -2, '2015-05-22 13:31:43', '2015-05-22 16:08:36', 1, '', 433, '6e3f2029-0183-4d7c-bfa6-3a3a9b1bc60e', '', '', '', '', ''),
(527, '', '', '', '', '', '', '', '', 1, '', 'INT', '', '', '', 'Table Type (x)', 'NOT NULL', '', 11, '\"<field \\r\\n\\ttype=\\\"list\\\" \\r\\n\\tname=\\\"type_x\\\" \\r\\n\\tlabel=\\\"Type (x)\\\" \\r\\n\\tdescription=\\\"\\\" \\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\tmultiple=\\\"false\\\" \\r\\n\\tfilter=\\\"INT\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\toption=\\\"2|Join LEFT,3|Join LEFT OUTER,4|Join INNER,5|Join RIGHT,6|Join RIGHT OUTER\\\" \\r\\n\\tdefault=\\\"2\\\" \\r\\n\\/>\"', -2, '2015-05-22 13:31:52', '2015-05-22 16:08:40', 1, '', 434, '164e8a30-d61f-4c62-80ec-901e6f9c14f7', '', '', '', '', ''),
(528, '', '', '', '', '', '', '', '', 1, '', 'INT', '', '', '', 'Table Type (y)', 'NOT NULL', '', 11, '\"<field \\r\\n\\ttype=\\\"list\\\" \\r\\n\\tname=\\\"type_y\\\" \\r\\n\\tlabel=\\\"Type (y)\\\" \\r\\n\\tdescription=\\\"\\\" \\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\tmultiple=\\\"false\\\" \\r\\n\\tfilter=\\\"INT\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\toption=\\\"2|Join LEFT,3|Join LEFT OUTER,4|Join INNER,5|Join RIGHT,6|Join RIGHT OUTER\\\" \\r\\n\\tdefault=\\\"2\\\" \\r\\n\\/>\"', -2, '2015-05-22 13:32:00', '2015-05-22 16:08:45', 1, '', 417, 'ee8ef284-028c-42de-b74a-ce74dc5fb602', '', '', '', '', ''),
(529, '', '', '', '', '', '', '', '', 1, '', 'INT', '', '', '', 'Table Type (z)', 'NOT NULL', '', 11, '\"<field \\r\\n\\ttype=\\\"list\\\" \\r\\n\\tname=\\\"type_z\\\" \\r\\n\\tlabel=\\\"Type (z)\\\" \\r\\n\\tdescription=\\\"\\\" \\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\tmultiple=\\\"false\\\" \\r\\n\\tfilter=\\\"INT\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\toption=\\\"2|Join LEFT,3|Join LEFT OUTER,4|Join INNER,5|Join RIGHT,6|Join RIGHT OUTER\\\" \\r\\n\\tdefault=\\\"2\\\" \\r\\n\\/>\"', -2, '2015-05-22 13:32:09', '2015-05-22 16:08:50', 1, '', 446, '5cc1efdd-6674-48f3-bcd1-6af54d8566df', '', '', '', '', ''),
(530, '', '', '', '', '', '', '', '', '', '', 'MEDIUMTEXT', '', '', '', 'PHP (get Calculation)', 'NOT NULL', 2, 8, '\"<field\\n\\ttype=\\\"editor\\\"\\n\\tname=\\\"php_calculation\\\"\\n\\tlabel=\\\"get Calculation (Place all calculated\\/new values in variables with the following naming convention $cal__xxxxxxx)\\\"\\n\\tdescription=\\\"Add PHP to do the calculation on any field. 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-22 14:56:07', '2019-07-08 14:14:17', 4, '', 387, '9b6768ae-8d6a-461e-9b41-61d49431a401', '', '', '', '', ''),
(531, '', '', '', '', '', '', '', '', '', '', 'CHAR', '', '', '', 'Add Calculation', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"addcalculation\\\" \\r\\n\\tlabel=\\\"Add Calculation\\\" \\r\\n\\tdescription=\\\"Do you want to add custom calculation to the get method\\\" \\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-22 15:05:18', '2015-08-25 21:15:22', 1, '', 516, '6e7bb46d-fda5-46b8-b08e-31a2e6884e24', '', '', '', '', ''),
(532, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', 2, '', '', 'get Custom Name', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"getcustom\\\" \\r\\n\\tlabel=\\\"Custom Name\\\" \\r\\n\\tsize=\\\"40\\\" \\r\\n\\tmaxlength=\\\"150\\\" \\r\\n\\tdescription=\\\"Set the Method name for this dynamic get.\\\" \\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 method name here.\\\" \\r\\n\\thint=\\\"getMethodName\\\" \\r\\n\\/>\"', 1, '2015-05-22 20:00:51', '2015-08-25 21:15:22', 1, '', 517, '6c486f71-abfd-49c7-91e2-165f594fa658', '', '', '', '', ''),
(533, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Storing Type', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"form_type\\\" \\r\\n\\tlabel=\\\"Storing Type\\\" \\r\\n\\tdescription=\\\"Set the storing type for this form.\\\" \\r\\n\\tclass=\\\"btn-group btn-group-yesno\\\" \\r\\n\\toption=\\\"1|Per\\/Value,2|Per\\/Submission\\\" \\r\\n\\tdefault=\\\"2\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\/>\"', 1, '2015-05-23 09:32:42', '2015-09-10 12:04:00', 3, '', 415, 'ec5cdd76-9272-4659-a38d-2bcead2253b9', '', '', '', '', ''),
(534, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'Filter Type', 'NOT NULL', '', 11, '\"<field \\r\\n\\ttype=\\\"list\\\" \\r\\n\\tname=\\\"filter_type\\\" \\r\\n\\tlabel=\\\"Filter Type\\\" \\r\\n\\tdescription=\\\"The type of filter you want to setup.\\\" \\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\tmultiple=\\\"false\\\" \\r\\n\\tfilter=\\\"INT\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\toption=\\\"1|ID,2|User,3|Access Level,4|User Groups,5|Categories,6|Tags,7|Date,8|FunctionVar,9|Array Value,10|Repeatable Value,11|Other\\\" \\r\\n\\tdefault=\\\"1\\\" \\r\\n\\/>\"', 1, '2015-05-23 11:22:17', '2015-09-13 03:09:50', 5, '', 518, 'e95e58dd-5b30-4b49-ac87-7960f6a0a740', '', '', '', '', ''),
(535, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'State Key', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"state_key\\\" \\r\\n\\tlabel=\\\"State Key\\\" \\r\\n\\tsize=\\\"40\\\" \\r\\n\\tmaxlength=\\\"150\\\" \\r\\n\\tdescription=\\\"The key to use to get state value or the var name.\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\treadonly=\\\"false\\\" \\r\\n\\tdisabled=\\\"false\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\tfilter=\\\"STRING\\\" \\r\\n\\tmessage=\\\"Error! Please add state key here.\\\" \\r\\n\\thint=\\\"id\\\" \\r\\n\\/>\"', 1, '2015-05-23 11:25:28', '2015-08-25 21:15:22', 3, '', 524, 'd705fb25-b0e9-4be3-9278-d9d88b8a3053', '', '', '', '', ''),
(536, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Table Key', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"table_key\\\" \\r\\n\\tlabel=\\\"Table Key\\\" \\r\\n\\tsize=\\\"40\\\" \\r\\n\\tmaxlength=\\\"150\\\" \\r\\n\\tdescription=\\\"The key to use to get table value.\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\treadonly=\\\"false\\\" \\r\\n\\tdisabled=\\\"false\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\tfilter=\\\"CMD\\\" \\r\\n\\tmessage=\\\"Error! Please add table key here.\\\" \\r\\n\\thint=\\\"a.id\\\" \\r\\n\\/>\"', 1, '2015-05-23 11:26:47', '2015-08-25 21:15:22', 1, '', 520, '95fad76d-0b02-4fcf-b0cd-1feba80942e1', '', '', '', '', ''),
(537, '', '', '', '', '', '', '', '', '', '', 'CHAR', '', '', '', 'AS Keys (b to zz)', 'NOT NULL', '', 11, '\"<field \\r\\n\\ttype=\\\"list\\\" \\r\\n\\tname=\\\"as\\\" \\r\\n\\tlabel=\\\"AS\\\" \\r\\n\\tdescription=\\\"\\\" \\r\\n\\tclass=\\\"list_class fieldSmall\\\" \\r\\n\\tmultiple=\\\"false\\\" \\r\\n\\tfilter=\\\"WORD\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\toption=\\\"b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,t,u,v,w,x,y,z,aa,bb,cc,dd,ee,ff,gg,hh,ii,jj,kk,ll,mm,nn,oo,pp,qq,rr,ss,tt,uu,vv,ww,xx,yy,zz\\\" \\r\\n\\tdefault=\\\"b\\\" \\r\\n\\/>\"', 1, '2015-05-23 12:44:47', '2015-08-25 21:15:22', 2, '', 526, '160e0e73-b8c4-4f97-9685-83c50cbc60e7', '', '', '', '', ''),
(538, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Jount DB Table', 'NOT NULL', '', 35, '\"<field\\n\\ttype=\\\"subform\\\"\\n\\tname=\\\"join_db_table\\\"\\n\\tlabel=\\\"Join DB Tables\\\"\\n\\tlayout=\\\"repeatablejcb\\\"\\n\\tmultiple=\\\"true\\\"\\n\\tfields=\\\"393,547,537,505,430,541,455,480\\\"\\n\\tdescription=\\\"Here you can add more table data to the query from other databases.\\\"\\n\\ticon=\\\"list\\\"\\n\\/>\"', 1, '2015-05-23 12:50:59', '2020-06-05 00:59:40', 4, '', 93, '6c75d3ff-93aa-493b-b25c-733e78408fa2', '', '', '', '', ''),
(539, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Add Filter Query', 'NOT NULL', '', 35, '\"<field\\n\\ttype=\\\"subform\\\"\\n\\tname=\\\"filter\\\"\\n\\tlabel=\\\"Filter\\\"\\n\\tlayout=\\\"joomla.form.field.subform.repeatable-table\\\"\\n\\tmultiple=\\\"true\\\"\\n\\tfields=\\\"534,535,541,536,2836\\\"\\n\\tdescription=\\\"Here you can add filters to the query.\\\"\\n\\ticon=\\\"list\\\"\\n\\/>\"', 1, '2015-05-23 12:54:41', '2020-07-26 15:42:12', 5, '', 74, 'bf2293c7-5c8b-4b77-a880-c63ca4777e3e', '', '', '', '', ''),
(540, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Main Data Source', 'NOT NULL', '', 11, '\"<field \\r\\n\\ttype=\\\"list\\\" \\r\\n\\tname=\\\"main_source\\\" \\r\\n\\tlabel=\\\"Main Source\\\" \\r\\n\\tdescription=\\\"Select the main source of this dynamic get method.\\\" \\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\tmultiple=\\\"false\\\" \\r\\n\\tfilter=\\\"INT\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\toption=\\\"|Please select,1|Back-end View,2|Joomla Database,3|Custom\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\/>\"', 1, '2015-05-23 14:26:09', '2015-08-25 21:15:22', 2, '', 527, '1709c1a3-b26a-4e78-82f9-ff05a08738c9', '', '', '', '', ''),
(541, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'Comparison Operators (sql)', 'NOT NULL', '', 11, '\"<field \\r\\n\\ttype=\\\"list\\\" \\r\\n\\tname=\\\"operator\\\" \\r\\n\\tlabel=\\\"Comparison Operators\\\" \\r\\n\\tdescription=\\\"Select the operator\\\" \\r\\n\\tclass=\\\"list_class fieldMedium\\\" \\r\\n\\tmultiple=\\\"false\\\" \\r\\n\\tfilter=\\\"INT\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\toption=\\\"1|equal,2|not equal,3|equal or not,4|greater than,5|less than,6|greater than or equal,7|less than or equal to,8|not less than,9|not greater than,10|IN,11|NOT IN\\\" \\r\\n\\tdefault=\\\"0\\\" \\r\\n\\/>\"', 1, '2015-05-24 00:11:11', '2015-08-25 21:15:22', 2, '', 528, '4a0047f4-c51c-40f7-875b-501d507b2880', '', '', '', '', ''),
(542, '', '', '', '', '', '', '', '', '', '', 'CHAR', '', '', '', 'Note - Calculation (item)', 'NOT NULL', '', 14, '\"<field \\r\\n\\ttype=\\\"note\\\" \\r\\n\\tname=\\\"note_calculation_item\\\" \\r\\n\\tlabel=\\\"\\\" \\r\\n\\tdescription=\\\"Fields are in the $data Object.\\\" \\r\\n\\/>\"', 1, '2015-05-25 13:03:02', '2015-08-25 21:15:22', 1, '', 529, '255d7bc4-6516-4ec1-af26-3d135dcb231d', '', '', '', '', ''),
(543, '', '', '', '', '', '', '', '', '', '', 'CHAR', '', '', '', 'Note - Calculation (items)', 'NOT NULL', '', 14, '\"<field \\r\\n\\ttype=\\\"note\\\" \\r\\n\\tname=\\\"note_calculation_items\\\" \\r\\n\\tlabel=\\\"\\\" \\r\\n\\tdescription=\\\"Fields are in the $item Object.\\\" \\r\\n\\/>\"', 1, '2015-05-25 13:05:03', '2015-08-25 21:15:22', 2, '', 530, 'a8d7033a-d0a4-416e-b0f3-c3e0436076eb', '', '', '', '', ''),
(544, 1, '', 1, '', 'I2pmb3JtX2R5bmFtaWNfZ2V0X2Noem4gew0Kd2lkdGg6IDEwMCUgIWltcG9ydGFudDsNCn0NCi5qZm9ybV9keW5hbWljX2dldF9pbnB1dF93aWR0aCB7DQp3aWR0aDogOTAlICFpbXBvcnRhbnQ7DQp9', '', '', '', 11, '', 'INT', 2, 'alF1ZXJ5KCcjamZvcm1fZHluYW1pY19nZXQnKS5jbG9zZXN0KCcuaW5wdXQtYXBwZW5kJykuYWRkQ2xhc3MoJ2pmb3JtX2R5bmFtaWNfZ2V0X2lucHV0X3dpZHRoJyk7', '', 'Dynamic Get (dynamic - not required)', 'NOT NULL', '', 6, '\"<field \\r\\n\\ttype=\\\"dynamicget\\\" \\r\\n\\tname=\\\"dynamic_get\\\" \\r\\n\\tlabel=\\\"Dynamic Get\\\" \\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\\tbutton=\\\"true\\\"\\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$options[] = JHtml::_(\'select.option\', \'\', \'Select an option\');\\\\n\\\\t\\\\t\\\\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-05-26 12:29:44', '2017-11-22 21:42:37', 12, '', 410, '5087f379-710b-4e76-9b9d-86b842933991', '', '', '', '', ''),
(545, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Value Key', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"value_key\\\"\\n\\tlabel=\\\"Value Key\\\"\\n\\tsize=\\\"40\\\"\\n\\tmaxlength=\\\"150\\\"\\n\\tdescription=\\\"The key to use to set value.\\\"\\n\\tclass=\\\"text_area\\\"\\n\\treadonly=\\\"false\\\"\\n\\tdisabled=\\\"false\\\"\\n\\trequired=\\\"true\\\"\\n\\tfilter=\\\"STRING\\\"\\n\\tmessage=\\\"Error! Please add value key here.\\\"\\n\\thint=\\\"b.field or $this->fieldvalue\\\"\\n\\/>\"', 1, '2015-05-27 12:59:02', '2019-06-29 21:07:59', 3, '', 523, 'b05cb6a3-0404-49b4-a9e1-dc35df986c27', '', '', '', '', ''),
(546, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Add Where Query', 'NOT NULL', '', 35, '\"<field \\r\\n\\ttype=\\\"subform\\\" \\r\\n\\tname=\\\"where\\\" \\r\\n\\tlabel=\\\"Where\\\" \\r\\n\\tlayout=\\\"joomla.form.field.subform.repeatable-table\\\" \\r\\n\\tmultiple=\\\"true\\\" \\r\\n\\tfields=\\\"536,541,545\\\" \\r\\n\\tdescription=\\\"Here you can add where to the query.\\\" \\r\\n\\ticon=\\\"list\\\" \\r\\n\\tmaximum=\\\"50\\\" \\r\\n\\/>\"', 1, '2015-05-27 12:59:39', '2017-09-25 11:15:00', 3, '', 532, '81466df0-3571-45cf-b520-cee2a9f5e03b', '', '', '', '', ''),
(547, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'Return Row Type', 'NOT NULL', '', 11, '\"<field \\r\\n\\ttype=\\\"list\\\" \\r\\n\\tname=\\\"row_type\\\" \\r\\n\\tlabel=\\\"Return Row Type\\\" \\r\\n\\tdescription=\\\"Single row or Multiple rows\\\" \\r\\n\\tclass=\\\"list_class fieldMedium\\\" \\r\\n\\tmultiple=\\\"false\\\" \\r\\n\\tfilter=\\\"INT\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\toption=\\\"1|Single,2|Multiple\\\" \\r\\n\\tdefault=\\\"1\\\" \\r\\n\\/>\"', 1, '2015-05-27 15:41:41', '2015-08-25 21:15:22', 2, '', 534, '00f0eb0d-83e8-4dc7-bf56-e069382df691', '', '', '', '', ''),
(548, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Variable Name', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"name\\\" \\r\\n\\tlabel=\\\"Name\\\" \\r\\n\\tsize=\\\"40\\\" \\r\\n\\tmaxlength=\\\"150\\\" \\r\\n\\tdescription=\\\"The variable name.\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\treadonly=\\\"false\\\" \\r\\n\\tdisabled=\\\"false\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\tfilter=\\\"CMD\\\" \\r\\n\\tmessage=\\\"Error! Please add variable name here.\\\" \\r\\n\\thint=\\\"variableName\\\" \\r\\n\\/>\"', 1, '2015-05-27 16:02:09', '2015-08-25 21:15:22', 1, '', 519, '561075ec-b48d-45de-8885-59fc2a666222', '', '', '', '', ''),
(549, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Table Key Name', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"key\\\" \\r\\n\\tlabel=\\\"Table Key\\/As Name\\\" \\r\\n\\tsize=\\\"40\\\" \\r\\n\\tmaxlength=\\\"150\\\" \\r\\n\\tdescription=\\\"The table as name.\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\treadonly=\\\"false\\\" \\r\\n\\tdisabled=\\\"false\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\tfilter=\\\"STRING\\\" \\r\\n\\tmessage=\\\"Error! Please add table as name here.\\\" \\r\\n\\thint=\\\"key\\\" \\r\\n\\/>\"', 1, '2015-05-27 16:30:50', '2015-08-25 21:15:22', 4, '', 522, 'f4114d7b-927b-44e5-9fa4-b13a0602e5a1', '', '', '', '', ''),
(550, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'Set Type', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"type\\\"\\n\\tlabel=\\\"Set Type\\\"\\n\\tdescription=\\\"\\\"\\n\\toption=\\\"1|State,2|This\\\"\\n\\tdefault=\\\"2\\\"\\n\\trequired=\\\"true\\\"\\n\\/>\"', 1, '2015-05-27 16:33:02', '2019-04-26 00:48:56', 4, '', 521, 'a922f078-c085-4005-85ff-001e9f4369bf', '', '', '', '', ''),
(551, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Add Globals', 'NOT NULL', '', 35, '\"<field \\r\\n\\ttype=\\\"subform\\\" \\r\\n\\tname=\\\"global\\\" \\r\\n\\tlabel=\\\"Set Global\\\" \\r\\n\\tlayout=\\\"joomla.form.field.subform.repeatable-table\\\" \\r\\n\\tmultiple=\\\"true\\\" \\r\\n\\tfields=\\\"548,549,571,550\\\" \\r\\n\\tdescription=\\\"Here you can add global variables.\\\" \\r\\n\\ticon=\\\"list\\\" \\r\\n\\tmaximum=\\\"200\\\" \\r\\n\\/>\"', 1, '2015-05-27 16:34:43', '2017-09-25 11:16:58', 4, '', 533, 'fa2f73d6-8427-47de-abd8-4290da426b49', '', '', '', '', ''),
(552, '', '', '', '', '', '', '', '', '', '', 'MEDIUMTEXT', '', '', '', 'PHP (custom get)', 'NOT NULL', 2, 8, '\"<field\\n\\ttype=\\\"editor\\\"\\n\\tname=\\\"php_custom_get\\\"\\n\\tlabel=\\\"Custom get\\\"\\n\\tdescription=\\\"Add Custom PHP that will be added to the method selected above as type. 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-27 16:49:50', '2019-07-08 14:14:24', 4, '', 535, '8aba2f06-8fd1-4256-add5-1e233e581315', '', '', '', '', ''),
(553, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Template', 'NOT NULL', 2, 8, '\"<field\\n\\ttype=\\\"editor\\\"\\n\\tname=\\\"template\\\"\\n\\tlabel=\\\"Template\\\"\\n\\tdescription=\\\"Add the Template code here.\\\"\\n\\twidth=\\\"100%\\\"\\n\\theight=\\\"500px\\\"\\n\\tcols=\\\"15\\\"\\n\\trows=\\\"30\\\"\\n\\tbuttons=\\\"no\\\"\\n\\tsyntax=\\\"html\\\"\\n\\teditor=\\\"codemirror|none\\\"\\n\\tfilter=\\\"raw\\\"\\n\\tvalidate=\\\"code\\\"\\n\\/>\"', 1, '2015-05-28 19:48:10', '2019-07-08 14:14:31', 5, '', 366, '7b57c7ca-f4e8-4358-948a-987b1f36b3fb', '', '', '', '', ''),
(554, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', 2, '', '', 'Name in Code (alias)', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\"\\r\\n\\tname=\\\"alias\\\"\\r\\n\\tlabel=\\\"Name in Code\\\"\\r\\n\\tsize=\\\"40\\\"\\r\\n\\tmaxlength=\\\"50\\\" \\r\\n\\tdefault=\\\"\\\"\\r\\n\\tdescription=\\\"Add Name in Code Here\\\"\\r\\n\\tclass=\\\"text_area\\\"\\r\\n\\tfilter=\\\"CMD\\\"\\r\\n\\tmessage=\\\"Error! Please add name in code here.\\\"\\r\\n\\thint=\\\"codename\\\"\\r\\n\\/>\"', 1, '2015-05-28 21:14:01', '2017-02-03 23:33:38', 3, '', 536, '477832a1-7a25-4774-ad1a-4ff69ed4b374', '', '', '', '', ''),
(555, '', '', '', '', '', '', '', '', '', '', 'MEDIUMTEXT', '', '', '', 'Default Tmpl', 'NOT NULL', 2, 8, '\"<field\\n\\ttype=\\\"editor\\\"\\n\\tname=\\\"default\\\"\\n\\tlabel=\\\"Default Tmpl\\\"\\n\\tdescription=\\\"Add the code here.\\\"\\n\\twidth=\\\"100%\\\"\\n\\theight=\\\"500px\\\"\\n\\tcols=\\\"15\\\"\\n\\trows=\\\"30\\\"\\n\\tbuttons=\\\"no\\\"\\n\\tsyntax=\\\"html\\\"\\n\\teditor=\\\"codemirror|none\\\"\\n\\tfilter=\\\"raw\\\"\\n\\tvalidate=\\\"code\\\"\\n\\/>\"', 1, '2015-05-29 23:03:51', '2020-08-18 05:34:43', 5, '', 365, '6e214a72-6c96-40c0-abf3-5f09116d3018', '', '', '', '', ''),
(556, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Add Site Views', 'NOT NULL', '', 35, '\"<field\\n\\ttype=\\\"subform\\\"\\n\\tname=\\\"addsite_views\\\"\\n\\tlabel=\\\"Site Views\\\"\\n\\tlayout=\\\"repeatablejcb\\\"\\n\\tmultiple=\\\"true\\\"\\n\\tfields=\\\"557,564,154,781,3,1809\\\"\\n\\tdescription=\\\"Setup the site views for this component.\\\"\\n\\tdefault=\\\"\\\"\\n\\ticon=\\\"list\\\"\\n\\tfilter=\\\"\\\"\\n\\/>\"', 1, '2015-06-01 11:40:11', '2020-05-28 20:12:17', 9, '', 537, '8e225dcd-4e2b-464b-a9f3-b7d39d67de84', '', '', '', '', ''),
(557, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'Site View (dynamic)', 'NOT NULL', '', 6, '\"<field\\n\\ttype=\\\"siteviews\\\"\\n\\tname=\\\"siteview\\\"\\n\\tlabel=\\\"View\\\"\\n\\tdescription=\\\"Select a site view\\\"\\n\\tclass=\\\"fieldMedium\\\"\\n\\tmultiple=\\\"false\\\"\\n\\trequired=\\\"true\\\"\\n\\textends=\\\"list\\\"\\n\\ttable=\\\"#__###component###_site_view\\\"\\n\\tcomponent=\\\"com_###component###\\\"\\n\\tview=\\\"site_view\\\"\\n\\tviews=\\\"site_views\\\"\\n\\tvalue_field=\\\"system_name\\\"\\n\\tkey_field=\\\"id\\\"\\n\\tprime_php=\\\"1\\\"\\n\\ttype_php_1=\\\"__.o0=base64=Oo.__Ly8gR2V0IHRoZSBkYXRhYmFzZSBvYmplY3QuDQoJCSRkYiA9IEZhY3Rvcnk6OmdldERCTygpOw0KCQkkcXVlcnkgPSAkZGItPmdldFF1ZXJ5KHRydWUpOw0KCQkkcXVlcnktPnNlbGVjdCgkZGItPnF1b3RlTmFtZShhcnJheSgnYS4jIyNJRCMjIycsJ2EuIyMjVEVYVCMjIycpLGFycmF5KCcjIyNJRCMjIycsJyMjI0NPREVfVEVYVCMjIycpKSk7DQoJCSRxdWVyeS0+ZnJvbSgkZGItPnF1b3RlTmFtZSgnIyMjVEFCTEUjIyMnLCAnYScpKTsNCgkJJHF1ZXJ5LT53aGVyZSgkZGItPnF1b3RlTmFtZSgnYS5wdWJsaXNoZWQnKSAuICcgPj0gMScpOw0KCQkkcXVlcnktPm9yZGVyKCdhLiMjI1RFWFQjIyMgQVNDJyk7DQoJCSRkYi0+c2V0UXVlcnkoKHN0cmluZykkcXVlcnkpOw0KCQkkaXRlbXMgPSAkZGItPmxvYWRPYmplY3RMaXN0KCk7DQoJCSRvcHRpb25zID0gW107DQoJCWlmICgkaXRlbXMpDQoJCXsNCgkJCWlmICgkdGhpcy0+bXVsdGlwbGUgPT09IGZhbHNlKQ0KCQkJew0KCQkJCSRvcHRpb25zW10gPSBIdG1sOjpfKCdzZWxlY3Qub3B0aW9uJywgJycsIFRleHQ6Ol8oJ1NlbGVjdCBhbiBvcHRpb24nKSk7DQoJCQl9DQoJCQlmb3JlYWNoKCRpdGVtcyBhcyAkaXRlbSkNCgkJCXsNCgkJCQkkb3B0aW9uc1tdID0gSHRtbDo6Xygnc2VsZWN0Lm9wdGlvbicsICRpdGVtLT4jIyNJRCMjIywgJGl0ZW0tPiMjI0NPREVfVEVYVCMjIyk7DQoJCQl9DQoJCX0NCgkJcmV0dXJuICRvcHRpb25zOw==\\\"\\n\\/>\"', 1, '2015-06-01 11:44:48', '2024-01-26 09:39:26', 8, '', 538, 'c93bcce5-7c16-4cd6-bede-61d8c1da9e9c', '', '', '', '', ''),
(558, 1, '', 1, '', 'I2pmb3JtX21haW5fZ2V0X2Noem4gew0Kd2lkdGg6IDEwMCUgIWltcG9ydGFudDsNCn0NCi5qZm9ybV9tYWluX2dldF9pbnB1dF93aWR0aCB7DQp3aWR0aDogOTAlICFpbXBvcnRhbnQ7DQp9', '', '', '', 11, '', 'INT', 2, 'alF1ZXJ5KCcjamZvcm1fbWFpbl9nZXQnKS5jbG9zZXN0KCcuaW5wdXQtYXBwZW5kJykuYWRkQ2xhc3MoJ2pmb3JtX21haW5fZ2V0X2lucHV0X3dpZHRoJyk7', '', 'Main Get (dynamic)', 'NOT NULL', '', 6, '\"<field \\r\\n\\ttype=\\\"maingets\\\" \\r\\n\\tname=\\\"main_get\\\"\\r\\n\\tlabel=\\\"Main Get\\\" \\r\\n\\tdescription=\\\"Select a main get\\\" \\r\\n\\tmultiple=\\\"false\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\treadonly=\\\"\\\" \\r\\n\\tdisabled=\\\"\\\" \\r\\n\\textends=\\\"list\\\" \\r\\n\\tbutton=\\\"true\\\"\\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\\\\t\\\\t$query->where(\'( \'.$db->quoteName(\'a.gettype\') . \' = 1 OR \' . $db->quoteName(\'a.gettype\') . \' = 2 )\');\\\\n\\\\t\\\\t$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_18=\\\"return $options;\\\"\\r\\n\\/>\"', 1, '2015-06-01 22:00:07', '2017-11-22 21:38:11', 10, '', 402, 'd20027fe-4e74-4261-9bf2-7e573a3e883b', '', '', '', '', ''),
(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>&lt;?php echo JText::_(&apos;Text&apos;); ?&gt;<\\/code><br \\/>\\r\\n<code>&lt;?php echo JText::sprintf(&apos;Hello %s&apos;, $this->user->name); ?&gt;<\\/code><br \\/>\\r\\n<b>Just get UPPERCASE language string:<\\/b><br \\/>\\r\\n<code>&lt;?php echo JustTEXT::_(&apos;Text&apos;); ?&gt;<\\/code>\\\"\\n\\theading=\\\"h4\\\"\\n\\/>\"', 1, '2015-06-03 15:23:13', '2022-02-02 13:35:21', 15, '', 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', '', '', '', '', ''),
(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', '', '', '', '', ''),
(566, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Add PHP (custom HtmlView display)', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"add_php_jview_display\\\" \\r\\n\\tlabel=\\\"Add PHP (custom HtmlView display)\\\" \\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:54:17', '2015-08-25 21:15:22', 4, '', 541, '32564da8-5599-4577-bd93-fd425179612f', '', '', '', '', ''),
(567, '', '', '', '', '', '', '', '', '', '', 'MEDIUMTEXT', '', '', '', 'PHP site (JViewLegacy)', 'NOT NULL', 2, 8, '\"<field\\n\\ttype=\\\"editor\\\"\\n\\tname=\\\"php_jview\\\"\\n\\tlabel=\\\"Custom Methods (JViewLegacy)\\\"\\n\\tdescription=\\\"PHP methods for the JViewLegacy class.\\\"\\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-06-10 14:58:22', '2019-07-08 14:14:49', 4, '', 373, 'ffecfa82-c326-4703-9cc3-69d6f313bd32', '', '', '', '', ''),
(568, '', '', '', '', '', '', '', '', '', '', 'MEDIUMTEXT', '', '', '', 'PHP site (JViewLegacy display)', 'NOT NULL', 2, 8, '\"<field\\n\\ttype=\\\"editor\\\"\\n\\tname=\\\"php_jview_display\\\"\\n\\tlabel=\\\"Custom Script (JViewLegacy display)\\\"\\n\\tdescription=\\\"Add custom PHP script to the JViewLegacy display 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-06-10 14:59:59', '2019-07-08 14:14:54', 3, '', 374, '96963615-e3bb-4d37-83df-4ad3fca74536', '', '', '', '', ''),
(569, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Add PHP (custom HtmlView methods)', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"add_php_jview\\\" \\r\\n\\tlabel=\\\"Add PHP (custom HtmlView methods)\\\" \\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 15:02:24', '2015-08-25 21:15:22', 1, '', 542, '6ce6e81e-5cdf-4ea2-83b5-acde779f4297', '', '', '', '', ''),
(570, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Dynamic Form Defaults', 'NOT NULL', 2, 25, '\"<field \\r\\n\\ttype=\\\"textarea\\\" \\r\\n\\tname=\\\"defaults_map\\\" \\r\\n\\tlabel=\\\"Dynamic Form Defaults\\\" \\r\\n\\trows=\\\"17\\\" \\r\\n\\tcols=\\\"5\\\" \\r\\n\\tdescription=\\\"Map the form defaults.\\\" \\r\\n\\tclass=\\\"text_area span12\\\" \\r\\n\\tfilter=\\\"raw\\\" \\r\\n\\thint=\\\"\\/\\/ One field per line.\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\/>\"', 1, '2015-06-10 15:05:19', '2015-09-10 20:52:04', 7, '', 375, 'ca21f915-1d35-4f68-9879-80e391bbd3e7', '', '', '', '', ''),
(571, '', '', '', '', '', '', '', '', '', '', 'CHAR', '', '', '', 'AS Keys (a to zz)', 'NOT NULL', '', 11, '\"<field \\r\\n\\ttype=\\\"list\\\" \\r\\n\\tname=\\\"as\\\" \\r\\n\\tlabel=\\\"AS\\\" \\r\\n\\tdescription=\\\"\\\" \\r\\n\\tclass=\\\"list_class fieldSmall\\\" \\r\\n\\tmultiple=\\\"false\\\" \\r\\n\\tfilter=\\\"WORD\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\toption=\\\"a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,t,u,v,w,x,y,z,aa,bb,cc,dd,ee,ff,gg,hh,ii,jj,kk,ll,mm,nn,oo,pp,qq,rr,ss,tt,uu,vv,ww,xx,yy,zz\\\" \\r\\n\\tdefault=\\\"a\\\" \\r\\n\\/>\"', 1, '2015-06-17 22:44:24', '2015-08-25 21:15:22', 1, '', 525, '8f757b39-5e0e-4831-8a71-1457db9e2e95', '', '', '', '', ''),
(572, '', '', '', '', '', '', '', '', 10, '', 'CHAR', '', '', '', 'Order Direction', 'NOT NULL', '', 11, '\"<field\\n\\ttype=\\\"list\\\"\\n\\tname=\\\"direction\\\"\\n\\tlabel=\\\"Ordering Direction\\\"\\n\\tclass=\\\"list_class\\\"\\n\\tmultiple=\\\"false\\\"\\n\\tfilter=\\\"WORD\\\"\\n\\trequired=\\\"true\\\"\\n\\toption=\\\"ASC|Ascending,DESC|Descending,RAND|Random\\\"\\n\\/>\"', 1, '2015-06-17 22:50:44', '2020-05-20 12:46:58', 3, '', 550, '01abb509-e141-4032-bdbd-07984e9c9185', '', '', '', '', ''),
(573, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Add Ordering Query', 'NOT NULL', '', 35, '\"<field \\r\\n\\ttype=\\\"subform\\\" \\r\\n\\tname=\\\"order\\\" \\r\\n\\tlabel=\\\"Ordering\\\" \\r\\n\\tlayout=\\\"joomla.form.field.subform.repeatable-table\\\" \\r\\n\\tmultiple=\\\"true\\\" \\r\\n\\tfields=\\\"536,572\\\" \\r\\n\\tdescription=\\\"Here you can set the ordering per data set.\\\" \\r\\n\\ticon=\\\"list\\\" \\r\\n\\tmaximum=\\\"50\\\" \\r\\n\\/>\"', 1, '2015-06-17 22:52:36', '2017-09-25 11:10:54', 3, '', 531, '007dc9f8-9b06-4211-83c9-4134b23d6561', '', '', '', '', ''),
(574, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Add PHP (add_php_document (use))', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"add_php_document\\\" \\r\\n\\tlabel=\\\"Add PHP (custom document 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-18 23:29:38', '2016-04-22 21:02:33', 3, '', 546, '46fa9c1e-5aa3-41ff-8f02-e9a80252ad9f', '', '', '', '', ''),
(575, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Add CSS (custom document script)', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"add_css_document\\\" \\r\\n\\tlabel=\\\"Add CSS (custom document 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-18 23:30:49', '2015-08-25 21:15:22', 1, '', 545, '4a8003fa-7458-405e-90d3-7728b1af9e86', '', '', '', '', ''),
(576, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Add JS (custom document script)', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"add_js_document\\\" \\r\\n\\tlabel=\\\"Add JS (custom document 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-18 23:31:10', '2015-08-25 21:15:22', 1, '', 544, 'f76ffc06-f4c9-417e-8584-bc2f65184d18', '', '', '', '', ''),
(577, '', '', '', '', '', '', '', '', '', '', 'MEDIUMTEXT', '', '', '', 'PHP (php_document)', 'NOT NULL', 2, 8, '\"<field\\n\\ttype=\\\"editor\\\"\\n\\tname=\\\"php_document\\\"\\n\\tlabel=\\\"PHP document method\\\"\\n\\tdescription=\\\"Add PHP to the document method in the view.html.php file of this view. Do not add the php tags.\\\"\\n\\twidth=\\\"100%\\\"\\n\\theight=\\\"450px\\\"\\n\\tcols=\\\"15\\\"\\n\\trows=\\\"50\\\"\\n\\tbuttons=\\\"no\\\"\\n\\tsyntax=\\\"php\\\"\\n\\teditor=\\\"codemirror|none\\\"\\n\\tfilter=\\\"raw\\\"\\n\\tvalidate=\\\"code\\\"\\n\\/>\"', 1, '2015-06-18 23:33:02', '2019-07-08 14:15:00', 4, '', 371, 'e4d3c22b-1297-450b-8108-c389f834e354', '', '', '', '', ''),
(578, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'CSS site (Document)', 'NOT NULL', 2, 8, '\"<field\\n\\ttype=\\\"editor\\\"\\n\\tname=\\\"css_document\\\"\\n\\tlabel=\\\"Custom Script (Document)\\\"\\n\\tdescription=\\\"CSS script to the document method. You can add in PHP like this: &quot;.$var.&quot;\\\"\\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-06-18 23:38:14', '2019-07-08 14:15:05', 4, '', 372, 'fd03122f-8c74-468a-8f8c-704e927c3b65', '', '', '', '', ''),
(579, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'JS site (Document)', 'NOT NULL', 2, 8, '\"<field\\n\\ttype=\\\"editor\\\"\\n\\tname=\\\"js_document\\\"\\n\\tlabel=\\\"Custom Script (Document)<br \\/><small>add custom JS script to the document method. You can add in PHP like this: &quot;.$var.&quot;<\\/small>\\\"\\n\\tdescription=\\\"JS script to the document method.\\\"\\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-06-18 23:38:47', '2019-07-08 14:15:12', 4, '', 376, 'ccb3cb86-8403-4494-a284-ce1fb782f0af', '', '', '', '', ''),
(580, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Add PHP (add_php_document)', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"add_php_document\\\" \\r\\n\\tlabel=\\\"Add PHP (custom document 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-18 23:48:18', '2016-04-22 21:02:04', 2, '', 543, '15c8ad75-bf8e-47d7-9677-0db134def495', '', '', '', '', ''),
(581, '', '', '', '', '', '', '', '', 11, '', 'INT', '', '', '', 'View Link', 'NOT NULL', '', 6, '\"<field \\r\\n\\ttype=\\\"adminviews\\\" \\r\\n\\tname=\\\"view_link\\\" \\r\\n\\tlabel=\\\"View (link)\\\" \\r\\n\\tdescription=\\\"Select a back-end view\\\" \\r\\n\\tmultiple=\\\"false\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\treadonly=\\\"\\\" \\r\\n\\tdisabled=\\\"\\\" \\r\\n\\textends=\\\"list\\\" \\r\\n\\ttable=\\\"#__###component###_admin_view\\\" \\r\\n\\tcomponent=\\\"com_###component###\\\" \\r\\n\\tview=\\\"admin_view\\\" \\r\\n\\tviews=\\\"admin_views\\\" \\r\\n\\tvalue_field=\\\"system_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 an option\');\\\" \\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-07-07 16:54:38', '2017-10-26 01:55:42', 4, '', 406, '2bbfc15f-0aad-4f00-a433-bc44d9e58710', '', '', '', '', ''),
(582, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', 2, '', '', 'Worldzone', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\"\\r\\n\\tname=\\\"worldzone\\\"\\r\\n\\tlabel=\\\"Worldzone\\\"\\r\\n\\tsize=\\\"40\\\"\\r\\n\\tmaxlength=\\\"50\\\" \\r\\n\\tdefault=\\\"\\\"\\r\\n\\tdescription=\\\"The zone this country belongs to\\\"\\r\\n\\tclass=\\\"text_area\\\"\\r\\n\\tfilter=\\\"INT\\\"\\r\\n\\trequired=\\\"false\\\"\\r\\n\\tmessage=\\\"Error! Please add zone code here.\\\"\\r\\n\\thint=\\\"only number\\\"\\r\\n\\/>\"', 1, '2015-07-09 13:59:48', '2015-08-25 21:15:22', 1, '', 562, '2a224445-e487-4993-81b0-2c336340e10b', '', '', '', '', ''),
(583, '', '', '', '', '', '', '', '', 7, '', 'CHAR', 2, '', '', 'Code Three (country)', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\"\\r\\n\\tname=\\\"codethree\\\"\\r\\n\\tlabel=\\\"Code Three\\\"\\r\\n\\tsize=\\\"40\\\"\\r\\n\\tmaxlength=\\\"3\\\" \\r\\n\\tdefault=\\\"\\\"\\r\\n\\tdescription=\\\"ISO 3166-1 alpha-3 codes are three-letter country codes defined in ISO 3166-1, part of the ISO 3166 standard published by the International Organization for Standardization (ISO), to represent countries, dependent territories, and special areas of geographical interest.\\\"\\r\\n\\tclass=\\\"text_area\\\"\\r\\n\\tfilter=\\\"WORD\\\"\\r\\n\\trequired=\\\"true\\\"\\r\\n\\tmessage=\\\"Error! Please add three-letter country code here.\\\"\\r\\n\\thint=\\\"NAM\\\"\\r\\n\\/>\"', 1, '2015-07-09 14:03:26', '2015-08-25 21:15:22', 5, '', 561, '95f46f99-0909-4a47-879b-ede06ef35fb8', '', '', '', '', ''),
(584, '', '', '', '', '', '', '', '', 7, '', 'CHAR', 2, '', '', 'Code Two (country)', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\"\\r\\n\\tname=\\\"codetwo\\\"\\r\\n\\tlabel=\\\"Code Two\\\"\\r\\n\\tsize=\\\"40\\\"\\r\\n\\tmaxlength=\\\"2\\\" \\r\\n\\tdefault=\\\"\\\"\\r\\n\\tdescription=\\\"ISO 3166-1 alpha-2 codes are two-letter country codes defined in ISO 3166-1, part of the ISO 3166 standard published by the International Organization for Standardization (ISO), to represent countries, dependent territories, and special areas of geographical interest.\\\"\\r\\n\\tclass=\\\"text_area\\\"\\r\\n\\tfilter=\\\"WORD\\\"\\r\\n\\trequired=\\\"true\\\"\\r\\n\\tmessage=\\\"Error! Please add two-letter country code here.\\\"\\r\\n\\thint=\\\"NA\\\"\\r\\n\\/>\"', 1, '2015-07-09 14:05:40', '2015-08-25 21:15:22', 4, '', 560, '2039d1c3-162c-401c-96fe-f127683ee3fe', '', '', '', '', ''),
(585, '', '', '', '', '', '', '', '', 7, '', 'CHAR', 2, '', '', 'Currency (dynamic)', 'NOT NULL', '', 6, '\"<field \\r\\n\\ttype=\\\"currency\\\" \\r\\n\\tname=\\\"currency\\\" \\r\\n\\tlabel=\\\"Currency\\\" \\r\\n\\tdescription=\\\"List of available currencies\\\" \\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\tmultiple=\\\"false\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\treadonly=\\\"\\\" \\r\\n\\tdisabled=\\\"\\\" \\r\\n\\textends=\\\"list\\\" \\r\\n\\ttable=\\\"#__###component###_currency\\\" \\r\\n\\tcomponent=\\\"com_###component###\\\" \\r\\n\\tview=\\\"currency\\\" \\r\\n\\tviews=\\\"currencies\\\" \\r\\n\\tvalue_field=\\\"name\\\" \\r\\n\\tkey_field=\\\"codethree\\\" \\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_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-07-09 14:15:44', '2015-08-25 21:15:22', 4, '', 559, '4b89a17d-d15e-4817-9318-9c23cc959315', '', '', '', '', ''),
(586, '', '', '', '', '', '', '', '', 7, '', 'CHAR', 1, '', '', 'Code Three (currency)', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\"\\r\\n\\tname=\\\"codethree\\\"\\r\\n\\tlabel=\\\"Code Three\\\"\\r\\n\\tsize=\\\"40\\\"\\r\\n\\tmaxlength=\\\"3\\\" \\r\\n\\tdefault=\\\"\\\"\\r\\n\\tdescription=\\\"The following is a list of active codes of official ISO 4217 currency names.\\\"\\r\\n\\tclass=\\\"text_area\\\"\\r\\n\\tfilter=\\\"WORD\\\"\\r\\n\\trequired=\\\"true\\\"\\r\\n\\tmessage=\\\"Error! Please add three-letter currency code here.\\\"\\r\\n\\thint=\\\"NAD\\\"\\r\\n\\/>\"', 1, '2015-07-09 14:33:44', '2015-08-25 21:15:22', 1, '', 558, '59f0d051-768e-41de-87a0-f47551f7d0d1', '', '', '', '', ''),
(587, '', '', '', '', '', '', '', '', 10, '', 'INT', 2, '', '', 'Numeric Code (currency)', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\"\\r\\n\\tname=\\\"numericcode\\\"\\r\\n\\tlabel=\\\"Numeric Code\\\"\\r\\n\\tsize=\\\"40\\\"\\r\\n\\tmaxlength=\\\"5\\\" \\r\\n\\tdefault=\\\"\\\"\\r\\n\\tdescription=\\\"There is also a three-digit code number assigned to each currency, in the same manner as there is also a three-digit code number assigned to each country as part of ISO 3166. This numeric code is usually the same as the ISO 3166-1 numeric code. For example, USD (United States dollar) has code 840 which is also the numeric code for the US (United States).\\\"\\r\\n\\tclass=\\\"text_area\\\"\\r\\n\\tfilter=\\\"INT\\\"\\r\\n\\trequired=\\\"true\\\"\\r\\n\\tmessage=\\\"Error! Please add numeric code here.\\\"\\r\\n\\thint=\\\"516\\\"\\r\\n\\/>\"', 1, '2015-07-09 14:40:52', '2015-08-25 21:15:22', 3, '', 557, '40da896f-5054-4bb2-aa58-1cdfb391f544', '', '', '', '', ''),
(588, '', '', '', '', '', '', '', '', 11, '', 'CHAR', '', '', '', 'Symbol (currency)', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\"\\r\\n\\tname=\\\"symbol\\\"\\r\\n\\tlabel=\\\"Symbol\\\"\\r\\n\\tsize=\\\"40\\\"\\r\\n\\tmaxlength=\\\"7\\\" \\r\\n\\tdefault=\\\"\\\"\\r\\n\\tdescription=\\\"A currency symbol is a graphic symbol used as a shorthand for a currency\'s name, especially in reference to amounts of money.\\\"\\r\\n\\tclass=\\\"text_area\\\"\\r\\n\\tfilter=\\\"STRING\\\"\\r\\n\\trequired=\\\"true\\\"\\r\\n\\tmessage=\\\"Error! Please add currency symbol here.\\\"\\r\\n\\thint=\\\"N$\\\"\\r\\n\\/>\"', 1, '2015-07-09 14:44:24', '2015-08-25 21:15:22', 1, '', 556, 'c9a4c765-a0f9-42da-8fa9-df41ab70c448', '', '', '', '', ''),
(589, '', '', '', '', '', '', '', '', 7, '', 'INT', '', '', '', 'Decimalplace (currency)', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\"\\r\\n\\tname=\\\"decimalplace\\\"\\r\\n\\tlabel=\\\"Decimal place\\\"\\r\\n\\tsize=\\\"40\\\"\\r\\n\\tmaxlength=\\\"2\\\" \\r\\n\\tdefault=\\\"2\\\"\\r\\n\\tdescription=\\\" The position of a digit to the right of a decimal point, usually identified by successive ascending ordinal numbers with the digit immediately to the right of the decimal point being first: a figure accurate to the third decimal place.\\\"\\r\\n\\tclass=\\\"text_area\\\"\\r\\n\\tfilter=\\\"INT\\\"\\r\\n\\trequired=\\\"true\\\"\\r\\n\\tmessage=\\\"Error! Please add currency decimal place here.\\\"\\r\\n\\thint=\\\"2\\\"\\r\\n\\/>\"', 1, '2015-07-09 14:48:07', '2015-08-25 21:15:22', 2, '', 551, '09fec39d-831c-4070-9c3e-3e28c6479941', '', '', '', '', ''),
(590, '', '', '', '', '', '', '', '', 7, '', 'CHAR', '', '', '', 'Decimalsymbol (currency)', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\"\\r\\n\\tname=\\\"decimalsymbol\\\"\\r\\n\\tlabel=\\\"Decimal symbol\\\"\\r\\n\\tsize=\\\"40\\\"\\r\\n\\tmaxlength=\\\"2\\\" \\r\\n\\tdefault=\\\".\\\"\\r\\n\\tdescription=\\\" The symbol used to separate the integer part of a decimal number from its fractional part is called the decimal point.\\\"\\r\\n\\tclass=\\\"text_area\\\"\\r\\n\\tfilter=\\\"STRING\\\"\\r\\n\\trequired=\\\"true\\\"\\r\\n\\tmessage=\\\"Error! Please add currency decimal symbol here.\\\"\\r\\n\\thint=\\\".\\\"\\r\\n\\/>\"', 1, '2015-07-09 14:50:01', '2015-08-25 21:15:22', 1, '', 552, '38272246-7bae-413a-99fb-80ac67129596', '', '', '', '', ''),
(591, '', '', '', '', '', '', '', '', 7, '', 'CHAR', '', '', '', 'Thousands (currency)', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\"\\r\\n\\tname=\\\"thousands\\\"\\r\\n\\tlabel=\\\"Thousands separator\\\"\\r\\n\\tsize=\\\"40\\\"\\r\\n\\tmaxlength=\\\"\\\" \\r\\n\\tdefault=\\\"\\\"\\r\\n\\tdescription=\\\"\\\"\\r\\n\\tclass=\\\"text_area\\\"\\r\\n\\tfilter=\\\"STRING\\\"\\r\\n\\trequired=\\\"true\\\"\\r\\n\\tmessage=\\\"Error! Please add currency thousands separator here.\\\"\\r\\n\\thint=\\\" \\\"\\r\\n\\/>\"', 1, '2015-07-09 14:53:46', '2015-08-25 21:15:22', 1, '', 553, '345acfce-8f6d-4e31-b36b-2edd500edd25', '', '', '', '', ''),
(592, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Positivestyle (currency)', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\"\\r\\n\\tname=\\\"positivestyle\\\"\\r\\n\\tlabel=\\\"Positive style\\\"\\r\\n\\tsize=\\\"40\\\"\\r\\n\\tmaxlength=\\\"\\\" \\r\\n\\tdefault=\\\"\\\"\\r\\n\\tdescription=\\\"Please use the following placeholders {number} {symbol} to build the currency positive style.\\\"\\r\\n\\tclass=\\\"text_area\\\"\\r\\n\\tfilter=\\\"STRING\\\"\\r\\n\\trequired=\\\"true\\\"\\r\\n\\tmessage=\\\"Error! Please add currency positive style here.\\\"\\r\\n\\thint=\\\"{number} {symbol}\\\"\\r\\n\\/>\"', 1, '2015-07-09 14:59:38', '2015-08-25 21:15:22', 2, '', 554, 'bb56bfa9-ed4d-4285-9706-afb487f54e46', '', '', '', '', ''),
(593, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Negativestyle (currency)', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\"\\r\\n\\tname=\\\"negativestyle\\\"\\r\\n\\tlabel=\\\"Negative style\\\"\\r\\n\\tsize=\\\"40\\\"\\r\\n\\tmaxlength=\\\"\\\" \\r\\n\\tdefault=\\\"\\\"\\r\\n\\tdescription=\\\"Please use the following placeholders {sign}{number} {symbol} to build the currency negative style.\\\"\\r\\n\\tclass=\\\"text_area\\\"\\r\\n\\tfilter=\\\"STRING\\\"\\r\\n\\trequired=\\\"true\\\"\\r\\n\\tmessage=\\\"Error! Please add currency negative style here.\\\"\\r\\n\\thint=\\\"{sign}{number} {symbol}\\\"\\r\\n\\/>\"', 1, '2015-07-09 15:01:22', '2015-08-25 21:15:22', 1, '', 555, '9fc08beb-c861-4af4-997d-58a2c4874271', '', '', '', '', ''),
(594, '', '', '', '', '', '', '', '', 1, '', 'INT', 2, '', '', 'Causes/Risk Categories', 'NOT NULL', '', 2, '\"<field \\r\\n\\ttype=\\\"category\\\" \\r\\n\\tname=\\\"diseasecategory\\\" \\r\\n\\tlabel=\\\"Category\\\" \\r\\n\\textension=\\\"com_###component###.causesrisks\\\" \\r\\n\\tscope=\\\"\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tdescription=\\\"select one of the following categories\\\" \\r\\n\\tclass=\\\"inputbox\\\" \\r\\n\\tothername=\\\"Categories\\\" \\r\\n\\tviews=\\\"causesrisks\\\" \\r\\n\\tview=\\\"causerisk\\\"\\r\\n\\/>\"', 1, '2015-07-09 18:16:52', '2015-08-25 21:15:22', 4, '', 563, '840cd7a1-9664-4599-867b-0a790b76e750', '', '', '', '', ''),
(595, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', 2, '', '', 'Import Name', 'NOT NULL', '', 24, '\"<field\\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"importname\\\" \\r\\n\\tlabel=\\\"Import Name\\\" \\r\\n\\tsize=\\\"40\\\" \\r\\n\\tmaxlength=\\\"150\\\" \\r\\n\\tdescription=\\\"Enter Import Name Here\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\treadonly=\\\"false\\\" \\r\\n\\tdisabled=\\\"false\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\tfilter=\\\"STRING\\\" \\r\\n\\tmessage=\\\"Error! Please add import name here.\\\" \\r\\n\\thint=\\\"Import Name Here\\\" \\r\\n\\/>\"', 1, '2015-07-09 18:22:10', '2015-08-25 21:15:22', 1, '', 564, '677c13a8-4630-4466-9a53-0e4e63be6262', '', '', '', '', ''),
(597, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Articles (joomla)', 'NOT NULL', '', 6, '\"<field\\n\\ttype=\\\"articles\\\"\\n\\tname=\\\"article\\\"\\n\\tlabel=\\\"Article\\\"\\n\\tdescription=\\\"\\\"\\n\\tclass=\\\"list_class\\\"\\n\\tlayout=\\\"joomla.form.field.list-fancy-select\\\"\\n\\tmultiple=\\\"false\\\"\\n\\tdefault=\\\"0\\\"\\n\\trequired=\\\"true\\\"\\n\\treadonly=\\\"\\\"\\n\\tdisabled=\\\"\\\"\\n\\textends=\\\"list\\\"\\n\\ttable=\\\"#__content\\\"\\n\\tcomponent=\\\"com_content\\\"\\n\\tview=\\\"article\\\"\\n\\tviews=\\\"articles\\\"\\n\\tvalue_field=\\\"title\\\"\\n\\tkey_field=\\\"id\\\"\\n\\ttype_php_1=\\\"__.o0=base64=Oo.__JGRiID0gSkZhY3Rvcnk6OmdldERCTygpOw0KJHF1ZXJ5ID0gJGRiLT5nZXRRdWVyeSh0cnVlKTsNCiRxdWVyeS0+c2VsZWN0KCRkYi0+cXVvdGVOYW1lKGFycmF5KCdhLiMjI0lEIyMjJywnYS4jIyNURVhUIyMjJywnYS5hbGlhcycpLGFycmF5KCcjIyNJRCMjIycsJyMjI0NPREVfVEVYVCMjIycsJ2FsaWFzJykpKTsNCiRxdWVyeS0+ZnJvbSgkZGItPnF1b3RlTmFtZSgnIyMjVEFCTEUjIyMnLCAnYScpKTsNCiRxdWVyeS0+d2hlcmUoJGRiLT5xdW90ZU5hbWUoJ2Euc3RhdGUnKSAuICcgPSAxJyk7DQokcXVlcnktPm9yZGVyKCdhLiMjI1RFWFQjIyMgQVNDJyk7DQokZGItPnNldFF1ZXJ5KChzdHJpbmcpJHF1ZXJ5KTsNCiRpdGVtcyA9ICRkYi0+bG9hZE9iamVjdExpc3QoKTsNCiRvcHRpb25zID0gYXJyYXkoKTsNCmlmICgkaXRlbXMpDQp7DQpcdCRvcHRpb25zW10gPSBKSHRtbDo6Xygnc2VsZWN0Lm9wdGlvbicsICcnLCAnU2VsZWN0IGFuIEFydGljbGUnKTsNClx0Zm9yZWFjaCgkaXRlbXMgYXMgJGl0ZW0pDQpcdHsNClx0XHQkb3B0aW9uc1tdID0gSkh0bWw6Ol8oJ3NlbGVjdC5vcHRpb24nLCAkaXRlbS0+IyMjSUQjIyMsICRpdGVtLT4jIyNDT0RFX1RFWFQjIyMgLiAnICgnIC4gJGl0ZW0tPmFsaWFzIC4gJyknKTsNClx0fQ0KfQ0KDQpyZXR1cm4gJG9wdGlvbnM7\\\"\\n\\/>\"', 1, '2015-07-13 22:43:55', '2024-03-26 13:24:30', 6, '', 565, 'f312a8f7-34b9-4731-af00-3ff2092c65b9', '', '', '', '', ''),
(598, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Help Content', 'NOT NULL', '', 8, '\"<field\\n\\ttype=\\\"editor\\\"\\n\\tname=\\\"content\\\"\\n\\tlabel=\\\"Content\\\"\\n\\twidth=\\\"100%\\\"\\n\\theight=\\\"300 px\\\"\\n\\tbuttons=\\\"false\\\"\\n\\tfilter=\\\"safehtml\\\"\\n\\/>\"', 1, '2015-07-13 23:06:24', '2019-07-08 14:15:33', 2, '', 122, '8b9665d1-f1d9-4d7e-bc2c-72479bf4686f', '', '', '', '', ''),
(599, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Groups (multi)', 'NOT NULL', 1, 29, '\"<field \\r\\n\\ttype=\\\"usergroup\\\" \\r\\n\\tname=\\\"groups\\\" \\r\\n\\tlabel=\\\"Group\\/s\\\" \\r\\n\\trequired=\\\"true\\\"\\r\\n\\tdescription=\\\"Select a group\\/s\\\"\\r\\n\\tmultiple=\\\"true\\\"\\r\\n\\/>\"', 1, '2015-07-13 23:10:19', '2015-09-25 17:03:00', 5, '', 50, '59a0cad6-26cc-43b6-8af8-2242eb595d76', '', '', '', '', ''),
(600, '', '', '', '', '', '', '', '', 255, '', 'CHAR', '', '', '', 'List of Admin Views', 'NOT NULL', '', 31, '\"<field \\r\\n\\ttype=\\\"folderlist\\\" \\r\\n\\tname=\\\"admin_view\\\" \\r\\n\\tlabel=\\\"Admin Views\\\" \\r\\n\\tdirectory=\\\"\\/administrator\\/components\\/com_###component###\\/views\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\thide_none=\\\"true\\\"\\r\\n\\thide_default=\\\"true\\\"\\r\\n\\tdescription=\\\"Select the view being targeted\\\"\\r\\n\\/>\"', 1, '2015-07-13 23:21:47', '2015-08-25 21:15:22', 3, '', 566, '9c49e1b0-2083-432e-a837-c8c7ef790cbf', '', '', '', '', ''),
(601, '', '', '', '', '', '', '', '', 255, '', 'CHAR', '', '', '', 'List of Site Views', 'NOT NULL', '', 31, '\"<field \\r\\n\\ttype=\\\"folderlist\\\" \\r\\n\\tname=\\\"site_view\\\" \\r\\n\\tlabel=\\\"Site Views\\\" \\r\\n\\tdirectory=\\\"\\/components\\/com_###component###\\/views\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\thide_none=\\\"true\\\"\\r\\n\\thide_default=\\\"true\\\"\\r\\n\\tdescription=\\\"Select the view being targeted\\\"\\r\\n\\/>\"', 1, '2015-07-13 23:22:25', '2015-08-25 21:15:22', 3, '', 566, 'f3de6de1-8f27-4cec-ab59-27d145c4cc91', '', '', '', '', ''),
(602, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Help Type', 'NOT NULL', '', 11, '\"<field \\r\\n\\ttype=\\\"list\\\" \\r\\n\\tname=\\\"type\\\" \\r\\n\\tlabel=\\\"Type\\\" \\r\\n\\tdescription=\\\"Select the help type.\\\" \\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\trequired=\\\"true\\\"\\r\\n\\tmultiple=\\\"false\\\" \\r\\n\\toption=\\\"|Select an option,1|Joomla Article,2|Text,3|URL\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\/>\"', 1, '2015-07-13 23:24:51', '2015-08-25 21:15:22', 3, '', 244, '8487b70c-4a32-46ba-aacb-ea07a1e3d278', '', '', '', '', ''),
(603, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Location (site,admin)', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"location\\\" \\r\\n\\tlabel=\\\"Location\\\" \\r\\n\\tdescription=\\\"Select the help target location.\\\" \\r\\n\\tclass=\\\"btn-group\\\" \\r\\n\\toption=\\\"1|Admin,2|Site\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\/>\"', 1, '2015-07-13 23:34:24', '2015-08-25 21:15:22', 3, '', 244, '0d06a4f6-acd5-4acc-8a3f-28813de178ac', '', '', '', '', ''),
(604, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Target Options', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"target\\\" \\r\\n\\tlabel=\\\"Target Groups\\\" \\r\\n\\tdescription=\\\"Select the target option in relation to groups.\\\" \\r\\n\\toption=\\\"1|Some,2|All\\\" \\r\\n\\tclass=\\\"btn-group\\\"\\r\\n\\tdefault=\\\"\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\/>\"', 1, '2015-07-14 20:16:12', '2015-08-25 21:15:22', 2, '', 70, '5810dc57-35ac-436e-88ff-117e1f501e67', '', '', '', '', ''),
(605, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'Country (dynamic - giz)', 'NOT NULL', '', 6, '\"<field \\r\\n\\ttype=\\\"countries\\\" \\r\\n\\tname=\\\"country\\\" \\r\\n\\tlabel=\\\"Country\\\" \\r\\n\\tdescription=\\\"List of available countries\\\" \\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\tmultiple=\\\"false\\\" \\r\\n\\tdefault=\\\"0\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\treadonly=\\\"\\\" \\r\\n\\tdisabled=\\\"\\\" \\r\\n\\textends=\\\"list\\\" \\r\\n\\ttable=\\\"#__###component###_country\\\" \\r\\n\\tcomponent=\\\"com_###component###\\\" \\r\\n\\tview=\\\"country\\\" \\r\\n\\tviews=\\\"countries\\\" \\r\\n\\tvalue_field=\\\"name\\\" \\r\\n\\tkey_field=\\\"id\\\" \\r\\n\\ttype_php_1=\\\"\\/\\/ Get the user object.\\\\n\\\\t\\\\t$user = JFactory::getUser();\\\\n\\\\t\\\\t\\/\\/ Create a new query object.\\\\n\\\\t\\\\t$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\');\\\\n\\\\t\\\\tif (!$user->authorise(\'core.options\', \'com_###component###\'))\\\\n\\\\t\\\\t{\\\\n\\\\t\\\\t\\\\t$countries = ###Component###Helper::hisCountries($user->id);\\\" \\r\\n\\ttype_php_6=\\\"\\\\tif (###Component###Helper::checkArray($countries))\\\\n\\\\t\\\\t\\\\t{\\\" \\r\\n\\ttype_php_7=\\\"\\\\t\\\\t$countries = implode(\',\',$countries);\\\\n\\\\t\\\\t\\\\t\\\\t\\/\\/ only load this users companies\\\\n\\\\t\\\\t\\\\t\\\\t$query->where(\'a.id IN (\' . $countries . \')\');\\\\n\\\\t\\\\t\\\\t}\\\\n\\\\t\\\\t\\\\telse\\\\n\\\\t\\\\t\\\\t{\\\" \\r\\n\\ttype_php_8=\\\"\\\\t\\\\t\\/\\/ dont allow user to see any countries\\\" \\r\\n\\ttype_php_9=\\\"\\\\t\\\\t$query->where(\'a.id = -4\');\\\\n\\\\t\\\\t\\\\t}\\\\n\\\\t\\\\t}\\\" \\r\\n\\ttype_php_10=\\\"$query->order(\'a.###TEXT### ASC\');\\\" \\r\\n\\ttype_php_11=\\\"$db->setQuery((string)$query);\\\" \\r\\n\\ttype_php_12=\\\"$items = $db->loadObjectList();\\\" \\r\\n\\ttype_php_13=\\\"$options = array();\\\" \\r\\n\\ttype_php_14=\\\"if ($items)\\\" \\r\\n\\ttype_php_15=\\\"{\\\\n\\\\t\\\\t\\\\t$options[] = JHtml::_(\'select.option\', \'\', \'Select a country\');\\\"\\r\\n\\ttype_php_16=\\\"\\\\tforeach($items as $item)\\\\n\\\\t\\\\t\\\\t{\\\\n\\\\t\\\\t\\\\t\\\\t$options[] = JHtml::_(\'select.option\', $item->###ID###, $item->###CODE_TEXT###);\\\" \\r\\n\\ttype_php_17=\\\"\\\\t}\\\\n\\\\t\\\\t}\\\" \\r\\n\\ttype_php_18=\\\"\\\" \\r\\n\\ttype_php_19=\\\"return $options;\\\" \\r\\n\\/>\"', 1, '2015-07-15 23:44:46', '2016-01-13 15:32:22', 9, '', 567, '93a3a939-fccb-433f-8e87-9a44bae1983c', '', '', '', '', ''),
(606, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', 2, '', '', 'Public Name', 'NOT NULL', '', 24, '\"<field\\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"publicName\\\" \\r\\n\\tlabel=\\\"Public Name\\\"\\r\\n\\tsize=\\\"60\\\" \\r\\n\\tmaxlength=\\\"150\\\" \\r\\n\\tdescription=\\\"The name we may use publicly\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\treadonly=\\\"false\\\" \\r\\n\\tdisabled=\\\"false\\\" \\r\\n\\trequired=\\\"\\\" \\r\\n\\tfilter=\\\"STRING\\\" \\r\\n\\tmessage=\\\"Error! Please add public name here.\\\" \\r\\n\\thint=\\\"Public Name Here\\\" \\r\\n\\/>\"', 1, '2015-07-15 23:52:33', '2015-08-25 21:15:22', 2, '', 4, 'e6b9fbda-c7db-4346-adc1-5724b3c0e3b3', '', '', '', '', ''),
(607, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Public Email', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"publicEmail\\\" \\r\\n\\tlabel=\\\"Public Email\\\" \\r\\n\\tsize=\\\"60\\\" \\r\\n\\tmaxlength=\\\"150\\\" \\r\\n\\tdescription=\\\"The email we may use publicly\\\" \\r\\n\\tclass=\\\"text_area\\\"\\r\\n\\tfilter=\\\"STRING\\\" \\r\\n\\tvalidate=\\\"email\\\" \\r\\n\\trequired=\\\"\\\"\\r\\n\\tmessage=\\\"Error! Please public email address here.\\\" \\r\\n\\thint=\\\"Public Email Here\\\"\\r\\n\\/>\"', 1, '2015-07-15 23:56:49', '2015-08-25 21:15:22', 1, '', 204, 'c05f5279-99ca-47b3-9400-c7f7ef7b115a', '', '', '', '', ''),
(608, '', '', '', '', '', '', '', '', 64, '', 'VARCHAR', '', '', '', 'Public Phone', 'NOT NULL', '', 23, '\"<field\\n\\ttype=\\\"tel\\\"\\n\\tname=\\\"publicnumber\\\"\\n\\tlabel=\\\"Public Phone\\\"\\n\\tsize=\\\"60\\\"\\n\\tmaxlength=\\\"150\\\"\\n\\tdefault=\\\"\\\"\\n\\tdescription=\\\"The phone number we may use publicly\\\"\\n\\tclass=\\\"text_area\\\"\\n\\tfilter=\\\"STRING\\\"\\n\\tvalidated=\\\"tel\\\"\\n\\tmessage=\\\"Error! Please add public phone number here.\\\"\\n\\thint=\\\"Public Phone Here\\\"\\n\\/>\"', 1, '2015-07-15 23:59:29', '2018-06-22 21:16:00', 4, '', 7, '866534e1-c9a3-41b0-bfa3-12c04d131200', '', '', '', '', ''),
(609, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Public Address', 'NOT NULL', '', 8, '\"<field \\r\\n\\ttype=\\\"editor\\\" \\r\\n\\tname=\\\"publicAddress\\\" \\r\\n\\tlabel=\\\"Public Address\\\" \\r\\n\\twidth=\\\"100%\\\" \\r\\n\\theight=\\\"50px\\\" \\r\\n\\tcols=\\\"\\\" \\r\\n\\trows=\\\"\\\" \\r\\n\\tbuttons=\\\"false\\\" \\r\\n\\thide=\\\"\\\" \\r\\n\\teditor=\\\"\\\" \\r\\n\\tfilter=\\\"safehtml\\\" \\r\\n\\trequired=\\\"\\\" \\r\\n\\/>\"', 1, '2015-07-16 00:02:01', '2015-08-25 21:15:22', 1, '', 568, 'f675cb18-7a5f-4659-8044-575d7c895b77', '', '', '', '', ''),
(610, '', '', '', '', '', '', '', '', '', '', 'CHAR', '', '', '', 'Note - Public Contact Details', 'NOT NULL', '', 14, '\"<field \\r\\n\\ttype=\\\"note\\\" \\r\\n\\tname=\\\"public_details_note\\\"\\r\\n\\tdescription=\\\"Your Public Contact Details\\\" \\r\\n\\tclass=\\\"alert alert-info,\\\" \\r\\n\\/>\"', 1, '2015-07-16 00:04:50', '2015-08-25 21:15:22', 1, '', 35, '3db01427-c7a0-4137-aa3e-6010f527387d', '', '', '', '', ''),
(611, '', '', '', '', '', '', '', '', '', '', 'CHAR', '', '', '', 'Note - Country Default Values', 'NOT NULL', '', 14, '\"<field \\r\\n\\ttype=\\\"note\\\" \\r\\n\\tname=\\\"public_details_note\\\"\\r\\n\\tdescription=\\\"These are the country default values\\\" \\r\\n\\tclass=\\\"alert alert-info\\\" \\r\\n\\/>\"', 1, '2015-07-16 00:06:13', '2015-08-25 21:15:22', 1, '', 35, '9fc869ac-fd44-4a39-85ce-8d0f4b43cf2a', '', '', '', '', ''),
(612, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Profile Status', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"per\\\" \\r\\n\\tlabel=\\\"Profile Status\\\" \\r\\n\\tdescription=\\\"Select your profile access status\\\" \\r\\n\\tclass=\\\"btn-group btn-group-yesno\\\" \\r\\n\\toption=\\\"1|Open,0|Locked\\\"\\r\\n\\tdefault=\\\"1\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\/>\"', 1, '2015-07-16 00:16:20', '2015-08-25 21:15:22', 3, '', 569, 'fc740ac5-8e3a-4fd3-b3ec-a9ae9bfbea68', '', '', '', '', ''),
(613, '', '', '', '', '', '', '', '', 7, '', 'CHAR', 2, '', '', 'Data Year (list 2010-2024)', 'NOT NULL', '', 11, '\"<field \\r\\n\\ttype=\\\"list\\\" \\r\\n\\tname=\\\"year\\\" \\r\\n\\tlabel=\\\"Data Year\\\" \\r\\n\\tdescription=\\\"\\\" \\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\tmultiple=\\\"false\\\"\\r\\n\\tfilter=\\\"INT\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\toption=\\\"|Select a year,2010,2011,2012,2013,2014,2015,2016,2017,2018,2019,2020,2021,2022,2023,2024\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\/>\"', 1, '2015-07-16 00:38:15', '2015-08-25 21:15:22', 2, '', 570, '39c9d15c-9ec3-41c4-9640-6edc9d74d933', '', '', '', '', ''),
(614, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'Causes/Risks (dynamic)', 'NOT NULL', '', 6, '\"<field \\r\\n\\ttype=\\\"causesrisks\\\" \\r\\n\\tname=\\\"causerisk\\\" \\r\\n\\tlabel=\\\"Cause\\/Risk\\\" \\r\\n\\tdescription=\\\"\\\" \\r\\n\\tclass=\\\"list_class span12\\\" \\r\\n\\tmultiple=\\\"false\\\" \\r\\n\\tdefault=\\\"0\\\" \\r\\n\\trequired=\\\"\\\" \\r\\n\\treadonly=\\\"\\\" \\r\\n\\tdisabled=\\\"\\\" \\r\\n\\textends=\\\"list\\\" \\r\\n\\ttable=\\\"#__###component###_causerisk\\\" \\r\\n\\tcomponent=\\\"com_###component###\\\" \\r\\n\\tview=\\\"causerisk\\\" \\r\\n\\tviews=\\\"causesrisks\\\" \\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.ref\'),array(\'###ID###\',\'###CODE_TEXT###\',\'ref\')));\\\" \\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.ref 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_13=\\\"\\\\tforeach($items as $item)\\\" \\r\\n\\ttype_php_14=\\\"\\\\t{\\\\n\\\\t\\\\t\\\\t\\\\t$ref = explode(\'.\',$item->ref);\\\\n\\\\t\\\\t\\\\t\\\\t$key = explode(\'.0\',$item->ref);\\\\n\\\\t\\\\t\\\\t\\\\t$key = implode(\'.\',$key);\\\\n\\\\t\\\\t\\\\t\\\\t$spacer = array();\\\" \\r\\n\\ttype_php_15=\\\"\\\\t\\\\tforeach ($ref as $nr => $space)\\\\n\\\\t\\\\t\\\\t\\\\t{\\\\n\\\\t\\\\t\\\\t\\\\t\\\\tif ($nr > 1)\\\\n\\\\t\\\\t\\\\t\\\\t\\\\t{\\\\n\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t$spacer[] = \'|&mdash;\';\\\\n\\\\t\\\\t\\\\t\\\\t\\\\t}\\\\n\\\\t\\\\t\\\\t\\\\t}\\\\n\\\\t\\\\t\\\\t\\\\tif (###Component###Helper::checkArray($spacer))\\\\n\\\\t\\\\t\\\\t\\\\t{\\\\n\\\\t\\\\t\\\\t\\\\t\\\\t$options[] = JHtml::_(\'select.option\', $item->###ID###, implode(\'\',$spacer).\' \'.$item->###CODE_TEXT###.\'&nbsp;(\'.$key.\')\');\\\\n\\\\t\\\\t\\\\t\\\\t}\\\\n\\\\t\\\\t\\\\t\\\\telse\\\\n\\\\t\\\\t\\\\t\\\\t{\\\\n\\\\t\\\\t\\\\t\\\\t\\\\t$options[] = JHtml::_(\'select.option\', $item->###ID###, $item->###CODE_TEXT###.\'&nbsp;(\'.$key.\')\');\\\\n\\\\t\\\\t\\\\t\\\\t}\\\" \\r\\n\\ttype_php_16=\\\"\\\\t}\\\" \\r\\n\\ttype_php_17=\\\"}\\\" \\r\\n\\ttype_php_19=\\\"return $options;\\\" \\r\\n\\/>\"', 1, '2015-07-16 00:44:33', '2015-09-27 05:47:40', 12, '', 571, '743bb947-6d5a-4f95-be1c-654e14a66d4d', '', '', '', '', ''),
(615, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Age Group (list)', 'NOT NULL', '', 11, '\"<field \\r\\n\\ttype=\\\"list\\\" \\r\\n\\tname=\\\"age\\\" \\r\\n\\tlabel=\\\"Age Group\\\" \\r\\n\\tdescription=\\\"\\\" \\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\tmultiple=\\\"false\\\" \\r\\n\\tfilter=\\\"CMD\\\" \\r\\n\\trequired=\\\"\\\" \\r\\n\\toption=\\\"15-19,20-24,25-29,30-34,35-39,40-44,45-49,50-54,55-59,60-64\\\"\\r\\n\\tdefault=\\\"\\\" \\r\\n\\/>\"', 1, '2015-07-16 00:50:00', '2015-08-25 21:15:22', 2, '', 572, '9b738cea-f897-425c-ad47-bc1705f75bea', '', '', '', '', ''),
(616, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Number', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"number\\\" \\r\\n\\tlabel=\\\"Number\\\" \\r\\n\\tsize=\\\"10\\\" \\r\\n\\tmaxlength=\\\"50\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tdescription=\\\"\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\treadonly=\\\"false\\\" \\r\\n\\tdisabled=\\\"false\\\" \\r\\n\\trequired=\\\"false\\\" \\r\\n\\tfilter=\\\"FLOAT\\\" \\r\\n\\tmessage=\\\"Error! Please add number here.\\\" \\r\\n\\thint=\\\"Number Here\\\" \\r\\n\\/>\"', 1, '2015-07-16 00:58:20', '2015-08-25 21:15:22', 1, '', 573, '6cf71246-7b9c-4f45-b526-21976d14cc92', '', '', '', '', ''),
(617, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Males Death', 'NOT NULL', '', 19, '\"<field \\r\\n\\ttype=\\\"repeatable\\\" \\r\\n\\tname=\\\"maledeath\\\" \\r\\n\\tlabel=\\\"Set Males Death\\\" \\r\\n\\tdescription=\\\"Here you can add males death data.\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tid=\\\"maledeath\\\" \\r\\n\\tclass=\\\"malesdeath\\\" \\r\\n\\tselect=\\\"Edit\\/Add\\\" \\r\\n\\ticon=\\\"list\\\" \\r\\n\\tmaximum=\\\"10\\\" \\r\\n\\tfields=\\\"615,616\\\" \\r\\n\\/>\"', 1, '2015-07-16 01:02:03', '2015-08-25 21:15:22', 3, '', 533, '31b8d5a1-64a6-45e6-878e-11ecaa6b469f', '', '', '', '', ''),
(618, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Females Death', 'NOT NULL', '', 19, '\"<field \\r\\n\\ttype=\\\"repeatable\\\" \\r\\n\\tname=\\\"femaledeath\\\" \\r\\n\\tlabel=\\\"Set Females Death\\\" \\r\\n\\tdescription=\\\"Here you can add females death data.\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tid=\\\"femaledeath\\\" \\r\\n\\tclass=\\\"femalesdeath\\\" \\r\\n\\tselect=\\\"Edit\\/Add\\\" \\r\\n\\ticon=\\\"list\\\" \\r\\n\\tmaximum=\\\"10\\\" \\r\\n\\tfields=\\\"615,616\\\" \\r\\n\\/>\"', 1, '2015-07-16 01:03:00', '2015-08-25 21:15:22', 2, '', 533, 'fab04e1c-009b-4e7b-8eba-2dc23bfb14fd', '', '', '', '', ''),
(619, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Females YLD', 'NOT NULL', '', 19, '\"<field \\r\\n\\ttype=\\\"repeatable\\\" \\r\\n\\tname=\\\"femaleyld\\\" \\r\\n\\tlabel=\\\"Set Females YLD\\\" \\r\\n\\tdescription=\\\"Here you can add females YLD data.\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tid=\\\"femaleyld\\\" \\r\\n\\tclass=\\\"femalesyld\\\" \\r\\n\\tselect=\\\"Edit\\/Add\\\" \\r\\n\\ticon=\\\"list\\\" \\r\\n\\tmaximum=\\\"10\\\" \\r\\n\\tfields=\\\"615,616\\\" \\r\\n\\/>\"', 1, '2015-07-16 01:03:43', '2015-08-25 21:15:22', 2, '', 533, '013e054a-26d0-483f-ba40-fe266ed3e6ef', '', '', '', '', ''),
(620, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Males YLD', 'NOT NULL', '', 19, '\"<field \\r\\n\\ttype=\\\"repeatable\\\" \\r\\n\\tname=\\\"maleyld\\\" \\r\\n\\tlabel=\\\"Set Males YLD\\\" \\r\\n\\tdescription=\\\"Here you can add males YLD data.\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tid=\\\"maleyld\\\" \\r\\n\\tclass=\\\"malesyld\\\" \\r\\n\\tselect=\\\"Edit\\/Add\\\" \\r\\n\\ticon=\\\"list\\\" \\r\\n\\tmaximum=\\\"10\\\" \\r\\n\\tfields=\\\"615,616\\\" \\r\\n\\/>\"', 1, '2015-07-16 01:04:38', '2015-08-25 21:15:22', 2, '', 533, '12cc3049-2f26-4bf2-89a4-237d6a844756', '', '', '', '', ''),
(621, '', '', '', '', '', '', 1, '', 7, '', 'CHAR', '', '', '', 'Absenteeism scaling factor Males', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"yld_scaling_factor_Males\\\" \\r\\n\\tlabel=\\\"Absenteeism Scaling Male\\\" \\r\\n\\tsize=\\\"10\\\" \\r\\n\\tmaxlength=\\\"10\\\" \\r\\n\\tdefault=\\\"1\\\" \\r\\n\\tdescription=\\\"Absenteeism scaling factor for males\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\treadonly=\\\"false\\\" \\r\\n\\tdisabled=\\\"false\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\tfilter=\\\"CMD\\\" \\r\\n\\tvalidate=\\\"\\\" \\r\\n\\tmessage=\\\"Error! Please add scaling factor for males here.\\\" \\r\\n\\thint=\\\"Number Here\\\"\\r\\n\\/>\"', 1, '2015-07-16 01:27:03', '2016-04-04 17:18:02', 5, '', 574, '06d755d3-c18c-47a2-9509-69174d63876b', '', '', '', '', ''),
(622, '', '', '', '', '', '', 1, '', 7, '', 'CHAR', '', '', '', 'Absenteeism scaling factor Females', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"yld_scaling_factor_Females\\\" \\r\\n\\tlabel=\\\"Absenteeism Scaling Female\\\" \\r\\n\\tsize=\\\"10\\\" \\r\\n\\tmaxlength=\\\"10\\\" \\r\\n\\tdefault=\\\"1\\\" \\r\\n\\tdescription=\\\"Absenteeism scaling factor for females\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\treadonly=\\\"false\\\" \\r\\n\\tdisabled=\\\"false\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\tfilter=\\\"CMD\\\" \\r\\n\\tvalidate=\\\"\\\" \\r\\n\\tmessage=\\\"Error! Please add scaling factor for females here.\\\" \\r\\n\\thint=\\\"Number Here\\\"\\r\\n\\/>\"', 1, '2015-07-16 01:27:52', '2016-04-04 17:18:28', 4, '', 574, 'da82cdf5-15f0-45b2-b5e7-0678780a50f0', '', '', '', '', ''),
(623, '', '', '', '', '', '', 1, '', 7, '', 'CHAR', '', '', '', 'mortality scaling factor Males', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"mortality_scaling_factor_Males\\\" \\r\\n\\tlabel=\\\"Mortality Scaling Male\\\" \\r\\n\\tsize=\\\"10\\\" \\r\\n\\tmaxlength=\\\"10\\\" \\r\\n\\tdefault=\\\"1\\\" \\r\\n\\tdescription=\\\"Mortality scaling factor for males\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\treadonly=\\\"false\\\" \\r\\n\\tdisabled=\\\"false\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\tfilter=\\\"CMD\\\" \\r\\n\\tvalidate=\\\"\\\" \\r\\n\\tmessage=\\\"Error! Please add scaling factor for males here.\\\" \\r\\n\\thint=\\\"Number Here\\\"\\r\\n\\/>\"', 1, '2015-07-16 01:29:40', '2015-10-01 20:21:18', 3, '', 574, 'd1e0c4ca-2326-493b-85a2-77397b18d9fe', '', '', '', '', ''),
(624, '', '', '', '', '', '', 1, '', 7, '', 'CHAR', '', '', '', 'mortality scaling factor Females', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"mortality_scaling_factor_Females\\\" \\r\\n\\tlabel=\\\"Mortality Scaling Female\\\" \\r\\n\\tsize=\\\"10\\\" \\r\\n\\tmaxlength=\\\"10\\\" \\r\\n\\tdefault=\\\"1\\\" \\r\\n\\tdescription=\\\"Mortality scaling factor for females\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\treadonly=\\\"false\\\" \\r\\n\\tdisabled=\\\"false\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\tfilter=\\\"CMD\\\" \\r\\n\\tvalidate=\\\"\\\" \\r\\n\\tmessage=\\\"Error! Please add scaling factor for females here.\\\" \\r\\n\\thint=\\\"Number Here\\\"\\r\\n\\/>\"', 1, '2015-07-16 01:30:20', '2015-10-01 20:21:26', 3, '', 574, '39267dbf-fb69-47b7-8a47-d689d4bb520c', '', '', '', '', ''),
(625, '', '', '', '', '', '', 1, '', 7, '', 'CHAR', '', '', '', 'presenteeism scaling factor Females', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"presenteeism_scaling_factor_Females\\\" \\r\\n\\tlabel=\\\"Presenteeism Scaling Female\\\" \\r\\n\\tsize=\\\"10\\\" \\r\\n\\tmaxlength=\\\"10\\\" \\r\\n\\tdefault=\\\"1\\\" \\r\\n\\tdescription=\\\"Presenteeism scaling factor for females\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\treadonly=\\\"false\\\" \\r\\n\\tdisabled=\\\"false\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\tfilter=\\\"CMD\\\" \\r\\n\\tvalidate=\\\"\\\" \\r\\n\\tmessage=\\\"Error! Please add scaling factor for females here.\\\" \\r\\n\\thint=\\\"Number Here\\\"\\r\\n\\/>\"', 1, '2015-07-16 01:31:17', '2015-10-01 20:21:34', 3, '', 574, '37a35938-6951-4d07-9afa-2151a8f16794', '', '', '', '', ''),
(626, '', '', '', '', '', '', 1, '', 7, '', 'CHAR', '', '', '', 'presenteeism scaling factor Males', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"presenteeism_scaling_factor_Males\\\" \\r\\n\\tlabel=\\\"Presenteeism Scaling Male\\\" \\r\\n\\tsize=\\\"10\\\" \\r\\n\\tmaxlength=\\\"10\\\" \\r\\n\\tdefault=\\\"1\\\" \\r\\n\\tdescription=\\\"Presenteeism scaling factor for Males\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\treadonly=\\\"false\\\" \\r\\n\\tdisabled=\\\"false\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\tfilter=\\\"CMD\\\" \\r\\n\\tvalidate=\\\"\\\" \\r\\n\\tmessage=\\\"Error! Please add scaling factor for males here.\\\" \\r\\n\\thint=\\\"Number Here\\\"\\r\\n\\/>\"', 1, '2015-07-16 01:31:58', '2015-10-01 20:21:41', 3, '', 574, '0bfb7418-decf-4efc-8542-9ae5e6c77e5f', '', '', '', '', ''),
(627, 1, '', 1, '', 'LnRleHRfYXJlYXsNCgloZWlnaHQ6IDIwMHB4Ow0KCXdpZHRoOiAxMDAlOw0KfQ==', '', '', '', 255, '', 'VARCHAR', '', 'Ly8gYWRkIHRoZSBjYWxjdWxhdG9yIGJ1dHRvbg0KdmFyIGNhbF9idXR0b24gPSAnPGJyIC8+PGJyIC8+PGEgY2xhc3M9ImJ0biBidG4tc21hbGwgYnRuLXN1Y2Nlc3MiIGhyZWY9Imh0dHBzOi8vd3d3LnN0YWZmaGVhbHRoY2JwLmNvbS9kb3dubG9hZC9TY2FsaW5nX0ZhY3Rvcl9DYWxjdWxhdG9yX0NCUFRfM18wLnhsc3giPiA8c3BhbiBjbGFzcz0iaWNvbi1kb3dubG9hZCBpY29uLXdoaXRlIj48L3NwYW4+IENhbGN1bGF0b3IgPC9hPic7DQpqUXVlcnkoJyNqZm9ybV9jYXVzZXJpc2snKS5jbG9zZXN0KCcuY29udHJvbHMnKS5hcHBlbmQoY2FsX2J1dHRvbik7', '', 'Reference (scaling factors)', 'NOT NULL', '', 25, '\"<field \\r\\n\\ttype=\\\"textarea\\\" \\r\\n\\tname=\\\"reference\\\" \\r\\n\\tlabel=\\\"Reference\\\" \\r\\n\\trows=\\\"10\\\" \\r\\n\\tcols=\\\"5\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tdescription=\\\"Please give reference to the source of your data used in the scaling factors.\\\" \\r\\n\\tclass=\\\"text_area span12\\\" \\r\\n\\tfilter=\\\"HTML\\\" \\r\\n\\thint=\\\"\\/\\/ Source of your data\\\" \\r\\n\\trequired=\\\"\\\" \\r\\n\\/>\"', 1, '2015-07-16 01:46:08', '2016-08-16 11:43:25', 5, '', 575, 'eb0456b5-c2f1-4d7f-9ca3-70f1ea5e1d46', '', '', '', '', ''),
(628, '', '', '', '', '', '', '', '', 64, '', 'VARCHAR', 2, '', '', 'Causes/Risks (ref)', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"ref\\\" \\r\\n\\tlabel=\\\"Ref Nr\\\" \\r\\n\\tsize=\\\"10\\\" \\r\\n\\tmaxlength=\\\"50\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tdescription=\\\"The reference number for this cause\\/risk\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\treadonly=\\\"false\\\" \\r\\n\\tdisabled=\\\"false\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\tfilter=\\\"CMD\\\" \\r\\n\\tvalidate=\\\"\\\" \\r\\n\\tmessage=\\\"Error! Please add the reference number here.\\\" \\r\\n\\thint=\\\"Ref Number Here\\\" \\r\\n\\/>\"', 1, '2015-07-16 02:01:46', '2015-08-25 21:15:22', 2, '', 576, '86b3f745-a30b-4c8f-9482-a4cf0b14279c', '', '', '', '', ''),
(629, '', '', '', '', '', '', '', '', 64, '', 'CHAR', 2, '', '', 'Member Data Year (dynamic)', 'NOT NULL', '', 6, '\"<field \\r\\n\\ttype=\\\"datayear\\\" \\r\\n\\tname=\\\"datayear\\\" \\r\\n\\tlabel=\\\"Data Year\\\" \\r\\n\\tdescription=\\\"Select which year\'s data should be used in calculations.\\\" \\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\tmultiple=\\\"false\\\" \\r\\n\\tdefault=\\\"0\\\" \\r\\n\\trequired=\\\"\\\" \\r\\n\\treadonly=\\\"\\\" \\r\\n\\tdisabled=\\\"\\\" \\r\\n\\textends=\\\"list\\\" \\r\\n\\ttable=\\\"#__###component###_health_data\\\" \\r\\n\\tcomponent=\\\"com_###component###\\\" \\r\\n\\tview=\\\"health_data\\\" \\r\\n\\tviews=\\\"health_data_sets\\\" \\r\\n\\tvalue_field=\\\"country\\\" \\r\\n\\tkey_field=\\\"year\\\" \\r\\n\\ttype_php_1=\\\"$jinput = JFactory::getApplication()->input;\\\\n\\\\t\\\\t$client = $jinput->get(\'id\', 0, \'INT\');\\\\n\\\\t\\\\t$countries = ###Component###Helper::hisCountries(null,$client,\'company\');\\\\n\\\\t\\\\t$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###\',\'###TEXT###\')));\\\" \\r\\n\\ttype_php_4=\\\"$query->from($db->quoteName(\'###TABLE###\', \'a\'));\\\" \\r\\n\\ttype_php_5=\\\"$query->where($db->quoteName(\'a.published\') . \' = 1\');\\\\n\\\\t\\\\tif (###Component###Helper::checkArray($countries)) \\\\n\\\\t\\\\t{\\\\n\\\\t\\\\t\\\\t$query->where($db->quoteName(\'a.country\') . \' IN (\' . implode(\',\',$countries) . \')\');\\\\n\\\\t\\\\t}\\\" \\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$years = array();\\\" \\r\\n\\ttype_php_13=\\\"\\\\tforeach($items as $item)\\\" \\r\\n\\ttype_php_14=\\\"\\\\t{\\\\n\\\\t\\\\t\\\\t\\\\tif (!###Component###Helper::checkArray($years) || !in_array($item->###ID###.\'_\'.$item->###TEXT###,$years))\\\\n\\\\t\\\\t\\\\t\\\\t{\\\\n\\\\t\\\\t\\\\t\\\\t\\\\tif (!###Component###Helper::checkArray($countries) || $client == 0)\\\\n\\\\t\\\\t\\\\t\\\\t\\\\t{\\\\n\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t$countryName = \' (\'. ###Component###Helper::getCountryName($item->###TEXT###).\')\';\\\\n\\\\t\\\\t\\\\t\\\\t\\\\t}\\\\n\\\\t\\\\t\\\\t\\\\t\\\\telse\\\\n\\\\t\\\\t\\\\t\\\\t\\\\t{\\\\n\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t$countryName = \'\';\\\\n\\\\t\\\\t\\\\t\\\\t\\\\t}\\\" \\r\\n\\ttype_php_15=\\\"\\\\t\\\\t\\\\t$options[] = JHtml::_(\'select.option\', $item->###ID###, $item->###ID### .$countryName);\\\\n\\\\t\\\\t\\\\t\\\\t\\\\t$years[$item->###ID###] = $item->###ID###.\'_\'.$item->###TEXT###;\\\\n\\\\t\\\\t\\\\t\\\\t}\\\" \\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-07-16 12:45:29', '2015-08-25 21:15:22', 21, '', 577, '5a2a586f-1521-40ef-ad40-c729c63a1c84', '', '', '', '', ''),
(630, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'Users (Member)', 'NOT NULL', '', 7, '\"\\ttype=\\\"memberuser\\\" \\r\\n\\tname=\\\"user\\\" \\r\\n\\tlabel=\\\"User (Member)\\\" \\r\\n\\tdescription=\\\"\\\" \\r\\n\\tclass=\\\"\\\" \\r\\n\\trequired=\\\"false\\\" \\r\\n\\treadonly=\\\"\\\" \\r\\n\\tdisabled=\\\"\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\thint=\\\"select a member\\\" \\r\\n\\textends=\\\"user\\\" \\r\\n\\ttable=\\\"#__users\\\" \\r\\n\\tcomponent=\\\"com_users\\\" \\r\\n\\tview=\\\"###view###\\\" \\r\\n\\tviews=\\\"###views###\\\" \\r\\n\\tvalue_field=\\\"name\\\" \\r\\n\\tkey_field=\\\"id\\\" \\r\\n\\ttype_php_1=\\\"\\/\\/ set the groups array\\\" \\r\\n\\ttype_php_2=\\\"$groups = JComponentHelper::getParams(\'com_###component###\')->get(\'###type###\');\\\" \\r\\n\\ttype_php_3=\\\"return $groups;\\\"\\r\\n\\/>\"', 1, '2015-07-16 16:58:35', '2015-08-25 21:15:22', 15, '', 578, '7e7e79f7-d610-4da7-8aed-9cf384be8455', '', '', '', '', ''),
(631, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'User (County)', 'NOT NULL', '', 7, '\"<field \\r\\n\\ttype=\\\"countryuser\\\" \\r\\n\\tname=\\\"user\\\" \\r\\n\\tlabel=\\\"User (Country)\\\"\\r\\n\\tdescription=\\\"\\\"\\r\\n\\tclass=\\\"\\\"\\r\\n\\treadonly=\\\"\\\"\\r\\n\\tdisabled=\\\"\\\"\\r\\n\\tdefault=\\\"\\\"\\r\\n\\thint=\\\"select a country user\\\" \\r\\n\\textends=\\\"user\\\" \\r\\n\\ttable=\\\"#__users\\\" \\r\\n\\tcomponent=\\\"com_users\\\" \\r\\n\\tview=\\\"###view###\\\" \\r\\n\\tviews=\\\"###views###\\\" \\r\\n\\tvalue_field=\\\"name\\\" \\r\\n\\tkey_field=\\\"id\\\" \\r\\n\\ttype_php_1=\\\"\\/\\/ set the groups array\\\" \\r\\n\\ttype_php_2=\\\"$groups = JComponentHelper::getParams(\'com_###component###\')->get(\'###type###\');\\\" \\r\\n\\ttype_php_3=\\\"return $groups;\\\" \\r\\n\\ttype_phpx_1=\\\"\\/\\/ To ensure that there is only one record per user\\\" \\r\\n\\ttype_phpx_2=\\\"\\/\\/ Get a db connection.\\\" \\r\\n\\ttype_phpx_3=\\\"$db = JFactory::getDbo();\\\" \\r\\n\\ttype_phpx_4=\\\"\\/\\/ Create a new query object.\\\" \\r\\n\\ttype_phpx_5=\\\"$query = $db->getQuery(true);\\\" \\r\\n\\ttype_phpx_6=\\\"\\/\\/ Select all records from the #__###component###_###view### table from ###CODE### column\\\".\\\" \\r\\n\\ttype_phpx_7=\\\"$query->select($db->quoteName(\'###CODE###\'));\\\" \\r\\n\\ttype_phpx_8=\\\"$query->from($db->quoteName(\'#__###component###_###view###\'));\\\" \\r\\n\\ttype_phpx_9=\\\"$db->setQuery($query);\\\" \\r\\n\\ttype_phpx_10=\\\"$db->execute();\\\" \\r\\n\\ttype_phpx_11=\\\"$found = $db->getNumRows();\\\" \\r\\n\\ttype_phpx_12=\\\"if ($found)\\\" \\r\\n\\ttype_phpx_13=\\\"{\\\" \\r\\n\\ttype_phpx_14=\\\"\\\\t\\/\\/ return all users already used\\\" \\r\\n\\ttype_phpx_15=\\\"\\\\treturn array_unique($db->loadColumn());\\\" \\r\\n\\ttype_phpx_16=\\\"}\\\" \\r\\n\\ttype_phpx_17=\\\"return null;\\\" \\r\\n\\/>\"', 1, '2015-07-16 17:02:05', '2015-08-25 21:15:22', 8, '', 578, 'aa51ead7-a208-4641-a15c-39d26f2d9874', '', '', '', '', ''),
(632, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'User (Service Provider)', 'NOT NULL', '', 7, '\"<field \\r\\n\\ttype=\\\"serviceprovideruser\\\" \\r\\n\\tname=\\\"user\\\" \\r\\n\\tlabel=\\\"User (Service Provider)\\\" \\r\\n\\tdescription=\\\"\\\" \\r\\n\\tclass=\\\"\\\" \\r\\n\\treadonly=\\\"\\\" \\r\\n\\tdisabled=\\\"\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\thint=\\\"select a service provider\\\" \\r\\n\\textends=\\\"user\\\" \\r\\n\\ttable=\\\"#__users\\\" \\r\\n\\tcomponent=\\\"com_users\\\" \\r\\n\\tview=\\\"###view###\\\" \\r\\n\\tviews=\\\"###views###\\\" \\r\\n\\tvalue_field=\\\"name\\\" \\r\\n\\tkey_field=\\\"id\\\" \\r\\n\\ttype_php_1=\\\"\\/\\/ set the groups array\\\" \\r\\n\\ttype_php_2=\\\"$groups = JComponentHelper::getParams(\'com_###component###\')->get(\'###type###\');\\\" \\r\\n\\ttype_php_3=\\\"return $groups;\\\" \\r\\n\\ttype_phpx_1=\\\"\\/\\/ To ensure that there is only one record per user\\\" \\r\\n\\ttype_phpx_2=\\\"\\/\\/ Get a db connection.\\\" \\r\\n\\ttype_phpx_3=\\\"$db = JFactory::getDbo();\\\" \\r\\n\\ttype_phpx_4=\\\"\\/\\/ Create a new query object.\\\" \\r\\n\\ttype_phpx_5=\\\"$query = $db->getQuery(true);\\\" \\r\\n\\ttype_phpx_6=\\\"\\/\\/ Select all records from the #__###component###_###view### table from ###CODE### column\\\".\\\" \\r\\n\\ttype_phpx_7=\\\"$query->select($db->quoteName(\'###CODE###\'));\\\" \\r\\n\\ttype_phpx_8=\\\"$query->from($db->quoteName(\'#__###component###_###view###\'));\\\" \\r\\n\\ttype_phpx_9=\\\"$db->setQuery($query);\\\" \\r\\n\\ttype_phpx_10=\\\"$db->execute();\\\" \\r\\n\\ttype_phpx_11=\\\"$found = $db->getNumRows();\\\" \\r\\n\\ttype_phpx_12=\\\"if ($found)\\\" \\r\\n\\ttype_phpx_13=\\\"{\\\" \\r\\n\\ttype_phpx_14=\\\"\\\\t\\/\\/ return all users already used\\\" \\r\\n\\ttype_phpx_15=\\\"\\\\treturn array_unique($db->loadColumn());\\\" \\r\\n\\ttype_phpx_16=\\\"}\\\" \\r\\n\\ttype_phpx_17=\\\"return null;\\\" \\r\\n\\/>\"', 1, '2015-07-16 17:03:34', '2015-08-25 21:15:22', 10, '', 578, '3de6761a-40e7-4098-a572-50a8c0fcf4cc', '', '', '', '', ''),
(633, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'Member Departments', 'NOT NULL', '', 11, '\"<field \\r\\n\\ttype=\\\"list\\\" \\r\\n\\tname=\\\"department\\\" \\r\\n\\tlabel=\\\"Member Departments\\\" \\r\\n\\tdescription=\\\"\\\" \\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\tmultiple=\\\"false\\\" \\r\\n\\tfilter=\\\"INT\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\toption=\\\"|Please select,1|Client,2|Service Provider,3|Country Admin\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\/>\"', 1, '2015-07-16 17:09:36', '2015-08-25 21:15:22', 3, '', 579, 'cf502973-249c-4ddd-bf13-33955750a5a5', '', '', '', '', ''),
(634, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'Departments (company)', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"department\\\" \\r\\n\\tlabel=\\\"Department\\\" \\r\\n\\tdescription=\\\"\\\" \\r\\n\\tclass=\\\"btn-group\\\" \\r\\n\\toption=\\\"1|Basic,2|Advanced\\\" \\r\\n\\tdefault=\\\"1\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\/>\"', 1, '2015-07-16 17:43:22', '2015-08-25 21:15:22', 3, '', 579, 'f7f2f504-80f0-4c8e-8d88-0fa71dd62866', '', '', '', '', ''),
(635, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Items (dynamic)', 'NOT NULL', '', 6, '\"<field \\r\\n\\ttype=\\\"items\\\" \\r\\n\\tname=\\\"item\\\" \\r\\n\\tlabel=\\\"Item\\\" \\r\\n\\tdescription=\\\"\\\" \\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\tmultiple=\\\"false\\\" \\r\\n\\tdefault=\\\"0\\\" \\r\\n\\trequired=\\\"\\\" \\r\\n\\treadonly=\\\"\\\" \\r\\n\\tdisabled=\\\"\\\" \\r\\n\\textends=\\\"list\\\" \\r\\n\\ttable=\\\"#__###component###_item\\\" \\r\\n\\tcomponent=\\\"com_###component###\\\" \\r\\n\\tview=\\\"item\\\" \\r\\n\\tviews=\\\"items\\\" \\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 an item\');\\\" \\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=\\\"$options = array_merge(parent::getOptions(), $options);\\\" \\r\\n\\ttype_php_19=\\\"return $options;\\\" \\r\\n\\/>\"', 1, '2015-07-16 21:10:16', '2015-08-25 21:15:22', 1, '', 580, '32eafdc4-2724-4036-b2e7-0789ab272af9', '', '', '', '', ''),
(636, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Warehouses (dynamic)', 'NOT NULL', '', 6, '\"<field \\r\\n\\ttype=\\\"warehouses\\\" \\r\\n\\tname=\\\"warehouse\\\" \\r\\n\\tlabel=\\\"Warehouse\\\" \\r\\n\\tdescription=\\\"\\\" \\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\tmultiple=\\\"false\\\" \\r\\n\\tdefault=\\\"0\\\" \\r\\n\\trequired=\\\"\\\" \\r\\n\\treadonly=\\\"\\\" \\r\\n\\tdisabled=\\\"\\\" \\r\\n\\textends=\\\"list\\\" \\r\\n\\ttable=\\\"#__###component###_warehouse\\\" \\r\\n\\tcomponent=\\\"com_###component###\\\" \\r\\n\\tview=\\\"warehouse\\\"\\r\\n\\tviews=\\\"warehouses\\\"\\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 an option\');\\\" \\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=\\\"$options = array_merge(parent::getOptions(), $options);\\\" \\r\\n\\ttype_php_19=\\\"return $options;\\\" \\r\\n\\/>\"', 1, '2015-07-16 21:23:51', '2015-08-25 21:15:22', 1, '', 581, 'dac24e2a-9b75-4e0d-ba84-299b49da6b77', '', '', '', '', ''),
(637, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'Supplier (default)', 'NOT NULL', '', 6, '\"<field \\r\\n\\ttype=\\\"suppliers\\\" \\r\\n\\tname=\\\"supplier\\\" \\r\\n\\tlabel=\\\"Supplier\\\" \\r\\n\\tdescription=\\\"Select the supplier of this item.\\\" \\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\tmultiple=\\\"false\\\" \\r\\n\\tdefault=\\\"0\\\" \\r\\n\\trequired=\\\"\\\" \\r\\n\\treadonly=\\\"\\\" \\r\\n\\tdisabled=\\\"\\\" \\r\\n\\tbutton=\\\"true\\\"\\r\\n\\textends=\\\"list\\\" \\r\\n\\ttable=\\\"#__###component###_supplier\\\" \\r\\n\\tcomponent=\\\"com_###component###\\\" \\r\\n\\tview=\\\"supplier\\\" \\r\\n\\tviews=\\\"suppliers\\\" \\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 supplier\');\\\" \\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_19=\\\"return $options;\\\" \\r\\n\\/>\"', 1, '2015-07-16 21:29:43', '2016-09-01 20:22:59', 8, '', 582, '9d858080-7adc-40c9-87ca-7b1585e58f87', '', '', '', '', ''),
(638, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'Service Provider (dynamic)', 'NOT NULL', '', 6, '\"<field \\r\\n\\ttype=\\\"serviceprovider\\\" \\r\\n\\tname=\\\"service_provider\\\" \\r\\n\\tlabel=\\\"Service Provider\\\" \\r\\n\\tdescription=\\\"\\\" \\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\tmultiple=\\\"false\\\" \\r\\n\\tdefault=\\\"0\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\treadonly=\\\"\\\" \\r\\n\\tdisabled=\\\"\\\" \\r\\n\\textends=\\\"list\\\" \\r\\n\\tbutton=\\\"true\\\"\\r\\n\\ttable=\\\"#__###component###_service_provider\\\" \\r\\n\\tcomponent=\\\"com_###component###\\\" \\r\\n\\tview=\\\"service_provider\\\" \\r\\n\\tviews=\\\"service_providers\\\" \\r\\n\\tvalue_field=\\\"user\\\" \\r\\n\\tkey_field=\\\"id\\\" \\r\\n\\ttype_php_1=\\\"\\/\\/ Get the user object.\\\\n\\\\t\\\\t$user = JFactory::getUser();\\\\n\\\\t\\\\t\\/\\/ Create a new query object.\\\" \\r\\n\\ttype_php_2=\\\"$db = JFactory::getDBO();\\\\n\\\\t\\\\t$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=\\\"if (!$user->authorise(\'core.options\', \'com_###component###\'))\\\\n\\\\t\\\\t{\\\\n\\\\t\\\\t\\\\t$serviceProviders = ###Component###Helper::hisServiceProviders($user->id);\\\" \\r\\n\\ttype_php_7=\\\"\\\\tif (###Component###Helper::checkArray($serviceProviders))\\\\n\\\\t\\\\t\\\\t{\\\" \\r\\n\\ttype_php_8=\\\"\\\\t\\\\t$serviceProviders = implode(\',\',$serviceProviders);\\\\n\\\\t\\\\t\\\\t\\\\t\\/\\/ only load this users service providers\\\" \\r\\n\\ttype_php_9=\\\"\\\\t\\\\t$query->where(\'a.id IN (\' . $serviceProviders . \')\');\\\" \\r\\n\\ttype_php_10=\\\"\\\\t}\\\\n\\\\t\\\\t\\\\telse\\\\n\\\\t\\\\t\\\\t{\\\" \\r\\n\\ttype_php_11=\\\"\\\\t\\\\t\\/\\/ don\'t allow user to see any service providers\\\\n\\\\t\\\\t\\\\t\\\\t$query->where(\'a.id = -4\');\\\" \\r\\n\\ttype_php_12=\\\"\\\\t}\\\\n\\\\t\\\\t}\\\" \\r\\n\\ttype_php_13=\\\"$query->order(\'a.###TEXT### ASC\');\\\\n\\\\t\\\\t$db->setQuery((string)$query);\\\" \\r\\n\\ttype_php_14=\\\"$items = $db->loadObjectList();\\\" \\r\\n\\ttype_php_15=\\\"$options = array();\\\\n\\\\t\\\\tif ($items)\\\" \\r\\n\\ttype_php_16=\\\"{\\\" \\r\\n\\ttype_php_17=\\\"\\\\tforeach($items as $item)\\\" \\r\\n\\ttype_php_18=\\\"\\\\t{\\\\n\\\\t\\\\t\\\\t\\\\t$options[] = JHtml::_(\'select.option\', $item->###ID###, JFactory::getUser($item->###CODE_TEXT###)->name);\\\" \\r\\n\\ttype_php_19=\\\"\\\\t}\\\\n\\\\t\\\\t}\\\\n\\\\t\\\\treturn $options;\\\" \\r\\n\\/>\"', 1, '2015-07-18 12:35:41', '2016-02-19 20:38:06', 14, '', 578, '5e664e13-8d9d-4ec8-b78e-134304e56d20', '', '', '', '', ''),
(639, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'Company (dynamic)', 'NOT NULL', '', 6, '\"<field \\r\\n\\ttype=\\\"company\\\" \\r\\n\\tname=\\\"company\\\" \\r\\n\\tlabel=\\\"Company\\\" \\r\\n\\tdescription=\\\"\\\" \\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\tmultiple=\\\"false\\\" \\r\\n\\tdefault=\\\"0\\\" \\r\\n\\trequired=\\\"\\\" \\r\\n\\treadonly=\\\"\\\" \\r\\n\\tdisabled=\\\"\\\" \\r\\n\\textends=\\\"list\\\" \\r\\n\\tbutton=\\\"true\\\"\\r\\n\\ttable=\\\"#__###component###_company\\\" \\r\\n\\tcomponent=\\\"com_###component###\\\" \\r\\n\\tview=\\\"company\\\" \\r\\n\\tviews=\\\"companies\\\" \\r\\n\\tvalue_field=\\\"name\\\" \\r\\n\\tkey_field=\\\"id\\\" \\r\\n\\ttype_php_1=\\\"\\/\\/ Get the user object.\\\\n\\\\t\\\\t$user = JFactory::getUser();\\\\n\\\\t\\\\t\\/\\/ Create a new query object.\\\" \\r\\n\\ttype_php_2=\\\"$db = JFactory::getDBO();\\\\n\\\\t\\\\t$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=\\\"if (!$user->authorise(\'core.options\', \'com_###component###\'))\\\\n\\\\t\\\\t{\\\\n\\\\t\\\\t\\\\t$companies = ###Component###Helper::hisCompanies($user->id);\\\" \\r\\n\\ttype_php_7=\\\"\\\\tif (###Component###Helper::checkArray($companies))\\\\n\\\\t\\\\t\\\\t{\\\" \\r\\n\\ttype_php_8=\\\"\\\\t\\\\t$companies = implode(\',\',$companies);\\\\n\\\\t\\\\t\\\\t\\\\t\\/\\/ only load this users companies\\\" \\r\\n\\ttype_php_9=\\\"\\\\t\\\\t$query->where(\'a.id IN (\' . $companies . \')\');\\\" \\r\\n\\ttype_php_10=\\\"\\\\t}\\\\n\\\\t\\\\t\\\\telse\\\\n\\\\t\\\\t\\\\t{\\\" \\r\\n\\ttype_php_11=\\\"\\\\t\\\\t\\/\\/ dont allow user to see any companies\\\\n\\\\t\\\\t\\\\t\\\\t$query->where(\'a.id = -4\');\\\" \\r\\n\\ttype_php_12=\\\"\\\\t}\\\\n\\\\t\\\\t}\\\" \\r\\n\\ttype_php_13=\\\"$query->order(\'a.###TEXT### ASC\');\\\\n\\\\t\\\\t$db->setQuery((string)$query);\\\" \\r\\n\\ttype_php_14=\\\"$items = $db->loadObjectList();\\\" \\r\\n\\ttype_php_15=\\\"$options = array();\\\\n\\\\t\\\\tif ($items)\\\\n\\\\t\\\\t{\\\\n\\\\t\\\\t\\\\t$userIs = ###Component###Helper::userIs($user->id);\\\\n\\\\t\\\\t\\\\tif (3 == $userIs || $user->authorise(\'core.options\', \'com_###component###\'))\\\" \\r\\n\\ttype_php_16=\\\"\\\\t{\\\\n\\\\t\\\\t\\\\t\\\\t$options[] = JHtml::_(\'select.option\', 0, \'-- \'.JText::_(\'A Country\').\' --\');\\\\n\\\\t\\\\t\\\\t}\\\" \\r\\n\\ttype_php_17=\\\"\\\\tforeach($items as $item)\\\" \\r\\n\\ttype_php_18=\\\"\\\\t{\\\\n\\\\t\\\\t\\\\t\\\\t$options[] = JHtml::_(\'select.option\', $item->###ID###, $item->###CODE_TEXT###);\\\" \\r\\n\\ttype_php_19=\\\"\\\\t}\\\\n\\\\t\\\\t}\\\\n\\\\t\\\\treturn $options;\\\" \\r\\n\\/>\"', 1, '2015-07-18 12:39:27', '2016-03-22 10:29:07', 14, '', 578, 'fad8c5aa-5885-4ae8-9f1d-755279d749c0', '', '', '', '', ''),
(640, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'Work Days per/year', 'NOT NULL', '', 10, '\"<field \\r\\n\\ttype=\\\"integer\\\" \\r\\n\\tname=\\\"working_days\\\" \\r\\n\\tlabel=\\\"Work Days\\\" \\r\\n\\tdefault=\\\"225\\\" \\r\\n\\tdescription=\\\"Number of working days per\\/year\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\tfirst=\\\"200\\\" \\r\\n\\tlast=\\\"365\\\" \\r\\n\\tstep=\\\"1\\\" \\r\\n\\/>\"', 1, '2015-07-20 11:02:48', '2015-08-25 21:15:22', 2, '', 583, 'a6080cb9-6284-4e85-a129-7bb1f3305307', '', '', '', '', ''),
(641, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Total Salary', 'NOT NULL', 4, 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"total_salary\\\" \\r\\n\\tlabel=\\\"Total Salary\\\" \\r\\n\\tsize=\\\"20\\\" \\r\\n\\tmaxlength=\\\"50\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tdescription=\\\"The total salary payed per\\/year\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\treadonly=\\\"false\\\" \\r\\n\\tdisabled=\\\"false\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\tfilter=\\\"integer\\\" \\r\\n\\tvalidate=\\\"\\\" \\r\\n\\tmessage=\\\"Error! Please add total salary here.\\\" \\r\\n\\thint=\\\"per\\/year\\\" \\r\\n\\/>\"', 1, '2015-07-20 11:05:25', '2015-08-25 21:15:22', 5, '', 584, 'd2d6ec71-f816-4aa0-aa72-30716a4f9582', '', '', '', '', ''),
(642, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Total Healthcare', 'NOT NULL', 4, 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"total_healthcare\\\" \\r\\n\\tlabel=\\\"Total Healthcare Costs\\\" \\r\\n\\tsize=\\\"20\\\" \\r\\n\\tmaxlength=\\\"50\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tdescription=\\\"The total healthcare payed per\\/year\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\treadonly=\\\"false\\\" \\r\\n\\tdisabled=\\\"false\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\tfilter=\\\"integer\\\" \\r\\n\\tvalidate=\\\"\\\" \\r\\n\\tmessage=\\\"Error! Please add total healthcare costs here.\\\" \\r\\n\\thint=\\\"per\\/year\\\" \\r\\n\\/>\"', 1, '2015-07-20 11:08:51', '2015-08-25 21:15:22', 3, '', 584, 'e5172ff3-9e8f-4833-9ecc-9cacd9f25ac1', '', '', '', '', ''),
(643, '', '', 1, '', '', '', '', '', 64, '', 'VARCHAR', 2, 'Ly8gYWRkIHRoZSBjYWxjdWxhdG9yIGJ1dHRvbg0KdmFyIGNhbF9idXR0b24gPSAnIDxhIGNsYXNzPSJidG4gYnRuLXNtYWxsIGJ0bi1zdWNjZXNzIiBocmVmPSJodHRwczovL3d3dy5zdGFmZmhlYWx0aGNicC5jb20vZG93bmxvYWQvUHJvZHVjdGl2aXR5X0xvc3Nlc19DYWxjdWxhdG9yX1YxLnhsc3giPiA8c3BhbiBjbGFzcz0iaWNvbi1kb3dubG9hZCBpY29uLXdoaXRlIj48L3NwYW4+IENhbGN1bGF0b3IgPC9hPic7DQpqUXVlcnkoJyNqZm9ybV9wcm9kdWN0aXZpdHlfbG9zc2VzJykuY2xvc2VzdCgnLmNvbnRyb2xzJykuYXBwZW5kKGNhbF9idXR0b24pOw==', '', 'Medical Turnover Cost Factor', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"productivity_losses\\\" \\r\\n\\tlabel=\\\"Medical Turnover Cost Factor\\\" \\r\\n\\tsize=\\\"20\\\" \\r\\n\\tmaxlength=\\\"50\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tdescription=\\\"The proportion of annual salary that it costs to replace an employee for medical reasons.\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\treadonly=\\\"false\\\" \\r\\n\\tdisabled=\\\"false\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\tfilter=\\\"CMD\\\" \\r\\n\\tvalidate=\\\"\\\" \\r\\n\\tmessage=\\\"Error! Please add medical turnover cost factor here.\\\" \\r\\n\\thint=\\\"0.05\\\" \\r\\n\\/>\"', 1, '2015-07-20 11:13:52', '2016-06-29 08:04:48', 6, '', 584, '98484d64-c651-43e5-bf2f-ec05b3cc1f84', '', '', '', '', ''),
(644, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Males', 'NOT NULL', 4, 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"Males\\\" \\r\\n\\tlabel=\\\"Total Male Employees\\\" \\r\\n\\tsize=\\\"20\\\" \\r\\n\\tmaxlength=\\\"50\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tdescription=\\\"The Total Number of Male Employees.\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\treadonly=\\\"false\\\" \\r\\n\\tdisabled=\\\"false\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\tfilter=\\\"INT\\\" \\r\\n\\tvalidate=\\\"\\\" \\r\\n\\tmessage=\\\"Error! Please add total male employees here.\\\" \\r\\n\\thint=\\\"Just A Number\\\" \\r\\n\\/>\"', 1, '2015-07-20 11:16:54', '2015-08-25 21:15:22', 2, '', 584, '7157e523-ea6b-4991-94fe-b3033f76bbea', '', '', '', '', ''),
(645, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Females', 'NOT NULL', 4, 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"Females\\\" \\r\\n\\tlabel=\\\"Total Female Employees\\\" \\r\\n\\tsize=\\\"20\\\" \\r\\n\\tmaxlength=\\\"50\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tdescription=\\\"The Total Number of Female Employees.\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\treadonly=\\\"false\\\" \\r\\n\\tdisabled=\\\"false\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\tfilter=\\\"INT\\\" \\r\\n\\tvalidate=\\\"\\\" \\r\\n\\tmessage=\\\"Error! Please add total female employees here.\\\" \\r\\n\\thint=\\\"Just A Number\\\" \\r\\n\\/>\"', 1, '2015-07-20 11:18:25', '2015-08-25 21:15:22', 2, '', 584, '7aad4891-0fe8-4978-a872-f1457b46ee18', '', '', '', '', ''),
(646, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Medical Turnovers Male', 'NOT NULL', 4, 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"medical_turnovers_Males\\\" \\r\\n\\tlabel=\\\"Total Number Medical Turnovers Male\\\" \\r\\n\\tsize=\\\"20\\\" \\r\\n\\tmaxlength=\\\"50\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tdescription=\\\"The total number of medical turnovers for males per\\/year.\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\treadonly=\\\"false\\\" \\r\\n\\tdisabled=\\\"false\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\tfilter=\\\"FLOAT\\\" \\r\\n\\tvalidate=\\\"\\\" \\r\\n\\tmessage=\\\"Error! Please add total number of medical turnovers for males here.\\\" \\r\\n\\thint=\\\"per\\/year\\\" \\r\\n\\/>\"', 1, '2015-07-20 11:22:11', '2016-05-24 10:31:17', 4, '', 584, 'ee7cdf2c-c39f-48b5-ae6c-dd6947686da7', '', '', '', '', ''),
(647, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Medical Turnovers Female', 'NOT NULL', 4, 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"medical_turnovers_Females\\\" \\r\\n\\tlabel=\\\"Total Number Medical Turnovers Female\\\" \\r\\n\\tsize=\\\"20\\\" \\r\\n\\tmaxlength=\\\"50\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tdescription=\\\"The total number of medical turnovers for females per\\/year.\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\treadonly=\\\"false\\\" \\r\\n\\tdisabled=\\\"false\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\tfilter=\\\"FLOAT\\\" \\r\\n\\tvalidate=\\\"\\\" \\r\\n\\tmessage=\\\"Error! Please add total number of medical turnovers for females here.\\\" \\r\\n\\thint=\\\"per\\/year\\\" \\r\\n\\/>\"', 1, '2015-07-20 11:22:47', '2016-05-24 10:30:48', 4, '', 584, '345d6961-a0ed-4900-9417-a923fc6a972f', '', '', '', '', ''),
(648, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Sick Leave Days Males', 'NOT NULL', 4, 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"sick_leave_Males\\\" \\r\\n\\tlabel=\\\"Total Number Sick Leave Days Males\\\" \\r\\n\\tsize=\\\"20\\\" \\r\\n\\tmaxlength=\\\"50\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tdescription=\\\"The total number of sick leave days for males per\\/year.\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\treadonly=\\\"false\\\" \\r\\n\\tdisabled=\\\"false\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\tfilter=\\\"INT\\\" \\r\\n\\tvalidate=\\\"\\\" \\r\\n\\tmessage=\\\"Error! Please add total number of sick leave days for males here.\\\" \\r\\n\\thint=\\\"per\\/year\\\" \\r\\n\\/>\"', 1, '2015-07-20 11:24:48', '2015-08-25 21:15:22', 2, '', 584, '0e6d8551-4b24-40f1-ab12-cd7ba0f3df47', '', '', '', '', ''),
(649, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Sick Leave Days Females', 'NOT NULL', 4, 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"sick_leave_Females\\\" \\r\\n\\tlabel=\\\"Total Number Sick Leave Days Females\\\" \\r\\n\\tsize=\\\"20\\\" \\r\\n\\tmaxlength=\\\"50\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tdescription=\\\"The total number of sick leave days for females per\\/year.\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\treadonly=\\\"false\\\" \\r\\n\\tdisabled=\\\"false\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\tfilter=\\\"INT\\\" \\r\\n\\tvalidate=\\\"\\\" \\r\\n\\tmessage=\\\"Error! Please add total number of sick leave days for females here.\\\" \\r\\n\\thint=\\\"per\\/year\\\" \\r\\n\\/>\"', 1, '2015-07-20 11:25:31', '2015-08-25 21:15:22', 2, '', 584, 'c6371e85-9819-4a32-b911-deafaae1fadc', '', '', '', '', ''),
(650, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Female Age Groups Percent', 'NOT NULL', '', 19, '\"<field \\r\\n\\ttype=\\\"repeatable\\\" \\r\\n\\tname=\\\"percentfemale\\\" \\r\\n\\tlabel=\\\"Set Females Age Groups Percent\\\" \\r\\n\\tdescription=\\\"Here you can add females age groups percent.\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tid=\\\"percentfemale\\\" \\r\\n\\tclass=\\\"percentfemales\\\" \\r\\n\\tselect=\\\"Edit\\/Add\\\" \\r\\n\\ticon=\\\"list\\\" \\r\\n\\tmaximum=\\\"10\\\" \\r\\n\\tfields=\\\"615,655\\\" \\r\\n\\/>\"', 1, '2015-07-20 11:50:47', '2015-08-25 21:15:22', 2, '', 533, 'f6074d4d-1497-4b5e-9fb1-5af5a18309f6', '', '', '', '', ''),
(651, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Male Age Groups Percent', 'NOT NULL', '', 19, '\"<field \\r\\n\\ttype=\\\"repeatable\\\" \\r\\n\\tname=\\\"percentmale\\\" \\r\\n\\tlabel=\\\"Set Males Age Groups Percent\\\" \\r\\n\\tdescription=\\\"Here you can add males age groups percent.\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tid=\\\"percentmale\\\" \\r\\n\\tclass=\\\"percentmales\\\" \\r\\n\\tselect=\\\"Edit\\/Add\\\" \\r\\n\\ticon=\\\"list\\\" \\r\\n\\tmaximum=\\\"10\\\" \\r\\n\\tfields=\\\"615,655\\\" \\r\\n\\/>\"', 1, '2015-07-20 11:52:36', '2015-08-25 21:15:22', 2, '', 533, 'b3febc09-5825-4cdf-9cd1-63994baef3af', '', '', '', '', ''),
(652, '', '', '', '', '', '', '', '', '', '', 'CHAR', '', '', '', 'Note - Cause/Risk only Advanced', 'NOT NULL', '', 14, '\"<field \\r\\n\\ttype=\\\"note\\\" \\r\\n\\tname=\\\"cause_risk_selection_note\\\"\\r\\nlabel=\\\"Cause\\/Risk Selection\\\"\\r\\n\\tdescription=\\\"This feature is only available to the advanced department.\\\" \\r\\n\\tclass=\\\"alert alert-info\\\" \\r\\n\\/>\"', 1, '2015-07-20 16:59:34', '2015-08-25 21:15:22', 2, '', 35, '8b4369b4-b384-43ea-8a2c-f8c827b5ff39', '', '', '', '', ''),
(653, '', '', '', '', '', '', '', '', 64, '', 'CHAR', 2, '', '', 'Member Data Year (dynamic)', 'NOT NULL', '', 6, '\"<field \\r\\n\\ttype=\\\"datayear\\\" \\r\\n\\tname=\\\"datayear\\\" \\r\\n\\tlabel=\\\"Data Year\\\" \\r\\n\\tdescription=\\\"Select which year\'s data should be used in calculations.\\\" \\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\tmultiple=\\\"false\\\" \\r\\n\\tdefault=\\\"0\\\" \\r\\n\\trequired=\\\"\\\" \\r\\n\\treadonly=\\\"\\\" \\r\\n\\tdisabled=\\\"\\\" \\r\\n\\textends=\\\"list\\\" \\r\\n\\ttable=\\\"#__###component###_health_data\\\" \\r\\n\\tcomponent=\\\"com_###component###\\\" \\r\\n\\tview=\\\"health_data\\\" \\r\\n\\tviews=\\\"health_data_sets\\\" \\r\\n\\tvalue_field=\\\"country\\\" \\r\\n\\tkey_field=\\\"year\\\" \\r\\n\\ttype_php_1=\\\"$jinput = JFactory::getApplication()->input;\\\\n\\\\t\\\\t$client = $jinput->get(\'id\', 0, \'INT\');\\\\n\\\\t\\\\t$country = ###Component###Helper::getClientCountryId($client);\\\\n\\\\t\\\\t$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###\',\'###TEXT###\')));\\\" \\r\\n\\ttype_php_4=\\\"$query->from($db->quoteName(\'###TABLE###\', \'a\'));\\\" \\r\\n\\ttype_php_5=\\\"$query->where($db->quoteName(\'a.published\') . \' = 1\');\\\\n\\\\t\\\\tif ($country) \\\\n\\\\t\\\\t{\\\\n\\\\t\\\\t\\\\t$query->where($db->quoteName(\'a.country\') . \' = \' . (int) $country);\\\\n\\\\t\\\\t}\\\" \\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\');\\\\n\\\\t\\\\t\\\\t$years = array();\\\" \\r\\n\\ttype_php_13=\\\"\\\\tforeach($items as $item)\\\" \\r\\n\\ttype_php_14=\\\"\\\\t{\\\\n\\\\t\\\\t\\\\t\\\\tif (!###Component###Helper::checkArray($years) || !in_array($item->###ID###,$years))\\\\n\\\\t\\\\t\\\\t\\\\t{\\\\n\\\\t\\\\t\\\\t\\\\t\\\\tif ($country)\\\\n\\\\t\\\\t\\\\t\\\\t\\\\t{\\\\n\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t$countryName = \' (\'. ###Component###Helper::getCountryName($item->###TEXT###).\')\';\\\\n\\\\t\\\\t\\\\t\\\\t\\\\t}\\\\n\\\\t\\\\t\\\\t\\\\t\\\\telse\\\\n\\\\t\\\\t\\\\t\\\\t\\\\t{\\\\n\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t$countryName = \'\';\\\\n\\\\t\\\\t\\\\t\\\\t\\\\t}\\\" \\r\\n\\ttype_php_15=\\\"\\\\t\\\\t\\\\t$options[] = JHtml::_(\'select.option\', $item->###ID###, $item->###ID### .$countryName);\\\\n\\\\t\\\\t\\\\t\\\\t\\\\t$years[$item->###ID###] = $item->###ID###;\\\\n\\\\t\\\\t\\\\t\\\\t}\\\" \\r\\n\\ttype_php_16=\\\"\\\\t}\\\" \\r\\n\\ttype_php_17=\\\"}\\\" \\r\\n\\ttype_php_18=\\\"$options = array_merge(parent::getOptions(), $options);\\\" \\r\\n\\ttype_php_19=\\\"return $options;\\\" \\r\\n\\/>\"', -2, '2015-07-20 17:09:51', '2015-07-19 21:29:32', 1, '', 577, 'ad2875e6-9578-48fb-b72c-5d7184009b29', '', '', '', '', ''),
(654, 1, '', 1, '', 'aW5wdXRbdHlwZT0iY2hlY2tib3giXSB7DQogICAgbWFyZ2luOiAgMCAhaW1wb3J0YW50Ow0KfQ==', '', '', '', '', '', 'TEXT', '', 'alF1ZXJ5KCcjYWRtaW5Gb3JtJykub24oJ2NoYW5nZScsICcjamZvcm1fY2F1c2Vzcmlza3MnLGZ1bmN0aW9uIChlKQ0Kew0KCS8vIGZpcnN0IHdlIGJ1aWxkIHRoZSBjaGVja2VkIGFycmF5DQoJY2hlY2tlZEFycmF5ID0gW107DQoJalF1ZXJ5KCcjamZvcm1fY2F1c2Vzcmlza3MgaW5wdXRbdHlwZT1jaGVja2JveF0nKS5lYWNoKGZ1bmN0aW9uKCkNCgl7DQoJCWlmIChqUXVlcnkodGhpcykuaXMoJzpjaGVja2VkJykpDQoJCXsNCgkJCWNoZWNrZWRBcnJheS5wdXNoKGpRdWVyeSgibGFiZWxbZm9yPSciK2pRdWVyeSh0aGlzKS5wcm9wKCdpZCcpKyInXSA+IHNwYW4iKS5wcm9wKCdpZCcpKTsNCgkJfQ0KCX0pOw0KCS8vIG5vdyB3ZSBjaGVjayBpZiBjaGlsZCBpcyBjaGVja2VkIGFuZCB1bmNoZWNrIHBlcmFudA0KCWpRdWVyeSgnI2pmb3JtX2NhdXNlc3Jpc2tzIGlucHV0W3R5cGU9Y2hlY2tib3hdJykuZWFjaChmdW5jdGlvbigpDQoJew0KCQlpZiAoalF1ZXJ5KHRoaXMpLmlzKCc6Y2hlY2tlZCcpKQ0KCQl7DQoJCQl2YXIgY2hlY2luZyA9IGpRdWVyeSgibGFiZWxbZm9yPSciK2pRdWVyeSh0aGlzKS5wcm9wKCdpZCcpKyInXSA+IHNwYW4iKS5wcm9wKCdpZCcpOw0KCQkJLy8gZmlyc3QgcmVtb3ZlIHRoaXMgY2hlY2tkIGl0ZW0gZnJvbSBhcnJheQ0KCQkJY2hlY2tlZEFycmF5Q2hlY2tlciA9IGpRdWVyeS5ncmVwKGNoZWNrZWRBcnJheSwgZnVuY3Rpb24odmFsdWUpIHsNCgkJCQlyZXR1cm4gdmFsdWUgIT0gY2hlY2luZzsNCgkJCX0pOw0KCQkJDQoJCQkvLyBub3cgdW5jaGVjayB0aGUgcGVyYW50IGNoZWNrYm94ZXMNCgkJCWpRdWVyeS5lYWNoKCBjaGVja2VkQXJyYXlDaGVja2VyLGZ1bmN0aW9uKGluZGV4LHZhbHVlKQ0KCQkJew0KCQkJCWlmIChjaGVjaW5nLmluZGV4T2YodmFsdWUpID49IDApDQoJCQkJew0KCQkJCQl2YXIgYmxvY2sgPSBqUXVlcnkoJyMnK3ZhbHVlKS5jbG9zZXN0KCdsYWJlbCcpLmZpbmQoJ2lucHV0JykucHJvcCgnaWQnKTsNCgkJCQkJalF1ZXJ5KCcjJytibG9jaykucHJvcCgnY2hlY2tlZCcsIGZhbHNlKTsNCgkJCQl9DQoJCQl9KTsNCgkJfQ0KCX0pOw0KfSk7', '', 'Causes/Risks (CheckBoxes)', 'NOT NULL', 1, 6, '\"<field \\r\\n\\ttype=\\\"causesriskscheck\\\" \\r\\n\\tname=\\\"causesrisks\\\" \\r\\n\\tlabel=\\\"Causes\\/Risks\\\" \\r\\n\\tdescription=\\\"\\\" \\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\treadonly=\\\"\\\" \\r\\n\\tdisabled=\\\"\\\" \\r\\n\\textends=\\\"checkboxes\\\" \\r\\n\\ttable=\\\"#__###component###_causerisk\\\" \\r\\n\\tcomponent=\\\"com_###component###\\\" \\r\\n\\tview=\\\"causerisk\\\" \\r\\n\\tviews=\\\"causesrisks\\\" \\r\\n\\tvalue_field=\\\"name\\\" \\r\\n\\tkey_field=\\\"id\\\" \\r\\n\\ttype_php_1=\\\"$db = JFactory::getDBO();\\r\\n\\\\t\\\\t$query = $db->getQuery(true);\\r\\n\\\\t\\\\t$query->select($db->quoteName(array(\'a.###ID###\',\'a.###TEXT###\',\'a.ref\'),array(\'###ID###\',\'###CODE_TEXT###\',\'ref\')));\\r\\n\\\\t\\\\t$query->from($db->quoteName(\'###TABLE###\', \'a\'));\\r\\n\\\\t\\\\t$query->where($db->quoteName(\'a.published\') . \' = 1\');\\r\\n\\\\t\\\\t$query->order(\'a.ref ASC\');\\r\\n\\\\t\\\\t$db->setQuery((string)$query);\\r\\n\\\\t\\\\t$items = $db->loadObjectList();\\r\\n\\\\t\\\\t$options = array(); $counter = 0;\\r\\n\\\\t\\\\tif ($items)\\r\\n\\\\t\\\\t{\\r\\n\\\\t\\\\t\\\\tforeach($items as $item)\\r\\n\\\\t\\\\t\\\\t{\\r\\n\\\\t\\\\t\\\\t\\\\t$ref\\\\t= explode(\'.\',$item->ref);\\r\\n\\\\t\\\\t\\\\t\\\\t$target_id\\\\t= implode(\'-\',$ref);\\r\\n\\\\t\\\\t\\\\t\\\\t$key\\\\t= explode(\'.0\',$item->ref);\\r\\n\\\\t\\\\t\\\\t\\\\t$key\\\\t= implode(\'.\',$key);\\r\\n\\\\t\\\\t\\\\t\\\\t$spacer\\\\t= array();\\r\\n\\\\t\\\\t\\\\t\\\\t$sub\\\\t= \'\';\\r\\n\\\\t\\\\t\\\\t\\\\t$sub_\\\\t= \'\';\\r\\n\\\\t\\\\t\\\\t\\\\tforeach ($ref as $nr => $space)\\r\\n\\\\t\\\\t\\\\t\\\\t{\\r\\n\\\\t\\\\t\\\\t\\\\t\\\\tif ($nr > 1)\\r\\n\\\\t\\\\t\\\\t\\\\t\\\\t{\\r\\n\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t$spacer[] = \'<span class=\\\\\'gi\\\\\'>|&mdash;<\\/span>\';\\r\\n\\\\t\\\\t\\\\t\\\\t\\\\t}\\r\\n\\\\t\\\\t\\\\t\\\\t\\\\tif ($nr > 2)\\r\\n\\\\t\\\\t\\\\t\\\\t\\\\t{\\r\\n\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t$sub = \'<em>\';\\r\\n\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t$sub_ = \'<\\/em>\';\\r\\n\\\\t\\\\t\\\\t\\\\t\\\\t}\\r\\n\\\\t\\\\t\\\\t\\\\t}\\r\\n\\\\t\\\\t\\\\t\\\\tif (###Component###Helper::checkArray($spacer))\\r\\n\\\\t\\\\t\\\\t\\\\t{\\r\\n\\\\t\\\\t\\\\t\\\\t\\\\t$tmp = array(\\r\\n\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\'value\' => $item->###ID###,\\r\\n\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\'text\' => \'<span id=\'.$target_id.\' style=\\\\\'color:\'.$color.\';\\\\\'>&nbsp;&nbsp;\'.implode(\'\',$spacer).\'&nbsp;\'.$sub.$item->###CODE_TEXT###.$sub_.\'&nbsp;<small>(\'.$key.\')<\\/small><\\/span>\',\\r\\n\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\'checked\' => false\\r\\n\\\\t\\\\t\\\\t\\\\t\\\\t);\\r\\n\\\\t\\\\t\\\\t\\\\t\\\\t$options[] = (object) $tmp;\\r\\n\\\\t\\\\t\\\\t\\\\t}\\r\\n\\\\t\\\\t\\\\t\\\\telse\\r\\n\\\\t\\\\t\\\\t\\\\t{\\r\\n\\\\t\\\\t\\\\t\\\\t\\\\tif ( $counter & 1 )\\r\\n\\\\t\\\\t\\\\t\\\\t\\\\t{\\r\\n\\\\t\\\\t\\\\t\\\\t\\\\t$color = \'#0C5B00\';\\r\\n\\\\t\\\\t\\\\t\\\\t\\\\t}\\r\\n\\\\t\\\\t\\\\t\\\\t\\\\telse\\r\\n\\\\t\\\\t\\\\t\\\\t\\\\t{\\r\\n\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t$color = \'#1A3867\';\\r\\n\\\\t\\\\t\\\\t\\\\t\\\\t}\\r\\n\\\\t\\\\t\\\\t\\\\t\\\\t$tmp = array(\\r\\n\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\'value\' => $item->###ID###,\\r\\n\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\'text\' => \'<span id=\'.$target_id.\' style=\\\\\'color:\'.$color.\';\\\\\'>&nbsp;&nbsp;<strong>\'.strtoupper($item->###CODE_TEXT###).\'<\\/strong>&nbsp;<small>(\'.$key.\')<\\/small><\\/span>\',\\r\\n\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\'checked\' => false\\r\\n\\\\t\\\\t\\\\t\\\\t\\\\t);\\r\\n\\\\t\\\\t\\\\t\\\\t\\\\t$options[] = (object) $tmp;\\r\\n\\\\t\\\\t\\\\t\\\\t\\\\t$counter++;\\r\\n\\\\t\\\\t\\\\t\\\\t}\\r\\n\\\\t\\\\t\\\\t}\\r\\n\\\\t\\\\t}\\r\\n\\\\t\\\\treturn $options;\\\" \\r\\n\\/>\"', 1, '2015-07-24 01:36:37', '2016-04-05 07:35:04', 23, '', 585, 'aface1df-ff65-4379-b8e6-e0c44f88aa36', '', '', '', '', ''),
(655, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Percent', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"percent\\\" \\r\\n\\tlabel=\\\"Percent\\\" \\r\\n\\tsize=\\\"10\\\" \\r\\n\\tmaxlength=\\\"50\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tdescription=\\\"\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\treadonly=\\\"false\\\" \\r\\n\\tdisabled=\\\"false\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\tfilter=\\\"FLOAT\\\" \\r\\n\\tmessage=\\\"Error! Please add percent here.\\\" \\r\\n\\thint=\\\"Percent Here\\\" \\r\\n\\/>\"', 1, '2015-07-25 11:39:46', '2015-08-25 21:15:22', 1, '', 573, '8c98c538-fd43-4d23-979d-edd25beea6ef', '', '', '', '', ''),
(656, '', '', '', '', '', '', '', '', 7, '', 'CHAR', '', '', '', 'Presenteeism Constant', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"presenteeism\\\" \\r\\n\\tlabel=\\\"Presenteeism Constant\\\" \\r\\n\\tsize=\\\"10\\\" \\r\\n\\tmaxlength=\\\"10\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tdescription=\\\"The presenteeism constant.\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\treadonly=\\\"false\\\" \\r\\n\\tdisabled=\\\"false\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\tfilter=\\\"CMD\\\" \\r\\n\\tvalidate=\\\"\\\" \\r\\n\\tmessage=\\\"Error! Please add presenteeism constant here.\\\" \\r\\n\\thint=\\\"0.25\\\"\\r\\n\\/>\"', 1, '2015-07-25 12:58:36', '2015-08-25 21:15:22', 2, '', 574, 'cd4ba795-fe3b-4fca-977b-c3eb06621272', '', '', '', '', ''),
(657, '', '', '', '', '', '', '', '', 7, '', 'CHAR', '', '', '', 'Default Healthcare Costs', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"healthcare\\\" \\r\\n\\tlabel=\\\"Default Healthcare Costs\\\" \\r\\n\\tsize=\\\"10\\\" \\r\\n\\tmaxlength=\\\"10\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tdescription=\\\"The healthcare costs as a % of total salary costs. This figure is used for the calculations as default.\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\treadonly=\\\"false\\\" \\r\\n\\tdisabled=\\\"false\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\tfilter=\\\"CMD\\\" \\r\\n\\tvalidate=\\\"\\\" \\r\\n\\tmessage=\\\"Error! Please add healthcare cost here.\\\" \\r\\n\\thint=\\\"10\\\"\\r\\n\\/>\"', 1, '2015-07-25 13:03:48', '2015-08-25 21:15:22', 2, '', 574, '196a5fcd-fa32-4cf8-9069-8d103d9cee93', '', '', '', '', ''),
(658, '', '', '', '', '', '', '', '', 7, '', 'CHAR', '', '', '', 'Ave. Medical Turnover', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"medical_turnovers\\\" \\r\\n\\tlabel=\\\"Default Ave. Medical Turnover\\\" \\r\\n\\tsize=\\\"10\\\" \\r\\n\\tmaxlength=\\\"10\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tdescription=\\\"The average medical turnover per\\/100,000.\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\treadonly=\\\"false\\\" \\r\\n\\tdisabled=\\\"false\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\tfilter=\\\"CMD\\\" \\r\\n\\tvalidate=\\\"\\\" \\r\\n\\tmessage=\\\"Error! Please add ave. medical turnover here.\\\" \\r\\n\\thint=\\\"12\\\"\\r\\n\\/>\"', 1, '2015-07-25 13:05:05', '2015-08-25 21:15:22', 2, '', 574, '22e004cd-7418-43ea-a714-9ade5254f15d', '', '', '', '', ''),
(659, '', '', '', '', '', '', '', '', 7, '', 'CHAR', '', '', '', 'Ave. Sick Leave', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"sick_leave\\\" \\r\\n\\tlabel=\\\"Default Ave. Sick Leave\\\" \\r\\n\\tsize=\\\"10\\\" \\r\\n\\tmaxlength=\\\"10\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tdescription=\\\"The average sick leave days per\\/person.\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\treadonly=\\\"false\\\" \\r\\n\\tdisabled=\\\"false\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\tfilter=\\\"CMD\\\" \\r\\n\\tvalidate=\\\"\\\" \\r\\n\\tmessage=\\\"Error! Please add ave. sick leave here.\\\" \\r\\n\\thint=\\\"12\\\"\\r\\n\\/>\"', 1, '2015-07-25 13:06:22', '2015-08-25 21:15:22', 2, '', 574, '0910ada8-dc9a-4051-858d-ae30dc4a292d', '', '', '', '', ''),
(660, '', '', '', '', '', '', '', '', 7, '', 'CHAR', '', '', '', 'Default Productivity Losses', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"productivity_losses\\\" \\r\\n\\tlabel=\\\"Default Productivity Losses\\\" \\r\\n\\tsize=\\\"10\\\" \\r\\n\\tmaxlength=\\\"10\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tdescription=\\\"The interim number between 0 and 1 reflecting the amount of a year in lost productivity due to medical retirement\\/death of an employee. This figure is used for the default.\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\treadonly=\\\"false\\\" \\r\\n\\tdisabled=\\\"false\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\tfilter=\\\"CMD\\\" \\r\\n\\tvalidate=\\\"\\\" \\r\\n\\tmessage=\\\"Error! Please add productivity losses here.\\\" \\r\\n\\thint=\\\"0.5\\\"\\r\\n\\/>\"', 1, '2015-07-25 13:07:38', '2015-08-25 21:15:22', 2, '', 574, 'a1c7413c-c808-48e6-bf78-b36a9c37c76c', '', '', '', '', ''),
(661, '', '', '', '', '', '', '', '', '', '', 'CHAR', '', '', '', 'Note - Age Groups only Advanced', 'NOT NULL', '', 14, '\"<field \\r\\n\\ttype=\\\"note\\\" \\r\\n\\tname=\\\"age_groups_note\\\"\\r\\nlabel=\\\"Age Groups Percentages\\\"\\r\\n\\tdescription=\\\"This feature is only available to the advanced department.\\\" \\r\\n\\tclass=\\\"alert alert-info\\\"\\r\\n\\/>\"', 1, '2015-07-25 14:56:29', '2015-08-25 21:15:22', 2, '', 35, 'f168e188-0dcc-4ba7-99d2-1a55d8ea9c63', '', '', '', '', ''),
(662, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Add PHP (getListQuery - JModelList)', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"add_php_getlistquery\\\" \\r\\n\\tlabel=\\\"Add PHP (getListQuery - JModelList)\\\" \\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-07-27 16:23:49', '2015-10-04 18:01:08', 2, '', 187, 'f2581140-5d9c-4c29-b511-e12a826d15da', '', '', '', '', ''),
(663, '', '', '', '', '', '', '', '', '', '', 'MEDIUMTEXT', '', '', '', 'PHP (Before getListQuery - JModelList)', 'NOT NULL', 2, 8, '\"<field\\n\\ttype=\\\"editor\\\"\\n\\tname=\\\"php_getlistquery\\\"\\n\\tlabel=\\\"PHP getListQuery Method<br \\/><small>used to add custom filtering values.<\\/small>\\\"\\n\\tdescription=\\\"Add PHP Here that should run in the getListQuery Method of the model of this view, just before the $query object is started. 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-07-27 16:25:16', '2020-05-04 20:47:12', 6, '', 118, 'b9c064cb-4266-4217-95b7-d2956e6bfefb', '', '', '', '', ''),
(664, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Add PHP (allowEdit Method)', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"add_php_allowEdit\\\" \\r\\n\\tlabel=\\\"Add PHP (allowEdit Method)\\\" \\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-07-27 23:10:11', '2015-08-25 21:15:22', 1, '', 187, '30744253-e2cd-44c3-ac86-0de3741b9ce0', '', '', '', '', ''),
(665, '', '', '', '', '', '', '', '', '', '', 'MEDIUMTEXT', '', '', '', 'PHP (allowEdit)', 'NOT NULL', 2, 8, '\"<field\\n\\ttype=\\\"editor\\\"\\n\\tname=\\\"php_allowedit\\\"\\n\\tlabel=\\\"PHP allowEdit Method<br \\/><small>The record ID => ($recordId) and the user object => ($user) are already set.<\\/small>\\\"\\n\\tdescription=\\\"Add PHP Here that should run in the allowEdit Method to add custom access control. 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-07-27 23:15:12', '2019-07-08 14:15:45', 4, '', 118, '88173ddb-35c5-49a7-845d-0d4e12119a37', '', '', '', '', ''),
(666, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Males Death (year)', 'NOT NULL', '', 19, '\"<field \\r\\n\\ttype=\\\"repeatable\\\" \\r\\n\\tname=\\\"maledeath\\\" \\r\\n\\tlabel=\\\"Set Males Total Deaths\\\" \\r\\n\\tdescription=\\\"Here you can add males total death data.\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tid=\\\"maledeath\\\" \\r\\n\\tclass=\\\"malesdeath\\\" \\r\\n\\tselect=\\\"Edit\\/Add\\\" \\r\\n\\ticon=\\\"list\\\" \\r\\n\\tmaximum=\\\"\\\" \\r\\n\\tfields=\\\"615,616,613\\\" \\r\\n\\/>\"', 1, '2015-07-28 20:31:39', '2015-08-25 21:15:22', 4, '', 533, '6ec158a6-09a8-4ee7-88db-bdc7616f7e02', '', '', '', '', ''),
(667, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Females Death (year)', 'NOT NULL', '', 19, '\"<field \\r\\n\\ttype=\\\"repeatable\\\" \\r\\n\\tname=\\\"femaledeath\\\" \\r\\n\\tlabel=\\\"Set Females Total Deaths\\\" \\r\\n\\tdescription=\\\"Here you can add total females death data.\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tid=\\\"femaledeath\\\" \\r\\n\\tclass=\\\"femalesdeath\\\" \\r\\n\\tselect=\\\"Edit\\/Add\\\" \\r\\n\\ticon=\\\"list\\\" \\r\\n\\tmaximum=\\\"\\\" \\r\\n\\tfields=\\\"615,616,613\\\" \\r\\n\\/>\"', 1, '2015-07-28 20:32:25', '2015-08-25 21:15:22', 2, '', 533, '6f4a5058-4f24-4689-bb56-7ea42b2c1749', '', '', '', '', ''),
(668, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Females YLD (year)', 'NOT NULL', '', 19, '\"<field \\r\\n\\ttype=\\\"repeatable\\\" \\r\\n\\tname=\\\"femaleyld\\\" \\r\\n\\tlabel=\\\"Set Females Total YLDs\\\" \\r\\n\\tdescription=\\\"Here you can add females total YLD data.\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tid=\\\"femaleyld\\\" \\r\\n\\tclass=\\\"femalesyld\\\" \\r\\n\\tselect=\\\"Edit\\/Add\\\" \\r\\n\\ticon=\\\"list\\\" \\r\\n\\tmaximum=\\\"10\\\" \\r\\n\\tfields=\\\"615,616,613\\\" \\r\\n\\/>\"', 1, '2015-07-28 20:33:18', '2015-08-25 21:15:22', 2, '', 533, 'bc142f95-8856-4bb4-a091-3db9bc6ed2dd', '', '', '', '', ''),
(669, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Males YLD (year)', 'NOT NULL', '', 19, '\"<field \\r\\n\\ttype=\\\"repeatable\\\" \\r\\n\\tname=\\\"maleyld\\\" \\r\\n\\tlabel=\\\"Set Males Total YLDs\\\" \\r\\n\\tdescription=\\\"Here you can add males total YLD data.\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tid=\\\"maleyld\\\" \\r\\n\\tclass=\\\"malesyld\\\" \\r\\n\\tselect=\\\"Edit\\/Add\\\" \\r\\n\\ticon=\\\"list\\\" \\r\\n\\tmaximum=\\\"\\\" \\r\\n\\tfields=\\\"615,616,613\\\" \\r\\n\\/>\"', 1, '2015-07-28 20:34:00', '2015-08-25 21:15:22', 2, '', 533, '8115269b-857b-4e9d-b915-97b868de0664', '', '', '', '', ''),
(670, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Type (Intervention)', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"type\\\" \\r\\n\\tlabel=\\\"Type\\\" \\r\\n\\tdescription=\\\"Select the intervention type.\\\" \\r\\n\\tclass=\\\"btn-group\\\" \\r\\n\\toption=\\\"1|Single,2|Cluster\\\" \\r\\n\\tdefault=\\\"1\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\/>\"', 1, '2015-07-28 22:22:15', '2015-09-04 16:16:06', 3, '', 521, '94edfe8c-aef5-4f94-9ee1-69b68b0352e2', '', '', '', '', ''),
(671, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'Coverage', 'NOT NULL', '', 10, '\"<field \\r\\n\\ttype=\\\"integer\\\" \\r\\n\\tname=\\\"coverage\\\" \\r\\n\\tlabel=\\\"Coverage\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tdescription=\\\"Proportion of employees covered\\\" \\r\\n\\tclass=\\\"\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\tfirst=\\\"10\\\" \\r\\n\\tlast=\\\"100\\\" \\r\\n\\tstep=\\\"10\\\" \\r\\n\\/>\"', 1, '2015-07-28 22:25:59', '2015-10-01 04:34:28', 2, '', 586, '3b56d746-35d8-4c0c-8ec0-bc5db750a336', '', '', '', '', ''),
(672, 1, '', '', '', 'LnRleHRfYXJlYXsNCgloZWlnaHQ6IDIwMHB4Ow0KCXdpZHRoOiAxMDAlOw0KfQ==', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Reference (intervention)', 'NOT NULL', '', 25, '\"<field \\r\\n\\ttype=\\\"textarea\\\" \\r\\n\\tname=\\\"reference\\\" \\r\\n\\tlabel=\\\"Reference\\\" \\r\\n\\trows=\\\"10\\\" \\r\\n\\tcols=\\\"5\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tdescription=\\\"Please give reference to the source of your data used in the intervention.\\\" \\r\\n\\tclass=\\\"text_area span12\\\" \\r\\n\\tfilter=\\\"HTML\\\" \\r\\n\\thint=\\\"\\/\\/ Source of your data\\\" \\r\\n\\trequired=\\\"\\\" \\r\\n\\/>\"', 1, '2015-07-28 22:27:03', '2015-09-28 05:20:32', 3, '', 575, 'd13086a9-745f-453b-b254-675c74f582ab', '', '', '', '', ''),
(673, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Sharing Options', 'NOT NULL', '', 11, '\"<field \\r\\n\\ttype=\\\"list\\\" \\r\\n\\tname=\\\"share\\\" \\r\\n\\tlabel=\\\"Sharing Options\\\" \\r\\n\\tdescription=\\\"Select a sharing option\\\" \\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\tmultiple=\\\"false\\\" \\r\\n\\tfilter=\\\"INT\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\toption=\\\"3|All Service Providers and Admin,2|Only My Service Provider,1|Only Me\\\" \\r\\n\\tdefault=\\\"3\\\" \\r\\n\\/>\"', 1, '2015-07-28 22:39:07', '2015-09-04 16:16:35', 2, '', 569, '0e28d396-2fad-4ec2-9de1-328a97d7d9d9', '', '', '', '', ''),
(674, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Medical Turnovers Male', 'NOT NULL', 4, 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"medical_turnovers_Males\\\" \\r\\n\\tlabel=\\\"Total Number Medical Turnovers Male\\\" \\r\\n\\tsize=\\\"20\\\" \\r\\n\\tmaxlength=\\\"50\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tdescription=\\\"The total number of medical turnovers for males per\\/year.\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\treadonly=\\\"false\\\" \\r\\n\\tdisabled=\\\"false\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\tfilter=\\\"INT\\\" \\r\\n\\tvalidate=\\\"\\\" \\r\\n\\tmessage=\\\"Error! Please add total number of medical turnovers for males here.\\\" \\r\\n\\thint=\\\"per\\/year\\\" \\r\\n\\/>\"', -2, '2015-07-30 21:42:47', '2015-07-20 11:26:22', 1, '', 584, '6394a624-8a4c-49d7-9dcd-e5d9e223cb08', '', '', '', '', ''),
(675, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Females', 'NOT NULL', 4, 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"Females\\\" \\r\\n\\tlabel=\\\"Total Female Employees\\\" \\r\\n\\tsize=\\\"20\\\" \\r\\n\\tmaxlength=\\\"50\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tdescription=\\\"The Total Number of Female Employees.\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\treadonly=\\\"false\\\" \\r\\n\\tdisabled=\\\"false\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\tfilter=\\\"INT\\\" \\r\\n\\tvalidate=\\\"\\\" \\r\\n\\tmessage=\\\"Error! Please add total female employees here.\\\" \\r\\n\\thint=\\\"Just A Number\\\" \\r\\n\\/>\"', -2, '2015-07-30 21:43:16', '2015-07-30 21:43:30', 2, '', '', '27a1479c-17d0-40d2-b2f1-c136707e5382', '', '', '', '', ''),
(676, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Add Linked Views', 'NOT NULL', '', 35, '\"<field \\r\\n\\ttype=\\\"subform\\\"\\r\\n\\tname=\\\"addlinked_views\\\" \\r\\n\\tlabel=\\\"Linked Views\\\" \\r\\n\\tdescription=\\\"Setup the linked views for this view.\\\" \\r\\n\\tlayout=\\\"joomla.form.field.subform.repeatable-table\\\" \\r\\n\\tmultiple=\\\"true\\\" \\r\\n\\tmaximum=\\\"500\\\" \\r\\n\\tfields=\\\"39,243,677,678,679\\\"\\r\\n\\ticon=\\\"list\\\"\\r\\n\\/>\"', 1, '2015-07-31 15:43:43', '2017-10-09 18:21:47', 5, '', 201, '70c62a1a-a141-4e0e-a271-c606744cb92c', '', '', '', '', ''),
(677, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Child Key', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"key\\\"\\n\\tlabel=\\\"Child Key\\\"\\n\\tsize=\\\"40\\\"\\n\\tmaxlength=\\\"150\\\"\\n\\tdescription=\\\"The key to use to link the child view.\\\"\\n\\tclass=\\\"text_area\\\"\\n\\treadonly=\\\"false\\\"\\n\\tdisabled=\\\"false\\\"\\n\\trequired=\\\"true\\\"\\n\\tfilter=\\\"STRING\\\"\\n\\tmessage=\\\"Error! Please add key here.\\\"\\n\\thint=\\\"country\\\"\\n\\/>\"', 1, '2015-08-01 17:26:33', '2019-07-17 00:21:42', 2, '', 523, 'af8571ac-81e7-4c62-a4f0-47c32c5dbf46', '', '', '', '', ''),
(678, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Parent Key', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"parentkey\\\"\\n\\tlabel=\\\"Parent Key\\\"\\n\\tsize=\\\"40\\\"\\n\\tmaxlength=\\\"150\\\"\\n\\tdescription=\\\"The key to use to link the parent view.\\\"\\n\\tclass=\\\"text_area\\\"\\n\\treadonly=\\\"false\\\"\\n\\tdisabled=\\\"false\\\"\\n\\trequired=\\\"true\\\"\\n\\tfilter=\\\"STRING\\\"\\n\\tmessage=\\\"Error! Please add key here.\\\"\\n\\thint=\\\"id\\\"\\n\\/>\"', 1, '2015-08-01 17:27:42', '2023-07-17 06:05:37', 2, '', 523, '23329e4c-fb93-49fb-9b09-79e51211440d', '', '', '', '', ''),
(679, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'Top Button (linked view)', 'NOT NULL', '', 11, '\"<field \\r\\n\\ttype=\\\"list\\\" \\r\\n\\tname=\\\"addnew\\\" \\r\\n\\tlabel=\\\"Top Button\\\" \\r\\n\\tdescription=\\\"in tab\\\" \\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\tmultiple=\\\"false\\\" \\r\\n\\tfilter=\\\"int\\\"\\r\\n\\toption=\\\"0|None,1|Add New Button,2|Add New + New & Close Button,3|Add New & Close Button\\\" \\r\\n\\tdefault=\\\"0\\\"\\r\\n\\/>\"', 1, '2015-08-02 19:20:47', '2017-12-12 12:00:51', 6, '', 587, '1741e8fa-bb6c-4716-ad3d-aaa15a8de938', '', '', '', '', ''),
(680, '', '', '', '', '', '', '', '', '', '', 'CHAR', '', '', '', 'Export/Import Data', 'NOT NULL', '', 3, '\"<field\\n\\ttype=\\\"checkbox\\\"\\n\\tname=\\\"port\\\"\\n\\tlabel=\\\"Export\\/Import Data\\\"\\n\\tvalue=\\\"1\\\"\\n\\tdefault=\\\"\\\"\\n\\tdescription=\\\"add import\\/export option to this admin view.\\\"\\n\\tclass=\\\"inputbox\\\"\\n\\/>\"', 1, '2015-08-03 21:34:49', '2019-06-11 12:20:39', 5, '', 588, '4d85ca04-f991-4e02-a465-8b0eb2d3a1c6', '', '', '', '', ''),
(681, '', '', '', '', '', '', '', '', 64, '', 'CHAR', '', '', '', 'Company Name (companyname)', 'NOT NULL', '', 24, '\"<field\\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"companyname\\\" \\r\\n\\tlabel=\\\"Company Name\\\" \\r\\n\\tsize=\\\"40\\\" \\r\\n\\tmaxlength=\\\"150\\\" \\r\\n\\tdescription=\\\"Enter Company Name Here\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\treadonly=\\\"false\\\" \\r\\n\\tdisabled=\\\"false\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\tfilter=\\\"STRING\\\" \\r\\n\\tmessage=\\\"Error! Please add company name here.\\\" \\r\\n\\thint=\\\"Company Name Here\\\" \\r\\n\\/>\"', 1, '2015-08-05 00:42:34', '2015-08-25 21:15:22', 2, '', 159, 'f8c2c432-b756-4c67-bfa5-0871e58e55e3', '', '', '', '', ''),
(682, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Add More', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"add\\\"\\n\\tlabel=\\\"Add More\\\"\\n\\tdescription=\\\"\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"1|Yes,0|No\\\"\\n\\tdefault=\\\"0\\\"\\n\\trequired=\\\"true\\\"\\n\\/>\"', 1, '2015-08-05 01:18:20', '2023-01-20 11:15:45', 7, '', 196, 'a66389aa-2323-4f44-8c23-ff44969639be', '', '', '', '', ''),
(683, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Females (demo)', 'NOT NULL', '', 19, '\"<field \\r\\n\\ttype=\\\"repeatable\\\" \\r\\n\\tname=\\\"female\\\" \\r\\n\\tlabel=\\\"Set Females\\\" \\r\\n\\tdescription=\\\"Here you can add females data.\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tid=\\\"female\\\" \\r\\n\\tclass=\\\"females\\\" \\r\\n\\tselect=\\\"Edit\\/Add\\\" \\r\\n\\ticon=\\\"list\\\" \\r\\n\\tmaximum=\\\"10\\\" \\r\\n\\tfields=\\\"615,616,613\\\" \\r\\n\\/>\"', 1, '2015-08-05 02:04:27', '2015-08-25 21:15:22', 1, '', 533, '72c3db18-b59c-4d09-8189-5a9978780cd2', '', '', '', '', ''),
(684, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Males (demo)', 'NOT NULL', '', 19, '\"<field \\r\\n\\ttype=\\\"repeatable\\\" \\r\\n\\tname=\\\"male\\\" \\r\\n\\tlabel=\\\"Set Males\\\" \\r\\n\\tdescription=\\\"Here you can add males data.\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tid=\\\"male\\\" \\r\\n\\tclass=\\\"males\\\" \\r\\n\\tselect=\\\"Edit\\/Add\\\" \\r\\n\\ticon=\\\"list\\\" \\r\\n\\tmaximum=\\\"10\\\" \\r\\n\\tfields=\\\"615,616,613\\\" \\r\\n\\/>\"', 1, '2015-08-05 02:05:34', '2015-08-25 21:15:22', 1, '', 533, '04ce6ce1-b30a-4104-ab2c-cc35e1f9dedd', '', '', '', '', ''),
(685, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Public Details', 'NOT NULL', '', 8, '\"<field \\r\\n\\ttype=\\\"editor\\\" \\r\\n\\tname=\\\"public\\\" \\r\\n\\tlabel=\\\"Public Details\\\" \\r\\n\\twidth=\\\"100%\\\"\\r\\n\\theight=\\\"500\\\"\\r\\n\\tfilter=\\\"safehtml\\\" \\r\\n\\trequired=\\\"true\\\"\\r\\n\\/>\"', 1, '2015-08-06 17:41:10', '2015-08-25 21:15:22', 1, '', 1, '90ac6876-0182-49d5-bd15-db6cc86dbf23', '', '', '', '', ''),
(686, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Edit/Create Site View', 'NOT NULL', '', 11, '\"<field\\n\\ttype=\\\"list\\\"\\n\\tname=\\\"edit_create_site_view\\\"\\n\\tlabel=\\\"Edit\\/Create Site View\\\"\\n\\tdescription=\\\"add site edit & create view for this admin view\\\"\\n\\tclass=\\\"fieldMedium\\\"\\n\\tmultiple=\\\"false\\\"\\n\\toption=\\\"|None,1|Add,2|Add+Menu\\\"\\n\\/>\"', 1, '2015-08-13 21:07:54', '2020-11-14 03:11:14', 8, '', 589, 'b93109a1-4469-49bf-b5e5-cdc212a98c92', '', '', '', '', ''),
(687, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'Custom Admin View (dynamic)', 'NOT NULL', '', 6, '\"<field \\r\\n\\ttype=\\\"customadminviews\\\" \\r\\n\\tname=\\\"customadminview\\\" \\r\\n\\tlabel=\\\"View\\\" \\r\\n\\tdescription=\\\"Select a custom admin view\\\" \\r\\n\\tclass=\\\"fieldMedium\\\" \\r\\n\\tmultiple=\\\"false\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\treadonly=\\\"\\\" \\r\\n\\tdisabled=\\\"\\\" \\r\\n\\textends=\\\"list\\\" \\r\\n\\ttable=\\\"#__###component###_custom_admin_view\\\" \\r\\n\\tcomponent=\\\"com_###component###\\\" \\r\\n\\tview=\\\"custom_admin_view\\\" \\r\\n\\tviews=\\\"custom_admin_views\\\" \\r\\n\\tvalue_field=\\\"system_name\\\" \\r\\n\\tkey_field=\\\"id\\\" \\r\\n\\tprime_php=\\\"true\\\"\\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 an option\');\\\" \\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-08-13 21:36:56', '2018-03-08 22:55:58', 7, '', 164, 'e578bf91-77bf-4b80-a2ca-33babfee369c', '', '', '', '', ''),
(688, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Add Custom Admin View', 'NOT NULL', '', 35, '\"<field\\n\\ttype=\\\"subform\\\"\\n\\tname=\\\"addcustom_admin_views\\\"\\n\\tlabel=\\\"Custom Admin Views\\\"\\n\\tlayout=\\\"repeatablejcb\\\"\\n\\tmultiple=\\\"true\\\"\\n\\tfields=\\\"687,690,175,68,263,154,3,689,306\\\"\\n\\tdescription=\\\"\\\"\\n\\tdefault=\\\"\\\"\\n\\ticon=\\\"list\\\"\\n\\/>\"', 1, '2015-08-13 21:55:04', '2020-05-28 20:12:40', 12, '', 316, 'b2423282-c8a8-400e-9ded-fe61cea433f4', '', '', '', '', ''),
(689, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Admin Views (dynamic-add link) ', 'NOT NULL', '', 6, '\"<field\\n\\ttype=\\\"adminsviews\\\"\\n\\tname=\\\"adminviews\\\"\\n\\tlabel=\\\"Views\\\"\\n\\tdescription=\\\"Add a link to any list admin view\\\"\\n\\tclass=\\\"fieldMedium\\\"\\n\\tmultiple=\\\"true\\\"\\n\\textends=\\\"list\\\"\\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\\ttype_php_1=\\\"__.o0=base64=Oo.__JGRiID0gSkZhY3Rvcnk6OmdldERCTygpOw0KCQkkcXVlcnkgPSAkZGItPmdldFF1ZXJ5KHRydWUpOw0KCQkkcXVlcnktPnNlbGVjdCgkZGItPnF1b3RlTmFtZShhcnJheSgnYS4jIyNJRCMjIycsJ2EuIyMjVEVYVCMjIycpLGFycmF5KCcjIyNJRCMjIycsJyMjI0NPREVfVEVYVCMjIycpKSk7DQoJCSRxdWVyeS0+ZnJvbSgkZGItPnF1b3RlTmFtZSgnIyMjVEFCTEUjIyMnLCAnYScpKTsNCgkJJHF1ZXJ5LT53aGVyZSgkZGItPnF1b3RlTmFtZSgnYS5wdWJsaXNoZWQnKSAuICcgPj0gMScpOw0KCQkkcXVlcnktPm9yZGVyKCdhLiMjI1RFWFQjIyMgQVNDJyk7DQoJCSRkYi0+c2V0UXVlcnkoKHN0cmluZykkcXVlcnkpOw0KCQkkaXRlbXMgPSAkZGItPmxvYWRPYmplY3RMaXN0KCk7DQoJCSRvcHRpb25zID0gYXJyYXkoKTsNCgkJaWYgKCRpdGVtcykNCgkJew0KCQkJZm9yZWFjaCgkaXRlbXMgYXMgJGl0ZW0pDQoJCQl7DQoJCQkJJG9wdGlvbnNbXSA9IEpIdG1sOjpfKCdzZWxlY3Qub3B0aW9uJywgJGl0ZW0tPiMjI0lEIyMjLCAkaXRlbS0+IyMjQ09ERV9URVhUIyMjKTsNCgkJCX0NCgkJfQ0KDQoJCXJldHVybiAkb3B0aW9uczs=\\\"\\n\\/>\"', 1, '2015-08-14 16:08:33', '2019-06-11 12:43:25', 13, '', 164, 'dab22540-f751-44d8-89e4-e7389416de40', '', '', '', '', ''),
(690, '', '', 1, '', '', '', '', '', 64, '', 'VARCHAR', '', 'alF1ZXJ5KGRvY3VtZW50KS5yZWFkeShmdW5jdGlvbigpew0KCWpRdWVyeShkb2N1bWVudCkub24oJ3N1YmZvcm0tcm93LWFkZCcsIGZ1bmN0aW9uKGV2ZW50LCByb3cpew0KCQlnZXRJY29uSW1hZ2UoalF1ZXJ5KHJvdykuZmluZCgnLmljb21vb24zNDInKSk7DQoJfSk7DQp9KTsNCg0KZnVuY3Rpb24gZ2V0SWNvbkltYWdlKGZpZWxkKSB7DQoJLy8gZ2V0IHRoZSBJRA0KCXZhciBpZCA9IGpRdWVyeShmaWVsZCkuYXR0cignaWQnKTsNCgkvLyByZW1vdmUgb2xkIG9uZSANCglqUXVlcnkoJyNpbWFnZV8nK2lkKS5yZW1vdmUoKTsNCgkvLyBnZXQgdmFsdWUNCgl2YXIgdmFsdWUgPSBqUXVlcnkoJyMnK2lkKS52YWwoKTsNCgkvLyBidWlsZCBuZXcgb25lDQoJdmFyIHNwYW4gPSAnPHNwYW4gaWQ9ImltYWdlXycraWQrJyIgY2xhc3M9Imljb24tJyt2YWx1ZSsnIiBzdHlsZT0icG9zaXRpb246IGFic29sdXRlOyB0b3A6IDhweDsgcmlnaHQ6IC0yMHB4OyI+PC9zcGFuPic7DQoJLy8gYWRkIHRoZSBpY29uDQoJalF1ZXJ5KCcjJytpZCsnX2Noem4nKS5hcHBlbmQoc3Bhbik7DQp9', '', 'Icomoon', 'NOT NULL', '', 11, '\"<field\\n\\ttype=\\\"list\\\"\\n\\tname=\\\"icomoon\\\"\\n\\tlabel=\\\"Icon\\\"\\n\\tdescription=\\\"Joomla Standard Icomoon Fonts\\\"\\n\\tclass=\\\"list_class fieldMedium icomoon342\\\"\\n\\tmultiple=\\\"false\\\"\\n\\tfilter=\\\"\\\"\\n\\trequired=\\\"\\\"\\n\\toption=\\\"joomla|Joomla,address|Address,pencil|Pencil,archive|Archive,arrow-down-2|Arrow Down 2,arrow-down-3|Arrow Down 3,arrow-down-4|Arrow Down 4,arrow-first|Arrow First,arrow-last|Arrow Last,arrow-left-2|Arrow Left 2,arrow-left-3|Arrow Left 3,arrow-left-4|Arrow Left 4,arrow-right-2|Arrow Right 2,arrow-right-3|Arrow Right 3,arrow-right-4|Arrow Right 4,arrow-up-2|Arrow Up 2,arrow-up-3|Arrow Up 3,arrow-up-4|Arrow Up 4,attachment|Attachment,reply|Reply,backward-circle|Backward Circle,ban-circle|Ban Circle,bars|Bars,basket|Basket,book|Book,bookmark|Bookmark,bookmark-2|Bookmark 2,box-add|Box Add,box-remove|Box Remove,briefcase|Briefcase,wifi|Wifi,brush|Brush,calendar|Calendar,calendar-2|Calendar 2,calendar-3|Calendar 3,camera|Camera,camera-2 \\/ video|Camera 2 \\/ Video,cancel-circle|Cancel Circle,cart|Cart,chart|Chart,checkbox-partial|Checkbox Partial,checkbox-unchecked|Checkbox Unchecked,lock|Lock,checkbox|Checkbox,checkmark-2|Checkmark 2,checkmark-circle|Checkmark Circle,arrow-down|Arrow Down,arrow-left|Arrow Left,arrow-right|Arrow Right,arrow-up|Arrow Up,circle|Circle,clock|Clock,cogs|Cogs,comment|Comment,comments-2|Comments 2,compass|Compass,contract|Contract,contract-2|Contract 2,credit|Credit,credit-2|Credit 2,cube|Cube,dashboard|Dashboard,database|Database,delete|Delete,download|Download,enter|Enter,envelope|Envelope,envelope-opened|Envelope Opened,equalizer|Equalizer,exit|Exit,expand|Expand,expand-2|Expand 2,expired|Expired,eye-close|Eye Close,eye-open|Eye Open,featured|Featured,feed|Feed,file|File,file-2|File 2,file-add|File Add,file-check|File Check,file-minus|File Minus,file-remove|File Remove,filter|Filter,first|First,flag|Flag,flag-3|Flag 3,folder-3|Folder 3,folder-close|Folder Close,folder-minus|Folder Minus,folder-open|Folder Open,folder-plus|Folder Plus,folder-plus-2|Folder Plus 2,folder-remove|Folder Remove,forward-2|Forward 2,forward-circle|Forward Circle,grid|Grid,grid-2|Grid 2,health|Health,heart|Heart,heart-2|Heart 2,home|Home,home-2|Home 2,info|Info,info-circle|Info Circle,key|Key,lamp|Lamp,last|Last,flash|Flash,link|Link,list|List,list-2|List 2,location|Location,loop|Loop,menu|Menu,menu-2|Menu 2,menu-3|Menu 3,minus|Minus,minus-sign|Minus Sign,mobile|Mobile,move|Move,music|Music,plus|Plus,next|Next,notification|Notification,notification-circle|Notification Circle,cog|Cog,new-tab|New Tab,new-tab-2|New Tab 2,palette|Palette,paragraph-center|Paragraph Center,paragraph-justify|Paragraph Justify,paragraph-left|Paragraph Left,paragraph-right|Paragraph Right,pause|Pause,pause-circle|Pause Circle,pencil-2|Pencil 2,warning|Warning,phone|Phone,phone-2|Phone 2,image|Image,images|Images,pie|Pie,pin|Pin,play|Play,youtube|Youtube,play-circle|Play Circle,plus-circle|Plus Circle,power-cord|Power Cord,previous|Previous,print|Print,publish|Publish,purge|Purge,puzzle|Puzzle,question|Question,question-2|Question 2,quotes-left|Quotes Left,quotes-right|Quotes Right,bubble-quote|Bubble Quote,generic|Generic,radio-unchecked|Radio Unchecked,save-copy|Save Copy,save-new|Save New,scissors|Scissors,screen|Screen,screwdriver|Screwdriver,search|Search,share|Share,share-alt|Share Alt,shield|Shield,shuffle|Shuffle,signup|Signup,smiley|Smiley,smiley-2|Smiley 2,smiley-neutral|Smiley Neutral,smiley-neutral-2|Smiley Neutral 2,smiley-sad|Smiley Sad,smiley-sad-2|Smiley Sad 2,square|Square,stack|Stack,star-2|Star 2,stop|Stop,stop-circle|Stop Circle,support|Support,switch|Switch,tablet|Tablet,tag|Tag,tag-2|Tag 2,tags|Tags,tags-2|Tags 2,thumbs-down|Thumbs Down,thumbs-up|Thumbs Up,tree|Tree,tree-2|Tree 2,unarchive|Unarchive,unblock|Unblock,undo|Undo,undo-2|Undo 2,unfeatured|Unfeatured,unlock|Unlock,unpublish|Unpublish,upload|Upload,user|User,users|Users,vcard|Vcard,wand|Wand,warning-circle|Warning Circle,wrench|Wrench,zoom-in|Zoom In,zoom-out|Zoom Out\\\"\\n\\tonchange=\\\"getIconImage(this);\\\"\\n\\/>\"', 1, '2015-08-15 01:10:32', '2018-12-14 05:36:08', 16, '', 590, '13ec87fc-e5d3-4c06-ab1b-72964bc91a67', '', '', '', '', ''),
(691, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Email (not required)', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"email\\\"\\n\\tlabel=\\\"Email<br><small>not required<\\/small>\\\"\\n\\tsize=\\\"10\\\"\\n\\tmaxlength=\\\"50\\\"\\n\\tdescription=\\\"Enter Email\\\"\\n\\tclass=\\\"text_area\\\"\\n\\trequired=\\\"false\\\"\\n\\tfilter=\\\"STRING\\\"\\n\\tmessage=\\\"Error! Please add email address here.\\\"\\n\\thint=\\\"demo@example.com\\\"\\n\\/>\"', 1, '2015-08-16 17:21:15', '2019-11-20 11:42:55', 3, '', 285, '976f7e2d-68e3-497e-b4d1-6326d5b95078', '', '', '', '', ''),
(692, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Add Create User Helper Method', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"creatuserhelper\\\" \\r\\n\\tlabel=\\\"Add Create User Helper Method\\\" \\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-08-16 22:46:48', '2015-08-25 21:15:22', 1, '', 591, 'ec128453-f0a7-4b20-a109-56d85c6ce213', '', '', '', '', ''),
(693, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Add Uikit', 'NOT NULL', '', 11, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"adduikit\\\" \\r\\n\\tlabel=\\\"Add Uikit\\\" \\r\\n\\tdescription=\\\"Select the version of Uikit you would like to use.\\\" \\r\\n\\tclass=\\\"btn-group btn-group-yesno\\\" \\r\\n\\toption=\\\"0|Dynamic,2|Add Both v2 &amp; v3,1|Add Uikit v2,3|Add Uikit v3\\\" \\r\\n\\tdefault=\\\"0\\\" \\r\\n\\/>\\r\\n\"', 1, '2015-08-17 03:38:30', '2017-12-09 01:59:39', 9, '', 591, '627ec119-f50c-4afc-bfe7-8455a7ace163', '', '', '', '', ''),
(694, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Add FooTable', 'NOT NULL', '', 11, '\"<field \\r\\n\\ttype=\\\"list\\\" \\r\\n\\tname=\\\"addfootable\\\" \\r\\n\\tlabel=\\\"Add FooTable\\\" \\r\\n\\tdescription=\\\"\\\" \\r\\n\\tmessage=\\\"\\\" \\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\tmultiple=\\\"false\\\" \\r\\n\\tfilter=\\\"INT\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\toption=\\\"0|Dynamic,3|Add FooTable V3,1|Add FooTable V2\\\" \\r\\n\\tdefault=\\\"0\\\" \\r\\n\\/>\"', 1, '2015-08-17 03:39:11', '2017-12-09 01:59:03', 3, '', 591, 'ecdc0281-fc1b-4643-b9d0-41bf95674959', '', '', '', '', ''),
(695, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', 2, '', '', 'Name (intervention)', 'NOT NULL', '', 24, '\"<field\\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"name\\\" \\r\\n\\tlabel=\\\"Name\\\" \\r\\n\\tsize=\\\"40\\\" \\r\\n\\tmaxlength=\\\"150\\\" \\r\\n\\tdescription=\\\"Enter Intervention Name Here\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\treadonly=\\\"false\\\" \\r\\n\\tdisabled=\\\"false\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\tfilter=\\\"STRING\\\" \\r\\n\\tmessage=\\\"Error! Please add intervention name here.\\\" \\r\\n\\thint=\\\"Name Here\\\" \\r\\n\\/>\"', 1, '2015-08-22 15:38:42', '2015-08-25 21:15:22', 1, '', 4, 'f3013ced-f17a-4ea3-8e62-6f9ad2fa151d', '', '', '', '', ''),
(696, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Add PHP (batchCopy Method)', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"add_php_batchCopy\\\" \\r\\n\\tlabel=\\\"Add PHP (batchCopy Method)\\\" \\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-08-22 20:59:55', '2015-08-25 21:15:22', 1, '', 187, '0c7535bd-dbfa-4155-bc06-9ef34bf0f29a', '', '', '', '', ''),
(697, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Add PHP (batchMove Method)', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"add_php_batchMove\\\" \\r\\n\\tlabel=\\\"Add PHP (batchMove Method)\\\" \\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-08-22 21:00:32', '2015-08-25 21:15:22', 1, '', 187, '90c08eb4-3097-4f59-a291-5959bbb174ad', '', '', '', '', ''),
(698, '', '', '', '', '', '', '', '', '', '', 'MEDIUMTEXT', '', '', '', 'PHP (batchCopy)', 'NOT NULL', 2, 8, '\"<field\\n\\ttype=\\\"editor\\\"\\n\\tname=\\\"php_batchcopy\\\"\\n\\tlabel=\\\"PHP batchCopy Method<br \\/><small>Submitted values are in $values, id\'s are in $pks<\\/small>\\\"\\n\\tdescription=\\\"Add PHP Here that should run in the batchCopy 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-08-22 21:04:36', '2019-07-08 14:15:51', 3, '', 118, '77067bb3-3cfa-4042-b3ac-8bdda9d8b492', '', '', '', '', ''),
(699, '', '', '', '', '', '', '', '', '', '', 'MEDIUMTEXT', '', '', '', 'PHP (batchMove)', 'NOT NULL', 2, 8, '\"<field\\n\\ttype=\\\"editor\\\"\\n\\tname=\\\"php_batchmove\\\"\\n\\tlabel=\\\"PHP batchMove Method<br \\/><small>submitted values are in $values, id\'s are in $pks<\\/small>\\\"\\n\\tdescription=\\\"Add PHP Here that should run in the batchMove 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-08-22 21:05:06', '2019-07-08 14:15:58', 3, '', 118, 'c56cf55d-fbc6-4246-b3c3-7810d42710b2', '', '', '', '', ''),
(700, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Add Permissions (to field)', 'NOT NULL', '', 11, '\"<field\\n\\ttype=\\\"list\\\"\\n\\tname=\\\"permission\\\"\\n\\tlabel=\\\"Permissions\\\"\\n\\tdescription=\\\"What permission to use.\\\"\\n\\tmultiple=\\\"true\\\"\\n\\tclass=\\\"fieldMedium\\\"\\n\\toption=\\\"1|Editing,2|Access,3|View\\\"\\n\\/>\"', 1, '2015-08-23 01:27:32', '2018-07-18 02:34:12', 15, '', 199, '5e88d85b-c3e1-4792-82e1-a4bf6a40a75f', '', '', '', '', ''),
(701, '', '', '', '', '', '', '', '', '', '', 'MEDIUMTEXT', '', '', '', 'PHP (before_getItem - JModelItem)', 'NOT NULL', 2, 8, '\"<field\\n\\ttype=\\\"editor\\\"\\n\\tname=\\\"php_before_getitem\\\"\\n\\tlabel=\\\"PHP getItem Method<br \\/><small>Target (int) $pk is the item id<\\/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-08-26 00:45:53', '2019-07-08 14:16:05', 7, '', 119, 'c3bb9074-505a-4085-878b-f7ad3d5522a6', '', '', '', '', ''),
(702, '', '', '', '', '', '', '', '', '', '', 'MEDIUMTEXT', '', '', '', 'PHP (after_getItem - JModelItem)', 'NOT NULL', 2, 8, '\"<field\\n\\ttype=\\\"editor\\\"\\n\\tname=\\\"php_after_getitem\\\"\\n\\tlabel=\\\"PHP getItem Method<br \\/><small>Target (Object) $this->_item[$pk] is the item<\\/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-08-26 00:59:36', '2019-07-08 14:16:11', 8, '', 119, 'fc0dcf64-f6a8-48d7-8ed7-6ecea942cf21', '', '', '', '', ''),
(703, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Add PHP (before getItem Method)', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"add_php_before_getitem\\\" \\r\\n\\tlabel=\\\"Add PHP (before getting the Item)\\\" \\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-08-26 01:02:15', '2015-08-25 21:15:22', 1, '', 188, 'bd40a792-2b63-446a-af75-0510f8c7cc2c', '', '', '', '', ''),
(704, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Add PHP (after getItem Method)', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"add_php_after_getitem\\\" \\r\\n\\tlabel=\\\"Add PHP (after getting the Item)\\\" \\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-08-26 01:02:39', '2015-08-25 21:15:22', 1, '', 188, 'c1754272-da91-4a17-9567-c2566552cdc9', '', '', '', '', ''),
(705, '', '', '', '', '', '', '', '', '', '', 'MEDIUMTEXT', '', '', '', 'PHP (after getItems - JModelList)', 'NOT NULL', 2, 8, '\"<field\\n\\ttype=\\\"editor\\\"\\n\\tname=\\\"php_after_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-08-26 01:04:20', '2019-07-08 14:16:17', 5, '', 118, '1ae39469-cd74-4d82-84af-fec8af28be61', '', '', '', '', ''),
(706, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Result Path', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"resultpath\\\" \\r\\n\\tlabel=\\\"Result Path\\\" \\r\\n\\tsize=\\\"10\\\" \\r\\n\\tmaxlength=\\\"150\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tdescription=\\\"Please set the path where the result json files should be stored, make sure it is outside the public folder.\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\tfilter=\\\"PATH\\\" \\r\\n\\tmessage=\\\"Error! Please add the path where the result json should be sotred here.\\\" \\r\\n\\thint=\\\"\\/home\\/username\\/temp\\\" \\r\\n\\/>\"', 1, '2015-08-28 14:09:24', '2015-09-26 09:23:57', 2, '', 592, '2da30e05-18dc-40f2-b7b4-0bc4655b9cbd', '', '', '', '', ''),
(707, '', '', '', '', '', '', '', '', 11, '', 'CHAR', '', '', '', 'backend Chart Background', 'NOT NULL', '', 5, '\"<field type=\\\"color\\\" name=\\\"backend_chartbackground\\\" default=\\\"#F7F7FA\\\" label=\\\"Chart Background\\\" description=\\\"Select the chart background color here.\\\" \\/>\"', -2, '2015-08-31 17:52:06', '2015-08-31 19:45:24', 2, '', 163, '7820e588-fd00-4f2b-bf19-cc549da6f73a', '', '', '', '', ''),
(708, '', '', '', '', '', '', '', '', 11, '', 'INT', '', '', '', 'backend Main Width', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"backend_mainwidth\\\" \\r\\n\\tlabel=\\\"Chart Area Width\\\" \\r\\n\\tsize=\\\"20\\\" \\r\\n\\tmaxlength=\\\"50\\\" \\r\\n\\tdescription=\\\"Set the width of the entire chart area\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\tfilter=\\\"INT\\\" \\r\\n\\tvalidate=\\\"\\\" \\r\\n\\tfield=\\\"\\\" \\r\\n\\tmessage=\\\"Error! Please add area width here.\\\" \\r\\n\\thint=\\\"1000\\\" \\r\\n\\/>\"', -2, '2015-08-31 18:54:29', '2015-08-31 19:46:17', 2, '', 163, 'f5e47dc6-4529-4fde-96c7-454a445bfe88', '', '', '', '', ''),
(709, '', '', '', '', '', '', '', '', 11, '', 'INT', '', '', '', 'backend Chart Area Top', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"backend_chartAreaTop\\\" \\r\\n\\tlabel=\\\"Top Spacing\\\" \\r\\n\\tsize=\\\"20\\\" \\r\\n\\tmaxlength=\\\"50\\\" \\r\\n\\tdescription=\\\"Set in pixels the spacing from the top of the chart area to the beginning of the chart it self. Please don\'t add the px sign\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\tfilter=\\\"INT\\\" \\r\\n\\tvalidate=\\\"\\\" \\r\\n\\tfield=\\\"\\\" \\r\\n\\tmessage=\\\"Error! Please add top spacing here.\\\" \\r\\n\\thint=\\\"20\\\" \\r\\n\\/>\"', -2, '2015-08-31 18:55:49', '2015-08-31 19:46:40', 2, '', 163, '0d52122b-28a3-4c85-961c-9e5d0296b590', '', '', '', '', ''),
(710, '', '', '', '', '', '', '', '', 11, '', 'INT', '', '', '', 'backend Left Spacing', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"backend_chartAreaLeft\\\" \\r\\n\\tlabel=\\\"Left Spacing\\\" \\r\\n\\tsize=\\\"20\\\" \\r\\n\\tmaxlength=\\\"50\\\" \\r\\n\\tdescription=\\\"Set in pixels the spacing from the left of the chart area to the beginning of the chart it self. Please don\'t add the px sign\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\tfilter=\\\"INT\\\" \\r\\n\\tvalidate=\\\"\\\" \\r\\n\\tfield=\\\"\\\" \\r\\n\\tmessage=\\\"Error! Please add left spacing here.\\\" \\r\\n\\thint=\\\"170\\\" \\r\\n\\/>\"', -2, '2015-08-31 18:56:54', '2015-08-31 19:47:06', 2, '', 163, '488f8f90-4e3b-4283-9d99-2b3635254633', '', '', '', '', ''),
(711, '', '', '', '', '', '', '', '', 11, '', 'INT', '', '', '', 'backend Chart Width', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"backend_chartAreawidth\\\" \\r\\n\\tlabel=\\\"Chart Width\\\" \\r\\n\\tsize=\\\"20\\\" \\r\\n\\tmaxlength=\\\"50\\\" \\r\\n\\tdescription=\\\"Set in % the width of the chart it self inside the chart area. Please don\'t add the % sign\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\tfilter=\\\"INT\\\" \\r\\n\\tvalidate=\\\"\\\" \\r\\n\\tfield=\\\"\\\" \\r\\n\\tmessage=\\\"Error! Please add chart width here.\\\" \\r\\n\\thint=\\\"60\\\" \\r\\n\\/>\"', -2, '2015-08-31 18:58:12', '2015-08-31 19:47:33', 2, '', 163, '484c105a-e7d9-4b04-8b32-042867fa15e9', '', '', '', '', ''),
(712, '', '', '', '', '', '', '', '', 11, '', 'INT', '', '', '', 'backend Legend Font Size', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"backend_legendTextStyleFontSize\\\" \\r\\n\\tlabel=\\\"Legend Font Size\\\" \\r\\n\\tsize=\\\"20\\\" \\r\\n\\tmaxlength=\\\"50\\\" \\r\\n\\tdescription=\\\"Set in pixels the font size of the legend\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\tfilter=\\\"INT\\\" \\r\\n\\tvalidate=\\\"\\\" \\r\\n\\tfield=\\\"\\\" \\r\\n\\tmessage=\\\"Error! Please add size of the legend here.\\\" \\r\\n\\thint=\\\"10\\\" \\r\\n\\/>\"', -2, '2015-08-31 18:59:11', '2015-08-31 19:47:43', 3, '', 163, 'e060f824-0696-4c24-bcd2-9eca146a7cf9', '', '', '', '', ''),
(713, '', '', '', '', '', '', '', '', 11, '', 'INT', '', '', '', 'backend Legend Font Color', 'NOT NULL', '', 5, '\"<field \\r\\n\\ttype=\\\"color\\\" \\r\\n\\tname=\\\"backend_legendTextStyleFontColor\\\" \\r\\n\\tdefault=\\\"#63B1F2\\\" \\r\\n\\tlabel=\\\"Legend Font Color\\\" \\r\\n\\tdescription=\\\"Select the legend font color.\\\" \\r\\n\\trequired=\\\"\\\" \\r\\n\\/>\"', -2, '2015-08-31 19:00:44', '2015-08-31 19:47:54', 4, '', 163, 'bc12888c-6499-4bdd-8c4a-2ad718f6418a', '', '', '', '', ''),
(714, '', '', '', '', '', '', '', '', 11, '', 'INT', '', '', '', 'backend vAxis Font Color', 'NOT NULL', '', 5, '\"<field \\r\\n\\ttype=\\\"color\\\" \\r\\n\\tname=\\\"backend_vAxisTextStyleFontColor\\\" \\r\\n\\tdefault=\\\"#63B1F2\\\" \\r\\n\\tlabel=\\\"vAxis Font Color\\\" \\r\\n\\tdescription=\\\"Select the vertical axis font color.\\\" \\r\\n\\trequired=\\\"\\\" \\r\\n\\/>\"', -2, '2015-08-31 19:02:25', '2015-08-31 19:48:01', 2, '', 163, 'd53f4ed1-4269-43ce-a49f-6c7595c785d3', '', '', '', '', ''),
(715, '', '', '', '', '', '', '', '', 11, '', 'INT', '', '', '', 'backend hAxis Title Font Color', 'NOT NULL', '', 5, '\"<field \\r\\n\\ttype=\\\"color\\\" \\r\\n\\tname=\\\"backend_hAxisTitleTextStyleFontColor\\\"\\\" \\r\\n\\tdefault=\\\"#63B1F2\\\" \\r\\n\\tlabel=\\\"hAxis Title Font Color\\\" \\r\\n\\tdescription=\\\"Select the horizontal axis title\'s font color.\\\" \\r\\n\\trequired=\\\"\\\" \\r\\n\\/>\"', -2, '2015-08-31 19:03:34', '2015-08-31 19:48:12', 2, '', 163, '7102ce36-15b2-4d0a-9057-33cf2c4acc36', '', '', '', '', ''),
(716, '', '', '', '', '', '', '', '', 11, '', 'INT', '', '', '', 'backend hAxis Font Color', 'NOT NULL', '', 5, '\"<field \\r\\n\\ttype=\\\"color\\\" \\r\\n\\tname=\\\"backend_hAxisTextStyleFontColor\\\"\\\" \\r\\n\\tdefault=\\\"#63B1F2\\\" \\r\\n\\tlabel=\\\"hAxis Font Color\\\" \\r\\n\\tdescription=\\\"Select the horizontal axis font color.\\\" \\r\\n\\trequired=\\\"\\\" \\r\\n\\/>\"', -2, '2015-08-31 19:04:22', '2015-08-31 19:48:20', 2, '', 163, '3299eb33-9588-46b2-a9f8-08fa44231a36', '', '', '', '', ''),
(717, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Redirect', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"redirect\\\" \\r\\n\\tlabel=\\\"Redirect\\\" \\r\\n\\tsize=\\\"50\\\" \\r\\n\\tmaxlength=\\\"150\\\" \\r\\n\\tdescription=\\\"Enter redirect link\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\treadonly=\\\"false\\\" \\r\\n\\tdisabled=\\\"false\\\" \\r\\n\\trequired=\\\"false\\\" \\r\\n\\tfilter=\\\"RAW\\\"\\r\\n\\tmessage=\\\"Error! Please add redirect link.\\\" \\r\\n\\thint=\\\"Redirect Link Here\\\" \\r\\n\\/>\"', 1, '2015-09-01 14:05:43', '2015-08-25 21:15:22', 1, '', 313, '01cfa4db-e5cc-4621-86fe-089c56e6b5b0', '', '', '', '', ''),
(718, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', 2, '', '', 'Method Name', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\"\\r\\n\\tname=\\\"method\\\"\\r\\n\\tlabel=\\\"Target Controller Method\\\"\\r\\n\\tsize=\\\"40\\\"\\r\\n\\tmaxlength=\\\"50\\\" \\r\\n\\tdefault=\\\"\\\"\\r\\n\\tdescription=\\\"Add Controller Method Name Here\\\"\\r\\n\\tclass=\\\"text_area\\\"\\r\\n\\tfilter=\\\"CMD\\\"\\r\\n\\trequired=\\\"false\\\"\\r\\n\\tmessage=\\\"Error! Please add controller method name here.\\\"\\r\\n\\thint=\\\"methodName\\\"\\r\\n\\/>\"', 1, '2015-09-01 14:13:43', '2015-09-01 16:57:22', 3, '', 18, 'b650dcd0-a87e-4199-a0de-4080f17fbf84', '', '', '', '', ''),
(719, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'Taget View Type', 'NOT NULL', '', 11, '\"<field \\r\\n\\ttype=\\\"list\\\" \\r\\n\\tname=\\\"target\\\" \\r\\n\\tlabel=\\\"Target\\\" \\r\\n\\tdescription=\\\"Set the target view type\\\" \\r\\n\\tclass=\\\"list_class fieldMedium\\\" \\r\\n\\tsize=\\\"1\\\" \\r\\n\\tdefault=\\\"1\\\" \\r\\n\\tfilter=\\\"INT\\\" \\r\\n\\trequired=\\\"\\\" \\r\\n\\toption=\\\"1|Single,2|List,3|Both\\\" \\r\\n\\/>\"', 1, '2015-09-01 14:21:28', '2015-09-01 14:44:46', 3, '', 106, '0b958da3-ebb1-4279-ac1e-22c9a2aec345', '', '', '', '', ''),
(720, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Custom Buttons', 'NOT NULL', '', 35, '\"<field\\n\\ttype=\\\"subform\\\"\\n\\tname=\\\"custom_button\\\"\\n\\tlabel=\\\"Custom Buttons\\\"\\n\\tlayout=\\\"joomla.form.field.subform.repeatable-table\\\"\\n\\tmultiple=\\\"true\\\"\\n\\tfields=\\\"690,199,718,719,1767\\\"\\n\\ticon=\\\"list\\\"\\n\\tmax=\\\"20\\\"\\n\\/>\"', 1, '2015-09-01 14:33:22', '2018-12-14 04:54:51', 10, '', 593, 'f962e778-623e-40a8-b7db-88df71fdac51', '', '', '', '', ''),
(721, '', '', '', '', '', '', '', '', 1, '', 'INT', 2, '', '', 'Add Custom Buttons', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"add_custom_button\\\"\\n\\tlabel=\\\"Add Custom Buttons\\\"\\n\\tdescription=\\\"\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"1|Yes,0|No\\\"\\n\\tdefault=\\\"0\\\"\\n\\trequired=\\\"true\\\"\\n\\/>\"', 1, '2015-09-01 14:43:05', '2018-08-22 12:09:29', 2, '', 587, 'ab222d85-e408-44de-a513-d6aeda48b286', '', '', '', '', ''),
(722, '', '', '', '', '', '', '', '', '', '', 'MEDIUMTEXT', '', '', '', 'PHP (controller method)', 'NOT NULL', 2, 8, '\"<field\\n\\ttype=\\\"editor\\\"\\n\\tname=\\\"php_controller\\\"\\n\\tlabel=\\\"PHP (controller methods)\\\"\\n\\tdescription=\\\"Add PHP methods for the controller that the button\\/s will target. 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-09-01 16:44:15', '2019-07-08 14:16:29', 9, '', 118, 'e268c7be-dc34-40d9-bf2c-5f1897a09f7c', '', '', '', '', ''),
(723, '', '', '', '', '', '', '', '', '', '', 'MEDIUMTEXT', '', '', '', 'PHP (model method)', 'NOT NULL', 2, 8, '\"<field\\n\\ttype=\\\"editor\\\"\\n\\tname=\\\"php_model\\\"\\n\\tlabel=\\\"PHP (model methods)\\\"\\n\\tdescription=\\\"Add PHP methods for the model that the controller will use. 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-09-01 16:45:36', '2019-07-08 14:16:35', 6, '', 118, '5e831983-665b-43f2-9786-5e7c9cbb9e96', '', '', '', '', ''),
(724, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'CSS (custom_admin)', 'NOT NULL', 2, 8, '\"<field\\n\\ttype=\\\"editor\\\"\\n\\tname=\\\"css\\\"\\n\\tlabel=\\\"CSS\\\"\\n\\tdescription=\\\"Add CSS to the view.css file that will be included in the header of the view. 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-09-01 16:52:08', '2019-07-08 14:16:41', 3, '', 299, '7d733ad8-a5bf-4e2f-859d-be1251b7d0f1', '', '', '', '', ''),
(725, '', '', '', '', '', '', '', '', '', '', 'CHAR', '', '', '', 'Cost Per Employee', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"cpe\\\" \\r\\n\\tlabel=\\\"Cost Per Employee\\\" \\r\\n\\tsize=\\\"10\\\" \\r\\n\\tmaxlength=\\\"50\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tdescription=\\\"Estimate cost per employee\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\tfilter=\\\"INT\\\" \\r\\n\\/>\"', 1, '2015-09-03 01:44:20', '0000-00-00 00:00:00', 1, '', 594, 'ad1fe488-9409-4e2a-ba10-1d9acc90e019', '', '', '', '', ''),
(726, '', '', '', '', '', '', '', '', '', '', 'CHAR', '', '', '', 'Morbidity Reduction', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"mbr\\\" \\r\\n\\tlabel=\\\"Morbidity Reduction\\\" \\r\\n\\tsize=\\\"10\\\" \\r\\n\\tmaxlength=\\\"50\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tdescription=\\\"Percentage estimate\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\tfilter=\\\"INT\\\" \\r\\n\\/>\"', 1, '2015-09-03 01:45:20', '2015-09-03 01:45:33', 2, '', 594, '3d27285f-2d62-41fa-b2d4-74e84d16f2f7', '', '', '', '', ''),
(727, '', '', '', '', '', '', '', '', '', '', 'CHAR', '', '', '', 'Mortality Reduction', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"mtr\\\" \\r\\n\\tlabel=\\\"Mortality Reduction\\\" \\r\\n\\tsize=\\\"10\\\" \\r\\n\\tmaxlength=\\\"50\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tdescription=\\\"Percentage estimate\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\tfilter=\\\"INT\\\" \\r\\n\\/>\"', 1, '2015-09-03 01:46:13', '2015-09-03 01:45:33', 1, '', 594, '5fe30de9-82f1-483e-9020-b010c4e853d4', '', '', '', '', ''),
(728, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Intervention', 'NOT NULL', '', 19, '\"<field \\r\\n\\ttype=\\\"repeatable\\\" \\r\\n\\tname=\\\"intervention\\\" \\r\\n\\tlabel=\\\"Set Intervention\\\" \\r\\n\\tdescription=\\\"Here you can add & edit interventions.\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tid=\\\"intervention\\\" \\r\\n\\tclass=\\\"interventions\\\" \\r\\n\\tselect=\\\"Edit\\/Add\\\" \\r\\n\\ticon=\\\"list\\\" \\r\\n\\tmaximum=\\\"100\\\" \\r\\n\\tfields=\\\"729,725,726,727\\\" \\r\\n\\/>\"', 1, '2015-09-03 01:53:49', '2015-09-04 01:26:50', 4, '', 533, 'eaddd58a-bc37-40e8-becf-22fe6e88b4ab', '', '', '', '', ''),
(729, 1, '', '', '', 'LmNhdXNld2lkdGggew0KCXdpZHRoOiAxMDAlOw0KfQ==', '', '', '', 11, '', 'INT', 2, '', '', 'Causes/Risks (dynamic intervention)', 'NOT NULL', '', 6, '\"<field \\r\\n\\ttype=\\\"causesrisks\\\" \\r\\n\\tname=\\\"causerisk\\\" \\r\\n\\tlabel=\\\"Cause\\/Risk\\\" \\r\\n\\tdescription=\\\"\\\" \\r\\n\\tclass=\\\"list_class causewidth\\\" \\r\\n\\tmultiple=\\\"false\\\" \\r\\n\\tdefault=\\\"0\\\" \\r\\n\\trequired=\\\"\\\" \\r\\n\\treadonly=\\\"\\\" \\r\\n\\tdisabled=\\\"\\\" \\r\\n\\textends=\\\"list\\\" \\r\\n\\ttable=\\\"#__###component###_causerisk\\\" \\r\\n\\tcomponent=\\\"com_###component###\\\" \\r\\n\\tview=\\\"causerisk\\\" \\r\\n\\tviews=\\\"causesrisks\\\" \\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.ref\'),array(\'###ID###\',\'###CODE_TEXT###\',\'ref\')));\\\" \\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.ref 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_13=\\\"\\\\tforeach($items as $item)\\\" \\r\\n\\ttype_php_14=\\\"\\\\t{\\\\n\\\\t\\\\t\\\\t\\\\t$ref = explode(\'.\',$item->ref);\\\\n\\\\t\\\\t\\\\t\\\\t$key = explode(\'.0\',$item->ref);\\\\n\\\\t\\\\t\\\\t\\\\t$key = implode(\'.\',$key);\\\\n\\\\t\\\\t\\\\t\\\\t$spacer = array();\\\" \\r\\n\\ttype_php_15=\\\"\\\\t\\\\tforeach ($ref as $nr => $space)\\\\n\\\\t\\\\t\\\\t\\\\t{\\\\n\\\\t\\\\t\\\\t\\\\t\\\\tif ($nr > 1)\\\\n\\\\t\\\\t\\\\t\\\\t\\\\t{\\\\n\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t$spacer[] = \'|&mdash;\';\\\\n\\\\t\\\\t\\\\t\\\\t\\\\t}\\\\n\\\\t\\\\t\\\\t\\\\t}\\\\n\\\\t\\\\t\\\\t\\\\tif (###Component###Helper::checkArray($spacer))\\\\n\\\\t\\\\t\\\\t\\\\t{\\\\n\\\\t\\\\t\\\\t\\\\t\\\\t$options[] = JHtml::_(\'select.option\', $item->###ID###, implode(\'\',$spacer).\' \'.$item->###CODE_TEXT###.\'&nbsp;(\'.$key.\')\');\\\\n\\\\t\\\\t\\\\t\\\\t}\\\\n\\\\t\\\\t\\\\t\\\\telse\\\\n\\\\t\\\\t\\\\t\\\\t{\\\\n\\\\t\\\\t\\\\t\\\\t\\\\t$options[] = JHtml::_(\'select.option\', $item->###ID###, $item->###CODE_TEXT###.\'&nbsp;(\'.$key.\')\');\\\\n\\\\t\\\\t\\\\t\\\\t}\\\" \\r\\n\\ttype_php_16=\\\"\\\\t}\\\" \\r\\n\\ttype_php_17=\\\"}\\\" \\r\\n\\ttype_php_19=\\\"return $options;\\\" \\r\\n\\/>\"', 1, '2015-09-03 02:08:12', '2015-09-27 05:46:48', 4, '', 571, 'f9e44acc-d549-4a87-8951-ed34dd9233f4', '', '', '', '', ''),
(730, '', '', '', '', '', '', '', '', 64, '', 'VARCHAR', '', '', '', 'Interventions (dynamic)', 'NOT NULL', 1, 6, '\"<field \\r\\n\\ttype=\\\"interventions\\\" \\r\\n\\tname=\\\"interventions\\\" \\r\\n\\tlabel=\\\"Interventions\\\" \\r\\n\\tdescription=\\\"\\\" \\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\tmultiple=\\\"true\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\treadonly=\\\"\\\" \\r\\n\\tdisabled=\\\"\\\"\\r\\n\\tbutton=\\\"false\\\" \\r\\n\\textends=\\\"list\\\" \\r\\n\\ttable=\\\"#__###component###_intervention\\\" \\r\\n\\tcomponent=\\\"com_###component###\\\" \\r\\n\\tview=\\\"intervention\\\" \\r\\n\\tviews=\\\"interventions\\\" \\r\\n\\tvalue_field=\\\"name\\\" \\r\\n\\tkey_field=\\\"id\\\" \\r\\n\\ttype_php_1=\\\"\\/\\/ get the input from url\\\\n\\\\t\\\\t$jinput = JFactory::getApplication()->input;\\\\n\\\\t\\\\t\\/\\/ get the view name & id\\\\n\\\\t\\\\t$interId = $jinput->getInt(\'id\', 0);\\\\n\\\\t\\\\t\\/\\/ Get the user object.\\\\n\\\\t\\\\t$user = JFactory::getUser();\\\\n\\\\t\\\\t$userIs = CostbenefitprojectionHelper::userIs($user->id);\\\\n\\\\t\\\\t$db = JFactory::getDBO();\\\\n\\\\t\\\\t$query = $db->getQuery(true);\\\\n\\\\t\\\\t$query->select($db->quoteName(array(\'a.id\',\'a.name\',\'a.company\',\'a.share\'),array(\'id\',\'interventions_name\',\'company\',\'share\')));\\\\n\\\\t\\\\t$query->from($db->quoteName(\'#__costbenefitprojection_intervention\', \'a\'));\\\\n\\\\t\\\\t$query->where($db->quoteName(\'a.published\') . \' = 1\');\\\\n\\\\t\\\\t$query->where($db->quoteName(\'a.id\') . \' != \' . $interId);\\\\n\\\\t\\\\tif (!$user->authorise(\'core.admin\'))\\\\n\\\\t\\\\t{\\\\n\\\\t\\\\t\\\\t$companies = CostbenefitprojectionHelper::hisCompanies($user->id);\\\\n\\\\t\\\\t\\\\tif (CostbenefitprojectionHelper::checkArray($companies))\\\\n\\\\t\\\\t\\\\t{\\\\n\\\\t\\\\t\\\\t\\\\t$companies = implode(\',\',$companies);\\\\n\\\\t\\\\t\\\\t\\\\t\\/\\/ only load this users companies\\\\n\\\\t\\\\t\\\\t\\\\t$query->where(\'a.company IN (\' . $companies . \')\');\\\\n\\\\t\\\\t\\\\t}\\\\n\\\\t\\\\t\\\\telse\\\\n\\\\t\\\\t\\\\t{\\\\n\\\\t\\\\t\\\\t\\\\t\\/\\/ dont allow user to see any companies\\\\n\\\\t\\\\t\\\\t\\\\t$query->where(\'a.company = -4\');\\\\n\\\\t\\\\t\\\\t}\\\\n\\\\t\\\\t}\\\\n\\\\t\\\\t$query->order(\'a.name ASC\');\\\\n\\\\t\\\\t$db->setQuery((string)$query);\\\\n\\\\t\\\\t$items = $db->loadObjectList();\\\\n\\\\t\\\\t$options = array();\\\\n\\\\t\\\\tif ($items)\\\\n\\\\t\\\\t{\\\\n\\\\t\\\\t\\\\tforeach($items as $item)\\\\n\\\\t\\\\t\\\\t{\\\\n\\\\t\\\\t\\\\t\\\\tif (!CostbenefitprojectionHelper::checkIntervetionAccess($item->id,$item->share,$item->company))\\\\n\\\\t\\\\t\\\\t\\\\t{\\\\n\\\\t\\\\t\\\\t\\\\t\\\\tcontinue;\\\\n\\\\t\\\\t\\\\t\\\\t}\\\\n\\\\t\\\\t\\\\t\\\\tif (1 == $userIs)\\\\n\\\\t\\\\t\\\\t\\\\t{\\\\n\\\\t\\\\t\\\\t\\\\t\\\\t$options[] = JHtml::_(\'select.option\', $item->id, $item->interventions_name);\\\\n\\\\t\\\\t\\\\t\\\\t}\\\\n\\\\t\\\\t\\\\t\\\\telse\\\\n\\\\t\\\\t\\\\t\\\\t{\\\\n\\\\t\\\\t\\\\t\\\\t\\\\t$compName = CostbenefitprojectionHelper::getId(\'company\', $item->company, \'id\', \'name\');\\\\n\\\\t\\\\t\\\\t\\\\t\\\\t$options[] = JHtml::_(\'select.option\', $item->id, $item->interventions_name . \' (\'.$compName.\')\');\\\\n\\\\t\\\\t\\\\t\\\\t}\\\\n\\\\t\\\\t\\\\t}\\\\n\\\\t\\\\t}\\\\n\\\\t\\\\treturn $options;\\\" \\r\\n\\/>\"', 1, '2015-09-04 00:58:00', '2015-09-06 00:34:08', 6, '', 571, '531e60fc-38ff-45f6-ac81-566c5c3e6908', '', '', '', '', ''),
(731, '', '', '', '', '', '', '', '', '', '', 'CHAR', '', '', '', 'Redirect (module)', 'NOT NULL', '', 19, '\"<field \\r\\n\\ttype=\\\"repeatable\\\" \\r\\n\\tname=\\\"redirect\\\" \\r\\n\\tlabel=\\\"Redirects\\\" \\r\\n\\tdescription=\\\"Setup the redirects per group\\/s\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tid=\\\"redirect\\\" \\r\\n\\tclass=\\\"redirects\\\" \\r\\n\\tselect=\\\"add\\\" \\r\\n\\ticon=\\\"list\\\" \\r\\n\\tmaximum=\\\"10\\\" \\r\\n\\tfields=\\\"599,324\\\" \\r\\n\\/>\"', 1, '2015-09-06 17:56:01', '0000-00-00 00:00:00', 1, '', 595, '2d6b0a23-cc85-4fdd-b13c-d2fae7adca81', '', '', '', '', ''),
(732, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'Dynamic Form getBuilder', 'NOT NULL', '', 6, '\"<field \\r\\n\\ttype=\\\"maingets\\\" \\r\\n\\tname=\\\"getbuilder\\\"\\r\\n\\tlabel=\\\"Dynamic Form getBuilder\\\" \\r\\n\\tdescription=\\\"Select a Dynamic get to use in building your form fields.\\\" \\r\\n\\tmultiple=\\\"false\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\treadonly=\\\"\\\" \\r\\n\\tdisabled=\\\"\\\" \\r\\n\\textends=\\\"list\\\" \\r\\n\\tbutton=\\\"true\\\"\\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\\\\t\\\\t$query->where(\'( \'.$db->quoteName(\'a.gettype\') . \' = 1 OR \' . $db->quoteName(\'a.gettype\') . \' = 2 )\');\\\\n\\\\t\\\\t$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_18=\\\"return $options;\\\"\\r\\n\\/>\"', 1, '2015-09-09 04:42:07', '2015-09-10 21:02:51', 5, '', 164, '030c47a8-9450-48b1-b6f2-86b49a9216ee', '', '', '', '', ''),
(733, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Dynamic Storage', 'NOT NULL', 1, 6, '\"<field \\r\\n\\ttype=\\\"adminsviews\\\" \\r\\n\\tname=\\\"storage\\\" \\r\\n\\tlabel=\\\"Dynamic Storage\\\" \\r\\n\\tdescription=\\\"Add a dynamic storage view\\/s\\\" \\r\\n\\tclass=\\\"span12\\\" \\r\\n\\tmultiple=\\\"true\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\treadonly=\\\"\\\" \\r\\n\\tdisabled=\\\"\\\" \\r\\n\\textends=\\\"list\\\"\\r\\n\\ttable=\\\"#__###component###_admin_view\\\" \\r\\n\\tcomponent=\\\"com_###component###\\\" \\r\\n\\tview=\\\"admin_view\\\" \\r\\n\\tviews=\\\"admin_views\\\" \\r\\n\\tvalue_field=\\\"name_single\\\" \\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_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-09-10 07:49:25', '2017-10-26 01:52:49', 4, '', 164, '367e4903-6d36-4d9a-bce3-eda55c4f79b6', '', '', '', '', ''),
(734, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Dynamic Storage Map', 'NOT NULL', 2, 25, '\"<field \\r\\n\\ttype=\\\"textarea\\\" \\r\\n\\tname=\\\"storage_map\\\" \\r\\n\\tlabel=\\\"Dynamic Storage Map\\\" \\r\\n\\trows=\\\"17\\\" \\r\\n\\tcols=\\\"5\\\" \\r\\n\\tdescription=\\\"Map the value storage\\\" \\r\\n\\tclass=\\\"text_area span12\\\" \\r\\n\\tfilter=\\\"raw\\\" \\r\\n\\thint=\\\"\\/\\/ One field per line.\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\/>\"', 1, '2015-09-10 07:50:29', '2015-09-10 07:51:36', 2, '', 375, '251fe0f5-f1fd-40cd-a566-979abf7cd7f4', '', '', '', '', ''),
(735, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Dynamic Field Builder Map', 'NOT NULL', 2, 25, '\"<field \\r\\n\\ttype=\\\"textarea\\\" \\r\\n\\tname=\\\"fields_map\\\" \\r\\n\\tlabel=\\\"Dynamic Fields Builder Map\\\" \\r\\n\\trows=\\\"17\\\" \\r\\n\\tcols=\\\"5\\\" \\r\\n\\tdescription=\\\"Map the field builder.\\\" \\r\\n\\tclass=\\\"text_area span12\\\" \\r\\n\\tfilter=\\\"raw\\\" \\r\\n\\thint=\\\"\\/\\/ One field per line.\\\" \\r\\n\\trequired=\\\"\\\" \\r\\n\\/>\"', 1, '2015-09-10 10:09:15', '2015-09-10 20:53:16', 2, '', 375, '412c7069-3545-44ed-b76f-afbd069464af', '', '', '', '', ''),
(736, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Add User Registration/Login', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"add_user_registration_login\\\" \\r\\n\\tlabel=\\\"Add User Registration\\/Login\\\" \\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-09-10 12:12:07', '2015-08-25 21:15:22', 1, '', 188, '21909d42-3413-4017-9c4f-2496a565fd51', '', '', '', '', ''),
(737, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'Student (user)', 'NOT NULL', '', 7, '\"<field\\n\\ttype=\\\"studentuser\\\"\\n\\tname=\\\"user\\\"\\n\\tlabel=\\\"Student\\\"\\n\\trequired=\\\"true\\\"\\n\\thint=\\\"select a student\\\"\\n\\textends=\\\"user\\\"\\n\\ttable=\\\"#__users\\\"\\n\\tcomponent=\\\"com_users\\\"\\n\\tview=\\\"###view###\\\"\\n\\tviews=\\\"###views###\\\"\\n\\tvalue_field=\\\"name\\\"\\n\\tkey_field=\\\"id\\\"\\n\\ttype_php_1=\\\"__.o0=base64=Oo.__Ly8gc2V0IHRoZSBncm91cHMgYXJyYXkNCiRncm91cHMgPSBKQ29tcG9uZW50SGVscGVyOjpnZXRQYXJhbXMoJ2NvbV8jIyNjb21wb25lbnQjIyMnKS0+Z2V0KCcjIyN0eXBlIyMjJyk7DQpyZXR1cm4gJGdyb3Vwczs=\\\"\\n\\ttype_phpx_1=\\\"__.o0=base64=Oo.__Ly8gVG8gZW5zdXJlIHRoYXQgdGhlcmUgaXMgb25seSBvbmUgcmVjb3JkIHBlciB1c2VyDQovLyBHZXQgYSBkYiBjb25uZWN0aW9uLg0KJGRiID0gSkZhY3Rvcnk6OmdldERibygpOw0KLy8gQ3JlYXRlIGEgbmV3IHF1ZXJ5IG9iamVjdC4NCiRxdWVyeSA9ICRkYi0+Z2V0UXVlcnkodHJ1ZSk7DQovLyBTZWxlY3QgYWxsIHJlY29yZHMgZnJvbSB0aGUgI19fIyMjY29tcG9uZW50IyMjXyMjI3ZpZXcjIyMgdGFibGUgZnJvbSAjIyNDT0RFIyMjIGNvbHVtbg0KJHF1ZXJ5LT5zZWxlY3QoJGRiLT5xdW90ZU5hbWUoJyMjI0NPREUjIyMnKSk7DQokcXVlcnktPmZyb20oJGRiLT5xdW90ZU5hbWUoJyNfXyMjI2NvbXBvbmVudCMjI18jIyN2aWV3IyMjJykpOw0KJGRiLT5zZXRRdWVyeSgkcXVlcnkpOw0KJGRiLT5leGVjdXRlKCk7DQokZm91bmQgPSAkZGItPmdldE51bVJvd3MoKTsNCmlmICgkZm91bmQpDQp7DQpcdC8vIHJldHVybiBhbGwgdXNlcnMgYWxyZWFkeSB1c2VkDQpcdHJldHVybiBhcnJheV91bmlxdWUoJGRiLT5sb2FkQ29sdW1uKCkpOw0KfQ0KcmV0dXJuIG51bGw7\\\"\\n\\/>\"', 1, '2015-09-11 03:24:08', '2018-10-09 20:10:03', 3, '', 596, '27112a83-3b06-4b20-a9dc-65f36409fe9c', '', '', '', '', ''),
(738, '', '', '', '', '', '', '', '', 11, '', 'INT', '', '', '', 'Faculty Member (user)', 'NOT NULL', '', 7, '\"<field \\r\\n\\ttype=\\\"facultymemberuser\\\" \\r\\n\\tname=\\\"user\\\" \\r\\n\\tlabel=\\\"Faculty Member\\\" \\r\\n\\tdescription=\\\"\\\" \\r\\n\\trequired=\\\"true\\\"\\r\\n\\textends=\\\"user\\\" \\r\\n\\ttable=\\\"#__users\\\" \\r\\n\\tcomponent=\\\"com_users\\\" \\r\\n\\tview=\\\"###view###\\\" \\r\\n\\tviews=\\\"###views###\\\" \\r\\n\\tvalue_field=\\\"name\\\" \\r\\n\\tkey_field=\\\"id\\\" \\r\\n\\ttype_php_1=\\\"\\/\\/ set the groups array\\\" \\r\\n\\ttype_php_2=\\\"$groups = JComponentHelper::getParams(\'com_###component###\')->get(\'###type###\');\\\" \\r\\n\\ttype_php_3=\\\"return $groups;\\\"\\r\\n\\ttype_phpx_1=\\\"\\/\\/ To ensure that there is only one record per user\\\" \\r\\n\\ttype_phpx_2=\\\"\\/\\/ Get a db connection.\\\" \\r\\n\\ttype_phpx_3=\\\"$db = JFactory::getDbo();\\\" \\r\\n\\ttype_phpx_4=\\\"\\/\\/ Create a new query object.\\\" \\r\\n\\ttype_phpx_5=\\\"$query = $db->getQuery(true);\\\" \\r\\n\\ttype_phpx_6=\\\"\\/\\/ Select all records from the #__###component###_###view### table from ###CODE### column\\\".\\\" \\r\\n\\ttype_phpx_7=\\\"$query->select($db->quoteName(\'###CODE###\'));\\\" \\r\\n\\ttype_phpx_8=\\\"$query->from($db->quoteName(\'#__###component###_###view###\'));\\\" \\r\\n\\ttype_phpx_9=\\\"$db->setQuery($query);\\\" \\r\\n\\ttype_phpx_10=\\\"$db->execute();\\\" \\r\\n\\ttype_phpx_11=\\\"$found = $db->getNumRows();\\\" \\r\\n\\ttype_phpx_12=\\\"if ($found)\\\" \\r\\n\\ttype_phpx_13=\\\"{\\\" \\r\\n\\ttype_phpx_14=\\\"\\\\t\\/\\/ return all users already used\\\" \\r\\n\\ttype_phpx_15=\\\"\\\\treturn array_unique($db->loadColumn());\\\" \\r\\n\\ttype_phpx_16=\\\"}\\\" \\r\\n\\ttype_phpx_17=\\\"return null;\\\" \\r\\n\\/>\"', 1, '2015-09-11 03:30:04', '2015-09-11 03:35:04', 2, '', 236, 'a5f66d65-34f9-4347-a0b4-d298b2519c11', '', '', '', '', ''),
(739, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Faculty Member (dynamic)', 'NOT NULL', 1, 6, '\"<field \\r\\n\\ttype=\\\"facultymember\\\" \\r\\n\\tname=\\\"faculty_member\\\" \\r\\n\\tlabel=\\\"Faculty Member\\\" \\r\\n\\tdescription=\\\"Select a faculty member\\\" \\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\tmultiple=\\\"false\\\" \\r\\n\\tdefault=\\\"0\\\" \\r\\n\\trequired=\\\"\\\" \\r\\n\\treadonly=\\\"\\\" \\r\\n\\tdisabled=\\\"\\\" \\r\\n\\textends=\\\"list\\\" \\r\\n\\tbutton=\\\"true\\\" \\r\\n\\ttable=\\\"#__###component###_faculty_member\\\" \\r\\n\\tcomponent=\\\"com_###component###\\\" \\r\\n\\tview=\\\"faculty_member\\\" \\r\\n\\tviews=\\\"faculty_members\\\" \\r\\n\\tvalue_field=\\\"user\\\" \\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_13=\\\"\\\\tforeach($items as $item)\\\" \\r\\n\\ttype_php_14=\\\"\\\\t{\\\" \\r\\n\\ttype_php_15=\\\"\\\\t\\\\t$options[] = JHtml::_(\'select.option\', $item->###ID###, JFactory::getUser($item->###CODE_TEXT###)->name);\\\" \\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-09-11 03:53:03', '2015-09-11 03:52:23', 1, '', 236, '6385dff3-8015-4b1d-ab9d-ab26c20f9191', '', '', '', '', ''),
(740, '', '', 1, '', '', '', '', '', '', '', 'TEXT', '', 'PD9waHANCi8vIG1ha2Ugc3VyZSB0aGVzZSBmcmFtd29ya3MgYWxzbyBsb2FkLg0KSkh0bWw6Ol8oJ2pxdWVyeS5mcmFtZXdvcmsnKTsNCkpIdG1sOjpfKCdqcXVlcnkudWknKTsNCiRkb2MgPSBKRmFjdG9yeTo6Z2V0RG9jdW1lbnQoKTsNCi8vIGxvYWRlZCBmcm9tIHRoZSBjb2RlLmpxdWVyeS5jb20gc2l0ZQ0KJGRvYy0+YWRkU3R5bGVzaGVldCgnaHR0cHM6Ly9jb2RlLmpxdWVyeS5jb20vdWkvMS4xMC4zL3RoZW1lcy9zbW9vdGhuZXNzL2pxdWVyeS11aS5jc3MnKTsNCiRkb2MtPmFkZFNjcmlwdCgnaHR0cHM6Ly9jb2RlLmpxdWVyeS5jb20vdWkvMS4xMC4zL2pxdWVyeS11aS5taW4uanMnKTsNCj8+DQo8P3BocCAkZmllbGROcnMgPSByYW5nZSgxLDUwLDEpOyA/Pg0KalF1ZXJ5KCdpbnB1dC5mb3JtLWZpZWxkLXJlcGVhdGFibGUnKS5vbigncm93LWFkZCcsIGZ1bmN0aW9uIChlKSB7DQo8P3BocCBmb3JlYWNoKCRmaWVsZE5ycyBhcyAkbnIpOiA/Pg0KCWpRdWVyeSgnI2pmb3JtX2NvdXJzZV9kYXRlX2ZpZWxkc19kYXRlLTw/cGhwIGVjaG8gJG5yID8+JykuZGF0ZXBpY2tlcigNCgkJew0KCQkJbWluRGF0ZTogLTEsDQoJCQlwcmV2VGV4dDogJycsDQoJCQluZXh0VGV4dDogJycsDQoJCQltYXhEYXRlOiAnKzI0TScsDQoJCQlmaXJzdERheTogMSwNCgkJCWRhdGVGb3JtYXQ6ICd5eS1tbS1kZCcsDQoJCQlvblNlbGVjdDogZnVuY3Rpb24oZGF0ZVRleHQsIGluc3QpIHsNCgkJCWpRdWVyeSgnI2pmb3JtX2NvdXJzZV9kYXRlX2ZpZWxkc19kYXRlLTw/cGhwIGVjaG8gJG5yID8+JykudmFsKGRhdGVUZXh0KTsNCgkJfQ0KCX0pOw0KPD9waHAgZW5kZm9yZWFjaDsgPz4NCn0pOw==', '', 'Course Dates (events)', 'NOT NULL', '', 19, '\"<field \\r\\n\\ttype=\\\"repeatable\\\" \\r\\n\\tname=\\\"course_date\\\" \\r\\n\\tlabel=\\\"Course Dates\\\" \\r\\n\\tdescription=\\\"Setup the course dates for this event.\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tid=\\\"course_date\\\" \\r\\n\\tclass=\\\"course_dates\\\" \\r\\n\\tselect=\\\"Add\\\" \\r\\n\\ticon=\\\"list\\\" \\r\\n\\tmaximum=\\\"50\\\" \\r\\n\\tfields=\\\"54,82,741\\\" \\r\\n\\/>\"', 1, '2015-09-11 04:05:54', '2016-12-13 15:08:58', 10, '', 597, 'b5968569-2f98-4157-bec8-424f7cce60fe', '', '', '', '', ''),
(741, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Date (custom)', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"date\\\" \\r\\n\\tlabel=\\\"Enter Date\\\" \\r\\n\\tsize=\\\"20\\\" \\r\\n\\tmaxlength=\\\"50\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tdescription=\\\"\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\treadonly=\\\"false\\\" \\r\\n\\tdisabled=\\\"false\\\" \\r\\n\\trequired=\\\"false\\\" \\r\\n\\tfilter=\\\"STRING\\\" \\r\\n\\tvalidate=\\\"\\\" \\r\\n\\tfield=\\\"\\\" \\r\\n\\tmessage=\\\"Error! Please add date here.\\\" \\r\\n\\thint=\\\"yyyy-mm-dd\\\" \\r\\n\\/>\"', 1, '2015-09-11 15:22:16', '2015-09-11 16:44:59', 3, '', 167, 'ac3bc4e0-f655-472c-8f3a-5628b4ca24ed', '', '', '', '', ''),
(742, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Question (text)', 'NOT NULL', '', 25, '\"<field \\r\\n\\ttype=\\\"textarea\\\" \\r\\n\\tname=\\\"question\\\" \\r\\n\\tlabel=\\\"Question\\\" \\r\\n\\trows=\\\"10\\\" \\r\\n\\tcols=\\\"5\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tdescription=\\\"\\\" \\r\\n\\tclass=\\\"text_area span12\\\" \\r\\n\\tfilter=\\\"STRING\\\" \\r\\n\\thint=\\\"\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\/>\"', 1, '2015-09-11 19:39:34', '2015-09-11 19:49:13', 3, '', 129, '39e8cffe-a1e1-47cc-a97e-6a2c542b7901', '', '', '', '', ''),
(743, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Answer', 'NOT NULL', '', 25, '\"<field \\r\\n\\ttype=\\\"textarea\\\" \\r\\n\\tname=\\\"answer\\\" \\r\\n\\tlabel=\\\"Answer\\\" \\r\\n\\trows=\\\"10\\\" \\r\\n\\tcols=\\\"5\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tdescription=\\\"\\\" \\r\\n\\tclass=\\\"text_area span12\\\" \\r\\n\\tfilter=\\\"STRING\\\" \\r\\n\\thint=\\\"\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\/>\"', 1, '2015-09-11 19:41:46', '2015-10-20 16:46:50', 4, '', 129, '328ad554-25f5-4f62-a491-bd0b25652ad5', '', '', '', '', ''),
(744, '', '', '', '', '', '', '', '', 7, '', 'INT', 2, '', '', 'Point (total)', 'NOT NULL', '', 10, '\"<field \\r\\n\\ttype=\\\"integer\\\" \\r\\n\\tname=\\\"point\\\" \\r\\n\\tlabel=\\\"Total Point\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tdescription=\\\"The total point for this assessment.\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\tfirst=\\\"0\\\" \\r\\n\\tlast=\\\"400\\\" \\r\\n\\tstep=\\\"1\\\" \\r\\n\\tfilter=\\\"INT\\\" \\r\\n\\/>\"', 1, '2015-09-11 19:49:53', '2015-10-17 21:58:25', 6, '', 129, '16e31209-6fd9-44b6-8c16-6ad9ceeeff37', '', '', '', '', ''),
(745, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'Assessments (show archived also)', 'NOT NULL', '', 6, '\"<field \\r\\n\\ttype=\\\"assessments\\\" \\r\\n\\tname=\\\"assessment\\\" \\r\\n\\tlabel=\\\"Assessment\\\" \\r\\n\\tdescription=\\\"\\\" \\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\tmultiple=\\\"false\\\" \\r\\n\\tdefault=\\\"0\\\" \\r\\n\\trequired=\\\"\\\" \\r\\n\\treadonly=\\\"\\\" \\r\\n\\tdisabled=\\\"\\\" \\r\\n\\textends=\\\"list\\\" \\r\\n\\tbutton=\\\"true\\\" \\r\\n\\ttable=\\\"#__###component###_assessment\\\" \\r\\n\\tcomponent=\\\"com_###component###\\\" \\r\\n\\tview=\\\"assessment\\\" \\r\\n\\tviews=\\\"assessments\\\" \\r\\n\\tvalue_field=\\\"date\\\" \\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_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->###ID### . \') \' . ###Component###Helper::fancyDateTime($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-09-11 20:02:50', '2017-01-25 10:36:49', 7, '', 209, '084fbe18-f0d2-4291-b966-2cba7ae3e4a7', '', '', '', '', ''),
(746, '', '', '', '', '', '', '', '', '', '', 'CHAR', '', '', '', 'Selection Answer Type', 'NOT NULL', '', 11, '\"<field \\r\\n\\ttype=\\\"list\\\" \\r\\n\\tname=\\\"type\\\" \\r\\n\\tlabel=\\\"Type\\\" \\r\\n\\tdescription=\\\"\\\" \\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\tmultiple=\\\"false\\\" \\r\\n\\tfilter=\\\"INT\\\" \\r\\n\\trequired=\\\"\\\" \\r\\n\\toption=\\\"0|Wrong Answer,1|Correct Answer\\\" \\r\\n\\tdefault=\\\"0\\\" \\r\\n\\/>\"', 1, '2015-09-11 20:18:41', '2015-09-11 20:25:48', 3, '', 598, '55b3f555-7496-4f83-91f8-fcde8c19dad8', '', '', '', '', ''),
(747, '', '', 1, '', '', '', '', '', '', '', 'TEXT', '', 'alF1ZXJ5KCdpbnB1dC5mb3JtLWZpZWxkLXJlcGVhdGFibGUnKS5vbigndmFsdWUtdXBkYXRlJywgZnVuY3Rpb24oZSwgdmFsdWUpew0KCWlmICh2YWx1ZSkNCgl7DQoJCWJ1aWxkVGFibGUodmFsdWUsZS5jdXJyZW50VGFyZ2V0LmlkKTsNCgl9DQp9KTsNCg0KalF1ZXJ5KGRvY3VtZW50KS5yZWFkeShmdW5jdGlvbigpIHsgICAgDQoJdmFyIHZhbHVlc19hID0galF1ZXJ5KCcjamZvcm1fc2VsZWN0aW9uJykudmFsKCk7DQoJaWYgKHZhbHVlc19hKQ0KCXsNCgkJdmFsdWVzX2EgPSBqUXVlcnkucGFyc2VKU09OKHZhbHVlc19hKTsNCgkJYnVpbGRUYWJsZSh2YWx1ZXNfYSwnamZvcm1fc2VsZWN0aW9uJyk7DQoJfQ0KfSk7DQoNCmZ1bmN0aW9uIGJ1aWxkVGFibGUoYXJyYXksaWQpew0KCWpRdWVyeSgnI3RhYmxlXycraWQpLnJlbW92ZSgpOw0KCWpRdWVyeSgnIycraWQpLmNsb3Nlc3QoJy5jb250cm9sLWdyb3VwJykuYXBwZW5kKCc8dGFibGUgc3R5bGU9Im1hcmdpbjogNXB4IDAgMjBweDsiIGNsYXNzPSJ0YWJsZSIgaWQ9InRhYmxlXycraWQrJyI+Jyk7DQoJalF1ZXJ5KCcjdGFibGVfJytpZCkuYXBwZW5kKHRhYmxlSGVhZGVyKGFycmF5KSk7DQoJalF1ZXJ5KCcjdGFibGVfJytpZCkuYXBwZW5kKHRhYmxlQm9keShhcnJheSkpOyAgDQoJalF1ZXJ5KCcjdGFibGVfJytpZCkuYXBwZW5kKCc8L3RhYmxlPicpOw0KfQ0KDQpmdW5jdGlvbiB0YWJsZUhlYWRlcihhcnJheSl7DQoJdmFyIGhlYWRlciA9ICc8dGhlYWQ+PHRyPic7DQoJCWpRdWVyeS5lYWNoKGFycmF5LCBmdW5jdGlvbihrZXksIHZhbHVlKSB7DQoJCQloZWFkZXIgKz0gJzx0aCBzdHlsZT0icGFkZGluZzogMTBweDsgdGV4dC1hbGlnbjogY2VudGVyOyBib3JkZXI6IDFweCBzb2xpZCByZ2IoMjIxLCAyMjEsIDIyMSk7Ij4nK2NhcGl0YWxpemVGaXJzdExldHRlcihrZXkpKyc8L3RoPic7DQoJCX0pOw0KCQloZWFkZXIgKz0gJzwvdHI+PC90aGVhZD4nOw0KCXJldHVybiBoZWFkZXI7DQp9DQoNCmZ1bmN0aW9uIHRhYmxlQm9keShhcnJheSl7DQoJdmFyIGJvZHkgPSAnPHRib2R5Pic7DQoJdmFyIHJvd3MgPSBuZXcgQXJyYXkoKTsNCglqUXVlcnkuZWFjaChhcnJheSwgZnVuY3Rpb24oa2V5LCB2YWx1ZSkgew0KCQlqUXVlcnkuZWFjaCh2YWx1ZSwgZnVuY3Rpb24oaSwgbGluZSkgew0KCQkJaWYoIHJvd3NbaV0gPT09IHVuZGVmaW5lZCApIHsNCgkJCQlyb3dzW2ldID0gJzx0ZCBzdHlsZT0icGFkZGluZzogMTBweDsgdGV4dC1hbGlnbjogY2VudGVyOyBib3JkZXI6IDFweCBzb2xpZCByZ2IoMjIxLCAyMjEsIDIyMSk7Ij4nICsgbGluZSArICc8L3RkPic7DQoJCQl9DQoJCQllbHNlDQoJCQl7DQoJCQkJcm93c1tpXSA9IHJvd3NbaV0gKyAnPHRkIHN0eWxlPSJwYWRkaW5nOiAxMHB4OyB0ZXh0LWFsaWduOiBjZW50ZXI7IGJvcmRlcjogMXB4IHNvbGlkIHJnYigyMjEsIDIyMSwgMjIxKTsiPicgKyBsaW5lICsgJzwvdGQ+JzsNCgkJCX0NCgkJfSk7DQoJfSk7DQoJLy8gbm93IGxvYWQgdG8gYm9keSB0aGUgcm93cw0KCWpRdWVyeS5lYWNoKHJvd3MsIGZ1bmN0aW9uKGEsIHJvdykgew0KCQlib2R5ICs9ICc8dHI+JyArIHJvdyArICc8L3RyPic7DQoJfSk7DQoJYm9keSArPSAnPC90Ym9keT4nOw0KCXJldHVybiBib2R5OyAgICAgICAgICAgICAgICAgICAgICAgICAgICANCn0NCg0KZnVuY3Rpb24gY2FwaXRhbGl6ZUZpcnN0TGV0dGVyKHN0cmluZykgew0KICAgIHJldHVybiBzdHJpbmcuY2hhckF0KDApLnRvVXBwZXJDYXNlKCkgKyBzdHJpbmcuc2xpY2UoMSk7DQp9', '', 'Selection&Marking (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=\\\"10\\\" \\r\\n\\tfields=\\\"244,746\\\" \\r\\n\\/>\"', 1, '2015-09-11 20:20:42', '2015-11-29 04:38:19', 4, '', 599, '866b9399-f649-435c-a8ed-c3d3264101a3', '', '', '', '', ''),
(748, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Selection Type', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"selectiontype\\\" \\r\\n\\tlabel=\\\"Selection Type\\\" \\r\\n\\tdescription=\\\"\\\" \\r\\n\\tclass=\\\"btn-group btn-group-yesno\\\" \\r\\n\\toption=\\\"1|One,2|Multiple\\\" \\r\\n\\tdefault=\\\"1\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\/>\"', 1, '2015-09-11 20:25:30', '2015-09-11 21:02:23', 2, '', 598, '4e4c84f4-0d42-41b9-9d2a-961fbb4deeca', '', '', '', '', ''),
(749, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Autobiography (full width)', 'NOT NULL', '', 8, '\"<field\\r\\n\\ttype=\\\"editor\\\" \\r\\n\\tname=\\\"autobiography\\\" \\r\\n\\tlabel=\\\"Autobiography\\\" \\r\\n\\twidth=\\\"100%\\\" \\r\\n\\theight=\\\"400px\\\" \\r\\n\\tcols=\\\"11\\\" \\r\\n\\trows=\\\"10\\\" \\r\\n\\tbuttons=\\\"false\\\" \\r\\n\\thide=\\\"\\\" \\r\\n\\teditor=\\\"\\\" \\r\\n\\tfilter=\\\"safehtml\\\" \\r\\n\\trequired=\\\"\\\" \\r\\n\\/>\"', 1, '2015-09-11 22:15:51', '2016-11-16 09:13:00', 2, '', 265, '309b8cf5-714e-46fa-b508-cb67a5836254', '', '', '', '', ''),
(750, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Label (text)', 'NOT NULL', '', 25, '\"<field \\r\\n\\ttype=\\\"textarea\\\" \\r\\n\\tname=\\\"label\\\" \\r\\n\\tlabel=\\\"Label\\\" \\r\\n\\trows=\\\"10\\\" \\r\\n\\tcols=\\\"5\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tdescription=\\\"\\\" \\r\\n\\tclass=\\\"text_area span12\\\" \\r\\n\\tfilter=\\\"STRING\\\" \\r\\n\\thint=\\\"Just the field label\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\/>\"', 1, '2015-09-12 02:11:11', '2015-09-11 19:49:13', 1, '', 129, '8314b8ae-a6ab-40da-8dab-a75a685f7a73', '', '', '', '', ''),
(751, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Value (submitted)', 'NOT NULL', '', 25, '\"<field \\r\\n\\ttype=\\\"textarea\\\" \\r\\n\\tname=\\\"value\\\" \\r\\n\\tlabel=\\\"Value\\\" \\r\\n\\trows=\\\"10\\\" \\r\\n\\tcols=\\\"5\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tdescription=\\\"\\\" \\r\\n\\tclass=\\\"text_area span12\\\" \\r\\n\\tfilter=\\\"STRING\\\" \\r\\n\\thint=\\\"submitted value\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\/>\"', 1, '2015-09-12 02:11:58', '2015-10-20 17:36:29', 2, '', 129, '6f4b5713-17e4-4579-ad0f-a0c04047893f', '', '', '', '', ''),
(752, '', '', '', '', '', '', 'Other', 2, 1, '', 'TINYINT', 2, '', '', 'Status (application)', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"status\\\" \\r\\n\\tlabel=\\\"Status\\\" \\r\\n\\tdescription=\\\"The application status.\\\" \\r\\n\\tclass=\\\"btn-group btn-group-yesno\\\" \\r\\n\\toption=\\\"2|Pending,1|Approved,-1|Rejected\\\" \\r\\n\\tdefault=\\\"2\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\/>\"', 1, '2015-09-12 02:15:38', '2015-09-24 14:32:12', 2, '', 129, 'f3a9f329-7bd1-4a38-9b29-ec3bfea9c1d1', '', '', '', '', ''),
(753, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'Applications (dynamic)', 'NOT NULL', '', 6, '\"<field \\r\\n\\ttype=\\\"applications\\\" \\r\\n\\tname=\\\"application\\\" \\r\\n\\tlabel=\\\"Application ID\\\" \\r\\n\\tdescription=\\\"\\\" \\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\tmultiple=\\\"false\\\" \\r\\n\\tdefault=\\\"0\\\" \\r\\n\\trequired=\\\"\\\" \\r\\n\\treadonly=\\\"\\\" \\r\\n\\tdisabled=\\\"\\\" \\r\\n\\textends=\\\"list\\\" \\r\\n\\tbutton=\\\"false\\\" \\r\\n\\ttable=\\\"#__###component###_application\\\" \\r\\n\\tcomponent=\\\"com_###component###\\\" \\r\\n\\tview=\\\"application\\\" \\r\\n\\tviews=\\\"applications\\\" \\r\\n\\tvalue_field=\\\"id\\\" \\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_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-09-12 02:24:28', '2015-08-25 21:15:22', 1, '', 209, 'dabb7a8a-3c29-40fe-a9aa-c340826836ca', '', '', '', '', ''),
(754, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'Note (dynamic)', 'NOT NULL', '', 6, '\"<field \\r\\n\\ttype=\\\"notes\\\" \\r\\n\\tname=\\\"note\\\" \\r\\n\\tlabel=\\\"Liked Note\\\" \\r\\n\\tdescription=\\\"The global note this is linked to.\\\" \\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\tmultiple=\\\"false\\\" \\r\\n\\tdefault=\\\"0\\\" \\r\\n\\trequired=\\\"\\\" \\r\\n\\treadonly=\\\"\\\" \\r\\n\\tdisabled=\\\"\\\" \\r\\n\\textends=\\\"list\\\" \\r\\n\\tbutton=\\\"true\\\" \\r\\n\\ttable=\\\"#__###component###_note\\\" \\r\\n\\tcomponent=\\\"com_###component###\\\" \\r\\n\\tview=\\\"note\\\" \\r\\n\\tviews=\\\"notes\\\" \\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_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-09-12 13:46:20', '2015-09-12 13:48:16', 2, '', 600, '4270ffe1-8a87-42de-b52c-53953f2ec254', '', '', '', '', ''),
(755, '', '', '', '', '', '', '', '', '', '', 'CHAR', '', '', '', 'Dropbox folder', 'NOT NULL', '', 27, '\"<field \\r\\n\\ttype=\\\"url\\\" \\r\\n\\tname=\\\"dropbox\\\" \\r\\n\\tlabel=\\\"Dropbox Folder URL\\\" \\r\\n\\tsize=\\\"40\\\" \\r\\n\\tmaxlength=\\\"120\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tdescription=\\\"Enter the url of the main Dropbox folder to target, this will link the files to there respected sessions.\\\" \\r\\n\\tclass=\\\"text_area span12\\\" \\r\\n\\treadonly=\\\"\\\" \\r\\n\\tdisabled=\\\"\\\" \\r\\n\\trequired=\\\"false\\\" \\r\\n\\tfilter=\\\"url\\\" \\r\\n\\tvalidated=\\\"url\\\" \\r\\n\\tmessage=\\\"Error! Please add Dropbox folder url here.\\\" \\r\\n\\thint=\\\"https:\\/\\/www.dropbox.com\\/sh\\/gu2sjrm0wx9lktc\\/AAA8eEzq3BkxG0UwEHqjAc84a?dl=0\\\" \\r\\n\\/>\"', 1, '2015-09-14 03:39:10', '2015-09-14 13:49:32', 3, '', 601, '57f4d23b-3243-4253-8548-9368b8d4f5d1', '', '', '', '', ''),
(756, '', '', '', '', '', '', '', '', 1, '', 'INT', '', '', '', 'Auto Update Timer', 'NOT NULL', '', 10, '\"<field \\r\\n\\ttype=\\\"integer\\\" \\r\\n\\tname=\\\"auto_update_timer\\\" \\r\\n\\tlabel=\\\"Auto Update Timer\\\" \\r\\n\\tdefault=\\\"60\\\" \\r\\n\\tdescription=\\\"Set the timer in minutes for updating the external sources local listing of files.\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\trequired=\\\"\\\" \\r\\n\\tfirst=\\\"0\\\" \\r\\n\\tlast=\\\"50000\\\" \\r\\n\\tstep=\\\"10\\\" \\r\\n\\/>\"', 1, '2015-09-14 12:31:36', '2016-11-03 17:49:06', 5, '', 602, '09c7138f-5bb5-41f1-a052-f5544c0dbe1d', '', '', '', '', ''),
(757, '', '', '', '', '', '', '', '', '', '', 'CHAR', '', '', '', 'Dropbox Note', 'NOT NULL', '', 14, '\"<field \\r\\n\\ttype=\\\"note\\\" \\r\\n\\tname=\\\"note_dropbox\\\" \\r\\n\\tlabel=\\\"Dropbox Integration\\\" \\r\\n\\tdescription=\\\"<b>To integrate Dropbox with you system you need to do the following:<\\/b> <ul>\\r\\n <li>Setup a folder in your dropbox account that map to your structure on Learning Manager\\r\\n\\t <ul>\\r\\n\\t\\t <li>Main\\/first folders will be the <b>acronym<\\/b> of the programs.<\\/li>\\r\\n\\t\\t <li>Then the next set of folders inside the acronym folders will be the <b>alias<\\/b> names of the courses that belong to that program.<\\/li>\\r\\n\\t\\t <li>Then the next set of folders inside the course folders will be the <b>alias<\\/b> names of the sessions that belong to that course.<\\/li>\\r\\n\\t\\t <li>Inside this session folder you can place the documents that must be downloadable in relation to that session when a student has access to it.<\\/li>\\r\\n\\t\\t <li>The naming convention of each file in these session folders require that there be no spaces in the name. (file_name_like_this.ppt)<\\/li>\\r\\n\\t\\t <li>To make a file unique to an event use the same file naming as the original file, but add the event->session date at the end after two underscores. (file_name_like_this__2015-11-24.ppt)<\\/li>\\r\\n\\t <\\/ul>\\r\\n <\\/li>\\r\\n <li>Get the share link to the folder where the program(acronym) folders are found in your Dropbox account. <\\/li>\\r\\n <li>Add this link to the field below called (Dropbox Folder URL)<\\/li>\\r\\n <li>Set the timer that control the how long we wait before checking for updates to the Dropbox folders.<\\/li>\\r\\n<\\/ul>\\\" \\r\\n\\theading=\\\"h4\\\" \\r\\n\\tclass=\\\"alert alert-info\\\" \\r\\n\\tclose=\\\"false\\\" \\r\\n\\/>\"', 1, '2015-09-14 13:46:08', '0000-00-00 00:00:00', 1, '', 603, '3c79532c-33dc-4158-9e11-940a33e7a0a8', '', '', '', '', ''),
(758, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Release Type', 'NOT NULL', '', 11, '\"<field \\r\\n\\ttype=\\\"list\\\" \\r\\n\\tname=\\\"release_type\\\" \\r\\n\\tlabel=\\\"Release Type\\\" \\r\\n\\tdescription=\\\"Select the release behavior.\\\" \\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\tmultiple=\\\"false\\\" \\r\\n\\toption=\\\"0|Immediately,1|Before Target,2|After Target,3|On Target\\\" \\r\\n\\tdefault=\\\"3\\\" \\r\\nrequired=\\\"true\\\"\\r\\nfilter=\\\"int\\\"\\r\\n\\/>\"', 1, '2015-09-22 19:21:48', '2015-09-23 04:16:10', 5, '', 77, '809ce79c-687c-4a02-ac0b-ea7b56bd2470', '', '', '', '', ''),
(759, '', '', '', '', '', '', 'Other', 2, 1, '', 'TINYINT', 2, '', '', 'Release Target (type)', 'NOT NULL', '', 11, '\"<field \\r\\n\\ttype=\\\"list\\\" \\r\\n\\tname=\\\"release_target\\\" \\r\\n\\tlabel=\\\"Release Target\\\" \\r\\n\\tdescription=\\\"Select the release target type.\\\" \\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\tmultiple=\\\"false\\\" \\r\\n\\toption=\\\"1|Session,2|Day,3|Course,4|Program\\\" \\r\\n\\tdefault=\\\"2\\\" \\r\\nrequired=\\\"true\\\"\\r\\nfilter=\\\"int\\\"\\r\\n\\/>\"', 1, '2015-09-22 19:26:04', '2015-09-23 03:16:57', 2, '', 77, '6d66adb0-8ed3-4c6d-9b04-d93bb04bd647', '', '', '', '', ''),
(760, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'Note - Release Assesment', 'NOT NULL', '', 14, '\"<field \\r\\n\\ttype=\\\"note\\\" \\r\\n\\tname=\\\"note_release\\\" \\r\\n\\tlabel=\\\"The Release Options\\\" \\r\\n\\theading=\\\"h4\\\" \\r\\n\\tclass=\\\"alert alert alert-info\\\" \\r\\n\\tclose=\\\"false\\\" \\r\\n\\/>\"', 1, '2015-09-22 19:29:46', '2015-08-25 21:15:22', 1, '', 77, '483925fc-754d-490b-8a3f-6f920cd4e878', '', '', '', '', ''),
(761, '', '', '', '', '', '', 1, '', 1, '', 'TINYINT', 2, '', '', 'Attendance required', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"attendance\\\" \\r\\n\\tlabel=\\\"Attendance Required\\\" \\r\\n\\tdescription=\\\"Should attendance be marked to allow release.\\\" \\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-09-23 03:10:33', '0000-00-00 00:00:00', 1, '', 604, 'fae71ea1-ae64-426b-b173-26b9b1ec7026', '', '', '', '', ''),
(762, '', '', '', '', '', '', '', '', 11, '', 'INT', '', '', '', 'Release Period Length', 'NOT NULL', '', 10, '\"<field \\r\\n\\ttype=\\\"integer\\\" \\r\\n\\tname=\\\"release_period_length\\\" \\r\\n\\tlabel=\\\"Release Period Length\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tdescription=\\\"Select the length in relation to target for release.\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\tfirst=\\\"1\\\" \\r\\n\\tlast=\\\"365\\\" \\r\\n\\tstep=\\\"1\\\" \\r\\n\\tfilter=\\\"INT\\\"\\r\\n\\/>\"', 1, '2015-09-23 03:19:24', '2015-09-23 04:00:40', 2, '', 121, 'e74b080f-ca4a-461d-8ae4-1a62cfc5cffd', '', '', '', '', ''),
(763, '', '', '', '', '', '', '', '', 11, '', 'INT', '', '', '', 'Active Period Length', 'NOT NULL', '', 10, '\"<field \\r\\n\\ttype=\\\"integer\\\" \\r\\n\\tname=\\\"active_period_length\\\" \\r\\n\\tlabel=\\\"Active Period Length\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tdescription=\\\"Select the length in relation to target.\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\tfirst=\\\"1\\\" \\r\\n\\tlast=\\\"365\\\" \\r\\n\\tstep=\\\"1\\\" \\r\\n\\tfilter=\\\"INT\\\"\\r\\n\\/>\"', 1, '2015-09-23 03:20:30', '2015-09-23 04:00:20', 3, '', 121, '5d2cd535-0085-4fdb-9c82-79dde187ed55', '', '', '', '', ''),
(764, '', '', '', '', '', '', 1, '', 1, '', 'TINYINT', 2, '', '', 'Active Type', 'NOT NULL', '', 11, '\"<field \\r\\n\\ttype=\\\"list\\\" \\r\\n\\tname=\\\"active_type\\\" \\r\\n\\tlabel=\\\"Active Type\\\" \\r\\n\\tdescription=\\\"Select the active behavior.\\\" \\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\tmultiple=\\\"false\\\" \\r\\n\\toption=\\\"1|Until Submission,2|Until Submission or Period After Target,3|Period After Target,4|Permanently\\\" \\r\\n\\tdefault=\\\"1\\\" \\r\\nrequired=\\\"true\\\"\\r\\nfilter=\\\"int\\\"\\r\\n\\/>\"', 1, '2015-09-23 03:25:38', '2015-09-23 03:54:31', 4, '', 77, '1a16a4b3-4a71-48f4-8b7b-0363d53cb32a', '', '', '', '', ''),
(765, '', '', '', '', '', '', 1, '', 1, '', 'TINYINT', 2, '', '', 'Active Target (type)', 'NOT NULL', '', 11, '\"<field \\r\\n\\ttype=\\\"list\\\" \\r\\n\\tname=\\\"active_target\\\" \\r\\n\\tlabel=\\\"Active Target\\\" \\r\\n\\tdescription=\\\"Select the active after target type.\\\" \\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\tmultiple=\\\"false\\\" \\r\\n\\toption=\\\"1|Release,6|Opened,2|Session,3|Day,4|Course,5|Program\\\" \\r\\n\\tdefault=\\\"1\\\" \\r\\nrequired=\\\"true\\\"\\r\\nfilter=\\\"int\\\"\\r\\n\\/>\"', 1, '2015-09-23 03:28:31', '2015-10-20 17:22:48', 4, '', 77, 'a4c7e7e1-0394-4657-9433-958afbc1eb80', '', '', '', '', ''),
(766, '', '', '', '', '', '', 'Other', 2, 1, '', 'TINYINT', 2, '', '', 'Release Period Type', '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.\\\" \\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-09-23 03:31:48', '2015-09-23 03:58:22', 2, '', 120, '991f3c3c-95c6-44fe-a5cd-d1ae72c3747b', '', '', '', '', ''),
(767, '', '', '', '', '', '', 'Other', 3, 1, '', 'TINYINT', 2, '', '', 'Active Period Type', 'NOT NULL', '', 11, '\"<field \\r\\n\\ttype=\\\"list\\\" \\r\\n\\tname=\\\"active_period_type\\\" \\r\\n\\tlabel=\\\"Active Period Type\\\" \\r\\n\\tdescription=\\\"Select the period type to use in active lenght.\\\" \\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-09-23 03:33:21', '2015-09-23 03:57:53', 2, '', 120, '6ae12782-7be7-418e-a9e2-f6574e4312b0', '', '', '', '', ''),
(768, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'Note - Active Assesment', 'NOT NULL', '', 14, '\"<field \\r\\n\\ttype=\\\"note\\\" \\r\\n\\tname=\\\"note_active\\\" \\r\\n\\tlabel=\\\"The Active Length Options\\\" \\r\\n\\theading=\\\"h4\\\" \\r\\n\\tclass=\\\"alert alert alert-info\\\" \\r\\n\\tclose=\\\"false\\\" \\r\\n\\/>\"', 1, '2015-09-23 03:39:08', '2015-09-23 03:48:11', 2, '', 77, '1c1a0bbb-8e3f-4d85-bdfe-88bdbb6f1c8c', '', '', '', '', ''),
(769, '', '', '', '', '', '', '', '', 11, '', 'INT', '', '', '', 'Session (release)', 'NOT NULL', '', 6, '\"<field \\r\\n\\ttype=\\\"session\\\" \\r\\n\\tname=\\\"release_session\\\" \\r\\n\\tlabel=\\\"Target Session\\\"\\r\\n\\tfilter=\\\"INT\\\"\\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\trequired=\\\"true\\\"\\r\\n\\textends=\\\"list\\\" \\r\\n\\tbutton=\\\"true\\\"\\r\\n\\ttable=\\\"#__###component###_session\\\" \\r\\n\\tcomponent=\\\"com_###component###\\\" \\r\\n\\tview=\\\"session\\\" \\r\\n\\tviews=\\\"sessions\\\" \\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###\')))->select($db->quoteName(array(\'p.acronym\'),array(\'program\')))->select($db->quoteName(array(\'c.name\'),array(\'course\')));\\\" \\r\\n\\ttype_php_4=\\\"$query->from($db->quoteName(\'###TABLE###\', \'a\'))->join(\'LEFT\', $db->quoteName(\'#__###component###_course\', \'c\') . \' ON (\' . $db->quoteName(\'a.course\') . \' = \' . $db->quoteName(\'c.id\') . \')\')->join(\'LEFT\', $db->quoteName(\'#__###component###_program\', \'p\') . \' ON (\' . $db->quoteName(\'c.program\') . \' = \' . $db->quoteName(\'p.id\') . \')\');\\\" \\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_12=\\\"\\\\tforeach($items as $item)\\\" \\r\\n\\ttype_php_13=\\\"\\\\t{\\\" \\r\\n\\ttype_php_14=\\\"\\\\t\\\\t$options[] = JHtml::_(\'select.option\', $item->###ID###, $item->###CODE_TEXT### . \' - \' . $item->course . \' (\' . $item->program . \')\');\\\" \\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-09-23 04:22:28', '2016-02-06 21:44:14', 2, '', 131, '859e1970-6060-45a1-92f2-092fc30122ed', '', '', '', '', ''),
(770, '', '', '', '', '', '', '', '', 11, '', 'INT', '', '', '', 'Session (active)', 'NOT NULL', '', 6, '\"<field \\r\\n\\ttype=\\\"session\\\" \\r\\n\\tname=\\\"active_session\\\" \\r\\n\\tlabel=\\\"Active Session\\\"\\r\\n\\tfilter=\\\"INT\\\"\\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\trequired=\\\"true\\\"\\r\\n\\textends=\\\"list\\\" \\r\\n\\tbutton=\\\"true\\\"\\r\\n\\ttable=\\\"#__###component###_session\\\" \\r\\n\\tcomponent=\\\"com_###component###\\\" \\r\\n\\tview=\\\"session\\\" \\r\\n\\tviews=\\\"sessions\\\" \\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###\')))->select($db->quoteName(array(\'p.acronym\'),array(\'program\')))->select($db->quoteName(array(\'c.name\'),array(\'course\')));\\\" \\r\\n\\ttype_php_4=\\\"$query->from($db->quoteName(\'###TABLE###\', \'a\'))->join(\'LEFT\', $db->quoteName(\'#__###component###_course\', \'c\') . \' ON (\' . $db->quoteName(\'a.course\') . \' = \' . $db->quoteName(\'c.id\') . \')\')->join(\'LEFT\', $db->quoteName(\'#__###component###_program\', \'p\') . \' ON (\' . $db->quoteName(\'c.program\') . \' = \' . $db->quoteName(\'p.id\') . \')\');\\\" \\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_12=\\\"\\\\tforeach($items as $item)\\\" \\r\\n\\ttype_php_13=\\\"\\\\t{\\\" \\r\\n\\ttype_php_14=\\\"\\\\t\\\\t$options[] = JHtml::_(\'select.option\', $item->###ID###, $item->###CODE_TEXT### . \' - \' . $item->course . \' (\' . $item->program . \')\');\\\" \\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-09-23 04:23:18', '2016-02-06 21:44:38', 2, '', 131, '188636ba-4df3-433c-b034-1158eb201298', '', '', '', '', ''),
(771, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Add Credits', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"add_credits\\\" \\r\\n\\tlabel=\\\"Use Credits\\\" \\r\\n\\tdescription=\\\"Select if this assessment should make use of credits\\\" \\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-09-23 10:03:36', '0000-00-00 00:00:00', 1, '', 605, 'ae225da3-e451-4be7-81e3-db192ad84556', '', '', '', '', ''),
(772, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Add Reportcard', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"add_reportcard\\\" \\r\\n\\tlabel=\\\"Add To Report Card\\\" \\r\\n\\tdescription=\\\"Select if this assessment should be added to the student report card.\\\" \\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-09-23 10:04:55', '0000-00-00 00:00:00', 1, '', 605, '51d96d62-6380-4129-a03c-f908b3b951f1', '', '', '', '', ''),
(773, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'Pass Credit', 'NOT NULL', '', 10, '\"<field \\r\\n\\ttype=\\\"integer\\\" \\r\\n\\tname=\\\"pass_credit\\\" \\r\\n\\tlabel=\\\"Pass Credit\\\" \\r\\n\\tdefault=\\\"4\\\" \\r\\n\\tdescription=\\\"Set the number of credit the student receives if passed.\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\tfirst=\\\"1\\\" \\r\\n\\tlast=\\\"400\\\" \\r\\n\\tstep=\\\"1\\\" \\r\\n\\/>\"', 1, '2015-09-23 10:07:35', '2016-12-05 15:51:52', 2, '', 605, '7ea9ed4a-19d9-4911-8053-5820a175a993', '', '', '', '', ''),
(774, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'Pass Percentage', 'NOT NULL', '', 10, '\"<field \\r\\n\\ttype=\\\"integer\\\" \\r\\n\\tname=\\\"pass_percentage\\\" \\r\\n\\tlabel=\\\"Pass Percentage\\\" \\r\\n\\tdefault=\\\"60\\\" \\r\\n\\tdescription=\\\"Set the percentage the student needs to pass.\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\tfirst=\\\"1\\\" \\r\\n\\tlast=\\\"100\\\" \\r\\n\\tstep=\\\"1\\\" \\r\\n\\/>\"', 1, '2015-09-23 10:09:30', '2016-12-05 15:52:05', 2, '', 605, '249e0d4e-314d-43d9-bae6-d891d93d96ec', '', '', '', '', ''),
(775, '', '', '', '', '', '', 1, '', 1, '', 'TINYINT', 2, '', '', 'Pass Type', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"pass_type\\\" \\r\\n\\tlabel=\\\"Pass Method\\\" \\r\\n\\tdescription=\\\"Set the method used to determine pass status.\\\" \\r\\n\\tclass=\\\"btn-group btn-group-yesno\\\" \\r\\n\\toption=\\\"1|Percentage,2|Completion\\\" \\r\\n\\tdefault=\\\"1\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\/>\"', 1, '2015-09-23 10:14:40', '0000-00-00 00:00:00', 1, '', 605, '31dfeeaa-1281-42bf-9a58-47dd7acdd43f', '', '', '', '', ''),
(776, '', '', '', '', '', '', '', '', 7, '', 'INT', 2, '', '', 'Total Points', 'NOT NULL', '', 10, '\"<field \\r\\n\\ttype=\\\"integer\\\" \\r\\n\\tname=\\\"total_points\\\" \\r\\n\\tlabel=\\\"Total Points\\\" \\r\\n\\tdefault=\\\"100\\\" \\r\\n\\tdescription=\\\"Set the total points this assessment should have. This is used in the question algorithm in conjunction with the question map.\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\tfirst=\\\"0\\\" \\r\\n\\tlast=\\\"400\\\" \\r\\n\\tstep=\\\"1\\\" \\r\\n\\/>\"', 1, '2015-09-23 10:19:09', '2015-10-17 21:57:01', 2, '', 605, '39cf3cb3-1902-496e-a22b-7f5b2c9c4455', '', '', '', '', ''),
(777, '', '', 1, '', '', '', '', '', '', '', 'TEXT', '', 'alF1ZXJ5KCdpbnB1dC5mb3JtLWZpZWxkLXJlcGVhdGFibGUnKS5vbignd2VyZWFkeScsIGZ1bmN0aW9uKGUsIHZhbHVlKXsNCglpZiAoImpmb3JtX3F1ZXN0aW9uX21hcCIgPT0gZS5jdXJyZW50VGFyZ2V0LmlkKQ0KCXsNCgkJY2FsUGVyY2VudCgpOw0KCX0NCn0pOw0KDQpqUXVlcnkoJ2lucHV0LmZvcm0tZmllbGQtcmVwZWF0YWJsZScpLm9uKCd2YWx1ZS11cGRhdGUnLCBmdW5jdGlvbihlLCB2YWx1ZSl7DQoJaWYgKHZhbHVlKQ0KCXsNCgkJYnVpbGRUYWJsZSh2YWx1ZSxlLmN1cnJlbnRUYXJnZXQuaWQpOw0KCX0NCn0pOw0KDQpqUXVlcnkoJ2lucHV0LmZvcm0tZmllbGQtcmVwZWF0YWJsZScpLm9uKCdyb3ctYWRkJywgZnVuY3Rpb24oZSwgcm93KSB7DQoJaWYgKCJqZm9ybV9xdWVzdGlvbl9tYXAiID09IGUuY3VycmVudFRhcmdldC5pZCkNCgl7DQoJCXNldFNlbGVjdGlvbigpOw0KCQl1cGRhdGVTZWxlY3Rpb24ocm93KTsNCgl9DQp9KTsNCg0KalF1ZXJ5KCdpbnB1dC5mb3JtLWZpZWxkLXJlcGVhdGFibGUnKS5vbigncm93LXJlbW92ZScsIGZ1bmN0aW9uKGUsIHJvdykgew0KCWlmICgiamZvcm1fcXVlc3Rpb25fbWFwIiA9PSBlLmN1cnJlbnRUYXJnZXQuaWQpDQoJew0KCQljYWxQZXJjZW50KCk7DQoJfQ0KfSk7DQoNCnZhciBUeXBlQXJyYXkgPSBuZXcgQXJyYXk7DQpmdW5jdGlvbiBzZXRTZWxlY3Rpb24oKQ0Kew0KCVR5cGVBcnJheS5sZW5ndGggPSAwOw0KCTw/cGhwICRmaWVsZE5ycyA9IHJhbmdlKDEsNCwxKTsgPz4NCgk8P3BocCBmb3JlYWNoKCRmaWVsZE5ycyBhcyAkZmllbGROcik6ID8+DQoJCS8vIGdldCBvcHRpb25zDQoJCXZhciBwZXJjZW50Xzw/cGhwIGVjaG8gJGZpZWxkTnIgPz4gPSBqUXVlcnkoIiNqZm9ybV9xdWVzdGlvbl9tYXBfZmllbGRzX2Fuc3dlcl90eXBlLTw/cGhwIGVjaG8gJGZpZWxkTnIgPz4gb3B0aW9uOnNlbGVjdGVkIikudmFsKCk7DQoJCWlmIChwZXJjZW50Xzw/cGhwIGVjaG8gJGZpZWxkTnIgPz4pDQoJCXsNCgkJCVR5cGVBcnJheS5wdXNoKHBlcmNlbnRfPD9waHAgZWNobyAkZmllbGROciA/Pik7DQoJCX0NCgk8P3BocCBlbmRmb3JlYWNoOyA/Pg0KfQ0KDQo8P3BocCAkZmllbGROcnMgPSByYW5nZSgxLDUsMSk7ID8+DQpqUXVlcnkoJyNqZm9ybV9xdWVzdGlvbl9tYXBfbW9kYWwnKS5vbignc2hvdy5icy5tb2RhbCcsIGZ1bmN0aW9uIChlKSB7DQoJPD9waHAgZm9yZWFjaCgkZmllbGROcnMgYXMgJGZpZWxkTnIpOiA/PmpRdWVyeSgnI2pmb3JtX3F1ZXN0aW9uX21hcF9tb2RhbCcpLm9uKCdjaGFuZ2UnLCAnI2pmb3JtX3F1ZXN0aW9uX21hcF9maWVsZHNfcGVyY2VudC08P3BocCBlY2hvICRmaWVsZE5yID8+JyxmdW5jdGlvbiAoKSB7DQoJCS8vIGNhbGN1bGF0ZQ0KCQljYWxQZXJjZW50KCk7DQoJfSk7DQoJalF1ZXJ5KCcjamZvcm1fcXVlc3Rpb25fbWFwX2ZpZWxkc19wZXJjZW50LTw/cGhwIGVjaG8gJGZpZWxkTnIgPz4nKS5vbigna2V5dXAnLGZ1bmN0aW9uKCkgew0KCQkvLyBjYWxjdWxhdGUNCgkJY2FsUGVyY2VudCgpOw0KCX0pOw0KCTw/cGhwIGVuZGZvcmVhY2g7ID8+DQp9KTsNCg0KdmFyIFBlcmNlbnQgPSBuZXcgQXJyYXk7DQpmdW5jdGlvbiBjYWxQZXJjZW50KCkNCnsNCglQZXJjZW50Lmxlbmd0aCA9IDA7DQoJPD9waHAgZm9yZWFjaCgkZmllbGROcnMgYXMgJGZpZWxkTnIpOiA/Pg0KCS8vIGdldCBvcHRpb25zDQoJdmFyIHBlcmNlbnRfPD9waHAgZWNobyAkZmllbGROciA/PiA9IGpRdWVyeSgiI2pmb3JtX3F1ZXN0aW9uX21hcF9maWVsZHNfcGVyY2VudC08P3BocCBlY2hvICRmaWVsZE5yID8+IikudmFsKCk7DQoJaWYgKHBlcmNlbnRfPD9waHAgZWNobyAkZmllbGROciA/PiAmJiBwZXJjZW50Xzw/cGhwIGVjaG8gJGZpZWxkTnIgPz4ubWF0Y2goL15cZCskLykpDQoJew0KCQlQZXJjZW50LnB1c2gocGVyY2VudF88P3BocCBlY2hvICRmaWVsZE5yID8+KTsNCgl9DQoJZWxzZQ0KCXsNCgkJalF1ZXJ5KCIjamZvcm1fcXVlc3Rpb25fbWFwX2ZpZWxkc19wZXJjZW50LTw/cGhwIGVjaG8gJGZpZWxkTnIgPz4iKS52YWwoJycpOw0KCX0NCgk8P3BocCBlbmRmb3JlYWNoOyA/Pg0KCXZhciB0b3RhbCA9IDA7DQoJZm9yICh2YXIgaSA9IDA7IGkgPCBQZXJjZW50Lmxlbmd0aDsgaSsrKSB7DQoJCXRvdGFsICs9IFBlcmNlbnRbaV0gPDwgMDsNCgl9DQoJaWYgKHRvdGFsICE9IDEwMCkNCgl7DQoJCWpRdWVyeSgnI2pmb3JtX3F1ZXN0aW9uX21hcF9tb2RhbCAuc2F2ZS1tb2RhbC1kYXRhJykuaGlkZSgpOw0KCQlqUXVlcnkoJyNqZm9ybV9xdWVzdGlvbl9tYXBfdG90YWwnKS5yZW1vdmUoKTsNCgkJalF1ZXJ5KCcjamZvcm1fcXVlc3Rpb25fbWFwX21vZGFsIC5tb2RhbC1mb290ZXInKS5hcHBlbmQoJzxzcGFuIGlkPSJqZm9ybV9xdWVzdGlvbl9tYXBfdG90YWwiIHN0eWxlPSJjb2xvcjpyZWQ7Ij48c21hbGw+KE11c3QgYmUgMTAwJSk8L3NtYWxsPiBUb3RhbDogJyt0b3RhbCsnJTwvc3Bhbj4nKTsNCgl9DQoJZWxzZQ0KCXsNCgkJalF1ZXJ5KCcjamZvcm1fcXVlc3Rpb25fbWFwX3RvdGFsJykucmVtb3ZlKCk7DQoJCWpRdWVyeSgnLnNhdmUtbW9kYWwtZGF0YScpLnRleHQoJ0RvbmUgMTAwJScpOw0KCQlqUXVlcnkoJyNqZm9ybV9xdWVzdGlvbl9tYXBfbW9kYWwgLnNhdmUtbW9kYWwtZGF0YScpLnNob3coKTsNCgl9DQp9DQoNCmpRdWVyeShkb2N1bWVudCkucmVhZHkoZnVuY3Rpb24oKSB7ICAgIA0KCXZhciB2YWx1ZXNfYSA9IGpRdWVyeSgnI2pmb3JtX3F1ZXN0aW9uX21hcCcpLnZhbCgpOw0KCWlmICh2YWx1ZXNfYSkNCgl7DQoJCXZhbHVlc19hID0galF1ZXJ5LnBhcnNlSlNPTih2YWx1ZXNfYSk7DQoJCWJ1aWxkVGFibGUodmFsdWVzX2EsJ2pmb3JtX3F1ZXN0aW9uX21hcCcpOw0KCX0NCn0pOw0KDQpmdW5jdGlvbiBidWlsZFRhYmxlKGFycmF5LGlkKXsNCglqUXVlcnkoJyN0YWJsZV8nK2lkKS5yZW1vdmUoKTsNCglqUXVlcnkoJyMnK2lkKS5jbG9zZXN0KCcuY29udHJvbC1ncm91cCcpLmFwcGVuZCgnPHRhYmxlIHN0eWxlPSJtYXJnaW46IDVweCAwIDIwcHg7IiBjbGFzcz0idGFibGUiIGlkPSJ0YWJsZV8nK2lkKyciPicpOw0KCWpRdWVyeSgnI3RhYmxlXycraWQpLmFwcGVuZCh0YWJsZUhlYWRlcihhcnJheSkpOw0KCWpRdWVyeSgnI3RhYmxlXycraWQpLmFwcGVuZCh0YWJsZUJvZHkoYXJyYXkpKTsgIA0KCWpRdWVyeSgnI3RhYmxlXycraWQpLmFwcGVuZCgnPC90YWJsZT4nKTsNCn0NCg0KZnVuY3Rpb24gdGFibGVIZWFkZXIoYXJyYXkpew0KCXZhciBoZWFkZXIgPSAnPHRoZWFkPjx0cj4nOw0KCQlqUXVlcnkuZWFjaChhcnJheSwgZnVuY3Rpb24oa2V5LCB2YWx1ZSkgew0KCQkJaGVhZGVyICs9ICc8dGggc3R5bGU9InBhZGRpbmc6IDEwcHg7IHRleHQtYWxpZ246IGNlbnRlcjsgYm9yZGVyOiAxcHggc29saWQgcmdiKDIyMSwgMjIxLCAyMjEpOyI+JytjYXBpdGFsaXplRmlyc3RMZXR0ZXIoa2V5KSsnPC90aD4nOw0KCQl9KTsNCgkJaGVhZGVyICs9ICc8L3RyPjwvdGhlYWQ+JzsNCglyZXR1cm4gaGVhZGVyOw0KfQ0KDQpmdW5jdGlvbiB0YWJsZUJvZHkoYXJyYXkpew0KCXZhciBib2R5ID0gJzx0Ym9keT4nOw0KCXZhciByb3dzID0gbmV3IEFycmF5KCk7DQoJalF1ZXJ5LmVhY2goYXJyYXksIGZ1bmN0aW9uKGtleSwgdmFsdWUpIHsNCgkJalF1ZXJ5LmVhY2godmFsdWUsIGZ1bmN0aW9uKGksIGxpbmUpIHsNCgkJCWlmKCByb3dzW2ldID09PSB1bmRlZmluZWQgKSB7DQoJCQkJcm93c1tpXSA9ICc8dGQgc3R5bGU9InBhZGRpbmc6IDEwcHg7IHRleHQtYWxpZ246IGNlbnRlcjsgYm9yZGVyOiAxcHggc29saWQgcmdiKDIyMSwgMjIxLCAyMjEpOyI+JyArIGxpbmUgKyAnPC90ZD4nOw0KCQkJfQ0KCQkJZWxzZQ0KCQkJew0KCQkJCXJvd3NbaV0gPSByb3dzW2ldICsgJzx0ZCBzdHlsZT0icGFkZGluZzogMTBweDsgdGV4dC1hbGlnbjogY2VudGVyOyBib3JkZXI6IDFweCBzb2xpZCByZ2IoMjIxLCAyMjEsIDIyMSk7Ij4nICsgbGluZSArICc8L3RkPic7DQoJCQl9DQoJCX0pOw0KCX0pOw0KCS8vIG5vdyBsb2FkIHRvIGJvZHkgdGhlIHJvd3MNCglqUXVlcnkuZWFjaChyb3dzLCBmdW5jdGlvbihhLCByb3cpIHsNCgkJYm9keSArPSAnPHRyPicgKyByb3cgKyAnPC90cj4nOw0KCX0pOw0KCWJvZHkgKz0gJzwvdGJvZHk+JzsNCglyZXR1cm4gYm9keTsgICAgICAgICAgICAgICAgICAgICAgICAgICAgDQp9DQoNCmZ1bmN0aW9uIGNhcGl0YWxpemVGaXJzdExldHRlcihzdHJpbmcpIHsNCiAgICByZXR1cm4gc3RyaW5nLmNoYXJBdCgwKS50b1VwcGVyQ2FzZSgpICsgc3RyaW5nLnNsaWNlKDEpOw0KfQ0KDQpmdW5jdGlvbiB1cGRhdGVTZWxlY3Rpb24ocm93KQ0Kew0KCXZhciBncm91cElkID0galF1ZXJ5KHJvdykuZmluZCgic2VsZWN0OmZpcnN0IikuYXR0cigiaWQiKTsNCgl2YXIgcGVyY2VudFZhbHVlID0galF1ZXJ5KHJvdykuZmluZCgiLnRleHRfYXJlYTpmaXJzdCIpLnZhbCgpOw0KCXZhciBhcnIgPSBncm91cElkLnNwbGl0KCctJyk7DQoJaWYgKGFyclsxXSAhPSAxKQ0KCXsNCgkJdmFyIHNlbGVjdGlvbiA9IHt9Ow0KCQlqUXVlcnkocm93KS5maW5kKCJzZWxlY3Q6Zmlyc3Qgb3B0aW9uIikuZWFjaChmdW5jdGlvbigpDQoJCXsNCgkJCS8vIGZpcnN0IGdldCB0aGUgdmFsdWVzIGFuZCB0ZXh0DQoJCQlzZWxlY3Rpb25balF1ZXJ5KHRoaXMpLnRleHQoKV0gPSBqUXVlcnkodGhpcykudmFsKCk7DQoJCX0pOw0KCQlqUXVlcnkuZWFjaChUeXBlQXJyYXksIGZ1bmN0aW9uKGksIGdyb3VwKXsNCgkJCWpRdWVyeShyb3cpLmZpbmQoInNlbGVjdDpmaXJzdCBvcHRpb25bdmFsdWU9JyIrZ3JvdXArIiddIikucmVtb3ZlKCk7DQoJCX0pOw0KCQlpZiAocGVyY2VudFZhbHVlKQ0KCQl7DQoJCQl2YXIgdGV4dCA9IGpRdWVyeShyb3cpLmZpbmQoIi5jaHpuLXNpbmdsZTpmaXJzdCBzcGFuIikudGV4dCgpOw0KCQkJalF1ZXJ5KHJvdykuZmluZCgic2VsZWN0OmZpcnN0IikuYXBwZW5kKGpRdWVyeSgnPG9wdGlvbj4nLCB7DQoJCQkJdmFsdWU6IHNlbGVjdGlvblt0ZXh0XSwNCgkJCQl0ZXh0OiB0ZXh0DQoJCQl9KSk7DQoJCX0NCgkJalF1ZXJ5KHJvdykuZmluZCgic2VsZWN0OmZpcnN0IikudHJpZ2dlcigibGlzenQ6dXBkYXRlZCIpOwkNCgkJDQoJCWlmIChwZXJjZW50VmFsdWUpDQoJCXsNCgkJCWpRdWVyeShyb3cpLmZpbmQoInNlbGVjdDpmaXJzdCBvcHRpb246c2VsZWN0ZWQiKS52YWwoc2VsZWN0aW9uW3RleHRdKTsJDQoJCQlqUXVlcnkocm93KS5maW5kKCIuY2h6bi1zaW5nbGU6Zmlyc3Qgc3BhbiIpLnRleHQodGV4dCk7DQoJCX0NCgl9DQp9', '', 'Question Map', 'NOT NULL', '', 19, '\"<field \\r\\n\\ttype=\\\"repeatable\\\" \\r\\n\\tname=\\\"question_map\\\" \\r\\n\\tlabel=\\\"Set Question Percent Breakdown\\\" \\r\\n\\tdescription=\\\"Here you set the question percent breakdown used in the algorithm to build the assessment form.\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tid=\\\"question_map\\\" \\r\\n\\tclass=\\\"question_maps\\\" \\r\\n\\tselect=\\\"Add\\/Edit\\\" \\r\\n\\ticon=\\\"list\\\" \\r\\n\\tmaximum=\\\"5\\\" \\r\\n\\tfields=\\\"778,655\\\" \\r\\n\\/>\"', 1, '2015-09-23 14:34:06', '2015-09-23 14:42:33', 2, '', 606, '6de4dc6a-7aed-41c8-b17e-bee5bc243113', '', '', '', '', ''),
(778, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Answer Type', 'NOT NULL', '', 11, '\"<field \\r\\n\\ttype=\\\"list\\\" \\r\\n\\tname=\\\"answer_type\\\" \\r\\n\\tlabel=\\\"Answer Type\\\" \\r\\n\\tdescription=\\\"breakdown\\\" \\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\tmultiple=\\\"false\\\" \\r\\n\\tfilter=\\\"INT\\\" \\r\\n\\trequired=\\\"\\\" \\r\\n\\toption=\\\"1|Yes\\/No,2|List Selection,3|List Selection Multiple,4|Text Complete,5|Text Complete Plus\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\/>\"', 1, '2015-09-23 14:38:40', '2015-09-23 14:39:31', 3, '', 606, '3d8ef139-5d33-46e2-acae-f75e883098cd', '', '', '', '', ''),
(779, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Featured Event', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"featured\\\" \\r\\n\\tlabel=\\\"Feature\\\" \\r\\n\\tdescription=\\\"Set if this event should be featured.\\\" \\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-09-24 11:21:41', '0000-00-00 00:00:00', 1, '', 607, 'd9b146d5-c62a-43ea-b240-fc4ebdcdad47', '', '', '', '', ''),
(780, '', '', '', '', '', '', '', '', 64, '', 'CHAR', '', '', '', 'Facilitators Groups (multi)', 'NOT NULL', '', 29, '\"<field \\r\\n\\ttype=\\\"usergroup\\\" \\r\\n\\tname=\\\"facilitatoruser\\\" \\r\\n\\tlabel=\\\"Facilitator Groups\\\" \\r\\n\\trequired=\\\"true\\\"\\r\\n\\tdescription=\\\"Select the facilitators group\\/s\\\"\\r\\n\\tmultiple=\\\"true\\\"\\r\\n\\/>\"', 1, '2015-09-25 13:56:46', '2015-08-25 21:15:22', 1, '', 50, '73d9ee2b-5c59-4ae4-86c0-6be03b689016', '', '', '', '', ''),
(781, '', '', '', '', '', '', '', '', '', '', 'CHAR', '', '', '', 'Default Site View', 'NOT NULL', '', 3, '\"<field\\n\\ttype=\\\"checkbox\\\"\\n\\tname=\\\"default_view\\\"\\n\\tlabel=\\\"Default View\\\"\\n\\tvalue=\\\"1\\\"\\n\\tdefault=\\\"\\\"\\n\\tdescription=\\\"Select only one.\\\"\\n\\tclass=\\\"inputbox\\\"\\n\\/>\"', 1, '2015-09-27 17:49:35', '2019-06-11 12:16:41', 3, '', 608, '28776225-1422-43cf-8714-6620f6d7f391', '', '', '', '', ''),
(782, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Groups (giz -basic)', 'NOT NULL', 1, 29, '\"<field \\r\\n\\ttype=\\\"usergroup\\\" \\r\\n\\tname=\\\"memberbasicgroup\\\" \\r\\n\\tlabel=\\\" User Member Basic Group\\\" \\r\\n\\trequired=\\\"\\\"\\r\\n\\tdescription=\\\"Select the member basic group\\/s\\\"\\r\\n\\tmultiple=\\\"true\\\"\\r\\n\\/>\"', 1, '2015-09-28 05:53:02', '2015-09-28 05:56:14', 2, '', 50, '9ea9766d-b1b1-496f-a7a9-608d8bee8e7a', '', '', '', '', ''),
(783, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Groups (giz - advance)', 'NOT NULL', 1, 29, '\"<field \\r\\n\\ttype=\\\"usergroup\\\" \\r\\n\\tname=\\\"advancedmembergroup\\\" \\r\\n\\tlabel=\\\" User Member Advanced Group\\\" \\r\\n\\trequired=\\\"\\\"\\r\\n\\tdescription=\\\"Select the member advanced group\\/s\\\"\\r\\n\\tmultiple=\\\"true\\\"\\r\\n\\/>\"', 1, '2015-09-28 05:53:32', '2015-09-28 05:56:43', 2, '', 50, '6d55d90f-1e4d-4fb2-b436-5aeafce9ce3f', '', '', '', '', ''),
(784, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'Duration', 'NOT NULL', '', 10, '\"<field \\r\\n\\ttype=\\\"integer\\\" \\r\\n\\tname=\\\"duration\\\" \\r\\n\\tlabel=\\\"Duration (years)\\\" \\r\\n\\tdefault=\\\"1\\\" \\r\\n\\tdescription=\\\"Set in number of years\\\" \\r\\n\\tclass=\\\"\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\tfirst=\\\"1\\\" \\r\\n\\tlast=\\\"30\\\" \\r\\n\\tstep=\\\"1\\\"\\r\\n\\/>\"', 1, '2015-10-01 20:14:56', '2016-05-10 16:19:42', 6, '', 609, 'd8be6cc1-799b-4a5e-95a0-edc4e5c4971a', '', '', '', '', ''),
(785, '', '', '', '', '', '', 1, '', 7, '', 'CHAR', '', '', '', 'Health scaling factor', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"health_scaling_factor\\\" \\r\\n\\tlabel=\\\"Health Scaling\\\" \\r\\n\\tsize=\\\"10\\\" \\r\\n\\tmaxlength=\\\"10\\\" \\r\\n\\tdefault=\\\"1\\\" \\r\\n\\tdescription=\\\"Health scaling factor\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\treadonly=\\\"false\\\" \\r\\n\\tdisabled=\\\"false\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\tfilter=\\\"CMD\\\" \\r\\n\\tvalidate=\\\"\\\" \\r\\n\\tmessage=\\\"Error! Please add scaling factor for health here.\\\" \\r\\n\\thint=\\\"Number Here\\\"\\r\\n\\/>\"', 1, '2015-10-01 20:18:27', '2015-10-01 20:20:52', 2, '', 574, '7e111891-779b-42d3-9a40-2201ba480b6a', '', '', '', '', ''),
(786, '', '', '', '', '', '', '', '', '', '', 'MEDIUMTEXT', '', '', '', 'PHP (after_getItem - JModelItems)', 'NOT NULL', 2, 8, '\"<field\\n\\ttype=\\\"editor\\\"\\n\\tname=\\\"php_before_getitems\\\"\\n\\tlabel=\\\"PHP getItems Method\\\"\\n\\tdescription=\\\"Add PHP Here that should run in the getItems Method before the items are loaded. 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-08-26 00:59:36', '2019-07-08 14:16:46', 4, '', 119, 'dfe2f9bb-1f10-4856-a6ea-d43b5225089a', '', '', '', '', ''),
(787, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Add PHP (after getItems JModelList)', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"add_php_after_getitems\\\" \\r\\n\\tlabel=\\\"Add PHP (after getting the Items)\\\" \\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-08-26 01:02:39', '2015-10-04 16:48:23', 3, '', 188, '01ae4944-ceba-4c21-a02d-38222e1a3733', '', '', '', '', ''),
(788, '', '', '', '', '', '', '', '', '', '', 'MEDIUMTEXT', '', '', '', 'PHP (before_getItems - JModelList)', 'NOT NULL', 2, 8, '\"<field\\n\\ttype=\\\"editor\\\"\\n\\tname=\\\"php_before_getitems\\\"\\n\\tlabel=\\\"PHP getItems Method\\\"\\n\\tdescription=\\\"Add PHP Here that should run in the getItems Method before the items are loaded. 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-08-26 00:45:53', '2019-07-08 14:16:53', 6, '', 119, '71680787-5da5-4ab8-afdf-1e109556743b', '', '', '', '', ''),
(789, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Add PHP (before getItems JModelList)', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"add_php_before_getitems\\\" \\r\\n\\tlabel=\\\"Add PHP (before getting the Items)\\\" \\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-08-26 01:02:15', '2015-10-04 16:48:31', 3, '', 188, 'b7aaa1d0-4577-46eb-9d09-b4c1104a02a8', '', '', '', '', ''),
(790, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Active (yes/no)', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"active\\\" \\r\\n\\tlabel=\\\"Active\\\" \\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-10 15:39:31', '0000-00-00 00:00:00', 1, '', 610, '7aaf9786-d3f1-42fb-9fbc-c9d3efd27016', '', '', '', '', ''),
(791, '', '', '', '', '', '', 'Other', '0000-00-00 00:00:00', '', '', 'DATETIME', '', '', '', 'Release Date', 'NOT NULL', '', 1, '\"<field \\r\\n\\ttype=\\\"calendar\\\" \\r\\n\\tname=\\\"release_date\\\" \\r\\n\\tlabel=\\\"Release Date\\\" \\r\\n\\tdefault=\\\"now\\\" \\r\\n\\trequired=\\\"true\\\"\\r\\n\\tsize=\\\"22\\\" \\r\\n\\tformat=\\\"%Y-%m-%d\\\"\\\" \\r\\n\\tfilter=\\\"user_utc\\\" \\r\\n\\/>\"', 1, '2015-10-10 16:08:24', '2015-09-12 00:03:53', 1, '', 167, 'e355c82c-3c62-493f-878f-53ee87fe2fb8', '', '', '', '', ''),
(792, '', '', '', '', '', '', 'Other', '0000-00-00 00:00:00', '', '', 'DATETIME', '', '', '', 'Active Until Date', 'NOT NULL', '', 1, '\"<field \\r\\n\\ttype=\\\"calendar\\\" \\r\\n\\tname=\\\"active_date\\\" \\r\\n\\tlabel=\\\"Active Until Date\\\" \\r\\n\\tdefault=\\\"now\\\" \\r\\n\\tsize=\\\"22\\\" \\r\\n\\tformat=\\\"%Y-%m-%d\\\"\\\" \\r\\n\\tfilter=\\\"user_utc\\\" \\r\\n\\/>\"', 1, '2015-10-10 16:09:44', '2015-09-12 00:03:53', 1, '', 167, 'f51cae1c-5791-4825-800f-efed5f5e3415', '', '', '', '', ''),
(793, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Dynamic xml Path', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"xmlpath\\\" \\r\\n\\tlabel=\\\"Dynamic Form XML Path\\\" \\r\\n\\tsize=\\\"10\\\" \\r\\n\\tmaxlength=\\\"150\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tdescription=\\\"Please set the path where the dynamically generated xml files (assessment\\/application forms) should be stored, make sure it is outside the public folder.\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\tfilter=\\\"PATH\\\" \\r\\n\\tmessage=\\\"Error! Please add the path where the dynamically generated xml should be stored here.\\\" \\r\\n\\thint=\\\"\\/home\\/username\\/temp\\\" \\r\\n\\/>\"', 1, '2015-10-15 16:24:27', '2015-09-26 09:23:57', 1, '', 592, '22407364-12f0-425a-94c0-deae02019bb0', '', '', '', '', ''),
(794, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Add WHMCS (license add-on)', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"add_license\\\" \\r\\n\\tlabel=\\\"Add WHMCS<br \\/><small>(license add-on)<\\/small>\\\" \\r\\n\\tdescription=\\\"Add the option to use the whmcs license add-on in the component.\\\" \\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-15 17:02:21', '2018-03-06 13:31:36', 5, '', 611, '6a5ed7a0-f841-4c28-a0d4-93b92454585d', '', '', '', '', ''),
(795, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'License Control Type', 'NOT NULL', '', 11, '\"<field \\r\\n\\ttype=\\\"list\\\" \\r\\n\\tname=\\\"license_type\\\" \\r\\n\\tlabel=\\\"Implementation\\\" \\r\\n\\tdescription=\\\"How should the license be implemented.\\\" \\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\tmultiple=\\\"false\\\" \\r\\n\\tfilter=\\\"int\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\toption=\\\"1|WHMCS encryption (only to lock data\\/fields),2|Updates (NOT READY!),3|Lock Down Use (used to verify ownership),4|Custom (used in custom code)\\\" \\r\\n\\tdefault=\\\"1\\\" \\r\\n\\/>\"', 1, '2015-10-15 17:13:42', '2018-03-06 13:35:03', 8, '', 612, 'f7deb9fd-378b-4891-b8c2-aa1eb526b968', '', '', '', '', ''),
(796, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Dynamic Ordering Option', 'NOT NULL', '', 11, '\"<field \\r\\n\\ttype=\\\"list\\\" \\r\\n\\tname=\\\"ordering_option\\\" \\r\\n\\tlabel=\\\"Ordering Option\\\" \\r\\n\\tdescription=\\\"Set the way the questions should be ordered.\\\" \\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\tmultiple=\\\"false\\\" \\r\\n\\tfilter=\\\"INT\\\" \\r\\n\\trequired=\\\"\\\" \\r\\n\\toption=\\\"|Please Select,1|Default Order,2|Shuffled\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\/>\"', 1, '2015-10-16 11:19:32', '2015-10-18 11:03:45', 3, '', 613, 'fb07f41f-46d7-4a9e-ac9d-a7f90b2821ac', '', '', '', '', ''),
(797, '', '', '', '', '', '', 1, '', 1, '', 'TINYINT', 2, '', '', 'Dynamic Build Method', 'NOT NULL', '', 11, '\"<field \\r\\n\\ttype=\\\"list\\\" \\r\\n\\tname=\\\"build_method\\\" \\r\\n\\tlabel=\\\"Build Method\\\" \\r\\n\\tdescription=\\\"Set the method that should be used during the dynamic build of the assessment.\\\" \\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\tmultiple=\\\"false\\\" \\r\\n\\tfilter=\\\"INT\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\toption=\\\"1|Always New,2|New Per\\/Session,3|Build Once,4|Same For\\/All\\\" \\r\\n\\tdefault=\\\"1\\\" \\r\\n\\/>\"', 1, '2015-10-17 21:43:39', '2015-10-18 11:03:55', 5, '', 614, 'cf92f339-013b-4f62-b820-e4a725d46a85', '', '', '', '', ''),
(798, '', '', '', '', '', '', '', '', 7, '', 'INT', '', '', '', 'Dynamic Mismatch Buffer', 'NOT NULL', '', 10, '\"<field \\r\\n\\ttype=\\\"integer\\\" \\r\\n\\tname=\\\"mismatch_buffer\\\" \\r\\n\\tlabel=\\\"Mismatch Buffer\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tdescription=\\\"Set the percent used to compensate question type mismatch, to allow other question types to be used instead.\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\trequired=\\\"\\\" \\r\\n\\tfirst=\\\"1\\\" \\r\\n\\tlast=\\\"100\\\" \\r\\n\\tstep=\\\"1\\\" \\r\\n\\/>\"', 1, '2015-10-17 21:59:09', '2015-10-18 11:04:03', 2, '', 614, 'abf4ab48-fe33-49d5-8b9a-4e994d69f52b', '', '', '', '', ''),
(799, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Debug Line numbers', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"debug_linenr\\\" \\r\\n\\tlabel=\\\"Debug (line numbers)\\\" \\r\\n\\tdescription=\\\"Add corresponding line numbers to the dynamic comments, so to see where in the compiler the lines of code was build. This will help if you need to get more technical with an issue on github.\\\" \\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-20 17:19:55', '2017-02-13 21:48:57', 2, '', 615, 'f5e0c377-6689-4f79-9a35-41a1bfc58ba5', '', '', '', '', ''),
(800, '', '', '', '', '', '', 1, '', 1, '', 'TINYINT', 2, '', '', 'Text Answer Box (mode)', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"text_input_mode\\\" \\r\\n\\tlabel=\\\"Text Answer Input Box\\\" \\r\\n\\tdescription=\\\"Select text answers input box mode. Allowing HTML will load an editor and allow HTML formatting. Plain text area will only allow plain text.\\\" \\r\\n\\tclass=\\\"btn-group btn-group-yesno\\\" \\r\\n\\toption=\\\"2|Allow HTML,1|Plain Text\\\" \\r\\n\\tdefault=\\\"2\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\/>\"', 1, '2015-10-20 17:43:58', '2015-10-20 17:51:11', 2, '', 616, '56653161-922c-4448-9f69-2f60ce7c05da', '', '', '', '', ''),
(801, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Review Note', 'NOT NULL', '', 25, '\"<field \\r\\n\\ttype=\\\"textarea\\\" \\r\\n\\tname=\\\"review_note\\\" \\r\\n\\tlabel=\\\"Review Note\\\" \\r\\n\\trows=\\\"25\\\" \\r\\n\\tcols=\\\"5\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tdescription=\\\"\\\" \\r\\n\\tclass=\\\"text_area span12\\\" \\r\\n\\tfilter=\\\"STRING\\\" \\r\\n\\thint=\\\"\\\" \\r\\n\\trequired=\\\"\\\" \\r\\n\\/>\"', 1, '2015-10-20 20:46:05', '2015-10-20 21:10:21', 3, '', 129, '1ef6406a-f49c-4696-aebd-e89433a9d0f3', '', '', '', '', ''),
(802, '', '', '', '', '', '', 1, '', 1, '', 'TINYINT', 2, '', '', 'Button Position', 'NOT NULL', '', 11, '\"<field \\r\\n\\ttype=\\\"list\\\" \\r\\n\\tname=\\\"button_position\\\" \\r\\n\\tlabel=\\\"Button Position\\\" \\r\\n\\tdescription=\\\"Select the button position of buttons in the view. You can with [[[SITE_TOOLBAR]]] add the toolbar anywhere in the site view, select custom in that case.\\\" \\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\tmultiple=\\\"false\\\" \\r\\n\\tfilter=\\\"INT\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\toption=\\\"0|None,1|Top Right,2|Top Left,3|Bottom Right,4|Bottom Left,5|Custom\\\" \\r\\n\\tdefault=\\\"2\\\" \\r\\n\\/>\"', 1, '2015-10-26 14:06:04', '2015-12-06 12:53:33', 4, '', 617, '29a26946-d7c3-4ea0-be64-8e376d2a7f25', '', '', '', '', ''),
(803, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Build Option (files)', 'NOT NULL', '', 11, '\"<field \\r\\n\\ttype=\\\"list\\\" \\r\\n\\tname=\\\"build\\\" \\r\\n\\tlabel=\\\"Build Option\\\" \\r\\n\\tdescription=\\\"Set the method used to add files.\\\" \\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\toption=\\\"|Select an option,1|Manual Local Selection,2|Dynamic Automatic Build\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tfilter=\\\"INT\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\tmultiple=\\\"false\\\" \\r\\n\\/>\"', 1, '2015-10-28 07:22:28', '2016-11-04 03:01:57', 4, '', 618, 'b57175f7-19eb-4ba7-b9c0-b8f1389e3583', '', '', '', '', ''),
(804, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'File Source', 'NOT NULL', '', 11, '\"<field \\r\\n\\ttype=\\\"list\\\" \\r\\n\\tname=\\\"source\\\" \\r\\n\\tlabel=\\\"File Source\\\" \\r\\n\\tdescription=\\\"Select the source of the file.\\\" \\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\tmultiple=\\\"false\\\" \\r\\n\\tfilter=\\\"INT\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\toption=\\\"|Select Source,1|Local Folder,2|External Source,3|URL\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\/>\"', 1, '2015-10-28 07:29:46', '2016-11-04 01:40:45', 4, '', 619, '921a318f-2c0d-437d-9a04-9b4b8deef71b', '', '', '', '', ''),
(805, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'URL (File Source)', 'NOT NULL', '', 27, '\"<field \\r\\n\\ttype=\\\"url\\\" \\r\\n\\tname=\\\"url\\\" \\r\\n\\tlabel=\\\"File URL\\\" \\r\\n\\tsize=\\\"40\\\" \\r\\n\\tmaxlength=\\\"120\\\" \\r\\n\\tdescription=\\\"Enter source URL of this file.\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\tfilter=\\\"url\\\" \\r\\n\\tvalidated=\\\"url\\\" \\r\\n\\tmessage=\\\"Error! Please add source URL here.\\\" \\r\\n\\thint=\\\"http:\\/\\/www.domain.com\\/download-link\\\" \\r\\n\\/>\"', 1, '2015-10-28 07:36:25', '0000-00-00 00:00:00', 1, '', 620, '853510df-9a90-4f9b-95fb-5fd92e12a99f', '', '', '', '', ''),
(806, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Local Folder Path (File Source)', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"localfolder\\\" \\r\\n\\tlabel=\\\"Local Folder Path (File Source)\\\" \\r\\n\\tsize=\\\"40\\\" \\r\\n\\tmaxlength=\\\"150\\\" \\r\\n\\tdescription=\\\"Enter the full path to the local folder where your files are found.\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\tfilter=\\\"PATH\\\"\\r\\n\\tmessage=\\\"Error! Please add path to local folder here.\\\" \\r\\n\\thint=\\\"\\/home\\/username\\/localfolder\\/\\\" \\r\\n\\/>\"', 1, '2015-10-28 07:41:02', '2015-10-29 22:22:18', 2, '', 621, 'b9769741-2360-4408-833c-9a54d0731f5f', '', '', '', '', ''),
(807, '', '', '', '', '', '', 1, '', 1, '', 'TINYINT', 2, '', '', 'Download Link Option', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"link_type\\\" \\r\\n\\tlabel=\\\"Download Link Option\\\" \\r\\n\\tdescription=\\\"Set the method used to build download links.\\\" \\r\\n\\tclass=\\\"btn-group btn-group-yesno\\\" \\r\\n\\toption=\\\"1|Encrypted,2|Direct\\\" \\r\\n\\tdefault=\\\"1\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\/>\"', 1, '2015-10-28 07:47:50', '2015-11-10 08:40:06', 4, '', 622, '960ed5c9-4edc-4de7-9c6d-0a78b04387bb', '', '', '', '', ''),
(808, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'tShared-url', 'NOT NULL', '', 27, '\"<field \\r\\n\\ttype=\\\"url\\\" \\r\\n\\tname=\\\"tshared-url\\\" \\r\\n\\tlabel=\\\"Shared-url\\\" \\r\\n\\tsize=\\\"40\\\" \\r\\n\\tmaxlength=\\\"120\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tdescription=\\\"Enter the shared-url of the main folder to target. The shared-url must be from the account where you generated the access token.\\\" \\r\\n\\tclass=\\\"text_area span12\\\" \\r\\n\\treadonly=\\\"\\\" \\r\\n\\tdisabled=\\\"\\\" \\r\\n\\trequired=\\\"false\\\" \\r\\n\\tfilter=\\\"url\\\" \\r\\n\\tvalidated=\\\"url\\\" \\r\\n\\tmessage=\\\"Error! Please add shared-url here.\\\" \\r\\n\\thint=\\\"https:\\/\\/www.dropbox.com\\/shared-link-from-dropbox-to-main-folder?dl=0\\\" \\r\\n\\/>\"', 1, '2015-10-28 19:37:26', '2016-11-07 16:32:56', 12, '', 601, '36f90449-099d-4716-ad1c-c7eea7c7f63a', '', '', '', '', ''),
(809, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Dropbox manual shared-url 1', 'NOT NULL', '', 27, '\"<field \\r\\n\\ttype=\\\"url\\\" \\r\\n\\tname=\\\"manual-dropbox-1\\\" \\r\\n\\tlabel=\\\"Dropbox Manual (Shared-url 1)\\\" \\r\\n\\tsize=\\\"40\\\" \\r\\n\\tmaxlength=\\\"120\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tdescription=\\\"Enter the shared-url of the main manual Dropbox folder to target, this will link the files.\\\" \\r\\n\\tclass=\\\"text_area span12\\\" \\r\\n\\treadonly=\\\"\\\" \\r\\n\\tdisabled=\\\"\\\" \\r\\n\\trequired=\\\"false\\\" \\r\\n\\tfilter=\\\"url\\\" \\r\\n\\tvalidated=\\\"url\\\" \\r\\n\\tmessage=\\\"Error! Please add Dropbox shared-url here.\\\" \\r\\n\\thint=\\\"https:\\/\\/www.dropbox.com\\/shared-link-from-dropbox-to-main-folder?dl=0\\\" \\r\\n\\tshowon=\\\"dropboxoptions:1\\\" \\r\\n\\/>\"', 2, '2015-10-28 19:38:36', '2016-11-02 02:30:13', 8, '', 601, '1968cc65-f7e8-4bf8-9c58-183703b09dc0', '', '', '', '', ''),
(810, '', '', '', '', '', '', '', '', '', '', 'CHAR', '', '', '', 'Dropbox Note (sermons)', 'NOT NULL', '', 14, '\"<field \\r\\n\\ttype=\\\"note\\\" \\r\\n\\tname=\\\"note_dropbox\\\" \\r\\n\\tlabel=\\\"Dropbox Integration Made Easy!\\\" \\r\\n\\tdescription=\\\"\\\" \\r\\n\\theading=\\\"h4\\\" \\r\\n\\tclass=\\\"alert alert-info\\\" \\r\\n\\/>\"', 2, '2015-10-28 20:15:31', '2016-11-04 00:26:49', 8, '', 603, '6a0ce44d-0bcf-4a36-bfd7-230670a09538', '', '', '', '', ''),
(811, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'Sermon Category', 'NOT NULL', '', 2, '\"<field\\n\\ttype=\\\"category\\\"\\n\\tname=\\\"cid\\\"\\n\\tlabel=\\\"Category\\\"\\n\\textension=\\\"com_sermondistributor.sermon\\\"\\n\\trequired=\\\"false\\\"\\n\\tdescription=\\\"select one of the following categories\\\"\\n\\tclass=\\\"inputbox\\\"\\n\\/>\"', 1, '2015-10-28 21:41:25', '2020-10-09 13:34:28', 5, '', 623, '6d16b726-7d73-4447-a7f7-622597bf1731', '', '', '', '', ''),
(812, '', '', '', '', '', '', '', '', 11, '', 'CHAR', '', '', '', 'Sermon Tags', 'NOT NULL', '', 22, '\"<field\\n\\ttype=\\\"tag\\\"\\n\\tname=\\\"tags\\\"\\n\\tmode=\\\"ajax\\\"\\n\\tlabel=\\\"Tags\\\"\\n\\tdescription=\\\"Assign tags to ###VIEW### items. Tag names must be unique.\\\"\\n\\tpublished=\\\"true\\\"\\n\\tmultiple=\\\"true\\\"\\n\\/>\"', 1, '2015-10-28 21:43:36', '2024-01-19 08:10:15', 2, '', 624, '8af63ced-a1e6-43c1-8a4d-e0c9d26f8bf1', '', '', '', '', ''),
(813, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'Sermon Series', 'NOT NULL', '', 6, '\"<field\\n\\ttype=\\\"series\\\"\\n\\tname=\\\"series\\\"\\n\\tlabel=\\\"Series\\\"\\n\\tdescription=\\\"Select the series this sermon belongs to.\\\"\\n\\tclass=\\\"list_class\\\"\\n\\tmultiple=\\\"false\\\"\\n\\tdefault=\\\"0\\\"\\n\\trequired=\\\"\\\"\\n\\treadonly=\\\"\\\"\\n\\tdisabled=\\\"\\\"\\n\\textends=\\\"list\\\"\\n\\tbutton=\\\"true\\\"\\n\\ttable=\\\"#__###component###_series\\\"\\n\\tcomponent=\\\"com_###component###\\\"\\n\\tview=\\\"series\\\"\\n\\tviews=\\\"all_series\\\"\\n\\tvalue_field=\\\"name\\\"\\n\\tkey_field=\\\"id\\\"\\n\\tprime_php=\\\"1\\\"\\n\\ttype_php_1=\\\"__.o0=base64=Oo.__Ly8gR2V0IHRoZSBkYXRhYmFzZSBvYmplY3QuDQoJCSRkYiA9IEpGYWN0b3J5OjpnZXREQk8oKTsNCgkJJHF1ZXJ5ID0gJGRiLT5nZXRRdWVyeSh0cnVlKTsNCgkJJHF1ZXJ5LT5zZWxlY3QoJGRiLT5xdW90ZU5hbWUoYXJyYXkoJ2EuIyMjSUQjIyMnLCdhLiMjI1RFWFQjIyMnKSxhcnJheSgnIyMjSUQjIyMnLCcjIyNDT0RFX1RFWFQjIyMnKSkpOw0KCQkkcXVlcnktPmZyb20oJGRiLT5xdW90ZU5hbWUoJyMjI1RBQkxFIyMjJywgJ2EnKSk7DQoJCSRxdWVyeS0+d2hlcmUoJGRiLT5xdW90ZU5hbWUoJ2EucHVibGlzaGVkJykgLiAnID0gMScpOw0KCQkkcXVlcnktPm9yZGVyKCdhLiMjI1RFWFQjIyMgQVNDJyk7DQoJCSRkYi0+c2V0UXVlcnkoKHN0cmluZykkcXVlcnkpOw0KCQkkaXRlbXMgPSAkZGItPmxvYWRPYmplY3RMaXN0KCk7DQoJCSRvcHRpb25zID0gYXJyYXkoKTsNCgkJaWYgKCRpdGVtcykNCgkJew0KCQkJaWYgKCR0aGlzLT5tdWx0aXBsZSA9PT0gZmFsc2UpDQoJCQl7DQoJCQkJJG9wdGlvbnNbXSA9IEpIdG1sOjpfKCdzZWxlY3Qub3B0aW9uJywgJycsIEpUZXh0OjpfKCdTZWxlY3QgYSBzZXJpZXMnKSk7DQoJCQl9DQoJCQlmb3JlYWNoKCRpdGVtcyBhcyAkaXRlbSkNCgkJCXsNCgkJCQkkb3B0aW9uc1tdID0gSkh0bWw6Ol8oJ3NlbGVjdC5vcHRpb24nLCAkaXRlbS0+IyMjSUQjIyMsICRpdGVtLT4jIyNDT0RFX1RFWFQjIyMpOw0KCQkJfQ0KCQl9DQoNCgkJcmV0dXJuICRvcHRpb25zOw==\\\"\\n\\/>\"', 1, '2015-10-29 00:37:23', '2020-11-30 02:20:56', 5, '', 625, '21179305-7714-445a-8f14-cb19d10e50a3', '', '', '', '', ''),
(814, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'Sermon Preacher', 'NOT NULL', '', 6, '\"<field\\n\\ttype=\\\"preachers\\\"\\n\\tname=\\\"preacher\\\"\\n\\tlabel=\\\"Preacher\\\"\\n\\tdescription=\\\"Select the preacher this sermon belongs to.\\\"\\n\\tclass=\\\"list_class\\\"\\n\\tmultiple=\\\"false\\\"\\n\\tdefault=\\\"0\\\"\\n\\textends=\\\"list\\\"\\n\\tbutton=\\\"true\\\"\\n\\ttable=\\\"#__###component###_preacher\\\"\\n\\tcomponent=\\\"com_###component###\\\"\\n\\tview=\\\"preacher\\\"\\n\\tviews=\\\"preachers\\\"\\n\\tvalue_field=\\\"name\\\"\\n\\tkey_field=\\\"id\\\"\\n\\tprime_php=\\\"1\\\"\\n\\ttype_php_1=\\\"__.o0=base64=Oo.__Ly8gR2V0IHRoZSBkYXRhYmFzZSBvYmplY3QuDQoJCSRkYiA9IEpGYWN0b3J5OjpnZXREQk8oKTsNCgkJJHF1ZXJ5ID0gJGRiLT5nZXRRdWVyeSh0cnVlKTsNCgkJJHF1ZXJ5LT5zZWxlY3QoJGRiLT5xdW90ZU5hbWUoYXJyYXkoJ2EuIyMjSUQjIyMnLCdhLiMjI1RFWFQjIyMnKSxhcnJheSgnIyMjSUQjIyMnLCcjIyNDT0RFX1RFWFQjIyMnKSkpOw0KCQkkcXVlcnktPmZyb20oJGRiLT5xdW90ZU5hbWUoJyMjI1RBQkxFIyMjJywgJ2EnKSk7DQoJCSRxdWVyeS0+d2hlcmUoJGRiLT5xdW90ZU5hbWUoJ2EucHVibGlzaGVkJykgLiAnID0gMScpOw0KCQkkcXVlcnktPm9yZGVyKCdhLiMjI1RFWFQjIyMgQVNDJyk7DQoJCSRkYi0+c2V0UXVlcnkoKHN0cmluZykkcXVlcnkpOw0KCQkkaXRlbXMgPSAkZGItPmxvYWRPYmplY3RMaXN0KCk7DQoJCSRvcHRpb25zID0gYXJyYXkoKTsNCgkJaWYgKCRpdGVtcykNCgkJew0KCQkJaWYgKCR0aGlzLT5tdWx0aXBsZSA9PT0gZmFsc2UpDQoJCQl7DQoJCQkJJG9wdGlvbnNbXSA9IEpIdG1sOjpfKCdzZWxlY3Qub3B0aW9uJywgJycsIEpUZXh0OjpfKCdTZWxlY3QgYSBwcmVhY2hlcicpKTsNCgkJCX0NCgkJCWZvcmVhY2goJGl0ZW1zIGFzICRpdGVtKQ0KCQkJew0KCQkJCSRvcHRpb25zW10gPSBKSHRtbDo6Xygnc2VsZWN0Lm9wdGlvbicsICRpdGVtLT4jIyNJRCMjIywgJGl0ZW0tPiMjI0NPREVfVEVYVCMjIyk7DQoJCQl9DQoJCX0NCg0KCQlyZXR1cm4gJG9wdGlvbnM7\\\"\\n\\/>\"', 1, '2015-10-29 00:40:19', '2020-11-30 02:21:45', 7, '', 626, '269022e1-977f-4e3a-a07d-36feff498088', '', '', '', '', ''),
(815, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Dropbox auto shared-url 2', 'NOT NULL', '', 27, '\"<field \\r\\n\\ttype=\\\"url\\\" \\r\\n\\tname=\\\"auto-dropbox-2\\\" \\r\\n\\tlabel=\\\"Dropbox Auto (Shared-url 2)\\\" \\r\\n\\tsize=\\\"40\\\" \\r\\n\\tmaxlength=\\\"120\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tdescription=\\\"Enter the shared-url of the main Dropbox folder to target, this will link the files.\\\" \\r\\n\\tclass=\\\"text_area span12\\\" \\r\\n\\treadonly=\\\"\\\" \\r\\n\\tdisabled=\\\"\\\" \\r\\n\\trequired=\\\"false\\\" \\r\\n\\tfilter=\\\"url\\\" \\r\\n\\tvalidated=\\\"url\\\" \\r\\n\\tmessage=\\\"Error! Please add Dropbox folder shared-url here.\\\" \\r\\n\\thint=\\\"https:\\/\\/www.dropbox.com\\/shared-link-from-dropbox-to-main-folder?dl=0\\\" \\r\\n\\tshowon=\\\"dropboxoptions:1\\\" \\r\\n\\/>\"', 2, '2015-10-29 09:52:13', '2016-11-04 15:36:10', 6, '', 601, '3cb2685b-d37b-46ce-96f0-3af8e20c25db', '', '', '', '', ''),
(816, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Shared-url 3', 'NOT NULL', '', 27, '\"<field \\r\\n\\ttype=\\\"url\\\" \\r\\n\\tname=\\\"shared-url-3\\\" \\r\\n\\tlabel=\\\"Shared-url 3\\\" \\r\\n\\tsize=\\\"40\\\" \\r\\n\\tmaxlength=\\\"120\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tdescription=\\\"Enter the shared-url of the main folder to target. The shared-url must be from the account where you generated the access token.\\\" \\r\\n\\tclass=\\\"text_area span12\\\" \\r\\n\\treadonly=\\\"\\\" \\r\\n\\tdisabled=\\\"\\\" \\r\\n\\trequired=\\\"false\\\" \\r\\n\\tfilter=\\\"url\\\" \\r\\n\\tvalidated=\\\"url\\\" \\r\\n\\tmessage=\\\"Error! Please add shared-url here.\\\" \\r\\n\\thint=\\\"https:\\/\\/www.dropbox.com\\/shared-link-from-dropbox-to-main-folder?dl=0\\\" \\r\\n\\/>\"', 2, '2015-10-29 09:52:34', '2016-11-03 21:08:42', 8, '', 601, '00755b1a-55b9-4217-9a6c-8b527632d02f', '', '', '', '', ''),
(817, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Shared-url 4', 'NOT NULL', '', 27, '\"<field \\r\\n\\ttype=\\\"url\\\" \\r\\n\\tname=\\\"shared-url-4\\\" \\r\\n\\tlabel=\\\"Shared-url 4\\\" \\r\\n\\tsize=\\\"40\\\" \\r\\n\\tmaxlength=\\\"120\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tdescription=\\\"Enter the shared-url of the main folder to target. The shared-url must be from the account where you generated the access token.\\\" \\r\\n\\tclass=\\\"text_area span12\\\" \\r\\n\\treadonly=\\\"\\\" \\r\\n\\tdisabled=\\\"\\\" \\r\\n\\trequired=\\\"false\\\" \\r\\n\\tfilter=\\\"url\\\" \\r\\n\\tvalidated=\\\"url\\\" \\r\\n\\tmessage=\\\"Error! Please add shared-url here.\\\" \\r\\n\\thint=\\\"https:\\/\\/www.dropbox.com\\/shared-link-from-dropbox-to-main-folder?dl=0\\\" \\r\\n\\/>\"', 2, '2015-10-29 09:52:52', '2016-11-03 21:08:37', 7, '', 601, '7aca77ec-3fe1-4909-a5c6-1c274e6aed5c', '', '', '', '', ''),
(818, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Dropbox manual shared-url 2', 'NOT NULL', '', 27, '\"<field \\r\\n\\ttype=\\\"url\\\" \\r\\n\\tname=\\\"manual-dropbox-2\\\" \\r\\n\\tlabel=\\\"Dropbox Manual (Shared-url 2)\\\" \\r\\n\\tsize=\\\"40\\\" \\r\\n\\tmaxlength=\\\"120\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tdescription=\\\"Enter the shared-url of the main manual Dropbox folder to target, this will link the files.\\\" \\r\\n\\tclass=\\\"text_area span12\\\" \\r\\n\\treadonly=\\\"\\\" \\r\\n\\tdisabled=\\\"\\\" \\r\\n\\trequired=\\\"false\\\" \\r\\n\\tfilter=\\\"url\\\" \\r\\n\\tvalidated=\\\"url\\\" \\r\\n\\tmessage=\\\"Error! Please add Dropbox shared-url here.\\\" \\r\\n\\thint=\\\"https:\\/\\/www.dropbox.com\\/shared-link-from-dropbox-to-main-folder?dl=0\\\" \\r\\n\\tshowon=\\\"dropboxoptions:1\\\" \\r\\n\\/>\"', 2, '2015-10-29 09:54:15', '2016-11-02 02:30:22', 5, '', 601, 'b8e3604f-8c34-44ab-9f2b-036493a93548', '', '', '', '', ''),
(819, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Dropbox manual shared-url 3', 'NOT NULL', '', 27, '\"<field \\r\\n\\ttype=\\\"url\\\" \\r\\n\\tname=\\\"manual-dropbox-3\\\" \\r\\n\\tlabel=\\\"Dropbox Manual (Shared-url 3)\\\" \\r\\n\\tsize=\\\"40\\\" \\r\\n\\tmaxlength=\\\"120\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tdescription=\\\"Enter the shared-url of the main manual Dropbox folder to target, this will link the files.\\\" \\r\\n\\tclass=\\\"text_area span12\\\" \\r\\n\\treadonly=\\\"\\\" \\r\\n\\tdisabled=\\\"\\\" \\r\\n\\trequired=\\\"false\\\" \\r\\n\\tfilter=\\\"url\\\" \\r\\n\\tvalidated=\\\"url\\\" \\r\\n\\tmessage=\\\"Error! Please add Dropbox shared-url here.\\\" \\r\\n\\thint=\\\"https:\\/\\/www.dropbox.com\\/shared-link-from-dropbox-to-main-folder?dl=0\\\" \\r\\n\\tshowon=\\\"dropboxoptions:1\\\" \\r\\n\\/>\"', 2, '2015-10-29 09:54:26', '2016-11-02 02:30:29', 5, '', 601, 'fe5083e2-1ddd-4edb-a1a7-17acb7ebe706', '', '', '', '', ''),
(820, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Dropbox manual shared-url 4', 'NOT NULL', '', 27, '\"<field \\r\\n\\ttype=\\\"url\\\" \\r\\n\\tname=\\\"manual-dropbox-4\\\" \\r\\n\\tlabel=\\\"Dropbox Manual (Shared-url 4)\\\" \\r\\n\\tsize=\\\"40\\\" \\r\\n\\tmaxlength=\\\"120\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tdescription=\\\"Enter the shared-url of the main manual Dropbox folder to target, this will link the files.\\\" \\r\\n\\tclass=\\\"text_area span12\\\" \\r\\n\\treadonly=\\\"\\\" \\r\\n\\tdisabled=\\\"\\\" \\r\\n\\trequired=\\\"false\\\" \\r\\n\\tfilter=\\\"url\\\" \\r\\n\\tvalidated=\\\"url\\\" \\r\\n\\tmessage=\\\"Error! Please add Dropbox shared-url here.\\\" \\r\\n\\thint=\\\"https:\\/\\/www.dropbox.com\\/shared-link-from-dropbox-to-main-folder?dl=0\\\" \\r\\n\\tshowon=\\\"dropboxoptions:1\\\" \\r\\n\\/>\"', 2, '2015-10-29 09:54:38', '2016-11-02 02:30:37', 6, '', 601, 'f7bd2d8d-23cc-4c5a-9924-f205cfe655ef', '', '', '', '', ''),
(821, '', '', '', '', '', '', '', '', '', '', 'CHAR', '', '', '', 'External Source Manual Note', 'NOT NULL', '', 14, '\"<field \\r\\n\\ttype=\\\"note\\\" \\r\\n\\tname=\\\"note_manual_externalsource\\\" \\r\\n\\tlabel=\\\"External Source Integration\\\" \\r\\n\\tdescription=\\\"<b>To integrate manual External Source option with your system you need to do the following:<\\/b> \\r\\n\\t <ul>\\r\\n\\t\\t <li>Create main\\/first manual folder in External Source. This will be where all files are placed. No sub folders, just one huge folder with all the files!<\\/li>\\r\\n\\t\\t <li>You will place the file on External Source in that main folder first.<\\/li>\\r\\n\\t\\t <li>Then the next step will be to come to Sermon Distributor and create the preacher and series if they do not already exist.<\\/li>\\r\\n\\t\\t <li>Please allow enough time (as set in Sermon Distributor Options) for the local listing of files to update.<\\/li>\\r\\n\\t\\t <li>Then you should create the sermon the file belongs to and select \'External Source\' as the source of your file.<\\/li>\\r\\n\\t\\t <li>Next select \'Manual\' as the build option. This will load a drop-down with the file names in the Manual Folder on External Source. Should the new file not be seen give it a little more time to update the local listing of files.<\\/li>\\r\\n\\t\\t <li>If the List is very long, you can in the select box type the name of the file and it will shorten the list. Then select your file and continue with the setup of the sermon as usual.<\\/li>\\r\\n\\t\\t <li>To ensure that all downloads work well, we need to hold to the following file naming convention:\\r\\n\\t\\t <ul>\\r\\n <li>No spaces in the file name!!<\\/li>\\r\\n <li>No strange characters in the file name only A-z 0-9 underscore and hyphen.<\\/li>\\r\\n <\\/ul> \\r\\n\\t\\t <\\/li>\\r\\n\\t <\\/ul>\\\" \\r\\n\\theading=\\\"h4\\\" \\r\\n\\tclass=\\\"alert alert-info\\\" \\r\\n\\/>\"', 1, '2015-10-29 11:00:56', '2016-11-27 18:59:08', 11, '', 627, '967e4691-2e39-41e8-9f74-c431a830d026', '', '', '', '', ''),
(822, '', '', '', '', '', '', '', '', '', '', 'CHAR', '', '', '', 'External Source Auto Note', 'NOT NULL', '', 14, '\"<field \\r\\n\\ttype=\\\"note\\\" \\r\\n\\tname=\\\"note_auto_externalsource\\\" \\r\\n\\tlabel=\\\"External Source Integration\\\" \\r\\n\\tdescription=\\\"<b>To integrate auto External Source with your system you need to do the following:<\\/b> <ul>\\r\\n\\t\\t <li>Create main\\/first auto folder in External Source. This will be where you create the folders with the preacher\'s name. Using the preacher\'s alias from the system as the folder name will insure no mismatch, if the preacher already exist on the system.<\\/li>\\r\\n\\t\\t <li>You can add files directly to the preacher folder if it is not linked to a series.<\\/li>\\r\\n\\t\\t <li>If you would like the sermon linked to a series, you simply create a folder inside the preacher\'s folder with the series\' name, and place the sermon file inside that series\' folder. Using the series\' alias from the system as the folder name will insure no mismatch, if the series already exist on the system.<\\/li>\\r\\n\\t\\t <li>Adding other preachers to the same series will only require creating a folder inside that preacher\'s folder with the same series\' name and placing his sermons inside that new folder. Using the series\' alias from the system as the folder name will insure no mismatch, if the series already exist on the system.<\\/li>\\r\\n\\t\\t <li>The file name will be used as the sermon name.<\\/li>\\r\\n\\t\\t <li>To ensure that all downloads work well, we need to hold to the following file naming convention:\\r\\n\\t\\t <ul>\\r\\n <li>No spaces in the file name!!<\\/li>\\r\\n <li>No strange characters in the file name only A-z 0-9 underscore and hyphen.<\\/li>\\r\\n <\\/ul> \\r\\n\\t\\t <\\/li>\\r\\n\\t\\t <li>We use naming conventions to add tags, categories, a short description and combine files under one sermon, these conventions are as follow:\\r\\n\\t\\t <ul>\\r\\n <li>To combine files\\r\\n <ul>\\r\\n <li>Use a KEY name with TWO underscores before the actual name, example (34key521__the_file_name.mp3 & 34key521__another_file_of_the_same_sermon.pdf)<\\/li>\\r\\n <li>The KEY may only have alpha numeric characters (A-z 0-9).<\\/li>\\r\\n <li>You can combine as many files as you like under each sermon with the unique KEY.<\\/li>\\r\\n <li>There are two ways to set the sermon name with combined files:\\r\\n <ul>\\r\\n <li>All Uppercase. example (34key521__THE_FILE_NAME.mp3 & 34key521__another_file_of_the_same_sermon.pdf).<\\/li>\\r\\n <li>Longest file name if no all-uppercase file name is found. If two file names are the same length the first one is used.<\\/li>\\r\\n <\\/ul>\\r\\n <\\/li>\\r\\n <li>Uppercase option is the most trusted method since this will insure you get what you expected.<\\/li>\\r\\n <\\/ul>\\r\\n <\\/li>\\r\\n <li>To tag files\\r\\n <ul>\\r\\n <li>Directly after the file name add THREE underscores and then set the tags, example (the_file_name___tag1_tag-with2_tag-three.mp3)<\\/li>\\r\\n <li>You can add as many tags to a file as you like separated by one underscore and hyphen for spaces in a tag.<\\/li>\\r\\n <li>Combined files only need to have the tags added to one of the files. If one of the files has a tag that was not already found it will also be added to the sermon as a whole since the combined files are treated as one sermon.<\\/li>\\r\\n <\\/ul>\\r\\n <\\/li>\\r\\n <li>To add sermons to categories\\r\\n <ul>\\r\\n <li>Directly after the file name add FOUR underscores and then set the category name, example (the_file_name____Salvation_Messages.mp3)<\\/li>\\r\\n <li>You can add only one category per sermon. Combined files only need to have the category name added to one of the files.<\\/li>\\r\\n <\\/ul>\\r\\n <\\/li>\\r\\n <li>To add a short description\\r\\n <ul>\\r\\n <li>Directly after the file name add FIVE underscores and then set the description, example (the_file_name_____The_short_description_can_only_be_one_sentence.mp3)<\\/li>\\r\\n <li>You can not use any strange characters, only (A-z 0-9) and underscore for spacing.<\\/li>\\r\\n <li>You can add only one short description per sermon. Combined files only need to have the short description added to one of the files.<\\/li>\\r\\n <\\/ul>\\r\\n <\\/li>\\r\\n <\\/ul> \\r\\n\\t\\t <\\/li>\\r\\n\\t\\t <li>When you use all the naming conventions together they should follow the following order:\\r\\n <ul>\\r\\n <li>KEY before the file name with TWO underscores.<\\/li>\\r\\n <li>TAGS must be first after the file name with THREE underscores.<\\/li>\\r\\n <li>CATEGORY must be first after TAGS with FOUR underscores. IF no tags were set then it must be first after the FILE NAME with FOUR underscores.<\\/li>\\r\\n <li>SHORT DESCRIPTION must be first after CATEGORY with FIVE underscores. IF no category was set then it must be first after the TAGS with FIVE underscores. IF no tags were set then it must be first after the FILE NAME with FIVE underscores.<\\/li>\\r\\n <\\/ul>\\r\\n\\t\\t <\\/li>\\r\\n\\t\\t <li>Adding folders and sermons will automatically load them to your sermon distributor on your website, or update the already existing sermons with the new files.<\\/li>\\r\\n\\t <\\/ul><\\/li>\\r\\n<\\/ul>\\\" \\r\\n\\theading=\\\"h4\\\" \\r\\n\\tclass=\\\"alert alert-info\\\" \\r\\n\\/>\"', 1, '2015-10-29 11:03:02', '2016-11-27 18:58:41', 12, '', 627, '1b7f96e7-c0f5-4e83-be7b-82c028774bab', '', '', '', '', ''),
(823, '', '', '', '', '', '', '', '', '', '', 'CHAR', '', '', '', 'External Source Auto Note (in sermons)', 'NOT NULL', '', 14, '\"<field \\r\\n\\ttype=\\\"note\\\" \\r\\n\\tname=\\\"note_auto_externalsource\\\" \\r\\n\\tlabel=\\\"External Source Integration\\\" \\r\\n\\tdescription=\\\"<b>To integrate auto External Source with your system you need to do the following:<\\/b> <ul>\\r\\n\\t\\t <li>Create main\\/first auto folder in External Source. This will be where you create the folders with the preacher\'s name. Using the preacher\'s alias from the system as the folder name will insure no mismatch, if the preacher already exist on the system.<\\/li>\\r\\n\\t\\t <li>You can add files directly to the preacher folder if it is not linked to a series.<\\/li>\\r\\n\\t\\t <li>If you would like the sermon linked to a series, you simply create a folder inside the preacher\'s folder with the series\' name, and place the sermon file inside that series\' folder. Using the series\' alias from the system as the folder name will insure no mismatch, if the series already exist on the system.<\\/li>\\r\\n\\t\\t <li>Adding other preachers to the same series will only require creating a folder inside that preacher\'s folder with the same series\' name and placing his sermons inside that new folder. Using the series\' alias from the system as the folder name will insure no mismatch, if the series already exist on the system.<\\/li>\\r\\n\\t\\t <li>The file name will be used as the sermon name.<\\/li>\\r\\n\\t\\t <li>To ensure that all downloads work well, we need to hold to the following file naming convention:\\r\\n\\t\\t <ul>\\r\\n <li>No spaces in the file name!!<\\/li>\\r\\n <li>No strange characters in the file name only A-z 0-9 underscore and hyphen.<\\/li>\\r\\n <\\/ul> \\r\\n\\t\\t <\\/li>\\r\\n\\t\\t <li>We use naming conventions to add tags, categories, a short description and combine files under one sermon, these conventions are as follow:\\r\\n\\t\\t <ul>\\r\\n <li>To combine files\\r\\n <ul>\\r\\n <li>Use a KEY name with TWO underscores before the actual name, example (34key521__the_file_name.mp3 & 34key521__another_file_of_the_same_sermon.pdf)<\\/li>\\r\\n <li>The KEY may only have alpha numeric characters (A-z 0-9).<\\/li>\\r\\n <li>You can combine as many files as you like under each sermon with the unique KEY.<\\/li>\\r\\n <li>There are two ways to set the sermon name with combined files:\\r\\n <ul>\\r\\n <li>All Uppercase. example (34key521__THE_FILE_NAME.mp3 & 34key521__another_file_of_the_same_sermon.pdf).<\\/li>\\r\\n <li>Longest file name if no all-uppercase file name is found. If two file names are the same length the first one is used.<\\/li>\\r\\n <\\/ul>\\r\\n <\\/li>\\r\\n <li>Uppercase option is the most trusted method since this will insure you get what you expected.<\\/li>\\r\\n <\\/ul>\\r\\n <\\/li>\\r\\n <li>To tag files\\r\\n <ul>\\r\\n <li>Directly after the file name add THREE underscores and then set the tags, example (the_file_name___tag1_tag-with2_tag-three.mp3)<\\/li>\\r\\n <li>You can add as many tags to a file as you like separated by one underscore and hyphen for spaces in a tag.<\\/li>\\r\\n <li>Combined files only need to have the tags added to one of the files. If one of the files has a tag that was not already found it will also be added to the sermon as a whole since the combined files are treated as one sermon.<\\/li>\\r\\n <\\/ul>\\r\\n <\\/li>\\r\\n <li>To add sermons to categories\\r\\n <ul>\\r\\n <li>Directly after the file name add FOUR underscores and then set the category name, example (the_file_name____Salvation_Messages.mp3)<\\/li>\\r\\n <li>You can add only one category per sermon. Combined files only need to have the category name added to one of the files.<\\/li>\\r\\n <\\/ul>\\r\\n <\\/li>\\r\\n <li>To add a short description\\r\\n <ul>\\r\\n <li>Directly after the file name add FIVE underscores and then set the description, example (the_file_name_____The_short_description_can_only_be_one_sentence.mp3)<\\/li>\\r\\n <li>You can not use any strange characters, only (A-z 0-9) and underscore for spacing.<\\/li>\\r\\n <li>You can add only one short description per sermon. Combined files only need to have the short description added to one of the files.<\\/li>\\r\\n <\\/ul>\\r\\n <\\/li>\\r\\n <\\/ul> \\r\\n\\t\\t <\\/li>\\r\\n\\t\\t <li>When you use all the naming conventions together they should follow the following order:\\r\\n <ul>\\r\\n <li>KEY before the file name with TWO underscores.<\\/li>\\r\\n <li>TAGS must be first after the file name with THREE underscores.<\\/li>\\r\\n <li>CATEGORY must be first after TAGS with FOUR underscores. IF no tags were set then it must be first after the FILE NAME with FOUR underscores.<\\/li>\\r\\n <li>SHORT DESCRIPTION must be first after CATEGORY with FIVE underscores. IF no category was set then it must be first after the TAGS with FIVE underscores. IF no tags were set then it must be first after the FILE NAME with FIVE underscores.<\\/li>\\r\\n <\\/ul>\\r\\n\\t\\t <\\/li>\\r\\n\\t\\t <li>Adding folders and sermons will automatically load them to your sermon distributor on your website, or update the already existing sermons with the new files.<\\/li>\\r\\n\\t <\\/ul><\\/li>\\r\\n<\\/ul><b>Make sure you have at least one auto folder in External Source and have added the information in the Sermon Distributors<\\/b> <button class=\'btn btn-small external-source\' ><span class=\'icon-puzzle\'><\\/span>External Sources<\\/button>\\\" \\r\\n\\theading=\\\"h4\\\" \\r\\n\\tclass=\\\"alert alert-info\\\" \\r\\n\\/>\"', 1, '2015-10-29 12:33:26', '2016-11-04 01:35:11', 13, '', 603, 'ebbbb826-7e83-4837-bd4e-7b8dfe07f2c1', '', '', '', '', ''),
(824, '', '', '', '', '', '', '', '', '', '', 'CHAR', '', '', '', 'External Source Manual Note (in sermons)', 'NOT NULL', '', 14, '\"<field \\r\\n\\ttype=\\\"note\\\" \\r\\n\\tname=\\\"note_manual_externalsource\\\" \\r\\n\\tlabel=\\\"External Source Integration\\\" \\r\\n\\tdescription=\\\"<b>To integrate manual External Source option with your system you need to do the following:<\\/b> \\r\\n\\t <ul>\\r\\n\\t\\t <li>Create main\\/first manual folder in External Source. This will be where all files are placed. No sub folders, just one huge folder with all the files!<\\/li>\\r\\n\\t\\t <li>You will place the file on External Source in that main folder first.<\\/li>\\r\\n\\t\\t <li>Then the next step will be to come to Sermon Distributor and create the preacher and series if they do not already exist.<\\/li>\\r\\n\\t\\t <li>Please allow enough time (as set in Sermon Distributor Options) for the local listing of files to update.<\\/li>\\r\\n\\t\\t <li>Then you should create the sermon the file belongs to and select \'External Source\' as the source of your file.<\\/li>\\r\\n\\t\\t <li>Next select \'Manual\' as the build option. This will load a drop-down with the file names in the Manual Folder on External Source. Should the new file not be seen give it a little more time to update the local listing of files.<\\/li>\\r\\n\\t\\t <li>If the List is very long, you can in the select box type the name of the file and it will shorten the list. Then select your file and continue with the setup of the sermon as usual.<\\/li>\\r\\n\\t\\t <li>To ensure that all downloads work well, we need to hold to the following file naming convention:\\r\\n\\t\\t <ul>\\r\\n <li>No spaces in the file name!!<\\/li>\\r\\n <li>No strange characters in the file name only A-z 0-9 underscore and hyphen.<\\/li>\\r\\n <\\/ul> \\r\\n\\t\\t <\\/li>\\r\\n\\t <\\/ul>\\r\\n<b>Make sure you have at least one manual folder in External Source and have added the shared link in the Sermon Distributor<\\/b> <button class=\'btn btn-small external-source\' ><span class=\'icon-puzzle\'><\\/span>External Sources<\\/button>\\\" \\r\\n\\theading=\\\"h4\\\" \\r\\n\\tclass=\\\"alert alert-info\\\" \\r\\n\\/>\"', 1, '2015-10-29 12:35:09', '2016-11-04 01:36:48', 12, '', 603, 'a879d977-61ab-4f72-8026-b86e327f4ce3', '', '', '', '', ''),
(825, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'External Source Manual (file list)', 'NOT NULL', 1, 6, '\"<field\\n\\ttype=\\\"externalsourcefiles\\\"\\n\\tname=\\\"manual_files\\\"\\n\\tlabel=\\\"Files\\\"\\n\\tdescription=\\\"Select the files you would like to add to this sermon.\\\"\\n\\tclass=\\\"list_class\\\"\\n\\tmultiple=\\\"true\\\"\\n\\tdefault=\\\"0\\\"\\n\\trequired=\\\"true\\\"\\n\\treadonly=\\\"\\\"\\n\\tdisabled=\\\"\\\"\\n\\textends=\\\"list\\\"\\n\\tbutton=\\\"false\\\"\\n\\ttype_php_1=\\\"__.o0=base64=Oo.__Ly8gc2V0IHRoZSBkZWZhdWx0DQoJCSRvcHRpb25zW10gPSBIdG1sOjpfKCdzZWxlY3Qub3B0aW9uJywgJycsIFRleHQ6Ol8oJ1RoZSBsb2NhbCBsaXN0aW5nIG9mIHRoZSBNYW51YWwgRXh0ZXJuYWwgU291cmNlIGZvbGRlci9zIGlzIGVtcHR5LicpKTsNCgkJJHNlbGVjdGlvbiA9ICMjI0NvbXBvbmVudCMjI0hlbHBlcjo6Z2V0RXh0ZXJuYWxTb3VyY2VMaW5rKCdtYW51YWwnLCAyLCBmYWxzZSwgJ3NlbGVjdCcpOw0KCQlpZiAoIyMjQ29tcG9uZW50IyMjSGVscGVyOjpjaGVja0FycmF5KCRzZWxlY3Rpb24pKQ0KCQl7DQoJCQkkb3B0aW9ucyA9IGFycmF5KCk7DQoJCQlmb3JlYWNoICgkc2VsZWN0aW9uIGFzICRrZXkgPT4gJG5hbWUpDQoJCQl7DQoJCQkJJG9wdGlvbnNbXSA9IEh0bWw6Ol8oJ3NlbGVjdC5vcHRpb24nLCAka2V5LCAkbmFtZSk7DQoJCQl9DQoJCX0NCgkJcmV0dXJuICRvcHRpb25zOw==\\\"\\n\\/>\"', 1, '2015-10-29 17:30:12', '2024-01-17 18:22:14', 16, '', 628, '1396ca1c-cdf1-4a77-939b-2f0ccb6d4199', '', '', '', '', ''),
(826, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Local Folder (file list)', 'NOT NULL', 1, 6, '\"<field\\n\\ttype=\\\"localfiles\\\"\\n\\tname=\\\"local_files\\\"\\n\\tlabel=\\\"Files\\\"\\n\\tdescription=\\\"Select the files you would like to add to this sermon.\\\"\\n\\tclass=\\\"list_class\\\"\\n\\tmultiple=\\\"true\\\"\\n\\tdefault=\\\"0\\\"\\n\\trequired=\\\"true\\\"\\n\\treadonly=\\\"\\\"\\n\\tdisabled=\\\"\\\"\\n\\textends=\\\"list\\\"\\n\\tbutton=\\\"false\\\"\\n\\ttype_php_1=\\\"__.o0=base64=Oo.__Ly8gZ2V0IGxvY2FsIGZvbGRlcg0KCQkkbG9jYWxmb2xkZXIgPSBcSm9vbWxhXENNU1xDb21wb25lbnRcQ29tcG9uZW50SGVscGVyOjpnZXRQYXJhbXMoJ2NvbV8jIyNjb21wb25lbnQjIyMnKS0+Z2V0KCdsb2NhbGZvbGRlcicsIEpQQVRIX1JPT1QuJy9pbWFnZXMnKTsNCgkJLy8gc2V0IHRoZSBkZWZhdWx0DQoJCSRvcHRpb25zW10gPSBIdG1sOjpfKCdzZWxlY3Qub3B0aW9uJywgJycsIFRleHQ6OnNwcmludGYoJ1BsZWFzZSBhZGQgZmlsZXMgdG8gKCVzKScsICRsb2NhbGZvbGRlcikpOw0KCQkvLyBzZXR1cCB0aGUgZm9sZGVyIGlmIGl0IGRvZXMgbm90IGV4aXN0DQoJCWlmICghXEpvb21sYVxDTVNcRmlsZXN5c3RlbVxGb2xkZXI6OmV4aXN0cygkbG9jYWxmb2xkZXIpKQ0KCQl7DQoJCQlcSm9vbWxhXENNU1xGaWxlc3lzdGVtXEZvbGRlcjo6Y3JlYXRlKCRsb2NhbGZvbGRlcik7DQoJCX0NCgkJLy8gbm93IGNoZWNrIGlmIHRoZXJlIGFyZSBmaWxlcyBpbiB0aGUgZm9sZGVyDQoJCWlmICgkZmlsZXMgPSBcSm9vbWxhXENNU1xGaWxlc3lzdGVtXEZvbGRlcjo6ZmlsZXMoJGxvY2FsZm9sZGVyKSkNCgkJew0KCQkJJG9wdGlvbnMgPSBhcnJheSgpOw0KCQkJZm9yZWFjaCAoJGZpbGVzIGFzICRmaWxlKQ0KCQkJew0KCQkJCSRvcHRpb25zW10gPSBIdG1sOjpfKCdzZWxlY3Qub3B0aW9uJywgJGZpbGUsICRmaWxlKTsNCgkJCX0NCgkJfQ0KCQlyZXR1cm4gJG9wdGlvbnM7\\\"\\n\\/>\"', 1, '2015-10-29 17:32:08', '2024-02-10 09:22:38', 8, '', 628, '0db92c39-e5f9-4c83-adfc-a8c002955784', '', '', '', '', ''),
(827, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Sermon URL', 'NOT NULL', '', 27, '\"<field \\r\\n\\ttype=\\\"url\\\" \\r\\n\\tname=\\\"url\\\" \\r\\n\\tlabel=\\\"File URL\\\" \\r\\n\\tsize=\\\"10\\\" \\r\\n\\tmaxlength=\\\"50\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tdescription=\\\"The url to download the sermon.\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\treadonly=\\\"\\\" \\r\\n\\tdisabled=\\\"\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\tfilter=\\\"url\\\" \\r\\n\\tvalidated=\\\"url\\\" \\r\\n\\tmessage=\\\"Error! Please add sermon url here.\\\" \\r\\n\\thint=\\\"http:\\/\\/www.domain.com\\/direct-link-to-download.mp3\\\" \\r\\n\\/>\"', 1, '2015-10-29 17:35:41', '2015-10-29 17:31:20', 1, '', 628, '130326b0-7aa4-4edf-bd24-299c125db721', '', '', '', '', ''),
(828, '', '', '', '', '', '', '', '', '', '', 'CHAR', '', '', '', 'Download Link Encryption Key', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"link_encryption\\\" \\r\\n\\tlabel=\\\"Download Link Encryption Key\\\" \\r\\n\\tsize=\\\"50\\\" \\r\\n\\tmaxlength=\\\"150\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tdescription=\\\"Add the key to use when download link option is set to encrypted.\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\treadonly=\\\"false\\\" \\r\\n\\tdisabled=\\\"false\\\" \\r\\n\\trequired=\\\"false\\\" \\r\\n\\tfilter=\\\"STRING\\\" \\r\\n\\tmessage=\\\"Error! Please add the download link encryption key here.\\\" \\r\\n\\thint=\\\"DBwAHPAqoFWZfDWZo6sd)E3cv2oMTG^r\\\" \\r\\n\\/>\"', 1, '2015-10-29 20:35:28', '2015-10-29 20:35:54', 2, '', 629, 'b4012004-ad10-4cc3-8c39-317f00d42f63', '', '', '', '', ''),
(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', '', '', '', '', ''),
(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', '', '', '', '', ''),
(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', '', '', '', '', ''),
(839, '', '', '', '', '', '', '', '', 1, '', 'INT', 2, '', '', 'Auto Series State', 'NOT NULL', '', 11, '\"<field \\r\\n\\ttype=\\\"list\\\" \\r\\n\\tname=\\\"series_state\\\" \\r\\n\\tlabel=\\\"Auto Series State\\\" \\r\\n\\tdescription=\\\"Set the state in which series 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:42:10', '0000-00-00 00:00:00', 1, '', 634, '3d268362-c2f3-42c9-b180-609ea7ec6b45', '', '', '', '', ''),
(840, '', '', '', '', '', '', '', '', 1, '', 'INT', 2, '', '', 'Auto Preacher State', 'NOT NULL', '', 11, '\"<field \\r\\n\\ttype=\\\"list\\\" \\r\\n\\tname=\\\"preacher_state\\\" \\r\\n\\tlabel=\\\"Auto Preacher State\\\" \\r\\n\\tdescription=\\\"Set the state in which preacher 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:42:56', '0000-00-00 00:00:00', 1, '', 634, 'faa83a4e-8160-46e2-934c-8ba389e2f93a', '', '', '', '', ''),
(841, '', '', '', '', '', '', 1, '', 1, '', 'TINYINT', 2, '', '', 'Auto Download Link Option', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"auto_link_type\\\" \\r\\n\\tlabel=\\\"Auto Download Link Option\\\" \\r\\n\\tdescription=\\\"Set the method used to build download links. Used for the initial build of the sermons.\\\" \\r\\n\\tclass=\\\"btn-group btn-group-yesno\\\" \\r\\n\\toption=\\\"1|Encrypted,2|Direct\\\" \\r\\n\\tdefault=\\\"1\\\" \\r\\n\\trequired=\\\"\\\" \\r\\n\\/>\"', 1, '2015-11-04 23:50:04', '2015-10-29 20:38:05', 1, '', 622, 'da2b62ce-d478-4a8b-a44f-aa1c4380ec4c', '', '', '', '', ''),
(842, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Switch list series - Table/Grid', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"list_series_display\\\" \\r\\n\\tlabel=\\\"Display\\\" \\r\\n\\tdescription=\\\"Select the option for display of series.\\\" \\r\\n\\tclass=\\\"btn-group btn-group-yesno\\\" \\r\\n\\toption=\\\"1|Table,2|Grid,3|List\\\" \\r\\n\\tdefault=\\\"2\\\" \\r\\n\\trequired=\\\"\\\" \\r\\n\\/>\"', 1, '2015-11-07 12:19:56', '2015-11-07 12:33:22', 3, '', 635, 'ecabff2e-a119-4072-bb70-7724673af432', '', '', '', '', ''),
(843, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Switch list series - Hits', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"list_series_hits\\\" \\r\\n\\tlabel=\\\"Show Hits\\\" \\r\\n\\tdescription=\\\"Set if hits should be shown.\\\" \\r\\n\\tclass=\\\"btn-group btn-group-yesno\\\" \\r\\n\\toption=\\\"1|Yes,0|No\\\" \\r\\n\\tdefault=\\\"1\\\" \\r\\n\\trequired=\\\"\\\" \\r\\n\\/>\"', 1, '2015-11-07 12:21:34', '2015-11-07 12:33:57', 3, '', 635, '8c82fa33-b76f-47a3-ae69-4e425881eb0c', '', '', '', '', ''),
(844, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Switch list series - Description', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"list_series_desc\\\" \\r\\n\\tlabel=\\\"Show Description\\\" \\r\\n\\tdescription=\\\"Set if description should be shown.\\\" \\r\\n\\tclass=\\\"btn-group btn-group-yesno\\\" \\r\\n\\toption=\\\"1|Yes,0|No\\\" \\r\\n\\tdefault=\\\"1\\\" \\r\\n\\trequired=\\\"\\\" \\r\\n\\/>\"', 1, '2015-11-07 12:22:13', '2015-11-07 12:32:24', 4, '', 635, 'eff0e633-057b-4021-be6d-a01c0bc41734', '', '', '', '', ''),
(845, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Switch list series - Sermon Count', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"list_series_sermon_count\\\" \\r\\n\\tlabel=\\\"Show Sermon Count\\\" \\r\\n\\tdescription=\\\"Set if sermon count should be shown.\\\" \\r\\n\\tclass=\\\"btn-group btn-group-yesno\\\" \\r\\n\\toption=\\\"1|Yes,0|No\\\" \\r\\n\\tdefault=\\\"1\\\" \\r\\n\\trequired=\\\"\\\" \\r\\n\\/>\"', 1, '2015-11-07 12:23:35', '2015-11-07 12:33:40', 2, '', 635, 'ab84d8db-160b-446f-b374-199ebcb24429', '', '', '', '', ''),
(846, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Switch list series - Icon', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"list_series_icon\\\" \\r\\n\\tlabel=\\\"Show Icon (grid)\\\" \\r\\n\\tdescription=\\\"Set if icon should be shown in grid display option.\\\" \\r\\n\\tclass=\\\"btn-group btn-group-yesno\\\" \\r\\n\\toption=\\\"1|Yes,0|No\\\" \\r\\n\\tdefault=\\\"1\\\" \\r\\n\\trequired=\\\"\\\" \\r\\n\\/>\"', 1, '2015-11-07 12:34:43', '2015-11-07 18:02:20', 2, '', 635, '80a6ea6f-6a30-467e-b5f8-2c49d982b9ee', '', '', '', '', ''),
(847, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Switch list series - List Style', 'NOT NULL', '', 11, '\"<field \\r\\n\\ttype=\\\"list\\\" \\r\\n\\tname=\\\"list_series_list_style\\\" \\r\\n\\tlabel=\\\"List Style\\\" \\r\\n\\tdescription=\\\"Select the style to use for the list display option.\\\" \\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\tmultiple=\\\"false\\\" \\r\\n\\tfilter=\\\"INT\\\" \\r\\n\\trequired=\\\"\\\" \\r\\n\\toption=\\\"0|Plain,1|Lines,2|Striped,3|Spaced\\\" \\r\\n\\tdefault=\\\"0\\\" \\r\\n\\/>\"', 1, '2015-11-07 17:59:59', '2015-11-07 18:04:57', 2, '', 635, '4dc70f87-5fd3-404d-af42-f60c67bc4fc7', '', '', '', '', ''),
(848, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Switch list series - Table Color', 'NOT NULL', '', 11, '\"<field \\r\\n\\ttype=\\\"list\\\" \\r\\n\\tname=\\\"list_series_table_color\\\" \\r\\n\\tlabel=\\\"Table Color\\\" \\r\\n\\tdescription=\\\"Select the color to use for the table display option.\\\" \\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\tmultiple=\\\"false\\\" \\r\\n\\tfilter=\\\"INT\\\" \\r\\n\\trequired=\\\"\\\" \\r\\n\\toption=\\\"0|Blue,1|Red,2|Purple,3|Green,4|Dark Blue,5|Legacy,6|Uikit,7|Custom,8|None\\\" \\r\\n\\tdefault=\\\"0\\\" \\r\\n\\/>\"', 1, '2015-11-07 18:01:19', '2015-11-19 02:10:29', 6, '', 635, '12c993a4-dcc2-48b3-9ff8-fde0d4d2e5c1', '', '', '', '', ''),
(849, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Switch list series - Title', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"list_series_title\\\" \\r\\n\\tlabel=\\\"Show Title\\\" \\r\\n\\tdescription=\\\"Set if title should be shown.\\\" \\r\\n\\tclass=\\\"btn-group btn-group-yesno\\\" \\r\\n\\toption=\\\"1|Yes,0|No\\\" \\r\\n\\tdefault=\\\"1\\\" \\r\\n\\trequired=\\\"\\\" \\r\\n\\/>\"', 1, '2015-11-07 18:23:52', '2015-11-07 18:02:20', 1, '', 635, 'ab0ac958-819b-457e-8fdf-6e7ebea9d0f4', '', '', '', '', ''),
(850, '', '', '', '', '', '', '', '', 64, '', 'CHAR', '', '', '', 'Icon (sermon distributor)', 'NOT NULL', '', 12, '\"<field \\r\\n\\ttype=\\\"media\\\" \\r\\n\\tname=\\\"icon\\\" \\r\\n\\tlabel=\\\"Icon\\\" \\r\\n\\tdescription=\\\"Must be 358px x 358px\\\" \\r\\n\\tdirectory=\\\"\\\" \\r\\n\\/>\"', 1, '2015-11-07 21:16:44', '2015-08-25 21:15:22', 1, '', 46, 'a4ddd6cb-c16d-445c-a833-53fac8435d72', '', '', '', '', ''),
(851, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Switch preachers - Table/Grid', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"preachers_display\\\" \\r\\n\\tlabel=\\\"Display\\\" \\r\\n\\tdescription=\\\"Select the option for display of preachers.\\\" \\r\\n\\tclass=\\\"btn-group btn-group-yesno\\\" \\r\\n\\toption=\\\"1|Table,2|Grid,3|List\\\" \\r\\n\\tdefault=\\\"2\\\" \\r\\n\\trequired=\\\"\\\" \\r\\n\\/>\"', 1, '2015-11-07 12:19:56', '2015-11-07 21:28:07', 4, '', 635, '02e31d0c-378e-427c-8add-1dc3ab4ee0d0', '', '', '', '', ''),
(852, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Switch preachers - Hits', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"preachers_hits\\\" \\r\\n\\tlabel=\\\"Show Hits\\\" \\r\\n\\tdescription=\\\"Set if hits should be shown.\\\" \\r\\n\\tclass=\\\"btn-group btn-group-yesno\\\" \\r\\n\\toption=\\\"1|Yes,0|No\\\" \\r\\n\\tdefault=\\\"1\\\" \\r\\n\\trequired=\\\"\\\" \\r\\n\\/>\"', 1, '2015-11-07 12:21:34', '2015-11-07 21:28:42', 4, '', 635, '590cc22d-bf8c-4498-a65d-e9b314df9003', '', '', '', '', ''),
(853, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Switch preachers - Description', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"preachers_desc\\\" \\r\\n\\tlabel=\\\"Show Description\\\" \\r\\n\\tdescription=\\\"Set if description should be shown.\\\" \\r\\n\\tclass=\\\"btn-group btn-group-yesno\\\" \\r\\n\\toption=\\\"1|Yes,0|No\\\" \\r\\n\\tdefault=\\\"1\\\" \\r\\n\\trequired=\\\"\\\" \\r\\n\\/>\"', 1, '2015-11-07 12:22:13', '2015-11-07 21:29:10', 5, '', 635, 'ff4bf3b7-7787-4000-acef-b96eef0a24ce', '', '', '', '', ''),
(854, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Switch preachers - Sermon Count', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"preachers_sermon_count\\\" \\r\\n\\tlabel=\\\"Show Sermon Count\\\" \\r\\n\\tdescription=\\\"Set if sermon count should be shown.\\\" \\r\\n\\tclass=\\\"btn-group btn-group-yesno\\\" \\r\\n\\toption=\\\"1|Yes,0|No\\\" \\r\\n\\tdefault=\\\"1\\\" \\r\\n\\trequired=\\\"\\\" \\r\\n\\/>\"', 1, '2015-11-07 12:23:35', '2015-11-07 21:31:18', 3, '', 635, '101c5e8a-bd25-414a-b204-029a1ec06654', '', '', '', '', ''),
(855, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Switch preachers - Icon', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"preachers_icon\\\" \\r\\n\\tlabel=\\\"Show Icon (grid)\\\" \\r\\n\\tdescription=\\\"Set if icon should be shown in grid display option.\\\" \\r\\n\\tclass=\\\"btn-group btn-group-yesno\\\" \\r\\n\\toption=\\\"1|Yes,0|No\\\" \\r\\n\\tdefault=\\\"1\\\" \\r\\n\\trequired=\\\"\\\" \\r\\n\\/>\"', 1, '2015-11-07 12:34:43', '2015-11-07 21:32:44', 3, '', 635, 'df21cb22-c5ca-4c3a-8783-edc2aae61a7c', '', '', '', '', ''),
(856, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Switch preachers - List Style', 'NOT NULL', '', 11, '\"<field \\r\\n\\ttype=\\\"list\\\" \\r\\n\\tname=\\\"preachers_list_style\\\" \\r\\n\\tlabel=\\\"List Style\\\" \\r\\n\\tdescription=\\\"Select the style to use for the list display option.\\\" \\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\tmultiple=\\\"false\\\" \\r\\n\\tfilter=\\\"INT\\\" \\r\\n\\trequired=\\\"\\\" \\r\\n\\toption=\\\"0|Plain,1|Lines,2|Striped,3|Spaced\\\" \\r\\n\\tdefault=\\\"0\\\" \\r\\n\\/>\"', 1, '2015-11-07 17:59:59', '2015-11-07 21:31:45', 3, '', 635, '04398d44-7cc3-4784-bbc3-0a2971b1aa15', '', '', '', '', ''),
(857, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Switch preachers - Table Color', 'NOT NULL', '', 11, '\"<field \\r\\n\\ttype=\\\"list\\\" \\r\\n\\tname=\\\"preachers_table_color\\\" \\r\\n\\tlabel=\\\"Table Color\\\" \\r\\n\\tdescription=\\\"Select the color to use for the table display option.\\\" \\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\tmultiple=\\\"false\\\" \\r\\n\\tfilter=\\\"INT\\\" \\r\\n\\trequired=\\\"\\\" \\r\\n\\toption=\\\"0|Blue,1|Red,2|Purple,3|Green,4|Dark Blue,5|Legacy,6|Uikit,7|Custom,8|None\\\" \\r\\n\\tdefault=\\\"0\\\" \\r\\n\\/>\"', 1, '2015-11-07 18:01:19', '2015-11-19 02:10:38', 7, '', 635, '99eeed39-215d-4347-a77f-4215d81354d9', '', '', '', '', ''),
(858, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Switch preachers - Website', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"preachers_website\\\" \\r\\n\\tlabel=\\\"Show Website\\\" \\r\\n\\tdescription=\\\"Set if the website link should be shown.\\\" \\r\\n\\tclass=\\\"btn-group btn-group-yesno\\\" \\r\\n\\toption=\\\"1|Yes,0|No\\\" \\r\\n\\tdefault=\\\"1\\\" \\r\\n\\trequired=\\\"\\\" \\r\\n\\/>\"', 1, '2015-11-07 18:23:52', '2015-11-07 23:05:34', 3, '', 635, '29d03082-15cd-4035-b414-7bcdf4fe6b27', '', '', '', '', ''),
(859, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Switch preachers - Email', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"preachers_email\\\" \\r\\n\\tlabel=\\\"Show Email\\\" \\r\\n\\tdescription=\\\"Set if the email should be shown.\\\" \\r\\n\\tclass=\\\"btn-group btn-group-yesno\\\" \\r\\n\\toption=\\\"1|Yes,0|No\\\" \\r\\n\\tdefault=\\\"1\\\" \\r\\n\\trequired=\\\"\\\" \\r\\n\\/>\"', 1, '2015-11-07 23:06:11', '2015-11-07 23:05:34', 1, '', 635, '131da9f6-9d0b-4770-bf72-2f923fd1d1d2', '', '', '', '', ''),
(860, '', '', '', '', '', '', '', '', 64, '', 'CHAR', '', '', '', 'Preacher Default Icon (sermon distributor)', 'NOT NULL', '', 12, '\"<field \\r\\n\\ttype=\\\"media\\\" \\r\\n\\tname=\\\"preacher_default_icon\\\" \\r\\n\\tlabel=\\\"Preacher Default Icon \\\" \\r\\n\\tdescription=\\\"Must be 358px x 358px\\\" \\r\\n\\tdirectory=\\\"Set the default icon for preachers.\\\" \\r\\n\\/>\"', 1, '2015-11-07 23:10:54', '2015-11-07 23:12:13', 2, '', 46, 'b10e46ad-b220-47a6-826f-75dfd39d9d99', '', '', '', '', ''),
(861, '', '', '', '', '', '', '', '', 64, '', 'CHAR', '', '', '', 'Series Default Icon (sermon distributor)', 'NOT NULL', '', 12, '\"<field \\r\\n\\ttype=\\\"media\\\" \\r\\n\\tname=\\\"series_default_icon\\\" \\r\\n\\tlabel=\\\"Series Default Icon \\\" \\r\\n\\tdescription=\\\"Must be 358px x 358px\\\" \\r\\n\\tdirectory=\\\"Set the default icon for series.\\\" \\r\\n\\/>\"', 1, '2015-11-07 23:11:59', '2015-08-25 21:15:22', 1, '', 46, 'a6918dc0-ba90-4369-ab1f-73572242e7b9', '', '', '', '', ''),
(862, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Switch preacher - Panel/Box/Small', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"preacher_display\\\" \\r\\n\\tlabel=\\\"Display\\\" \\r\\n\\tdescription=\\\"Select the option for display of a preacher.\\\" \\r\\n\\tclass=\\\"btn-group btn-group-yesno\\\" \\r\\n\\toption=\\\"1|Panel,2|Box,3|Small\\\" \\r\\n\\tdefault=\\\"3\\\" \\r\\n\\trequired=\\\"\\\" \\r\\n\\/>\"', 1, '2015-11-07 12:19:56', '2015-11-09 12:01:13', 5, '', 635, 'ca2efe7d-d459-43ca-83e1-9479cfd27ac3', '', '', '', '', ''),
(863, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Switch preacher - Hits', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"preacher_hits\\\" \\r\\n\\tlabel=\\\"Show Hits\\\" \\r\\n\\tdescription=\\\"Set if hits should be shown.\\\" \\r\\n\\tclass=\\\"btn-group btn-group-yesno\\\" \\r\\n\\toption=\\\"1|Yes,0|No\\\" \\r\\n\\tdefault=\\\"1\\\" \\r\\n\\trequired=\\\"\\\" \\r\\n\\/>\"', 1, '2015-11-07 12:21:34', '2015-11-09 12:01:49', 5, '', 635, '0c4d5ef5-7032-4b58-8a6b-459be0400bc1', '', '', '', '', ''),
(864, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Switch preacher - Description', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"preacher_desc\\\" \\r\\n\\tlabel=\\\"Show Description\\\" \\r\\n\\tdescription=\\\"Set if description should be shown.\\\" \\r\\n\\tclass=\\\"btn-group btn-group-yesno\\\" \\r\\n\\toption=\\\"1|Yes,0|No\\\" \\r\\n\\tdefault=\\\"1\\\" \\r\\n\\trequired=\\\"\\\" \\r\\n\\/>\"', 1, '2015-11-07 12:22:13', '2015-11-09 12:02:47', 6, '', 635, 'c290e646-1286-479f-923d-4d3908555f66', '', '', '', '', ''),
(865, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Switch preacher - Sermon Count', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"preacher_sermon_count\\\" \\r\\n\\tlabel=\\\"Show Sermon Count\\\" \\r\\n\\tdescription=\\\"Set if sermon count should be shown.\\\" \\r\\n\\tclass=\\\"btn-group btn-group-yesno\\\" \\r\\n\\toption=\\\"1|Yes,0|No\\\" \\r\\n\\tdefault=\\\"1\\\" \\r\\n\\trequired=\\\"\\\" \\r\\n\\/>\"', 1, '2015-11-07 12:23:35', '2015-11-09 12:03:16', 4, '', 635, 'd2c6605b-f49e-47e8-8baa-ad9fe052cbab', '', '', '', '', ''),
(866, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Switch preacher - Icon', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"preacher_icon\\\" \\r\\n\\tlabel=\\\"Show Icon\\\" \\r\\n\\tdescription=\\\"Set if icon should be shown.\\\" \\r\\n\\tclass=\\\"btn-group btn-group-yesno\\\" \\r\\n\\toption=\\\"1|Yes,0|No\\\" \\r\\n\\tdefault=\\\"1\\\" \\r\\n\\trequired=\\\"\\\" \\r\\n\\/>\"', 1, '2015-11-07 12:34:43', '2015-11-10 05:13:04', 5, '', 635, '04a03f85-5fc4-4521-af17-ef0d61c13dd0', '', '', '', '', ''),
(867, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Switch preacher - List Style', 'NOT NULL', '', 11, '\"<field \\r\\n\\ttype=\\\"list\\\" \\r\\n\\tname=\\\"preacher_list_style\\\" \\r\\n\\tlabel=\\\"List Style\\\" \\r\\n\\tdescription=\\\"Select the style to use for the list display option.\\\" \\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\tmultiple=\\\"false\\\" \\r\\n\\tfilter=\\\"INT\\\" \\r\\n\\trequired=\\\"\\\" \\r\\n\\toption=\\\"0|Plain,1|Lines,2|Striped,3|Spaced\\\" \\r\\n\\tdefault=\\\"0\\\" \\r\\n\\/>\"', 1, '2015-11-07 17:59:59', '2015-11-09 14:45:40', 4, '', 635, '8dda4617-e21e-4bba-913c-3e300916c8ae', '', '', '', '', ''),
(868, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Switch preachers - Table Color (2)', 'NOT NULL', '', 11, '\"<field \\r\\n\\ttype=\\\"list\\\" \\r\\n\\tname=\\\"preachers_table_color\\\" \\r\\n\\tlabel=\\\"Table Color\\\" \\r\\n\\tdescription=\\\"Select the color to use for the table display option.\\\" \\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\tmultiple=\\\"false\\\" \\r\\n\\tfilter=\\\"INT\\\" \\r\\n\\trequired=\\\"\\\" \\r\\n\\toption=\\\"0|Blue,1|Red,2|Purple,3|Green,4|Dark Blue\\\" \\r\\n\\tdefault=\\\"0\\\" \\r\\n\\/>\"', -2, '2015-11-07 18:01:19', '2015-11-07 21:33:05', 5, '', 635, '7aea9cb4-5639-4d13-95ab-b1fc12e5f6d4', '', '', '', '', ''),
(869, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Switch preacher - Website', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"preacher_website\\\" \\r\\n\\tlabel=\\\"Show Website\\\" \\r\\n\\tdescription=\\\"Set if the website link should be shown.\\\" \\r\\n\\tclass=\\\"btn-group btn-group-yesno\\\" \\r\\n\\toption=\\\"1|Yes,0|No\\\" \\r\\n\\tdefault=\\\"1\\\" \\r\\n\\trequired=\\\"\\\" \\r\\n\\/>\"', 1, '2015-11-07 18:23:52', '2015-11-09 12:10:29', 5, '', 635, '23bbc1a1-dcd2-4e87-846b-297022a401f8', '', '', '', '', ''),
(870, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Switch preacher - Email', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"preacher_email\\\" \\r\\n\\tlabel=\\\"Show Email\\\" \\r\\n\\tdescription=\\\"Set if the email should be shown.\\\" \\r\\n\\tclass=\\\"btn-group btn-group-yesno\\\" \\r\\n\\toption=\\\"1|Yes,0|No\\\" \\r\\n\\tdefault=\\\"1\\\" \\r\\n\\trequired=\\\"\\\" \\r\\n\\/>\"', 1, '2015-11-07 23:06:11', '2015-11-09 12:04:26', 2, '', 635, '9509f6cf-eefd-443a-b1fe-bf7ce40299b1', '', '', '', '', ''),
(871, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Switch sermons (Preacher) - Table/Grid', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"preacher_sermons_display\\\" \\r\\n\\tlabel=\\\"Sermons Display\\\" \\r\\n\\tdescription=\\\"Select the option for display of sermons in the preacher layout.\\\" \\r\\n\\tclass=\\\"btn-group btn-group-yesno\\\" \\r\\n\\toption=\\\"1|Table,2|Grid,3|List\\\" \\r\\n\\tdefault=\\\"2\\\" \\r\\n\\trequired=\\\"\\\" \\r\\n\\/>\"', 1, '2015-11-07 12:19:56', '2015-11-09 14:11:33', 7, '', 635, '908e33f5-b748-4d4d-84ed-c5e493d65e08', '', '', '', '', ''),
(872, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Switch sermons (Preacher) - Hits', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"preacher_sermons_hits\\\" \\r\\n\\tlabel=\\\"Show Sermon Hits\\\" \\r\\n\\tdescription=\\\"Set if sermon hits should be shown.\\\" \\r\\n\\tclass=\\\"btn-group btn-group-yesno\\\" \\r\\n\\toption=\\\"1|Yes,0|No\\\" \\r\\n\\tdefault=\\\"1\\\" \\r\\n\\trequired=\\\"\\\" \\r\\n\\/>\"', 1, '2015-11-07 12:21:34', '2015-11-09 14:11:46', 7, '', 635, '9950862d-f53e-4948-93a3-b722692cb683', '', '', '', '', ''),
(873, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Switch sermons (Preacher) - Description', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"preacher_sermons_desc\\\" \\r\\n\\tlabel=\\\"Show Sermons Description\\\" \\r\\n\\tdescription=\\\"Set if sermons description should be shown.\\\" \\r\\n\\tclass=\\\"btn-group btn-group-yesno\\\" \\r\\n\\toption=\\\"1|Yes,0|No\\\" \\r\\n\\tdefault=\\\"1\\\" \\r\\n\\trequired=\\\"\\\" \\r\\n\\/>\"', 1, '2015-11-07 12:22:13', '2015-11-09 14:11:56', 7, '', 635, 'a2611653-32fa-4372-b394-a93893235d21', '', '', '', '', ''),
(874, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Switch sermons (Preacher) - Sermon Counter', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"preacher_sermons_download_counter\\\" \\r\\n\\tlabel=\\\"Show Sermons Download Counter\\\" \\r\\n\\tdescription=\\\"Set if sermons download counter should be shown.\\\" \\r\\n\\tclass=\\\"btn-group btn-group-yesno\\\" \\r\\n\\toption=\\\"1|Yes,0|No\\\" \\r\\n\\tdefault=\\\"1\\\" \\r\\n\\trequired=\\\"\\\" \\r\\n\\/>\"', 1, '2015-11-07 12:23:35', '2015-11-09 14:12:07', 6, '', 635, 'd03c6572-5042-4aec-a5f6-6a5722d4a164', '', '', '', '', ''),
(875, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Switch sermons (Preacher) - Icon', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"preacher_sermons_icon\\\" \\r\\n\\tlabel=\\\"Show Sermon Icon (grid)\\\" \\r\\n\\tdescription=\\\"Set if icon should be shown in grid display option for sermons.\\\" \\r\\n\\tclass=\\\"btn-group btn-group-yesno\\\" \\r\\n\\toption=\\\"1|Yes,0|No\\\" \\r\\n\\tdefault=\\\"1\\\" \\r\\n\\trequired=\\\"\\\" \\r\\n\\/>\"', 1, '2015-11-07 12:34:43', '2015-11-09 14:12:24', 5, '', 635, '12d7b894-8408-4c50-a59d-f2d399df077b', '', '', '', '', ''),
(876, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Switch sermons (Preacher) - List Style', 'NOT NULL', '', 11, '\"<field \\r\\n\\ttype=\\\"list\\\" \\r\\n\\tname=\\\"preacher_sermons_list_style\\\" \\r\\n\\tlabel=\\\"Sermons List Style\\\" \\r\\n\\tdescription=\\\"Select the style to use for the sermons list display option.\\\" \\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\tmultiple=\\\"false\\\" \\r\\n\\tfilter=\\\"INT\\\" \\r\\n\\trequired=\\\"\\\" \\r\\n\\toption=\\\"0|Plain,1|Lines,2|Striped,3|Spaced\\\" \\r\\n\\tdefault=\\\"0\\\" \\r\\n\\/>\"', 1, '2015-11-07 17:59:59', '2015-11-09 14:12:35', 5, '', 635, '489228ca-7141-4083-9de7-b860e4684392', '', '', '', '', ''),
(877, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Switch sermons (Preacher) - Table Color', 'NOT NULL', '', 11, '\"<field \\r\\n\\ttype=\\\"list\\\" \\r\\n\\tname=\\\"preacher_sermons_table_color\\\" \\r\\n\\tlabel=\\\"Sermons Table Color\\\" \\r\\n\\tdescription=\\\"Select the color to use for the sermons table display option.\\\" \\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\tmultiple=\\\"false\\\" \\r\\n\\tfilter=\\\"INT\\\" \\r\\n\\trequired=\\\"\\\" \\r\\n\\toption=\\\"0|Blue,1|Red,2|Purple,3|Green,4|Dark Blue,5|Legacy,6|Uikit,7|Custom,8|None\\\" \\r\\n\\tdefault=\\\"0\\\" \\r\\n\\/>\"', 1, '2015-11-07 18:01:19', '2015-11-19 02:10:45', 10, '', 635, 'ac649a15-5e04-439a-973d-09c003dfff45', '', '', '', '', ''),
(878, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Switch sermons (Preacher) - Series', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"preacher_sermons_series\\\" \\r\\n\\tlabel=\\\"Show Sermon Series\\\" \\r\\n\\tdescription=\\\"Set if the series link should be shown.\\\" \\r\\n\\tclass=\\\"btn-group btn-group-yesno\\\" \\r\\n\\toption=\\\"1|Yes,0|No\\\" \\r\\n\\tdefault=\\\"1\\\" \\r\\n\\trequired=\\\"\\\" \\r\\n\\/>\"', 1, '2015-11-07 18:23:52', '2015-11-09 14:12:54', 5, '', 635, '425beb45-8eba-479b-97da-59986c0d93e1', '', '', '', '', ''),
(879, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Switch sermons (Preacher) - Category', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"preacher_sermons_category\\\" \\r\\n\\tlabel=\\\"Show Sermons Category\\\" \\r\\n\\tdescription=\\\"Set if the category link should be shown.\\\" \\r\\n\\tclass=\\\"btn-group btn-group-yesno\\\" \\r\\n\\toption=\\\"1|Yes,0|No\\\" \\r\\n\\tdefault=\\\"1\\\" \\r\\n\\trequired=\\\"\\\" \\r\\n\\/>\"', 1, '2015-11-07 23:06:11', '2015-11-09 14:13:08', 3, '', 635, '79616351-df16-420e-a1d1-9810039cbcf2', '', '', '', '', ''),
(880, '', '', '', '', '', '', '', '', 64, '', 'CHAR', '', '', '', 'Sermon Default Icon (sermon distributor)', 'NOT NULL', '', 12, '\"<field \\r\\n\\ttype=\\\"media\\\" \\r\\n\\tname=\\\"sermon_default_icon\\\" \\r\\n\\tlabel=\\\"Sermon Default Icon \\\" \\r\\n\\tdescription=\\\"Must be 358px x 358px\\\" \\r\\n\\tdirectory=\\\"Set the default icon for sermon.\\\" \\r\\n\\/>\"', 1, '2015-11-09 15:41:02', '2015-11-09 15:41:08', 2, '', 46, 'cbecb23d-ae05-45e4-b632-468c9f61c941', '', '', '', '', ''),
(881, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Switch series - Panel/Box/Small', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"series_display\\\" \\r\\n\\tlabel=\\\"Display\\\" \\r\\n\\tdescription=\\\"Select the option for display of a series.\\\" \\r\\n\\tclass=\\\"btn-group btn-group-yesno\\\" \\r\\n\\toption=\\\"1|Panel,2|Box,3|Small\\\" \\r\\n\\tdefault=\\\"3\\\" \\r\\n\\trequired=\\\"\\\" \\r\\n\\/>\"', 1, '2015-11-07 12:19:56', '2015-11-10 05:10:15', 6, '', 635, '9a074320-4b6d-4553-a0ad-97ecc02e36d0', '', '', '', '', ''),
(882, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Switch series - Hits', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"series_hits\\\" \\r\\n\\tlabel=\\\"Show Hits\\\" \\r\\n\\tdescription=\\\"Set if hits should be shown.\\\" \\r\\n\\tclass=\\\"btn-group btn-group-yesno\\\" \\r\\n\\toption=\\\"1|Yes,0|No\\\" \\r\\n\\tdefault=\\\"1\\\" \\r\\n\\trequired=\\\"\\\" \\r\\n\\/>\"', 1, '2015-11-07 12:21:34', '2015-11-10 05:10:44', 6, '', 635, 'f4628384-2201-42ab-ae19-f7d3477ce2e5', '', '', '', '', ''),
(883, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Switch series - Description', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"series_desc\\\" \\r\\n\\tlabel=\\\"Show Description\\\" \\r\\n\\tdescription=\\\"Set if description should be shown.\\\" \\r\\n\\tclass=\\\"btn-group btn-group-yesno\\\" \\r\\n\\toption=\\\"1|Yes,0|No\\\" \\r\\n\\tdefault=\\\"1\\\" \\r\\n\\trequired=\\\"\\\" \\r\\n\\/>\"', 1, '2015-11-07 12:22:13', '2015-11-10 05:11:21', 7, '', 635, '79b558a5-b5c8-45ad-8ab4-86c8ab786991', '', '', '', '', ''),
(884, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Switch series - Sermon Count', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"series_sermon_count\\\" \\r\\n\\tlabel=\\\"Show Sermon Count\\\" \\r\\n\\tdescription=\\\"Set if sermon count should be shown.\\\" \\r\\n\\tclass=\\\"btn-group btn-group-yesno\\\" \\r\\n\\toption=\\\"1|Yes,0|No\\\" \\r\\n\\tdefault=\\\"1\\\" \\r\\n\\trequired=\\\"\\\" \\r\\n\\/>\"', 1, '2015-11-07 12:23:35', '2015-11-10 05:11:56', 5, '', 635, '35dfa566-5aaf-4bf7-9cd4-6721a48dad98', '', '', '', '', ''),
(885, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Switch series - Icon', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"series_icon\\\" \\r\\n\\tlabel=\\\"Show Icon\\\" \\r\\n\\tdescription=\\\"Set if icon should be shown.\\\" \\r\\n\\tclass=\\\"btn-group btn-group-yesno\\\" \\r\\n\\toption=\\\"1|Yes,0|No\\\" \\r\\n\\tdefault=\\\"1\\\" \\r\\n\\trequired=\\\"\\\" \\r\\n\\/>\"', 1, '2015-11-07 12:34:43', '2015-11-10 05:12:41', 5, '', 635, 'd063c985-1e9e-4181-bc60-d44d4d6f655b', '', '', '', '', ''),
(886, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Switch series - List Style', 'NOT NULL', '', 11, '\"<field \\r\\n\\ttype=\\\"list\\\" \\r\\n\\tname=\\\"series_list_style\\\" \\r\\n\\tlabel=\\\"List Style\\\" \\r\\n\\tdescription=\\\"Select the style to use for the list display option.\\\" \\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\tmultiple=\\\"false\\\" \\r\\n\\tfilter=\\\"INT\\\" \\r\\n\\trequired=\\\"\\\" \\r\\n\\toption=\\\"0|Plain,1|Lines,2|Striped,3|Spaced\\\" \\r\\n\\tdefault=\\\"0\\\" \\r\\n\\/>\"', 1, '2015-11-07 17:59:59', '2015-11-10 05:13:33', 5, '', 635, 'fa35c8a1-13b0-482b-99d6-37499cce4226', '', '', '', '', ''),
(887, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Switch sermons (Series) - Table/Grid', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"series_sermons_display\\\" \\r\\n\\tlabel=\\\"Sermons Display\\\" \\r\\n\\tdescription=\\\"Select the option for display of sermons in the series layout.\\\" \\r\\n\\tclass=\\\"btn-group btn-group-yesno\\\" \\r\\n\\toption=\\\"1|Table,2|Grid,3|List\\\" \\r\\n\\tdefault=\\\"2\\\" \\r\\n\\trequired=\\\"\\\" \\r\\n\\/>\"', 1, '2015-11-07 12:19:56', '2015-11-10 05:14:48', 8, '', 635, 'e5ef220e-41e0-484d-8d9f-8f91a95e3a8c', '', '', '', '', ''),
(888, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Switch sermons (Series) - Hits', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"series_sermons_hits\\\" \\r\\n\\tlabel=\\\"Show Sermon Hits\\\" \\r\\n\\tdescription=\\\"Set if sermon hits should be shown.\\\" \\r\\n\\tclass=\\\"btn-group btn-group-yesno\\\" \\r\\n\\toption=\\\"1|Yes,0|No\\\" \\r\\n\\tdefault=\\\"1\\\" \\r\\n\\trequired=\\\"\\\" \\r\\n\\/>\"', 1, '2015-11-07 12:21:34', '2015-11-10 05:15:21', 8, '', 635, '0e6f3869-457c-49fd-a31f-2269fcab749f', '', '', '', '', ''),
(889, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Switch sermons (Series) - Description', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"series_sermons_desc\\\" \\r\\n\\tlabel=\\\"Show Sermons Description\\\" \\r\\n\\tdescription=\\\"Set if sermons description should be shown.\\\" \\r\\n\\tclass=\\\"btn-group btn-group-yesno\\\" \\r\\n\\toption=\\\"1|Yes,0|No\\\" \\r\\n\\tdefault=\\\"1\\\" \\r\\n\\trequired=\\\"\\\" \\r\\n\\/>\"', 1, '2015-11-07 12:22:13', '2015-11-10 05:15:48', 8, '', 635, '04669d1a-8267-48e0-bf58-9e81b5f1b654', '', '', '', '', ''),
(890, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Switch sermons (Series) - Sermon Counter', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"series_sermons_download_counter\\\" \\r\\n\\tlabel=\\\"Show Sermons Download Counter\\\" \\r\\n\\tdescription=\\\"Set if sermons download counter should be shown.\\\" \\r\\n\\tclass=\\\"btn-group btn-group-yesno\\\" \\r\\n\\toption=\\\"1|Yes,0|No\\\" \\r\\n\\tdefault=\\\"1\\\" \\r\\n\\trequired=\\\"\\\" \\r\\n\\/>\"', 1, '2015-11-07 12:23:35', '2015-11-10 05:16:19', 7, '', 635, 'eafe0de6-733e-4951-baf6-ee724ac25df4', '', '', '', '', ''),
(891, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Switch sermons (Series) - Icon', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"series_sermons_icon\\\" \\r\\n\\tlabel=\\\"Show Sermon Icon (grid)\\\" \\r\\n\\tdescription=\\\"Set if icon should be shown in grid display option for sermons.\\\" \\r\\n\\tclass=\\\"btn-group btn-group-yesno\\\" \\r\\n\\toption=\\\"1|Yes,0|No\\\" \\r\\n\\tdefault=\\\"1\\\" \\r\\n\\trequired=\\\"\\\" \\r\\n\\/>\"', 1, '2015-11-07 12:34:43', '2015-11-10 05:16:45', 6, '', 635, '1666745f-8a11-42ec-a335-54d3d5358291', '', '', '', '', ''),
(892, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Switch sermons (Series) - List Style', 'NOT NULL', '', 11, '\"<field \\r\\n\\ttype=\\\"list\\\" \\r\\n\\tname=\\\"series_sermons_list_style\\\" \\r\\n\\tlabel=\\\"Sermons List Style\\\" \\r\\n\\tdescription=\\\"Select the style to use for the sermons list display option.\\\" \\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\tmultiple=\\\"false\\\" \\r\\n\\tfilter=\\\"INT\\\" \\r\\n\\trequired=\\\"\\\" \\r\\n\\toption=\\\"0|Plain,1|Lines,2|Striped,3|Spaced\\\" \\r\\n\\tdefault=\\\"0\\\" \\r\\n\\/>\"', 1, '2015-11-07 17:59:59', '2015-11-10 05:17:14', 6, '', 635, 'fdc822cf-fe4b-4698-be1b-0cff7438c61e', '', '', '', '', ''),
(893, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Switch sermons (Series) - Table Color', 'NOT NULL', '', 11, '\"<field \\r\\n\\ttype=\\\"list\\\" \\r\\n\\tname=\\\"series_sermons_table_color\\\" \\r\\n\\tlabel=\\\"Sermons Table Color\\\" \\r\\n\\tdescription=\\\"Select the color to use for the sermons table display option.\\\" \\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\tmultiple=\\\"false\\\" \\r\\n\\tfilter=\\\"INT\\\" \\r\\n\\trequired=\\\"\\\" \\r\\n\\toption=\\\"0|Blue,1|Red,2|Purple,3|Green,4|Dark Blue,5|Legacy,6|Uikit,7|Custom,8|None\\\" \\r\\n\\tdefault=\\\"0\\\" \\r\\n\\/>\"', 1, '2015-11-07 18:01:19', '2015-11-19 02:10:54', 11, '', 635, '2f92f98a-e2fa-4bfd-a0ef-3c013c171f10', '', '', '', '', ''),
(894, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Switch sermons (Series) - Preacher', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"series_sermons_preacher\\\" \\r\\n\\tlabel=\\\"Show Sermon Preacher\\\" \\r\\n\\tdescription=\\\"Set if the preacher link should be shown.\\\" \\r\\n\\tclass=\\\"btn-group btn-group-yesno\\\" \\r\\n\\toption=\\\"1|Yes,0|No\\\" \\r\\n\\tdefault=\\\"1\\\" \\r\\n\\trequired=\\\"\\\" \\r\\n\\/>\"', 1, '2015-11-07 18:23:52', '2015-11-10 05:18:32', 6, '', 635, '0b9519f5-7e2f-4a2c-8dce-22ea5004f73f', '', '', '', '', ''),
(895, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Switch sermons (Series) - Category', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"series_sermons_category\\\" \\r\\n\\tlabel=\\\"Show Sermons Category\\\" \\r\\n\\tdescription=\\\"Set if the category link should be shown.\\\" \\r\\n\\tclass=\\\"btn-group btn-group-yesno\\\" \\r\\n\\toption=\\\"1|Yes,0|No\\\" \\r\\n\\tdefault=\\\"1\\\" \\r\\n\\trequired=\\\"\\\" \\r\\n\\/>\"', 1, '2015-11-07 23:06:11', '2015-11-10 05:18:56', 4, '', 635, 'e91e91cd-09da-4a49-8898-cac9b10aabba', '', '', '', '', ''),
(896, '', '', '', '', '', '', 1, '', 1, '', 'TINYINT', 2, '', '', 'Note - Download Link (Encrypted)', 'NOT NULL', '', 14, '\"<field \\r\\n\\ttype=\\\"note\\\" \\r\\n\\tname=\\\"note_link_encrypted\\\" \\r\\n\\tlabel=\\\"The Encrypted Link Option\\\" \\r\\n\\tdescription=\\\"This link option allows for counting of all downloads of this file, and secures the download location of this file. The download link also prevents other from reusing the link outside of your website if they are not in the same session.\\\"\\r\\n\\theading=\\\"h4\\\" \\r\\n\\tclass=\\\"alert alert-info\\\" \\r\\n\\tclose=\\\"true\\\" \\r\\n\\/>\"', 1, '2015-11-10 09:23:41', '2015-11-10 08:40:06', 1, '', 622, 'a1f19351-0844-4582-ba4a-19f8483ca182', '', '', '', '', ''),
(897, '', '', '', '', '', '', 1, '', 1, '', 'TINYINT', 2, '', '', 'Note - Download Link (Directed)', 'NOT NULL', '', 14, '\"<field \\r\\n\\ttype=\\\"note\\\" \\r\\n\\tname=\\\"note_link_directed\\\" \\r\\n\\tlabel=\\\"The Direct Link Option\\\" \\r\\n\\tdescription=\\\"This link option does not allow counting of the downloads of this file, and does not secures the download location of this file. Other can reuse it by adding it to their own websites, this action is called hotlinking, leeching, piggy-backing.\\\"\\r\\n\\theading=\\\"h4\\\" \\r\\n\\tclass=\\\"alert alert-info\\\" \\r\\n\\tclose=\\\"true\\\" \\r\\n\\/>\"', 1, '2015-11-10 09:31:33', '2015-11-10 08:40:06', 1, '', 622, 'da070777-6b97-4d6f-9bcb-d715e5d176de', '', '', '', '', ''),
(898, '', '', '', '', '', '', '', '', '', '', 'CHAR', '', '', '', 'User Check (ajax)', 'NOT NULL', '', 3, '\"<field \\r\\n\\ttype=\\\"checkbox\\\" \\r\\n\\tname=\\\"user_check\\\" \\r\\n\\tlabel=\\\"User Check\\\" \\r\\n\\tdescription=\\\"Allow only users.\\\" \\r\\n\\tvalue=\\\"1\\\" \\r\\n\\tdefault=\\\"1\\\" \\r\\n\\trequired=\\\"\\\" \\r\\n\\tclass=\\\"inputbox\\\" \\r\\n\\/>\"', 1, '2015-11-10 12:56:32', '2017-10-09 19:18:39', 2, '', 636, 'bee23d55-ed7b-4b10-937c-7517cc134674', '', '', '', '', ''),
(899, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Switch sermons (Series) - Downloads', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"series_sermons_downloads\\\" \\r\\n\\tlabel=\\\"Show Sermon Downloads\\\" \\r\\n\\tdescription=\\\"Set if sermon downloads should be shown.\\\" \\r\\n\\tclass=\\\"btn-group btn-group-yesno\\\" \\r\\n\\toption=\\\"1|Yes,0|No\\\" \\r\\n\\tdefault=\\\"1\\\" \\r\\n\\trequired=\\\"\\\" \\r\\n\\/>\"', 1, '2015-11-10 21:55:19', '2015-11-10 05:15:21', 1, '', 635, 'e6852b6d-a49d-4e39-b573-6ee913a9511a', '', '', '', '', ''),
(900, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Switch sermons (Preacher) - Downloads', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"preacher_sermons_downloads\\\" \\r\\n\\tlabel=\\\"Show Sermon Downloads\\\" \\r\\n\\tdescription=\\\"Set if sermon downloads should be shown.\\\" \\r\\n\\tclass=\\\"btn-group btn-group-yesno\\\" \\r\\n\\toption=\\\"1|Yes,0|No\\\" \\r\\n\\tdefault=\\\"1\\\" \\r\\n\\trequired=\\\"\\\" \\r\\n\\/>\"', 1, '2015-11-10 21:55:47', '2015-11-10 05:15:21', 1, '', 635, '42b08758-8bb6-4bff-8a2f-ae806ff22efb', '', '', '', '', ''),
(901, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Switch sermons (Preacher) - Open', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"preacher_sermons_open\\\" \\r\\n\\tlabel=\\\"Show Sermon Open\\\" \\r\\n\\tdescription=\\\"Set if sermon open button should be shown.\\\" \\r\\n\\tclass=\\\"btn-group btn-group-yesno\\\" \\r\\n\\toption=\\\"1|Yes,0|No\\\" \\r\\n\\tdefault=\\\"1\\\" \\r\\n\\trequired=\\\"\\\" \\r\\n\\/>\"', 1, '2015-11-10 21:58:05', '2015-11-10 05:15:21', 1, '', 635, 'c25662c9-e7c2-4466-bf1b-88cb373ad4a0', '', '', '', '', ''),
(902, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Switch sermons (Series) - Open', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"series_sermons_open\\\" \\r\\n\\tlabel=\\\"Show Sermon Open\\\" \\r\\n\\tdescription=\\\"Set if sermon open button should be shown.\\\" \\r\\n\\tclass=\\\"btn-group btn-group-yesno\\\" \\r\\n\\toption=\\\"1|Yes,0|No\\\" \\r\\n\\tdefault=\\\"1\\\" \\r\\n\\trequired=\\\"\\\" \\r\\n\\/>\"', 1, '2015-11-10 21:58:23', '2015-11-10 05:15:21', 1, '', 635, 'ea785e5b-77e0-40ff-818c-f3b545b7b06c', '', '', '', '', ''),
(903, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Switch sermon - Panel/Box/Small', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"sermon_display\\\" \\r\\n\\tlabel=\\\"Sermon Display\\\" \\r\\n\\tdescription=\\\"Select the option for display of a sermon.\\\" \\r\\n\\tclass=\\\"btn-group btn-group-yesno\\\" \\r\\n\\toption=\\\"1|Panel,2|Box,3|Big\\\" \\r\\n\\tdefault=\\\"2\\\" \\r\\n\\trequired=\\\"\\\" \\r\\n\\/>\"', 1, '2015-11-07 12:19:56', '2015-11-10 23:02:03', 9, '', 635, 'fe09a1d7-eab9-4a36-a04c-9d456683d279', '', '', '', '', ''),
(904, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Switch sermon - Hits', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"sermon_hits\\\" \\r\\n\\tlabel=\\\"Show Sermon Hits\\\" \\r\\n\\tdescription=\\\"Set if sermon hits should be shown.\\\" \\r\\n\\tclass=\\\"btn-group btn-group-yesno\\\" \\r\\n\\toption=\\\"1|Yes,0|No\\\" \\r\\n\\tdefault=\\\"1\\\" \\r\\n\\trequired=\\\"\\\" \\r\\n\\/>\"', 1, '2015-11-07 12:21:34', '2015-11-10 23:02:54', 9, '', 635, '77dab313-f896-4cc3-bf6f-f1cfe16152cf', '', '', '', '', ''),
(905, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Switch sermon - Description', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"sermon_desc\\\" \\r\\n\\tlabel=\\\"Show Sermon Description\\\" \\r\\n\\tdescription=\\\"Set if sermon description should be shown.\\\" \\r\\n\\tclass=\\\"btn-group btn-group-yesno\\\" \\r\\n\\toption=\\\"1|Yes,0|No\\\" \\r\\n\\tdefault=\\\"1\\\" \\r\\n\\trequired=\\\"\\\" \\r\\n\\/>\"', 1, '2015-11-07 12:22:13', '2015-11-10 23:04:19', 9, '', 635, 'b59c7d9e-6823-4004-8337-ad977546488d', '', '', '', '', ''),
(906, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Switch sermon - Sermon Counter', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"sermon_download_counter\\\" \\r\\n\\tlabel=\\\"Show Sermon Download Counter\\\" \\r\\n\\tdescription=\\\"Set if sermon download counter should be shown.\\\" \\r\\n\\tclass=\\\"btn-group btn-group-yesno\\\" \\r\\n\\toption=\\\"1|Yes,0|No\\\" \\r\\n\\tdefault=\\\"1\\\" \\r\\n\\trequired=\\\"\\\" \\r\\n\\/>\"', 1, '2015-11-07 12:23:35', '2015-11-10 23:04:51', 8, '', 635, '68331273-5b85-4633-9fbe-c281d2d2d382', '', '', '', '', ''),
(907, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Switch sermon - Icon', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"sermon_icon\\\" \\r\\n\\tlabel=\\\"Show Sermon Icon\\\" \\r\\n\\tdescription=\\\"Set if icon should be shown.\\\" \\r\\n\\tclass=\\\"btn-group btn-group-yesno\\\" \\r\\n\\toption=\\\"1|Yes,0|No\\\" \\r\\n\\tdefault=\\\"1\\\" \\r\\n\\trequired=\\\"\\\" \\r\\n\\/>\"', 1, '2015-11-07 12:34:43', '2015-11-10 23:05:50', 7, '', 635, '447b650b-ee66-451e-964e-a1bd023b1972', '', '', '', '', ''),
(908, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Switch sermon - List Style', 'NOT NULL', '', 11, '\"<field \\r\\n\\ttype=\\\"list\\\" \\r\\n\\tname=\\\"sermon_list_style\\\" \\r\\n\\tlabel=\\\"Sermon List Style\\\" \\r\\n\\tdescription=\\\"Select the style to use for the sermon list display option.\\\" \\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\tmultiple=\\\"false\\\" \\r\\n\\tfilter=\\\"INT\\\" \\r\\n\\trequired=\\\"\\\" \\r\\n\\toption=\\\"0|Plain,1|Lines,2|Striped,3|Spaced\\\" \\r\\n\\tdefault=\\\"0\\\" \\r\\n\\/>\"', 1, '2015-11-07 17:59:59', '2015-11-10 23:06:22', 7, '', 635, 'ea6552f2-cd5a-47a1-a05d-de5369548689', '', '', '', '', ''),
(909, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Switch sermon - Preacher', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"sermon_preacher\\\" \\r\\n\\tlabel=\\\"Show Sermon Preacher\\\" \\r\\n\\tdescription=\\\"Set if the preacher link should be shown.\\\" \\r\\n\\tclass=\\\"btn-group btn-group-yesno\\\" \\r\\n\\toption=\\\"1|Yes,0|No\\\" \\r\\n\\tdefault=\\\"1\\\" \\r\\n\\trequired=\\\"\\\" \\r\\n\\/>\"', 1, '2015-11-07 18:23:52', '2015-11-10 23:06:54', 7, '', 635, '4ada92ef-6a22-4c86-88af-138c750eeb67', '', '', '', '', ''),
(910, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Switch sermon - Category', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"sermon_category\\\" \\r\\n\\tlabel=\\\"Show Sermon Category\\\" \\r\\n\\tdescription=\\\"Set if the category link should be shown.\\\" \\r\\n\\tclass=\\\"btn-group btn-group-yesno\\\" \\r\\n\\toption=\\\"1|Yes,0|No\\\" \\r\\n\\tdefault=\\\"1\\\" \\r\\n\\trequired=\\\"\\\" \\r\\n\\/>\"', 1, '2015-11-07 23:06:11', '2015-11-10 23:08:12', 5, '', 635, '0a2c595b-c4c6-4bcd-9343-4dacb55525a6', '', '', '', '', ''),
(911, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Switch sermon - Downloads', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"sermon_downloads\\\" \\r\\n\\tlabel=\\\"Show Sermon Downloads\\\" \\r\\n\\tdescription=\\\"Set if sermon downloads should be shown.\\\" \\r\\n\\tclass=\\\"btn-group btn-group-yesno\\\" \\r\\n\\toption=\\\"1|Yes,0|No\\\" \\r\\n\\tdefault=\\\"1\\\" \\r\\n\\trequired=\\\"\\\" \\r\\n\\/>\"', 1, '2015-11-10 21:55:19', '2015-11-10 23:08:50', 2, '', 635, '7d79a00e-a296-4453-8f76-f7a5d0585bb2', '', '', '', '', ''),
(912, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Switch sermon - Series', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"sermon_series\\\" \\r\\n\\tlabel=\\\"Show Sermon Series\\\" \\r\\n\\tdescription=\\\"Set if the series link should be shown.\\\" \\r\\n\\tclass=\\\"btn-group btn-group-yesno\\\" \\r\\n\\toption=\\\"1|Yes,0|No\\\" \\r\\n\\tdefault=\\\"1\\\" \\r\\n\\trequired=\\\"\\\" \\r\\n\\/>\"', 1, '2015-11-10 23:09:13', '2015-11-09 14:12:54', 1, '', 635, '0e9d3e8c-ddfb-4d0c-95ef-b20410561f3d', '', '', '', '', ''),
(913, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Description - editor (full width)', 'NOT NULL', '', 8, '\"<field \\r\\n\\ttype=\\\"editor\\\" \\r\\n\\tname=\\\"description\\\" \\r\\n\\tlabel=\\\"Description\\\" \\r\\n\\twidth=\\\"100%\\\" \\r\\n\\theight=\\\"500\\\" \\r\\n\\tcols=\\\"13\\\" \\r\\n\\trows=\\\"50\\\" \\r\\n\\tbuttons=\\\"false\\\" \\r\\n\\thide=\\\"\\\" \\r\\n\\teditor=\\\"\\\" \\r\\n\\tfilter=\\\"safehtml\\\" \\r\\n\\trequired=\\\"\\\" \\r\\n\\/>\"', 1, '2015-11-11 21:16:20', '2015-08-25 21:15:22', 1, '', 265, '96bad9af-fa4b-4cc2-b4d5-296e76620383', '', '', '', '', ''),
(914, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Switch sermon - Box Contrast Text', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"sermon_box_contrast\\\" \\r\\n\\tlabel=\\\"Show Contrast Text\\\" \\r\\n\\tdescription=\\\"Set if text should be contrast in box display option.\\\" \\r\\n\\tclass=\\\"btn-group btn-group-yesno\\\" \\r\\n\\toption=\\\"1|Yes,0|No\\\" \\r\\n\\tdefault=\\\"1\\\" \\r\\n\\trequired=\\\"\\\" \\r\\n\\/>\"', 1, '2015-11-11 21:26:37', '2015-11-10 23:04:19', 1, '', 635, 'fb40123b-e2cc-4f6d-ba10-4c3fd28cfd8c', '', '', '', '', ''),
(915, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Switch preacher - Box Contrast Text', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"preacher_box_contrast\\\" \\r\\n\\tlabel=\\\"Show Contrast Text\\\" \\r\\n\\tdescription=\\\"Set if text should be contrast in box display option.\\\" \\r\\n\\tclass=\\\"btn-group btn-group-yesno\\\" \\r\\n\\toption=\\\"1|Yes,0|No\\\" \\r\\n\\tdefault=\\\"1\\\" \\r\\n\\trequired=\\\"\\\" \\r\\n\\/>\"', 1, '2015-11-11 21:27:01', '2015-11-10 23:04:19', 1, '', 635, 'b8b48ac2-fab4-444d-b5aa-cd57cf69408c', '', '', '', '', ''),
(916, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Switch series - Box Contrast Text', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"series_box_contrast\\\" \\r\\n\\tlabel=\\\"Show Contrast Text\\\" \\r\\n\\tdescription=\\\"Set if text should be contrast in box display option.\\\" \\r\\n\\tclass=\\\"btn-group btn-group-yesno\\\" \\r\\n\\toption=\\\"1|Yes,0|No\\\" \\r\\n\\tdefault=\\\"1\\\" \\r\\n\\trequired=\\\"\\\" \\r\\n\\/>\"', 1, '2015-11-11 21:27:19', '2015-11-10 23:04:19', 1, '', 635, '19915beb-849a-49bb-a709-6a20bf36c00d', '', '', '', '', ''),
(917, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'Sermon Menu Item', 'NOT NULL', '', 33, '\"<field \\r\\n\\ttype=\\\"menuitem\\\" \\r\\n\\tname=\\\"sermon_menu\\\" \\r\\n\\tlabel=\\\"Sermon Menu Item\\\" \\r\\n\\tdescription=\\\"Select the menu item you would like your sermon view to be linked to.\\\" \\r\\n\\tfilter=\\\"int\\\"\\r\\n\\tpublished=\\\"1\\\"\\r\\n\\/>\"', 1, '2015-11-14 14:06:00', '2015-11-14 15:15:03', 3, '', 637, 'd37aa6b4-210d-4af9-90ff-32575debc29c', '', '', '', '', ''),
(918, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'Preacher Menu Item', 'NOT NULL', '', 33, '\"<field \\r\\n\\ttype=\\\"menuitem\\\" \\r\\n\\tname=\\\"preacher_menu\\\" \\r\\n\\tlabel=\\\"Preacher Menu Item\\\" \\r\\n\\tdescription=\\\"Select the menu item you would like your preacher view to be linked to.\\\" \\r\\n\\tfilter=\\\"int\\\" \\r\\n\\tpublished=\\\"1\\\"\\r\\n\\/>\"', 1, '2015-11-14 14:06:33', '2015-11-14 15:15:11', 3, '', 637, '6e8ff26f-41b5-4085-b356-76f3090bf035', '', '', '', '', ''),
(919, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'Series Menu Item', 'NOT NULL', '', 33, '\"<field \\r\\n\\ttype=\\\"menuitem\\\" \\r\\n\\tname=\\\"series_menu\\\" \\r\\n\\tlabel=\\\"Series Menu Item\\\" \\r\\n\\tdescription=\\\"Select the menu item you would like your series view to be linked to.\\\" \\r\\n\\tfilter=\\\"int\\\" \\r\\n\\tpublished=\\\"1\\\"\\r\\n\\/>\"', 1, '2015-11-14 14:07:04', '2015-11-14 15:15:18', 3, '', 637, '4aeb5784-0f81-4f1f-91a9-bf3005cdf760', '', '', '', '', ''),
(920, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'Sermon Preacher (request_id)', 'NOT NULL', '', 6, '\"<field\\n\\ttype=\\\"preachers\\\"\\n\\tname=\\\"preacher_request_id\\\"\\n\\tlabel=\\\"Preacher\\\"\\n\\tdescription=\\\"Select a preacher.\\\"\\n\\tclass=\\\"list_class\\\"\\n\\tmultiple=\\\"false\\\"\\n\\tdefault=\\\"0\\\"\\n\\trequired=\\\"true\\\"\\n\\textends=\\\"list\\\"\\n\\tbutton=\\\"false\\\"\\n\\ttable=\\\"#__###component###_preacher\\\"\\n\\tcomponent=\\\"com_###component###\\\"\\n\\tview=\\\"preacher\\\"\\n\\tviews=\\\"preachers\\\"\\n\\tvalue_field=\\\"name\\\"\\n\\tkey_field=\\\"id\\\"\\n\\ttype_php_1=\\\"__.o0=base64=Oo.__Ly8gR2V0IHRoZSBkYXRhYmFzZSBvYmplY3QuDQoJCSRkYiA9IEpGYWN0b3J5OjpnZXREQk8oKTsNCgkJJHF1ZXJ5ID0gJGRiLT5nZXRRdWVyeSh0cnVlKTsNCgkJJHF1ZXJ5LT5zZWxlY3QoJGRiLT5xdW90ZU5hbWUoYXJyYXkoJ2EuIyMjSUQjIyMnLCdhLiMjI1RFWFQjIyMnKSxhcnJheSgnIyMjSUQjIyMnLCcjIyNDT0RFX1RFWFQjIyMnKSkpOw0KCQkkcXVlcnktPmZyb20oJGRiLT5xdW90ZU5hbWUoJyMjI1RBQkxFIyMjJywgJ2EnKSk7DQoJCSRxdWVyeS0+d2hlcmUoJGRiLT5xdW90ZU5hbWUoJ2EucHVibGlzaGVkJykgLiAnID0gMScpOw0KCQkkcXVlcnktPm9yZGVyKCdhLiMjI1RFWFQjIyMgQVNDJyk7DQoJCSRkYi0+c2V0UXVlcnkoKHN0cmluZykkcXVlcnkpOw0KCQkkaXRlbXMgPSAkZGItPmxvYWRPYmplY3RMaXN0KCk7DQoJCSRvcHRpb25zID0gYXJyYXkoKTsNCgkJaWYgKCRpdGVtcykNCgkJew0KCQkJaWYgKCR0aGlzLT5tdWx0aXBsZSA9PT0gZmFsc2UpDQoJCQl7DQoJCQkJJG9wdGlvbnNbXSA9IEpIdG1sOjpfKCdzZWxlY3Qub3B0aW9uJywgJycsIEpUZXh0OjpfKCdTZWxlY3QgYSBwcmVhY2hlcicpKTsNCgkJCX0NCgkJCWZvcmVhY2goJGl0ZW1zIGFzICRpdGVtKQ0KCQkJew0KCQkJCSRvcHRpb25zW10gPSBKSHRtbDo6Xygnc2VsZWN0Lm9wdGlvbicsICRpdGVtLT4jIyNJRCMjIywgJGl0ZW0tPiMjI0NPREVfVEVYVCMjIyk7DQoJCQl9DQoJCX0NCg0KCQlyZXR1cm4gJG9wdGlvbnM7\\\"\\n\\/>\"', 1, '2015-11-14 15:40:38', '2020-11-30 02:21:17', 5, '', 626, '476b77bd-cc50-470f-ab62-264c4107ec2e', '', '', '', '', ''),
(921, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'Sermon Series (request_id)', 'NOT NULL', '', 6, '\"<field\\n\\ttype=\\\"series\\\"\\n\\tname=\\\"series_request_id\\\"\\n\\tlabel=\\\"Series\\\"\\n\\tdescription=\\\"Select a series.\\\"\\n\\tclass=\\\"list_class\\\"\\n\\tmultiple=\\\"false\\\"\\n\\tdefault=\\\"0\\\"\\n\\trequired=\\\"\\\"\\n\\treadonly=\\\"\\\"\\n\\tdisabled=\\\"\\\"\\n\\textends=\\\"list\\\"\\n\\tbutton=\\\"false\\\"\\n\\ttable=\\\"#__###component###_series\\\"\\n\\tcomponent=\\\"com_###component###\\\"\\n\\tview=\\\"series\\\"\\n\\tviews=\\\"all_series\\\"\\n\\tvalue_field=\\\"name\\\"\\n\\tkey_field=\\\"id\\\"\\n\\ttype_php_1=\\\"__.o0=base64=Oo.__Ly8gR2V0IHRoZSBkYXRhYmFzZSBvYmplY3QuDQoJCSRkYiA9IEpGYWN0b3J5OjpnZXREQk8oKTsNCgkJJHF1ZXJ5ID0gJGRiLT5nZXRRdWVyeSh0cnVlKTsNCgkJJHF1ZXJ5LT5zZWxlY3QoJGRiLT5xdW90ZU5hbWUoYXJyYXkoJ2EuIyMjSUQjIyMnLCdhLiMjI1RFWFQjIyMnKSxhcnJheSgnIyMjSUQjIyMnLCcjIyNDT0RFX1RFWFQjIyMnKSkpOw0KCQkkcXVlcnktPmZyb20oJGRiLT5xdW90ZU5hbWUoJyMjI1RBQkxFIyMjJywgJ2EnKSk7DQoJCSRxdWVyeS0+d2hlcmUoJGRiLT5xdW90ZU5hbWUoJ2EucHVibGlzaGVkJykgLiAnID0gMScpOw0KCQkkcXVlcnktPm9yZGVyKCdhLiMjI1RFWFQjIyMgQVNDJyk7DQoJCSRkYi0+c2V0UXVlcnkoKHN0cmluZykkcXVlcnkpOw0KCQkkaXRlbXMgPSAkZGItPmxvYWRPYmplY3RMaXN0KCk7DQoJCSRvcHRpb25zID0gYXJyYXkoKTsNCgkJaWYgKCRpdGVtcykNCgkJew0KCQkJaWYgKCR0aGlzLT5tdWx0aXBsZSA9PT0gZmFsc2UpDQoJCQl7DQoJCQkJJG9wdGlvbnNbXSA9IEpIdG1sOjpfKCdzZWxlY3Qub3B0aW9uJywgJycsIEpUZXh0OjpfKCdTZWxlY3QgYSBzZXJpZXMnKSk7DQoJCQl9DQoJCQlmb3JlYWNoKCRpdGVtcyBhcyAkaXRlbSkNCgkJCXsNCgkJCQkkb3B0aW9uc1tdID0gSkh0bWw6Ol8oJ3NlbGVjdC5vcHRpb24nLCAkaXRlbS0+IyMjSUQjIyMsICRpdGVtLT4jIyNDT0RFX1RFWFQjIyMpOw0KCQkJfQ0KCQl9DQoNCgkJcmV0dXJuICRvcHRpb25zOw==\\\"\\n\\/>\"', 1, '2015-11-14 15:41:29', '2020-11-30 02:20:29', 2, '', 625, 'ff41e576-e458-4a5d-a375-a2a0280d9095', '', '', '', '', ''),
(922, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Scripture ref (sermons)', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"scripture\\\" \\r\\n\\tlabel=\\\"Scripture\\\" \\r\\n\\tsize=\\\"90\\\" \\r\\n\\tmaxlength=\\\"150\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tdescription=\\\"Add scripture reference to this sermon, use comma separation for multiply references.\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\treadonly=\\\"false\\\" \\r\\n\\tdisabled=\\\"false\\\" \\r\\n\\trequired=\\\"false\\\" \\r\\n\\tfilter=\\\"STRING\\\" \\r\\n\\tmessage=\\\"Error! Please add some scripture reference here.\\\" \\r\\n\\thint=\\\"1 John 3:16, Psalm 1, James 1:1-5\\\" \\r\\n\\/>\"', 1, '2015-11-17 17:15:58', '0000-00-00 00:00:00', 1, '', 638, 'd09416d1-5ca4-4513-97c5-31ddbd941355', '', '', '', '', ''),
(923, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Switch categories - Table/Grid', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"categories_display\\\" \\r\\n\\tlabel=\\\"Display\\\" \\r\\n\\tdescription=\\\"Select the option for display of categories.\\\" \\r\\n\\tclass=\\\"btn-group btn-group-yesno\\\" \\r\\n\\toption=\\\"1|Table,2|Grid,3|List\\\" \\r\\n\\tdefault=\\\"2\\\" \\r\\n\\trequired=\\\"\\\" \\r\\n\\/>\"', 1, '2015-11-07 12:19:56', '2015-11-19 21:44:39', 4, '', 635, 'f81f1d18-8733-4310-bf37-10f52635c059', '', '', '', '', ''),
(924, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Switch categories - Hits', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"categories_hits\\\" \\r\\n\\tlabel=\\\"Show Hits\\\" \\r\\n\\tdescription=\\\"Set if hits should be shown.\\\" \\r\\n\\tclass=\\\"btn-group btn-group-yesno\\\" \\r\\n\\toption=\\\"1|Yes,0|No\\\" \\r\\n\\tdefault=\\\"1\\\" \\r\\n\\trequired=\\\"\\\" \\r\\n\\/>\"', 1, '2015-11-07 12:21:34', '2015-11-19 21:45:09', 4, '', 635, 'b016f311-8ae6-4b35-b91c-29a8ebcf7312', '', '', '', '', ''),
(925, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Switch categories - Description', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"categories_desc\\\" \\r\\n\\tlabel=\\\"Show Description\\\" \\r\\n\\tdescription=\\\"Set if description should be shown.\\\" \\r\\n\\tclass=\\\"btn-group btn-group-yesno\\\" \\r\\n\\toption=\\\"1|Yes,0|No\\\" \\r\\n\\tdefault=\\\"1\\\" \\r\\n\\trequired=\\\"\\\" \\r\\n\\/>\"', 1, '2015-11-07 12:22:13', '2015-11-19 21:45:34', 5, '', 635, 'c95f44a9-3ff9-4956-b3e3-edc3153a06fc', '', '', '', '', ''),
(926, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Switch categories - Sermon Count', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"categories_sermon_count\\\" \\r\\n\\tlabel=\\\"Show Sermon Count\\\" \\r\\n\\tdescription=\\\"Set if sermon count should be shown.\\\" \\r\\n\\tclass=\\\"btn-group btn-group-yesno\\\" \\r\\n\\toption=\\\"1|Yes,0|No\\\" \\r\\n\\tdefault=\\\"1\\\" \\r\\n\\trequired=\\\"\\\" \\r\\n\\/>\"', 1, '2015-11-07 12:23:35', '2015-11-19 21:46:04', 3, '', 635, '5076bcd9-89dd-49ce-b229-fb439d56bf43', '', '', '', '', ''),
(927, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Switch categories - Icon', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"categories_icon\\\" \\r\\n\\tlabel=\\\"Show Icon (grid)\\\" \\r\\n\\tdescription=\\\"Set if icon should be shown in grid display option.\\\" \\r\\n\\tclass=\\\"btn-group btn-group-yesno\\\" \\r\\n\\toption=\\\"1|Yes,0|No\\\" \\r\\n\\tdefault=\\\"1\\\" \\r\\n\\trequired=\\\"\\\" \\r\\n\\/>\"', 1, '2015-11-07 12:34:43', '2015-11-19 21:46:34', 3, '', 635, 'feeb49be-bb7f-4c56-bf6e-99285d3e0588', '', '', '', '', ''),
(928, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Switch categories - List Style', 'NOT NULL', '', 11, '\"<field \\r\\n\\ttype=\\\"list\\\" \\r\\n\\tname=\\\"categories_list_style\\\" \\r\\n\\tlabel=\\\"List Style\\\" \\r\\n\\tdescription=\\\"Select the style to use for the list display option.\\\" \\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\tmultiple=\\\"false\\\" \\r\\n\\tfilter=\\\"INT\\\" \\r\\n\\trequired=\\\"\\\" \\r\\n\\toption=\\\"0|Plain,1|Lines,2|Striped,3|Spaced\\\" \\r\\n\\tdefault=\\\"0\\\" \\r\\n\\/>\"', 1, '2015-11-07 17:59:59', '2015-11-19 21:47:00', 3, '', 635, '222c0014-f530-45ef-acf8-419657bc5b1b', '', '', '', '', ''),
(929, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Switch categories - Table Color', 'NOT NULL', '', 11, '\"<field \\r\\n\\ttype=\\\"list\\\" \\r\\n\\tname=\\\"categories_table_color\\\" \\r\\n\\tlabel=\\\"Table Color\\\" \\r\\n\\tdescription=\\\"Select the color to use for the table display option.\\\" \\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\tmultiple=\\\"false\\\" \\r\\n\\tfilter=\\\"INT\\\" \\r\\n\\trequired=\\\"\\\" \\r\\n\\toption=\\\"0|Blue,1|Red,2|Purple,3|Green,4|Dark Blue,5|Legacy,6|Uikit,7|Custom,8|None\\\" \\r\\n\\tdefault=\\\"0\\\" \\r\\n\\/>\"', 1, '2015-11-07 18:01:19', '2015-11-19 21:47:26', 7, '', 635, '8a9e2923-8635-4648-93c2-da22c71153c6', '', '', '', '', ''),
(930, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Switch categories - Title', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"categories_title\\\" \\r\\n\\tlabel=\\\"Show Title\\\" \\r\\n\\tdescription=\\\"Set if title should be shown.\\\" \\r\\n\\tclass=\\\"btn-group btn-group-yesno\\\" \\r\\n\\toption=\\\"1|Yes,0|No\\\" \\r\\n\\tdefault=\\\"1\\\" \\r\\n\\trequired=\\\"\\\" \\r\\n\\/>\"', 1, '2015-11-07 18:23:52', '2015-11-19 21:48:05', 2, '', 635, '8ad5381e-b684-4bdc-9c96-e54399616ce7', '', '', '', '', ''),
(931, '', '', '', '', '', '', '', '', 64, '', 'CHAR', '', '', '', 'Category Default Icon (sermon distributor)', 'NOT NULL', '', 12, '\"<field \\r\\n\\ttype=\\\"media\\\" \\r\\n\\tname=\\\"category_default_icon\\\" \\r\\n\\tlabel=\\\"Category Default Icon \\\" \\r\\n\\tdescription=\\\"Must be 358px x 358px\\\" \\r\\n\\tdirectory=\\\"Set the default icon for categories.\\\" \\r\\n\\/>\"', 1, '2015-11-07 23:11:59', '2015-11-19 21:48:55', 2, '', 46, '4f9a651a-9553-4f63-a9ed-fd62e149d717', '', '', '', '', ''),
(932, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'oops', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"preacher_sermons_series\\\" \\r\\n\\tlabel=\\\"Show Sermon Series\\\" \\r\\n\\tdescription=\\\"Set if the series link should be shown.\\\" \\r\\n\\tclass=\\\"btn-group btn-group-yesno\\\" \\r\\n\\toption=\\\"1|Yes,0|No\\\" \\r\\n\\tdefault=\\\"1\\\" \\r\\n\\trequired=\\\"\\\" \\r\\n\\/>\"', -2, '2015-11-07 18:23:52', '2015-11-19 21:50:07', 6, '', '', '38f287e6-ce09-49bb-9c19-4c403613c36c', '', '', '', '', ''),
(933, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Switch category - Panel/Box/Small', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"category_display\\\" \\r\\n\\tlabel=\\\"Display\\\" \\r\\n\\tdescription=\\\"Select the option for display of a category.\\\" \\r\\n\\tclass=\\\"btn-group btn-group-yesno\\\" \\r\\n\\toption=\\\"1|Panel,2|Box,3|Small\\\" \\r\\n\\tdefault=\\\"3\\\" \\r\\n\\trequired=\\\"\\\" \\r\\n\\/>\"', 1, '2015-11-07 12:19:56', '2015-11-19 21:50:47', 7, '', 635, 'b254315e-0593-4f25-a7b8-7152d4bf0c82', '', '', '', '', ''),
(934, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Switch category - Hits', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"category_hits\\\" \\r\\n\\tlabel=\\\"Show Hits\\\" \\r\\n\\tdescription=\\\"Set if hits should be shown.\\\" \\r\\n\\tclass=\\\"btn-group btn-group-yesno\\\" \\r\\n\\toption=\\\"1|Yes,0|No\\\" \\r\\n\\tdefault=\\\"1\\\" \\r\\n\\trequired=\\\"\\\" \\r\\n\\/>\"', 1, '2015-11-07 12:21:34', '2015-11-19 21:51:10', 7, '', 635, 'b4dbce15-1c37-4db4-9cfc-ee35678cc7d5', '', '', '', '', ''),
(935, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Switch category - Description', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"category_desc\\\" \\r\\n\\tlabel=\\\"Show Description\\\" \\r\\n\\tdescription=\\\"Set if description should be shown.\\\" \\r\\n\\tclass=\\\"btn-group btn-group-yesno\\\" \\r\\n\\toption=\\\"1|Yes,0|No\\\" \\r\\n\\tdefault=\\\"1\\\" \\r\\n\\trequired=\\\"\\\" \\r\\n\\/>\"', 1, '2015-11-07 12:22:13', '2015-11-19 21:51:33', 8, '', 635, 'bc57e8dc-f133-4341-aa0b-45ccfd2bc648', '', '', '', '', ''),
(936, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Switch category - Sermon Count', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"category_sermon_count\\\" \\r\\n\\tlabel=\\\"Show Sermon Count\\\" \\r\\n\\tdescription=\\\"Set if sermon count should be shown.\\\" \\r\\n\\tclass=\\\"btn-group btn-group-yesno\\\" \\r\\n\\toption=\\\"1|Yes,0|No\\\" \\r\\n\\tdefault=\\\"1\\\" \\r\\n\\trequired=\\\"\\\" \\r\\n\\/>\"', 1, '2015-11-07 12:23:35', '2015-11-19 21:51:56', 6, '', 635, '23bed88e-193c-4d91-88a2-8641d7bbd0a3', '', '', '', '', ''),
(937, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Switch category - Icon', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"category_icon\\\" \\r\\n\\tlabel=\\\"Show Icon\\\" \\r\\n\\tdescription=\\\"Set if icon should be shown.\\\" \\r\\n\\tclass=\\\"btn-group btn-group-yesno\\\" \\r\\n\\toption=\\\"1|Yes,0|No\\\" \\r\\n\\tdefault=\\\"1\\\" \\r\\n\\trequired=\\\"\\\" \\r\\n\\/>\"', 1, '2015-11-07 12:34:43', '2015-11-19 21:52:15', 6, '', 635, '31030ccc-2a0a-4e1d-8d26-be06c45b111e', '', '', '', '', ''),
(938, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Switch category - List Style', 'NOT NULL', '', 11, '\"<field \\r\\n\\ttype=\\\"list\\\" \\r\\n\\tname=\\\"category_list_style\\\" \\r\\n\\tlabel=\\\"List Style\\\" \\r\\n\\tdescription=\\\"Select the style to use for the list display option.\\\" \\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\tmultiple=\\\"false\\\" \\r\\n\\tfilter=\\\"INT\\\" \\r\\n\\trequired=\\\"\\\" \\r\\n\\toption=\\\"0|Plain,1|Lines,2|Striped,3|Spaced\\\" \\r\\n\\tdefault=\\\"0\\\" \\r\\n\\/>\"', 1, '2015-11-07 17:59:59', '2015-11-19 21:52:41', 6, '', 635, 'ebb79c58-0a3f-49a9-a165-c1c15785f2a6', '', '', '', '', ''),
(939, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Switch sermons (Category) - Table/Grid', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"category_sermons_display\\\" \\r\\n\\tlabel=\\\"Sermons Display\\\" \\r\\n\\tdescription=\\\"Select the option for display of sermons in the category layout.\\\" \\r\\n\\tclass=\\\"btn-group btn-group-yesno\\\" \\r\\n\\toption=\\\"1|Table,2|Grid,3|List\\\" \\r\\n\\tdefault=\\\"2\\\" \\r\\n\\trequired=\\\"\\\" \\r\\n\\/>\"', 1, '2015-11-07 12:19:56', '2015-11-19 21:53:40', 9, '', 635, 'fa2d763c-369a-4547-8bd0-19e9ab96917c', '', '', '', '', ''),
(940, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Switch sermons (Category) - Hits', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"category_sermons_hits\\\" \\r\\n\\tlabel=\\\"Show Sermon Hits\\\" \\r\\n\\tdescription=\\\"Set if sermon hits should be shown.\\\" \\r\\n\\tclass=\\\"btn-group btn-group-yesno\\\" \\r\\n\\toption=\\\"1|Yes,0|No\\\" \\r\\n\\tdefault=\\\"1\\\" \\r\\n\\trequired=\\\"\\\" \\r\\n\\/>\"', 1, '2015-11-07 12:21:34', '2015-11-19 21:54:11', 9, '', 635, '9439ae23-77d1-4b7f-a2a9-d53c1c1c05eb', '', '', '', '', ''),
(941, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Switch sermons (Category) - Description', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"category_sermons_desc\\\" \\r\\n\\tlabel=\\\"Show Sermons Description\\\" \\r\\n\\tdescription=\\\"Set if sermons description should be shown.\\\" \\r\\n\\tclass=\\\"btn-group btn-group-yesno\\\" \\r\\n\\toption=\\\"1|Yes,0|No\\\" \\r\\n\\tdefault=\\\"1\\\" \\r\\n\\trequired=\\\"\\\" \\r\\n\\/>\"', 1, '2015-11-07 12:22:13', '2015-11-19 21:54:44', 9, '', 635, '8f1fb233-e6f5-4ea0-aa42-ce7e3ee2f67d', '', '', '', '', ''),
(942, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Switch sermons (Category) - Sermon Counter', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"category_sermons_download_counter\\\" \\r\\n\\tlabel=\\\"Show Sermons Download Counter\\\" \\r\\n\\tdescription=\\\"Set if sermons download counter should be shown.\\\" \\r\\n\\tclass=\\\"btn-group btn-group-yesno\\\" \\r\\n\\toption=\\\"1|Yes,0|No\\\" \\r\\n\\tdefault=\\\"1\\\" \\r\\n\\trequired=\\\"\\\" \\r\\n\\/>\"', 1, '2015-11-07 12:23:35', '2015-11-19 21:55:37', 8, '', 635, '888ee5d1-cde7-4766-a28b-a03741b072b8', '', '', '', '', ''),
(943, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Switch sermons (Category) - Icon', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"category_sermons_icon\\\" \\r\\n\\tlabel=\\\"Show Sermon Icon (grid)\\\" \\r\\n\\tdescription=\\\"Set if icon should be shown in grid display option for sermons.\\\" \\r\\n\\tclass=\\\"btn-group btn-group-yesno\\\" \\r\\n\\toption=\\\"1|Yes,0|No\\\" \\r\\n\\tdefault=\\\"1\\\" \\r\\n\\trequired=\\\"\\\" \\r\\n\\/>\"', 1, '2015-11-07 12:34:43', '2015-11-19 21:56:43', 7, '', 635, 'ce46a998-f47d-40e8-912f-fadb17eff0f0', '', '', '', '', ''),
(944, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Switch sermons (Category) - List Style', 'NOT NULL', '', 11, '\"<field \\r\\n\\ttype=\\\"list\\\" \\r\\n\\tname=\\\"category_sermons_list_style\\\" \\r\\n\\tlabel=\\\"Sermons List Style\\\" \\r\\n\\tdescription=\\\"Select the style to use for the sermons list display option.\\\" \\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\tmultiple=\\\"false\\\" \\r\\n\\tfilter=\\\"INT\\\" \\r\\n\\trequired=\\\"\\\" \\r\\n\\toption=\\\"0|Plain,1|Lines,2|Striped,3|Spaced\\\" \\r\\n\\tdefault=\\\"0\\\" \\r\\n\\/>\"', 1, '2015-11-07 17:59:59', '2015-11-19 21:57:14', 7, '', 635, 'be4104f7-a54d-4a9e-91b5-f782636cfbdc', '', '', '', '', ''),
(945, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Switch sermons (Category) - Table Color', 'NOT NULL', '', 11, '\"<field \\r\\n\\ttype=\\\"list\\\" \\r\\n\\tname=\\\"category_sermons_table_color\\\" \\r\\n\\tlabel=\\\"Sermons Table Color\\\" \\r\\n\\tdescription=\\\"Select the color to use for the sermons table display option.\\\" \\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\tmultiple=\\\"false\\\" \\r\\n\\tfilter=\\\"INT\\\" \\r\\n\\trequired=\\\"\\\" \\r\\n\\toption=\\\"0|Blue,1|Red,2|Purple,3|Green,4|Dark Blue,5|Legacy,6|Uikit,7|Custom,8|None\\\" \\r\\n\\tdefault=\\\"0\\\" \\r\\n\\/>\"', 1, '2015-11-07 18:01:19', '2015-11-19 21:57:43', 12, '', 635, 'aa686f0e-6e5f-4dee-8b4a-867b584176be', '', '', '', '', ''),
(946, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Switch sermons (Category) - Preacher', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"category_sermons_preacher\\\" \\r\\n\\tlabel=\\\"Show Sermon Preacher\\\" \\r\\n\\tdescription=\\\"Set if the preacher link should be shown.\\\" \\r\\n\\tclass=\\\"btn-group btn-group-yesno\\\" \\r\\n\\toption=\\\"1|Yes,0|No\\\" \\r\\n\\tdefault=\\\"1\\\" \\r\\n\\trequired=\\\"\\\" \\r\\n\\/>\"', 1, '2015-11-07 18:23:52', '2015-11-19 21:58:13', 7, '', 635, '2da679b7-2213-4ee3-8228-9456d8d86c08', '', '', '', '', ''),
(947, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'oops', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"series_sermons_category\\\" \\r\\n\\tlabel=\\\"Show Sermons Category\\\" \\r\\n\\tdescription=\\\"Set if the category link should be shown.\\\" \\r\\n\\tclass=\\\"btn-group btn-group-yesno\\\" \\r\\n\\toption=\\\"1|Yes,0|No\\\" \\r\\n\\tdefault=\\\"1\\\" \\r\\n\\trequired=\\\"\\\" \\r\\n\\/>\"', -2, '2015-11-07 23:06:11', '2015-11-19 21:58:43', 5, '', '', '2263956d-4038-47e6-ac02-6b4305fc9690', '', '', '', '', ''),
(948, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Switch sermons (Category) - Downloads', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"category_sermons_downloads\\\" \\r\\n\\tlabel=\\\"Show Sermon Downloads\\\" \\r\\n\\tdescription=\\\"Set if sermon downloads should be shown.\\\" \\r\\n\\tclass=\\\"btn-group btn-group-yesno\\\" \\r\\n\\toption=\\\"1|Yes,0|No\\\" \\r\\n\\tdefault=\\\"1\\\" \\r\\n\\trequired=\\\"\\\" \\r\\n\\/>\"', 1, '2015-11-10 21:55:19', '2015-11-19 21:59:10', 2, '', 635, '18308e2d-6963-4196-8292-2fcd9077dbb5', '', '', '', '', ''),
(949, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Switch sermons (Category) - Open', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"category_sermons_open\\\" \\r\\n\\tlabel=\\\"Show Sermon Open\\\" \\r\\n\\tdescription=\\\"Set if sermon open button should be shown.\\\" \\r\\n\\tclass=\\\"btn-group btn-group-yesno\\\" \\r\\n\\toption=\\\"1|Yes,0|No\\\" \\r\\n\\tdefault=\\\"1\\\" \\r\\n\\trequired=\\\"\\\" \\r\\n\\/>\"', 1, '2015-11-10 21:58:23', '2015-11-19 21:59:42', 2, '', 635, 'e040b619-3892-411f-a4d5-6c71bdfa6694', '', '', '', '', ''),
(950, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'oops', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"sermon_series\\\" \\r\\n\\tlabel=\\\"Show Sermon Series\\\" \\r\\n\\tdescription=\\\"Set if the series link should be shown.\\\" \\r\\n\\tclass=\\\"btn-group btn-group-yesno\\\" \\r\\n\\toption=\\\"1|Yes,0|No\\\" \\r\\n\\tdefault=\\\"1\\\" \\r\\n\\trequired=\\\"\\\" \\r\\n\\/>\"', -2, '2015-11-10 23:09:13', '2015-11-19 22:00:05', 2, '', '', 'ea739a2e-4af0-4b15-b880-7909f07fb686', '', '', '', '', ''),
(951, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Switch category - Box Contrast Text', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"category_box_contrast\\\" \\r\\n\\tlabel=\\\"Show Contrast Text\\\" \\r\\n\\tdescription=\\\"Set if text should be contrast in box display option.\\\" \\r\\n\\tclass=\\\"btn-group btn-group-yesno\\\" \\r\\n\\toption=\\\"1|Yes,0|No\\\" \\r\\n\\tdefault=\\\"1\\\" \\r\\n\\trequired=\\\"\\\" \\r\\n\\/>\"', 1, '2015-11-11 21:27:19', '2015-11-19 22:00:29', 2, '', 635, 'dd92f606-cb1f-4c66-aea9-9ac0cd3a2bac', '', '', '', '', ''),
(952, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'Category Menu Item', 'NOT NULL', '', 33, '\"<field \\r\\n\\ttype=\\\"menuitem\\\" \\r\\n\\tname=\\\"category_menu\\\" \\r\\n\\tlabel=\\\"Category Menu Item\\\" \\r\\n\\tdescription=\\\"Select the menu item you would like your category view to be linked to.\\\" \\r\\n\\tfilter=\\\"int\\\" \\r\\n\\tpublished=\\\"1\\\"\\r\\n\\/>\"', 1, '2015-11-14 14:07:04', '2015-11-19 22:01:08', 4, '', 637, '9fe93f82-cbe3-4fcd-9cf0-ba0e166f9d31', '', '', '', '', ''),
(953, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'Sermon Category (request_id)', 'NOT NULL', '', 2, '\"<field\\n\\ttype=\\\"category\\\"\\n\\tname=\\\"category_request_id\\\"\\n\\tlabel=\\\"Category\\\"\\n\\textension=\\\"com_sermondistributor.sermon\\\"\\n\\tscope=\\\"\\\"\\n\\trequired=\\\"false\\\"\\n\\tdefault=\\\"\\\"\\n\\tdescription=\\\"select one of the following categories\\\"\\n\\tclass=\\\"inputbox\\\"\\n\\tpublished=\\\"\\\"\\n\\/>\"', 1, '2015-11-14 15:41:29', '2020-10-09 14:24:25', 6, '', 625, 'cdc4c76b-7ad0-4a1d-be63-709980654c0e', '', '', '', '', ''),
(954, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Switch sermons (Category) - Series', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"category_sermons_series\\\" \\r\\n\\tlabel=\\\"Show Sermon Series\\\" \\r\\n\\tdescription=\\\"Set if the series link should be shown.\\\" \\r\\n\\tclass=\\\"btn-group btn-group-yesno\\\" \\r\\n\\toption=\\\"1|Yes,0|No\\\" \\r\\n\\tdefault=\\\"1\\\" \\r\\n\\trequired=\\\"\\\" \\r\\n\\/>\"', 1, '2015-11-20 03:19:26', '2015-11-09 14:12:54', 1, '', 635, 'b87bdc48-1ecc-46be-9b02-5d72c00d5a1c', '', '', '', '', ''),
(955, '', '', '', '', '', '', '', '', '', '', 'CHAR', '', '', '', 'Dropbox update method (manual)', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"manual_link_update_method\\\" \\r\\n\\tlabel=\\\"Manual Link Update Method\\\" \\r\\n\\tdescription=\\\"Select the method we should use when updating the manual links\\\" \\r\\n\\tclass=\\\"btn-group btn-group-yesno\\\" \\r\\n\\toption=\\\"1|Manual,2|Automatic\\\" \\r\\n\\tdefault=\\\"1\\\" \\r\\n\\trequired=\\\"\\\" \\r\\n\\/>\"', 2, '2015-11-20 13:42:20', '2016-11-03 20:09:25', 3, '', 639, '125d6adb-d283-4776-be38-bfe4e5e1ff51', '', '', '', '', ''),
(956, '', '', '', '', '', '', '', '', '', '', 'TINYINT', 2, '', '', 'Update Method', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"update_method\\\" \\r\\n\\tlabel=\\\"Update Method\\\" \\r\\n\\tdescription=\\\"Select the method we should use when updating the links.\\\" \\r\\n\\tclass=\\\"btn-group btn-group-yesno\\\" \\r\\n\\toption=\\\"1|Manual,2|Automatic\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\/>\"', 1, '2015-11-20 13:42:53', '2016-11-04 00:06:04', 4, '', 639, '216d514f-e6ad-48d0-8ddc-5d9670c9adfc', '', '', '', '', ''),
(957, '', '', '', '', '', '', '', '', 1, '', 'INT', '', '', '', 'Manual Update Timer', 'NOT NULL', '', 10, '\"<field \\r\\n\\ttype=\\\"integer\\\" \\r\\n\\tname=\\\"manual_update_timer\\\" \\r\\n\\tlabel=\\\"Manual Update Timer\\\" \\r\\n\\tdefault=\\\"60\\\" \\r\\n\\tdescription=\\\"Set the timer in minutes for updating the external source manual local listing of file links.\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\trequired=\\\"\\\" \\r\\n\\tfirst=\\\"0\\\" \\r\\n\\tlast=\\\"50000\\\" \\r\\n\\tstep=\\\"10\\\" \\r\\n\\/>\"', 1, '2015-11-20 13:44:17', '2016-11-03 20:04:58', 3, '', 602, '43ddeeca-ef62-4f9c-919d-d8ef7d3a7ba0', '', '', '', '', ''),
(958, '', '', '', '', '', '', '', '', 1, '', 'INT', '', '', '', 'Update Timer', 'NOT NULL', '', 10, '\"<field \\r\\n\\ttype=\\\"integer\\\" \\r\\n\\tname=\\\"update_timer\\\" \\r\\n\\tlabel=\\\"Update Timer\\\" \\r\\n\\tdefault=\\\"60\\\" \\r\\n\\tdescription=\\\"Set the timer in minutes for updating the external source local listing of file links.\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\tfirst=\\\"60\\\" \\r\\n\\tlast=\\\"50000\\\" \\r\\n\\tstep=\\\"10\\\" \\r\\n\\/>\"', 1, '2015-11-20 13:44:58', '2016-11-27 12:37:52', 4, '', 602, 'b0ab9127-409f-44ce-a2dc-e9496f4f6d8c', '', '', '', '', ''),
(959, '', '', '', '', '', '', '', '', '', '', 'CHAR', '', '', '', 'Dropbox Manual Update Button - (manual)', 'NOT NULL', '', 14, '\"<field \\r\\n\\ttype=\\\"note\\\" \\r\\n\\tname=\\\"note_update_manual_button_dropbox\\\" \\r\\n\\tdescription=\\\"<div id=\'control-label-manual-update\'>Manual Update Method<\\/div><div id=\'controls-manual-update\'><a class=\'btn btn-small btn-success\' onclick=\'updateLocalLinks(1)\' href=\'javascript:void(0)\'>Update Listing Now!<\\/a> <small>(manual listing)<\\/small> <span class=\'manualTimer\'><\\/span> <span class=\'manual-dots loading-dots\' style=\'display: none;\'><\\/span><\\/div>\\r\\n<script>\\r\\nvar checker = null;\\r\\nvar token = 0;\\r\\njQuery(document).ready(function()\\r\\n{\\r\\n\\t\\/\\/ house cleaning\\r\\n\\tbuildButton(\'manual\');\\r\\n\\tbuildButton(\'auto\');\\r\\n\\tchecker = window.setInterval(function(){getProgress();}, 2000);\\r\\n\\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});\\r\\njQuery(document).ready( function($) {\\r\\n \\r\\n});\\r\\njQuery(\'#component-form\').on(\'change\', \'#jform_manual_link_update_method\',function (e)\\r\\n{\\r\\n\\te.preventDefault();\\r\\n\\tvar value = jQuery(\'#jform_manual_link_update_method input[type=\\\\\'radio\\\\\']:checked\').val();\\r\\n\\tupdateButton(value,\'.note_update_manual_button_dropbox\',\'#jform_manual_dropbox_timer\');\\r\\n\\r\\n});\\r\\njQuery(\'#component-form\').on(\'change\', \'#jform_auto_link_update_method\',function (e)\\r\\n{\\r\\n\\te.preventDefault();\\r\\n\\tvar value = jQuery(\'#jform_auto_link_update_method input[type=\\\\\'radio\\\\\']:checked\').val();\\r\\n\\tupdateButton(value,\'.note_update_auto_button_dropbox\',\'#jform_auto_dropbox_timer\');\\r\\n\\r\\n});\\r\\nfunction buildButton(type)\\r\\n{\\r\\n\\tvar lable = jQuery(\'#control-label-\'+type+\'-update\').html();\\r\\n\\tvar control = jQuery(\'#controls-\'+type+\'-update\').html();\\r\\n\\t\\/\\/ now remove button from page\\r\\n\\tjQuery(\'#control-label-\'+type+\'-update\').remove();\\r\\n\\tjQuery(\'#controls-\'+type+\'-update\').remove();\\r\\n\\t\\/\\/ now add to correct place\\r\\n\\tvar div = jQuery(\'.note_update_\'+type+\'_button_dropbox\').closest(\'.control-group\');\\r\\n\\tjQuery(div).find(\'.control-label\').append(lable);\\r\\n\\tjQuery(div).find(\'.controls\').append(control);\\r\\n\\r\\n\\tvar value = jQuery(\'#jform_\'+type+\'_link_update_method input[type=\\\\\'radio\\\\\']:checked\').val();\\r\\n\\tupdateButton(value,\'.note_update_\'+type+\'_button_dropbox\',\'#jform_\'+type+\'_dropbox_timer\');\\r\\n}\\r\\nfunction updateButton(value,button,timer)\\r\\n{\\r\\n\\tif (1 == value)\\r\\n\\t{\\r\\n\\t\\tjQuery(button).closest(\'.control-group\').show();\\r\\n\\t\\tjQuery(timer).closest(\'.control-group\').hide();\\r\\n\\t}\\r\\n\\telse if (2 == value)\\r\\n\\t{\\r\\n\\t\\tjQuery(button).closest(\'.control-group\').hide();\\r\\n\\t\\tjQuery(timer).closest(\'.control-group\').show();\\r\\n\\t}\\r\\n}\\r\\n\\/\\/ to see if we should start checking progress\\r\\nupdateCounter = new Array();\\r\\nupdateCounter[1] = 0;\\r\\nupdateCounter[2] = 0;\\r\\nfunction getProgress()\\r\\n{\\r\\n\\tif (updateCounter[1] == 1)\\r\\n\\t{\\r\\n\\t\\t\\/\\/ check progress\\r\\n\\t\\tprogress(1);\\r\\n\\t}\\r\\n\\tif (updateCounter[2] == 1)\\r\\n\\t{\\r\\n\\t\\t\\/\\/ check progress\\r\\n\\t\\tprogress(2);\\r\\n\\t}\\r\\n}\\r\\nfunction progress(type)\\r\\n{\\r\\n\\tserver_getProgress(type).done(function(result) {\\r\\n\\t\\tif (result)\\r\\n\\t\\t{\\r\\n\\t\\t\\t\\/\\/ set update timer\\r\\n\\t\\t\\tif (1 == type)\\r\\n\\t\\t\\t{\\r\\n\\t\\t\\t\\tif (result == 100)\\r\\n\\t\\t\\t\\t{\\r\\n\\t\\t\\t\\t\\tvar color = \'style=\\\\\'color: #3c763d;\\\\\'\';\\r\\n\\t\\t\\t\\t\\tvar note = \'<b>Update Completed:<\\/b>\';\\r\\n\\t\\t\\t\\t\\tjQuery(\'.manual-dots\').hide();\\r\\n\\t\\t\\t\\t\\tupdateCounter[type] = 0;\\r\\n\\t\\t\\t\\t}\\r\\n\\t\\t\\t\\telse\\r\\n\\t\\t\\t\\t{\\r\\n\\t\\t\\t\\t\\tvar color = \'style=\\\\\'color: #3C708F;\\\\\'\';\\r\\n\\t\\t\\t\\t\\tvar note = \'<b>Update in Progress:<\\/b>\';\\r\\n\\t\\t\\t\\t\\tjQuery(\'.manual-dots\').show();\\r\\n\\t\\t\\t\\t}\\r\\n\\t\\t\\t\\t\\/\\/ manualTimer\\r\\n\\t\\t\\t\\tjQuery(\'.manualTimer\').html(\' <small \'+color+\'>\'+note+\' \'+result+\'%<\\/small>\');\\r\\n\\t\\t\\t}\\r\\n\\t\\t\\telse if (2 == type)\\r\\n\\t\\t\\t{\\r\\n\\t\\t\\t\\tif (result == 100)\\r\\n\\t\\t\\t\\t{\\r\\n\\t\\t\\t\\t\\tvar color = \'style=\\\\\'color: #3c763d;\\\\\'\';\\r\\n\\t\\t\\t\\t\\tvar note = \'<b>Update Completed:<\\/b>\';\\r\\n\\t\\t\\t\\t\\tjQuery(\'.auto-dots\').hide();\\r\\n\\t\\t\\t\\t\\tupdateCounter[type] = 0;\\r\\n\\t\\t\\t\\t}\\r\\n\\t\\t\\t\\telse\\r\\n\\t\\t\\t\\t{\\r\\n\\t\\t\\t\\t\\tvar color = \'style=\\\\\'color: #3C708F;\\\\\'\';\\r\\n\\t\\t\\t\\t\\tvar note = \'<b>Update in Progress:<\\/b>\';\\r\\n\\t\\t\\t\\t\\tjQuery(\'.auto-dots\').show();\\r\\n\\t\\t\\t\\t}\\r\\n\\t\\t\\t\\t\\/\\/ autoTimer\\r\\n\\t\\t\\t\\tjQuery(\'.autoTimer\').html(\' <small \'+color+\'>\'+note+\' \'+result+\'%<\\/small>\');\\r\\n\\t\\t\\t}\\r\\n\\t\\t}\\r\\n\\t\\telse\\r\\n\\t\\t{\\r\\n\\t\\t\\tupdateCounter[type] = 0;\\r\\n\\t\\t}\\r\\n\\t});\\r\\n}\\r\\nfunction server_getProgress(type)\\r\\n{\\r\\n\\tvar getUrl = \'index.php?option=com_sermondistributor&task=ajax.getUpdateProgress&format=json\';\\r\\n\\tif(type > 0 && token.length == 32){\\r\\n\\t\\tvar request = \'token=\'+token+\'&type=\'+type;\\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\\t\\r\\n}\\r\\nfunction updateLocalLinks(type)\\r\\n{\\r\\n\\t\\/\\/ get token from the form\\r\\n\\tjQuery(\'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 = jQuery(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\\/\\/ set update timer\\r\\n\\tif (1 == type)\\r\\n\\t{\\r\\n\\t\\tvar typeNote = \'Manual\';\\r\\n\\t\\tvar typenote = \'manual\';\\r\\n\\t}\\r\\n\\telse if (2 == type)\\r\\n\\t{\\r\\n\\t\\tvar typeNote = \'Auto\';\\r\\n\\t\\tvar typenote = \'auto\';\\r\\n\\t}\\r\\n\\tvar message = [\'<h3>\'+typeNote+\' Update Started.<\\/h3><p>The update will continue to run in the background even if you close the page.<\\/p><h4><span class=\\\\\'\'+typenote+\'Timer\\\\\'><\\/span> <span class=\\\\\'\'+typenote+\'-dots loading-dots\\\\\'><\\/span><\\/h4>\'];\\r\\n\\tJoomla.renderMessages({\'info\': message});\\r\\n\\t\\/\\/ start progress checker\\r\\n\\tupdateCounter[type] = 1;\\r\\n\\t\\/\\/ call the server\\r\\n\\tserver_updateLocalLinks(type).done(function(result) {\\r\\n\\t\\tif (result)\\r\\n\\t\\t{\\r\\n\\t\\t\\tvar message = [\'<h3>Successfully Completed \'+typeNote+\' Update.<\\/h3>\'];\\r\\n\\t\\t\\tJoomla.renderMessages({\'success\': message});\\r\\n\\t\\t}\\r\\n\\t\\telse\\r\\n\\t\\t{\\r\\n\\t\\t\\tvar message = [\'<h3>The \'+typenote+\' update is unable to run, this could be bacause following reasonse:<\\/h3><ul><li><b>That an update is already running.<\\/b><\\/li><li>That there is no Dropbox urls set below.<\\/li><li>That the the urls set below are not valid dropbox shared urls.<\\/li><li>That you did not set the needed Dropbox file types.<\\/li><li>The some php methods needed to get the file names from Dropbox are being blocked, make sure that <b>allow_url_fopen<\\/b> is set to <b>on<\\/b> in your php.ini on this server.<\\/li><li>The the system has encountered an error.<\\/li><\\/ul>\'];\\r\\n\\t\\t\\tJoomla.renderMessages({\'error\': message});\\r\\n\\t\\t}\\r\\n\\t});\\r\\n}\\r\\nfunction server_updateLocalLinks(type)\\r\\n{\\r\\n\\tvar getUrl = \'index.php?option=com_sermondistributor&task=ajax.updateDropboxListing&format=json\';\\r\\n\\tif(type > 0 && token.length == 32){\\r\\n\\t\\tvar request = \'token=\'+token+\'&type=\'+type;\\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\\t\\r\\n}\\r\\n<\\/script>\\\" \\r\\n\\tclass=\\\"\\\" \\r\\n\\/>\"', 1, '2015-11-20 14:05:06', '2015-11-21 21:24:55', 7, '', 603, '84d378f8-646f-46bc-a815-b813b617e1ad', '', '', '', '', ''),
(960, '', '', '', '', '', '', '', '', '', '', 'CHAR', '', '', '', 'Dropbox Manual Update Button - (auto)', 'NOT NULL', '', 14, '\"<field \\r\\n\\ttype=\\\"note\\\" \\r\\n\\tname=\\\"note_update_auto_button_dropbox\\\" \\r\\n\\tdescription=\\\"<div id=\'control-label-auto-update\'>Manual Update Method<\\/div><div id=\'controls-auto-update\'><a class=\'btn btn-small btn-success\' onclick=\'updateLocalLinks(2)\' href=\'javascript:void(0)\'>Update Listing Now!<\\/a> <small>(auto listing)<\\/small> <span class=\'autoTimer\'><\\/span> <span class=\'auto-dots loading-dots\' style=\'display: none;\'><\\/span><\\/div>\\\" \\r\\n\\tclass=\\\"\\\" \\r\\n\\/>\"', 1, '2015-11-20 15:54:23', '2015-11-21 21:25:40', 4, '', 603, '3a2fdbe9-1aa4-45a8-88d3-4d1837287fd3', '', '', '', '', ''),
(961, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'File Types', 'NOT NULL', 1, 11, '\"<field \\r\\n\\ttype=\\\"list\\\" \\r\\n\\tname=\\\"filetypes\\\" \\r\\n\\tlabel=\\\"File Types\\\"\\r\\n\\tdescription=\\\"Select the file types you would like to use from this external sources.\\\" \\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\tmultiple=\\\"true\\\" \\r\\n\\tfilter=\\\"ARRAY\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\toption=\\\".mp3,.m4a,.ogg,.wav,.mp4,.m4v,.mov,.wmv,.avi,.mpg,.ogv,.3gp,.3g2,.pdf,.doc,.docx,.ppt,.pptx,.pps,.ppsx,.odt,.xls,.xlsx,.zip,.jpg,.jpeg,.png,.gif\\\" \\r\\n\\tdefault=\\\"0\\\" \\r\\n\\/>\"', 1, '2015-11-20 19:50:44', '2016-11-03 17:41:09', 3, '', 640, 'b1902bcd-d88a-439f-9cd4-0c761e56aaf6', '', '', '', '', ''),
(962, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Compiler Folder Path', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"compiler_folder_path\\\"\\n\\tlabel=\\\"Compiler Folder Path\\\"\\n\\tsize=\\\"70\\\"\\n\\tmaxlength=\\\"150\\\"\\n\\tdescription=\\\"Here you can set the path to the compiler folder\\\"\\n\\tclass=\\\"text_area\\\"\\n\\treadonly=\\\"false\\\"\\n\\tdisabled=\\\"false\\\"\\n\\trequired=\\\"false\\\"\\n\\tfilter=\\\"PATH\\\"\\n\\tmessage=\\\"Error! Please add some text here.\\\"\\n\\thint=\\\"\\/home\\/user\\/compiler\\\"\\n\\tautocomplete=\\\"on\\\"\\n\\/>\"', 1, '2015-11-24 19:27:23', '2021-12-01 00:51:12', 2, '', 641, 'df956034-068e-49a0-9d2c-e5c47b84f7e9', '', '', '', '', ''),
(963, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Custom Folder Path', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"custom_folder_path\\\"\\n\\tlabel=\\\"Custom Folder Path\\\"\\n\\tsize=\\\"70\\\"\\n\\tmaxlength=\\\"150\\\"\\n\\tdescription=\\\"Here you can set the path to the custom folder\\\"\\n\\tclass=\\\"text_area\\\"\\n\\treadonly=\\\"false\\\"\\n\\tdisabled=\\\"false\\\"\\n\\trequired=\\\"false\\\"\\n\\tfilter=\\\"PATH\\\"\\n\\tmessage=\\\"Error! Please add folder path here.\\\"\\n\\thint=\\\"\\/home\\/user\\/custom\\\"\\n\\tautocomplete=\\\"on\\\"\\n\\/>\"', 1, '2015-11-24 19:28:25', '2021-12-01 00:49:47', 2, '', 641, '69633aa4-fe45-47e4-8212-43b6a310c961', '', '', '', '', ''),
(964, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Backup Folder Path', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"backup_folder_path\\\"\\n\\tlabel=\\\"Backup Folder Path\\\"\\n\\tsize=\\\"70\\\"\\n\\tmaxlength=\\\"150\\\"\\n\\tdescription=\\\"Here you can set the path to the backup folder.\\\"\\n\\tclass=\\\"text_area\\\"\\n\\treadonly=\\\"false\\\"\\n\\tdisabled=\\\"false\\\"\\n\\trequired=\\\"false\\\"\\n\\tfilter=\\\"PATH\\\"\\n\\tmessage=\\\"Error! Please add folder path here.\\\"\\n\\thint=\\\"\\/home\\/user\\/backup\\\"\\n\\tautocomplete=\\\"on\\\"\\n\\/>\"', 1, '2015-11-24 19:39:25', '2021-12-01 00:50:14', 3, '', 641, '4272e24d-8074-41f3-99ff-0a7eb2c2ec01', '', '', '', '', ''),
(965, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Git Folder Path', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"git_folder_path\\\"\\n\\tlabel=\\\"Git Folder Path\\\"\\n\\tsize=\\\"70\\\"\\n\\tmaxlength=\\\"150\\\"\\n\\tdescription=\\\"Here you can set the path to the git folder.\\\"\\n\\tclass=\\\"text_area\\\"\\n\\treadonly=\\\"false\\\"\\n\\tdisabled=\\\"false\\\"\\n\\trequired=\\\"false\\\"\\n\\tfilter=\\\"PATH\\\"\\n\\tmessage=\\\"Error! Please add folder path here.\\\"\\n\\thint=\\\"\\/home\\/user\\/git\\\"\\n\\tautocomplete=\\\"on\\\"\\n\\/>\"', 1, '2015-11-24 19:40:38', '2021-12-01 00:50:45', 2, '', 641, 'b68e8758-c55f-487d-9457-50ea7e9a28aa', '', '', '', '', ''),
(966, '', '', '', '', '', '', '', '', '', '', 'CHAR', '', '', '', 'Git Folder Path - Note', 'NOT NULL', '', 14, '\"<field \\r\\n\\ttype=\\\"note\\\" \\r\\n\\tname=\\\"note_git_folder_path\\\" \\r\\n\\tlabel=\\\"Adding git to your compiler method\\\" \\r\\n\\tdescription=\\\"You must set the folder where all the components should be deployed for git. You will have to still do your git commit and other git commands yourself. Each component will create their own folder inside this git folder.\\\" \\r\\n\\theading=\\\"h4\\\" \\r\\n\\tclass=\\\"alert alert-info\\\" \\r\\n\\/>\"', 1, '2015-11-24 23:35:25', '0000-00-00 00:00:00', 1, '', 642, 'eca80e91-462b-4412-a811-ff0878a37414', '', '', '', '', ''),
(967, '', '', '', '', '', '', '', '', '', '', 'CHAR', '', '', '', 'Backup Folder Path - Note', 'NOT NULL', '', 14, '\"<field \\r\\n\\ttype=\\\"note\\\" \\r\\n\\tname=\\\"note_backup_folder_path\\\" \\r\\n\\tlabel=\\\"Adding a backup folder export option\\\" \\r\\n\\tdescription=\\\"You components will be placed as zip files inside this folder.\\\" \\r\\n\\theading=\\\"h4\\\" \\r\\n\\tclass=\\\"alert alert-info\\\" \\r\\n\\/>\"', 1, '2015-11-24 23:38:44', '2016-01-06 09:29:07', 2, '', 642, '13991fac-7aee-4970-ad1a-3c85b359f870', '', '', '', '', ''),
(968, '', '', '', '', '', '', '', '', '', '', 'CHAR', '', '', '', 'Custom Folder Path - Note', 'NOT NULL', '', 14, '\"<field \\r\\n\\ttype=\\\"note\\\" \\r\\n\\tname=\\\"note_custom_folder_path\\\" \\r\\n\\tlabel=\\\"Moving The Custom Folder\\\" \\r\\n\\tdescription=\\\"The custom folder is where all files and folders that you would like to include in your components are stored, the default location is [administrator\\/components\\/com_componentbuilder\\/custom]. You can move this folder by adding your own path here. Remember to move the content of the default custom folder to this new location.\\\" \\r\\n\\theading=\\\"h4\\\" \\r\\n\\tclass=\\\"alert alert-info\\\" \\r\\n\\/>\"', 1, '2015-11-24 23:43:56', '0000-00-00 00:00:00', 1, '', 642, '409274f0-a939-4e42-99d5-e90cf42dbb15', '', '', '', '', ''),
(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', '', '', '', '', ''),
(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', '', '', '', '', ''),
(978, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', 2, '', '', 'Form - Default', 'NOT NULL', '', 24, '\"<field\\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"default\\\" \\r\\n\\tlabel=\\\"Default\\\" \\r\\n\\tsize=\\\"60\\\" \\r\\n\\tmaxlength=\\\"150\\\" \\r\\n\\tdescription=\\\"Enter Field Default Here. It is the default value.\\\"\\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\tfilter=\\\"STRING\\\" \\r\\n\\tmessage=\\\"Error! Please add field default here.\\\" \\r\\n\\thint=\\\"Field Default Value\\\" \\r\\n\\/>\"', 1, '2015-12-04 01:31:16', '2015-12-04 08:45:45', 3, '', 242, 'd35a3d9d-8499-41f0-add7-5d15ccb6abc7', '', '', '', '', ''),
(979, '', '', '', '', '', '', '', '', 64, '', 'CHAR', 2, '', '', 'Form - Class', 'NOT NULL', '', 24, '\"<field\\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"class\\\" \\r\\n\\tlabel=\\\"Class\\\" \\r\\n\\tsize=\\\"60\\\" \\r\\n\\tmaxlength=\\\"150\\\" \\r\\n\\tdescription=\\\"Enter Field Class Here. It is a CSS class name for the HTML form field. If omitted this will default to \'text_area\'..\\\"\\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\tfilter=\\\"STRING\\\" \\r\\n\\tmessage=\\\"Error! Please add field class here.\\\" \\r\\n\\thint=\\\"CSS Class Name\\/s\\\" \\r\\n\\/>\"', 1, '2015-12-04 01:32:53', '2015-12-05 04:26:23', 4, '', 242, '5faa906c-69b8-44ec-ac8b-6fb178e567f1', '', '', '', '', ''),
(980, '', '', '', '', '', '', '', '', 64, '', 'CHAR', 2, '', '', 'Form - Filter', 'NOT NULL', '', 24, '\"<field\\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"filter\\\" \\r\\n\\tlabel=\\\"Filter\\\" \\r\\n\\tsize=\\\"60\\\" \\r\\n\\tmaxlength=\\\"150\\\" \\r\\n\\tdescription=\\\"Enter Field Filter Here. Will allow the system to save certain html tags or raw data.\\\"\\r\\n\\tdefault=\\\"\\\"\\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\tfilter=\\\"WORD\\\" \\r\\n\\tmessage=\\\"Error! Please add field filter here.\\\" \\r\\n\\thint=\\\"Standard Filter\\\" \\r\\n\\/>\"', 1, '2015-12-04 01:35:35', '2015-12-04 09:54:03', 7, '', 242, '38fc537f-fa19-4267-9052-aa7dd01437f2', '', '', '', '', ''),
(981, '', '', '', '', '', '', '', '', 64, '', 'CHAR', 2, '', '', 'Form - Validate', 'NOT NULL', '', 24, '\"<field\\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"validate\\\" \\r\\n\\tlabel=\\\"Validate\\\" \\r\\n\\tsize=\\\"60\\\" \\r\\n\\tmaxlength=\\\"150\\\" \\r\\n\\tdescription=\\\"Enter Field Validate Here. Will makes the system validate the data.\\\"\\r\\n\\tdefault=\\\"\\\"\\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\tfilter=\\\"WORD\\\" \\r\\n\\tmessage=\\\"Error! Please add field validate here.\\\" \\r\\n\\thint=\\\"Standard Validate\\\" \\r\\n\\/>\"', 1, '2015-12-04 01:36:55', '2015-12-04 09:53:51', 6, '', 242, 'd67be211-cb60-4304-8dd0-75cae4eb432b', '', '', '', '', ''),
(982, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', 2, '', '', 'Form - Message', 'NOT NULL', '', 24, '\"<field\\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"message\\\" \\r\\n\\tlabel=\\\"Message\\\" \\r\\n\\tsize=\\\"60\\\" \\r\\n\\tmaxlength=\\\"150\\\" \\r\\n\\tdescription=\\\"Enter Field Default Here. It is the error message that will be displayed instead of the default message..\\\"\\r\\n\\tclass=\\\"text_area\\\"\\r\\n\\tfilter=\\\"STRING\\\" \\r\\n\\tmessage=\\\"Error! Please add field message here.\\\" \\r\\n\\thint=\\\"Error Message\\\" \\r\\n\\/>\"', 1, '2015-12-04 01:52:08', '2015-12-04 08:47:40', 2, '', 242, 'ef027574-703e-401d-8767-f51084bbf428', '', '', '', '', ''),
(983, '', '', '', '', '', '', '', '', 7, '', 'INT', 2, '', '', 'Form - Rows', 'NOT NULL', '', 24, '\"<field\\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"rows\\\" \\r\\n\\tlabel=\\\"Rows\\\" \\r\\n\\tsize=\\\"60\\\" \\r\\n\\tmaxlength=\\\"150\\\" \\r\\n\\tdescription=\\\"Enter Field Rows Here. It is the height of the visible text area in lines. If omitted the width is determined by the browser. The value of rows does not limit the number of lines that may be entered.\\\"\\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\treadonly=\\\"false\\\" \\r\\n\\tdisabled=\\\"false\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\tfilter=\\\"INT\\\" \\r\\n\\tmessage=\\\"Error! Please add text area rows here.\\\" \\r\\n\\thint=\\\"Only Numbers\\\" \\r\\n\\/>\"', 1, '2015-12-04 01:54:08', '2015-12-04 11:38:48', 4, '', 242, 'ada233ca-4bc7-44a5-b025-3720f6cf393b', '', '', '', '', ''),
(984, '', '', '', '', '', '', '', '', 7, '', 'INT', 2, '', '', 'Form - Cols', 'NOT NULL', '', 24, '\"<field\\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"cols\\\" \\r\\n\\tlabel=\\\"Cols\\\" \\r\\n\\tsize=\\\"60\\\" \\r\\n\\tmaxlength=\\\"150\\\" \\r\\n\\tdescription=\\\"Enter Field Cols Here. It is the width of the visible text area in characters. If omitted the width is determined by the browser. The value of cols does not limit the number of characters that may be entered.\\\"\\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\treadonly=\\\"false\\\" \\r\\n\\tdisabled=\\\"false\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\tfilter=\\\"INT\\\" \\r\\n\\tmessage=\\\"Error! Please add text area cols here.\\\" \\r\\n\\thint=\\\"Only Numbers\\\" \\r\\n\\/>\"', 1, '2015-12-04 01:55:25', '2015-12-04 11:39:03', 3, '', 242, '64b45d5a-bd52-4777-9947-a34d82f13590', '', '', '', '', ''),
(985, '', '', '', '', '', '', '', '', 64, '', 'CHAR', 2, '', '', 'Form - Format (date)', 'NOT NULL', '', 24, '\"<field\\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"date_format\\\" \\r\\n\\tlabel=\\\"Format\\\" \\r\\n\\tsize=\\\"60\\\" \\r\\n\\tmaxlength=\\\"150\\\" \\r\\n\\tdescription=\\\"Enter Format Here. It is the date format to be used. This is in the format used by PHP to specify date string formats (see below). If no format argument is given, \'%Y-%m-%d\' is assumed (giving dates like \'2008-04-16\').\\\"\\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\tfilter=\\\"STRING\\\" \\r\\n\\tmessage=\\\"Error! Please add date format here.\\\" \\r\\n\\thint=\\\"%Y-%m-%d\\\" \\r\\n\\/>\"', 1, '2015-12-04 01:59:38', '2015-12-07 03:46:02', 3, '', 242, 'ed05d282-2f02-43a7-b715-324d51a33d49', '', '', '', '', ''),
(986, '', '', '', '', '', '', '', '', 64, '', 'CHAR', 2, '', '', 'Form - Heading', 'NOT NULL', '', 11, '\"<field \\r\\n\\ttype=\\\"list\\\" \\r\\n\\tname=\\\"heading\\\" \\r\\n\\tlabel=\\\"Heading\\\"\\r\\n\\tdescription=\\\"Select the type of heading element to use for the label (default: h4)\\\" \\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\tmultiple=\\\"false\\\" \\r\\n\\tfilter=\\\"STRING\\\" \\r\\n\\toption=\\\"h4|H4,h3|H3,h2|H2,h1|H1\\\" \\r\\n\\tdefault=\\\"h4\\\" \\r\\n\\/>\"', 1, '2015-12-04 02:03:59', '2015-12-04 08:47:18', 2, '', 242, '0f3b60b4-a016-43b6-af8a-3af0e069c444', '', '', '', '', ''),
(987, '', '', '', '', '', '', '', '', 64, '', 'CHAR', 2, '', '', 'Form - Close', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"close\\\" \\r\\n\\tlabel=\\\"Close\\\"\\r\\n\\tdescription=\\\"It is a value of \'true\' (for alerts) or the value for the data-dismiss of the bootstrap close icon.\\\" \\r\\n\\tfilter=\\\"WORD\\\" \\r\\n\\trequired=\\\"false\\\" \\r\\n\\toption=\\\"|Hide,true|Show\\\" \\r\\n\\tclass=\\\"btn-group btn-group-yesno\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\trequired=\\\"\\\" \\r\\n\\/>\"', 1, '2015-12-04 02:12:44', '2015-12-04 01:54:19', 1, '', 242, '331befac-dba8-4e0d-9187-86415277a20b', '', '', '', '', ''),
(988, '', '', '', '', '', '', '', '', 64, '', 'CHAR', 2, '', '', 'Form - HR', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"hr\\\" \\r\\n\\tlabel=\\\"HR\\\"\\r\\n\\tdescription=\\\"It is whether to display a horizontal rule (\'true\' or \'false\'). If this attribute is \'true\', the label attribute will be ignored.\\\" \\r\\n\\tfilter=\\\"WORD\\\" \\r\\n\\trequired=\\\"false\\\" \\r\\n\\toption=\\\"false|Hide,true|Show\\\" \\r\\n\\tclass=\\\"btn-group btn-group-yesno\\\" \\r\\n\\tdefault=\\\"true\\\" \\r\\n\\trequired=\\\"\\\" \\r\\n\\/>\"', 1, '2015-12-04 02:14:34', '2015-12-04 01:54:19', 1, '', 242, '0c6c0346-50dc-456e-86e6-db88c286dd01', '', '', '', '', ''),
(989, '', '', '', '', '', '', '', '', 64, '', 'CHAR', 2, '', '', 'Form - Width', 'NOT NULL', '', 24, '\"<field\\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"width\\\" \\r\\n\\tlabel=\\\"Width\\\" \\r\\n\\tsize=\\\"60\\\" \\r\\n\\tmaxlength=\\\"150\\\" \\r\\n\\tdescription=\\\"Enter Field width Here. Defines the width (in pixels) of the wysiwyg editor and defaults to 100%.\\\"\\r\\n\\tclass=\\\"text_area\\\"\\r\\n\\tfilter=\\\"STRING\\\" \\r\\n\\tmessage=\\\"Error! Please add field width here.\\\" \\r\\n\\thint=\\\"100px\\\" \\r\\n\\/>\"', 1, '2015-12-04 05:06:14', '2015-12-04 08:48:53', 3, '', 242, '76482556-67a8-46b8-9e75-0aedc293a6d4', '', '', '', '', ''),
(990, '', '', '', '', '', '', '', '', 64, '', 'CHAR', 2, '', '', 'Form - Height', 'NOT NULL', '', 24, '\"<field\\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"height\\\" \\r\\n\\tlabel=\\\"Height\\\" \\r\\n\\tsize=\\\"60\\\" \\r\\n\\tmaxlength=\\\"150\\\" \\r\\n\\tdescription=\\\"Enter Field Height Here. Defines the height (in pixels) of the wysiwyg editor and defaults to 250px.\\\"\\r\\n\\tclass=\\\"text_area\\\"\\r\\n\\tfilter=\\\"STRING\\\" \\r\\n\\tmessage=\\\"Error! Please add field height here.\\\" \\r\\n\\thint=\\\"500px\\\" \\r\\n\\/>\"', 1, '2015-12-04 05:07:25', '2015-12-04 08:49:05', 2, '', 242, 'c4ddbdda-6d93-4a07-8e1a-c5db8b8d6f99', '', '', '', '', ''),
(991, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', 2, '', '', 'Form - Buttons', 'NOT NULL', '', 24, '\"<field\\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"buttons\\\" \\r\\n\\tlabel=\\\"Buttons (excluded)\\\" \\r\\n\\tsize=\\\"60\\\" \\r\\n\\tmaxlength=\\\"150\\\" \\r\\n\\tdescription=\\\"Add a coma separated list of all the plugin buttons to be excluded or set to false. The default editors-xtd are: article, image, pagebreak and readmore.\\\"\\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\tfilter=\\\"STRING\\\" \\r\\n\\tmessage=\\\"Error! Please add excluded buttons here.\\\" \\r\\n\\thint=\\\"article,image,pagebreak\\\" \\r\\n\\/>\"', 1, '2015-12-04 05:10:38', '2015-12-04 08:49:27', 3, '', 242, '04a6aac0-dc7f-450b-831a-7a4b32355ffe', '', '', '', '', ''),
(992, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', 2, '', '', 'Form - Hide Buttons', 'NOT NULL', '', 24, '\"<field\\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"hide\\\" \\r\\n\\tlabel=\\\"Hide\\\" \\r\\n\\tsize=\\\"60\\\" \\r\\n\\tmaxlength=\\\"150\\\" \\r\\n\\tdescription=\\\"Add a coma separated list of plugin buttons to be hidden. eg... set buttons=\'true\' hide=\'readmore,pagebreak\'\\\"\\r\\n\\tclass=\\\"text_area\\\"\\r\\n\\tfilter=\\\"STRING\\\" \\r\\n\\tmessage=\\\"Error! Please add excluded buttons here.\\\" \\r\\n\\thint=\\\"readmore,pagebreak\\\" \\r\\n\\/>\"', 1, '2015-12-04 06:59:12', '2015-12-04 08:49:39', 2, '', 242, '2f53eae0-876d-4c70-b5f1-a8242dfd64d2', '', '', '', '', ''),
(993, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', 2, '', '', 'Form - Editor', 'NOT NULL', '', 24, '\"<field\\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"editor\\\" \\r\\n\\tlabel=\\\"Editor\\\" \\r\\n\\tsize=\\\"60\\\" \\r\\n\\tmaxlength=\\\"150\\\" \\r\\n\\tdescription=\\\"Specifies the editor to be used and can include two options (editor=\'desired|alternative\')\\\"\\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\tfilter=\\\"STRING\\\" \\r\\n\\tmessage=\\\"Error! Please add editor here.\\\" \\r\\n\\thint=\\\"jce|none\\\" \\r\\n\\/>\"', 1, '2015-12-04 07:01:10', '2015-12-04 08:49:53', 2, '', 242, '298f7972-fc22-4f68-9a3b-9ab46fa4d4e1', '', '', '', '', ''),
(994, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'Form - Program Target', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"program-target\\\" \\r\\n\\tlabel=\\\"Program Target\\\" \\r\\n\\tdescription=\\\"\\\" \\r\\n\\tclass=\\\"btn-group btn-group-yesno\\\" \\r\\n\\toption=\\\"1|Any,2|Selected\\\" \\r\\n\\tdefault=\\\"1\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\/>\"', 1, '2015-12-04 07:15:31', '2016-02-06 21:54:21', 4, '', 646, '725f31d2-a4cd-414c-887d-0debe297b133', '', '', '', '', ''),
(995, '', '', '', '', '', '', '', '', '', '', 'CHAR', '', '', '', 'Form - Event Target', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"event-target\\\" \\r\\n\\tlabel=\\\"Event Target\\\" \\r\\n\\tdescription=\\\"\\\" \\r\\n\\tclass=\\\"btn-group btn-group-yesno\\\" \\r\\n\\toption=\\\"1|All,2|Selected\\\" \\r\\n\\tdefault=\\\"1\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\/>\"', 1, '2015-12-04 07:16:08', '2015-12-04 07:15:38', 1, '', 646, 'c6119a71-88a2-46dc-a54c-a3b445739e33', '', '', '', '', ''),
(996, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Program (multiple - Form)', 'NOT NULL', 1, 6, '\"<field \\r\\n\\ttype=\\\"programs\\\" \\r\\n\\tname=\\\"program\\\" \\r\\n\\tlabel=\\\"Programs\\\" \\r\\n\\tdescription=\\\"Select the programs this field should be attached to.\\\" \\r\\n\\trequired=\\\"true\\\"\\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\tmultiple=\\\"true\\\"\\r\\n\\textends=\\\"list\\\" \\r\\n\\tbutton=\\\"false\\\"\\r\\n\\ttable=\\\"#__###component###_program\\\" \\r\\n\\tcomponent=\\\"com_###component###\\\" \\r\\n\\tview=\\\"program\\\" \\r\\n\\tviews=\\\"programs\\\" \\r\\n\\tvalue_field=\\\"acronym\\\" \\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_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-12-04 07:18:01', '2016-02-06 21:47:43', 2, '', 113, '21a75dca-56b9-4ae8-b888-4e7bb91b15f6', '', '', '', '', ''),
(997, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Form - Event', 'NOT NULL', 1, 6, '\"<field \\r\\n\\ttype=\\\"events\\\" \\r\\n\\tname=\\\"event\\\" \\r\\n\\tlabel=\\\"Events\\\" \\r\\n\\tdescription=\\\"Select the events this field should be linked to.\\\" \\r\\n\\tmultiple=\\\"true\\\"\\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\trequired=\\\"true\\\"\\r\\n\\textends=\\\"list\\\" \\r\\n\\tbutton=\\\"false\\\"\\r\\n\\ttable=\\\"#__###component###_event\\\" \\r\\n\\tcomponent=\\\"com_###component###\\\" \\r\\n\\tview=\\\"event\\\" \\r\\n\\tviews=\\\"events\\\" \\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);\\\" type_php_3=\\\"$query->select($db->quoteName(array(\'a.###ID###\',\'a.###TEXT###\'),array(\'###ID###\',\'###CODE_TEXT###\')))->select($db->quoteName(array(\'c.acronym\'),array(\'program\')));\\\" \\r\\n\\ttype_php_4=\\\"$query->from($db->quoteName(\'###TABLE###\', \'a\'))->join(\'LEFT\', $db->quoteName(\'#__###component###_program\', \'c\') . \' ON (\' . $db->quoteName(\'a.program\') . \' = \' . $db->quoteName(\'c.id\') . \')\');\\\" \\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_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### . \' (\' . $item->program . \')\');\\\" \\r\\n\\ttype_php_16=\\\"\\\\t}\\\" \\r\\n\\ttype_php_17=\\\"}\\\" \\r\\n\\ttype_php_19=\\\"return $options;\\\" \\r\\n\\/>\"', 1, '2015-12-04 07:19:29', '2015-12-04 07:20:08', 2, '', 283, '01391a8b-3643-425a-b1c8-3495fa4c56bd', '', '', '', '', ''),
(998, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Form - Description', 'NOT NULL', '', 25, '\"<field \\r\\n\\ttype=\\\"textarea\\\" \\r\\n\\tname=\\\"description\\\" \\r\\n\\tlabel=\\\"Description\\\" \\r\\n\\trows=\\\"5\\\" \\r\\n\\tcols=\\\"20\\\" \\r\\n\\tdescription=\\\"Add the field description. It is text that will be shown as a tooltip when the user moves the mouse over the drop-down box.\\\" \\r\\n\\tclass=\\\"span12\\\" \\r\\n\\tfilter=\\\"html\\\" \\r\\n\\trequired=\\\"false\\\"\\r\\n\\thint=\\\"Description Here\\\" \\r\\n\\/>\"', -2, '2015-12-04 08:43:31', '2015-12-04 01:39:05', 1, '', 243, 'b1909391-bf72-4b10-a89a-4b8a1fcd0241', '', '', '', '', ''),
(999, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', 2, '', '', 'Form - Accept', 'NOT NULL', '', 24, '\"<field\\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"accept\\\" \\r\\n\\tlabel=\\\"Accept\\\" \\r\\n\\tsize=\\\"60\\\" \\r\\n\\tmaxlength=\\\"150\\\" \\r\\n\\tdescription=\\\"Enter Mime Types Accepted Here. Tells the browser what MIME types your form will allow to be uploaded. (http:\\/\\/www.w3schools.com\\/tags\\/att_input_accept.asp)\\\"\\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\tdefault=\\\"image\\/*\\\"\\r\\n\\treadonly=\\\"false\\\" \\r\\n\\tdisabled=\\\"false\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\tfilter=\\\"STRING\\\" \\r\\n\\tmessage=\\\"Error! Please add mime types accepted here.\\\" \\r\\n\\thint=\\\"image\\/*\\\" \\r\\n\\/>\"', 1, '2015-12-04 09:10:18', '2015-12-04 02:18:34', 1, '', 242, '6267d6b5-9be8-4ccd-af92-f4125a317853', '', '', '', '', ''),
(1000, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', 2, '', '', 'Form - Default country', 'NOT NULL', '', 6, '\"<field \\r\\n\\ttype=\\\"countryname\\\" \\r\\n\\tname=\\\"defaultcountry\\\" \\r\\n\\tlabel=\\\"Default\\\" \\r\\n\\tdescription=\\\"Select the default country\\\" \\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\tmultiple=\\\"false\\\" \\r\\n\\tdefault=\\\"0\\\" \\r\\n\\trequired=\\\"\\\" \\r\\n\\treadonly=\\\"\\\" \\r\\n\\tdisabled=\\\"\\\" \\r\\n\\textends=\\\"list\\\" \\r\\n\\tbutton=\\\"false\\\" \\r\\n\\ttable=\\\"#__###component###_country\\\" \\r\\n\\tcomponent=\\\"com_###component###\\\" \\r\\n\\tview=\\\"country\\\" \\r\\n\\tviews=\\\"countries\\\" \\r\\n\\tvalue_field=\\\"name\\\" \\r\\n\\tkey_field=\\\"name\\\" \\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 an option\');\\\" \\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-12-05 06:07:07', '2016-06-11 18:08:39', 6, '', 242, '9b10e2fc-52ef-4962-8f37-2859e7678dbe', '', '', '', '', ''),
(1001, '', '', '', '', '', '', '', '', 64, '', 'CHAR', 2, '', '', 'Form - Field (equals)', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"field\\\" \\r\\n\\tlabel=\\\"Equal Field\\\" \\r\\n\\tsize=\\\"60\\\" \\r\\n\\tmaxlength=\\\"150\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tdescription=\\\"Add the field code name that this field should be equal to.\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\tfilter=\\\"STRING\\\" \\r\\n\\tmessage=\\\"Error! Please add some equal field name here.\\\" \\r\\n\\thint=\\\"Equal Field Code Name\\\" \\r\\n\\/>\"', 1, '2015-12-05 14:19:24', '2015-12-05 10:13:55', 1, '', 244, 'c4d7b210-2d82-4d1d-b114-7f81b83ad7da', '', '', '', '', ''),
(1002, '', '', '', '', '', '', '', '', 64, '', 'CHAR', 2, '', '', 'Form - Autocomplete', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"autocomplete\\\" \\r\\n\\tlabel=\\\"Auto Complete\\\" \\r\\n\\tdescription=\\\"Should the field do auto complete, if the browser has memory of the fields past submissions.\\\" \\r\\n\\tclass=\\\"btn-group btn-group-yesno\\\" \\r\\n\\toption=\\\"on|Yes,off|No\\\" \\r\\n\\tdefault=\\\"on\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\/>\"', 1, '2015-12-05 14:21:31', '2015-12-05 10:13:55', 1, '', 244, 'cd63a0fd-709f-4dba-9cee-074c8825bb39', '', '', '', '', ''),
(1003, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', 2, '', '', 'Name (application values)', '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=\\\"The unique code name of the field found in application fields!\\\"\\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 code name here.\\\" \\r\\n\\thint=\\\"Unique Code Name Here\\\" \\r\\n\\/>\"', 1, '2015-12-06 05:13:24', '2015-12-04 11:36:25', 1, '', 242, 'fc96a492-462d-459f-a621-bf50a1ea02eb', '', '', '', '', ''),
(1004, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'City', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"city\\\" \\r\\n\\tlabel=\\\"City\\\" \\r\\n\\tsize=\\\"60\\\" \\r\\n\\tmaxlength=\\\"150\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tdescription=\\\"Please add your city name here\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\tfilter=\\\"STRING\\\" \\r\\n\\tvalidate=\\\"\\\"\\r\\n\\tmessage=\\\"Error! Please add city here.\\\" \\r\\n\\thint=\\\"City Name\\\" \\r\\n\\/>\"', 1, '2015-12-07 01:27:54', '2016-04-18 23:41:15', 2, '', 647, '35c093ca-b361-4338-826d-2a2dc35389c6', '', '', '', '', ''),
(1005, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Street Address', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"street\\\" \\r\\n\\tlabel=\\\"Street Address\\\" \\r\\n\\tsize=\\\"60\\\" \\r\\n\\tmaxlength=\\\"150\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tdescription=\\\"Please add your street address here\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\tfilter=\\\"STRING\\\" \\r\\n\\tvalidate=\\\"\\\"\\r\\n\\tmessage=\\\"Error! Please add street here.\\\" \\r\\n\\thint=\\\"16 Street Name\\\" \\r\\n\\/>\"', 1, '2015-12-07 01:29:21', '2016-10-24 12:09:25', 3, '', 647, '4d81bc0b-c8ab-4e5f-b336-80b186493e42', '', '', '', '', ''),
(1006, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Postal Address', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"postal\\\"\\n\\tlabel=\\\"Postal\\\"\\n\\tsize=\\\"50\\\"\\n\\tmaxlength=\\\"150\\\"\\n\\tdescription=\\\"Please add your postal address here\\\"\\n\\tfilter=\\\"STRING\\\"\\n\\tmessage=\\\"Error! Please add postal address here.\\\"\\n\\thint=\\\"P.O.Box 0000\\\"\\n\\/>\"', 1, '2015-12-07 01:30:56', '2020-06-24 18:33:30', 3, '', 647, '6c22448b-ece3-4514-8ceb-7dcd08de3cf3', '', '', '', '', ''),
(1007, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Postal Code', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"postalcode\\\"\\n\\tlabel=\\\"Postal Code\\\"\\n\\tsize=\\\"50\\\"\\n\\tmaxlength=\\\"150\\\"\\n\\tdescription=\\\"Please add your postal code here\\\"\\n\\tclass=\\\"text_area\\\"\\n\\tfilter=\\\"STRING\\\"\\n\\tmessage=\\\"Error! Please add postal code here.\\\"\\n\\thint=\\\"9000\\\"\\n\\/>\"', 1, '2015-12-07 01:31:54', '2020-06-24 18:34:02', 2, '', 647, '503b8d05-e801-4448-a32d-e5be2d619ff5', '', '', '', '', ''),
(1008, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Region/State', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"region\\\" \\r\\n\\tlabel=\\\"Region\\/State\\\" \\r\\n\\tsize=\\\"60\\\" \\r\\n\\tmaxlength=\\\"150\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tdescription=\\\"Please add your region or state name here\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\tfilter=\\\"STRING\\\" \\r\\n\\tvalidate=\\\"\\\"\\r\\n\\tmessage=\\\"Error! Please add region or state name here.\\\" \\r\\n\\thint=\\\"Region Name\\\" \\r\\n\\/>\"', 1, '2015-12-07 01:33:22', '2015-12-07 01:31:06', 1, '', 647, 'af32a11d-85bf-4c64-b7a3-f03f68e8eec5', '', '', '', '', ''),
(1009, '', '', '', '', '', '', '', '', 64, '', 'VARCHAR', '', '', '', 'Gender', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"gender\\\" \\r\\n\\tlabel=\\\"Gender\\\" \\r\\n\\tdescription=\\\"Your God give gender.\\\" \\r\\n\\tclass=\\\"btn-group btn-group-yesno\\\" \\r\\n\\toption=\\\"male|Male,female|Female\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\/>\"', 1, '2015-12-07 01:37:26', '2015-12-07 04:11:45', 2, '', 648, 'f98bb735-0d74-4aa3-a52b-3df8fd9c498b', '', '', '', '', ''),
(1010, '', '', '', '', '', '', '', '', 64, '', 'VARCHAR', '', '', '', 'Marriage Status', 'NOT NULL', '', 11, '\"<field \\r\\n\\ttype=\\\"list\\\" \\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\tmultiple=\\\"false\\\" \\r\\n\\tfilter=\\\"WORD\\\" \\r\\n\\tname=\\\"marriagestatus\\\" \\r\\n\\tlabel=\\\"Marriage Status\\\" \\r\\n\\tdescription=\\\"Your marriage status.\\\" \\r\\n\\toption=\\\"|Select some option,single|Single,married|Married,widowed|Widowed,divorced|Divorced\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\trequired=\\\"\\\" \\r\\n\\/>\"', 1, '2015-12-07 01:42:41', '2015-12-07 04:12:12', 3, '', 648, '32032e3e-f38b-42e1-8322-b155f1b61caa', '', '', '', '', ''),
(1011, '', '', '', '', '', '', 'Other', '0000-00-00', '', '', 'DATE', '', '', '', 'Date of Birth', 'NOT NULL', '', 1, '\"<field\\n\\ttype=\\\"calendar\\\"\\n\\tname=\\\"dateofbirth\\\"\\n\\tlabel=\\\"Date of Birth\\\"\\n\\tdefault=\\\"1970-01-01\\\"\\n\\tdescription=\\\"Your date of birth\\\"\\n\\tformat=\\\"%Y-%m-%d\\\"\\n\\tminyear=\\\"-120\\\"\\n\\tmaxyear=\\\"-1\\\"\\n\\tfilter=\\\"STRING\\\"\\n\\ttodaybutton=\\\"false\\\"\\n\\trequired=\\\"true\\\"\\n\\/>\"', 1, '2015-12-07 01:47:32', '2018-08-03 09:56:07', 4, '', 649, 'cb2bdf20-8800-407b-a4f6-250152a0bdfb', '', '', '', '', ''),
(1012, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', 2, '', '', 'Country (LMS)', 'NOT NULL', '', 6, '\"<field \\r\\n\\ttype=\\\"country\\\" \\r\\n\\tname=\\\"country\\\" \\r\\n\\tlabel=\\\"Country\\\" \\r\\n\\tdescription=\\\"Select your country\\\" \\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\tmultiple=\\\"false\\\" \\r\\n\\tdefault=\\\"0\\\" \\r\\n\\trequired=\\\"\\\" \\r\\n\\treadonly=\\\"\\\" \\r\\n\\tdisabled=\\\"\\\" \\r\\n\\textends=\\\"list\\\" \\r\\n\\tbutton=\\\"false\\\" \\r\\n\\ttable=\\\"#__###component###_country\\\" \\r\\n\\tcomponent=\\\"com_###component###\\\" \\r\\n\\tview=\\\"country\\\" \\r\\n\\tviews=\\\"countries\\\" \\r\\n\\tvalue_field=\\\"name\\\" \\r\\n\\tkey_field=\\\"name\\\" \\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 an option\');\\\" \\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-12-07 01:58:12', '2016-03-06 00:05:34', 2, '', 242, '0592179e-3472-40c0-a61d-03982da046e0', '', '', '', '', ''),
(1013, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'Group Target', 'NOT NULL', '', 11, '\"<field \\r\\n\\ttype=\\\"list\\\" \\r\\n\\tname=\\\"group_switch\\\" \\r\\n\\tlabel=\\\"Targeted Group\\\" \\r\\n\\tdescription=\\\"Select the group you would like to target.\\\" \\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\tmultiple=\\\"false\\\" \\r\\n\\tfilter=\\\"\\\" \\r\\n\\trequired=\\\"\\\" \\r\\n\\toption=\\\"0|All Groups,1|Only Public,2|Only Registered,3|Specific Groups\\\" \\r\\n\\tdefault=\\\"0\\\" \\r\\n\\/>\"', 1, '2015-12-08 02:20:32', '0000-00-00 00:00:00', 1, '', 650, 'de7461a4-2e6f-4174-8809-2e3d30f57632', '', '', '', '', ''),
(1014, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'National ID', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"national_id\\\" \\r\\n\\tlabel=\\\"National ID\\\" \\r\\n\\tsize=\\\"60\\\" \\r\\n\\tmaxlength=\\\"150\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tdescription=\\\"Please add your National ID number.\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\tfilter=\\\"STRING\\\" \\r\\n\\tvalidate=\\\"\\\" \\r\\n\\tmessage=\\\"Error! Please add National ID here.\\\" \\r\\n\\thint=\\\"00000000000\\\" \\r\\n\\/>\"', 1, '2015-12-08 02:36:48', '0000-00-00 00:00:00', 1, '', 651, '718ce35e-6cd1-4d6c-8b26-7a725a78b5a4', '', '', '', '', ''),
(1015, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Occupation', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"occupation\\\" \\r\\n\\tlabel=\\\"Occupation\\\" \\r\\n\\tsize=\\\"60\\\" \\r\\n\\tmaxlength=\\\"150\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tdescription=\\\"Add your occupation.\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\tfilter=\\\"STRING\\\" \\r\\n\\tmessage=\\\"Error! Please add occupation here.\\\" \\r\\n\\thint=\\\"School Teacher\\\" \\r\\n\\/>\"', 1, '2015-12-08 09:01:13', '0000-00-00 00:00:00', 1, '', 652, '152eadac-25b2-4ddf-ba28-5fa54fd6a264', '', '', '', '', ''),
(1016, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Employer', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"employer\\\" \\r\\n\\tlabel=\\\"Employer\\\" \\r\\n\\tsize=\\\"60\\\" \\r\\n\\tmaxlength=\\\"150\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tdescription=\\\"Add your employer name.\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\tfilter=\\\"STRING\\\" \\r\\n\\tmessage=\\\"Error! Please add employer name here.\\\" \\r\\n\\thint=\\\"Employer Name\\\" \\r\\n\\/>\"', 1, '2015-12-08 09:02:44', '0000-00-00 00:00:00', 1, '', 652, 'ed4ecc9b-296f-4a57-8dce-e553346a72eb', '', '', '', '', ''),
(1017, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Add PHP (script - before delete)', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"add_php_before_delete\\\" \\r\\n\\tlabel=\\\"Add PHP (script - before delete)\\\" \\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-09 15:06:22', '2015-08-25 21:15:22', 1, '', 187, '79a25c26-9ea4-481c-b833-6699dd6e34d0', '', '', '', '', ''),
(1018, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Add PHP (script - after delete)', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"add_php_after_delete\\\" \\r\\n\\tlabel=\\\"Add PHP (script - after delete)\\\" \\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-09 15:06:46', '2015-08-25 21:15:22', 1, '', 187, '8272a897-9044-4e62-964f-89cd90e99bbb', '', '', '', '', ''),
(1019, '', '', '', '', '', '', '', '', '', '', 'MEDIUMTEXT', '', '', '', 'PHP (script - before delete)', 'NOT NULL', 2, 8, '\"<field\\n\\ttype=\\\"editor\\\"\\n\\tname=\\\"php_before_delete\\\"\\n\\tlabel=\\\"PHP delete Method<br \\/><small>Target (array) $pks is an array of record primary keys.<\\/small>\\\"\\n\\tdescription=\\\"Add PHP Here that should run in the delete Method before items are deleted. 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-12-09 15:09:57', '2019-07-08 14:17:26', 3, '', 119, '8e8e12f8-8d8c-43f1-bbbd-8ef19b4d326e', '', '', '', '', ''),
(1020, '', '', '', '', '', '', '', '', '', '', 'MEDIUMTEXT', '', '', '', 'PHP (script - after delete)', 'NOT NULL', 2, 8, '\"<field\\n\\ttype=\\\"editor\\\"\\n\\tname=\\\"php_after_delete\\\"\\n\\tlabel=\\\"PHP delete Method after<br \\/><small>Target (array) $pks is an array of record primary keys.<\\/small>\\\"\\n\\tdescription=\\\"Add PHP Here that should run in the delete Method after items were deleted. 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-12-09 15:10:40', '2019-07-08 14:17:32', 3, '', 119, 'f23fc722-e0e2-422f-b0f5-ac17da162a63', '', '', '', '', ''),
(1021, '', '', '', '', '', '', '', '', 64, '', 'VARCHAR', '', '', '', 'SQL Update Version', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"version\\\" \\r\\n\\tlabel=\\\"SQL Update Version\\\" \\r\\n\\tsize=\\\"10\\\" \\r\\n\\tmaxlength=\\\"50\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tdescription=\\\"1.0.0\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\treadonly=\\\"false\\\" \\r\\n\\tdisabled=\\\"false\\\" \\r\\n\\trequired=\\\"false\\\" \\r\\n\\tfilter=\\\"STRING\\\" \\r\\n\\tmessage=\\\"Error! Please add some text here.\\\" \\r\\n\\thint=\\\"1.0.0\\\" \\r\\n\\/>\"', 1, '2015-12-17 17:33:44', '2017-10-26 02:22:16', 3, '', 653, '537a2ca8-56ed-42ad-8f98-41524378f79e', '', '', '', '', ''),
(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', '', '', '', '', ''),
(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', '', '', '', '', ''),
(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', '', '', '', '', ''),
(1037, 1, '', '', '', 'Lmlkc19zZWxlY3Rpb24ge21pbi13aWR0aDogMTAwJTt9', '', '', '', '', '', 'TEXT', '', '', '', 'MySQL ID\'s (tweak)', 'NOT NULL', '', 25, '\"<field \\r\\n\\ttype=\\\"textarea\\\" \\r\\n\\tname=\\\"ids\\\" \\r\\n\\tlabel=\\\"ID\'s\\\" \\r\\n\\trows=\\\"20\\\" \\r\\n\\tcols=\\\"40\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tdescription=\\\"if id option selected\\\" \\r\\n\\tclass=\\\"text_area ids_selection\\\" \\r\\n\\tfilter=\\\"raw\\\" \\r\\n\\thint=\\\"\\/\\/ 1 => 500 or 1,2,3,4 or 1 => 4,20,40 => 90\\\"\\r\\n\\/>\"', 1, '2016-01-07 08:39:19', '2017-10-26 02:29:57', 2, '', 653, '48a0abf3-c1a2-4c59-8e8e-c858dce167b3', '', '', '', '', ''),
(1038, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'System Name', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"system_name\\\" \\r\\n\\tlabel=\\\"System Name\\\" \\r\\n\\tsize=\\\"10\\\" \\r\\n\\tmaxlength=\\\"50\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tdescription=\\\"Used only in the system.\\\" \\r\\n\\tclass=\\\"text_area\\\"\\r\\n\\tfilter=\\\"STRING\\\" \\r\\n\\tmessage=\\\"Error! Please add some text here.\\\" \\r\\n\\thint=\\\"The System Name Here\\\" \\r\\n\\/>\"', 1, '2016-01-10 16:10:19', '0000-00-00 00:00:00', 1, '', 654, 'acfe906b-6e61-4f94-ae66-359e4bc3e4cc', '', '', '', '', ''),
(1039, '', '', '', '', '', '', '', '', '', '', '', '', '', '', 'Lisencing WHMCS - note', 'NOT NULL', '', 14, '\"<field\\n\\ttype=\\\"note\\\"\\n\\tname=\\\"note_whmcs_lisencing_note\\\"\\n\\tlabel=\\\"Licensing addon module for WHMCS\\\"\\n\\tdescription=\\\"You can use WHMCS licensing addon in your component<br \\/><strong>Helpful Links<\\/strong><br \\/><a href=\'https:\\/\\/www.whmcs.com\\/members\\/aff.php?aff=37513\' target=\'_blank\'>https:\\/\\/www.whmcs.com\\/software-licensing\\/<\\/a><br \\/><a href=\'http:\\/\\/docs.whmcs.com\\/Licensing_Addon\' target=\'_blank\'>http:\\/\\/docs.whmcs.com\\/Licensing_Addon<\\/a><br \\/>Support JCB and use our affiliate link (<a href=\'https:\\/\\/www.whmcs.com\\/members\\/aff.php?aff=37513\' target=\'_blank\'>https:\\/\\/www.whmcs.com\\/members\\/aff.php?aff=37513<\\/a>) to sign-up with <a href=\'https:\\/\\/www.whmcs.com\\/members\\/aff.php?aff=37513\' target=\'_blank\'>WHMCS<\\/a>.\\\"\\n\\theading=\\\"h4\\\"\\n\\tclass=\\\"alert alert-success\\\"\\n\\/>\"', 1, '2016-01-17 15:51:54', '2018-07-08 00:39:06', 7, '', 655, 'f41ccdd5-363f-4a46-80fb-2d8cb2af0b5c', '', '', '', '', ''),
(1040, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Lisencing WHMCS - URL', 'NOT NULL', '', 27, '\"<field\\n\\ttype=\\\"url\\\"\\n\\tname=\\\"whmcs_url\\\"\\n\\tlabel=\\\"URL to your WHMCS install\\\"\\n\\tsize=\\\"60\\\"\\n\\tmaxlength=\\\"150\\\"\\n\\tdescription=\\\"Enter whmcs address\\\"\\n\\tclass=\\\"text_area\\\"\\n\\tfilter=\\\"url\\\"\\n\\tvalidated=\\\"url\\\"\\n\\tmessage=\\\"Error! Please add website here.\\\"\\n\\thint=\\\"http:\\/\\/www.yoursite.com\\/whmcs\\\"\\n\\tscheme=\\\"http,https\\\"\\n\\/>\"', 1, '2016-01-17 17:24:18', '2018-07-08 00:11:41', 2, '', 656, '88f8e992-44e9-4660-b374-4487f185c1f3', '', '', '', '', ''),
(1041, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Lisencing WHMCS - Secret Key', 'NOT NULL', 3, 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"whmcs_key\\\" \\r\\n\\tlabel=\\\"WHMCS Secret Key<br \\/><small>(encrypted field)<\\/small>\\\" \\r\\n\\tsize=\\\"60\\\" \\r\\n\\tmaxlength=\\\"150\\\" \\r\\n\\tdescription=\\\"Add your WHMCS Secret Key here that is needed for this license\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\tfilter=\\\"STRING\\\" \\r\\n\\tmessage=\\\"Error! Please add some secret key here.\\\" \\r\\n\\thint=\\\"Secret Key\\\" \\r\\n\\/>\"', 1, '2016-01-17 17:26:58', '2016-01-17 21:00:03', 3, '', 657, '0e4a5903-bc2e-416a-bde8-d5552d692638', '', '', '', '', ''),
(1042, '', '', '', '', '', '', 'Other', 2, 1, '', 'TINYINT', 2, '', '', 'Release Target Before (email)', 'NOT NULL', '', 11, '\"<field \\r\\n\\ttype=\\\"list\\\" \\r\\n\\tname=\\\"release_target_before\\\" \\r\\n\\tlabel=\\\"Release Target\\\" \\r\\n\\tdescription=\\\"Select the release target type for this email.\\\" \\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\tmultiple=\\\"false\\\" \\r\\n\\toption=\\\"2|Session,3|Course,4|Program,8|Assessment Released,9|Assessment Closed (without submission)\\\" \\r\\n\\tdefault=\\\"2\\\" \\r\\nrequired=\\\"true\\\"\\r\\nfilter=\\\"int\\\"\\r\\n\\/>\"', -2, '2016-02-05 14:56:44', '2016-02-05 22:43:32', 3, '', 77, '332cc600-8a48-4132-a208-54f179ef15f8', '', '', '', '', ''),
(1043, '', '', '', '', '', '', 'Other', 2, 11, '', 'INT', 2, '', '', 'Release Target (email)', 'NOT NULL', '', 11, '\"<field \\r\\n\\ttype=\\\"list\\\" \\r\\n\\tname=\\\"release_target\\\" \\r\\n\\tlabel=\\\"Release Target\\\" \\r\\n\\tdescription=\\\"Select the release target type.\\\" \\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\tmultiple=\\\"false\\\" \\r\\n\\toption=\\\"1|Website Registration,2|Program,3|Course,4|Course Day,5|Session,6|Application,7|Application Approved,8|Application Rejected,9|Assessment Released,10|Assessment Closed (without submission),11|Assessment Submitted,12|Assessment Reviewed,13|Assessment Rejected (state changed away from published),14|All Assessments Submitted\\\"\\r\\n\\tdefault=\\\"2\\\" \\r\\nrequired=\\\"true\\\"\\r\\nfilter=\\\"int\\\"\\r\\n\\/>\"', 1, '2016-02-05 22:45:09', '2016-02-07 20:43:59', 5, '', 77, '8c0fb181-2071-469c-9f96-0f2a175b8bbc', '', '', '', '', ''),
(1044, '', '', '', '', '', '', 1, '', 1, '', 'TINYINT', 2, '', '', 'Course Target', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"course-target\\\" \\r\\n\\tlabel=\\\"Course Target\\\" \\r\\n\\tdescription=\\\"\\\" \\r\\n\\tclass=\\\"btn-group btn-group-yesno\\\" \\r\\n\\toption=\\\"1|Any,2|Selected\\\" \\r\\n\\tdefault=\\\"1\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\/>\"', 1, '2016-02-05 23:03:19', '2016-02-06 21:32:35', 6, '', 646, '46043f9b-640b-445e-bf9c-a68d7acbee73', '', '', '', '', ''),
(1045, '', '', '', '', '', '', 1, '', 1, '', 'TINYINT', 2, '', '', 'Session Target', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"session-target\\\" \\r\\n\\tlabel=\\\"Session Target\\\" \\r\\n\\tdescription=\\\"\\\" \\r\\n\\tclass=\\\"btn-group btn-group-yesno\\\" \\r\\n\\toption=\\\"1|Any,2|Selected\\\" \\r\\n\\tdefault=\\\"1\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\/>\"', 1, '2016-02-05 23:04:09', '2016-02-06 21:32:24', 5, '', 646, '228528b8-37b6-47c1-abdb-1ac0baff6fa5', '', '', '', '', ''),
(1046, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Course (multiple)', 'NOT NULL', 1, 6, '\"<field \\r\\n\\ttype=\\\"courses\\\" \\r\\n\\tname=\\\"course\\\" \\r\\n\\tlabel=\\\"Courses\\\"\\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\trequired=\\\"true\\\"\\r\\nmultiple=\\\"true\\\"\\r\\n\\textends=\\\"list\\\" \\r\\n\\tbutton=\\\"false\\\"\\r\\n\\ttable=\\\"#__###component###_course\\\" \\r\\n\\tcomponent=\\\"com_###component###\\\" \\r\\n\\tview=\\\"course\\\" \\r\\n\\tviews=\\\"courses\\\" \\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###\')))->select($db->quoteName(array(\'c.acronym\'),array(\'program\')));\\\" \\r\\n\\ttype_php_4=\\\"$query->from($db->quoteName(\'#__###component###_course\', \'a\'))->join(\'LEFT\', $db->quoteName(\'#__###component###_program\', \'c\') . \' ON (\' . $db->quoteName(\'a.program\') . \' = \' . $db->quoteName(\'c.id\') . \')\');\\\" \\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_12=\\\"\\\\tforeach($items as $item)\\\" \\r\\n\\ttype_php_13=\\\"\\\\t{\\\" \\r\\n\\ttype_php_14=\\\"\\\\t\\\\t$options[] = JHtml::_(\'select.option\', $item->###ID###, $item->###CODE_TEXT### . \' (\' . $item->program . \')\' );\\\" \\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, '2016-02-05 23:11:38', '2016-02-06 21:43:24', 4, '', 149, '76591b94-3e03-4c31-825e-8b6f56aeb63e', '', '', '', '', ''),
(1047, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Sessions (multiple)', 'NOT NULL', 1, 6, '\"<field \\r\\n\\ttype=\\\"sessions\\\" \\r\\n\\tname=\\\"session\\\" \\r\\n\\tlabel=\\\"Sessions\\\"\\r\\n\\tclass=\\\"list_class\\\" \\r\\nmultiple=\\\"true\\\"\\r\\n\\trequired=\\\"true\\\"\\r\\n\\textends=\\\"list\\\" \\r\\n\\tbutton=\\\"false\\\"\\r\\n\\ttable=\\\"#__###component###_session\\\" \\r\\n\\tcomponent=\\\"com_###component###\\\" \\r\\n\\tview=\\\"session\\\" \\r\\n\\tviews=\\\"sessions\\\" \\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###\')))->select($db->quoteName(array(\'p.acronym\'),array(\'program\')))->select($db->quoteName(array(\'c.name\'),array(\'course\')));\\\" \\r\\n\\ttype_php_4=\\\"$query->from($db->quoteName(\'###TABLE###\', \'a\'))->join(\'LEFT\', $db->quoteName(\'#__###component###_course\', \'c\') . \' ON (\' . $db->quoteName(\'a.course\') . \' = \' . $db->quoteName(\'c.id\') . \')\')->join(\'LEFT\', $db->quoteName(\'#__###component###_program\', \'p\') . \' ON (\' . $db->quoteName(\'c.program\') . \' = \' . $db->quoteName(\'p.id\') . \')\');\\\" \\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_12=\\\"\\\\tforeach($items as $item)\\\" \\r\\n\\ttype_php_13=\\\"\\\\t{\\\" \\r\\n\\ttype_php_14=\\\"\\\\t\\\\t$options[] = JHtml::_(\'select.option\', $item->###ID###, $item->###CODE_TEXT### . \' - \' . $item->course . \' (\' . $item->program . \')\');\\\" \\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, '2016-02-05 23:12:19', '2016-02-06 21:45:51', 5, '', 131, '5d69d244-67f7-4e49-ae59-7a759b341bea', '', '', '', '', ''),
(1048, '', '', '', '', '', '', 1, '', 1, '', 'TINYINT', 2, '', '', 'Event Target', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"event-target\\\" \\r\\n\\tlabel=\\\"Event Target\\\" \\r\\n\\tdescription=\\\"\\\" \\r\\n\\tclass=\\\"btn-group btn-group-yesno\\\" \\r\\n\\toption=\\\"1|Any,2|Selected\\\" \\r\\n\\tdefault=\\\"1\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\/>\"', 1, '2016-02-05 23:32:44', '2016-02-06 21:32:17', 2, '', 646, '2400920c-98be-4736-a320-1659d8c4e3a6', '', '', '', '', ''),
(1049, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Event (multiple)', 'NOT NULL', 1, 6, '\"<field \\r\\n\\ttype=\\\"events\\\" \\r\\n\\tname=\\\"event\\\" \\r\\n\\tlabel=\\\"Events\\\" \\r\\n\\tdescription=\\\"Select some events.\\\" \\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\trequired=\\\"true\\\"\\r\\n\\textends=\\\"list\\\" \\r\\nmultiple=\\\"true\\\"\\r\\n\\tbutton=\\\"false\\\"\\r\\n\\ttable=\\\"#__###component###_event\\\" \\r\\n\\tcomponent=\\\"com_###component###\\\" \\r\\n\\tview=\\\"event\\\" \\r\\n\\tviews=\\\"events\\\" \\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);\\\" type_php_3=\\\"$query->select($db->quoteName(array(\'a.###ID###\',\'a.###TEXT###\'),array(\'###ID###\',\'###CODE_TEXT###\')))->select($db->quoteName(array(\'c.acronym\'),array(\'program\')));\\\" \\r\\n\\ttype_php_4=\\\"$query->from($db->quoteName(\'###TABLE###\', \'a\'))->join(\'LEFT\', $db->quoteName(\'#__###component###_program\', \'c\') . \' ON (\' . $db->quoteName(\'a.program\') . \' = \' . $db->quoteName(\'c.id\') . \')\');\\\" \\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_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### . \' (\' . $item->program . \')\');\\\" \\r\\n\\ttype_php_16=\\\"\\\\t}\\\" \\r\\n\\ttype_php_17=\\\"}\\\" \\r\\n\\ttype_php_19=\\\"return $options;\\\" \\r\\n\\/>\"', 1, '2016-02-05 23:36:48', '2016-02-05 23:45:48', 2, '', 283, '5204537e-e3fc-4656-9336-bfa02fe02b19', '', '', '', '', ''),
(1050, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Program (multiple)', 'NOT NULL', 1, 6, '\"<field \\r\\n\\ttype=\\\"programs\\\" \\r\\n\\tname=\\\"program\\\" \\r\\n\\tlabel=\\\"Programs\\\" \\r\\n\\tdescription=\\\"Select the programs.\\\" \\r\\n\\trequired=\\\"true\\\"\\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\tmultiple=\\\"true\\\"\\r\\n\\textends=\\\"list\\\" \\r\\n\\tbutton=\\\"false\\\"\\r\\n\\ttable=\\\"#__###component###_program\\\" \\r\\n\\tcomponent=\\\"com_###component###\\\" \\r\\n\\tview=\\\"program\\\" \\r\\n\\tviews=\\\"programs\\\" \\r\\n\\tvalue_field=\\\"acronym\\\" \\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_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-02-05 23:38:37', '2016-02-05 23:44:29', 2, '', 113, '946e6fb2-08f2-45cd-b0c5-0428498b1527', '', '', '', '', ''),
(1051, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Assessment Types (multiple)', 'NOT NULL', 1, 6, '\"<field \\r\\n\\ttype=\\\"assessmenttypes\\\" \\r\\n\\tname=\\\"assessment_type\\\" \\r\\n\\tlabel=\\\"Assessment Type\\\" \\r\\n\\tdescription=\\\"Select an assessment type\\\" \\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\tmultiple=\\\"true\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\textends=\\\"list\\\" \\r\\n\\tbutton=\\\"false\\\" \\r\\n\\ttable=\\\"#__###component###_assessment_type\\\" \\r\\n\\tcomponent=\\\"com_###component###\\\" \\r\\n\\tview=\\\"assessment_type\\\" \\r\\n\\tviews=\\\"assessment_types\\\" \\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_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-02-06 21:41:21', '2015-09-23 19:00:16', 1, '', 210, 'f2fdbc63-fc88-40ea-81bf-6db06966f36e', '', '', '', '', ''),
(1052, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Assessment Target', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"assessment-target\\\" \\r\\n\\tlabel=\\\"Assessment Target\\\" \\r\\n\\tdescription=\\\"\\\" \\r\\n\\tclass=\\\"btn-group btn-group-yesno\\\" \\r\\n\\toption=\\\"1|Any,2|Selected\\\" \\r\\n\\tdefault=\\\"1\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\/>\"', 1, '2016-02-06 21:53:51', '2016-02-06 22:00:32', 2, '', 646, '3afd2984-3c92-43cb-b6b0-6071344aede7', '', '', '', '', ''),
(1053, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Days (multiple)', 'NOT NULL', 1, 11, '\"<field \\r\\n\\ttype=\\\"list\\\" \\r\\n\\tname=\\\"day\\\" \\r\\n\\tlabel=\\\"Course Days\\\" \\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\tmultiple=\\\"true\\\" \\r\\n\\trequired=\\\"true\\\"\\r\\n\\tfilter=\\\"STRING\\\"\\r\\n\\toption=\\\"1|First Day,2|Second Day,3|Third Day,4|Fourth Day,5|Fifth Day,6|Sixth Day,7|Seventh Day,8|Eight Day,9|Ninth Day,10|Tenth Day,11|Eleventh Day,12|Twelfth Day,13|Thirteenth Day,14|Fourteenth Day,15|Fifteenth Day,16|Sixteenth Day,17|Seventeenth Day,18|Eighteenth Day,19|Nineteenth Day,20|Twentieth Day,21|Twenty First Day,22|Twenty Second Day,23|Twenty Third Day,24|Twenty Fourth Day,25|Twenty Fifth Day,26|Twenty Sixth Day,27|Twenty Seventh Day,28|Twenty Eighth Day,29|Twenty Ninth Day,30|Thirtieth Day,31|Thirty First Day\\\" \\r\\n\\/>\"', 1, '2016-02-06 21:57:52', '2016-02-07 22:13:13', 2, '', 267, '2c3265f5-30c4-4a4c-bba0-58caf5bf98a0', '', '', '', '', ''),
(1054, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Days Target', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"day-target\\\" \\r\\n\\tlabel=\\\"Days Target\\\" \\r\\n\\tdescription=\\\"\\\" \\r\\n\\tclass=\\\"btn-group btn-group-yesno\\\" \\r\\n\\toption=\\\"1|Any,2|Selected\\\" \\r\\n\\tdefault=\\\"1\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\/>\"', 1, '2016-02-06 22:00:11', '2016-02-06 22:00:47', 2, '', 646, 'd38e143d-f3c0-4f8c-8700-b53181e2238e', '', '', '', '', ''),
(1055, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Date Target', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"date-target\\\" \\r\\n\\tlabel=\\\"Date Target\\\" \\r\\n\\tdescription=\\\"\\\" \\r\\n\\tclass=\\\"btn-group btn-group-yesno\\\" \\r\\n\\toption=\\\"1|Repeat,2|Fixed\\\" \\r\\n\\tdefault=\\\"1\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\/>\"', 1, '2016-02-06 22:38:25', '2016-02-08 01:36:19', 3, '', 646, 'b2e46ff4-ff90-4b8b-b94c-f322a7d85cc3', '', '', '', '', ''),
(1056, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Sent To (email - miltiple)', 'NOT NULL', 1, 11, '\"<field \\r\\n\\ttype=\\\"list\\\" \\r\\n\\tname=\\\"sent-to\\\" \\r\\n\\tlabel=\\\"Sent To\\\" \\r\\n\\tdescription=\\\"To who should this email be sent\\\" \\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\tmultiple=\\\"true\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\toption=\\\"1|Students,2|Faculty Members,3|Facilitators,4|Groups,5|Users,6|Other\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\/>\"', 1, '2016-02-07 22:12:00', '2016-02-08 01:44:39', 3, '', 658, 'c5d0cf4d-82ae-420f-abb3-31c88913fdf7', '', '', '', '', ''),
(1057, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Student (users - multiple)', 'NOT NULL', 1, 7, '\"<field \\r\\n\\ttype=\\\"studentusers\\\" \\r\\n\\tname=\\\"studentusers\\\" \\r\\n\\tlabel=\\\"Students\\\" \\r\\n\\trequired=\\\"true\\\"\\r\\nmultiple=\\\"true\\\"\\r\\n\\thint=\\\"select students\\\" \\r\\n\\textends=\\\"user\\\" \\r\\n\\ttable=\\\"#__users\\\" \\r\\n\\tcomponent=\\\"com_users\\\" \\r\\n\\tview=\\\"###view###\\\" \\r\\n\\tviews=\\\"###views###\\\" \\r\\n\\tvalue_field=\\\"name\\\" \\r\\n\\tkey_field=\\\"id\\\" \\r\\n\\ttype_php_1=\\\"\\/\\/ set the groups array\\\" \\r\\n\\ttype_php_2=\\\"$groups = JComponentHelper::getParams(\'com_###component###\')->get(\'###type###\');\\\" \\r\\n\\ttype_php_3=\\\"return $groups;\\\"\\r\\n\\/>\"', 1, '2016-02-07 22:17:48', '2016-02-07 22:18:20', 2, '', 88, '197b6ecf-d1d8-4790-9ccc-68bc0d43791a', '', '', '', '', ''),
(1058, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Other Email List', 'NOT NULL', '', 19, '\"<field \\r\\n\\ttype=\\\"repeatable\\\" \\r\\n\\tname=\\\"other_email_list\\\" \\r\\n\\tlabel=\\\"Other Email List\\\" \\r\\n\\tdescription=\\\"set the list of emails\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tid=\\\"other_email_list\\\" \\r\\n\\tclass=\\\"other_email_lists\\\" \\r\\n\\tselect=\\\"Add Emails\\\" \\r\\n\\ticon=\\\"list\\\" \\r\\n\\tfields=\\\"199,100\\\" \\r\\n\\/>\"', 1, '2016-02-07 22:32:45', '0000-00-00 00:00:00', 1, '', 659, 'c449d10e-cc96-4c91-8bde-b44434cad7d6', '', '', '', '', ''),
(1059, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Student Target', 'NOT NULL', '', 11, '\"<field \\r\\n\\ttype=\\\"list\\\" \\r\\n\\tname=\\\"student-target\\\" \\r\\n\\tlabel=\\\"Student Target\\\" \\r\\n\\tdescription=\\\"\\\" \\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\tmultiple=\\\"false\\\" \\r\\n\\tfilter=\\\"\\\" \\r\\n\\tdefault=\\\"3\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\toption=\\\"1|All,2|Not-Associated,3|Associated,4|Selected\\\"\\r\\n\\/>\"', 1, '2016-02-08 00:40:38', '2016-05-01 23:46:10', 5, '', 646, 'adae90eb-98df-49cf-be14-8adee3d0875d', '', '', '', '', ''),
(1060, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Faculty Members Target', 'NOT NULL', '', 11, '\"<field \\r\\n\\ttype=\\\"list\\\" \\r\\n\\tname=\\\"faculty-target\\\" \\r\\n\\tlabel=\\\"Faculty Members Target\\\" \\r\\n\\tdescription=\\\"\\\" \\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\tmultiple=\\\"false\\\" \\r\\n\\tfilter=\\\"\\\" \\r\\n\\toption=\\\"1|All,2|Not-Associated,3|Associated,4|Selected\\\" \\r\\n\\tdefault=\\\"3\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\/>\"', 1, '2016-02-08 00:43:13', '2016-05-01 23:47:22', 5, '', 646, 'e92bc2e5-469f-4eb4-a3df-f0eb94c03738', '', '', '', '', ''),
(1061, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Students - user (dynamic)', 'NOT NULL', 1, 6, '\"<field \\r\\n\\ttype=\\\"studentsview\\\" \\r\\n\\tname=\\\"students\\\" \\r\\n\\tlabel=\\\"Students\\\" \\r\\n\\tdescription=\\\"Select students\\\" \\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\tmultiple=\\\"true\\\" \\r\\n\\textends=\\\"list\\\" \\r\\n\\tbutton=\\\"false\\\" \\r\\n\\ttable=\\\"#__###component###_student\\\" \\r\\n\\tcomponent=\\\"com_###component###\\\" \\r\\n\\tview=\\\"student\\\" \\r\\n\\tviews=\\\"students\\\" \\r\\n\\tvalue_field=\\\"user\\\" \\r\\n\\tkey_field=\\\"user\\\" \\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_13=\\\"\\\\tforeach($items as $item)\\\" \\r\\n\\ttype_php_14=\\\"\\\\t{\\\" \\r\\n\\ttype_php_15=\\\"\\\\t\\\\t$options[] = JHtml::_(\'select.option\', $item->###ID###, JFactory::getUser($item->###CODE_TEXT###)->name);\\\" \\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-02-08 00:52:15', '2015-09-11 03:52:23', 1, '', 236, '3e533b9b-775c-4e68-a399-2f94d88313a8', '', '', '', '', ''),
(1062, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Faculty Members - user (dynamic)', 'NOT NULL', 1, 6, '\"<field \\r\\n\\ttype=\\\"emailfacultymembers\\\" \\r\\n\\tname=\\\"faculty_members\\\" \\r\\n\\tlabel=\\\"Faculty Members\\\" \\r\\n\\tdescription=\\\"Select faculty members\\\" \\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\tmultiple=\\\"true\\\" \\r\\n\\textends=\\\"list\\\" \\r\\n\\tbutton=\\\"false\\\" \\r\\n\\ttable=\\\"#__###component###_faculty_member\\\" \\r\\n\\tcomponent=\\\"com_###component###\\\" \\r\\n\\tview=\\\"faculty_member\\\" \\r\\n\\tviews=\\\"faculty_members\\\" \\r\\n\\tvalue_field=\\\"user\\\" \\r\\n\\tkey_field=\\\"user\\\" \\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_13=\\\"\\\\tforeach($items as $item)\\\" \\r\\n\\ttype_php_14=\\\"\\\\t{\\\" \\r\\n\\ttype_php_15=\\\"\\\\t\\\\t$options[] = JHtml::_(\'select.option\', $item->###ID###, JFactory::getUser($item->###CODE_TEXT###)->name);\\\" \\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-02-08 00:53:44', '2016-02-08 01:07:55', 4, '', 236, '0a28897b-23d1-4b8d-a6c7-916b848781a2', '', '', '', '', ''),
(1063, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Date (repeat)', 'NOT NULL', '', 1, '\"<field \\r\\n\\ttype=\\\"calendar\\\" \\r\\n\\tname=\\\"date-repeat\\\" \\r\\n\\tlabel=\\\"Date (repeat)\\\" \\r\\n\\tdefault=\\\"now\\\" \\r\\n\\trequired=\\\"true\\\"\\r\\n\\tsize=\\\"22\\\" \\r\\n\\tformat=\\\"%m-%d\\\"\\\" \\r\\n\\tfilter=\\\"user_utc\\\" \\r\\n\\/>\"', 1, '2016-02-08 01:23:35', '2015-09-12 00:03:53', 1, '', 167, '27854113-afb8-48e8-9acb-d1e9ab41d7f2', '', '', '', '', ''),
(1064, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Facilitators Target', 'NOT NULL', '', 11, '\"<field \\r\\n\\ttype=\\\"list\\\" \\r\\n\\tname=\\\"facilitator-target\\\" \\r\\n\\tlabel=\\\"Facilitator Target\\\" \\r\\n\\tdescription=\\\"\\\" \\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\tmultiple=\\\"false\\\" \\r\\n\\tfilter=\\\"\\\" \\r\\n\\toption=\\\"1|All,2|Not-Associated,3|Associated\\\"\\r\\n\\tdefault=\\\"3\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\/>\"', 1, '2016-02-08 01:32:24', '2016-05-01 23:48:00', 3, '', 646, 'a9756bf5-4d8f-46c0-b3eb-15239434bb2e', '', '', '', '', ''),
(1065, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'All users (multiple)', 'NOT NULL', 1, 6, '\"<field \\r\\n\\ttype=\\\"allusers\\\" \\r\\n\\tname=\\\"users\\\" \\r\\n\\tlabel=\\\"Users\\\" \\r\\n\\tdescription=\\\"Select users\\\" \\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\tmultiple=\\\"true\\\" \\r\\nrequired=\\\"true\\\"\\r\\n\\textends=\\\"list\\\" \\r\\n\\tbutton=\\\"false\\\" \\r\\n\\ttable=\\\"#__users\\\" \\r\\n\\tcomponent=\\\"com_users\\\" \\r\\n\\tview=\\\"user\\\" \\r\\n\\tviews=\\\"users\\\" \\r\\n\\tvierrrrrrrrrrrrrw=\\\"###view###\\\" \\r\\n\\tvierrrrrrrrrrrrrrws=\\\"###views###\\\" \\r\\n\\tvalue_field=\\\"name\\\" \\r\\n\\tkey_field=\\\"id\\\"\\r\\n\\ttype_php_1=\\\"$db = Factory::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.block\') . \' = 0\');\\\" \\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_13=\\\"\\\\tforeach($items as $item)\\\" \\r\\n\\ttype_php_14=\\\"\\\\t{\\\" \\r\\n\\ttype_php_15=\\\"\\\\t\\\\t$options[] = Html::_(\'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-02-08 01:52:04', '2016-02-08 01:58:00', 2, '', 236, '674181f2-b029-4952-bd79-47555e71b006', '', '', '', '', ''),
(1066, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Users Target', 'NOT NULL', '', 11, '\"<field \\r\\n\\ttype=\\\"list\\\" \\r\\n\\tname=\\\"users-target\\\" \\r\\n\\tlabel=\\\"Users Target\\\" \\r\\n\\tdescription=\\\"\\\" \\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\tmultiple=\\\"false\\\" \\r\\n\\tfilter=\\\"\\\" \\r\\n\\toption=\\\"1|All,2|Not-Associated,3|Associated,4|Selected\\\"\\r\\n\\tdefault=\\\"1\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\/>\"', 1, '2016-02-08 02:01:33', '2016-05-01 23:48:36', 3, '', 646, '246780fc-3622-4f32-88af-ae3c5f26c967', '', '', '', '', ''),
(1067, 1, '', 1, '', 'Y29kZSB7IGRpc3BsYXk6IGlubGluZS1ibG9jazsgbWFyZ2luOiAzcHg7fQ==', '', '', '', '', '', 'TEXT', '', 'alF1ZXJ5KGZ1bmN0aW9uKCkgew0KICAgIGpRdWVyeSgiY29kZSIpLmNsaWNrKGZ1bmN0aW9uKCkgew0KICAgICAgICBqUXVlcnkodGhpcykuc2VsVGV4dCgpLmFkZENsYXNzKCJzZWxlY3RlZCIpOw0KICAgIH0pOw0KfSk7DQoNCmpRdWVyeS5mbi5zZWxUZXh0ID0gZnVuY3Rpb24oKSB7DQogICAgdmFyIG9iaiA9IHRoaXNbMF07DQogICAgaWYgKGpRdWVyeS5icm93c2VyLm1zaWUpIHsNCiAgICAgICAgdmFyIHJhbmdlID0gb2JqLm9mZnNldFBhcmVudC5jcmVhdGVUZXh0UmFuZ2UoKTsNCiAgICAgICAgcmFuZ2UubW92ZVRvRWxlbWVudFRleHQob2JqKTsNCiAgICAgICAgcmFuZ2Uuc2VsZWN0KCk7DQogICAgfSBlbHNlIGlmIChqUXVlcnkuYnJvd3Nlci5tb3ppbGxhIHx8ICQuYnJvd3Nlci5vcGVyYSkgew0KICAgICAgICB2YXIgc2VsZWN0aW9uID0gb2JqLm93bmVyRG9jdW1lbnQuZGVmYXVsdFZpZXcuZ2V0U2VsZWN0aW9uKCk7DQogICAgICAgIHZhciByYW5nZSA9IG9iai5vd25lckRvY3VtZW50LmNyZWF0ZVJhbmdlKCk7DQogICAgICAgIHJhbmdlLnNlbGVjdE5vZGVDb250ZW50cyhvYmopOw0KICAgICAgICBzZWxlY3Rpb24ucmVtb3ZlQWxsUmFuZ2VzKCk7DQogICAgICAgIHNlbGVjdGlvbi5hZGRSYW5nZShyYW5nZSk7DQogICAgfSBlbHNlIGlmIChqUXVlcnkuYnJvd3Nlci5zYWZhcmkpIHsNCiAgICAgICAgdmFyIHNlbGVjdGlvbiA9IG9iai5vd25lckRvY3VtZW50LmRlZmF1bHRWaWV3LmdldFNlbGVjdGlvbigpOw0KICAgICAgICBzZWxlY3Rpb24uc2V0QmFzZUFuZEV4dGVudChvYmosIDAsIG9iaiwgMSk7DQogICAgfQ0KICAgIHJldHVybiB0aGlzOw0KfQ==', '', 'Place holders (heading)', 'NOT NULL', '', 14, '\"<field \\r\\n\\ttype=\\\"note\\\" \\r\\n\\tname=\\\"note_place_holder_heading\\\" \\r\\n\\tlabel=\\\"The Place-holders\\\" \\r\\n\\tdescription=\\\"<p>You can use these place holders, and they will be replaced with the users details to whom this email will be send.<p>\\\" \\r\\n\\theading=\\\"h3\\\" \\r\\n\\tclass=\\\"note_place_holder_heading\\\" \\r\\n\\/>\"', 1, '2016-02-08 12:51:44', '2016-02-10 15:26:06', 16, '', 660, 'dbc4c73c-2522-43d1-8b8a-e7cb0604d955', '', '', '', '', ''),
(1068, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Place holders (helper)', 'NOT NULL', '', 14, '\"<field \\r\\n\\ttype=\\\"note\\\" \\r\\n\\tname=\\\"note_place_holder_helper\\\" \\r\\n\\tlabel=\\\"Place-holders (helper)\\\" \\r\\n\\tdescription=\\\"<ul><li><b>Check if value exists:<\\/b><br \\/><code>[IF name]<br \\/>\\tName: [name]<br \\/>[ELSEIF username]<br \\/>\\tName: [username]<br \\/>[ELSE]<br \\/>\\tName: not set<br \\/>[ENDIF]<\\/code><\\/li><li><b>Check user group<\\/b><br \\/><code>[IF A-NAME-GROUP]<br \\/>\\tThis user is a member of A-NAME<br \\/>[ELSEIF B-NAME-GROUP]<br \\/>\\tThis user is a member of B-NAME.<br \\/>[ELSEIF C-NAME-GROUP]<br \\/>\\tThis user is a member of C-NAME.<br \\/>[ELSE]<br \\/>\\tThis user is not in the correct group.<br \\/>[ENDIF]<\\/code><\\/li><li><b>Set Custom Place-holder<\\/b><br \\/><i>In the <b>Application Fields<\\/b> you have a field called <b>Unique Code<\\/b>. You will take that code <b>exactly<\\/b> and use it in place of name as in example above.<\\/i><\\/br >So if that code is <b>spose-name<\\/b><br \\/><code>[IF spose-name]<br \\/>\\tLooking forward to seeing both [spose-name] and yourself there.<br \\/>[ELSE]<br \\/>\\tLooking forward to seeing you there.<br \\/>[ENDIF]<\\/code><\\/li><\\/ul>\\\" \\r\\n\\theading=\\\"h4\\\" \\r\\n\\tclass=\\\"place-holder-helper\\\" \\r\\n\\/>\"', 1, '2016-02-08 14:37:44', '2016-05-02 01:21:23', 7, '', 660, '8947161c-5bbd-483d-b998-e5f4c531e1bc', '', '', '', '', ''),
(1069, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Place holders (Students)', 'NOT NULL', '', 14, '\"<field \\r\\n\\ttype=\\\"note\\\" \\r\\n\\tname=\\\"note_place_holder_student\\\" \\r\\n\\tlabel=\\\"Student only\\\" \\r\\n\\tdescription=\\\"<div><code>[birth-date]<\\/code> <code>[gender]<\\/code> <code>[birth-date]<\\/code> <code>[marital-status]<\\/code> <code>[occupation]<\\/code> <code>[employer]<\\/code> <code>[national-id]<\\/code> <code>[mobile-phone]<\\/code> <code>[home-phone]<\\/code> <code>[work-phone]<\\/code> <code>[postal-address]<\\/code> <code>[street-address]<\\/code> <code>[city]<\\/code> <code>[region]<\\/code> <code>[country]<\\/code> <code>[postal-code]<\\/code> <code>[autobiography]<\\/code><\\/div> \\\" \\r\\n\\theading=\\\"h4\\\" \\r\\n\\tclass=\\\"note_place_holder_student\\\" \\r\\n\\/>\"', 1, '2016-02-09 14:15:46', '2016-05-02 00:38:44', 4, '', 660, '0534fb97-1f05-4046-9412-858141292d2f', '', '', '', '', ''),
(1070, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Place holders (Programs)', 'NOT NULL', '', 14, '\"<field \\r\\n\\ttype=\\\"note\\\" \\r\\n\\tname=\\\"note_place_holder_program\\\" \\r\\n\\tlabel=\\\"Programs\\\" \\r\\n\\tdescription=\\\"<div><code>[program-name]<\\/code> <code>[program-short-description]<\\/code> <code>[program-details]<\\/code> <code>[program-teaser]<\\/code> <code>[program-banner]<\\/code> <code>[program-icon]<\\/code><\\/div> \\\" \\r\\n\\theading=\\\"h4\\\" \\r\\n\\tclass=\\\"note_place_holder_program\\\" \\r\\n\\/>\"', 1, '2016-02-09 14:16:49', '2016-02-10 15:24:24', 4, '', 660, '0f8e14e9-c418-48f6-98c2-9f7ef35465db', '', '', '', '', ''),
(1071, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Place holders (Events)', 'NOT NULL', '', 14, '\"<field \\r\\n\\ttype=\\\"note\\\" \\r\\n\\tname=\\\"note_place_holder_event\\\" \\r\\n\\tlabel=\\\"Events\\\" \\r\\n\\tdescription=\\\"<div><code>[event-name]<\\/code> <code>[event-dates]<\\/code> <code>[event-start-date]<\\/code><\\/div>\\\" \\r\\n\\theading=\\\"h4\\\" \\r\\n\\tclass=\\\"note_place_holder_event\\\" \\r\\n\\/>\"', 1, '2016-02-09 14:17:53', '2016-05-02 00:51:04', 5, '', 660, '91bd429b-5461-4682-9736-a2f46e515a0b', '', '', '', '', ''),
(1072, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Place holders (Course)', 'NOT NULL', '', 14, '\"<field \\r\\n\\ttype=\\\"note\\\" \\r\\n\\tname=\\\"note_place_holder_course\\\" \\r\\n\\tlabel=\\\"Course\\\" \\r\\n\\tdescription=\\\"<div><code>[course-name]<\\/code> <code>[course-start-date]<\\/code> <code>[course-short-description]<\\/code> <code>[course-teaser]<\\/code> <code>[course-banner]<\\/code><\\/div>\\\" \\r\\n\\theading=\\\"h4\\\" \\r\\n\\tclass=\\\"note_place_holder_course\\\" \\r\\n\\/>\"', 1, '2016-02-09 14:18:59', '2016-02-10 15:23:46', 3, '', 660, '2e2bf35f-6fa1-464a-86d2-e0f1d900226e', '', '', '', '', ''),
(1073, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Place holders (Days)', 'NOT NULL', '', 14, '\"<field \\r\\n\\ttype=\\\"note\\\" \\r\\n\\tname=\\\"note_place_holder_day\\\" \\r\\n\\tlabel=\\\"Days\\\" \\r\\n\\tdescription=\\\"<div><code>[day-name]<\\/code> <code>[day-date]<\\/code><\\/div>\\\" \\r\\n\\theading=\\\"h4\\\" \\r\\n\\tclass=\\\"note_place_holder_day\\\" \\r\\n\\/>\"', 1, '2016-02-09 14:20:58', '2016-02-10 15:23:29', 3, '', 660, 'c90c3084-0fe8-4d4f-ab4c-6a1954398e2c', '', '', '', '', ''),
(1074, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Place holders (Session)', 'NOT NULL', '', 14, '\"<field \\r\\n\\ttype=\\\"note\\\" \\r\\n\\tname=\\\"note_place_holder_session\\\" \\r\\n\\tlabel=\\\"Session\\\" \\r\\n\\tdescription=\\\"<div><code>[session-name]<\\/code> <code>[session-objective]<\\/code> <code>[session-day]<\\/code><\\/div>\\\" \\r\\n\\theading=\\\"h4\\\" \\r\\n\\tclass=\\\"note_place_holder_session\\\" \\r\\n\\/>\"', 1, '2016-02-09 14:22:07', '2016-02-10 15:23:14', 3, '', 660, 'be1a2013-f21e-4a9c-b51c-da2a54f4681a', '', '', '', '', ''),
(1075, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Place holders (Assessment)', 'NOT NULL', '', 14, '\"<field \\r\\n\\ttype=\\\"note\\\" \\r\\n\\tname=\\\"note_place_holder_assessment\\\" \\r\\n\\tlabel=\\\"Assessment\\\" \\r\\n\\tdescription=\\\"<div><code>[assessment-type]<\\/code> <code>[assessment-release-date]<\\/code> <code>[assessment-close-date]<\\/code> <code>[assessment-point]<\\/code> <code>[assessment-note]<\\/code> <code>[assessment]<\\/code> <\\/div>\\\" \\r\\n\\theading=\\\"h4\\\" \\r\\n\\tclass=\\\"note_place_holder_assessment\\\" \\r\\n\\/>\"', 1, '2016-02-09 14:26:01', '2016-02-10 15:22:53', 4, '', 660, 'ebe71dfc-df00-4a7e-8947-10af14627f24', '', '', '', '', ''),
(1076, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'HTML Template (email)', 'NOT NULL', '', 8, '\"<field\\n\\ttype=\\\"editor\\\"\\n\\tname=\\\"htmltemplate\\\"\\n\\tlabel=\\\"HTML Template\\\"\\n\\tdefault=\\\"\\\"\\n\\twidth=\\\"100%\\\"\\n\\theight=\\\"600\\\"\\n\\tcols=\\\"15\\\"\\n\\trows=\\\"20\\\"\\n\\tbuttons=\\\"false\\\"\\n\\tfilter=\\\"safehtml\\\"\\n\\/>\"', 1, '2016-02-10 05:53:06', '2019-07-08 14:17:39', 3, '', 661, 'b32ddea5-c296-4d78-b5f1-dcbe986c4717', '', '', '', '', ''),
(1077, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'Subscription management', 'NOT NULL', '', 17, '\"<field\\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"add_to_subscription\\\" \\r\\n\\tlabel=\\\"Add to subscription management\\\" \\r\\n\\tdescription=\\\"Set if the users are able to manage this email type in their email subscription.\\\" \\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, '2016-02-10 05:55:18', '2016-02-10 14:41:43', 4, '', 661, 'b6913c75-b23e-4272-a2fc-4308b33a435e', '', '', '', '', ''),
(1078, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'Kind of Message', 'NOT NULL', '', 11, '\"<field\\n\\ttype=\\\"list\\\"\\n\\tname=\\\"kind\\\"\\n\\tlabel=\\\"Kind of Message\\\"\\n\\tdescription=\\\"Set the kind of message this is.\\\"\\n\\tclass=\\\"list_class\\\"\\n\\tmultiple=\\\"false\\\"\\n\\tfilter=\\\"INT\\\"\\n\\trequired=\\\"true\\\"\\n\\toption=\\\"1|Email (HTML & TEXT),2|Email (ONLY TEXT),3|SMS (ONLY TEXT),4|Only Profile Notice\\\"\\n\\tdefault=\\\"1\\\"\\n\\/>\"', 1, '2016-02-10 14:36:11', '2018-10-19 19:50:19', 11, '', '', '24531cab-8b24-4e07-8413-d19ec272b13d', '', '', '', '', ''),
(1079, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Text Template (email)', 'NOT NULL', '', 25, '\"<field \\r\\n\\ttype=\\\"textarea\\\" \\r\\n\\tname=\\\"text-template\\\" \\r\\n\\tlabel=\\\"Text Template\\\" \\r\\n\\trows=\\\"20\\\" \\r\\n\\tcols=\\\"15\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tclass=\\\"text_area span12\\\" \\r\\n\\tfilter=\\\"HTML\\\" \\r\\n\\thint=\\\"\\/\\/ Add the Text Template code here.\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\/>\"', 1, '2016-02-10 14:44:56', '2015-08-25 21:15:22', 1, '', 366, '11320a98-9e66-425f-9e80-373589b6308f', '', '', '', '', ''),
(1080, '', '', '', '', '', '', '', '', 11, '', 'INT', '', '', '', 'Message Types', 'NOT NULL', '', 6, '\"<field \\r\\n\\ttype=\\\"messagetype\\\" \\r\\n\\tname=\\\"type\\\" \\r\\n\\tlabel=\\\"Type\\\" \\r\\n\\tdescription=\\\"Select the message type\\/template\\\" \\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\tmultiple=\\\"false\\\" \\r\\n\\tdefault=\\\"0\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\treadonly=\\\"\\\" \\r\\n\\tdisabled=\\\"\\\" \\r\\n\\textends=\\\"list\\\" \\r\\n\\tbutton=\\\"true\\\" \\r\\n\\ttable=\\\"#__###component###_message_type\\\" \\r\\n\\tcomponent=\\\"com_###component###\\\" \\r\\n\\tview=\\\"message_type\\\" \\r\\n\\tviews=\\\"message_types\\\" \\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 an option\');\\\" \\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-02-10 15:03:00', '2016-05-05 17:00:25', 3, '', 662, 'f96da3be-7dae-440c-86fc-c66a4122752e', '', '', '', '', ''),
(1081, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Place holders (Template)', 'NOT NULL', '', 14, '\"<field \\r\\n\\ttype=\\\"note\\\" \\r\\n\\tname=\\\"note_place_holder_template\\\" \\r\\n\\tlabel=\\\"Template\\\" \\r\\n\\tdescription=\\\"<div><code>[html-body]<\\/code> <code>[text-body]<\\/code><\\/div>\\\" \\r\\n\\theading=\\\"h4\\\" \\r\\n\\tclass=\\\"note_place_holder_template\\\" \\r\\n\\/>\"', 1, '2016-02-10 15:18:11', '2016-05-02 01:44:22', 2, '', 660, '048d6a67-81a7-432f-9aa9-a53a14ae992d', '', '', '', '', ''),
(1082, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Place holders (Institution)', 'NOT NULL', '', 14, '\"<field \\r\\n\\ttype=\\\"note\\\" \\r\\n\\tname=\\\"note_place_holder_institution\\\" \\r\\n\\tlabel=\\\"Institution Details\\\" \\r\\n\\tdescription=\\\"<div><code>[institution-name]<\\/code> <code>[institution-email]<\\/code> <code>[institution-phone]<\\/code> <code>[institution-fax]<\\/code> <code>[institution-postal-address]<\\/code> <code>[institution-street-address]<\\/code> <code>[institution-city]<\\/code> <code>[institution-region]<\\/code> <code>[institution-country]<\\/code> <code>[institution-postal-code]<\\/code> <code>[institution-logo]<\\/code> <\\/div> \\\" \\r\\n\\theading=\\\"h4\\\" \\r\\n\\tclass=\\\"note_place_holder_institution\\\" \\r\\n\\/>\"', 1, '2016-02-10 15:20:03', '2016-02-10 15:22:30', 2, '', 660, 'ecf289d1-4afd-49cc-b7a2-d757710b928f', '', '', '', '', ''),
(1083, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Place holders (Users)', 'NOT NULL', '', 14, '\"<field \\r\\n\\ttype=\\\"note\\\" \\r\\n\\tname=\\\"note_place_holder_user\\\" \\r\\n\\tlabel=\\\"Users\\\" \\r\\n\\tdescription=\\\"<div><code>[name]<\\/code> <code>[username]<\\/code> <code>[email]<\\/code><\\/div>\\\" \\r\\n\\theading=\\\"h4\\\" \\r\\n\\tclass=\\\"note_place_holder_user\\\" \\r\\n\\/>\"', 1, '2016-02-10 15:21:35', '2016-02-10 15:21:49', 2, '', 660, '3e0cf71a-439a-4a9f-859e-37ec78789d4e', '', '', '', '', ''),
(1084, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Place holders (Website)', 'NOT NULL', '', 14, '\"<field \\r\\n\\ttype=\\\"note\\\" \\r\\n\\tname=\\\"note_place_holder_website\\\" \\r\\n\\tlabel=\\\"Website\\\" \\r\\n\\tdescription=\\\"<div><code>[view-email-in-browser]<\\/code> <code>[site-link]<\\/code> <code>[events-link]<\\/code> <code>[programs-link]<\\/code> <code>[terms-link]<\\/code> <code>[privacy-link]<\\/code> <code>[subscription-link]<\\/code> <code>[unsubscribe-link]<\\/code> <code>[view-email-in-browser]<\\/code> <code>[copyright-notice]<\\/code><\\/div>\\\" \\r\\n\\theading=\\\"h4\\\" \\r\\n\\tclass=\\\"note_place_holder_website\\\" \\r\\n\\/>\"', 1, '2016-02-10 15:29:30', '2016-02-10 15:36:37', 2, '', 660, '1853e314-f654-4250-96cb-0a717ab684a0', '', '', '', '', ''),
(1085, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Form - Show On', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"showon\\\"\\n\\tlabel=\\\"Show On\\\"\\n\\tsize=\\\"60\\\"\\n\\tmaxlength=\\\"150\\\"\\n\\tdescription=\\\"Enter the target field and input value that should trigger this field to show.\\\"\\n\\tclass=\\\"text_area\\\"\\n\\tfilter=\\\"STRING\\\"\\n\\tmessage=\\\"Error! Please add target field and input value here.\\\"\\n\\thint=\\\"gender:male\\\"\\n\\tautocomplete=\\\"on\\\"\\n\\/>\"', 1, '2016-02-17 13:10:20', '2022-06-22 14:42:03', 5, '', 242, '80cdfec6-bd63-4d8e-a33a-20c2785c9348', '', '', '', '', ''),
(1086, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Dashboard Default Notice', 'NOT NULL', '', 14, '\"<field \\r\\n\\ttype=\\\"note\\\" \\r\\n\\tname=\\\"note_botton_component_dashboard\\\" \\r\\n\\theading=\\\"h4\\\"\\r\\n\\tlabel=\\\"Default Dashboard Option\\\"\\r\\n\\tdescription=\\\"<p>The default dashboard has all the icons of the views you have selected as <b>Dashboard (add record)<\\/b> or <b>Dashboard (list of records)<\\/b>, to expand it you can add more tabs.<\\/p><span id=\'jform_button_component_dashboard\'><\\/span>\\\"\\r\\n\\tclass=\\\"alert alert-info\\\"\\r\\n\\/>\"', 1, '2016-02-18 12:53:26', '2018-03-09 00:48:46', 6, '', 188, 'a1b697c0-f1b3-4e98-b60d-5bf00b63dfb7', '', '', '', '', ''),
(1087, '', '', '', '', '', '', '', '', '', '', 'MEDIUMTEXT', '', '', '', 'PHP Dashboard Methods', 'NOT NULL', 2, 25, '\"<field\\n\\ttype=\\\"textarea\\\"\\n\\tname=\\\"php_dashboard_methods\\\"\\n\\tlabel=\\\"PHP Dashboard Methods\\\"\\n\\trows=\\\"17\\\"\\n\\tcols=\\\"5\\\"\\n\\tdescription=\\\"PHP methods to place in the dashboard model.\\\"\\n\\tclass=\\\"text_area span12\\\"\\n\\tfilter=\\\"raw\\\"\\n\\thint=\\\"\\/\\/ add custom PHP methods to dashboard model. Use the [public function getMethodname()] to insure the data is set to the view, note the convention [public function get...()] replace the .... with the unique method name.\\\"\\n\\trequired=\\\"false\\\"\\n\\/>\"', 1, '2016-02-18 13:00:15', '2019-07-09 15:37:01', 6, '', 373, 'e6c421c3-2f37-429a-a8d9-b552bed392a5', '', '', '', '', ''),
(1088, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Add Dashboard Tabs', 'NOT NULL', '', 35, '\"<field\\n\\ttype=\\\"subform\\\"\\n\\tname=\\\"dashboard_tab\\\"\\n\\tlabel=\\\"Dashboard Tabs\\\"\\n\\tlayout=\\\"repeatablejcb\\\"\\n\\tmultiple=\\\"true\\\"\\n\\tfields=\\\"199,1089,2655\\\"\\n\\tdescription=\\\"\\\"\\n\\tdefault=\\\"\\\"\\n\\ticon=\\\"list\\\"\\n\\tfilter=\\\"raw\\\"\\n\\/>\"', 1, '2016-02-18 13:02:57', '2021-12-16 04:56:47', 9, '', 392, 'fd0cceef-975e-4daa-a529-2c98446b9df3', '', '', '', '', ''),
(1089, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', 2, '', '', 'Header', 'NOT NULL', '', 24, '\"<field\\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"header\\\" \\r\\n\\tlabel=\\\"Header\\\" \\r\\n\\tsize=\\\"40\\\" \\r\\n\\tmaxlength=\\\"150\\\" \\r\\n\\tdescription=\\\"Enter Header Here\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\treadonly=\\\"false\\\" \\r\\n\\tdisabled=\\\"false\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\tfilter=\\\"STRING\\\" \\r\\n\\tmessage=\\\"Error! Please add header here.\\\" \\r\\n\\thint=\\\"Header Here\\\" \\r\\n\\/>\"', 1, '2016-02-18 13:04:53', '2017-10-25 20:25:52', 3, '', 4, 'eeaead8e-8aab-4b38-b751-b8bfaf61e07d', '', '', '', '', ''),
(1090, 1, '', '', '', 'LnRhYl9odG1sIHsgd2lkdGg6IDEwMjdweDsgaGVpZ2h0OiAzMzhweDsgfQ==', '', '', '', '', '', 'TEXT', '', '', '', 'Custom Tab HTML', 'NOT NULL', 2, 25, '\"<field\\n\\ttype=\\\"textarea\\\"\\n\\tname=\\\"html\\\"\\n\\tlabel=\\\"HTML\\\"\\n\\trows=\\\"20\\\"\\n\\tcols=\\\"30\\\"\\n\\tdefault=\\\"\\\"\\n\\tclass=\\\"text_area tab_html\\\"\\n\\tfilter=\\\"raw\\\"\\n\\thint=\\\"\\/\\/ Add the tab HTML here. To access php values <?php echo $this->methodname->value; ?>\\\"\\n\\trequired=\\\"true\\\"\\n\\/>\"', 1, '2016-02-18 15:08:58', '2019-10-10 20:42:36', 7, '', 368, 'deaac30b-1c45-41b6-8e06-2914132913b8', '', '', '', '', ''),
(1091, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Mailer', 'NOT NULL', '', 11, '\"<field \\r\\n\\ttype=\\\"list\\\" \\r\\n\\tname=\\\"mailer\\\" \\r\\n\\tlabel=\\\"Mailer\\\" \\r\\n\\tdescription=\\\"Select what mailer you would like to use to send emails.\\\" \\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\tmultiple=\\\"false\\\" \\r\\n\\tfilter=\\\"WORD\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\toption=\\\"global|Global,default|PHP Mail,sendmail|Sendmail,smtp|SMTP\\\" \\r\\n\\tdefault=\\\"global\\\" \\r\\n\\/>\"', 1, '2016-02-22 18:00:22', '2016-02-23 13:18:25', 4, '', 663, '7fb2a446-bc4e-42fd-9c4d-1eaf5dc4361e', '', '', '', '', ''),
(1092, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Sendmail Path (Mailer)', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"sendmail\\\" \\r\\n\\tlabel=\\\"Sendmail Path\\\" \\r\\n\\tsize=\\\"60\\\" \\r\\n\\tmaxlength=\\\"150\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tdescription=\\\"Enter the path to the sendmail program directory on your host server.\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\trequired=\\\"false\\\" \\r\\n\\tfilter=\\\"PATH\\\" \\r\\n\\tmessage=\\\"Error! Please add path to you local sendmail here.\\\" \\r\\n\\thint=\\\"\\/usr\\/sbin\\/sendmail\\\" \\r\\n\\tshowon=\\\"mailer:sendmail\\\" \\r\\n\\/>\"', 1, '2016-02-22 18:04:32', '2016-02-23 14:59:10', 5, '', 663, '63f72bbf-2bfd-483a-b9c8-6cff0925e251', '', '', '', '', ''),
(1093, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'SMTP Authentication (Mailer)', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"smtpauth\\\" \\r\\n\\tlabel=\\\"SMTP Authentication\\\" \\r\\n\\tdescription=\\\"Select yes if your SMTP host requires SMTP Authentication.\\\" \\r\\n\\tclass=\\\"btn-group btn-group-yesno\\\" \\r\\n\\toption=\\\"1|Yes,0|No\\\" \\r\\n\\tdefault=\\\"0\\\" \\r\\n\\tshowon=\\\"mailer:smtp\\\" \\r\\n\\/>\"', 1, '2016-02-22 18:23:17', '2016-02-23 14:56:41', 5, '', 663, '89da5e0d-b58f-43da-8f93-2f9259c3e131', '', '', '', '', ''),
(1094, '', '', '', '', '', '', '', '', 64, '', 'VARCHAR', '', '', '', 'SMTP Security (Mailer)', 'NOT NULL', '', 11, '\"<field \\r\\n\\ttype=\\\"list\\\" \\r\\n\\tname=\\\"smtpsecure\\\" \\r\\n\\tlabel=\\\"SMTP Security\\\" \\r\\n\\tdescription=\\\"Select the security model that your SMTP server uses.\\\" \\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\tmultiple=\\\"false\\\" \\r\\n\\tfilter=\\\"WORD\\\" \\r\\n\\toption=\\\"none|None,ssl|SSL,tls|TLS\\\" \\r\\n\\tdefault=\\\"none\\\" \\r\\n\\tshowon=\\\"mailer:smtp\\\" \\r\\n\\/>\"', 1, '2016-02-22 18:25:17', '2016-02-23 14:58:50', 4, '', 663, '791065cf-84a7-4afc-b96b-a44a6c7ceded', '', '', '', '', ''),
(1095, '', '', '', '', '', '', '', '', 11, '', 'INT', '', '', '', ' SMTP Port (Mailer)', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"smtpport\\\" \\r\\n\\tlabel=\\\"SMTP Port\\\" \\r\\n\\tsize=\\\"60\\\" \\r\\n\\tmaxlength=\\\"150\\\" \\r\\n\\tdefault=\\\"25\\\" \\r\\n\\tdescription=\\\"Enter the port number of your SMTP server. Use 25 for most unsecured servers and 465 for most secure servers.\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\tfilter=\\\"INT\\\" \\r\\n\\tvalidate=\\\"\\\" \\r\\n\\tmessage=\\\"Error! Please add the port number of your SMTP server here.\\\" \\r\\n\\thint=\\\"25\\\" \\r\\n\\tshowon=\\\"mailer:smtp\\\" \\r\\n\\/>\"', 1, '2016-02-22 18:27:43', '2016-02-23 14:59:26', 3, '', 663, 'f49f2132-c098-4758-b1ec-0c8063195fb7', '', '', '', '', ''),
(1096, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'SMTP Username (Mailer)', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"smtpuser\\\" \\r\\n\\tlabel=\\\"SMTP Username\\\" \\r\\n\\tsize=\\\"60\\\" \\r\\n\\tmaxlength=\\\"150\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tdescription=\\\"Enter the username for access to the SMTP host.\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\tfilter=\\\"STRING\\\" \\r\\n\\tvalidate=\\\"\\\" \\r\\n\\tmessage=\\\"Error! Please add the username for SMTP server here.\\\" \\r\\n\\thint=\\\"email@demo.com\\\" \\r\\n\\tshowon=\\\"mailer:smtp\\\" \\r\\n\\/>\"', 1, '2016-02-22 18:29:00', '2016-02-23 14:57:08', 5, '', 663, '533f7e5d-5a62-452c-9e22-d43ae22cbd58', '', '', '', '', ''),
(1097, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'SMTP Password (Mailer)', 'NOT NULL', '', 16, '\"<field \\r\\n\\ttype=\\\"password\\\" \\r\\n\\tname=\\\"smtppass\\\" \\r\\n\\tlabel=\\\"SMTP Password\\\" \\r\\n\\tsize=\\\"60\\\" \\r\\n\\tmaxlength=\\\"150\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tdescription=\\\"Enter the password for access to the SMTP host.\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\tmessage=\\\"Error! Please add the password for SMTP server here.\\\" \\r\\n\\tshowon=\\\"mailer:smtp\\\" \\r\\n\\tfilter=\\\"raw\\\" \\r\\n\\/>\"', 1, '2016-02-22 18:30:49', '2016-02-23 14:57:35', 3, '', 663, 'b419bd60-45d9-4467-8421-9c20141e21ea', '', '', '', '', ''),
(1098, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'SMTP Host (Mailer)', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"smtphost\\\" \\r\\n\\tlabel=\\\"SMTP Host\\\" \\r\\n\\tsize=\\\"60\\\" \\r\\n\\tmaxlength=\\\"150\\\" \\r\\n\\tdefault=\\\"localhost\\\" \\r\\n\\tdescription=\\\"Enter the name of the SMTP host.\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\tfilter=\\\"STRING\\\" \\r\\n\\tmessage=\\\"Error! Please add the name of the SMTP host here.\\\" \\r\\n\\thint=\\\"localhost\\\" \\r\\n\\tshowon=\\\"mailer:smtp\\\" \\r\\n\\/>\"', 1, '2016-02-22 18:32:32', '2016-02-23 14:58:03', 3, '', 663, 'c206769f-2d07-456e-bb49-ba617616b905', '', '', '', '', ''),
(1099, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'Enable DKIM', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"dkim\\\" \\r\\n\\tlabel=\\\"Enable DKIM\\\" \\r\\n\\tdescription=\\\"Set this option to Yes if you want to sign your emails using DKIM.\\\" \\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-02-22 18:46:31', '2016-02-22 18:29:15', 1, '', 663, '436b00d4-a13d-4cd5-bf07-b8878dad4cd7', '', '', '', '', ''),
(1100, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', ' Domain (DKIM)', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\"\\r\\n\\tname=\\\"dkim_domain\\\" \\r\\n\\tlabel=\\\"Domain\\\" \\r\\n\\tsize=\\\"60\\\" \\r\\n\\tmaxlength=\\\"150\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tdescription=\\\"Set the domain. Eg. domain.com\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\tfilter=\\\"STRING\\\" \\r\\n\\tmessage=\\\"Error! Please add DKIM Domain here.\\\" \\r\\n\\thint=\\\"domain.com\\\" \\r\\n\\tshowon=\\\"dkim:1\\\" \\r\\n\\tonchange=\\\"vdm_dkim();\\\"\\r\\n\\/>\"', 1, '2016-02-22 18:50:21', '2016-02-22 22:05:43', 2, '', 663, '66b511de-d821-4a9a-9b6b-1e74e174b11d', '', '', '', '', ''),
(1101, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', ' Selector (DKIM)', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\"\\r\\n\\tname=\\\"dkim_selector\\\" \\r\\n\\tlabel=\\\"Selector\\\" \\r\\n\\tsize=\\\"60\\\" \\r\\n\\tmaxlength=\\\"150\\\" \\r\\n\\tdefault=\\\"vdm\\\" \\r\\n\\tdescription=\\\"Set your DKIM\\/DNS selector.\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\tfilter=\\\"STRING\\\" \\r\\n\\tmessage=\\\"Error! Please add DKIM\\/DNS selector here.\\\" \\r\\n\\thint=\\\"vdm\\\" \\r\\n\\tshowon=\\\"dkim:1\\\" \\r\\n\\tonchange=\\\"vdm_dkim();\\\"\\r\\n\\/>\"', 1, '2016-02-22 18:52:19', '2016-02-22 22:05:12', 2, '', 663, '49ae3d74-3706-4a2b-b9ea-621f43c7d382', '', '', '', '', ''),
(1102, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Passphrase (DKIM)', 'NOT NULL', '', 16, '\"<field \\r\\n\\ttype=\\\"password\\\" \\r\\n\\tname=\\\"dkim_passphrase\\\" \\r\\n\\tlabel=\\\"Passphrase\\\" \\r\\n\\tsize=\\\"60\\\" \\r\\n\\tmaxlength=\\\"150\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tdescription=\\\"Enter your passphrase here.\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\tfilter=\\\"raw\\\" \\r\\n\\tmessage=\\\"Error! Please add passphrase here.\\\" \\r\\n\\thint=\\\"\\\" \\r\\n\\tshowon=\\\"dkim:1\\\" \\r\\n\\/>\"', 1, '2016-02-22 18:54:19', '2016-02-22 18:29:15', 1, '', 663, '9ca7c5f1-99ef-4573-ab0e-0ba497d06a79', '', '', '', '', ''),
(1103, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Identity (DKIM)', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"dkim_identity\\\" \\r\\n\\tlabel=\\\"Identity\\\" \\r\\n\\tsize=\\\"60\\\" \\r\\n\\tmaxlength=\\\"150\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tdescription=\\\"Set DKIM identity. This can be in the format of an email address \'you@yourdomain.com\' typically used as the source of the email.\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\tfilter=\\\"raw\\\" \\r\\n\\tmessage=\\\"Error! Please add DKIM Identity here.\\\" \\r\\n\\thint=\\\"you@yourdomain.com\\\" \\r\\n\\tshowon=\\\"dkim:1\\\" \\r\\n\\/>\"', 1, '2016-02-22 18:56:16', '2016-02-22 18:29:15', 1, '', 663, '0e1dac0f-0465-4dc5-ae7e-7bd3ad5859b1', '', '', '', '', ''),
(1104, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Private key (DKIM)', 'NOT NULL', '', 25, '\"<field \\r\\n\\ttype=\\\"textarea\\\" \\r\\n\\tname=\\\"dkim_private_key\\\" \\r\\n\\tlabel=\\\"Private key\\\" \\r\\n\\trows=\\\"15\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tdescription=\\\"set private key\\\" \\r\\n\\tclass=\\\"input-xxlarge span12\\\" \\r\\n\\tshowon=\\\"dkim:1\\\" \\r\\n\\/>\"', 1, '2016-02-22 19:04:07', '2016-02-22 18:29:15', 1, '', 663, 'ae152391-8cac-4c6a-b09a-7606a6a0d09c', '', '', '', '', ''),
(1105, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Public key (DKIM)', 'NOT NULL', '', 25, '\"<field \\r\\n\\ttype=\\\"textarea\\\" \\r\\n\\tname=\\\"dkim_public_key\\\" \\r\\n\\tlabel=\\\"Public key\\\" \\r\\n\\trows=\\\"5\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tdescription=\\\"set public key\\\" \\r\\n\\tclass=\\\"input-xxlarge span12\\\" \\r\\n\\tshowon=\\\"dkim:1\\\" \\r\\n\\tonchange=\\\"vdm_dkim();\\\"\\r\\n\\/>\"', 1, '2016-02-22 19:04:41', '2016-02-22 22:04:48', 2, '', 663, '0844911b-eceb-4f95-8506-bb6e62e15454', '', '', '', '', ''),
(1106, '', '', '', '', '', '', '', '', '', '', '', '', '', '', 'Note (DKIM)', 'NOT NULL', '', 14, '\"<field\\n\\ttype=\\\"note\\\"\\n\\tname=\\\"note_dkim_use\\\"\\n\\tlabel=\\\"Server Configuration\\\"\\n\\tdescription=\\\"<p>Using the below details, you need to configure your DNS by adding a TXT record on your domain: <b><span id=\'a_dkim_domain\'><\\/span><\\/b><\\/p>\\r\\n<script>\\r\\ndocument.addEventListener(\'DOMContentLoaded\', function() {\\r\\n var jformDkimDomain = document.querySelector(\'#jform_dkim_domain\');\\r\\n if (!jformDkimDomain.value) {\\r\\n jformDkimDomain.value = window.location.hostname;\\r\\n }\\r\\n document.querySelector(\'#jform_dkim_key\').addEventListener(\'click\', function() {\\r\\n this.select();\\r\\n });\\r\\n document.querySelector(\'#jform_dkim_value\').addEventListener(\'click\', function() {\\r\\n this.select();\\r\\n });\\r\\n vdm_dkim();\\r\\n});\\r\\nfunction vdm_dkim() {\\r\\n var jformDkimDomain = document.querySelector(\'#jform_dkim_domain\');\\r\\n document.querySelector(\'#a_dkim_domain\').textContent = jformDkimDomain.value;\\r\\n var jformDkimKey = document.querySelector(\'#jform_dkim_key\');\\r\\n jformDkimKey.value = document.querySelector(\'#jform_dkim_selector\').value + \'._domainkey\';\\r\\n\\r\\n var jformDkimPublicKey = document.querySelector(\'#jform_dkim_public_key\').value;\\r\\n var jformDkimValue = document.querySelector(\'#jform_dkim_value\');\\r\\n if (!jformDkimPublicKey) {\\r\\n jformDkimValue.value = \'v=DKIM1;k=rsa;g=*;s=email;h=sha1;t=s;p=PUBLICKEY\';\\r\\n } else {\\r\\n jformDkimValue.value = \'v=DKIM1;k=rsa;g=*;s=email;h=sha1;t=s;p=\' + jformDkimPublicKey;\\r\\n }\\r\\n}\\r\\n<\\/script>\\\"\\n\\theading=\\\"h4\\\"\\n\\tshowon=\\\"dkim:1\\\"\\n\\/>\"', 1, '2016-02-22 22:26:57', '2023-12-25 11:41:08', 8, '', 664, '4ba0cfcf-bc1b-481c-a607-a0103b2eadba', '', '', '', '', ''),
(1107, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Value (DKIM)', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\"\\r\\n\\tname=\\\"dkim_value\\\" \\r\\n\\tlabel=\\\"Value\\\" \\r\\n\\tsize=\\\"80\\\" \\r\\n\\tmaxlength=\\\"350\\\" \\r\\n\\tdescription=\\\"This is the TXT value to use in the DNS. Replace the PUBLICKEY with your public key.\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\tfilter=\\\"STRING\\\" \\r\\n\\tmessage=\\\"Error! Please add TXT record here.\\\" \\r\\n\\thint=\\\"v=DKIM1;k=rsa;g=*;s=email;h=sha1;t=s;p=PUBLICKEY\\\" \\r\\n\\tshowon=\\\"dkim:1\\\" \\r\\n\\/>\"', 1, '2016-02-22 22:51:00', '2016-02-22 22:51:20', 2, '', 663, 'c862416b-920c-43c9-86ac-ba7225f810bc', '', '', '', '', ''),
(1108, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Key (DKIM)', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\"\\r\\n\\tname=\\\"dkim_key\\\" \\r\\n\\tlabel=\\\"Key\\\" \\r\\n\\tsize=\\\"40\\\" \\r\\n\\tmaxlength=\\\"150\\\" \\r\\n\\tdescription=\\\"This is the KEY to use in the DNS record.\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\tfilter=\\\"STRING\\\" \\r\\n\\tmessage=\\\"Error! Please add KEY here.\\\" \\r\\n\\thint=\\\"vdm._domainkey\\\" \\r\\n\\tshowon=\\\"dkim:1\\\" \\r\\n\\/>\"', 1, '2016-02-22 22:53:08', '2016-02-22 22:51:20', 1, '', 663, '301d2c77-d1f4-4b01-b2c3-6b29559069a4', '', '', '', '', ''),
(1109, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'Mailer Status (Mailer)', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"mailonline\\\" \\r\\n\\tlabel=\\\"Mailer Status\\\" \\r\\n\\tdescription=\\\"Warning this will stop all emails from going out.\\\" \\r\\n\\tclass=\\\"btn-group btn-group-yesno\\\" \\r\\n\\toption=\\\"1|On,0|Off\\\" \\r\\n\\tdefault=\\\"1\\\" \\r\\n\\/>\"', 1, '2016-02-23 13:12:32', '2016-02-23 13:14:00', 3, '', 663, '03e2a26c-b920-4091-a14d-64eea0b40fb3', '', '', '', '', ''),
(1110, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'From Email (Mailer)', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"emailfrom\\\"\\n\\tlabel=\\\" From Email\\\"\\n\\tsize=\\\"60\\\"\\n\\tmaxlength=\\\"150\\\"\\n\\tdescription=\\\"The global email address that will be used to send system email.\\\"\\n\\tclass=\\\"text_area\\\"\\n\\tfilter=\\\"STRING\\\"\\n\\tvalidate=\\\"email\\\"\\n\\tmessage=\\\"Error! Please add email address here.\\\"\\n\\thint=\\\"Email Address Here\\\"\\n\\tshowon=\\\"mailer:smtp,sendmail,default\\\"\\n\\/>\"', 1, '2016-02-23 13:22:53', '2018-05-13 23:20:53', 4, '', 53, '41f5e31b-4e84-48af-9864-8b245c1facd0', '', '', '', '', ''),
(1111, '', '', '', '', '', '', '', '', 64, '', 'VARCHAR', '', '', '', 'From Name (Mailer)', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"fromname\\\" \\r\\n\\tlabel=\\\"From Name\\\" \\r\\n\\tsize=\\\"60\\\" \\r\\n\\tmaxlength=\\\"150\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tdescription=\\\"Text displayed in the header &quot;From:&quot; field when sending a site email. Usually the site name.\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\tfilter=\\\"STRING\\\" \\r\\n\\tmessage=\\\"Error! Please add some name here.\\\" \\r\\n\\thint=\\\"From Name Here\\\" \\r\\n\\tshowon=\\\"mailer:smtp,sendmail,default\\\" \\r\\n\\tonchange=\\\"\\\" \\r\\n\\/>\"', 1, '2016-02-23 13:27:47', '0000-00-00 00:00:00', 1, '', 665, 'fd6e8438-f673-4487-838c-22ee4cfb2770', '', '', '', '', ''),
(1112, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Reply Email (Mailer)', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"replyto\\\" \\r\\n\\tlabel=\\\" Reply To Email\\\" \\r\\n\\tsize=\\\"60\\\" \\r\\n\\tmaxlength=\\\"150\\\" \\r\\n\\tdescription=\\\"The global email address that will be used to set as the reply to email. (leave blank for none)\\\" \\r\\n\\tclass=\\\"text_area\\\"\\r\\n\\tfilter=\\\"STRING\\\" \\r\\n\\tvalidate=\\\"email\\\" \\r\\n\\tmessage=\\\"Error! Please add email address here.\\\" \\r\\n\\thint=\\\"Email Address Here\\\" \\r\\n\\tshowon=\\\"mailer:smtp,sendmail,default\\\"\\r\\n\\/>\"', 1, '2016-02-23 13:53:20', '2017-08-20 20:18:12', 2, '', 53, '0ab15a35-f87c-4425-836c-16661e02da3d', '', '', '', '', ''),
(1113, '', '', '', '', '', '', '', '', 64, '', 'VARCHAR', '', '', '', 'Reply Name (Mailer)', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"replytoname\\\" \\r\\n\\tlabel=\\\"Reply to Name\\\" \\r\\n\\tsize=\\\"60\\\" \\r\\n\\tmaxlength=\\\"150\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tdescription=\\\"Text displayed in the header &quot;Reply To:&quot; field when replying to the site email. Usually the the person that receives the response. (leave blank for none)\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\tfilter=\\\"STRING\\\" \\r\\n\\tmessage=\\\"Error! Please add some name here.\\\" \\r\\n\\thint=\\\"Reply Name Here\\\" \\r\\n\\tshowon=\\\"mailer:smtp,sendmail,default\\\" \\r\\n\\/>\"', 1, '2016-02-23 13:55:55', '2017-08-20 20:18:55', 2, '', 665, 'cbf51e66-84ae-45e6-8751-e62601eb66db', '', '', '', '', ''),
(1114, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Turnover Comment', 'NOT NULL', '', 25, '\"<field \\r\\n\\ttype=\\\"textarea\\\" \\r\\n\\tname=\\\"turnover_comment\\\" \\r\\n\\tlabel=\\\"Turnover Comment\\\" \\r\\n\\trows=\\\"8\\\" \\r\\n\\tcols=\\\"5\\\" \\r\\n\\tdescription=\\\"Here you can explain how many deaths your company has had over any given period. This will help us understand how you came to the numbers used above in the male and female medical turnovers.\\\" \\r\\n\\tclass=\\\"text_area span12\\\" \\r\\n\\tfilter=\\\"HTML\\\" \\r\\n\\thint=\\\"You can make a comment here to indicate how you arrived at the given numbers above for male and female medical turnovers.\\\" \\r\\n\\/>\"', 1, '2016-02-28 21:08:26', '2016-02-28 21:18:06', 2, '', 666, '93720b37-be52-4d6f-9b00-fbd2b1678f26', '', '', '', '', ''),
(1115, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'Region (required)', 'NOT NULL', '', 6, '\"<field \\r\\n\\ttype=\\\"regions\\\" \\r\\n\\tname=\\\"region\\\" \\r\\n\\tlabel=\\\"Region\\\" \\r\\n\\tdescription=\\\"Please select the region this ###view### belongs to.\\\" \\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\tmultiple=\\\"false\\\"\\r\\n\\textends=\\\"list\\\" \\r\\n\\tbutton=\\\"true\\\" \\r\\n\\trequired=\\\"true\\\"\\r\\n\\ttable=\\\"#__###component###_region\\\" \\r\\n\\tcomponent=\\\"com_###component###\\\" \\r\\n\\tview=\\\"region\\\" \\r\\n\\tviews=\\\"regions\\\" \\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###\',\'b.codetwo\'),array(\'###ID###\',\'###CODE_TEXT###\',\'country\')));\\\" \\r\\n\\ttype_php_4=\\\"$query->from($db->quoteName(\'###TABLE###\', \'a\'));\\\\n\\\\t\\\\t$query->join(\'LEFT\', \'#__###component###_country AS b ON b.id = a.country\');\\\" \\r\\n\\ttype_php_5=\\\"$query->where($db->quoteName(\'a.published\') . \' = 1\');\\\" \\r\\n\\ttype_php_6=\\\"$query->order(\'b.codetwo ASC\');\\\\n\\\\t\\\\t$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 region\');\\\" \\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###.\' (\'.$item->country.\')\');\\\" \\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-03-05 23:20:45', '2016-05-16 04:11:52', 7, '', 667, '007316ff-aa0e-4692-88df-3ad753f250a5', '', '', '', '', ''),
(1116, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'marker (hidden)', 'NOT NULL', '', 9, '\"<field \\r\\n\\ttype=\\\"hidden\\\" \\r\\n\\tname=\\\"marker\\\" \\r\\n\\/>\"', 1, '2016-03-05 23:56:22', '2016-04-02 10:51:45', 2, '', 668, 'eb215dd0-bae7-4eab-9ce1-f2daffef7650', '', '', '', '', ''),
(1117, 1, '', 1, '', 'I21hcA0Kew0Kd2lkdGg6IDEwMCU7DQpoZWlnaHQ6IDUwMHB4Ow0KfQ==', '', '', '', '', '', 'CHAR', '', 'ICAgIGZ1bmN0aW9uIGluaXRNYXAoKSB7DQogICAgICAgIHZhciBvcmlnaW5hbE1hcENlbnRlciA9IG5ldyBnb29nbGUubWFwcy5MYXRMbmcoPD9waHAgZWNobyAoc3RycG9zKCR0aGlzLT5pdGVtLT5tYXJrZXIsJyknKSkgPyBzdHJfcmVwbGFjZShhcnJheSggJygnLCAnKScgKSwgJycsICR0aGlzLT5pdGVtLT5tYXJrZXIpIDoiLTIyLjU1Mzc3NTEzMjgzNDk2NCwgMTcuMDcxMDY4MDkwMDg3OTIiOyA/Pik7DQogICAgICAgIHZhciBtYXAgPSBuZXcgZ29vZ2xlLm1hcHMuTWFwKGRvY3VtZW50LmdldEVsZW1lbnRCeUlkKCdtYXAnKSwgew0KICAgICAgICAgIHpvb206IDcsDQogICAgICAgICAgY2VudGVyOiBvcmlnaW5hbE1hcENlbnRlcg0KICAgICAgICB9KTsNCg0KCW1hcmtlciA9IG5ldyBnb29nbGUubWFwcy5NYXJrZXIoew0KCQkgICAgIHBvc2l0aW9uOiBvcmlnaW5hbE1hcENlbnRlciwNCgkJICAgICBkcmFnZ2FibGU6IHRydWUsDQoJCSAgICAgbWFwOiBtYXAsDQoJCSAgICAgdGl0bGU6Ijw/cGhwIGVjaG8gSlRleHQ6Ol8oJ0RyYWcgbWUgdG8gdGhlIEdyb3VwIExvY2F0aW9uIScpOyA/PiIgICAgICAgICAgICAgICAgICAgDQoJfSk7IC8vZW5kIG1hcmtlcg0KDQoJLy8gc2V0IHRoZSBtYXJrZXIgdG8gbWFwDQoJbWFya2VyLnNldE1hcChtYXApOw0KCS8vQWRkIGxpc3RlbmVyDQoJZ29vZ2xlLm1hcHMuZXZlbnQuYWRkTGlzdGVuZXIobWFya2VyLCAnZHJhZ2VuZCcsIGZ1bmN0aW9uIChldmVudCkgew0KICAgICAgICAgICAgICAgICAgICBqUXVlcnkoIiNqZm9ybV9tYXJrZXIiKS52YWwodGhpcy5wb3NpdGlvbik7DQoJfSk7DQoNCiAgICAgIH0NCiAgICAgIGpRdWVyeShmdW5jdGlvbigpIHsNCiAgICAgICAgICAgIGpRdWVyeSgnLm5hdi10YWJzIGxpJykuYmluZCgnY2xpY2snLCBmdW5jdGlvbiAoZSkgew0KICAgICAgICAgICAgICAgICAgaW5pdE1hcCgpOw0KICAgICAgICAgICAgfSk7DQogICAgICB9KTsNCjwvc2NyaXB0Pg0KPD9waHAgJGFwaV9rZXkgPSAkY29tcG9uZW50UGFyYW1zLT5nZXQoJ2FwaV9rZXknLCBudWxsKTsgaWYgKCRhcGlfa2V5KTogPz4NCjxzY3JpcHQgYXN5bmMgZGVmZXINCiAgICBzcmM9Imh0dHBzOi8vbWFwcy5nb29nbGVhcGlzLmNvbS9tYXBzL2FwaS9qcz9rZXk9PD9waHAgZWNobyAkYXBpX2tleTsgPz4iPg0KPD9waHAgZWxzZTogPz4NCjxzY3JpcHQgYXN5bmMgZGVmZXINCiAgICBzcmM9Imh0dHBzOi8vbWFwcy5nb29nbGVhcGlzLmNvbS9tYXBzL2FwaS9qcz9zZW5zb3I9ZmFsc2UiPg0KPD9waHAgZW5kaWY7ID8+DQo8L3NjcmlwdD4NCjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0Ij4NCjw/cGhwIGlmICghJGFwaV9rZXkpOiA/Pg0KPD9waHAgDQoJLy8gc2V0dXAgdGhlIHJldHVybiB1cmwNCgkkdXJpID0gKHN0cmluZykgSlVyaTo6Z2V0SW5zdGFuY2UoKTsNCgkkcmV0dXJuID0gdXJsZW5jb2RlKGJhc2U2NF9lbmNvZGUoJHVyaSkpOw0KCSRvcHRpb25zVVJMID0gJ2luZGV4LnBocD9vcHRpb249Y29tX2NvbmZpZyZ2aWV3PWNvbXBvbmVudCZjb21wb25lbnQ9Y29tX1tbW2NvbXBvbmVudF1dXSZyZXR1cm49Jy4kcmV0dXJuOw0KPz4NCglqUXVlcnkoZnVuY3Rpb24oKSB7DQogICAgICAgICAgICBqUXVlcnkoJyNtYXBfbm90ZScpLmh0bWwoIjxkaXYgY2xhc3M9J2FsZXJ0IGFsZXJ0LXN1Y2Nlc3MnPjw/cGhwIGVjaG8gSlRleHQ6Ol8oJ1BsZWFzZSBhZGQgeW91ciBBUEkga2V5IHRvIHRoZSBDb21wb25lbnQgR2xvYmFsJyk7ID8+IDxhIGNsYXNzPSdidG4gYnRuLXNtYWxsIG9wdGlvbnMtbGluaycgaHJlZj0nPD9waHAgZWNobyAkb3B0aW9uc1VSTDs/Pic+PHNwYW4gY2xhc3M9J2ljb24tb3B0aW9ucyc+PC9zcGFuPjw/cGhwIGVjaG8gSlRleHQ6Ol8oJ09wdGlvbnMnKTsgPz48L2E+IDw/cGhwIGVjaG8gSlRleHQ6Ol8oJ3VuZGVyIChHb29nbGUgQVBJKSB0YXAuJyk7ID8+PC9kaXY+Iik7DQogICAgICB9KTsNCjw/cGhwIGVuZGlmOyA/Pg==', '', 'Set Marker (Group Meet-up Marker)', 'NOT NULL', '', 14, '\"<field \\r\\n\\ttype=\\\"note\\\" \\r\\n\\tname=\\\"note_set_marker\\\" \\r\\n\\tlabel=\\\"Add Group Meet-up Marker to the Map\\\" \\r\\n\\tdescription=\\\"<div id=\'map\'><\\/div><br \\/><div id=\'map_note\'><\\/div>\\\" \\r\\n\\theading=\\\"h2\\\" \\r\\n\\/>\"', 1, '2016-03-05 23:58:28', '2016-04-02 10:54:26', 25, '', 669, 'd8d88eda-35e4-4016-bec3-fa1d6274d359', '', '', '', '', ''),
(1118, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'Country (id - required - button)', 'NOT NULL', '', 6, '\"<field\\n\\ttype=\\\"countries\\\"\\n\\tname=\\\"country\\\"\\n\\tlabel=\\\"Country\\\"\\n\\tdescription=\\\"Select the country.\\\"\\n\\tclass=\\\"list_class\\\"\\n\\tmultiple=\\\"false\\\"\\n\\trequired=\\\"true\\\"\\n\\textends=\\\"list\\\"\\n\\tbutton=\\\"true\\\"\\n\\ttable=\\\"#__###component###_country\\\"\\n\\tcomponent=\\\"com_###component###\\\"\\n\\tview=\\\"country\\\"\\n\\tviews=\\\"countries\\\"\\n\\tvalue_field=\\\"name\\\"\\n\\tkey_field=\\\"id\\\"\\n\\tprime_php=\\\"1\\\"\\n\\ttype_php_1=\\\"__.o0=base64=Oo.__Ly8gR2V0IHRoZSB1c2VyIG9iamVjdC4NCgkJJHVzZXIgPSBKRmFjdG9yeTo6Z2V0VXNlcigpOw0KCQkvLyBHZXQgdGhlIGRhdGFic2Ugb2JqZWN0Lg0KCQkkZGIgPSBKRmFjdG9yeTo6Z2V0REJPKCk7DQoJCSRxdWVyeSA9ICRkYi0+Z2V0UXVlcnkodHJ1ZSk7DQoJCSRxdWVyeS0+c2VsZWN0KCRkYi0+cXVvdGVOYW1lKGFycmF5KCdhLiMjI0lEIyMjJywnYS4jIyNURVhUIyMjJyksYXJyYXkoJyMjI0lEIyMjJywnIyMjQ09ERV9URVhUIyMjJykpKTsNCgkJJHF1ZXJ5LT5mcm9tKCRkYi0+cXVvdGVOYW1lKCcjIyNUQUJMRSMjIycsICdhJykpOw0KCQkkcXVlcnktPndoZXJlKCRkYi0+cXVvdGVOYW1lKCdhLnB1Ymxpc2hlZCcpIC4gJyA9IDEnKTsNCgkJJHF1ZXJ5LT5vcmRlcignYS4jIyNURVhUIyMjIEFTQycpOw0KCQkvLyBJbXBsZW1lbnQgVmlldyBMZXZlbCBBY2Nlc3MgKGlmIHNldCBpbiB0YWJsZSkNCgkJaWYgKCEkdXNlci0+YXV0aG9yaXNlKCdjb3JlLm9wdGlvbnMnLCAnW1tbY29tX2NvbXBvbmVudF1dXScpKQ0KCQl7DQoJCQkkY29sdW1ucyA9ICRkYi0+Z2V0VGFibGVDb2x1bW5zKCcjIyNUQUJMRSMjIycpOw0KCQkJaWYoaXNzZXQoJGNvbHVtbnNbJ2FjY2VzcyddKSkNCgkJCXsNCgkJCQkkZ3JvdXBzID0gaW1wbG9kZSgnLCcsICR1c2VyLT5nZXRBdXRob3Jpc2VkVmlld0xldmVscygpKTsNCgkJCQkkcXVlcnktPndoZXJlKCdhLmFjY2VzcyBJTiAoJyAuICRncm91cHMgLiAnKScpOw0KCQkJfQ0KCQl9DQoJCSRkYi0+c2V0UXVlcnkoKHN0cmluZykkcXVlcnkpOw0KCQkkaXRlbXMgPSAkZGItPmxvYWRPYmplY3RMaXN0KCk7DQoJCSRvcHRpb25zID0gYXJyYXkoKTsNCgkJaWYgKCRpdGVtcykNCgkJew0KCQkJaWYgKCR0aGlzLT5tdWx0aXBsZSA9PT0gZmFsc2UpDQoJCQl7DQoJCQkJJG9wdGlvbnNbXSA9IEpIdG1sOjpfKCdzZWxlY3Qub3B0aW9uJywgJycsIEpUZXh0OjpfKCdTZWxlY3QgYSBjb3VudHJ5JykpOw0KCQkJfQ0KCQkJZm9yZWFjaCgkaXRlbXMgYXMgJGl0ZW0pDQoJCQl7DQoJCQkJJG9wdGlvbnNbXSA9IEpIdG1sOjpfKCdzZWxlY3Qub3B0aW9uJywgJGl0ZW0tPiMjI0lEIyMjLCAkaXRlbS0+IyMjQ09ERV9URVhUIyMjKTsNCgkJCX0NCgkJfQ0KCQlyZXR1cm4gJG9wdGlvbnM7\\\"\\n\\/>\"', 1, '2016-03-06 00:04:55', '2021-08-01 15:43:05', 8, '', 242, 'c31eea82-d52d-4586-9d34-c73abfebf5f3', '', '', '', '', ''),
(1119, '', '', '', '', '', '', '', '', 64, '', 'VARCHAR', '', '', '', 'Phone (contact - notrequired)', 'NOT NULL', '', 23, '\"<field\\r\\ntype=\\\"text\\\"\\r\\nname=\\\"phone\\\"\\r\\nlabel=\\\"Phone Number\\\"\\r\\nsize=\\\"60\\\"\\r\\nmaxlength=\\\"150\\\"\\r\\ndefault=\\\"\\\"\\r\\ndescription=\\\"The phone number of the contact person.\\\"\\r\\nclass=\\\"text_area\\\"\\r\\nfilter=\\\"STRING\\\"\\r\\nvalidated=\\\"tel\\\"\\r\\nmessage=\\\"Error! Please add phone number here.\\\" \\r\\nhint=\\\"Phone Number Here!\\\" \\/>\"', 1, '2016-03-06 01:18:57', '2016-09-15 19:58:14', 5, '', 7, '08e42ef4-89e9-4e9c-b6b3-50340649a637', '', '', '', '', ''),
(1120, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'Number of Males', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"male\\\" \\r\\n\\tlabel=\\\"Males\\\" \\r\\n\\tsize=\\\"10\\\" \\r\\n\\tmaxlength=\\\"50\\\"\\r\\n\\tdescription=\\\"The number of male members in this support group.\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\tfilter=\\\"INT\\\" \\r\\n\\tmessage=\\\"Error! Please add number of males text here.\\\" \\r\\n\\thint=\\\"Only Numbers\\\"\\r\\n\\tonchange=\\\"if(!jQuery(this).val().match(\\/^\\\\d+$\\/)){jQuery(this).val(\'\')};\\\" \\r\\n\\/>\"', 1, '2016-03-06 01:22:30', '2016-03-06 02:22:30', 6, '', 7, '8b00f55b-5995-4c79-b9a3-6ef7c8372a55', '', '', '', '', ''),
(1121, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'Number of Females', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"female\\\" \\r\\n\\tlabel=\\\"Females\\\" \\r\\n\\tsize=\\\"10\\\" \\r\\n\\tmaxlength=\\\"50\\\"\\r\\n\\tdescription=\\\"The number of female members in this support group.\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\tfilter=\\\"INT\\\" \\r\\n\\tmessage=\\\"Error! Please add number of females text here.\\\" \\r\\n\\thint=\\\"Only Numbers\\\"\\r\\n\\tonchange=\\\"if(!jQuery(this).val().match(\\/^\\\\d+$\\/)){jQuery(this).val(\'\')};\\\" \\r\\n\\/>\"', 1, '2016-03-06 01:23:05', '2016-03-06 02:22:54', 5, '', 7, '241e6e5a-80d9-4f4f-be84-16265fa92eea', '', '', '', '', ''),
(1122, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'Number of Females (5-14)', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"female_children\\\" \\r\\n\\tlabel=\\\"Females (5-14)\\\" \\r\\n\\tsize=\\\"10\\\" \\r\\n\\tmaxlength=\\\"50\\\"\\r\\n\\tdescription=\\\"The number of female members between the age of 5 and 14 years in this support group.\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\tfilter=\\\"INT\\\" \\r\\n\\tmessage=\\\"Error! Please add number of females here.\\\" \\r\\n\\thint=\\\"Only Numbers\\\"\\r\\n\\tonchange=\\\"if(!jQuery(this).val().match(\\/^\\\\d+$\\/)){jQuery(this).val(\'\')};\\\" \\r\\n\\/>\"', 1, '2016-03-06 01:24:44', '2016-03-06 02:21:48', 4, '', 7, 'c295660b-1277-435a-8fe7-88a31cdaa5e0', '', '', '', '', ''),
(1123, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'Number of Males (5-14)', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"male_children\\\" \\r\\n\\tlabel=\\\"Males (5-14)\\\" \\r\\n\\tsize=\\\"10\\\" \\r\\n\\tmaxlength=\\\"50\\\"\\r\\n\\tdescription=\\\"The number of male members between the age of 5 and 14 years in this support group.\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\tfilter=\\\"INT\\\" \\r\\n\\tmessage=\\\"Error! Please add number of males here.\\\" \\r\\n\\thint=\\\"Only Numbers\\\"\\r\\n\\tonchange=\\\"if(!jQuery(this).val().match(\\/^\\\\d+$\\/)){jQuery(this).val(\'\')};\\\" \\r\\n\\/>\"', 1, '2016-03-06 01:25:04', '2016-03-06 02:24:09', 5, '', 7, '6eff878b-2b48-4a17-8099-f9798cb7af81', '', '', '', '', ''),
(1124, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'Areas (dynamic)', 'NOT NULL', '', 6, '\"<field \\r\\n\\ttype=\\\"areas\\\" \\r\\n\\tname=\\\"area\\\" \\r\\n\\tlabel=\\\"Area\\\" \\r\\n\\tdescription=\\\"Please select the area this ###view### belongs to.\\\" \\r\\n\\tclass=\\\"list_class\\\" \\r\\nrequired=\\\"true\\\"\\r\\n\\tmultiple=\\\"false\\\"\\r\\n\\textends=\\\"list\\\" \\r\\n\\tbutton=\\\"true\\\" \\r\\n\\ttable=\\\"#__###component###_area\\\" \\r\\n\\tcomponent=\\\"com_###component###\\\" \\r\\n\\tview=\\\"area\\\" \\r\\n\\tviews=\\\"areas\\\" \\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###\',\'b.name\',\'c.codetwo\'),array(\'###ID###\',\'###CODE_TEXT###\',\'region\',\'country\')));\\\" \\r\\n\\ttype_php_4=\\\"$query->from($db->quoteName(\'###TABLE###\', \'a\'));\\\\n\\\\t\\\\t$query->join(\'LEFT\', \'#__###component###_region AS b ON b.id = a.region\');\\\\n\\\\t\\\\t$query->join(\'LEFT\', \'#__###component###_country AS c ON c.id = b.country\');\\\" \\r\\n\\ttype_php_5=\\\"$query->where($db->quoteName(\'a.published\') . \' = 1\');\\\" \\r\\n\\ttype_php_6=\\\"$query->order(\'c.codetwo ASC\');\\\\n\\\\t\\\\t$query->order(\'b.name ASC\');\\\\n\\\\t\\\\t$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{\\\" \\r\\n\\ttype_php_15=\\\"\\\\t\\\\t$options[] = JHtml::_(\'select.option\', $item->###ID###, $item->###CODE_TEXT###.\' (\'.$item->region.\' - \'.$item->country.\')\');\\\" \\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-03-06 01:46:05', '2016-04-02 10:50:24', 6, '', 667, '9562b509-afd3-4c8e-be33-b369bbac4600', '', '', '', '', ''),
(1125, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'Facilities', 'NOT NULL', '', 6, '\"<field \\r\\n\\ttype=\\\"facilities\\\" \\r\\n\\tname=\\\"facility\\\" \\r\\n\\tlabel=\\\"Facility\\\" \\r\\n\\tdescription=\\\"Please select the nearest facilities.\\\" \\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\tmultiple=\\\"false\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\textends=\\\"list\\\" \\r\\n\\tbutton=\\\"true\\\" \\r\\n\\ttable=\\\"#__###component###_facility\\\" \\r\\n\\tcomponent=\\\"com_###component###\\\" \\r\\n\\tview=\\\"facility\\\" \\r\\n\\tviews=\\\"facilities\\\" \\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###\',\'b.name\'),array(\'###ID###\',\'###CODE_TEXT###\',\'type\')));\\\" \\r\\n\\ttype_php_4=\\\"$query->from($db->quoteName(\'###TABLE###\', \'a\'));\\r\\n\\t\\t$query->join(\'INNER\', $db->quoteName(\'#__###component###_facility_type\', \'b\') . \' ON (\' . $db->quoteName(\'a.facility_type\') . \' = \' . $db->quoteName(\'b.id\') . \')\');\\\" \\r\\n\\ttype_php_5=\\\"$query->where($db->quoteName(\'a.published\') . \' = 1\');\\r\\n\\t\\t$query->order(\'b.name ASC\');\\\" \\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 facility\');\\\" \\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###.\' - \'.$item->type);\\\" \\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-03-06 15:38:55', '2016-05-06 00:19:35', 8, '', 670, '6261bb9d-a6bf-4a5b-b935-9d8414a34860', '', '', '', '', ''),
(1126, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'Number of Females on ART', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"female_art\\\" \\r\\n\\tlabel=\\\"Females on ART\\\" \\r\\n\\tsize=\\\"10\\\" \\r\\n\\tmaxlength=\\\"50\\\"\\r\\n\\tdescription=\\\"The number of female members on ART in this support group.\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\tfilter=\\\"INT\\\" \\r\\n\\tmessage=\\\"Error! Please add number of females on ART here.\\\" \\r\\n\\thint=\\\"Only Numbers\\\"\\r\\n\\tonchange=\\\"if(!jQuery(this).val().match(\\/^\\\\d+$\\/)){jQuery(this).val(\'\')};\\\" \\r\\n\\/>\"', 1, '2016-03-06 15:40:02', '2016-03-06 02:22:54', 1, '', 7, '54bad4ef-9465-435c-bae4-0300c9bb87df', '', '', '', '', ''),
(1127, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'Number of Males on ART', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"male_art\\\" \\r\\n\\tlabel=\\\"Males on ART\\\" \\r\\n\\tsize=\\\"10\\\" \\r\\n\\tmaxlength=\\\"50\\\"\\r\\n\\tdescription=\\\"The number of male members on ART in this support group.\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\tfilter=\\\"INT\\\" \\r\\n\\tmessage=\\\"Error! Please add number of males on ART here.\\\" \\r\\n\\thint=\\\"Only Numbers\\\"\\r\\n\\tonchange=\\\"if(!jQuery(this).val().match(\\/^\\\\d+$\\/)){jQuery(this).val(\'\')};\\\" \\r\\n\\/>\"', 1, '2016-03-06 15:40:35', '2016-03-06 02:22:30', 1, '', 7, '53d93ae6-6598-4997-a192-a154d53352a3', '', '', '', '', ''),
(1128, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'Support Group', 'NOT NULL', '', 6, '\"<field \\r\\n\\ttype=\\\"supportgroups\\\" \\r\\n\\tname=\\\"support_group\\\" \\r\\n\\tlabel=\\\"Support Group\\\" \\r\\n\\tdescription=\\\"Please select the support group this payment is from.\\\" \\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\tmultiple=\\\"false\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\textends=\\\"list\\\" \\r\\n\\tbutton=\\\"true\\\" \\r\\n\\ttable=\\\"#__###component###_support_group\\\" \\r\\n\\tcomponent=\\\"com_###component###\\\" \\r\\n\\tview=\\\"support_group\\\" \\r\\n\\tviews=\\\"support_groups\\\" \\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 support group\');\\\" \\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-03-06 15:55:41', '2016-03-06 16:17:58', 2, '', 670, '229a34af-0269-46ac-bc50-eaab425aefb8', '', '', '', '', ''),
(1129, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'Year (list 2010-2030)', 'NOT NULL', '', 11, '\"<field \\r\\n\\ttype=\\\"list\\\" \\r\\n\\tname=\\\"year\\\" \\r\\n\\tlabel=\\\"Year\\\" \\r\\n\\tdescription=\\\"\\\" \\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\tmultiple=\\\"false\\\"\\r\\n\\tfilter=\\\"INT\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\toption=\\\"|Select a year,2010,2011,2012,2013,2014,2015,2016,2017,2018,2019,2020,2021,2022,2023,2024,2025,2026,2027,2028,2029,2030\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\/>\"', 1, '2016-03-06 15:58:38', '2016-03-06 16:08:10', 2, '', 570, '13ee1a00-1b95-4864-998a-0b7c5954def7', '', '', '', '', ''),
(1130, '', '', '', '', '', '', '', '', 100, '', 'VARCHAR', '', '', '', 'Amount', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"amount\\\" \\r\\n\\tlabel=\\\"Amount\\\" \\r\\n\\tsize=\\\"10\\\" \\r\\n\\tmaxlength=\\\"50\\\"\\r\\n\\tdescription=\\\"The amount paid.\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\tfilter=\\\"FLOAT\\\" \\r\\n\\tmessage=\\\"Error! Please add amount paid here.\\\" \\r\\n\\thint=\\\"Only Numbers & dot\\\"\\r\\n\\tonchange=\\\"if(!jQuery(this).val().match(\\/^\\\\d+\\\\.\\\\d+$\\/)){jQuery(this).val(\'\')};\\\" \\r\\n\\/>\"', 1, '2016-03-06 16:07:28', '2016-04-27 16:09:42', 2, '', 7, '75f89a8f-9376-4bc3-b3c2-8d38995e648d', '', '', '', '', ''),
(1131, '', '', '', '', '', '', '', '', 64, '', 'VARCHAR', '', '', '', 'The Map Marker Color', 'NOT NULL', '', 5, '\"<field \\r\\n\\ttype=\\\"color\\\" \\r\\n\\tname=\\\"color\\\" \\r\\n\\tdefault=\\\"#6DD095\\\" \\r\\n\\tlabel=\\\"Map Marker Colour\\\" \\r\\n\\tdescription=\\\"Select the colour that should be used on the map.\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\nescape=\\\"false\\\"\\r\\n\\/>\"', 1, '2016-03-09 18:47:22', '2016-04-07 06:45:10', 4, '', 671, 'c6037cab-7075-4ba0-9e28-7dd19cd09d22', '', '', '', '', ''),
(1132, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Additional info (CheckBoxes)', 'NOT NULL', 1, 6, '\"<field \\r\\n\\ttype=\\\"additionalinfo\\\" \\r\\n\\tname=\\\"info\\\" \\r\\n\\tlabel=\\\"Additional info\\\" \\r\\n\\tdescription=\\\"Select the additional info.\\\" \\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\trequired=\\\"false\\\" \\r\\n\\textends=\\\"checkboxes\\\" \\r\\n\\ttable=\\\"#__###component###_additional_info\\\" \\r\\n\\tcomponent=\\\"com_###component###\\\" \\r\\n\\tview=\\\"additional_info\\\" \\r\\n\\tviews=\\\"additional_information\\\" \\r\\n\\tvalue_field=\\\"name\\\" \\r\\n\\tkey_field=\\\"id\\\" \\r\\n\\ttype_php_1=\\\"$db = Factory::getDBO();\\\" \\r\\n\\ttype_php_2=\\\"$query = $db->getQuery(true);\\\" \\r\\n\\ttype_php_3=\\\"$query->select($db->quoteName(array(\'a.###ID###\',\'a.###TEXT###\',\'b.name\'),array(\'###ID###\',\'###CODE_TEXT###\',\'type\')));\\\" \\r\\n\\ttype_php_4=\\\"$query->from($db->quoteName(\'###TABLE###\', \'a\'));\\r\\n\\t\\t$query->join(\'INNER\', $db->quoteName(\'#__###component###_info_type\', \'b\') . \' ON (\' . $db->quoteName(\'a.info_type\') . \' = \' . $db->quoteName(\'b.id\') . \')\');\\\" \\r\\n\\ttype_php_5=\\\"$query->where($db->quoteName(\'a.published\') . \' = 1\');\\\" \\r\\n\\ttype_php_6=\\\"$query->order(\'b.name ASC\');\\\" \\r\\n\\ttype_php_7=\\\"$query->order(\'a.###TEXT### ASC\');\\\" \\r\\n\\ttype_php_8=\\\"$db->setQuery((string)$query);\\\" \\r\\n\\ttype_php_9=\\\"$items = $db->loadObjectList();\\\" \\r\\n\\ttype_php_10=\\\"$options = array();\\\" \\r\\n\\ttype_php_11=\\\"if ($items)\\\" \\r\\n\\ttype_php_12=\\\"{\\\" \\r\\n\\ttype_php_13=\\\"\\\\tforeach($items as $item)\\\" \\r\\n\\ttype_php_14=\\\"\\\\t{\\r\\n\\\\t\\\\t\\\\t\\\\t$tmp = array(\\r\\n\\\\t\\\\t\\\\t\\\\t\\\\t\'value\' => $item->###ID###,\\r\\n\\\\t\\\\t\\\\t\\\\t\\\\t\'text\' => \'&nbsp;&nbsp;<b>\'.$item->###CODE_TEXT###.\'<\\/b>&nbsp;<small>(\'.$item->type.\')<\\/small>\',\\r\\n\\\\t\\\\t\\\\t\\\\t\\\\t\'checked\' => false\\r\\n\\\\t\\\\t\\\\t\\\\t);\\\" \\r\\n\\ttype_php_15=\\\"\\\\t\\\\t$options[] = (object) $tmp;\\\" \\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-03-09 18:59:51', '2016-05-05 22:57:36', 14, '', 585, '4bfd5cb2-d1bc-4c0d-9c14-b90a333d5cfc', '', '', '', '', ''),
(1133, '', '', '', '', '', '', '', '', '', '', 'CHAR', '', '', '', 'Google Map API - Note', 'NOT NULL', '', 14, '\"<field \\r\\n\\ttype=\\\"note\\\" \\r\\n\\tname=\\\"note_google_api\\\" \\r\\n\\tlabel=\\\"Google Maps API Key\\\" \\r\\n\\tdescription=\\\"You will need to add your Google standard JavaScript API Key Here <small><em>(Browser key)<\\/em><\\/small>. To get a key <a href=\'https:\\/\\/developers.google.com\\/maps\\/documentation\\/javascript\\/get-api-key#key\' target=\'_blank\'>[CLICK HERE]<\\/a>\\\" \\r\\n\\theading=\\\"h2\\\" \\r\\n\\/>\"', 1, '2016-03-10 11:02:44', '0000-00-00 00:00:00', 1, '', 672, '1376e571-0b73-4402-a0af-fec2c6dea5f9', '', '', '', '', ''),
(1134, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Google Map API Key', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"api_key\\\" \\r\\n\\tlabel=\\\"Google API Key\\\" \\r\\n\\tsize=\\\"60\\\" \\r\\n\\tmaxlength=\\\"150\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tdescription=\\\"Add you Google API Key Here.\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\tfilter=\\\"STRING\\\" \\r\\n\\tmessage=\\\"Error! Please add API Key here.\\\" \\r\\n\\thint=\\\"YOUR_API_KEY\\\" \\r\\n\\/>\"', 1, '2016-03-10 11:19:09', '0000-00-00 00:00:00', 1, '', 673, '583a8370-9b48-4f9b-8ca3-402429977c6f', '', '', '', '', ''),
(1135, '', '', '', '', '', '', '', '', 64, '', 'VARCHAR', 2, '', '', 'boooom', 'NOT NULL', '', 11, '\"rererer\"', -2, '2016-03-10 14:18:15', '2016-04-02 13:23:06', 3, '', '', '75103bde-98f2-4f2e-9ca9-035f426c2c3a', '', '', '', '', ''),
(1136, 1, '', 1, '', 'I21hcA0Kew0Kd2lkdGg6IDEwMCU7DQpoZWlnaHQ6IDUwMHB4Ow0KfQ==', '', '', '', '', '', 'CHAR', '', 'ICAgIGZ1bmN0aW9uIGluaXRNYXAoKSB7DQogICAgICAgIHZhciBvcmlnaW5hbE1hcENlbnRlciA9IG5ldyBnb29nbGUubWFwcy5MYXRMbmcoPD9waHAgZWNobyAoc3RycG9zKCR0aGlzLT5pdGVtLT5tYXJrZXIsJyknKSkgPyBzdHJfcmVwbGFjZShhcnJheSggJygnLCAnKScgKSwgJycsICR0aGlzLT5pdGVtLT5tYXJrZXIpIDoiLTIyLjU1Mzc3NTEzMjgzNDk2NCwgMTcuMDcxMDY4MDkwMDg3OTIiOyA/Pik7DQogICAgICAgIHZhciBtYXAgPSBuZXcgZ29vZ2xlLm1hcHMuTWFwKGRvY3VtZW50LmdldEVsZW1lbnRCeUlkKCdtYXAnKSwgew0KICAgICAgICAgIHpvb206IDcsDQogICAgICAgICAgY2VudGVyOiBvcmlnaW5hbE1hcENlbnRlcg0KICAgICAgICB9KTsNCg0KCW1hcmtlciA9IG5ldyBnb29nbGUubWFwcy5NYXJrZXIoew0KCQkgICAgIHBvc2l0aW9uOiBvcmlnaW5hbE1hcENlbnRlciwNCgkJICAgICBkcmFnZ2FibGU6IHRydWUsDQoJCSAgICAgbWFwOiBtYXAsDQoJCSAgICAgdGl0bGU6Ijw/cGhwIGVjaG8gSlRleHQ6Ol8oJ0RyYWcgbWUgdG8gdGhlIENsaW5pYyBMb2NhdGlvbiEnKTsgPz4iICAgICAgICAgICAgICAgICAgIA0KCX0pOyAvL2VuZCBtYXJrZXINCg0KCS8vIHNldCB0aGUgbWFya2VyIHRvIG1hcA0KCW1hcmtlci5zZXRNYXAobWFwKTsNCgkvL0FkZCBsaXN0ZW5lcg0KCWdvb2dsZS5tYXBzLmV2ZW50LmFkZExpc3RlbmVyKG1hcmtlciwgJ2RyYWdlbmQnLCBmdW5jdGlvbiAoZXZlbnQpIHsNCiAgICAgICAgICAgICAgICAgICAgalF1ZXJ5KCIjamZvcm1fbWFya2VyIikudmFsKHRoaXMucG9zaXRpb24pOw0KCX0pOw0KDQogICAgICB9DQogICAgICBqUXVlcnkoZnVuY3Rpb24oKSB7DQogICAgICAgICAgICBqUXVlcnkoJy5uYXYtdGFicyBsaScpLmJpbmQoJ2NsaWNrJywgZnVuY3Rpb24gKGUpIHsNCiAgICAgICAgICAgICAgICAgIGluaXRNYXAoKTsNCiAgICAgICAgICAgIH0pOw0KICAgICAgfSk7DQo8L3NjcmlwdD4NCjw/cGhwICRhcGlfa2V5ID0gJGNvbXBvbmVudFBhcmFtcy0+Z2V0KCdhcGlfa2V5JywgbnVsbCk7IGlmICgkYXBpX2tleSk6ID8+DQo8c2NyaXB0IGFzeW5jIGRlZmVyDQogICAgc3JjPSJodHRwczovL21hcHMuZ29vZ2xlYXBpcy5jb20vbWFwcy9hcGkvanM/a2V5PTw/cGhwIGVjaG8gJGFwaV9rZXk7ID8+Ij4NCjw/cGhwIGVsc2U6ID8+DQo8c2NyaXB0IGFzeW5jIGRlZmVyDQogICAgc3JjPSJodHRwczovL21hcHMuZ29vZ2xlYXBpcy5jb20vbWFwcy9hcGkvanM/c2Vuc29yPWZhbHNlIj4NCjw/cGhwIGVuZGlmOyA/Pg0KPC9zY3JpcHQ+DQo8c2NyaXB0IHR5cGU9InRleHQvamF2YXNjcmlwdCI+DQo8P3BocCBpZiAoISRhcGlfa2V5KTogPz4NCjw/cGhwIA0KCS8vIHNldHVwIHRoZSByZXR1cm4gdXJsDQoJJHVyaSA9IChzdHJpbmcpIEpVcmk6OmdldEluc3RhbmNlKCk7DQoJJHJldHVybiA9IHVybGVuY29kZShiYXNlNjRfZW5jb2RlKCR1cmkpKTsNCgkkb3B0aW9uc1VSTCA9ICdpbmRleC5waHA/b3B0aW9uPWNvbV9jb25maWcmdmlldz1jb21wb25lbnQmY29tcG9uZW50PWNvbV9bW1tjb21wb25lbnRdXV0mcmV0dXJuPScuJHJldHVybjsNCj8+DQoJalF1ZXJ5KGZ1bmN0aW9uKCkgew0KICAgICAgICAgICAgalF1ZXJ5KCcjbWFwX25vdGUnKS5odG1sKCI8ZGl2IGNsYXNzPSdhbGVydCBhbGVydC1zdWNjZXNzJz48P3BocCBlY2hvIEpUZXh0OjpfKCdQbGVhc2UgYWRkIHlvdXIgQVBJIGtleSB0byB0aGUgQ29tcG9uZW50IEdsb2JhbCcpOyA/PiA8YSBjbGFzcz0nYnRuIGJ0bi1zbWFsbCBvcHRpb25zLWxpbmsnIGhyZWY9Jzw/cGhwIGVjaG8gJG9wdGlvbnNVUkw7Pz4nPjxzcGFuIGNsYXNzPSdpY29uLW9wdGlvbnMnPjwvc3Bhbj48P3BocCBlY2hvIEpUZXh0OjpfKCdPcHRpb25zJyk7ID8+PC9hPiA8P3BocCBlY2hvIEpUZXh0OjpfKCd1bmRlciAoR29vZ2xlIEFQSSkgdGFwLicpOyA/PjwvZGl2PiIpOw0KICAgICAgfSk7DQo8P3BocCBlbmRpZjsgPz4=', '', 'Set Marker (Facilities)', 'NOT NULL', '', 14, '\"<field \\r\\n\\ttype=\\\"note\\\" \\r\\n\\tname=\\\"note_set_marker\\\" \\r\\n\\tlabel=\\\"Add Facility Marker to the Map\\\" \\r\\n\\tdescription=\\\"<div id=\'map\'><\\/div><br \\/><div id=\'map_note\'><\\/div>\\\" \\r\\n\\theading=\\\"h2\\\" \\r\\n\\/>\"', 1, '2016-03-10 14:21:17', '2016-04-02 10:56:04', 6, '', 669, 'ba63fa52-1f7f-4e42-9eb2-e660068030e4', '', '', '', '', ''),
(1137, '', '', '', '', '', '', 1, '', 1, '', 'TINYINT', 2, '', '', 'Company Account type', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"mode\\\" \\r\\n\\tlabel=\\\"Account type\\\" \\r\\n\\tdescription=\\\"Please tell us if this company is a real company or only for testing purposes.\\\" \\r\\n\\tclass=\\\"btn-group btn-group-yesno\\\" \\r\\n\\toption=\\\"1|Company account,2|Training account\\\" \\r\\n\\tdefault=\\\"1\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\/>\"', 1, '2016-03-11 13:30:56', '2016-03-11 16:22:33', 3, '', 675, 'fd2175c6-cc62-450b-a845-98a647587ca7', '', '', '', '', ''),
(1138, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Details - editor (full width)', 'NOT NULL', '', 8, '\"<field \\r\\n\\ttype=\\\"editor\\\" \\r\\n\\tname=\\\"details\\\" \\r\\n\\tlabel=\\\"Details\\\" \\r\\n\\twidth=\\\"100%\\\" \\r\\n\\theight=\\\"500\\\" \\r\\n\\tcols=\\\"13\\\" \\r\\n\\trows=\\\"50\\\" \\r\\n\\tbuttons=\\\"false\\\" \\r\\n\\thide=\\\"\\\" \\r\\n\\teditor=\\\"\\\" \\r\\n\\tfilter=\\\"safehtml\\\" \\r\\n\\trequired=\\\"\\\" \\r\\n\\/>\"', 1, '2016-03-11 17:29:01', '2015-08-25 21:15:22', 1, '', 265, '405955e0-a466-4315-8971-2f044bef05c4', '', '', '', '', ''),
(1139, '', '', '', '', '', '', 1, '', 1, '', 'TINYINT', '', '', '', 'Set Browser Storage', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"set_browser_storage\\\" \\r\\n\\tlabel=\\\"Browser Storage\\\" \\r\\n\\tdescription=\\\"Select if browser storage should be used to save on Ajax calls and speed up this components site pages.\\\" \\r\\n\\tclass=\\\"btn-group btn-group-yesno\\\" \\r\\n\\toption=\\\"1|Active,0|Inactive\\\" \\r\\n\\tdefault=\\\"1\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\/>\"', 1, '2016-03-15 00:21:27', '0000-00-00 00:00:00', 1, '', 676, '1744bb88-ada1-42f1-8c73-e2c01f1c89bc', '', '', '', '', ''),
(1140, '', '', '', '', '', '', 1, '', 64, '', 'INT', '', '', '', 'Set Browser Update Cycle', 'NOT NULL', '', 11, '\"<field \\r\\n\\ttype=\\\"list\\\" \\r\\n\\tname=\\\"storage_time_to_live\\\" \\r\\n\\tlabel=\\\"Update Cycle\\\" \\r\\n\\tdescription=\\\"How long should the data that is stored in the browser memory remain unchanged before it is removed and updated.\\\" \\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\tmultiple=\\\"false\\\" \\r\\n\\toption=\\\"global|Every Session,30|Every 30 Seconds,60|Every Minute,300|Every 5 Minutes,900|Every 15 Minutes,1800|Every 30 Minutes,3600|Every Hour,18000|Every 5 Hours,36000|Every 10 Hours,86400|Every Day,604800|Every Week,0|Never update\\\" \\r\\n\\tdefault=\\\"global\\\" \\r\\n\\tshowon=\\\"set_browser_storage:1\\\" \\r\\n\\/>\"', 1, '2016-03-15 00:39:13', '2016-03-15 00:53:21', 3, '', 676, '75f75241-978a-4f8e-b3dd-4988c99c4b12', '', '', '', '', ''),
(1141, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Google Map Max Zoom', 'NOT NULL', '', 10, '\"<field \\r\\n\\ttype=\\\"integer\\\" \\r\\n\\tname=\\\"maxZoom\\\" \\r\\n\\tlabel=\\\"Starting Zoom Level\\\" \\r\\n\\tdefault=\\\"6\\\" \\r\\n\\tdescription=\\\"Set the default zoom level to start the map in when the page loads for the first time.\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\tfirst=\\\"1\\\" \\r\\n\\tlast=\\\"20\\\" \\r\\n\\tstep=\\\"1\\\" \\r\\n\\/>\"', 1, '2016-03-15 04:22:46', '2016-04-15 10:14:51', 2, '', 673, '56c984f6-1a05-49a8-8abb-bb9bc2c3f053', '', '', '', '', ''),
(1142, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Google Map Cluster Switch', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"cluster\\\" \\r\\n\\tlabel=\\\"Cluster Markers\\\" \\r\\n\\tdescription=\\\"Should we cluster the markers on the map.\\\" \\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-03-15 04:29:35', '2016-03-15 04:31:46', 2, '', 673, '2982fc43-1f9c-4f63-a473-9ab4eaf52a55', '', '', '', '', ''),
(1143, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Google Map Cluster AT', 'NOT NULL', '', 24, '\"<field \\r\\n\\tname=\\\"cluster_at\\\" \\r\\n\\tlabel=\\\"Clustering @\\\" \\r\\n\\tdefault=\\\"300\\\" \\r\\n\\tdescription=\\\"Set the total of markers that will trigger the cluster feature to activate.\\\" \\r\\n\\ttype=\\\"text\\\"\\r\\n\\tsize=\\\"10\\\" \\r\\n\\tmaxlength=\\\"50\\\"\\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\tfilter=\\\"INT\\\" \\r\\n\\tmessage=\\\"Error! Please add number of to activate clustering here.\\\" \\r\\n\\thint=\\\"Only Numbers\\\"\\r\\n\\tshowon=\\\"cluster:1\\\" \\r\\n\\tonchange=\\\"if(!jQuery(this).val().match(\\/^\\\\d+$\\/)){jQuery(this).val(\'\')};\\\" \\r\\n\\/>\"', 1, '2016-03-15 04:29:52', '2016-03-15 04:32:11', 2, '', 673, 'e2a546ab-d799-49d1-8bce-d234bd79f328', '', '', '', '', ''),
(1144, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Category (ITEM)', 'NOT NULL', 1, 2, '\"<field\\n\\ttype=\\\"category\\\"\\n\\tname=\\\"category\\\"\\n\\tlabel=\\\"Category\\\"\\n\\textension=\\\"com_componentbuilder.item\\\"\\n\\trequired=\\\"false\\\"\\n\\tdescription=\\\"select one of the following categories\\\"\\n\\tclass=\\\"inputbox\\\"\\n\\tmultiple=\\\"true\\\"\\n\\/>\"', 1, '2016-03-21 19:14:39', '2021-08-05 09:18:45', 6, '', 677, '5dc2b66a-22fc-4a6d-879c-41584f41c15e', '', '', '', '', ''),
(1145, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', 2, '', '', 'Price (default)', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"price\\\" \\r\\n\\tlabel=\\\"Price\\\" \\r\\n\\tsize=\\\"50\\\" \\r\\n\\tmaxlength=\\\"150\\\"\\r\\n\\tclass=\\\"text_area wprice\\\" \\r\\n\\tfilter=\\\"FLOAT\\\" \\r\\n\\thint=\\\"Only Numbers & dot\\\"\\r\\n\\tonchange=\\\"if(!jQuery(this).val().match(\\/^\\\\d+\\\\.\\\\d+$\\/)){jQuery(this).val(\'\')};\\\" \\r\\n\\/>\"', 1, '2016-03-21 20:29:37', '2016-07-19 17:42:41', 3, '', 7, '065958b3-f019-4572-9f0c-530daa0c409d', '', '', '', '', ''),
(1146, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'Packaging', 'NOT NULL', '', 6, '\"<field \\r\\n\\ttype=\\\"packagings\\\" \\r\\n\\tname=\\\"packaging\\\" \\r\\n\\tlabel=\\\"Packaging\\\" \\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###_packaging\\\" \\r\\n\\tcomponent=\\\"com_###component###\\\" \\r\\n\\tview=\\\"packaging\\\" \\r\\n\\tviews=\\\"packagings\\\" \\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 option\');\\\" \\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-03-21 20:37:32', '0000-00-00 00:00:00', 1, '', 626, '2df9fcfc-39d4-4f34-afa8-cc3c2403b8af', '', '', '', '', ''),
(1147, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Pricing (record)', 'NOT NULL', '', 19, '\"<field \\r\\n\\ttype=\\\"repeatable\\\" \\r\\n\\tname=\\\"pricing\\\" \\r\\n\\tlabel=\\\"Pricing\\\" \\r\\n\\tdescription=\\\"Set the pricing of this item per packaging.\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tid=\\\"pricing\\\" \\r\\n\\tclass=\\\"pricings\\\" \\r\\n\\tselect=\\\"Setup\\\" \\r\\n\\ticon=\\\"list\\\" \\r\\n\\tmaximum=\\\"20\\\" \\r\\n\\tfields=\\\"1146,1145\\\" \\r\\n\\/>\"', 1, '2016-03-21 20:43:27', '0000-00-00 00:00:00', 1, '', 678, '53bcb2ef-9698-4db4-8d4d-8ba99919713b', '', '', '', '', ''),
(1148, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Company (checkboxes)', 'NOT NULL', 1, 6, '\"<field \\r\\n\\ttype=\\\"companycheck\\\" \\r\\n\\tname=\\\"testcompanies\\\" \\r\\n\\tlabel=\\\"Set Testing Companies\\\" \\r\\n\\tdescription=\\\"Select companies that are not real companies or only used for testing purposes.\\\" \\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\tdisabled=\\\"\\\" \\r\\n\\textends=\\\"checkboxes\\\" \\r\\n\\tbutton=\\\"false\\\"\\r\\n\\ttable=\\\"#__###component###_company\\\" \\r\\n\\tcomponent=\\\"com_###component###\\\" \\r\\n\\tview=\\\"company\\\" \\r\\n\\tviews=\\\"companies\\\" \\r\\n\\tvalue_field=\\\"name\\\" \\r\\n\\tkey_field=\\\"id\\\" \\r\\n\\ttype_php_1=\\\"\\/\\/ Get the user object.\\\\n\\\\t\\\\t$user = JFactory::getUser();\\\\n\\\\t\\\\t\\/\\/ Create a new query object.\\\" \\r\\n\\ttype_php_2=\\\"$db = JFactory::getDBO();\\\\n\\\\t\\\\t$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=\\\"if (!$user->authorise(\'core.options\', \'com_###component###\'))\\\\n\\\\t\\\\t{\\\\n\\\\t\\\\t\\\\t$companies = ###Component###Helper::hisCompanies($user->id);\\\" \\r\\n\\ttype_php_7=\\\"\\\\tif (###Component###Helper::checkArray($companies))\\\\n\\\\t\\\\t\\\\t{\\\" \\r\\n\\ttype_php_8=\\\"\\\\t\\\\t$companies = implode(\',\',$companies);\\\\n\\\\t\\\\t\\\\t\\\\t\\/\\/ only load this users companies\\\" \\r\\n\\ttype_php_9=\\\"\\\\t\\\\t$query->where(\'a.id IN (\' . $companies . \')\');\\\" \\r\\n\\ttype_php_10=\\\"\\\\t}\\\\n\\\\t\\\\t\\\\telse\\\\n\\\\t\\\\t\\\\t{\\\" \\r\\n\\ttype_php_11=\\\"\\\\t\\\\t\\/\\/ dont allow user to see any companies\\\\n\\\\t\\\\t\\\\t\\\\t$query->where(\'a.id = -4\');\\\" \\r\\n\\ttype_php_12=\\\"\\\\t}\\\\n\\\\t\\\\t}\\\" \\r\\n\\ttype_php_13=\\\"$query->order(\'a.###TEXT### ASC\');\\\\n\\\\t\\\\t$db->setQuery((string)$query);\\\" \\r\\n\\ttype_php_14=\\\"$items = $db->loadObjectList();\\\" \\r\\n\\ttype_php_15=\\\"$options = array();\\\" \\r\\n\\ttype_php_16=\\\"if ($items)\\\\n\\\\t\\\\t{\\\" \\r\\n\\ttype_php_17=\\\"\\\\tforeach($items as $item)\\\" \\r\\n\\ttype_php_18=\\\"\\\\t{\\r\\n\\\\t\\\\t\\\\t\\\\t\\\\t$tmp = array(\\r\\n\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\'value\' => $item->###ID###,\\r\\n\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\'text\' => \'&nbsp;<strong>\'.$item->###CODE_TEXT###.\'<\\/strong>\',\\r\\n\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\'checked\' => false\\r\\n\\\\t\\\\t\\\\t\\\\t\\\\t);\\r\\n\\\\t\\\\t\\\\t\\\\t\\\\t$options[] = (object) $tmp;\\\"\\r\\n\\ttype_php_19=\\\"\\\\t}\\\\n\\\\t\\\\t}\\\\n\\\\t\\\\treturn $options;\\\" \\r\\n\\/>\"', 1, '2016-03-22 10:28:20', '2016-03-22 10:55:42', 4, '', 578, '9f0767d6-5101-49bb-804b-af5ffa805d29', '', '', '', '', ''),
(1149, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Image Folder Path (File Source)', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"imagesfolder\\\" \\r\\n\\tlabel=\\\"Custom Images Folder\\\" \\r\\n\\tsize=\\\"40\\\" \\r\\n\\tmaxlength=\\\"150\\\" \\r\\n\\tdescription=\\\"Enter the full path to the image folder where your images are found.\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\tfilter=\\\"PATH\\\"\\r\\n\\tmessage=\\\"Error! Please add path to image folder here.\\\" \\r\\n\\thint=\\\"\\/home\\/username\\/public_html\\/custom\\\" \\r\\n\\tshowon=\\\"setimagesfolder:2\\\"\\r\\n\\/>\"', 1, '2016-03-23 06:56:08', '2016-03-23 07:04:18', 3, '', 621, '6438174a-1330-4c39-a8b0-21b2ee9cf22e', '', '', '', '', ''),
(1150, '', '', '', '', '', '', '', '', '', '', 'TINYINT', '', '', '', 'set Image Folder Path', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\"\\r\\n\\tname=\\\"setimagesfolder\\\" \\r\\n\\tlabel=\\\"Images Location\\\" \\r\\n\\tdescription=\\\"Select the images location\\\" \\r\\n\\tclass=\\\"btn-group btn-group-yesno\\\" \\r\\n\\toption=\\\"1|Images,2|Custom\\\" \\r\\n\\tdefault=\\\"1\\\"\\r\\n\\/>\"', 1, '2016-03-23 07:02:26', '2016-03-23 07:04:55', 2, '', 621, '823a3fb3-7780-4faf-b460-2f7fcf0df7e4', '', '', '', '', ''),
(1151, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Images (custom)', 'NOT NULL', '', 6, '\"<field \\r\\n\\ttype=\\\"customimages\\\" \\r\\n\\tname=\\\"image\\\" \\r\\n\\tlabel=\\\"Image\\\" \\r\\n\\tdescription=\\\"\\\" \\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\tmultiple=\\\"false\\\" \\r\\n\\tdefault=\\\"0\\\" \\r\\n\\trequired=\\\"false\\\" \\r\\n\\treadonly=\\\"\\\" \\r\\n\\tdisabled=\\\"\\\" \\r\\n\\textends=\\\"list\\\" \\r\\n\\tbutton=\\\"false\\\" \\r\\n\\ttype_php_1=\\\"\\/\\/ get image list\\r\\n\\t\\t$setimagesfolder = JComponentHelper::getParams(\'com_###component###\')->get(\'setimagesfolder\', 1);\\r\\n\\t\\tif (2 == $setimagesfolder)\\r\\n\\t\\t{\\r\\n\\t\\t\\t$localfolder = JComponentHelper::getParams(\'com_###component###\')->get(\'imagesfolder\', JPATH_SITE.\'\\/images\\/vdm\');\\r\\n\\t\\t}\\r\\n\\t\\telseif (1 == $setimagesfolder)\\r\\n\\t\\t{\\r\\n\\t\\t\\t$localfolder = JPATH_SITE.\'\\/images\';\\r\\n\\t\\t}\\r\\n\\t\\telse \\/\\/ just in-case :)\\r\\n\\t\\t{\\r\\n\\t\\t\\t$localfolder = JPATH_SITE.\'\\/images\\/vdm\';\\r\\n\\t\\t}\\r\\n\\t\\t\\/\\/ set the default\\r\\n\\t\\t$options[] = JHtml::_(\'select.option\', \'\', JText::sprintf(\'Please add images to (%s)\',$localfolder));\\r\\n\\t\\t\\/\\/ import all needed classes\\r\\n\\t\\tjimport(\'joomla.filesystem.file\');\\r\\n\\t\\tjimport(\'joomla.filesystem.folder\');\\r\\n\\t\\t\\/\\/ setup the folder if it does not exist\\r\\n\\t\\tif (!JFolder::exists($localfolder))\\r\\n\\t\\t{\\r\\n\\t\\t\\tJFolder::create($localfolder);\\r\\n\\t\\t}\\r\\n\\t\\t\\/\\/ now check if there are files in the folder\\r\\n\\t\\tif ($files = JFolder::files($localfolder))\\r\\n\\t\\t{\\r\\n\\t\\t\\t$options = array();\\r\\n\\t\\t\\tforeach ($files as $file)\\r\\n\\t\\t\\t{\\r\\n\\t\\t\\t\\t$options[] = JHtml::_(\'select.option\', $file, $file);\\r\\n\\t\\t\\t}\\r\\n\\t\\t}\\r\\n\\t\\treturn $options;\\\" \\r\\n\\/>\"', 1, '2016-03-23 07:18:45', '2016-04-27 01:25:30', 4, '', 300, '6767335f-4be7-4aac-a925-69e948a39c45', '', '', '', '', ''),
(1152, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Images (record)', 'NOT NULL', '', 35, '\"<field\\n\\ttype=\\\"subform\\\"\\n\\tname=\\\"images\\\"\\n\\tlabel=\\\"Images\\\"\\n\\tlayout=\\\"joomla.form.field.subform.repeatable-table\\\"\\n\\tmultiple=\\\"true\\\"\\n\\tbuttons=\\\"add,remove,move\\\"\\n\\tfields=\\\"2941,1151\\\"\\n\\tdescription=\\\"Set the images.\\\"\\n\\ticon=\\\"list\\\"\\n\\tmax=\\\"10\\\"\\n\\/>\"', 1, '2016-03-23 07:31:38', '2021-08-05 09:37:26', 7, '', 678, 'fc8c22b5-aba9-4907-86c5-688bed9acc3b', '', '', '', '', ''),
(1153, '', '', '', '', '', '', '', '', 7, '', 'CHAR', 2, '', '', 'Currency', 'NOT NULL', '', 6, '\"<field \\r\\n\\ttype=\\\"currency\\\" \\r\\n\\tname=\\\"currency\\\" \\r\\n\\tlabel=\\\"Currency\\\" \\r\\n\\tdescription=\\\"Select the currency all prices are in.\\\" \\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\tmultiple=\\\"false\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\treadonly=\\\"\\\" \\r\\n\\tdisabled=\\\"\\\" \\r\\n\\textends=\\\"list\\\" \\r\\n\\ttable=\\\"#__###component###_currency\\\" \\r\\n\\tcomponent=\\\"com_###component###\\\" \\r\\n\\tview=\\\"currency\\\" \\r\\n\\tviews=\\\"currencies\\\" \\r\\n\\tvalue_field=\\\"name\\\" \\r\\n\\tkey_field=\\\"codethree\\\" \\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_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-03-23 09:39:05', '2016-06-14 16:25:34', 2, '', 559, 'd51edf4c-8f74-4231-83e0-512ad9e42b3c', '', '', '', '', ''),
(1154, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'Client (user)', 'NOT NULL', '', 7, '\"\\ttype=\\\"clientuser\\\" \\r\\n\\tname=\\\"clientuser\\\" \\r\\n\\tlabel=\\\"User\\\" \\r\\n\\tdescription=\\\"Link the client to an user who can login to the system or leave blank to great user when client is saved.\\\"\\r\\n\\thint=\\\"select an user\\\"\\r\\n\\tshowon=\\\"system_access:1\\\"\\r\\n\\textends=\\\"user\\\" \\r\\n\\ttable=\\\"#__users\\\" \\r\\n\\tcomponent=\\\"com_users\\\" \\r\\n\\tview=\\\"###view###\\\" \\r\\n\\tviews=\\\"###views###\\\" \\r\\n\\tvalue_field=\\\"name\\\" \\r\\n\\tkey_field=\\\"id\\\" \\r\\n\\ttype_php_1=\\\"\\/\\/ set the groups array\\\" \\r\\n\\ttype_php_2=\\\"$groups = JComponentHelper::getParams(\'com_###component###\')->get(\'###type###\');\\\" \\r\\n\\ttype_php_3=\\\"return $groups;\\\"\\r\\n\\ttype_phpx_1=\\\"\\/\\/ To ensure that there is only one record per user\\\" \\r\\n\\ttype_phpx_2=\\\"\\/\\/ Get a db connection.\\\" \\r\\n\\ttype_phpx_3=\\\"$db = JFactory::getDbo();\\\" \\r\\n\\ttype_phpx_4=\\\"\\/\\/ Create a new query object.\\\" \\r\\n\\ttype_phpx_5=\\\"$query = $db->getQuery(true);\\\" \\r\\n\\ttype_phpx_6=\\\"\\/\\/ Select all records from the #__###component###_###view### table from ###CODE### column\\\".\\\" \\r\\n\\ttype_phpx_7=\\\"$query->select($db->quoteName(\'###CODE###\'));\\\" \\r\\n\\ttype_phpx_8=\\\"$query->from($db->quoteName(\'#__###component###_###view###\'));\\\" \\r\\n\\ttype_phpx_9=\\\"$db->setQuery($query);\\\" \\r\\n\\ttype_phpx_10=\\\"$db->execute();\\\" \\r\\n\\ttype_phpx_11=\\\"$found = $db->getNumRows();\\\" \\r\\n\\ttype_phpx_12=\\\"if ($found)\\\" \\r\\n\\ttype_phpx_13=\\\"{\\\" \\r\\n\\ttype_phpx_14=\\\"\\\\t\\/\\/ return all users already used\\\" \\r\\n\\ttype_phpx_15=\\\"\\\\treturn array_unique($db->loadColumn());\\\" \\r\\n\\ttype_phpx_16=\\\"}\\\" \\r\\n\\ttype_phpx_17=\\\"return null;\\\" \\r\\n\\/>\"', 1, '2016-03-28 11:53:59', '2016-03-30 04:42:17', 4, '', 596, '6b42a4f9-49c5-498a-a472-8be0889d0d2b', '', '', '', '', ''),
(1155, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Client Access', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"system_access\\\" \\r\\n\\tlabel=\\\"System Access\\\" \\r\\n\\tdescription=\\\"Give the client access to the system.\\\" \\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-03-28 12:00:56', '0000-00-00 00:00:00', 1, '', 679, 'c804f4d4-84fe-4fb0-88cb-a3212f91992b', '', '', '', '', ''),
(1156, '', '', '', '', '', '', '', '', 64, '', 'VARCHAR', '', '', '', 'Fax (contact)', 'NOT NULL', '', 23, '\"<field\\r\\ntype=\\\"text\\\"\\r\\nname=\\\"fax\\\"\\r\\nlabel=\\\"Fax Number\\\"\\r\\nsize=\\\"60\\\"\\r\\nmaxlength=\\\"150\\\"\\r\\ndefault=\\\"\\\"\\r\\ndescription=\\\"The fax number of the contact person.\\\"\\r\\nclass=\\\"text_area\\\"\\r\\nfilter=\\\"STRING\\\"\\r\\nvalidated=\\\"tel\\\"\\r\\nmessage=\\\"Error! Please add fax number here.\\\" \\r\\nhint=\\\"Fax Number Here!\\\" \\/>\"', 1, '2016-03-28 12:06:20', '2016-09-15 19:57:26', 3, '', 7, '875e9842-e76b-463b-9c6c-7c0f83d5785f', '', '', '', '', ''),
(1157, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', 2, '', '', 'Client Name (name)', 'NOT NULL', '', 24, '\"<field\\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"name\\\" \\r\\n\\tlabel=\\\"Client Name\\\" \\r\\n\\tsize=\\\"40\\\" \\r\\n\\tmaxlength=\\\"150\\\" \\r\\n\\tdescription=\\\"Enter Client Name Here\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\tfilter=\\\"STRING\\\" \\r\\n\\tmessage=\\\"Error! Please add client name here.\\\" \\r\\n\\thint=\\\"Client Name Here\\\" \\r\\n\\/>\"', 1, '2016-03-28 13:17:55', '2016-03-30 04:22:10', 3, '', 4, '4f029d3f-5d5f-4c5f-90fe-b52420763265', '', '', '', '', ''),
(1158, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', 2, '', '', 'Contact Person', 'NOT NULL', '', 24, '\"<field\\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"contact_person\\\" \\r\\n\\tlabel=\\\"Contact Person\\\" \\r\\n\\tsize=\\\"40\\\" \\r\\n\\tmaxlength=\\\"150\\\" \\r\\n\\tdescription=\\\"Enter Contact Person Name Here\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\tfilter=\\\"STRING\\\" \\r\\n\\tmessage=\\\"Error! Please add contact person name here.\\\" \\r\\n\\thint=\\\"Contact Person Here\\\" \\r\\n\\/>\"', 1, '2016-03-28 13:18:55', '2016-09-15 19:55:59', 3, '', 4, '82e5654a-4335-46c3-9732-0c2304fb8eea', '', '', '', '', ''),
(1159, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'Country (required - id)', 'NOT NULL', '', 6, '\"<field\\n\\ttype=\\\"country\\\"\\n\\tname=\\\"country\\\"\\n\\tlabel=\\\"Country\\\"\\n\\tdescription=\\\"Select your country\\\"\\n\\tclass=\\\"list_class\\\"\\n\\tmultiple=\\\"false\\\"\\n\\tdefault=\\\"0\\\"\\n\\trequired=\\\"true\\\"\\n\\textends=\\\"list\\\"\\n\\tbutton=\\\"false\\\"\\n\\ttable=\\\"#__###component###_country\\\"\\n\\tcomponent=\\\"com_###component###\\\"\\n\\tview=\\\"country\\\"\\n\\tviews=\\\"countries\\\"\\n\\tvalue_field=\\\"name\\\"\\n\\tkey_field=\\\"id\\\"\\n\\tprime_php=\\\"1\\\"\\n\\ttype_php_1=\\\"__.o0=base64=Oo.__Ly8gR2V0IHRoZSB1c2VyIG9iamVjdC4NCgkJJHVzZXIgPSBKRmFjdG9yeTo6Z2V0VXNlcigpOw0KCQkvLyBHZXQgdGhlIGRhdGFic2Ugb2JqZWN0Lg0KCQkkZGIgPSBKRmFjdG9yeTo6Z2V0REJPKCk7DQoJCSRxdWVyeSA9ICRkYi0+Z2V0UXVlcnkodHJ1ZSk7DQoJCSRxdWVyeS0+c2VsZWN0KCRkYi0+cXVvdGVOYW1lKGFycmF5KCdhLiMjI0lEIyMjJywnYS4jIyNURVhUIyMjJyksYXJyYXkoJyMjI0lEIyMjJywnIyMjQ09ERV9URVhUIyMjJykpKTsNCgkJJHF1ZXJ5LT5mcm9tKCRkYi0+cXVvdGVOYW1lKCcjIyNUQUJMRSMjIycsICdhJykpOw0KCQkkcXVlcnktPndoZXJlKCRkYi0+cXVvdGVOYW1lKCdhLnB1Ymxpc2hlZCcpIC4gJyA9IDEnKTsNCgkJJHF1ZXJ5LT5vcmRlcignYS4jIyNURVhUIyMjIEFTQycpOw0KCQkvLyBJbXBsZW1lbnQgVmlldyBMZXZlbCBBY2Nlc3MgKGlmIHNldCBpbiB0YWJsZSkNCgkJaWYgKCEkdXNlci0+YXV0aG9yaXNlKCdjb3JlLm9wdGlvbnMnLCAnW1tbY29tX2NvbXBvbmVudF1dXScpKQ0KCQl7DQoJCQkkY29sdW1ucyA9ICRkYi0+Z2V0VGFibGVDb2x1bW5zKCcjIyNUQUJMRSMjIycpOw0KCQkJaWYoaXNzZXQoJGNvbHVtbnNbJ2FjY2VzcyddKSkNCgkJCXsNCgkJCQkkZ3JvdXBzID0gaW1wbG9kZSgnLCcsICR1c2VyLT5nZXRBdXRob3Jpc2VkVmlld0xldmVscygpKTsNCgkJCQkkcXVlcnktPndoZXJlKCdhLmFjY2VzcyBJTiAoJyAuICRncm91cHMgLiAnKScpOw0KCQkJfQ0KCQl9DQoJCSRkYi0+c2V0UXVlcnkoKHN0cmluZykkcXVlcnkpOw0KCQkkaXRlbXMgPSAkZGItPmxvYWRPYmplY3RMaXN0KCk7DQoJCSRvcHRpb25zID0gYXJyYXkoKTsNCgkJaWYgKCRpdGVtcykNCgkJew0KCQkJaWYgKCR0aGlzLT5tdWx0aXBsZSA9PT0gZmFsc2UpDQoJCQl7DQoJCQkJJG9wdGlvbnNbXSA9IEpIdG1sOjpfKCdzZWxlY3Qub3B0aW9uJywgJycsIEpUZXh0OjpfKCdTZWxlY3QgYSBjb3VudHJ5JykpOw0KCQkJfQ0KCQkJZm9yZWFjaCgkaXRlbXMgYXMgJGl0ZW0pDQoJCQl7DQoJCQkJJG9wdGlvbnNbXSA9IEpIdG1sOjpfKCdzZWxlY3Qub3B0aW9uJywgJGl0ZW0tPiMjI0lEIyMjLCAkaXRlbS0+IyMjQ09ERV9URVhUIyMjKTsNCgkJCX0NCgkJfQ0KCQlyZXR1cm4gJG9wdGlvbnM7\\\"\\n\\/>\"', 1, '2016-03-28 13:30:05', '2021-08-01 15:46:11', 8, '', 242, '006c4ba7-321c-4a39-8ba9-2af77ffc4dd8', '', '', '', '', ''),
(1160, '', '', '', '', '', '', '', '', 64, '', 'VARCHAR', '', '', '', 'Mobile Phone (not-required)', '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\\nmessage=\\\"Error! Please add mobile phone number here.\\\" \\r\\nhint=\\\"Mobile Phone Here\\\" \\/>\"', 1, '2016-03-28 14:01:08', '2016-03-28 14:00:02', 1, '', 7, 'f40974bd-a946-4bc4-9be1-fedec2d09c24', '', '', '', '', ''),
(1161, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'Client (job order)', 'NOT NULL', '', 6, '\"<field \\r\\n\\ttype=\\\"client\\\" \\r\\n\\tname=\\\"client\\\" \\r\\n\\tlabel=\\\"Client\\\" \\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\tmultiple=\\\"false\\\" \\r\\n\\tdefault=\\\"0\\\" \\r\\n\\textends=\\\"list\\\" \\r\\n\\tbutton=\\\"true\\\" \\/\\/ yes we can create user from a job order but we may want to edit them\\r\\n\\ttable=\\\"#__###component###_client\\\" \\r\\n\\tcomponent=\\\"com_###component###\\\" \\r\\n\\tview=\\\"client\\\" \\r\\n\\tviews=\\\"clients\\\" \\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 client\');\\\" \\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-03-28 15:22:41', '2016-08-31 11:23:27', 4, '', 626, 'de2a058b-a664-4599-a1db-8694bf139109', '', '', '', '', ''),
(1162, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Supplier (multiple)', 'NOT NULL', 1, 6, '\"<field \\r\\n\\ttype=\\\"suppliers\\\" \\r\\n\\tname=\\\"supplier\\\" \\r\\n\\tlabel=\\\"Suppliers\\\" \\r\\n\\tdescription=\\\"Select the supplier\\/s of this item\\\" \\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\tmultiple=\\\"true\\\" \\r\\n\\tdefault=\\\"0\\\"\\r\\n\\textends=\\\"list\\\" \\r\\n\\tbutton=\\\"true\\\" \\r\\n\\ttable=\\\"#__###component###_supplier\\\" \\r\\n\\tcomponent=\\\"com_###component###\\\" \\r\\n\\tview=\\\"supplier\\\" \\r\\n\\tviews=\\\"suppliers\\\" \\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_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-03-28 16:26:12', '0000-00-00 00:00:00', 1, '', 680, '533aa86f-f8d6-4be4-a53f-84178e15ad36', '', '', '', '', ''),
(1163, '', '', '', '', '', '', '', '', 11, '', 'CHAR', '', '', '', 'Colour', 'NOT NULL', '', 5, '\"<field type=\\\"color\\\" name=\\\"colour\\\" label=\\\"Colour\\\"\\/>\"', 1, '2016-03-28 16:31:29', '2015-08-25 21:15:22', 1, '', 163, '2754734a-0ce2-4462-b27c-8d221febc727', '', '', '', '', ''),
(1164, '', '', '', '', '', '', 'Other', '0000-00-00 00:00:00', '', '', 'DATETIME', '', '', '', 'Order Date', 'NOT NULL', '', 1, '\"<field \\r\\n\\ttype=\\\"calendar\\\" \\r\\n\\tname=\\\"order_date\\\" \\r\\n\\tlabel=\\\"Order Date\\\" \\r\\n\\trequired=\\\"false\\\"\\r\\n\\tsize=\\\"22\\\" \\r\\n\\tformat=\\\"%Y-%m-%d\\\"\\\" \\r\\n\\tfilter=\\\"user_utc\\\" \\r\\n\\/>\"', 1, '2016-03-28 16:33:29', '2016-03-31 16:54:42', 2, '', 167, '9a7535a3-4101-42a8-989f-4e620f950662', '', '', '', '', ''),
(1165, '', '', '', '', '', '', 'Other', '0000-00-00 00:00:00', '', '', 'DATETIME', '', '', '', 'Delivery Date', 'NOT NULL', '', 1, '\"<field \\r\\n\\ttype=\\\"calendar\\\" \\r\\n\\tname=\\\"delivery_date\\\" \\r\\n\\tlabel=\\\"Delivery Date\\\" \\r\\n\\tsize=\\\"22\\\" \\r\\n\\tformat=\\\"%Y-%m-%d\\\"\\\" \\r\\n\\tfilter=\\\"user_utc\\\" \\r\\n\\/>\"', 1, '2016-03-28 16:34:12', '2016-03-31 16:55:06', 2, '', 167, 'a4e9da2b-9e67-4936-a4ac-01f020489af5', '', '', '', '', ''),
(1166, '', '', '', '', '', '', '', '', 11, '', 'INT', '', '', '', 'Item (record)', 'NOT NULL', '', 6, '\"<field \\r\\n\\ttype=\\\"items\\\" \\r\\n\\tname=\\\"item\\\" \\r\\n\\tlabel=\\\"Item\\\" \\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\tmultiple=\\\"false\\\" \\r\\n\\tdefault=\\\"0\\\" \\r\\n\\textends=\\\"list\\\" \\r\\n\\tbutton=\\\"false\\\" \\r\\n\\ttable=\\\"#__###component###_item\\\" \\r\\n\\tcomponent=\\\"com_###component###\\\" \\r\\n\\tview=\\\"item\\\" \\r\\n\\tviews=\\\"items\\\" \\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 item\');\\\" \\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-03-28 16:38:42', '0000-00-00 00:00:00', 1, '', 681, '7c84eb81-6d16-43f0-b390-643e0a43021a', '', '', '', '', ''),
(1167, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Products (logo)', 'NOT NULL', '', 19, '\"<field \\r\\n\\ttype=\\\"repeatable\\\" \\r\\n\\tname=\\\"product\\\" \\r\\n\\tlabel=\\\"Products\\\" \\r\\n\\tdescription=\\\"Add the list of products to this Job Order.\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tid=\\\"product\\\" \\r\\n\\tclass=\\\"products\\\" \\r\\n\\tselect=\\\"Add\\/Remove\\\" \\r\\n\\ticon=\\\"list\\\" \\r\\n\\tmaximum=\\\"100\\\" \\r\\n\\tfields=\\\"1353,1351,1189,1350\\\" \\r\\n\\/>\"', 1, '2016-03-28 16:44:03', '2017-01-22 20:39:56', 12, '', 678, '2945c09c-5e4e-4d4b-9013-212081643d98', '', '', '', '', ''),
(1168, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Production (logo)', 'NOT NULL', '', 19, '\"<field \\r\\n\\ttype=\\\"repeatable\\\" \\r\\n\\tname=\\\"production\\\" \\r\\n\\tlabel=\\\"Production\\\" \\r\\n\\tdescription=\\\"Add the list of production tasks.\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tid=\\\"production\\\" \\r\\n\\tclass=\\\"productions\\\" \\r\\n\\tselect=\\\"Add\\/Remove\\\" \\r\\n\\ticon=\\\"list\\\" \\r\\n\\tmaximum=\\\"100\\\" \\r\\n\\tfields=\\\"1190,1354,1188,1191,1291,1189,1145,1350,1355\\\" \\r\\n\\/>\"', 1, '2016-03-28 16:45:18', '2017-01-22 20:40:18', 18, '', 678, '5b43d568-671b-472c-bfc5-49270c1afb6d', '', '', '', '', ''),
(1169, '', '', '', '', '', '', '', '', 64, '', 'VARCHAR', '', '', '', 'Phone (contact - not required)', 'NOT NULL', '', 23, '\"<field\\r\\ntype=\\\"text\\\"\\r\\nname=\\\"phone\\\"\\r\\nlabel=\\\"Phone Number\\\"\\r\\nsize=\\\"60\\\"\\r\\nmaxlength=\\\"150\\\"\\r\\ndefault=\\\"\\\"\\r\\ndescription=\\\"The phone number of the contact person.\\\"\\r\\nclass=\\\"text_area\\\"\\r\\nfilter=\\\"STRING\\\"\\r\\nvalidated=\\\"tel\\\"\\r\\nrequired=\\\"false\\\"\\r\\nmessage=\\\"Error! Please add phone number here.\\\" \\r\\nhint=\\\"Phone Number Here!\\\" \\/>\"', 1, '2016-03-28 17:08:25', '2016-03-28 17:08:07', 1, '', 7, '54bb9dff-90c4-4c61-9d47-c77c82382bc3', '', '', '', '', ''),
(1170, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'Small', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"sml\\\" \\r\\n\\tlabel=\\\"S\\\" \\r\\n\\tsize=\\\"10\\\" \\r\\n\\tmaxlength=\\\"50\\\"\\r\\n\\tclass=\\\"wsml\\\" \\r\\n\\tfilter=\\\"INT\\\" \\r\\n\\thint=\\\"qty\\\"\\r\\n\\tonchange=\\\"if(!jQuery(this).val().match(\\/^\\\\d+$\\/)){jQuery(this).val(\'\')}else{setTotal(this)};\\\" \\r\\n\\/>\"', 1, '2016-03-29 09:46:39', '2016-03-29 11:43:05', 6, '', 7, '17715f1b-b707-4f3d-8512-5e1984c7d7c6', '', '', '', '', ''),
(1171, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'Medium', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"med\\\" \\r\\n\\tlabel=\\\"M\\\" \\r\\n\\tsize=\\\"10\\\" \\r\\n\\tmaxlength=\\\"50\\\"\\r\\n\\tclass=\\\"wsml\\\" \\r\\n\\tfilter=\\\"INT\\\" \\r\\n\\thint=\\\"qty\\\"\\r\\n\\tonchange=\\\"if(!jQuery(this).val().match(\\/^\\\\d+$\\/)){jQuery(this).val(\'\')}else{setTotal(this)};\\\" \\r\\n\\/>\"', 1, '2016-03-29 09:47:35', '2016-03-29 11:43:19', 5, '', 7, '6f6f5435-f11c-4974-9bc0-7dd3d8d13fde', '', '', '', '', ''),
(1172, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'Large', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"lrg\\\" \\r\\n\\tlabel=\\\"L\\\" \\r\\n\\tsize=\\\"10\\\" \\r\\n\\tmaxlength=\\\"50\\\"\\r\\n\\tclass=\\\"wsml\\\" \\r\\n\\tfilter=\\\"INT\\\" \\r\\n\\thint=\\\"qty\\\"\\r\\n\\tonchange=\\\"if(!jQuery(this).val().match(\\/^\\\\d+$\\/)){jQuery(this).val(\'\')}else{setTotal(this)};\\\" \\r\\n\\/>\"', 1, '2016-03-29 09:47:53', '2016-03-29 11:45:03', 6, '', 7, 'f6fecca9-6103-4270-9db4-0965e1be3f82', '', '', '', '', ''),
(1173, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'XLarge', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"xlrg\\\" \\r\\n\\tlabel=\\\"XL\\\" \\r\\n\\tsize=\\\"10\\\" \\r\\n\\tmaxlength=\\\"50\\\"\\r\\n\\tclass=\\\"wsml\\\" \\r\\n\\tfilter=\\\"INT\\\" \\r\\n\\thint=\\\"qty\\\"\\r\\n\\tonchange=\\\"if(!jQuery(this).val().match(\\/^\\\\d+$\\/)){jQuery(this).val(\'\')}else{setTotal(this)};\\\" \\r\\n\\/>\"', 1, '2016-03-29 09:48:18', '2016-03-29 11:44:57', 5, '', 7, 'aed00b1a-feb6-4dca-abb4-e5dfb0fd6d29', '', '', '', '', ''),
(1174, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'XXLarge', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"xxlrg\\\" \\r\\n\\tlabel=\\\"XXL\\\" \\r\\n\\tsize=\\\"10\\\" \\r\\n\\tmaxlength=\\\"50\\\"\\r\\n\\tclass=\\\"wsml\\\" \\r\\n\\tfilter=\\\"INT\\\" \\r\\n\\thint=\\\"qty\\\"\\r\\n\\tonchange=\\\"if(!jQuery(this).val().match(\\/^\\\\d+$\\/)){jQuery(this).val(\'\')}else{setTotal(this)};\\\" \\r\\n\\/>\"', 1, '2016-03-29 09:48:33', '2016-03-29 11:45:31', 5, '', 7, 'f85ef715-d3f0-4517-8f58-5b077db5534a', '', '', '', '', ''),
(1175, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', '3XLarge', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"xxxlrg\\\" \\r\\n\\tlabel=\\\"3XL\\\" \\r\\n\\tsize=\\\"10\\\" \\r\\n\\tmaxlength=\\\"50\\\"\\r\\n\\tclass=\\\"wsml\\\" \\r\\n\\tfilter=\\\"INT\\\" \\r\\n\\thint=\\\"qty\\\"\\r\\n\\tonchange=\\\"if(!jQuery(this).val().match(\\/^\\\\d+$\\/)){jQuery(this).val(\'\')}else{setTotal(this)};\\\" \\r\\n\\/>\"', 1, '2016-03-29 09:49:00', '2016-03-29 11:45:58', 5, '', 7, 'dcb89dfd-bca2-4af4-9697-39427d7767d6', '', '', '', '', ''),
(1176, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'Total', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"total\\\" \\r\\n\\tlabel=\\\"Total\\\" \\r\\n\\tsize=\\\"10\\\" \\r\\n\\tmaxlength=\\\"50\\\"\\r\\n\\tclass=\\\"wmed\\\" \\r\\n\\tfilter=\\\"INT\\\" \\r\\n\\thint=\\\"total qty\\\"\\r\\n\\tonchange=\\\"if(!jQuery(this).val().match(\\/^\\\\d+$\\/)){jQuery(this).val(\'\')};\\\" \\r\\n\\/>\"', 1, '2016-03-29 09:49:44', '2016-03-29 15:33:31', 4, '', 7, '33238781-3d64-4786-99ab-29656871ce11', '', '', '', '', ''),
(1177, '', '', '', '', '', '', '', '', 64, '', 'VARCHAR', 2, '', '', 'JOB ORDER NR', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"jobnumber\\\" \\r\\n\\tlabel=\\\"JOB NR\\\" \\r\\n\\tsize=\\\"6\\\" \\r\\nhint=\\\"Save Job to See\\\"\\r\\n\\tmaxlength=\\\"6\\\" \\r\\n\\tclass=\\\"jobnumber\\\" \\r\\n\\treadonly=\\\"true\\\" \\r\\n\\tdisabled=\\\"false\\\" \\r\\n\\tfilter=\\\"ALNUM\\\" \\r\\n\\/>\"', 1, '2016-03-29 15:41:51', '2016-05-09 11:27:23', 5, '', 682, 'a865ee80-5149-43f3-8bba-ea494cd5a4b2', '', '', '', '', ''),
(1178, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Job Status (logo - readonly)', 'NOT NULL', 1, 6, '\"<field \\r\\n\\ttype=\\\"jobstatus\\\" \\r\\n\\tname=\\\"job_status\\\" \\r\\n\\tlabel=\\\"Job Status\\\" \\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\treadonly=\\\"true\\\"\\r\\n\\tmultiple=\\\"true\\\" \\r\\n\\tdefault=\\\"0\\\" \\r\\n\\textends=\\\"list\\\" \\r\\n\\tbutton=\\\"false\\\"\\r\\n\\ttable=\\\"#__###component###_job_status\\\" \\r\\n\\tcomponent=\\\"com_###component###\\\" \\r\\n\\tview=\\\"job_status\\\" \\r\\n\\tviews=\\\"job_statuses\\\" \\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.ordering 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_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\\tescape=\\\"false\\\"\\r\\n\\/>\"', 1, '2016-03-30 04:33:20', '2016-09-19 19:44:12', 5, '', 681, 'ae46e4a5-ef6d-4482-b10d-15b7ad525b91', '', '', '', '', ''),
(1179, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Groups (multi - not-required)', 'NOT NULL', '', 29, '\"<field\\n\\ttype=\\\"usergroup\\\"\\n\\tname=\\\"groups\\\"\\n\\tlabel=\\\" Access Groups\\\"\\n\\tdescription=\\\"Select the group\\/s that can update this status\\\"\\n\\tmultiple=\\\"true\\\"\\n\\/>\"', 1, '2016-03-30 05:08:13', '2021-08-05 19:53:56', 5, '', 50, 'ceadf49f-ee21-4fec-9c33-ba9379b5d457', '', '', '', '', ''),
(1180, '', '', '', '', '', '', '', '', '', '', 'CHAR', '', '', '', 'Status Switch', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"switch\\\" \\r\\n\\tlabel=\\\"Status Switch\\\" \\r\\n\\tsize=\\\"10\\\" \\r\\n\\tmaxlength=\\\"50\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tdescription=\\\"\\\" \\r\\n\\tclass=\\\"text_area\\\"\\r\\n\\tfilter=\\\"STRING\\\" \\r\\n\\thint=\\\"switch\\\" \\r\\n\\tonchange=\\\"\\\" \\r\\n\\/>\"', 1, '2016-03-30 05:12:43', '0000-00-00 00:00:00', 1, '', 683, '19783cdb-6b99-4370-ab08-17a298f1ad3f', '', '', '', '', ''),
(1181, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Status Switches', 'NOT NULL', '', 19, '\"<field \\r\\n\\ttype=\\\"repeatable\\\" \\r\\n\\tname=\\\"switch\\\" \\r\\n\\tlabel=\\\"Status Switches\\\" \\r\\n\\tdescription=\\\"Set the switches related to this status.\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tid=\\\"switch\\\" \\r\\n\\tclass=\\\"switches\\\" \\r\\n\\tselect=\\\"Set\\\" \\r\\n\\ticon=\\\"equalizer\\\" \\r\\n\\tmaximum=\\\"10\\\" \\r\\n\\tfields=\\\"1180,1179\\\" \\r\\n\\tfilter=\\\"STRING\\\"\\r\\n\\/>\"', 1, '2016-03-30 08:28:28', '0000-00-00 00:00:00', 1, '', 684, 'f152b8ed-8558-441c-ae80-2bfb2304a848', '', '', '', '', ''),
(1182, '', '', '', '', '', '', '', '', 11, '', 'TEXT', '', '', '', 'Activate', 'NOT NULL', 1, 6, '\"<field \\r\\n\\ttype=\\\"activatestatus\\\" \\r\\n\\tname=\\\"activate\\\" \\r\\n\\tlabel=\\\"Activate\\\"\\r\\n\\tclass=\\\"list_class\\\"\\r\\n\\tmultiple=\\\"false\\\" \\r\\n\\tdefault=\\\"0\\\" \\r\\n\\textends=\\\"list\\\" \\r\\n\\tbutton=\\\"false\\\" \\r\\n\\ttable=\\\"#__###component###_job_status\\\" \\r\\n\\tcomponent=\\\"com_###component###\\\" \\r\\n\\tview=\\\"job_status\\\" \\r\\n\\tviews=\\\"job_statuses\\\" \\r\\n\\tvalue_field=\\\"name\\\" \\r\\n\\tkey_field=\\\"id\\\" \\r\\n\\ttype_php_1=\\\"\\/\\/ get the input from url\\r\\n\\t\\t$jinput = Factory::getApplication()->input;\\r\\n\\t\\t\\/\\/ get this job status ID\\r\\n\\t\\t$jobStatusId = $jinput->getInt(\'id\', 0);\\r\\n\\t\\t$db = Factory::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.switch\'),array(\'###ID###\',\'###CODE_TEXT###\',\'switch\')));\\\" \\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.ordering 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\\t\\t\\/\\/ add the job fields\\r\\n\\t\\t$options[] = Html::_(\'select.option\', \'job_order__order__selected\', Text::_(\'Job - Order Apparel Selected\'));\\r\\n\\t\\t$options[] = Html::_(\'select.option\', \'job_order__embroidery__selected\', Text::_(\'Job - Embroidery Selected\'));\\r\\n\\t\\t$options[] = Html::_(\'select.option\', \'job_order__order_date__past_date\', Text::_(\'Job - Order Date Passed\'));\\r\\n\\t\\t$options[] = Html::_(\'select.option\', \'job_order__delivery_date__past_date\', Text::_(\'Job - Delivery Date Passed\'));\\\" \\r\\n\\ttype_php_10=\\\"if ($items)\\\" \\r\\n\\ttype_php_11=\\\"{\\\" \\r\\n\\ttype_php_13=\\\"\\\\tforeach($items as $item)\\\" \\r\\n\\ttype_php_14=\\\"\\\\t{\\r\\n\\t\\t\\t\\tif (JsonHelper::check($item->switch) && $item->id != $jobStatusId)\\r\\n\\t\\t\\t\\t{\\r\\n\\t\\t\\t\\t\\t$switches = json_decode($item->switch, true);\\r\\n\\t\\t\\t\\t\\tif (ArrayHelper::check($switches))\\r\\n\\t\\t\\t\\t\\t{\\r\\n\\t\\t\\t\\t\\t\\tforeach ($switches as $field => $values)\\r\\n\\t\\t\\t\\t\\t\\t{\\r\\n\\t\\t\\t\\t\\t\\t\\tif (\'switch\' == $field && ArrayHelper::check($values))\\r\\n\\t\\t\\t\\t\\t\\t\\t{\\r\\n\\t\\t\\t\\t\\t\\t\\t\\tforeach ($values as $value)\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t{\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t$statusName = ###Component###Helper::safeString($item->###CODE_TEXT###);\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t$switchName = ###Component###Helper::safeString($value);\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t$options[] = Html::_(\'select.option\', $statusName.\'__\'.$switchName.\'__selected\', $item->###CODE_TEXT###.\' - \'.$value .\' \'.Text::_(\'Selected\'));\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t}\\r\\n\\t\\t\\t\\t\\t\\t\\t}\\r\\n\\t\\t\\t\\t\\t\\t}\\r\\n\\t\\t\\t\\t\\t}\\r\\n\\t\\t\\t\\t}\\\" \\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-03-30 09:02:44', '2016-03-31 09:45:11', 7, '', 681, 'b4c7c234-f56a-40f8-b649-362c110905f7', '', '', '', '', ''),
(1183, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Check List', 'NOT NULL', 1, 6, '\"<\\r\\n\\ttype=\\\"checklist\\\" \\r\\n\\tname=\\\"check_list\\\" \\r\\n\\tlabel=\\\"Check List\\\" \\r\\n\\tdescription=\\\"Select what has been done.\\\" \\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\tdisabled=\\\"\\\" \\r\\n\\textends=\\\"checkboxes\\\" \\r\\n\\tbutton=\\\"false\\\" \\r\\n\\ttable=\\\"#__###component###_job_status\\\" \\r\\n\\tcomponent=\\\"com_###component###\\\" \\r\\n\\tview=\\\"job_status\\\" \\r\\n\\tviews=\\\"job_statuses\\\" \\r\\n\\tvalue_field=\\\"name\\\" \\r\\n\\tkey_field=\\\"id\\\" \\r\\n\\ttype_php_1=\\\"\\/\\/ Get the check list fields.\\r\\n\\t\\treturn ###Component###Helper::getCheckList();\\\" \\r\\n\\/>\"', 1, '2016-03-30 11:38:05', '2016-05-09 06:08:37', 4, '', 681, '22fcc37b-0c43-4b53-8f3f-f119b85104a4', '', '', '', '', ''),
(1184, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'Target Area', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"target\\\" \\r\\n\\tlabel=\\\"Target Area\\\" \\r\\n\\tdescription=\\\"Select the target area of this colour.\\\"\\r\\n\\toption=\\\"1|Ordering,2|Embroidery\\\" \\r\\n\\tdefault=\\\"1\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\/>\"', 1, '2016-03-31 04:44:12', '2015-08-25 21:15:22', 1, '', 83, '186667a7-f633-46d2-8f28-2fcdf59fa36e', '', '', '', '', ''),
(1185, '', '', '', '', '', '', '', '', 11, '', 'TEXT', '', '', '', 'Order Colour', 'NOT NULL', 1, 6, '\"<field \\r\\n\\ttype=\\\"ordercolour\\\" \\r\\n\\tname=\\\"colour\\\" \\r\\n\\tlabel=\\\"Colour\\\" \\r\\n\\tclass=\\\"wsmed\\\"\\r\\n\\tdefault=\\\"0\\\" \\r\\n\\textends=\\\"list\\\" \\r\\n\\tbutton=\\\"false\\\" \\r\\n\\ttable=\\\"#__###component###_colour\\\" \\r\\n\\tcomponent=\\\"com_###component###\\\" \\r\\n\\tview=\\\"colour\\\" \\r\\n\\tviews=\\\"colours\\\" \\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\\t\\t$query->where($db->quoteName(\'a.target\') . \' = 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 colour\');\\\" \\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-03-31 05:15:03', '2016-03-31 12:36:27', 11, '', 681, '4b38592d-e70d-4b98-b7d7-b619a8773f6e', '', '', '', '', ''),
(1186, '', '', '', '', '', '', '', '', 11, '', 'TEXT', '', '', '', 'Embroidery Colour', 'NOT NULL', 1, 6, '\"<field \\r\\n\\ttype=\\\"embroiderycolour\\\" \\r\\n\\tname=\\\"colour\\\" \\r\\n\\tlabel=\\\"Colour\\\" \\r\\n\\tclass=\\\"wsmed\\\"\\r\\n\\tmultiple=\\\"false\\\" \\r\\n\\tdefault=\\\"0\\\" \\r\\n\\textends=\\\"list\\\" \\r\\n\\tbutton=\\\"false\\\" \\r\\n\\ttable=\\\"#__###component###_colour\\\" \\r\\n\\tcomponent=\\\"com_###component###\\\" \\r\\n\\tview=\\\"colour\\\" \\r\\n\\tviews=\\\"colours\\\" \\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\\t\\t\\t$query->where($db->quoteName(\'a.target\') . \' = 2\');\\\" \\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 colour\');\\\" \\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-03-31 05:16:04', '2016-03-31 12:36:45', 10, '', 681, 'e809c55c-eff3-4842-9466-7b8f22edfa55', '', '', '', '', ''),
(1187, '', '', '', '', '', '', '', '', '', '', 'MEDIUMTEXT', '', '', '', 'Active Status', 'NOT NULL', 2, 25, '\"<field \\r\\n\\ttype=\\\"textarea\\\" \\r\\n\\tname=\\\"activate\\\" \\r\\n\\tlabel=\\\"Activating Script\\\" \\r\\n\\trows=\\\"10\\\" \\r\\n\\tcols=\\\"5\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tdescription=\\\"Set the activating action script to activate this status. [Do not add the php tags]\\\" \\r\\n\\tclass=\\\"text_area span12\\\" \\r\\n\\tfilter=\\\"raw\\\" \\r\\n\\thint=\\\"\\/\\/ PHP script that is used to activate this state, and move the JOB to the needed Groups\\\" \\r\\n\\trequired=\\\"true\\\"\\r\\n\\/>\"', 1, '2016-03-31 09:44:25', '2016-05-09 04:17:31', 4, '', 684, '428017df-ca96-41f9-bab1-1dd6f093c4d7', '', '', '', '', ''),
(1188, '', '', '', '', '', '', '', '', 64, '', 'CHAR', '', '', '', 'Position', 'NOT NULL', '', 11, '\"<field \\r\\n\\ttype=\\\"list\\\" \\r\\n\\tname=\\\"position\\\" \\r\\n\\tlabel=\\\"Position\\\" \\r\\n\\tdescription=\\\"on apparel\\\" \\r\\n\\tclass=\\\"wsmed\\\" \\r\\n\\tmultiple=\\\"false\\\" \\r\\n\\tfilter=\\\"WORD\\\" \\r\\n\\toption=\\\"|Select an option,left_chest|Left Chest,right_chest|Right Chest,left_sleeve|Left Sleeve,right_sleeve|Right Sleeve,upper_back|Upper Back,middle_back|Middle Back,lower_back|Lower Back,left_collar|Left Collar,right_collar|Right Collar,cap_front|Cap Front,cap_left|Cap Left,cap_right|Cap Right,cap_back|Cap Back,other|Other\\\" \\r\\n\\tdefault=\\\"0\\\"\\r\\n\\/>\"', 1, '2016-03-31 10:01:05', '2016-08-30 10:07:59', 6, '', 685, '8bc76bde-7b4c-473f-8886-d9e8eb333840', '', '', '', '', ''),
(1189, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'QTY', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"qty\\\" \\r\\n\\tlabel=\\\"QTY\\\" \\r\\n\\tsize=\\\"10\\\" \\r\\n\\tmaxlength=\\\"50\\\"\\r\\n\\tclass=\\\"wmed wqty\\\" \\r\\n\\tfilter=\\\"INT\\\" \\r\\n\\thint=\\\"qty\\\"\\r\\n\\tonchange=\\\"if(!jQuery(this).val().match(\\/^\\\\d+$\\/)){jQuery(this).val(\'\')};\\\" \\r\\n\\/>\"', 1, '2016-03-31 10:02:41', '2016-04-26 23:27:09', 2, '', 7, '8d98698e-ab39-4468-8780-202ed67129df', '', '', '', '', ''),
(1190, '', '', '', '', '', '', '', '', 64, '', 'VARCHAR', '', '', '', 'Design', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"design\\\" \\r\\n\\tlabel=\\\"Design\\\" \\r\\n\\tsize=\\\"10\\\" \\r\\n\\tmaxlength=\\\"50\\\" \\r\\n\\tdescription=\\\"Name\\\" \\r\\n\\tclass=\\\"text_area\\\"\\r\\n\\tfilter=\\\"STRING\\\" \\r\\n\\tmessage=\\\"Error! Please add design name here.\\\" \\r\\n\\thint=\\\"Design Name\\\" \\r\\n\\/>\"', 1, '2016-03-31 11:32:29', '0000-00-00 00:00:00', 1, '', 686, '07192cde-20c9-4ae0-ba0f-a5c1a6776c7a', '', '', '', '', ''),
(1191, '', '', '', '', '', '', '', '', '', '', 'CHAR', '', '', '', 'Note (small)', 'NOT NULL', '', 25, '\"<field \\r\\n\\ttype=\\\"textarea\\\" \\r\\n\\tname=\\\"note\\\" \\r\\n\\tlabel=\\\"Note\\\" \\r\\n\\trows=\\\"3\\\" \\r\\n\\tcols=\\\"5\\\"\\r\\n\\tdescription=\\\"\\\" \\r\\n\\tclass=\\\"text_area noteSize\\\" \\r\\n\\tfilter=\\\"STRING\\\" \\r\\n\\thint=\\\"some note\\\"\\r\\n\\/>\"', 1, '2016-03-31 11:37:06', '2016-03-31 13:28:20', 2, '', 687, '93bcca6b-20c8-4535-a0ab-6730c47f668b', '', '', '', '', ''),
(1192, '', '', '', '', '', '', '', '', '', '', 'CHAR', '', '', '', 'New or Existing Client', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"new_existing\\\" \\r\\n\\tlabel=\\\"For\\\" \\r\\n\\tdescription=\\\"Select if you want to use an existing client or create a new client.\\\" \\r\\n\\tclass=\\\"btn-group btn-group-yesno\\\" \\r\\n\\toption=\\\"1|A New Client,2|An Existing Client\\\" \\r\\n\\tdefault=\\\"2\\\" \\r\\n\\/>\"', 1, '2016-03-31 16:23:57', '2016-03-31 17:22:06', 5, '', 688, '2a0b1bba-6279-4fb7-bf53-2910b12500dc', '', '', '', '', ''),
(1193, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'Facilities Type', 'NOT NULL', '', 6, '\"<field \\r\\n\\ttype=\\\"facilitiestype\\\" \\r\\n\\tname=\\\"facility_type\\\" \\r\\n\\tlabel=\\\"Type\\\" \\r\\n\\tdescription=\\\"Please select the facility type.\\\" \\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\tmultiple=\\\"false\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\textends=\\\"list\\\" \\r\\n\\tbutton=\\\"true\\\" \\r\\n\\ttable=\\\"#__###component###_facility_type\\\" \\r\\n\\tcomponent=\\\"com_###component###\\\" \\r\\n\\tview=\\\"facility_type\\\" \\r\\n\\tviews=\\\"facility_types\\\" \\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 type\');\\\" \\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-04-01 15:30:51', '2016-05-05 23:49:30', 4, '', 670, 'f4f364a8-acbc-41e7-85f5-cdf8ef5916c5', '', '', '', '', ''),
(1194, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'Area Type', 'NOT NULL', '', 6, '\"<field \\r\\n\\ttype=\\\"areastype\\\" \\r\\n\\tname=\\\"area_type\\\" \\r\\n\\tlabel=\\\"Type\\\" \\r\\n\\tdescription=\\\"Please select the area type.\\\" \\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\tmultiple=\\\"false\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\textends=\\\"list\\\" \\r\\n\\tbutton=\\\"true\\\" \\r\\n\\ttable=\\\"#__###component###_area_type\\\" \\r\\n\\tcomponent=\\\"com_###component###\\\" \\r\\n\\tview=\\\"area_type\\\" \\r\\n\\tviews=\\\"area_types\\\" \\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 type\');\\\" \\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-04-02 12:42:22', '2016-05-06 00:06:17', 2, '', 670, 'b8a8114c-7099-4eea-b78b-14613852826c', '', '', '', '', ''),
(1195, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'Info Type', 'NOT NULL', '', 6, '\"<field \\r\\n\\ttype=\\\"infotype\\\" \\r\\n\\tname=\\\"info_type\\\" \\r\\n\\tlabel=\\\"Type\\\" \\r\\n\\tdescription=\\\"Please select the info type.\\\" \\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\tmultiple=\\\"false\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\textends=\\\"list\\\" \\r\\n\\tbutton=\\\"true\\\" \\r\\n\\ttable=\\\"#__###component###_info_type\\\" \\r\\n\\tcomponent=\\\"com_###component###\\\" \\r\\n\\tview=\\\"info_type\\\" \\r\\n\\tviews=\\\"info_types\\\" \\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 type\');\\\" \\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-04-02 13:01:51', '2016-05-05 22:28:35', 3, '', 670, '112613ff-4183-48cb-af38-fa051b06032a', '', '', '', '', ''),
(1196, '', '', '', '', '', '', '', '', 11, '', 'INT', '', '', '', 'Concept (Roline)', 'NOT NULL', '', 6, '\"<field \\r\\n\\ttype=\\\"concept\\\" \\r\\n\\tname=\\\"concept\\\" \\r\\n\\tlabel=\\\"Concept\\\"\\r\\n\\tfilter=\\\"INT\\\"\\r\\n\\tclass=\\\"list_class selection-width\\\" \\r\\n\\trequired=\\\"true\\\"\\r\\n\\textends=\\\"list\\\" \\r\\n\\tbutton=\\\"true\\\"\\r\\n\\ttable=\\\"#__###component###_concept\\\" \\r\\n\\tcomponent=\\\"com_###component###\\\" \\r\\n\\tview=\\\"concept\\\" \\r\\n\\tviews=\\\"concepts\\\" \\r\\n\\tvalue_field=\\\"name\\\" \\r\\n\\tkey_field=\\\"id\\\" \\r\\n\\ttype_php_1=\\\"$db = JFactory::getDBO();\\\\n\\\\t\\\\t$user = JFactory::getUser();\\\\n\\\\t\\\\t$is = ###Component###Helper::userIs($user);\\\" \\r\\n\\ttype_php_2=\\\"$query = $db->getQuery(true);\\\" \\r\\n\\ttype_php_3=\\\"$query->select($db->quoteName(array(\'a.###ID###\',\'a.###TEXT###\',\'a.created_by\'),array(\'###ID###\',\'###CODE_TEXT###\',\'created_by\')));\\\" \\r\\n\\ttype_php_4=\\\"$query->from($db->quoteName(\'#__###component###_concept\', \'a\'));\\\\n\\\\t\\\\tif ($is !== 3)\\\\n\\\\t\\\\t{\\\\n\\\\t\\\\t\\\\t$query->where($db->quoteName(\'a.created_by\') . \' = \' . (int) $user->id);\\\\n\\\\t\\\\t}\\\" \\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$options[] = JHtml::_(\'select.option\', \'\', \'Select a concept\');\\\" \\r\\n\\ttype_php_12=\\\"\\\\tforeach($items as $item)\\\" \\r\\n\\ttype_php_13=\\\"\\\\t{\\\\n\\\\t\\\\t\\\\t\\\\t$belong = ($is == 3) ? \' (\' . JFactory::getUser($item->created_by)->name . \')\' : \'\';\\\" \\r\\n\\ttype_php_14=\\\"\\\\t\\\\t$options[] = JHtml::_(\'select.option\', $item->###ID###, $item->###CODE_TEXT### . $belong);\\\" \\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, '2016-04-12 08:55:08', '2017-01-30 20:44:50', 7, '', 149, 'f8f2c549-1475-4455-bd4d-06533aa25c59', '', '', '', '', ''),
(1197, '', '', '', '', '', '', '', '', '', '', 'CHAR', '', '', '', 'Content (Roline)', 'NOT NULL', '', 6, '\"<field \\r\\n\\ttype=\\\"contents\\\" \\r\\n\\tname=\\\"content\\\" \\r\\n\\tlabel=\\\"Content\\\" \\r\\n\\tclass=\\\"list_class selection-width\\\" \\r\\n\\tmultiple=\\\"true\\\" \\r\\n\\textends=\\\"list\\\" \\r\\n\\ttable=\\\"#__###component###_content\\\" \\r\\n\\tcomponent=\\\"com_###component###\\\" \\r\\n\\tview=\\\"content\\\" \\r\\n\\tviews=\\\"contents\\\" \\r\\n\\tvalue_field=\\\"name\\\" \\r\\n\\tkey_field=\\\"id\\\" \\r\\n\\ttype_php_1=\\\"$db = JFactory::getDBO();\\\\n\\\\t\\\\t$user = JFactory::getUser();\\\\n\\\\t\\\\t$is = ###Component###Helper::userIs($user);\\\" \\r\\n\\ttype_php_2=\\\"$query = $db->getQuery(true);\\\" \\r\\n\\ttype_php_3=\\\"$query->select($db->quoteName(array(\'a.###ID###\',\'a.###TEXT###\', \'a.created_by\'),array(\'###ID###\',\'###CODE_TEXT###\', \'created_by\')));\\\" \\r\\n\\ttype_php_4=\\\"$query->from($db->quoteName(\'###TABLE###\', \'a\'));\\\" \\r\\n\\ttype_php_5=\\\"$query->where($db->quoteName(\'a.published\') . \' >= 1\');\\\\n\\\\t\\\\tif ($is !== 3)\\\\n\\\\t\\\\t{\\\\n\\\\t\\\\t\\\\t$query->where($db->quoteName(\'a.created_by\') . \' = \' . (int) $user->id);\\\\n\\\\t\\\\t}\\\" \\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_13=\\\"\\\\tforeach($items as $item)\\\" \\r\\n\\ttype_php_14=\\\"\\\\t{\\\\n\\\\t\\\\t\\\\t\\\\t$belong = ($is == 3) ? \' (\' . JFactory::getUser($item->created_by)->name . \')\' : \'\';\\\" \\r\\n\\ttype_php_15=\\\"\\\\t\\\\t$options[] = JHtml::_(\'select.option\', $item->###ID###, $item->###CODE_TEXT### . $belong);\\\" \\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-04-12 09:00:13', '2017-01-30 20:44:10', 4, '', 689, '715be695-4104-40d4-88c8-d8704588d194', '', '', '', '', ''),
(1198, '', '', '', '', '', '', '', '', 11, '', 'INT', '', '', '', 'Venue (Roline)', 'NOT NULL', '', 6, '\"<field \\r\\n\\ttype=\\\"venue\\\" \\r\\n\\tname=\\\"venue\\\" \\r\\n\\tlabel=\\\"Venue\\\" \\r\\n\\tdescription=\\\"Please select the venue.\\\" \\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\tmultiple=\\\"false\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\textends=\\\"list\\\" \\r\\n\\tbutton=\\\"true\\\" \\r\\n\\ttable=\\\"#__###component###_venue\\\" \\r\\n\\tcomponent=\\\"com_###component###\\\" \\r\\n\\tview=\\\"venue\\\" \\r\\n\\tviews=\\\"venues\\\" \\r\\n\\tvalue_field=\\\"name\\\" \\r\\n\\tkey_field=\\\"id\\\" \\r\\n\\ttype_php_1=\\\"$db = JFactory::getDBO(); \\\\n\\\\t\\\\t$user = JFactory::getUser();\\\\n\\\\t\\\\t$is = ###Component###Helper::userIs($user);\\\" \\r\\n\\ttype_php_2=\\\"$query = $db->getQuery(true);\\\" \\r\\n\\ttype_php_3=\\\"$query->select($db->quoteName(array(\'a.###ID###\',\'a.###TEXT###\', \'a.created_by\'),array(\'###ID###\',\'###CODE_TEXT###\', \'created_by\')));\\\" \\r\\n\\ttype_php_4=\\\"$query->from($db->quoteName(\'###TABLE###\', \'a\'));\\\" \\r\\n\\ttype_php_5=\\\"$query->where($db->quoteName(\'a.published\') . \' >= 1\');\\\\n\\\\t\\\\tif ($is !== 3)\\\\n\\\\t\\\\t{\\\\n\\\\t\\\\t\\\\t$query->where($db->quoteName(\'a.created_by\') . \' = \' . (int) $user->id);\\\\n\\\\t\\\\t}\\\" \\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 venue\');\\\" \\r\\n\\ttype_php_13=\\\"\\\\tforeach($items as $item)\\\" \\r\\n\\ttype_php_14=\\\"\\\\t{\\\\n\\\\t\\\\t\\\\t\\\\t$belong = ($is == 3) ? \' (\' . JFactory::getUser($item->created_by)->name . \')\' : \'\';\\\" \\r\\n\\ttype_php_15=\\\"\\\\t\\\\t$options[] = JHtml::_(\'select.option\', $item->###ID###, $item->###CODE_TEXT### . $belong);\\\" \\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-04-12 09:02:05', '2017-01-30 20:45:14', 4, '', 690, '58940640-2b72-4ba3-bac1-7a2fc1ce5d3c', '', '', '', '', ''),
(1199, '', '', 1, '', '', '', '', '', '', '', 'TEXT', '', 'PD9waHANCi8vIG1ha2Ugc3VyZSB0aGVzZSBmcmFtd29ya3MgYWxzbyBsb2FkLg0KSkh0bWw6Ol8oJ2pxdWVyeS5mcmFtZXdvcmsnKTsNCkpIdG1sOjpfKCdqcXVlcnkudWknKTsNCiRkb2MgPSBKRmFjdG9yeTo6Z2V0RG9jdW1lbnQoKTsNCi8vIGxvYWRlZCBmcm9tIHRoZSBjb2RlLmpxdWVyeS5jb20gc2l0ZQ0KJGRvYy0+YWRkU3R5bGVzaGVldCgnaHR0cDovL2NvZGUuanF1ZXJ5LmNvbS91aS8xLjEwLjMvdGhlbWVzL3Ntb290aG5lc3MvanF1ZXJ5LXVpLmNzcycpOw0KJGRvYy0+YWRkU3R5bGVzaGVldCgnaHR0cHM6Ly9jZG5qcy5jbG91ZGZsYXJlLmNvbS9hamF4L2xpYnMvanF1ZXJ5LXVpLXRpbWVwaWNrZXItYWRkb24vMS42LjEvanF1ZXJ5LXVpLXRpbWVwaWNrZXItYWRkb24ubWluLmNzcycpOw0KJGRvYy0+YWRkU2NyaXB0KCdodHRwOi8vY29kZS5qcXVlcnkuY29tL3VpLzEuMTAuMy9qcXVlcnktdWkubWluLmpzJyk7DQokZG9jLT5hZGRTY3JpcHQoJ2h0dHBzOi8vY2RuanMuY2xvdWRmbGFyZS5jb20vYWpheC9saWJzL2pxdWVyeS11aS10aW1lcGlja2VyLWFkZG9uLzEuNi4xL2pxdWVyeS11aS10aW1lcGlja2VyLWFkZG9uLm1pbi5qcycpOw0KPz4NCjw/cGhwICRmaWVsZE5ycyA9IHJhbmdlKDEsNTAsMSk7ICRmaWVsZFR5cGUgPSBhcnJheSgnZW5kJyA9PiAnZGF0ZScsICdzdGFydCcgPT4gJ2RhdGUnLCAndGFyZ2V0JyA9PiAnYWRqdXN0bWVudCcsICdvcGVuJyA9PiAnYWN0aXZhdGlvbicsICdjbG9zZScgPT4gJ2FjdGl2YXRpb24nKTsgPz4NCmpRdWVyeSgnaW5wdXQuZm9ybS1maWVsZC1yZXBlYXRhYmxlJykub24oJ3Jvdy1hZGQnLCBmdW5jdGlvbiAoZSkgew0KPD9waHAgZm9yZWFjaCgkZmllbGRUeXBlIGFzICR0eXBlID0+ICRmaWVsZCk6ID8+DQo8P3BocCBmb3JlYWNoKCRmaWVsZE5ycyBhcyAkbnIpOiA/Pg0KCS8vIDEtamZvcm1fZGF0ZV9maWVsZHNfc3RhcnQgPC0tIGZvcm1hdA0KCWpRdWVyeSgnIzw/cGhwIGVjaG8gJG5yOyA/Pi1qZm9ybV88P3BocCBlY2hvICRmaWVsZDsgPz5fZmllbGRzXzw/cGhwIGVjaG8gJHR5cGU7ID8+JykuZGF0ZXRpbWVwaWNrZXIoDQoJCXsNCgkJCW1pbkRhdGU6IC0xLA0KCQkJcHJldlRleHQ6ICcnLA0KCQkJbmV4dFRleHQ6ICcnLA0KCQkJbWF4RGF0ZTogJyszNk0nLA0KCQkJZmlyc3REYXk6IDEsDQoJCQlkYXRlRm9ybWF0OiAneXktbW0tZGQgJywNCgkJCW9uU2VsZWN0OiBmdW5jdGlvbihkYXRlVGV4dCwgaW5zdCkgew0KCQkJalF1ZXJ5KCcjamZvcm1fPD9waHAgZWNobyAkZmllbGQ7ID8+X2ZpZWxkc188P3BocCBlY2hvICR0eXBlOyA/Pi08P3BocCBlY2hvICRucjsgPz4nKS52YWwoZGF0ZVRleHQpOw0KCQl9DQoJfSk7DQo8P3BocCBlbmRmb3JlYWNoOyA/Pg0KPD9waHAgZW5kZm9yZWFjaDsgPz4NCn0pOw==', '', 'Event Dates (Roline)', 'NOT NULL', '', 19, '\"<field \\r\\n\\ttype=\\\"repeatable\\\" \\r\\n\\tname=\\\"date\\\" \\r\\n\\tlabel=\\\"Dates\\\" \\r\\n\\tdescription=\\\"Setup the event dates.\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tid=\\\"date\\\" \\r\\n\\tclass=\\\"dates\\\" \\r\\n\\tselect=\\\"Add\\/Remove\\\" \\r\\n\\ticon=\\\"list\\\" \\r\\n\\tmaximum=\\\"50\\\" \\r\\n\\tfields=\\\"1196,1197,1204,1205,1216\\\" \\r\\n\\/>\"', 1, '2016-04-12 09:08:36', '2018-03-29 03:11:26', 23, '', 597, '09bc0bd6-fe17-4b2c-b1d8-7b1b588a715b', '', '', '', '', ''),
(1200, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'Registered User (users)', 'NOT NULL', '', 7, '\"<field \\r\\n\\ttype=\\\"registereduser\\\" \\r\\n\\tname=\\\"user\\\" \\r\\n\\tlabel=\\\"Registered User\\\" \\r\\n\\trequired=\\\"true\\\"\\r\\n\\thint=\\\"select a user\\\" \\r\\n\\textends=\\\"user\\\" \\r\\n\\ttable=\\\"#__users\\\" \\r\\n\\tcomponent=\\\"com_users\\\" \\r\\n\\tview=\\\"###view###\\\" \\r\\n\\tviews=\\\"###views###\\\" \\r\\n\\tvalue_field=\\\"name\\\" \\r\\n\\tkey_field=\\\"id\\\" \\r\\n\\ttype_php_1=\\\"\\/\\/ set the groups array\\\" \\r\\n\\ttype_php_2=\\\"$groups = JComponentHelper::getParams(\'com_###component###\')->get(\'###type###\');\\\" \\r\\n\\ttype_php_3=\\\"return $groups;\\\"\\r\\n\\/>\"', 1, '2016-04-12 09:57:11', '2016-04-27 21:22:34', 8, '', 596, 'd6f430a3-05b5-47a7-993a-6fc45f1c04cd', '', '', '', '', ''),
(1201, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'Registered User', 'NOT NULL', '', 6, '\"<field \\r\\n\\ttype=\\\"registered\\\" \\r\\n\\tname=\\\"registered_user\\\" \\r\\n\\tlabel=\\\"Registered User\\\" \\r\\n\\tdescription=\\\"Select a registered user.\\\" \\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\tmultiple=\\\"false\\\"\\r\\n\\trequired=\\\"true\\\" \\r\\n\\tdefault=\\\"0\\\" \\r\\n\\textends=\\\"list\\\" \\r\\n\\tbutton=\\\"true\\\" \\r\\n\\ttable=\\\"#__###component###_registered_user\\\" \\r\\n\\tcomponent=\\\"com_###component###\\\" \\r\\n\\tview=\\\"registered_user\\\" \\r\\n\\tviews=\\\"registered_users\\\" \\r\\n\\tvalue_field=\\\"user\\\" \\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 an user\');\\\" \\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###, JFactory::getUser($item->###CODE_TEXT###)->name);\\\" \\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-04-12 09:59:28', '2017-02-20 20:53:19', 7, '', 596, 'a3f48a3e-cb64-415e-bd9b-b927b3d17094', '', '', '', '', ''),
(1202, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Assign to Groups', 'NOT NULL', 1, 29, '\"<field \\r\\n\\ttype=\\\"usergroup\\\" \\r\\n\\tname=\\\"groups\\\" \\r\\n\\tlabel=\\\"Assign to Groups\\\" \\r\\n\\trequired=\\\"true\\\"\\r\\n\\tdescription=\\\"Select the groups to which registered users of this event should be added to\\\"\\r\\n\\tmultiple=\\\"true\\\"\\r\\n\\/>\"', 1, '2016-04-12 10:02:34', '2016-04-16 16:25:13', 2, '', 50, '343acc76-6588-4b60-bb78-e8d41bffbc64', '', '', '', '', ''),
(1203, '', '', '', '', '', '', '', '', 11, '', 'INT', '', '', '', 'Event (Roline)', 'NOT NULL', '', 6, '\"<field \\r\\n\\ttype=\\\"event\\\" \\r\\n\\tname=\\\"event\\\" \\r\\n\\tlabel=\\\"Event\\\"\\r\\n\\tfilter=\\\"INT\\\"\\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\trequired=\\\"true\\\"\\r\\n\\textends=\\\"list\\\" \\r\\n\\tbutton=\\\"true\\\"\\r\\n\\ttable=\\\"#__###component###_event\\\" \\r\\n\\tcomponent=\\\"com_###component###\\\" \\r\\n\\tview=\\\"event\\\" \\r\\n\\tviews=\\\"events\\\" \\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(\'#__###component###_event\', \'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$options[] = JHtml::_(\'select.option\', \'\', \'Select an event\');\\\" \\r\\n\\ttype_php_12=\\\"\\\\tforeach($items as $item)\\\" \\r\\n\\ttype_php_13=\\\"\\\\t{\\\" \\r\\n\\ttype_php_14=\\\"\\\\t\\\\t$options[] = JHtml::_(\'select.option\', $item->###ID###, $item->###CODE_TEXT### );\\\" \\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, '2016-04-12 10:54:45', '2016-04-15 20:15:35', 2, '', 149, '1df66bfc-1fb6-420d-abe0-dd0e5cdfc98b', '', '', '', '', ''),
(1204, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Start Date (custom)', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"start\\\" \\r\\n\\tlabel=\\\"Start Date\\\" \\r\\n\\tsize=\\\"20\\\" \\r\\n\\tmaxlength=\\\"50\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tdescription=\\\"\\\" \\r\\n\\tclass=\\\"text_area dawidth\\\" \\r\\n\\treadonly=\\\"false\\\" \\r\\n\\tdisabled=\\\"false\\\" \\r\\n\\trequired=\\\"false\\\" \\r\\n\\tfilter=\\\"STRING\\\" \\r\\n\\tvalidate=\\\"\\\" \\r\\n\\tfield=\\\"\\\" \\r\\n\\tmessage=\\\"Error! Please add date here.\\\" \\r\\n\\thint=\\\"yyyy-mm-dd hh:mm\\\" \\r\\n\\/>\"', 1, '2016-04-12 12:49:53', '2016-04-19 21:39:49', 3, '', 167, '81ff680b-db19-4cc1-b796-de0384f18e35', '', '', '', '', ''),
(1205, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'End Date (custom)', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"end\\\" \\r\\n\\tlabel=\\\"End Date\\\" \\r\\n\\tsize=\\\"20\\\" \\r\\n\\tmaxlength=\\\"50\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tdescription=\\\"\\\" \\r\\n\\tclass=\\\"text_area dawidth\\\" \\r\\n\\treadonly=\\\"false\\\" \\r\\n\\tdisabled=\\\"false\\\" \\r\\n\\trequired=\\\"false\\\" \\r\\n\\tfilter=\\\"STRING\\\" \\r\\n\\tvalidate=\\\"\\\" \\r\\n\\tfield=\\\"\\\" \\r\\n\\tmessage=\\\"Error! Please add date here.\\\" \\r\\n\\thint=\\\"yyyy-mm-dd hh:mm\\\" \\r\\n\\/>\"', 1, '2016-04-12 12:50:30', '2016-04-19 21:39:56', 3, '', 167, '17cf2524-86c2-42a0-85ab-796cfe3f5d87', '', '', '', '', ''),
(1206, 1, '', 1, '', 'I21hcA0Kew0Kd2lkdGg6IDEwMCU7DQpoZWlnaHQ6IDUwMHB4Ow0KfQ==', '', '', '', '', '', 'CHAR', '', 'ICAgIGZ1bmN0aW9uIGluaXRNYXAoKSB7DQogICAgICAgIHZhciBvcmlnaW5hbE1hcENlbnRlciA9IG5ldyBnb29nbGUubWFwcy5MYXRMbmcoPD9waHAgZWNobyAoc3RycG9zKCR0aGlzLT5pdGVtLT5tYXJrZXIsJyknKSkgPyBzdHJfcmVwbGFjZShhcnJheSggJygnLCAnKScgKSwgJycsICR0aGlzLT5pdGVtLT5tYXJrZXIpIDoiLTIyLjU1Mzc3NTEzMjgzNDk2NCwgMTcuMDcxMDY4MDkwMDg3OTIiOyA/Pik7DQogICAgICAgIHZhciBtYXAgPSBuZXcgZ29vZ2xlLm1hcHMuTWFwKGRvY3VtZW50LmdldEVsZW1lbnRCeUlkKCdtYXAnKSwgew0KICAgICAgICAgIHpvb206IDcsDQogICAgICAgICAgY2VudGVyOiBvcmlnaW5hbE1hcENlbnRlcg0KICAgICAgICB9KTsNCg0KCW1hcmtlciA9IG5ldyBnb29nbGUubWFwcy5NYXJrZXIoew0KCQkgICAgIHBvc2l0aW9uOiBvcmlnaW5hbE1hcENlbnRlciwNCgkJICAgICBkcmFnZ2FibGU6IHRydWUsDQoJCSAgICAgbWFwOiBtYXAsDQoJCSAgICAgdGl0bGU6Ijw/cGhwIGVjaG8gSlRleHQ6Ol8oJ0RyYWcgbWUgdG8gdGhlIFZlbnVlIExvY2F0aW9uIScpOyA/PiIgICAgICAgICAgICAgICAgICAgDQoJfSk7IC8vZW5kIG1hcmtlcg0KDQoJLy8gc2V0IHRoZSBtYXJrZXIgdG8gbWFwDQoJbWFya2VyLnNldE1hcChtYXApOw0KCS8vQWRkIGxpc3RlbmVyDQoJZ29vZ2xlLm1hcHMuZXZlbnQuYWRkTGlzdGVuZXIobWFya2VyLCAnZHJhZ2VuZCcsIGZ1bmN0aW9uIChldmVudCkgew0KICAgICAgICAgICAgICAgICAgICBqUXVlcnkoIiNqZm9ybV9tYXJrZXIiKS52YWwodGhpcy5wb3NpdGlvbik7DQoJfSk7DQoNCiAgICAgIH0NCiAgICAgIGpRdWVyeShmdW5jdGlvbigpIHsNCiAgICAgICAgICAgIGpRdWVyeSgnLm5hdi10YWJzIGxpJykuYmluZCgnY2xpY2snLCBmdW5jdGlvbiAoZSkgew0KICAgICAgICAgICAgICAgICAgaW5pdE1hcCgpOw0KICAgICAgICAgICAgfSk7DQogICAgICB9KTsNCjwvc2NyaXB0Pg0KPD9waHAgJGFwaV9rZXkgPSAkY29tcG9uZW50UGFyYW1zLT5nZXQoJ2FwaV9rZXknLCBudWxsKTsgaWYgKCRhcGlfa2V5KTogPz4NCjxzY3JpcHQgYXN5bmMgZGVmZXINCiAgICBzcmM9Imh0dHBzOi8vbWFwcy5nb29nbGVhcGlzLmNvbS9tYXBzL2FwaS9qcz9rZXk9PD9waHAgZWNobyAkYXBpX2tleTsgPz4iPg0KPD9waHAgZWxzZTogPz4NCjxzY3JpcHQgYXN5bmMgZGVmZXINCiAgICBzcmM9Imh0dHBzOi8vbWFwcy5nb29nbGVhcGlzLmNvbS9tYXBzL2FwaS9qcz9zZW5zb3I9ZmFsc2UiPg0KPD9waHAgZW5kaWY7ID8+DQo8L3NjcmlwdD4NCjxzY3JpcHQgdHlwZT0idGV4dC9qYXZhc2NyaXB0Ij4NCjw/cGhwIGlmICghJGFwaV9rZXkpOiA/Pg0KPD9waHAgDQoJLy8gc2V0dXAgdGhlIHJldHVybiB1cmwNCgkkdXJpID0gKHN0cmluZykgSlVyaTo6Z2V0SW5zdGFuY2UoKTsNCgkkcmV0dXJuID0gdXJsZW5jb2RlKGJhc2U2NF9lbmNvZGUoJHVyaSkpOw0KCSRvcHRpb25zVVJMID0gJ2luZGV4LnBocD9vcHRpb249Y29tX2NvbmZpZyZ2aWV3PWNvbXBvbmVudCZjb21wb25lbnQ9Y29tX1tbW2NvbXBvbmVudF1dXSZyZXR1cm49Jy4kcmV0dXJuOw0KPz4NCglqUXVlcnkoZnVuY3Rpb24oKSB7DQogICAgICAgICAgICBqUXVlcnkoJyNtYXBfbm90ZScpLmh0bWwoIjxkaXYgY2xhc3M9J2FsZXJ0IGFsZXJ0LXN1Y2Nlc3MnPjw/cGhwIGVjaG8gSlRleHQ6Ol8oJ1BsZWFzZSBhZGQgeW91ciBBUEkga2V5IHRvIHRoZSBDb21wb25lbnQgR2xvYmFsJyk7ID8+IDxhIGNsYXNzPSdidG4gYnRuLXNtYWxsIG9wdGlvbnMtbGluaycgaHJlZj0nPD9waHAgZWNobyAkb3B0aW9uc1VSTDs/Pic+PHNwYW4gY2xhc3M9J2ljb24tb3B0aW9ucyc+PC9zcGFuPjw/cGhwIGVjaG8gSlRleHQ6Ol8oJ09wdGlvbnMnKTsgPz48L2E+IDw/cGhwIGVjaG8gSlRleHQ6Ol8oJ3VuZGVyIChHb29nbGUgQVBJKSB0YXAuJyk7ID8+PC9kaXY+Iik7DQogICAgICB9KTsNCjw/cGhwIGVuZGlmOyA/Pg==', '', 'Set Marker (Venue)', 'NOT NULL', '', 14, '\"<field \\r\\n\\ttype=\\\"note\\\" \\r\\n\\tname=\\\"note_set_marker\\\" \\r\\n\\tlabel=\\\"Add Venue Marker to the Map\\\" \\r\\n\\tdescription=\\\"<div id=\'map\'><\\/div><br \\/><div id=\'map_note\'><\\/div>\\\" \\r\\n\\theading=\\\"h2\\\" \\r\\n\\/>\"', 1, '2016-04-12 13:20:02', '2016-04-02 10:56:04', 1, '', 669, '34f33ed6-7490-4d3c-a9a8-729f8aa29328', '', '', '', '', ''),
(1207, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'Country (not-required)', 'NOT NULL', '', 6, '\"<field\\n\\ttype=\\\"countries\\\"\\n\\tname=\\\"country\\\"\\n\\tlabel=\\\"Country\\\"\\n\\tdescription=\\\"Select the country.\\\"\\n\\tclass=\\\"list_class\\\"\\n\\tmultiple=\\\"false\\\"\\n\\trequired=\\\"false\\\"\\n\\textends=\\\"list\\\"\\n\\tbutton=\\\"false\\\"\\n\\ttable=\\\"#__###component###_country\\\"\\n\\tcomponent=\\\"com_###component###\\\"\\n\\tview=\\\"country\\\"\\n\\tviews=\\\"countries\\\"\\n\\tvalue_field=\\\"name\\\"\\n\\tkey_field=\\\"id\\\"\\n\\ttype_php_1=\\\"$db = JFactory::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->where($db->quoteName(\'a.published\') . \' = 1\');\\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[] = JHtml::_(\'select.option\', \'\', \'Select a country\');\\r\\n\\\\tforeach($items as $item)\\r\\n\\\\t{\\r\\n\\\\t\\\\t$options[] = JHtml::_(\'select.option\', $item->###ID###, $item->###CODE_TEXT###);\\r\\n\\\\t}\\r\\n}\\r\\n\\r\\nreturn $options;\\\"\\n\\/>\"', 1, '2016-04-12 13:22:58', '2018-06-12 21:27:23', 2, '', 242, '21c716c1-3006-4df4-b561-a8450be416f2', '', '', '', '', ''),
(1208, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'Variation', 'NOT NULL', '', 6, '\"<field \\r\\n\\ttype=\\\"variation\\\" \\r\\n\\tname=\\\"variation\\\" \\r\\n\\tlabel=\\\"Variation\\\" \\r\\n\\tclass=\\\"list_class selection-width\\\" \\r\\n\\tmultiple=\\\"false\\\" \\r\\n\\tdefault=\\\"0\\\" \\r\\n\\textends=\\\"list\\\" \\r\\n\\tbutton=\\\"true\\\" \\r\\n\\ttable=\\\"#__###component###_variation\\\" \\r\\n\\tcomponent=\\\"com_###component###\\\" \\r\\n\\tview=\\\"variation\\\" \\r\\n\\tviews=\\\"variations\\\" \\r\\n\\tvalue_field=\\\"name\\\" \\r\\n\\tkey_field=\\\"id\\\" \\r\\n\\ttype_php_1=\\\"$db = JFactory::getDBO(); \\\\n\\\\t\\\\t$user = JFactory::getUser();\\\\n\\\\t\\\\t$is = ###Component###Helper::userIs($user);\\\" \\r\\n\\ttype_php_2=\\\"$query = $db->getQuery(true);\\\" \\r\\n\\ttype_php_3=\\\"$query->select($db->quoteName(array(\'a.###ID###\',\'a.###TEXT###\',\'a.created_by\'),array(\'###ID###\',\'###CODE_TEXT###\', \'created_by\')));\\\" \\r\\n\\ttype_php_4=\\\"$query->from($db->quoteName(\'###TABLE###\', \'a\'));\\\" \\r\\n\\ttype_php_5=\\\"$query->where($db->quoteName(\'a.published\') . \' >= 1\');\\\\n\\\\t\\\\tif ($is !== 3)\\\\n\\\\t\\\\t{\\\\n\\\\t\\\\t\\\\t$query->where($db->quoteName(\'a.created_by\') . \' = \' . (int) $user->id);\\\\n\\\\t\\\\t}\\\" \\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 variation\');\\\" \\r\\n\\ttype_php_13=\\\"\\\\tforeach($items as $item)\\\" \\r\\n\\ttype_php_14=\\\"\\\\t{\\\\n\\\\t\\\\t\\\\t\\\\t$belong = ($is == 3) ? \' (\' . JFactory::getUser($item->created_by)->name . \')\' : \'\';\\\" \\r\\n\\ttype_php_15=\\\"\\\\t\\\\t$options[] = JHtml::_(\'select.option\', $item->###ID###, $item->###CODE_TEXT### . $belong);\\\" \\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-04-13 10:55:13', '2017-01-30 20:51:31', 5, '', 626, '219e4442-002c-4c98-a208-caa269d99ba0', '', '', '', '', ''),
(1209, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Costing (Roline)', 'NOT NULL', '', 19, '\"<field \\r\\n\\ttype=\\\"repeatable\\\" \\r\\n\\tname=\\\"cost\\\" \\r\\n\\tlabel=\\\"Costing\\\" \\r\\n\\tdescription=\\\"Set the costing of the concepts in this event.\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tid=\\\"cost\\\" \\r\\n\\tclass=\\\"costs\\\" \\r\\n\\tselect=\\\"Add\\/Remove\\\" \\r\\n\\ticon=\\\"list\\\" \\r\\n\\tmaximum=\\\"20\\\" \\r\\n\\tfields=\\\"1196,1208,1145,1251,1230,1245,1246\\\" \\r\\n\\/>\"', 1, '2016-04-13 10:56:22', '2016-04-27 01:37:21', 9, '', 678, '0fa611e2-5df1-4608-a1ae-592169cc4084', '', '', '', '', ''),
(1210, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'Capacity registrations', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"capacity\\\" \\r\\n\\tlabel=\\\"Capacity\\\" \\r\\n\\tsize=\\\"10\\\" \\r\\n\\tmaxlength=\\\"50\\\"\\r\\n\\tdescription=\\\"The number of registrations allowed, 0 for no limit.\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\trequired=\\\"true\\\"\\r\\n\\tfilter=\\\"INT\\\" \\r\\n\\tmessage=\\\"Error! Please add number of registrations allowed here.\\\" \\r\\n\\thint=\\\"Only Numbers\\\"\\r\\n\\tonchange=\\\"if(!jQuery(this).val().match(\\/^\\\\d+$\\/)){jQuery(this).val(\'\')};\\\" \\r\\n\\/>\"', 1, '2016-04-13 10:59:09', '2016-04-16 09:28:25', 4, '', 7, '2c2334ed-679c-4a7c-8f23-4710e5d87de0', '', '', '', '', ''),
(1211, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Google Map Go To Zoom', 'NOT NULL', '', 10, '\"<field \\r\\n\\ttype=\\\"integer\\\" \\r\\n\\tname=\\\"gotoZoom\\\" \\r\\n\\tlabel=\\\"Go To Zoom Level\\\" \\r\\n\\tdefault=\\\"8\\\" \\r\\n\\tdescription=\\\"Set the zoom level to use when going to a group or facility.\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\tfirst=\\\"1\\\" \\r\\n\\tlast=\\\"20\\\" \\r\\n\\tstep=\\\"1\\\" \\r\\n\\/>\"', 1, '2016-04-15 10:16:05', '2016-04-15 10:18:08', 2, '', 673, 'b18329a9-9a7a-44fa-b0d9-e4bb1e8cea67', '', '', '', '', ''),
(1212, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Google Map Cluster Zoom', 'NOT NULL', '', 10, '\"<field \\r\\n\\ttype=\\\"integer\\\" \\r\\n\\tname=\\\"clusterMaxZoom\\\" \\r\\n\\tlabel=\\\"Cluster Zoom Level\\\" \\r\\n\\tdefault=\\\"7\\\" \\r\\n\\tdescription=\\\"Set the zoom level for when to stop clustering the markers.\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\tfirst=\\\"1\\\" \\r\\n\\tlast=\\\"20\\\" \\r\\n\\tstep=\\\"1\\\" \\r\\n\\tshowon=\\\"cluster:1\\\" \\r\\n\\/>\"', 1, '2016-04-15 10:17:46', '2016-04-15 10:21:40', 2, '', 673, '9b824c06-adbd-42fd-8c89-f36d3b5a4d57', '', '', '', '', ''),
(1213, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Google Map Cluster Grid Size', 'NOT NULL', '', 24, '\"<field \\r\\n\\tname=\\\"clusterGridSize\\\" \\r\\n\\tlabel=\\\"Clustering Grid Size\\\" \\r\\n\\tdefault=\\\"100\\\" \\r\\n\\tdescription=\\\"Set the grid size of the clustered markers.\\\" \\r\\n\\ttype=\\\"text\\\"\\r\\n\\tsize=\\\"10\\\" \\r\\n\\tmaxlength=\\\"50\\\"\\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\tfilter=\\\"INT\\\" \\r\\n\\tmessage=\\\"Error! Please add number cluster grid size here.\\\" \\r\\n\\thint=\\\"Only Numbers\\\"\\r\\n\\tshowon=\\\"cluster:1\\\" \\r\\n\\tonchange=\\\"if(!jQuery(this).val().match(\\/^\\\\d+$\\/)){jQuery(this).val(\'\')};\\\" \\r\\n\\/>\"', 1, '2016-04-15 10:25:04', '2016-03-15 04:32:11', 1, '', 673, '43fea2e9-7f5e-4aab-9a7f-10dab8737885', '', '', '', '', ''),
(1214, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Google Map Type', 'NOT NULL', '', 11, '\"<field \\r\\n\\ttype=\\\"list\\\" \\r\\n\\tname=\\\"mapType\\\" \\r\\n\\tlabel=\\\"Map Type\\\" \\r\\n\\tdescription=\\\"Set the type of map to use.\\\" \\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\tmultiple=\\\"false\\\" \\r\\n\\tfilter=\\\"WORD\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\toption=\\\"roadmap|Road,satellite|Satellite,hybrid|Hybrid,terrain|Terrain\\\" \\r\\n\\tdefault=\\\"roadmap\\\" \\r\\n\\/>\"', 1, '2016-04-15 10:33:58', '2016-04-15 10:45:33', 2, '', 673, '2728f153-1fa8-4083-b011-77d18ea2471d', '', '', '', '', ''),
(1215, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Category (Events)', 'NOT NULL', '', 2, '\"<field \\r\\n\\ttype=\\\"category\\\" \\r\\n\\tname=\\\"category\\\" \\r\\n\\tlabel=\\\"Category\\\" \\r\\n\\textension=\\\"com_###component###.events\\\" \\r\\n\\trequired=\\\"false\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tdescription=\\\"select one of the following categories\\\" \\r\\n\\tclass=\\\"inputbox\\\" \\r\\n\\tmultiple=\\\"false\\\"\\r\\n\\tpublished=\\\"\\\" \\r\\n\\tshowon=\\\"\\\" \\r\\n\\/>\"', 1, '2016-04-15 20:06:08', '2017-02-03 23:19:08', 5, '', 677, 'bd51facc-7fe6-48cb-ae4d-1b8145591562', '', '', '', '', ''),
(1216, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Bundle', 'NOT NULL', '', 6, '\"<field \\r\\n\\ttype=\\\"bundle\\\" \\r\\n\\tname=\\\"bundle\\\" \\r\\n\\tlabel=\\\"Bundle\\\" \\r\\n\\tdescription=\\\"Grouping Feature\\\" \\r\\n\\tclass=\\\"list_class selection-width\\\" \\r\\n\\tmultiple=\\\"false\\\" \\r\\n\\tdefault=\\\"0\\\" \\r\\n\\textends=\\\"list\\\" \\r\\n\\tbutton=\\\"true\\\" \\r\\n\\ttable=\\\"#__###component###_bundle\\\" \\r\\n\\tcomponent=\\\"com_###component###\\\" \\r\\n\\tview=\\\"bundle\\\" \\r\\n\\tviews=\\\"bundles\\\" \\r\\n\\tvalue_field=\\\"name\\\" \\r\\n\\tkey_field=\\\"id\\\" \\r\\n\\ttype_php_1=\\\"$db = JFactory::getDBO(); \\\\n\\\\t\\\\t$user = JFactory::getUser();\\\\n\\\\t\\\\t$is = ###Component###Helper::userIs($user);\\\"\\r\\n\\ttype_php_2=\\\"$query = $db->getQuery(true);\\\" \\r\\n\\ttype_php_3=\\\"$query->select($db->quoteName(array(\'a.###ID###\',\'a.###TEXT###\', \'a.created_by\'),array(\'###ID###\',\'###CODE_TEXT###\', \'created_by\')));\\\" \\r\\n\\ttype_php_4=\\\"$query->from($db->quoteName(\'###TABLE###\', \'a\'));\\\" \\r\\n\\ttype_php_5=\\\"$query->where($db->quoteName(\'a.published\') . \' >= 1\');\\\\n\\\\t\\\\tif ($is !== 3)\\\\n\\\\t\\\\t{\\\\n\\\\t\\\\t\\\\t$query->where($db->quoteName(\'a.created_by\') . \' = \' . (int) $user->id);\\\\n\\\\t\\\\t}\\\"\\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 bundle\');\\\" \\r\\n\\ttype_php_13=\\\"\\\\tforeach($items as $item)\\\" \\r\\n\\ttype_php_14=\\\"\\\\t{\\\\n\\\\t\\\\t\\\\t\\\\t$belong = ($is == 3) ? \' (\' . JFactory::getUser($item->created_by)->name . \')\' : \'\';\\\" \\r\\n\\ttype_php_15=\\\"\\\\t\\\\t$options[] = JHtml::_(\'select.option\', $item->###ID###, $item->###CODE_TEXT### . $belong);\\\" \\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-04-16 09:38:45', '2017-01-30 20:47:27', 8, '', 691, '90161ef2-e078-41de-b9e8-3c9baf720b62', '', '', '', '', ''),
(1217, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'Registration type', 'NOT NULL', '', 11, '\"<field \\r\\n\\ttype=\\\"list\\\" \\r\\n\\tname=\\\"type\\\" \\r\\n\\tlabel=\\\"Type\\\" \\r\\n\\tdescription=\\\"Registration type.\\\" \\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\tmultiple=\\\"false\\\" \\r\\n\\tfilter=\\\"Int\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\toption=\\\"|Select an option,1|Both individual and Group registration,2|Only Individual registration,3|Only Group registration,4|Custom registration,5|Disable registration\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\/>\"', 1, '2016-04-16 15:50:40', '2016-04-16 16:53:21', 3, '', 692, '3c45127f-d407-4051-b690-aab71635696b', '', '', '', '', ''),
(1218, '', '', '', '', '', '', 'Other', '0000-00-00 00:00:00', '', '', 'DATETIME', '', '', '', 'Open Registration', 'NOT NULL', '', 1, '\"<field \\r\\n\\ttype=\\\"calendar\\\" \\r\\n\\tname=\\\"open\\\" \\r\\n\\tlabel=\\\"Open Registration\\\" \\r\\n\\tdefault=\\\"NOW\\\" \\r\\n\\tdescription=\\\"\\\" \\r\\n\\treadonly=\\\"\\\" \\r\\n\\tdisabled=\\\"\\\" \\r\\n\\tclass=\\\"\\\" \\r\\n\\tformat=\\\"%Y-%m-%d %H:%M:%S\\\" \\r\\n\\tfilter=\\\"user_utc\\\"\\r\\n\\tshowon=\\\"type:1,2,3\\\" \\r\\n\\/>\"', '', '2016-04-16 16:00:25', '0000-00-00 00:00:00', 1, '', 693, '4ed871a6-7d17-47bc-bb4f-7bac87bffa1f', '', '', '', '', ''),
(1219, '', '', '', '', '', '', 'Other', '0000-00-00 00:00:00', '', '', 'DATETIME', '', '', '', 'Close Registration', 'NOT NULL', '', 1, '\"<field \\r\\n\\ttype=\\\"calendar\\\" \\r\\n\\tname=\\\"close\\\" \\r\\n\\tlabel=\\\"Close Registration\\\" \\r\\n\\tdefault=\\\"NOW\\\" \\r\\n\\tdescription=\\\"\\\" \\r\\n\\treadonly=\\\"\\\" \\r\\n\\tdisabled=\\\"\\\" \\r\\n\\tclass=\\\"\\\" \\r\\n\\tformat=\\\"%Y-%m-%d %H:%M:%S\\\" \\r\\n\\tfilter=\\\"user_utc\\\"\\r\\n\\tshowon=\\\"type:1,2,3\\\" \\r\\n\\/>\"', '', '2016-04-16 16:01:49', '0000-00-00 00:00:00', 1, '', 693, '49aafaa7-3d2d-4965-8fe9-8ec93a70023a', '', '', '', '', ''),
(1220, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Custom URL', 'NOT NULL', '', 27, '\"<field \\r\\n\\ttype=\\\"url\\\" \\r\\n\\tname=\\\"customurl\\\" \\r\\n\\tlabel=\\\"Custom URL\\\" \\r\\n\\tsize=\\\"50\\\" \\r\\n\\tmaxlength=\\\"150\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tdescription=\\\"Enter custom registration url.\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\tfilter=\\\"url\\\" \\r\\n\\tvalidated=\\\"url\\\" \\r\\n\\tmessage=\\\"Error! Please add custom url here.\\\" \\r\\n\\thint=\\\"http:\\/\\/www.customurl.com\\/registration.html\\\" \\r\\n\\tshowon=\\\"type:4\\\" \\r\\n\\/>\"', 1, '2016-04-16 16:06:02', '2016-04-16 16:51:48', 2, '', 693, '22e1ca47-b069-41e3-befa-760f658d85b6', '', '', '', '', ''),
(1221, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'Allow Cancellation', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"cancel\\\" \\r\\n\\tlabel=\\\"Allow Cancellation\\\" \\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\\tshowon=\\\"type:1,2,3\\\"\\r\\n\\/>\"', 1, '2016-04-16 17:05:22', '0000-00-00 00:00:00', 1, '', 694, '6831713e-a579-409a-bfbb-3dd6f2998865', '', '', '', '', ''),
(1222, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'Allowed to Register', 'NOT NULL', '', 34, '\"<field \\r\\n\\ttype=\\\"accesslevel\\\" \\r\\n\\tname=\\\"accessregistration\\\" \\r\\n\\tlabel=\\\"Allowed to Register\\\" \\r\\n\\tdescription=\\\"Access level allowed to register to this event.\\\" \\r\\n\\tshowon=\\\"type:1,2,3\\\" \\r\\n\\/>\"', 1, '2016-04-16 17:11:04', '2016-04-16 17:22:39', 2, '', 695, '7b072138-56ba-476e-9421-8dcf84cbaa16', '', '', '', '', ''),
(1223, '', '', '', '', '', '', 'Other', '0000-00-00 00:00:00', '', '', 'DATETIME', '', '', '', 'Cancel Before', 'NOT NULL', '', 1, '\"<field \\r\\n\\ttype=\\\"calendar\\\" \\r\\n\\tname=\\\"cancelbefore\\\" \\r\\n\\tlabel=\\\"Cancel Before\\\" \\r\\n\\tdefault=\\\"NOW\\\" \\r\\n\\tdescription=\\\"Set until when cancellation is still allowed.\\\" \\r\\n\\tformat=\\\"%Y-%m-%d %H:%M:%S\\\" \\r\\n\\tfilter=\\\"user_utc\\\"\\r\\n\\tshowon=\\\"cancel:1\\\" \\r\\n\\/>\"', 1, '2016-04-16 17:32:24', '0000-00-00 00:00:00', 1, '', 693, '7779e3fc-938d-4804-a3ba-dc848257fb45', '', '', '', '', ''),
(1224, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'Allow Coupons', 'NOT NULL', '', 11, '\"<field \\r\\n\\ttype=\\\"list\\\" \\r\\n\\tname=\\\"coupon\\\" \\r\\n\\tlabel=\\\"Coupon\\\" \\r\\n\\tdescription=\\\"Set this events behaviour in regards to coupon discount.\\\" \\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\tmultiple=\\\"false\\\" \\r\\n\\tfilter=\\\"int\\\" \\r\\n\\toption=\\\"0|Use Global,1|No coupons,2|Allow coupons\\\" \\r\\n\\tdefault=\\\"0\\\"\\r\\n\\tshowon=\\\"type:1,2,3\\\"\\r\\n\\/>\"', 1, '2016-04-16 17:37:49', '0000-00-00 00:00:00', 1, '', 694, '82f50549-22bb-44c5-8f50-95299e0f71e9', '', '', '', '', ''),
(1225, '', '', '', '', '', '', '', '', 11, '', 'INT', '', '', '', 'Custom Field (dynamic)', 'NOT NULL', '', 6, '\"<field \\r\\n\\ttype=\\\"customfield\\\" \\r\\n\\tname=\\\"field\\\" \\r\\n\\tlabel=\\\"Field\\\" \\r\\n\\tdescription=\\\"\\\" \\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###_custom_field\\\" \\r\\n\\tcomponent=\\\"com_###component###\\\" \\r\\n\\tview=\\\"custom_field\\\" \\r\\n\\tviews=\\\"custom_fields\\\" \\r\\n\\tvalue_field=\\\"system_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.field_type\',\'a.label\'),array(\'###ID###\',\'###CODE_TEXT###\', \'field_type\',\'label\')));\\\" \\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.field_type ASC\');\\r\\n\\t\\t$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\\t\\t\\t\\/\\/ get custom field module\\r\\n\\t\\t\\t$model = ###Component###Helper::getModel(\'custom_fields\', JPATH_COMPONENT_ADMINISTRATOR);\\\" \\r\\n\\ttype_php_12=\\\"\\\\t$options[] = JHtml::_(\'select.option\', \'\', \'Select a field\');\\\" \\r\\n\\ttype_php_13=\\\"\\\\tforeach($items as $item)\\\" \\r\\n\\ttype_php_14=\\\"\\\\t{\\\\n\\\\t\\\\t\\\\t$name = (empty($item->###CODE_TEXT###)) ? $item->label:$item->###CODE_TEXT###;\\\" \\r\\n\\ttype_php_15=\\\"\\\\t\\\\t$options[] = JHtml::_(\'select.option\', $item->###ID###, $name.\' (\'.JText::_($model->selectionTranslation($item->field_type,\'field_type\')).\') \');\\\" \\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-04-16 19:42:08', '2017-11-02 23:34:29', 10, '', 696, '96e86bef-82a8-489d-9db9-4e5f3c79a9d9', '', '', '', '', ''),
(1226, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Individual Registration Bundles', 'NOT NULL', '', 6, '\"<field \\r\\n\\ttype=\\\"bundles\\\" \\r\\n\\tname=\\\"individualbundle\\\" \\r\\n\\tlabel=\\\"Individual Registration Bundles\\\" \\r\\n\\tdescription=\\\"Select the bundles that groups the individual registration options.\\\" \\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\tmultiple=\\\"true\\\" \\r\\n\\tdefault=\\\"0\\\" \\r\\n\\tshowon=\\\"type:1,2,3,4\\\"\\r\\n\\textends=\\\"list\\\" \\r\\n\\tbutton=\\\"false\\\" \\r\\n\\ttable=\\\"#__###component###_bundle\\\" \\r\\n\\tcomponent=\\\"com_###component###\\\" \\r\\n\\tview=\\\"bundle\\\" \\r\\n\\tviews=\\\"bundles\\\" \\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_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-04-16 19:59:34', '2016-04-16 22:00:22', 4, '', 691, 'd11612ce-087e-441e-bd1a-1c0a8000d8e1', '', '', '', '', ''),
(1227, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Custom Fields (repeatable)', 'NOT NULL', '', 19, '\"<field \\r\\n\\ttype=\\\"repeatable\\\" \\r\\n\\tname=\\\"customfield\\\" \\r\\n\\tlabel=\\\"Custom Fields\\\" \\r\\n\\tdescription=\\\"Set the custom fields of this event.\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tid=\\\"customfield\\\" \\r\\n\\tclass=\\\"customfields\\\" \\r\\n\\tselect=\\\"Add\\/Remove\\\" \\r\\n\\ticon=\\\"list\\\" \\r\\n\\tmaximum=\\\"100\\\" \\r\\n\\tfields=\\\"1225,1260,1259\\\" \\r\\n\\/>\"', 1, '2016-04-16 20:02:30', '2016-04-27 22:36:20', 3, '', 678, '9a245382-10b7-49b5-bb35-35619166b60a', '', '', '', '', ''),
(1228, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Cost Adjustment (repeatable)', 'NOT NULL', '', 19, '\"<field \\r\\n\\ttype=\\\"repeatable\\\" \\r\\n\\tname=\\\"adjustment\\\" \\r\\n\\tlabel=\\\"Cost Adjustment\\\" \\r\\n\\tdescription=\\\"Set the cost adjustments of variations.\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tid=\\\"adjustment\\\" \\r\\n\\tclass=\\\"adjustments\\\" \\r\\n\\tselect=\\\"Add\\/Remove\\\" \\r\\n\\ticon=\\\"list\\\" \\r\\n\\tmaximum=\\\"20\\\" \\r\\n\\tfields=\\\"1230,1231,1208,1235,1236,1233,1232,1229\\\" \\r\\n\\/>\"', 1, '2016-04-16 20:04:12', '2016-04-20 10:23:33', 18, '', 678, '7de9361c-17b2-456e-a447-58a94f781e3b', '', '', '', '', ''),
(1229, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'Option type', 'NOT NULL', '', 11, '\"<field \\r\\n\\ttype=\\\"list\\\" \\r\\n\\tname=\\\"option\\\" \\r\\n\\tlabel=\\\"Option\\\" \\r\\n\\tdescription=\\\"Type\\\" \\r\\n\\tclass=\\\"list_class dtwidth\\\" \\r\\n\\tmultiple=\\\"false\\\" \\r\\n\\tfilter=\\\"Int\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\toption=\\\"1|Percent (%),2|Fixed ($)\\\" \\r\\n\\tdefault=\\\"1\\\" \\r\\n\\/>\"', 1, '2016-04-16 20:07:38', '2016-04-19 21:15:45', 5, '', 692, '085f6167-82be-428c-95de-0db95ad9a334', '', '', '', '', ''),
(1230, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'Available Quantity', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"qty\\\" \\r\\n\\tlabel=\\\"Available\\\" \\r\\n\\tsize=\\\"10\\\" \\r\\n\\tmaxlength=\\\"50\\\"\\r\\n\\tdescription=\\\"Quantity\\\" \\r\\n\\tclass=\\\"text_area dwidth\\\"\\r\\n\\tfilter=\\\"INT\\\" \\r\\n\\tmessage=\\\"Error! Please add number here.\\\" \\r\\n\\thint=\\\"Only Numbers\\\"\\r\\n\\tonchange=\\\"if(!jQuery(this).val().match(\\/^\\\\d+$\\/)){jQuery(this).val(\'\')};\\\" \\r\\n\\/>\"', 1, '2016-04-16 20:09:14', '2016-04-20 11:01:19', 4, '', 692, 'e8c5a0cc-31fd-425e-9ebd-35716e3e140d', '', '', '', '', ''),
(1231, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'Adjustment Type', 'NOT NULL', '', 11, '\"<field \\r\\n\\ttype=\\\"list\\\" \\r\\n\\tname=\\\"type\\\" \\r\\n\\tlabel=\\\"Type\\\" \\r\\n\\tdescription=\\\"Adjustment\\\" \\r\\n\\tclass=\\\"list_class dtwidth\\\" \\r\\n\\tmultiple=\\\"false\\\" \\r\\n\\tfilter=\\\"Int\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\toption=\\\"1|Discount (-),2|Add Fee (+)\\\" \\r\\n\\tdefault=\\\"1\\\" \\r\\n\\/>\"', 1, '2016-04-16 20:09:49', '2016-04-19 21:15:06', 4, '', 692, 'd34a2116-f4f1-47bf-8a52-27c9273bc82d', '', '', '', '', ''),
(1232, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'Adjustment', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"number\\\"\\n\\tlabel=\\\"Adjustment\\\"\\n\\tsize=\\\"10\\\"\\n\\tmaxlength=\\\"50\\\"\\n\\tdescription=\\\"Number\\\"\\n\\tclass=\\\"text_area dwidth\\\"\\n\\trequired=\\\"true\\\"\\n\\tfilter=\\\"INT\\\"\\n\\tmessage=\\\"Error! Please add number here.\\\"\\n\\thint=\\\"Only Numbers\\\"\\n\\tonchange=\\\"if(!jQuery(this).val().match(\\/^\\\\d+$\\/)){jQuery(this).val(\'\')};\\\"\\n\\/>\"', 1, '2016-04-16 20:12:40', '2019-12-30 14:11:45', 5, '', 7, 'f2ed43c8-b657-4281-aee8-b4e2ef91a811', '', '', '', '', ''),
(1233, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'Date Switch', 'NOT NULL', '', 11, '\"<field \\r\\n\\ttype=\\\"list\\\" \\r\\n\\tname=\\\"switch\\\" \\r\\n\\tlabel=\\\"Date\\\" \\r\\n\\tdescription=\\\"Switch\\\" \\r\\n\\tclass=\\\"list_class dwidth\\\" \\r\\n\\tmultiple=\\\"false\\\" \\r\\n\\tfilter=\\\"INT\\\" \\r\\n\\toption=\\\"1|Before,2|After\\\" \\r\\n\\tdefault=\\\"1\\\"\\r\\n\\/>\"', 1, '2016-04-16 20:13:49', '2016-04-19 21:25:17', 3, '', 7, '56551e22-51eb-47f5-bc13-b8743c2d706c', '', '', '', '', ''),
(1234, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'Open Registration', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"open\\\" \\r\\n\\tlabel=\\\"Open\\\" \\r\\n\\tsize=\\\"10\\\" \\r\\n\\tmaxlength=\\\"50\\\"\\r\\n\\tdescription=\\\"Registration\\\" \\r\\n\\tclass=\\\"text_area dawidth\\\" \\r\\n\\treadonly=\\\"false\\\" \\r\\n\\tdisabled=\\\"false\\\" \\r\\n\\trequired=\\\"false\\\" \\r\\n\\tfilter=\\\"STRING\\\" \\r\\n\\tvalidate=\\\"\\\" \\r\\n\\tfield=\\\"\\\" \\r\\n\\tmessage=\\\"Error! Please add date here.\\\" \\r\\n\\thint=\\\"yyyy-mm-dd hh:mm\\\" \\r\\n\\/>\"', 1, '2016-04-16 20:14:28', '2016-04-20 10:15:18', 3, '', 7, 'a01608a7-5b60-413c-9754-eaf4911f139e', '', '', '', '', ''),
(1235, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Target Groups', 'NOT NULL', 1, 29, '\"<field \\r\\n\\ttype=\\\"usergroup\\\" \\r\\n\\tname=\\\"groups\\\"\\r\\n\\tclass=\\\"selection-width\\\" \\r\\n\\tlabel=\\\"Target\\\" \\r\\n\\tdescription=\\\"User Groups\\\"\\r\\n\\tmultiple=\\\"true\\\"\\r\\n\\/>\"', 1, '2016-04-16 20:17:13', '2016-04-19 21:51:50', 5, '', 50, '42a6e460-7ce1-430b-abe7-bb6b0c29e3e5', '', '', '', '', ''),
(1236, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Target Date (custom)', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"target\\\" \\r\\n\\tlabel=\\\"Target\\\" \\r\\n\\tsize=\\\"20\\\" \\r\\n\\tmaxlength=\\\"50\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tdescription=\\\"Date\\\" \\r\\n\\tclass=\\\"text_area dawidth\\\" \\r\\n\\treadonly=\\\"false\\\" \\r\\n\\tdisabled=\\\"false\\\" \\r\\n\\trequired=\\\"false\\\" \\r\\n\\tfilter=\\\"STRING\\\" \\r\\n\\tvalidate=\\\"\\\"\\r\\n\\tmessage=\\\"Error! Please add date here.\\\" \\r\\n\\thint=\\\"yyyy-mm-dd hh:mm\\\" \\r\\n\\/>\"', 1, '2016-04-16 20:22:05', '2016-04-19 20:42:10', 4, '', 167, '1118c8b7-90be-45c6-b95d-ae0d55f57daf', '', '', '', '', ''),
(1237, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Close Registration', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"close\\\" \\r\\n\\tlabel=\\\"Close\\\" \\r\\n\\tsize=\\\"10\\\" \\r\\n\\tmaxlength=\\\"50\\\"\\r\\n\\tdescription=\\\"Registration\\\" \\r\\n\\tclass=\\\"text_area dawidth\\\" \\r\\n\\treadonly=\\\"false\\\" \\r\\n\\tdisabled=\\\"false\\\" \\r\\n\\trequired=\\\"false\\\" \\r\\n\\tfilter=\\\"STRING\\\" \\r\\n\\tvalidate=\\\"\\\" \\r\\n\\tfield=\\\"\\\" \\r\\n\\tmessage=\\\"Error! Please add date here.\\\" \\r\\n\\thint=\\\"yyyy-mm-dd hh:mm\\\" \\r\\n\\/>\"', 1, '2016-04-16 20:22:28', '2016-04-20 10:15:57', 4, '', 167, '9b2da6e0-ed78-4b4c-b0b5-d425e73158f8', '', '', '', '', ''),
(1238, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'Organizer User', 'NOT NULL', '', 7, '\"<field \\r\\n\\ttype=\\\"organizeruser\\\" \\r\\n\\tname=\\\"user\\\" \\r\\n\\tlabel=\\\"Organizer User\\\" \\r\\n\\trequired=\\\"true\\\"\\r\\n\\thint=\\\"select a user\\\" \\r\\n\\textends=\\\"user\\\" \\r\\n\\ttable=\\\"#__users\\\" \\r\\n\\tcomponent=\\\"com_users\\\" \\r\\n\\tview=\\\"###view###\\\" \\r\\n\\tviews=\\\"###views###\\\" \\r\\n\\tvalue_field=\\\"name\\\" \\r\\n\\tkey_field=\\\"id\\\" \\r\\n\\ttype_php_1=\\\"\\/\\/ set the groups array\\\" \\r\\n\\ttype_php_2=\\\"$groups = JComponentHelper::getParams(\'com_###component###\')->get(\'###type###\');\\\" \\r\\n\\ttype_php_3=\\\"return $groups;\\\"\\r\\n\\ttype_phpx_1=\\\"\\/\\/ To ensure that there is only one record per user\\\" \\r\\n\\ttype_phpx_2=\\\"\\/\\/ Get a db connection.\\\" \\r\\n\\ttype_phpx_3=\\\"$db = JFactory::getDbo();\\\" \\r\\n\\ttype_phpx_4=\\\"\\/\\/ Create a new query object.\\\" \\r\\n\\ttype_phpx_5=\\\"$query = $db->getQuery(true);\\\" \\r\\n\\ttype_phpx_6=\\\"\\/\\/ Select all records from the #__###component###_###view### table from ###CODE### column\\\".\\\" \\r\\n\\ttype_phpx_7=\\\"$query->select($db->quoteName(\'###CODE###\'));\\\" \\r\\n\\ttype_phpx_8=\\\"$query->from($db->quoteName(\'#__###component###_###view###\'));\\\" \\r\\n\\ttype_phpx_9=\\\"$db->setQuery($query);\\\" \\r\\n\\ttype_phpx_10=\\\"$db->execute();\\\" \\r\\n\\ttype_phpx_11=\\\"$found = $db->getNumRows();\\\" \\r\\n\\ttype_phpx_12=\\\"if ($found)\\\" \\r\\n\\ttype_phpx_13=\\\"{\\\" \\r\\n\\ttype_phpx_14=\\\"\\\\t\\/\\/ return all users already used\\\" \\r\\n\\ttype_phpx_15=\\\"\\\\treturn array_unique($db->loadColumn());\\\" \\r\\n\\ttype_phpx_16=\\\"}\\\" \\r\\n\\ttype_phpx_17=\\\"return null;\\\" \\r\\n\\/>\"', 1, '2016-04-17 17:20:51', '2016-04-16 10:34:58', 1, '', 596, 'd9bc27ca-407d-495e-898d-02ee051b044e', '', '', '', '', ''),
(1239, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'Organizer', 'NOT NULL', '', 6, '\"<field \\r\\n\\ttype=\\\"organizer\\\" \\r\\n\\tname=\\\"organizer\\\" \\r\\n\\tlabel=\\\"Organizer\\\" \\r\\n\\tdescription=\\\"Select the owner of this event, the invoice and payment options is linked to the organizer.\\\" \\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\tmultiple=\\\"false\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\textends=\\\"list\\\" \\r\\n\\tbutton=\\\"true\\\" \\r\\n\\ttable=\\\"#__###component###_organizer\\\" \\r\\n\\tcomponent=\\\"com_###component###\\\" \\r\\n\\tview=\\\"organizer\\\" \\r\\n\\tviews=\\\"organizers\\\" \\r\\n\\tvalue_field=\\\"user\\\" \\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.companyname\'),array(\'###ID###\',\'###CODE_TEXT###\',\'companyname\')));\\\" \\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 organizer\');\\\" \\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###, JFactory::getUser($item->###CODE_TEXT###)->name.\' - \'.$item->companyname);\\\" \\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-04-17 17:22:15', '2016-04-20 11:22:57', 6, '', 596, 'd922e564-2b72-49ac-a807-f96351c30f54', '', '', '', '', ''),
(1240, '', '', '', '', '', '', '', '', '', '', 'CHAR', '', '', '', 'Wireframe Preview', 'NOT NULL', '', 14, '\"<field \\r\\n\\ttype=\\\"note\\\" \\r\\n\\tname=\\\"preview\\\"\\r\\n\\tlabel=\\\"Wire-frame Preview\\\"\\r\\n\\tdescription=\\\"<div id=\'load-preview\' data-uk-observe><div class=\'uk-alert\'>Soon as you have enough data set this area will display a wire-frame preview of the event options.<\\/div><\\/div>\\\"\\r\\n\\/>\"', 1, '2016-04-18 08:33:17', '2017-01-09 11:51:10', 22, '', 697, 'a534bcce-aa96-4d64-a90d-a3057eb1fa8b', '', '', '', '', ''),
(1241, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Registrations (dynamic)', 'NOT NULL', 1, 6, '\"<field \\r\\n\\ttype=\\\"registrations\\\" \\r\\n\\tname=\\\"registrations\\\" \\r\\n\\tlabel=\\\"Registrations\\\" \\r\\n\\tdescription=\\\"The event registrations this field has been used in.\\\" \\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\tmultiple=\\\"true\\\" \\r\\n\\tdefault=\\\"0\\\" \\r\\n\\textends=\\\"list\\\" \\r\\n\\tbutton=\\\"false\\\" \\r\\n\\ttable=\\\"#__###component###_register\\\" \\r\\n\\tcomponent=\\\"com_###component###\\\" \\r\\n\\tview=\\\"register\\\" \\r\\n\\tviews=\\\"registration\\\" \\r\\n\\tvalue_field=\\\"event\\\" \\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###\',\'b.name\'),array(\'###ID###\',\'###CODE_TEXT###\')));\\\" \\r\\n\\ttype_php_4=\\\"$query->from($db->quoteName(\'###TABLE###\', \'a\'));\\r\\n\\t\\t$query->join(\'LEFT\', $db->quoteName(\'#__registry_event\', \'b\') . \' ON (\' . $db->quoteName(\'a.###TEXT###\') . \' = \' . $db->quoteName(\'b.id\') . \')\');\\\" \\r\\n\\ttype_php_5=\\\"$query->where($db->quoteName(\'a.published\') . \' = 1\');\\\" \\r\\n\\ttype_php_6=\\\"$query->order(\'b.name 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_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-04-19 00:14:19', '2016-04-27 02:25:28', 3, '', 698, 'bb7ed282-9875-458d-8089-1684d436741d', '', '', '', '', ''),
(1242, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'Invoice Template', 'NOT NULL', '', 6, '\"<field \\r\\n\\ttype=\\\"invoicetemplate\\\" \\r\\n\\tname=\\\"invoice_template\\\" \\r\\n\\tlabel=\\\"Template\\\" \\r\\n\\tdescription=\\\"Please select the template.\\\" \\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\tmultiple=\\\"false\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\textends=\\\"list\\\" \\r\\n\\tbutton=\\\"true\\\" \\r\\n\\ttable=\\\"#__###component###_invoice_template\\\" \\r\\n\\tcomponent=\\\"com_###component###\\\" \\r\\n\\tview=\\\"invoice_template\\\" \\r\\n\\tviews=\\\"invoice_templates\\\" \\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 template\');\\\" \\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-04-19 09:09:45', '2016-05-05 21:39:07', 4, '', 670, '42714960-887e-490c-844e-a2374a190487', '', '', '', '', ''),
(1243, 1, '', '', '', 'LmV2ZW50LW9wdGlvbnMgew0Kd2lkdGg6IDY1MHB4Ow0KfQ==', '', '', '', '', '', 'TEXT', '', '', '', 'Event Options (dynamic)', 'NOT NULL', '', 6, '\"<field \\r\\n\\ttype=\\\"eventoptions\\\" \\r\\n\\tname=\\\"eventoption\\\" \\r\\n\\tlabel=\\\"Event Option\\\" \\r\\n\\tdescription=\\\"Description\\\" \\r\\n\\tclass=\\\"list_class event-options\\\" \\r\\n\\tmultiple=\\\"false\\\" \\r\\n\\tdefault=\\\"0\\\" \\r\\n\\textends=\\\"list\\\" \\r\\n\\tbutton=\\\"true\\\" \\r\\n\\ttable=\\\"#__###component###_event\\\" \\r\\n\\tcomponent=\\\"com_###component###\\\" \\r\\n\\tview=\\\"event\\\" \\r\\n\\tviews=\\\"events\\\" \\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(\'a.*\');\\\" \\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(); $bucket = array(); $bucket[\'name\'] = array(); $bucket[\'id\'] = 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\\t\\t\\tif ($his = ###Component###Helper::hisItems(\'event\'))\\r\\n\\t\\t\\t{ \\r\\n\\t\\t\\t\\tforeach($items as $item)\\r\\n\\t\\t\\t\\t{\\r\\n\\t\\t\\t\\t\\tif (-1 == $his || (###Component###Helper::checkArray($his) && in_array($item->id, $his)))\\r\\n\\t\\t\\t\\t\\t{\\r\\n\\t\\t\\t\\t\\t\\tif ($eventOptions = ###Component###Helper::getEvent($item, \'options\'))\\r\\n\\t\\t\\t\\t\\t\\t{\\r\\n\\t\\t\\t\\t\\t\\t\\tforeach($eventOptions as $event)\\r\\n\\t\\t\\t\\t\\t\\t\\t{\\r\\n\\t\\t\\t\\t\\t\\t\\t\\tif (###Component###Helper::checkArray($event))\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t{\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\tforeach ($event as $option)\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t{\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t$option[\'_name\'] = (isset($option[\'date\']) && ###Component###Helper::checkString($option[\'date\'])) ? $option[\'name\']. \' ~ \' . $option[\'date\'] : $option[\'name\'];\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t$select = JFilterOutput::cleanText($option[\'_name\']);\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t$options[] = JHtml::_(\'select.option\', $select, $option[\'_name\']);\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\/\\/ store in session\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t$key = ###Component###Helper::safeString($select);\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t$option[\'select\'] = $select;\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t$bucket[\'name\'][$key] = $option;\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t$bucket[\'id\'][$option[\'id\']] = $option;\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t}\\r\\n\\t\\t\\t\\t\\t\\t\\t\\t}\\r\\n\\t\\t\\t\\t\\t\\t\\t}\\r\\n\\t\\t\\t\\t\\t\\t}\\r\\n\\t\\t\\t\\t\\t}\\r\\n\\t\\t\\t\\t}\\r\\n\\t\\t\\t\\tif (###Component###Helper::checkArray($bucket[\'id\']))\\r\\n\\t\\t\\t\\t{\\r\\n\\t\\t\\t\\t\\t###Component###Helper::set(\'eventDetailsVDM\', $bucket);\\r\\n\\t\\t\\t\\t}\\r\\n\\t\\t\\t}\\r\\n\\t\\t\\telse\\r\\n\\t\\t\\t{\\r\\n\\t\\t\\t\\treturn false;\\r\\n\\t\\t\\t}\\\"\\r\\n\\ttype_php_17=\\\"}\\\" \\r\\n\\ttype_php_18=\\\"\\\" \\r\\n\\ttype_php_19=\\\"return $options;\\\" \\r\\n\\/>\"', 1, '2016-04-19 10:46:23', '2017-02-23 03:23:02', 30, '', 699, 'a78fefe1-c387-40d3-ae8a-1ca608ee1765', '', '', '', '', ''),
(1244, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'Reservation', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"reservation\\\" \\r\\n\\tlabel=\\\"Reservation Time\\\" \\r\\n\\tsize=\\\"10\\\" \\r\\n\\tmaxlength=\\\"50\\\"\\r\\n\\tdescription=\\\"Set how long to reserve a place from the moment BUY is clicked.\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\tshowon=\\\"type:1,2,3\\\"\\r\\n\\tfilter=\\\"INT\\\" \\r\\n\\tmessage=\\\"Error! Please add reservation time allowed here.\\\" \\r\\n\\thint=\\\"Only Minutes\\\"\\r\\n\\tonchange=\\\"if(!jQuery(this).val().match(\\/^\\\\d+$\\/)){jQuery(this).val(\'\')};\\\" \\r\\n\\/>\"', 1, '2016-04-19 20:22:03', '2016-04-16 20:44:09', 1, '', 7, '59aaa3f2-e180-4b75-a7eb-76861e70b788', '', '', '', '', ''),
(1245, '', '', '', '', '', '', '', '', '', '', 'CHAR', '', '', '', 'Extra', 'NOT NULL', '', 3, '\"<field \\r\\n\\ttype=\\\"checkbox\\\" \\r\\n\\tname=\\\"extra\\\" \\r\\n\\tlabel=\\\"Extra\\\" \\r\\n\\tvalue=\\\"\\\"\\r\\n\\tclass=\\\"inputbox\\\" \\r\\n\\/>\"', 1, '2016-04-19 23:17:39', '2016-04-19 23:18:44', 2, '', 700, '9af98340-0d75-4a0d-8b99-ff5243835e41', '', '', '', '', ''),
(1246, '', '', '', '', '', '', '', '', '', '', 'CHAR', '', '', '', 'Only', 'NOT NULL', '', 3, '\"<field \\r\\n\\ttype=\\\"checkbox\\\" \\r\\n\\tname=\\\"only\\\" \\r\\n\\tlabel=\\\"Only\\\" \\r\\n\\tvalue=\\\"\\\"\\r\\n\\tdescription=\\\"\\\" \\r\\n\\tclass=\\\"inputbox\\\" \\r\\n\\/>\"', 1, '2016-04-19 23:18:24', '0000-00-00 00:00:00', 1, '', 700, '78d28256-d039-42b8-9949-2ba630382235', '', '', '', '', ''),
(1247, '', '', '', '', '', '', '', '', 11, '', 'INT', '', '', '', 'Concepts (Roline)', 'NOT NULL', '', 6, '\"<field \\r\\n\\ttype=\\\"concepts\\\" \\r\\n\\tname=\\\"concept\\\" \\r\\n\\tlabel=\\\"Concepts\\\"\\r\\n\\tfilter=\\\"INT\\\"\\r\\n\\tclass=\\\"list_class selection-width\\\" \\r\\n\\tmultiple=\\\"true\\\"\\r\\n\\textends=\\\"list\\\" \\r\\n\\tbutton=\\\"true\\\"\\r\\n\\ttable=\\\"#__###component###_concept\\\" \\r\\n\\tcomponent=\\\"com_###component###\\\" \\r\\n\\tview=\\\"concept\\\" \\r\\n\\tviews=\\\"concepts\\\" \\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(\'#__###component###_concept\', \'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_12=\\\"\\\\tforeach($items as $item)\\\" \\r\\n\\ttype_php_13=\\\"\\\\t{\\\" \\r\\n\\ttype_php_14=\\\"\\\\t\\\\t$options[] = JHtml::_(\'select.option\', $item->###ID###, $item->###CODE_TEXT### );\\\" \\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, '2016-04-19 23:36:51', '2016-04-19 21:44:32', 1, '', 149, '59b3fd52-cd4f-45f5-ba9e-8cc038ee767d', '', '', '', '', ''),
(1248, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Registration Activation (repeatable)', 'NOT NULL', '', 19, '\"<field \\r\\n\\ttype=\\\"repeatable\\\" \\r\\n\\tname=\\\"activation\\\" \\r\\n\\tlabel=\\\"Activation\\\" \\r\\n\\tdescription=\\\"Set the registration activation, when to open and when to close.\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tid=\\\"activation\\\" \\r\\n\\tclass=\\\"activations\\\" \\r\\n\\tselect=\\\"Add\\/Remove\\\" \\r\\n\\ticon=\\\"list\\\" \\r\\n\\tmaximum=\\\"20\\\" \\r\\n\\tfields=\\\"1196,1234,1237\\\" \\r\\n\\/>\"', 1, '2016-04-20 10:20:29', '2016-04-20 10:13:38', 1, '', 678, 'c93b4a31-1f51-4381-97c6-5ed36a80b3d1', '', '', '', '', ''),
(1249, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'invoice Builder (Roline\'s)', 'NOT NULL', '', 19, '\"<field \\r\\n\\ttype=\\\"repeatable\\\" \\r\\n\\tname=\\\"builder\\\" \\r\\n\\tlabel=\\\"Builder\\\" \\r\\n\\tdescription=\\\"Add the list of invoice items.\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tid=\\\"builder\\\" \\r\\n\\tclass=\\\"builders\\\" \\r\\n\\tselect=\\\"Add\\/Remove\\\" \\r\\n\\ticon=\\\"list\\\" \\r\\n\\tmaximum=\\\"500\\\" \\r\\n\\tfields=\\\"1243,1189,1145,1176,1251\\\" \\r\\n\\/>\"', 1, '2016-04-25 19:51:00', '2017-02-20 23:57:50', 7, '', 678, '8681d731-f6e8-4116-a354-ea1112070e5e', '', '', '', '', ''),
(1250, '', '', '', '', '', '', '', '', 100, '', 'VARCHAR', '', '', '', 'Total (Registered User)', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"total_registered_user\\\" \\r\\n\\tlabel=\\\"Total (Registered User)\\\" \\r\\n\\tsize=\\\"10\\\" \\r\\n\\tmaxlength=\\\"50\\\"\\r\\n\\tclass=\\\"text_area wprice\\\" \\r\\n\\tfilter=\\\"FLOAT\\\" \\r\\n\\thint=\\\"Total\\\"\\r\\n\\treadonly=\\\"true\\\"\\r\\n\\tonchange=\\\"if(!jQuery(this).val().match(\\/^\\\\d+\\\\.\\\\d+$\\/)){jQuery(this).val(\'\')};\\\" \\r\\n\\/>\"', 1, '2016-04-26 23:07:22', '2017-02-21 01:10:13', 5, '', 7, '47b81a05-9285-4f19-a1d9-efd5e054d459', '', '', '', '', ''),
(1251, '', '', '', '', '', '', '', '', '', '', 'CHAR', '', '', '', 'Tax (un-selected)', 'NOT NULL', '', 3, '\"<field \\r\\n\\ttype=\\\"checkbox\\\" \\r\\n\\tname=\\\"taxed\\\" \\r\\n\\tlabel=\\\"Taxed\\\" \\r\\n\\tvalue=\\\"1\\\"\\r\\n\\tdefault=\\\"\\\"\\r\\n\\tdescription=\\\"\\\" \\r\\n\\tclass=\\\"inputbox\\\" \\r\\n\\/>\"', 1, '2016-04-27 00:03:34', '2016-05-16 04:39:57', 4, '', 700, 'b384d8f7-3fce-4ca9-890c-aaf43ce038ad', '', '', '', '', ''),
(1252, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Icon (custom)', 'NOT NULL', '', 6, '\"<field \\r\\n\\ttype=\\\"customimages\\\" \\r\\n\\tname=\\\"icon\\\" \\r\\n\\tlabel=\\\"Icon\\\" \\r\\n\\tdescription=\\\"Add the icon to the image folder and select it here (128 x 128px)\\\" \\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\tmultiple=\\\"false\\\" \\r\\n\\tdefault=\\\"0\\\" \\r\\n\\trequired=\\\"false\\\" \\r\\n\\treadonly=\\\"\\\" \\r\\n\\tdisabled=\\\"\\\" \\r\\n\\textends=\\\"list\\\" \\r\\n\\tbutton=\\\"false\\\" \\r\\n\\ttype_php_1=\\\"\\/\\/ get image list\\r\\n\\t\\t$setimagesfolder = JComponentHelper::getParams(\'com_###component###\')->get(\'setimagesfolder\', 1);\\r\\n\\t\\tif (2 == $setimagesfolder)\\r\\n\\t\\t{\\r\\n\\t\\t\\t$localfolder = JComponentHelper::getParams(\'com_###component###\')->get(\'imagesfolder\', JPATH_SITE.\'\\/images\\/vdm\');\\r\\n\\t\\t}\\r\\n\\t\\telseif (1 == $setimagesfolder)\\r\\n\\t\\t{\\r\\n\\t\\t\\t$localfolder = JPATH_SITE.\'\\/images\';\\r\\n\\t\\t}\\r\\n\\t\\telse \\/\\/ just in-case :)\\r\\n\\t\\t{\\r\\n\\t\\t\\t$localfolder = JPATH_SITE.\'\\/images\\/vdm\';\\r\\n\\t\\t}\\r\\n\\t\\t\\/\\/ set the default\\r\\n\\t\\t$options[] = JHtml::_(\'select.option\', \'\', JText::sprintf(\'Please add images to (%s)\',$localfolder));\\r\\n\\t\\t\\/\\/ import all needed classes\\r\\n\\t\\tjimport(\'joomla.filesystem.file\');\\r\\n\\t\\tjimport(\'joomla.filesystem.folder\');\\r\\n\\t\\t\\/\\/ setup the folder if it does not exist\\r\\n\\t\\tif (!JFolder::exists($localfolder))\\r\\n\\t\\t{\\r\\n\\t\\t\\tJFolder::create($localfolder);\\r\\n\\t\\t}\\r\\n\\t\\t\\/\\/ now check if there are files in the folder\\r\\n\\t\\tif ($files = JFolder::files($localfolder))\\r\\n\\t\\t{\\r\\n\\t\\t\\t$options = array();\\r\\n\\t\\t\\tforeach ($files as $file)\\r\\n\\t\\t\\t{\\r\\n\\t\\t\\t\\t$options[] = JHtml::_(\'select.option\', $file, $file);\\r\\n\\t\\t\\t}\\r\\n\\t\\t}\\r\\n\\t\\treturn $options;\\\" \\r\\n\\/>\"', 1, '2016-04-27 01:23:52', '2016-03-23 07:39:50', 1, '', 300, '641b1b0d-b887-47e5-ba7d-b8f672c5e060', '', '', '', '', ''),
(1253, '', '', '', '', '', '', '', '', 11, '', 'INT', '', '', '', 'Invoice (dynamic)', 'NOT NULL', '', 6, '\"<field \\r\\n\\ttype=\\\"invoice\\\" \\r\\n\\tname=\\\"invoice\\\" \\r\\n\\tlabel=\\\"Invoice\\\" \\r\\n\\tdescription=\\\"The invoice this belongs to.\\\" \\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\tmultiple=\\\"false\\\" \\r\\n\\tdefault=\\\"0\\\" \\r\\n\\textends=\\\"list\\\" \\r\\n\\tbutton=\\\"false\\\" \\r\\n\\ttable=\\\"#__###component###_invoice\\\" \\r\\n\\tcomponent=\\\"com_###component###\\\" \\r\\n\\tview=\\\"invoice\\\" \\r\\n\\tviews=\\\"invoices\\\" \\r\\n\\tvalue_field=\\\"number\\\" \\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###\',\'b.name\'),array(\'###ID###\',\'###CODE_TEXT###\')));\\\" \\r\\n\\ttype_php_4=\\\"$query->from($db->quoteName(\'###TABLE###\', \'a\'));\\r\\n\\t\\t$query->join(\'LEFT\', $db->quoteName(\'#__registry_event\', \'b\') . \' ON (\' . $db->quoteName(\'a.###TEXT###\') . \' = \' . $db->quoteName(\'b.id\') . \')\');\\\" \\r\\n\\ttype_php_5=\\\"$query->where($db->quoteName(\'a.published\') . \' = 1\');\\\" \\r\\n\\ttype_php_6=\\\"$query->order(\'b.name 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_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-04-27 02:24:56', '2016-05-02 18:23:58', 3, '', 698, 'bd9f4968-6dcf-4dd2-b2ed-2f6e41ee5e92', '', '', '', '', ''),
(1254, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', 2, '', '', 'Invoice NR', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"number\\\" \\r\\n\\tlabel=\\\"NR #\\\" \\r\\n\\tsize=\\\"10\\\" \\r\\n\\thint=\\\"Save to See\\\"\\r\\n\\tmaxlength=\\\"16\\\" \\r\\n\\tclass=\\\"invoices-nr\\\" \\r\\n\\treadonly=\\\"true\\\" \\r\\n\\tdisabled=\\\"false\\\" \\r\\n\\tfilter=\\\"ALNUM\\\" \\r\\n\\/>\"', 1, '2016-04-27 03:08:33', '2016-06-12 18:48:03', 3, '', 682, '682669de-8550-43b5-aab0-e946cd0f789e', '', '', '', '', ''),
(1255, '', '', '', '', '', '', '', '', 64, '', 'INT', 2, '', '', 'Transaction ID', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"transaction_id\\\" \\r\\n\\tlabel=\\\"Transaction ID\\\" \\r\\n\\tsize=\\\"6\\\" \\r\\nhint=\\\"\\\"\\r\\n\\tmaxlength=\\\"6\\\" \\r\\n\\tclass=\\\"number-nr\\\" \\r\\n\\tfilter=\\\"CMD\\\" \\r\\n\\/>\"', 1, '2016-04-27 16:06:25', '2016-03-31 16:19:08', 1, '', 682, '2123455f-8078-42fc-82e5-bb4528ea66ce', '', '', '', '', ''),
(1256, '', '', '', '', '', '', '', '', 100, '', 'VARCHAR', '', '', '', 'Transaction Fees', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"fees\\\" \\r\\n\\tlabel=\\\"Transaction Fees\\\" \\r\\n\\tsize=\\\"10\\\" \\r\\n\\tmaxlength=\\\"50\\\"\\r\\n\\tdescription=\\\"The transaction fees.\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\tfilter=\\\"FLOAT\\\" \\r\\n\\tmessage=\\\"Error! Please add amount transaction fees here.\\\" \\r\\n\\thint=\\\"Only Numbers & dot\\\"\\r\\n\\tonchange=\\\"if(!jQuery(this).val().match(\\/^\\\\d+\\\\.\\\\d+$\\/)){jQuery(this).val(\'\')};\\\" \\r\\n\\/>\"', 1, '2016-04-27 16:09:18', '2016-03-06 02:24:09', 1, '', 7, 'f9ccc5e2-014d-4788-b8d0-0046d2604509', '', '', '', '', ''),
(1257, '', '', '', '', '', '', '', '', 11, '', 'INT', '', '', '', 'Payment Method (dynamic)', 'NOT NULL', '', 6, '\"<field \\r\\n\\ttype=\\\"paymentmethod\\\" \\r\\n\\tname=\\\"payment_method\\\" \\r\\n\\tlabel=\\\"Payment Method\\\" \\r\\n\\tdescription=\\\"The payment method.\\\" \\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\tmultiple=\\\"false\\\" \\r\\n\\tdefault=\\\"0\\\" \\r\\n\\textends=\\\"list\\\" \\r\\n\\tbutton=\\\"false\\\" \\r\\n\\ttable=\\\"#__###component###_payment_method\\\" \\r\\n\\tcomponent=\\\"com_###component###\\\" \\r\\n\\tview=\\\"payment_method\\\" \\r\\n\\tviews=\\\"payment_methods\\\" \\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_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\\t\\t\\tif ($his = ###Component###Helper::hisItems(\'payment_method\'))\\r\\n\\t\\t\\t{ \\r\\n\\t\\t\\t\\tforeach($items as $item)\\r\\n\\t\\t\\t\\t{\\r\\n\\t\\t\\t\\t\\tif (-1 == $his || (###Component###Helper::checkArray($his) && in_array($item->id, $his)))\\r\\n\\t\\t\\t\\t\\t{\\r\\n\\t\\t\\t\\t\\t\\t$options[] = JHtml::_(\'select.option\', $item->###ID###, $item->###CODE_TEXT###);\\r\\n\\t\\t\\t\\t\\t }\\r\\n\\t\\t\\t\\t}\\r\\n\\t\\t\\t}\\r\\n\\t\\t\\telse\\r\\n\\t\\t\\t{\\r\\n\\t\\t\\t\\treturn false;\\r\\n\\t\\t\\t}\\\"\\r\\n\\ttype_php_17=\\\"}\\\" \\r\\n\\ttype_php_18=\\\"\\\" \\r\\n\\ttype_php_19=\\\"return $options;\\\" \\r\\n\\/>\"', 1, '2016-04-27 16:33:54', '2017-01-12 21:39:06', 3, '', 698, 'be567484-8845-4461-9097-66653734956d', '', '', '', '', ''),
(1258, '', '', '', '', '', '', '', '', '', '', 'CHAR', '', '', '', 'User Default Fields Notice', 'NOT NULL', '', 14, '\"<field \\r\\n\\ttype=\\\"note\\\" \\r\\n\\tname=\\\"user_default_fields_notice\\\" \\r\\n\\tlabel=\\\"Default Fields\\\" \\r\\n\\tdescription=\\\"<p>The default fields for new event registrations are: <b>Name<\\/b>, <b>Username<\\/b>, <b>Email<\\/b> and <b>Password<\\/b>. All other info you may want must be set via the custom fields.<\\/p>\\r\\n<p>Adding a variation to a custom field means that, that custom field will only be available if that variation is selected during registration. If you add multiple variations to a custom field, it means that field will be available if any or all of those variations are selected during registration.<\\/p> <p>The <b>Per Each Registration<\\/b> option will cause the field to be added the same amount of times as the number of ticket\\/registrations that is being registered.<\\/p>\\\" \\r\\n\\theading=\\\"h4\\\" \\r\\n\\tclass=\\\"alert alert-info\\\" \\r\\n\\tshowon=\\\"\\\" \\r\\n\\/>\"', 1, '2016-04-27 22:08:12', '2016-04-27 22:58:52', 3, '', 701, '9891290b-6c59-4fce-ab42-f7c4f4d901c7', '', '', '', '', ''),
(1259, '', '', '', '', '', '', '', '', '', '', 'CHAR', '', '', '', 'Per Each Registration', 'NOT NULL', '', 3, '\"<field \\r\\n\\ttype=\\\"checkbox\\\" \\r\\n\\tname=\\\"each_registration\\\" \\r\\n\\tlabel=\\\"Per Each\\\" \\r\\n\\tvalue=\\\"\\\"\\r\\n\\tdescription=\\\"Registration\\\" \\r\\n\\tclass=\\\"inputbox\\\" \\r\\n\\/>\"', 1, '2016-04-27 22:29:53', '2016-04-27 22:55:16', 2, '', 700, '968e4461-b642-4feb-a688-a9bb1fbc5ab7', '', '', '', '', ''),
(1260, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Per Variations', 'NOT NULL', 1, 6, '\"<field \\r\\n\\ttype=\\\"pervariations\\\" \\r\\n\\tname=\\\"variation\\\" \\r\\n\\tlabel=\\\"Variations\\\" \\r\\n\\tclass=\\\"list_class selection-width\\\" \\r\\n\\tmultiple=\\\"true\\\" \\r\\n\\tdefault=\\\"0\\\" \\r\\n\\textends=\\\"list\\\" \\r\\n\\tbutton=\\\"true\\\" \\r\\n\\ttable=\\\"#__###component###_variation\\\" \\r\\n\\tcomponent=\\\"com_###component###\\\" \\r\\n\\tview=\\\"variation\\\" \\r\\n\\tviews=\\\"variations\\\" \\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_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-04-27 22:33:16', '2016-04-27 22:45:31', 5, '', 626, 'ec0c1f05-ff44-4687-a377-16225047214a', '', '', '', '', ''),
(1261, '', '', '', '', '', '', 'Other', 2, 11, '', 'INT', 2, '', '', 'Release Target (Roline\'s)', 'NOT NULL', '', 11, '\"<field \\r\\n\\ttype=\\\"list\\\" \\r\\n\\tname=\\\"release_target\\\" \\r\\n\\tlabel=\\\"Release Target\\\" \\r\\n\\tdescription=\\\"Select the release target type.\\\" \\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\tmultiple=\\\"false\\\" \\r\\n\\toption=\\\"1|Opened Website Account,2|Registered\\/Booked,3|Approval\\/Paid,4|Registration\\/Booking Cancelled,5|Event\\\"\\r\\n\\tdefault=\\\"2\\\" \\r\\nrequired=\\\"true\\\"\\r\\nfilter=\\\"int\\\"\\r\\n\\/>\"', 1, '2016-04-30 18:07:13', '2016-02-07 20:43:59', 1, '', 77, 'b9077e6c-a4ac-458a-9f35-b16cdc21c7e8', '', '', '', '', ''),
(1262, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Registered User Target', 'NOT NULL', '', 11, '\"<field \\r\\n\\ttype=\\\"list\\\" \\r\\n\\tname=\\\"registered-user-target\\\" \\r\\n\\tlabel=\\\"Registered User Target\\\" \\r\\n\\tdescription=\\\"\\\" \\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\tmultiple=\\\"false\\\" \\r\\n\\tfilter=\\\"\\\" \\r\\n\\toption=\\\"1|All,2|Not-Associated,3|Associated,4|Selected\\\" \\r\\n\\tdefault=\\\"1\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\/>\"', 1, '2016-05-01 23:23:48', '2016-05-01 23:49:30', 3, '', 646, 'b421531f-05e5-41ce-84f7-7538d74bef37', '', '', '', '', ''),
(1263, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Event (multiple - Roline\'s)', 'NOT NULL', 1, 6, '\"<field \\r\\n\\ttype=\\\"events\\\" \\r\\n\\tname=\\\"event\\\" \\r\\n\\tlabel=\\\"Events\\\" \\r\\n\\tdescription=\\\"Select some events.\\\" \\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\trequired=\\\"true\\\"\\r\\n\\textends=\\\"list\\\" \\r\\n\\tmultiple=\\\"true\\\"\\r\\n\\tbutton=\\\"false\\\"\\r\\n\\ttable=\\\"#__###component###_event\\\" \\r\\n\\tcomponent=\\\"com_###component###\\\" \\r\\n\\tview=\\\"event\\\" \\r\\n\\tviews=\\\"events\\\" \\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_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-05-01 23:41:45', '2016-02-05 23:45:48', 1, '', 283, '0271ca6c-cd8e-4a2d-a647-e1a73f1dce0a', '', '', '', '', ''),
(1264, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Sent To (email - miltiple - Roline\'s)', 'NOT NULL', 1, 11, '\"<field \\r\\n\\ttype=\\\"list\\\" \\r\\n\\tname=\\\"sent-to\\\" \\r\\n\\tlabel=\\\"Sent To\\\" \\r\\n\\tdescription=\\\"To who should this email be sent\\\" \\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\tmultiple=\\\"true\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\toption=\\\"1|Registered,2|Groups,3|Users,4|Other\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\/>\"', 1, '2016-05-02 00:02:37', '2016-02-08 01:44:39', 1, '', 658, '74c18f2a-94d2-4f17-a29a-9829474a1c53', '', '', '', '', ''),
(1265, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Registered Users (multi)', 'NOT NULL', 1, 6, '\"<field \\r\\n\\ttype=\\\"registeredusers\\\" \\r\\n\\tname=\\\"registered_users\\\" \\r\\n\\tlabel=\\\"Registered Users\\\" \\r\\n\\tdescription=\\\"Select registered users.\\\" \\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\tmultiple=\\\"true\\\" \\r\\n\\tdefault=\\\"0\\\" \\r\\n\\textends=\\\"list\\\" \\r\\n\\tbutton=\\\"false\\\" \\r\\n\\ttable=\\\"#__###component###_registered_user\\\" \\r\\n\\tcomponent=\\\"com_###component###\\\" \\r\\n\\tview=\\\"registered_user\\\" \\r\\n\\tviews=\\\"registered_users\\\" \\r\\n\\tvalue_field=\\\"user\\\" \\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_13=\\\"\\\\tforeach($items as $item)\\\" \\r\\n\\ttype_php_14=\\\"\\\\t{\\\" \\r\\n\\ttype_php_15=\\\"\\\\t\\\\t$options[] = JHtml::_(\'select.option\', $item->###ID###, JFactory::getUser($item->###CODE_TEXT###)->name);\\\" \\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-05-02 00:13:22', '2016-05-02 00:13:39', 2, '', 596, 'de129698-ecf6-495d-9386-f76dc2cf4a43', '', '', '', '', ''),
(1266, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Place holders (Registered)', 'NOT NULL', '', 14, '\"<field \\r\\n\\ttype=\\\"note\\\" \\r\\n\\tname=\\\"note_place_holder_registered\\\" \\r\\n\\tlabel=\\\"Registered only\\\" \\r\\n\\tdescription=\\\"<p>To add document to email just use:<\\/p> <div><code>[document-TYPE-NAME]<\\/code><\\/div><p>You can use any custom field <b>Unique Code<\\/b> as follow:<\\/p> <div><code>[phone]<\\/code> <code>[gender]<\\/code> <code>[mobile]<\\/code> <code>[street-address]<\\/code><\\/div><p>If you allow group registration and have <b>Per Each Registration<\\/b> fields those fields will have a incremental prefix added to them, and can be used as follow:<\\/p><div><code>[one-phone]<\\/code> <code>[two-phone]<\\/code><code>[three-phone]<\\/code><code>[four-phone]<\\/code><code>[five-phone]<\\/code><\\/div>\\\" \\r\\n\\theading=\\\"h4\\\" \\r\\n\\tclass=\\\"note_place_holder_registered\\\" \\r\\n\\/>\"', 1, '2016-05-02 00:38:31', '2016-05-02 03:59:56', 2, '', 660, '360d8d49-bb94-47e6-a218-4dbf79367115', '', '', '', '', ''),
(1267, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Place holders (Events - Roline\'s)', 'NOT NULL', '', 14, '\"<field \\r\\n\\ttype=\\\"note\\\" \\r\\n\\tname=\\\"note_place_holder_event\\\" \\r\\n\\tlabel=\\\"Events\\\" \\r\\n\\tdescription=\\\"<div><code>[event-name]<\\/code> <code>[event-image-NAME]<\\/code> <code>[event-start-date]<\\/code> <code>[event-concepts-date-price]<\\/code> <code>[event-concepts-date-only]<\\/code> <code>[event-details]<\\/code> <code>[event-additional-info]<\\/code> <code>[event-categories]<\\/code> <\\/div>\\\" \\r\\n\\theading=\\\"h4\\\" \\r\\n\\tclass=\\\"note_place_holder_event\\\" \\r\\n\\/>\"', 1, '2016-05-02 01:01:09', '2016-05-02 00:51:04', 1, '', 660, '72364f7a-76ad-43c9-9c5a-7f7808f41cc6', '', '', '', '', ''),
(1268, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Place holders (Organizer)', 'NOT NULL', '', 14, '\"<field \\r\\n\\ttype=\\\"note\\\" \\r\\n\\tname=\\\"note_place_holder_organizer\\\" \\r\\n\\tlabel=\\\"Organizer Details\\\" \\r\\n\\tdescription=\\\"<div><code>[organizer-company-name]<\\/code> <code>[organizer-name]<\\/code> <code>[organizer-email]<\\/code> <code>[organizer-website]<\\/code> <code>[organizer-website-link]<\\/code> <code>[organizer-public-phone]<\\/code> <code>[organizer-mobile-phone]<\\/code> <code>[organizer-postal-address]<\\/code> <code>[organizer-street-address]<\\/code> <code>[organizer-city]<\\/code> <code>[organizer-region]<\\/code> <code>[organizer-country]<\\/code> <code>[organizer-postal-code]<\\/code> <code>[organizer-image-NAME]<\\/code> <\\/div> \\\" \\r\\n\\theading=\\\"h4\\\" \\r\\n\\tclass=\\\"note_place_holder_organizer\\\" \\r\\n\\/>\"', 1, '2016-05-02 01:05:43', '2016-05-02 04:03:27', 3, '', 660, 'e60131e9-e98d-43d9-ba71-d10162801e04', '', '', '', '', ''),
(1269, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Place holders (Venu)', 'NOT NULL', '', 14, '\"<field \\r\\n\\ttype=\\\"note\\\" \\r\\n\\tname=\\\"note_place_holder_venue\\\" \\r\\n\\tlabel=\\\"Venue Details\\\" \\r\\n\\tdescription=\\\"<div><code>[venue-name]<\\/code> <code>[venue-contact-person]<\\/code> <code>[venue-email]<\\/code> <code>[venue-phone]<\\/code> <code>[venue-street-address]<\\/code> <code>[venue-city]<\\/code> <code>[venue-country]<\\/code> <code>[venue-link-to-map]<\\/code> <code>[venue-image-NAME]<\\/code> <\\/div> \\\" \\r\\n\\theading=\\\"h4\\\" \\r\\n\\tclass=\\\"note_place_holder_venue\\\" \\r\\n\\/>\"', 1, '2016-05-02 01:10:34', '2016-02-10 15:22:30', 1, '', 660, '8d24d537-2fe7-4333-9e3e-068f1384a954', '', '', '', '', ''),
(1270, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Place holders (Website - Roline\'s)', 'NOT NULL', '', 14, '\"<field \\r\\n\\ttype=\\\"note\\\" \\r\\n\\tname=\\\"note_place_holder_website\\\" \\r\\n\\tlabel=\\\"Website\\\" \\r\\n\\tdescription=\\\"<div><code>[view-email-in-browser]<\\/code> <code>[site-link]<\\/code> <code>[events-link]<\\/code> <code>[venues-link]<\\/code> <code>[terms-link]<\\/code> <code>[privacy-link]<\\/code> <code>[subscription-link]<\\/code> <code>[unsubscribe-link]<\\/code> <code>[copyright-notice]<\\/code><\\/div>\\\" \\r\\n\\theading=\\\"h4\\\" \\r\\n\\tclass=\\\"note_place_holder_website\\\" \\r\\n\\/>\"', 1, '2016-05-02 01:14:06', '2016-02-10 15:36:37', 1, '', 660, '129cc8ff-12a3-4b7e-8885-8ac9d04b1674', '', '', '', '', ''),
(1271, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Text Body (email)', 'NOT NULL', '', 25, '\"<field \\r\\n\\ttype=\\\"textarea\\\" \\r\\n\\tname=\\\"text-body\\\" \\r\\n\\tlabel=\\\"Text Body\\\" \\r\\n\\trows=\\\"20\\\" \\r\\n\\tcols=\\\"15\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tclass=\\\"text_area span12\\\" \\r\\n\\tfilter=\\\"HTML\\\" \\r\\n\\thint=\\\"\\/\\/ Add the Text Body here.\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\/>\"', 1, '2016-05-02 01:46:53', '2015-08-25 21:15:22', 1, '', 366, '9b5d80ce-d2ab-4960-9810-38a0bf32cd5c', '', '', '', '', ''),
(1272, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Place holders (Document)', 'NOT NULL', '', 14, '\"<field \\r\\n\\ttype=\\\"note\\\" \\r\\n\\tname=\\\"note_place_holder_document\\\" \\r\\n\\tlabel=\\\"Document Details\\\" \\r\\n\\tdescription=\\\"<div><code>[document-nr]<\\/code> <code>[document-date-created]<\\/code> <code>[document-date-due]<\\/code> <code>[document-date-paid]<\\/code> <code>[document-items-html]<\\/code> <code>[document-items-text]<\\/code> <code>[document-subtotal]<\\/code> <code>[document-tax-name]<\\/code> <code>[document-tax]<\\/code> <code>[document-tax-rate]<\\/code> <code>[document-total]<\\/code> <code>[document-amount-paid]<\\/code> <code>[document-payment-method]<\\/code> <code>[document-link]<\\/code> <\\/div> \\\" \\r\\n\\theading=\\\"h4\\\" \\r\\n\\tclass=\\\"note_place_holder_document\\\" \\r\\n\\/>\"', 1, '2016-05-02 03:51:17', '2016-05-02 04:01:53', 2, '', 660, 'bd1c68ea-77cb-42b7-bf8e-89ab5db0a536', '', '', '', '', ''),
(1273, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Place holders (Text Only)', 'NOT NULL', '', 14, '\"<field \\r\\n\\ttype=\\\"note\\\" \\r\\n\\tname=\\\"note_place_holder_text_only\\\" \\r\\n\\tlabel=\\\"Text Only Was Selected\\\" \\r\\n\\tdescription=\\\"<p>Please add your email content to the text body in the next tab.<\\/p>\\\" \\r\\n\\theading=\\\"h4\\\" \\r\\n\\tclass=\\\"alert alert alert-info\\\"\\r\\n\\tclass=\\\"note_place_holder_text_only\\\" \\r\\n\\/>\"', 1, '2016-05-02 03:53:43', '2016-02-10 15:22:30', 1, '', 660, '2a72b39e-0f1d-4068-ba2b-22e7aefa5eaa', '', '', '', '', ''),
(1274, '', '', '', '', '', '', '', '', 1, '', 'INT', 2, '', '', 'Invoice Status', 'NOT NULL', '', 11, '\"<field\\n\\ttype=\\\"list\\\"\\n\\tname=\\\"status\\\"\\n\\tlabel=\\\"Invoice Status\\\"\\n\\tdescription=\\\"Set the status of the invoice\\\"\\n\\tclass=\\\"list_class\\\"\\n\\tmultiple=\\\"false\\\"\\n\\tfilter=\\\"INT\\\"\\n\\trequired=\\\"true\\\"\\n\\toption=\\\"0|Draft,1|Unpaid,2|Paid,3|Cancelled,4|Refunded\\\"\\n\\tdefault=\\\"0\\\"\\n\\/>\"', 1, '2016-05-02 18:15:58', '2019-05-07 09:51:44', 3, '', 702, '4da5e2d4-48b0-40d3-a7c3-8a85f77fa795', '', '', '', '', ''),
(1275, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Proforma Invoice Switch', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"proforma\\\" \\r\\n\\tlabel=\\\"Activate Proforma Invoicing\\\" \\r\\n\\tdescription=\\\"Enable proforma invoicing for unpaid invoices.\\\" \\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-05-02 18:17:48', '2016-06-12 22:02:53', 2, '', 703, '3ca35474-835a-4840-8c0d-94b60414f4cf', '', '', '', '', ''),
(1276, '', '', '', '', '', '', '', '', '', '', 'CHAR', '', '', '', 'Import Note (beginner)', 'NOT NULL', '', 14, '\"<field \\r\\n\\ttype=\\\"note\\\" \\r\\n\\tname=\\\"note_beginner_import\\\" \\r\\n\\tlabel=\\\"Beginners notice.\\\" \\r\\n\\tdescription=\\\"<p>Please do not change this area unless you would like to add special import to this view that goes beyond the default import concept that Component Builder already does automatic if this view is set to have import & export in the component area where this view is linked to the component.<\\/p>\\\" \\r\\n\\theading=\\\"h4\\\" \\r\\n\\tclass=\\\"alert alert-info\\\" \\r\\n\\/>\"', 1, '2016-05-03 23:21:22', '2016-05-04 00:36:03', 2, '', 704, 'b7991183-291b-4196-94ad-736936fbb047', '', '', '', '', ''),
(1277, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Add Custom Import', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"add_custom_import\\\" \\r\\n\\tlabel=\\\"Add Custom Import\\\" \\r\\n\\tdescription=\\\"Override the default import methods.\\\" \\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-05-03 23:25:31', '2016-05-03 23:44:57', 2, '', 187, 'a8217bc2-581a-4196-b4af-f3af8dee2b19', '', '', '', '', ''),
(1278, '', '', '', '', '', '', '', '', '', '', 'MEDIUMTEXT', '', '', '', 'PHP (setData - Import)', 'NOT NULL', 2, 25, '\"<field\\n\\ttype=\\\"textarea\\\"\\n\\tname=\\\"php_import_setdata\\\"\\n\\tlabel=\\\"setData Method PHP\\\"\\n\\trows=\\\"30\\\"\\n\\tcols=\\\"15\\\"\\n\\tdescription=\\\"Add your PHP here! [Do not add the php tags]\\\"\\n\\tclass=\\\"text_area span12\\\"\\n\\tfilter=\\\"raw\\\"\\n\\thint=\\\"\\/\\/ PHP Here that should run in the setData Method, $package,$table,$target_headers\\\"\\n\\trequired=\\\"true\\\"\\n\\/>\"', 1, '2016-05-03 23:32:55', '2018-06-25 00:45:55', 5, '', 119, 'f4db5b58-b5dc-4cce-91f4-cdadf5bcbacd', '', '', '', '', ''),
(1279, '', '', '', '', '', '', '', '', '', '', 'MEDIUMTEXT', '', '', '', 'PHP (save - Import)', 'NOT NULL', 2, 25, '\"<field\\n\\ttype=\\\"textarea\\\"\\n\\tname=\\\"php_import_save\\\"\\n\\tlabel=\\\"Save Method PHP\\\"\\n\\trows=\\\"30\\\"\\n\\tcols=\\\"15\\\"\\n\\tdescription=\\\"Add your PHP here! [Do not add the php tags]\\\"\\n\\tclass=\\\"text_area span12\\\"\\n\\tfilter=\\\"raw\\\"\\n\\thint=\\\"\\/\\/ PHP Here that should run in the save Method, $data, $table\\\"\\n\\trequired=\\\"true\\\"\\n\\/>\"', 1, '2016-05-03 23:38:44', '2018-06-25 01:36:15', 5, '', 119, '10e5ec29-cfc9-4070-b69f-c5deac55c8b5', '', '', '', '', ''),
(1280, '', '', '', '', '', '', '', '', '', '', 'MEDIUMTEXT', '', '', '', 'HTML & PHP (view - Import)', 'NOT NULL', 2, 25, '\"<field \\r\\n\\ttype=\\\"textarea\\\" \\r\\n\\tname=\\\"html_import_view\\\" \\r\\n\\tlabel=\\\"HTML & PHP (view)\\\" \\r\\n\\trows=\\\"30\\\" \\r\\n\\tcols=\\\"15\\\"\\r\\n\\tdescription=\\\"Add your HTML & PHP here! [Use <?php echo $name; ?> for PHP]\\\" \\r\\n\\tclass=\\\"text_area span12\\\" \\r\\n\\tfilter=\\\"raw\\\" \\r\\n\\thint=\\\"\\/\\/ The HTML for the view of your custom import method.\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\/>\"', 1, '2016-05-03 23:42:46', '2015-10-17 18:17:23', 1, '', 119, '9eab4dcf-f847-473a-9e6f-0dffd8a64e43', '', '', '', '', ''),
(1281, '', '', '', '', '', '', '', '', '', '', 'CHAR', '', '', '', 'Import Note (advanced)', 'NOT NULL', '', 14, '\"<field \\r\\n\\ttype=\\\"note\\\" \\r\\n\\tname=\\\"note_advanced_import\\\" \\r\\n\\tlabel=\\\"Advanced notice.\\\" \\r\\n\\tdescription=\\\"<p>The scripts that are automatic added to the input fields below is identical to the default import scripts used. Adapt them to your own custom needs.<\\/p>\\\" \\r\\n\\theading=\\\"h4\\\" \\r\\n\\tclass=\\\"alert alert-success\\\" \\r\\n\\/>\"', 1, '2016-05-04 00:39:13', '2016-05-04 00:36:03', 1, '', 704, '96db1065-c78c-458a-8c6c-87cab451d543', '', '', '', '', ''),
(1282, '', '', '', '', '', '', '', '', '', '', 'MEDIUMTEXT', '', '', '', 'PHP (Import)', 'NOT NULL', 2, 25, '\"<field \\r\\n\\ttype=\\\"textarea\\\" \\r\\n\\tname=\\\"php_import\\\" \\r\\n\\tlabel=\\\"Import Method PHP\\\" \\r\\n\\trows=\\\"30\\\" \\r\\n\\tcols=\\\"15\\\"\\r\\n\\tdescription=\\\"Add your PHP here! [Do not add the php tags]\\\" \\r\\n\\tclass=\\\"text_area span12\\\" \\r\\n\\tfilter=\\\"raw\\\"\\r\\n\\thint=\\\"\\/\\/ PHP Here that should run in the import Method.\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\/>\"', 1, '2016-05-04 22:54:03', '2016-05-03 23:51:54', 1, '', 119, '5f9ad1af-93f3-4375-8f5e-6dcc74686590', '', '', '', '', ''),
(1283, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'HTML (email)', 'NOT NULL', '', 8, '\"<field \\r\\n\\ttype=\\\"editor\\\" \\r\\n\\tname=\\\"html\\\" \\r\\n\\tlabel=\\\"HTML Message\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\twidth=\\\"100%\\\" \\r\\n\\theight=\\\"600\\\"\\r\\nrows=\\\"20\\\" \\r\\n\\tcols=\\\"15\\\" \\r\\n\\tbuttons=\\\"false\\\" \\r\\n\\tfilter=\\\"safehtml\\\"\\r\\nclass=\\\"text_area span12\\\" \\r\\n\\thint=\\\"\\/\\/ HTML message here.\\\" \\r\\n\\/>\"', 1, '2016-05-05 14:19:56', '2016-02-10 14:47:12', 1, '', 661, '0a3fb2c5-0c1e-46d9-92bd-cbe8c8136412', '', '', '', '', ''),
(1284, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Text (email & sms)', 'NOT NULL', '', 25, '\"<field \\r\\n\\ttype=\\\"textarea\\\" \\r\\n\\tname=\\\"text\\\" \\r\\n\\tlabel=\\\"Text Message\\\" \\r\\n\\trows=\\\"20\\\" \\r\\n\\tcols=\\\"15\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tclass=\\\"text_area span12\\\" \\r\\n\\tfilter=\\\"HTML\\\" \\r\\n\\thint=\\\"\\/\\/ Add the Text Message here.\\\"\\r\\n\\/>\"', 1, '2016-05-05 14:20:42', '2016-05-05 17:31:49', 2, '', 366, 'a7644b1f-b2c7-4c23-baf7-19df52fe6b13', '', '', '', '', ''),
(1285, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'Status (message)', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"status\\\"\\n\\tlabel=\\\"Status\\\"\\n\\tdescription=\\\"The status of this message.\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"0|Pending,1|Send\\\"\\n\\tdefault=\\\"0\\\"\\n\\trequired=\\\"true\\\"\\n\\/>\"', 1, '2016-05-05 16:39:26', '2019-01-11 17:28:50', 4, '', 661, '443688cd-a27f-48dd-9309-5f048933560b', '', '', '', '', ''),
(1286, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Registered Users', 'NOT NULL', 1, 6, '\"<field \\r\\n\\ttype=\\\"registeredusers\\\" \\r\\n\\tname=\\\"registered_user\\\" \\r\\n\\tlabel=\\\"Registered User\\\" \\r\\n\\tdescription=\\\"Select registered users.\\\" \\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\tmultiple=\\\"false\\\" \\r\\n\\tdefault=\\\"0\\\" \\r\\n\\textends=\\\"list\\\" \\r\\n\\tbutton=\\\"false\\\" \\r\\n\\ttable=\\\"#__###component###_registered_user\\\" \\r\\n\\tcomponent=\\\"com_###component###\\\" \\r\\n\\tview=\\\"registered_user\\\" \\r\\n\\tviews=\\\"registered_users\\\" \\r\\n\\tvalue_field=\\\"user\\\" \\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_13=\\\"\\\\tforeach($items as $item)\\\" \\r\\n\\ttype_php_14=\\\"\\\\t{\\\" \\r\\n\\ttype_php_15=\\\"\\\\t\\\\t$options[] = JHtml::_(\'select.option\', $item->###ID###, JFactory::getUser($item->###CODE_TEXT###)->name);\\\" \\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-05-05 16:46:55', '2016-05-02 00:13:39', 1, '', 596, '6bee8763-231b-412a-822f-8bb5ce27a887', '', '', '', '', ''),
(1287, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'User (required)', 'NOT NULL', '', 28, '\"<field \\r\\n\\ttype=\\\"user\\\" \\r\\n\\tname=\\\"user\\\" \\r\\n\\tlabel=\\\"User\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\/>\"', 1, '2016-05-05 17:06:52', '0000-00-00 00:00:00', 1, '', 705, '64d2ad8a-b9ad-4ba8-bc1d-2871a964d8f9', '', '', '', '', ''),
(1288, '', '', '', '', '', '', 'Other', '0000-00-00 00:00:00', '', '', 'DATETIME', '', '', '', 'Date Sent', 'NOT NULL', '', 1, '\"<field \\r\\n\\ttype=\\\"calendar\\\" \\r\\n\\tname=\\\"datesent\\\" \\r\\n\\tlabel=\\\"Date Sent\\\" \\r\\n\\tdefault=\\\"now\\\" \\r\\n\\trequired=\\\"\\\"\\r\\n\\tsize=\\\"22\\\" \\r\\n\\tformat=\\\"%Y-%m-%d\\\"\\\" \\r\\n\\tfilter=\\\"user_utc\\\" \\r\\n\\/>\"', 1, '2016-05-05 17:16:12', '2015-09-12 00:03:53', 1, '', 167, 'd1aa65f6-17d3-47bb-8fc2-3cf9be5372f1', '', '', '', '', ''),
(1289, '', '', '', '', '', '', '', '', '', '', 'CHAR', '', '', '', 'Statement (operator)', 'NOT NULL', '', 11, '\"<field \\r\\n\\ttype=\\\"list\\\" \\r\\n\\tname=\\\"operator\\\" \\r\\n\\tlabel=\\\"Statement\\\" \\r\\n\\tdescription=\\\"Combination\\\" \\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\tmultiple=\\\"false\\\" \\r\\n\\tfilter=\\\"INT\\\" \\r\\n\\trequired=\\\"\\\" \\r\\n\\toption=\\\"1|AND,2|OR\\\" \\r\\n\\tdefault=\\\"1\\\" \\r\\n\\/>\"', 1, '2016-05-08 00:32:41', '0000-00-00 00:00:00', 1, '', 706, '12c2b6a6-2e26-4c22-994d-75bbc7bc0ff5', '', '', '', '', ''),
(1290, '', '', '', '', '', '', 1, '', 11, '', 'INT', 2, '', '', 'Grouping Action', 'NOT NULL', '', 11, '\"<field \\r\\n\\ttype=\\\"list\\\" \\r\\n\\tname=\\\"grouping\\\" \\r\\n\\tlabel=\\\"Grouping\\\" \\r\\n\\tsize=\\\"10\\\" \\r\\n\\tmaxlength=\\\"50\\\" \\r\\n\\tdefault=\\\"1\\\" \\r\\n\\tdescription=\\\"Action\\\"\\r\\n\\tfilter=\\\"INT\\\" \\r\\n\\tvalidate=\\\"\\\" \\r\\n\\thint=\\\"1\\\" \\r\\n\\toption=\\\"1|1 AND,11|1 OR,2|2 AND,12|2 OR,3|3 AND,13|3 OR,4|4 AND,14|4 OR,5|5 AND,15|5 OR,6|6 AND,16|6 OR,7|7 AND,17|7 OR,8|8 AND,18|8 OR\\\"\\r\\n\\/>\"', -2, '2016-05-09 02:35:59', '2016-05-09 04:08:22', 3, '', '', 'e656eec1-ad21-4192-9885-ef5217d3d427', '', '', '', '', ''),
(1291, '', '', '', '', '', '', '', '', 11, '', 'INT', '', '', '', 'Stitch', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"stitch\\\" \\r\\n\\tlabel=\\\"Stitch\\\" \\r\\n\\tsize=\\\"50\\\" \\r\\n\\tmaxlength=\\\"150\\\"\\r\\n\\tclass=\\\"text_area wsmed\\\" \\r\\n\\tfilter=\\\"INT\\\" \\r\\n\\thint=\\\"Only Numbers\\\"\\r\\n\\tonchange=\\\"if(!jQuery(this).val().match(\\/^\\\\d+$\\/)){jQuery(this).val(\'\')};\\\" \\r\\n\\/>\"', 1, '2016-05-10 05:20:47', '2016-05-10 05:26:50', 2, '', 7, '73a0f0ca-630a-4cf9-97cc-95f6b8b373a0', '', '', '', '', ''),
(1292, '', '', '', '', '', '', '', '', 100, '', 'VARCHAR', 2, '', '', 'Product Code', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"code\\\"\\n\\tlabel=\\\"Code\\\"\\n\\tsize=\\\"50\\\"\\n\\tmaxlength=\\\"150\\\"\\n\\tclass=\\\"text_area\\\"\\n\\tfilter=\\\"CMD\\\"\\n\\thint=\\\"product_code\\\"\\n\\tvalidate=\\\"uniquefield\\\"\\n\\/>\"', 1, '2016-05-10 05:22:41', '2020-05-29 09:58:20', 6, '', 7, '9cd2b81a-84aa-4e10-ad2a-4d9ad280b425', '', '', '', '', ''),
(1293, '', '', '', '', '', '', '', '', '', '', 'CHAR', '', '', '', 'Tax (selected)', 'NOT NULL', '', 3, '\"<field \\r\\n\\ttype=\\\"checkbox\\\" \\r\\n\\tname=\\\"taxed\\\" \\r\\n\\tlabel=\\\"Tax\\\" \\r\\n\\tvalue=\\\"1\\\"\\r\\n\\tdefault=\\\"1\\\"\\r\\n\\tdescription=\\\"\\\" \\r\\n\\tclass=\\\"inputbox\\\" \\r\\n\\/>\"', 1, '2016-05-11 00:52:15', '2016-05-16 04:39:27', 2, '', 700, '3929d2fe-00eb-485b-828e-861986b20b1f', '', '', '', '', ''),
(1294, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Document Note', 'NOT NULL', '', 14, '\"<field \\r\\n\\ttype=\\\"note\\\" \\r\\n\\tname=\\\"note_place_holder_document\\\"\\r\\n\\tdescription=\\\"<div id=\'document_display\'><h1>Document Display Area<\\/h1><h4>Soon as you have enough details set in the building tab, the quotation will display here!<\\/h4><\\/div>\\\" \\r\\n\\theading=\\\"h1\\\" \\r\\n\\/>\"', 1, '2016-05-11 00:58:48', '2016-08-30 10:48:15', 8, '', 660, '8f655d38-b2db-40a7-997c-fab516ef4f43', '', '', '', '', ''),
(1295, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Production Note', 'NOT NULL', '', 14, '\"<field \\r\\n\\ttype=\\\"note\\\" \\r\\n\\tname=\\\"note_place_holder_production\\\" \\r\\n\\tdescription=\\\"<div id=\'production_display\'><h1>Production Display Area<\\/h1><h4>Soon as you have enough details set in the settings tab, the production types will display here!<\\/h4><\\/div>\\\"\\r\\n\\/>\"', 1, '2016-05-11 05:16:51', '2016-08-09 22:00:02', 5, '', 660, 'a54b8cbc-440c-4c8e-8ce3-67c3f1662a36', '', '', '', '', ''),
(1296, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'Import ID', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"import_id\\\" \\r\\n\\tlabel=\\\"Import ID\\\" \\r\\n\\tsize=\\\"50\\\" \\r\\n\\tmaxlength=\\\"150\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tdescription=\\\"This is the id that is used during import of the health data.\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\tfilter=\\\"ID\\\" \\r\\n\\trequired=\\\"true\\\"\\r\\n\\tmessage=\\\"Error! Please add some the import ID here.\\\" \\r\\n\\/>\"', 1, '2016-05-14 02:46:55', '2016-05-14 03:58:51', 3, '', 707, 'b867ca8f-68f1-47f3-b09c-d87aaf354a3c', '', '', '', '', ''),
(1297, '', '', '', '', '', '', '', '', 64, '', 'CHAR', 2, '', '', 'Tax Percentage Rate', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"tax\\\" \\r\\n\\tlabel=\\\"Tax Percentage Rate\\\" \\r\\n\\tsize=\\\"10\\\" \\r\\n\\tmaxlength=\\\"50\\\"\\r\\n\\tdescription=\\\"Set the tax percentage rate.\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\trequired=\\\"true\\\"\\r\\n\\tfilter=\\\"CMD\\\" \\r\\n\\tmessage=\\\"Error! Please add percentage rate here.\\\" \\r\\n\\thint=\\\"Only Numbers like 15\\\"\\r\\n\\/>\"', 1, '2016-05-15 06:08:16', '2016-05-16 23:56:27', 3, '', 7, '0e7e6945-29fe-4c16-9fef-a118ddafdd38', '', '', '', '', ''),
(1298, '', '', '', '', '', '', 'Other', 2, 1, '', 'TINYINT', '', '', '', 'Tax Type', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"tax_type\\\" \\r\\n\\tlabel=\\\"Tax Type\\\" \\r\\n\\tdescription=\\\"set how the tax should be added to price.\\\" \\r\\n\\tclass=\\\"btn-group btn-group-yesno\\\" \\r\\n\\toption=\\\"1|Inclusive,2|Exclusive\\\" \\r\\n\\tdefault=\\\"2\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\tshowon=\\\"taxed:1\\\"\\r\\n\\/>\"', 1, '2016-05-15 06:13:39', '2016-05-17 00:08:02', 3, '', 708, 'c99642c5-6deb-4fe1-98ac-3eb488b3efb8', '', '', '', '', ''),
(1299, '', '', '', '', '', '', '', '', '', '', 'CHAR', '', '', '', 'Tax Note (global)', 'NOT NULL', '', 14, '\"<field \\r\\n\\ttype=\\\"note\\\" \\r\\n\\tname=\\\"note_tax\\\" \\r\\n\\tlabel=\\\"This is where tax global settings are configured\\\"\\r\\n\\/>\"', 1, '2016-05-15 06:24:09', '2016-05-15 06:47:31', 2, '', 709, 'a54e841b-850c-4e26-a057-3d612a44bf95', '', '', '', '', ''),
(1300, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'Tax Switch', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"taxed\\\" \\r\\n\\tlabel=\\\"Tax Status\\\" \\r\\n\\tdescription=\\\"To enable tax support or disable it.\\\" \\r\\n\\tclass=\\\"btn-group btn-group-yesno\\\" \\r\\n\\toption=\\\"1|Enable,0|Disable\\\" \\r\\n\\tdefault=\\\"0\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\/>\"', 1, '2016-05-15 06:26:55', '0000-00-00 00:00:00', 1, '', 710, '407f92cb-eae1-4826-a698-19a904103dac', '', '', '', '', ''),
(1301, '', '', '', '', '', '', '', '', '', '', 'CHAR', '', '', '', 'Tax Note (rules)', 'NOT NULL', '', 14, '\"<field \\r\\n\\ttype=\\\"note\\\" \\r\\n\\tname=\\\"note_tax_rules\\\" \\r\\n\\tlabel=\\\"You must add <a class=\'btn btn-small\' href=\'index.php?option=com_###component###&view=tax_rules\' title=\'click here!\'>Tax Rules<\\/a> for tax to be applied.\\\"\\r\\n\\tshowon=\\\"taxed:1\\\"\\r\\n\\/>\"', 1, '2016-05-15 06:54:08', '2016-05-16 04:20:51', 2, '', 709, 'ab0d39df-9ba6-4bfc-b0b4-d090e8a239e3', '', '', '', '', ''),
(1302, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'Region (not-required contactdetails)', 'NOT NULL', '', 6, '\"<field\\n\\ttype=\\\"regions\\\"\\n\\tname=\\\"region\\\"\\n\\tlabel=\\\"Region\\\"\\n\\tdescription=\\\"Please select the region this ###view### belongs to.\\\"\\n\\tclass=\\\"list_class\\\"\\n\\tmultiple=\\\"false\\\"\\n\\tdefault=\\\"0\\\"\\n\\textends=\\\"list\\\"\\n\\tbutton=\\\"true\\\"\\n\\ttable=\\\"#__###component###_region\\\"\\n\\tcomponent=\\\"com_###component###\\\"\\n\\tview=\\\"region\\\"\\n\\tviews=\\\"regions\\\"\\n\\tvalue_field=\\\"name\\\"\\n\\tkey_field=\\\"id\\\"\\n\\ttype_php_1=\\\"__.o0=base64=Oo.__Ly8gR2V0IHRoZSB1c2VyIG9iamVjdC4NCgkJJHVzZXIgPSBKRmFjdG9yeTo6Z2V0VXNlcigpOw0KCQkvLyBHZXQgdGhlIGRhdGFic2Ugb2JqZWN0Lg0KCQkkZGIgPSBKRmFjdG9yeTo6Z2V0REJPKCk7DQoJCSRxdWVyeSA9ICRkYi0+Z2V0UXVlcnkodHJ1ZSk7DQoJCSRxdWVyeS0+c2VsZWN0KCRkYi0+cXVvdGVOYW1lKGFycmF5KCdhLiMjI0lEIyMjJywnYS4jIyNURVhUIyMjJywnYi5jb2RldHdvJyksYXJyYXkoJyMjI0lEIyMjJywnIyMjQ09ERV9URVhUIyMjJywgJ2NvdW50cnknKSkpOw0KCQkkcXVlcnktPmZyb20oJGRiLT5xdW90ZU5hbWUoJyMjI1RBQkxFIyMjJywgJ2EnKSk7DQoJCSRxdWVyeS0+am9pbignTEVGVCcsICcjX19bW1tjb250YWN0ZGV0YWlsc11dXV9jb3VudHJ5IEFTIGIgT04gYi5pZCA9IGEuY291bnRyeScpOw0KCQkkcXVlcnktPndoZXJlKCRkYi0+cXVvdGVOYW1lKCdhLnB1Ymxpc2hlZCcpIC4gJyA+PSAxJyk7DQoJCSRxdWVyeS0+b3JkZXIoJ2EuIyMjVEVYVCMjIyBBU0MnKTsNCgkJLy8gSW1wbGVtZW50IFZpZXcgTGV2ZWwgQWNjZXNzIChpZiBzZXQgaW4gdGFibGUpDQoJCWlmICghJHVzZXItPmF1dGhvcmlzZSgnY29yZS5vcHRpb25zJywgJ1tbW2NvbV9jb250YWN0ZGV0YWlsc11dXScpKQ0KCQl7DQoJCQkkY29sdW1ucyA9ICRkYi0+Z2V0VGFibGVDb2x1bW5zKCcjIyNUQUJMRSMjIycpOw0KCQkJaWYoaXNzZXQoJGNvbHVtbnNbJ2FjY2VzcyddKSkNCgkJCXsNCgkJCQkkZ3JvdXBzID0gaW1wbG9kZSgnLCcsICR1c2VyLT5nZXRBdXRob3Jpc2VkVmlld0xldmVscygpKTsNCgkJCQkkcXVlcnktPndoZXJlKCdhLmFjY2VzcyBJTiAoJyAuICRncm91cHMgLiAnKScpOw0KCQkJfQ0KCQl9DQoJCSRkYi0+c2V0UXVlcnkoKHN0cmluZykkcXVlcnkpOw0KCQkkaXRlbXMgPSAkZGItPmxvYWRPYmplY3RMaXN0KCk7DQoJCSRvcHRpb25zID0gYXJyYXkoKTsNCgkJaWYgKCRpdGVtcykNCgkJew0KCQkJJG9wdGlvbnNbXSA9IEpIdG1sOjpfKCdzZWxlY3Qub3B0aW9uJywgJycsICdTZWxlY3QgYW4gcmVnaW9uJyk7DQoJCQlmb3JlYWNoKCRpdGVtcyBhcyAkaXRlbSkNCgkJCXsNCgkJCQkkb3B0aW9uc1tdID0gSkh0bWw6Ol8oJ3NlbGVjdC5vcHRpb24nLCAkaXRlbS0+IyMjSUQjIyMsICRpdGVtLT4jIyNDT0RFX1RFWFQjIyMuJyAoJy4kaXRlbS0+Y291bnRyeS4nKScpOw0KCQkJfQ0KCQl9DQoJCXJldHVybiAkb3B0aW9uczs=\\\"\\n\\/>\"', 1, '2016-05-16 04:12:37', '2021-08-01 15:39:17', 9, '', 667, '6cb69f78-f869-49e2-9ada-27defaa15e34', '', '', '', '', ''),
(1303, '', '', '', '', '', '', '', '', '', '', 'CHAR', '', '', '', 'Tax Note (rule)', 'NOT NULL', '', 14, '\"<field \\r\\n\\ttype=\\\"note\\\" \\r\\n\\tname=\\\"note_tax_rule\\\" \\r\\n\\tlabel=\\\"Tax Rule Implementation.\\\" \\r\\n\\theading=\\\"h4\\\"\\r\\n\\tdescription=\\\"<p>You can target a country, but if no country is selected all countries are targeted by this rule.<br \\/>You can also target a state\\/region in a country, but if no state\\/region is selected all states\\/regions in that country is being targeted by this rule.<\\/p><p>You are allowed to create two separate levels of tax rules thus allowing you to charge multiple taxes such as state and country taxes.<\\/p><p>These rules will not stack on-top of each-other, only one rule from level1 and one rule from level2 will be implemented.<\\/p><p>We first try and identify if a target rule is set for the country and state\\/region of the client, then if not found we look if there is a targeted rule for the country of the client that has no state\\/region selected, if still not found we load the rule that has not country nor state\\/region selected if it is set. If still not found no tax is loaded. <\\/p>\\\"\\r\\n\\tclass=\\\"alert alert-info\\\"\\r\\n\\/>\"', 1, '2016-05-16 04:19:35', '2016-05-17 04:34:04', 4, '', 709, 'c41853e9-28e0-49be-b3fa-8a6c50a04744', '', '', '', '', ''),
(1304, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Tax level', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"level\\\" \\r\\n\\tlabel=\\\"Tax Level\\\" \\r\\n\\tdescription=\\\"\\\" \\r\\n\\tclass=\\\"btn-group btn-group-yesno\\\" \\r\\n\\toption=\\\"1|Level 1,2|Level 2\\\" \\r\\n\\tdefault=\\\"1\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\/>\"', 1, '2016-05-16 04:29:23', '0000-00-00 00:00:00', 1, '', 711, '0f9427b8-f788-418b-8b3d-b5df9df7a92d', '', '', '', '', ''),
(1305, '', '', '', '', '', '', '', '', '', '', 'CHAR', '', '', '', 'Compound Tax', 'NOT NULL', '', 3, '\"<field \\r\\n\\ttype=\\\"checkbox\\\" \\r\\n\\tname=\\\"tax_compound\\\" \\r\\n\\tlabel=\\\"Compound Tax\\\" \\r\\n\\tvalue=\\\"1\\\"\\r\\n\\tdefault=\\\"\\\"\\r\\n\\tdescription=\\\"Tick this box to charge compound tax on level 2\\\" \\r\\n\\tshowon=\\\"taxed:1\\\" \\r\\n\\/>\"', 1, '2016-05-16 23:30:54', '2016-05-16 04:39:27', 1, '', 700, '836aa399-c27f-4f6e-bb04-2da59bc0e529', '', '', '', '', ''),
(1306, '', '', '', '', '', '', '', '', '', '', 'CHAR', '', '', '', 'Deduct Tax Amount', 'NOT NULL', '', 3, '\"<field \\r\\n\\ttype=\\\"checkbox\\\" \\r\\n\\tname=\\\"tax_deduct\\\" \\r\\n\\tlabel=\\\"Deduct Tax Amount\\\" \\r\\n\\tvalue=\\\"1\\\"\\r\\n\\tdefault=\\\"\\\"\\r\\n\\tdescription=\\\"Tick this box to deduct the amount that would be charged as tax from inclusive prices if no tax rules are met.\\\" \\r\\n\\tshowon=\\\"tax_type:1\\\" \\r\\n\\/>\"', 1, '2016-05-16 23:33:45', '2016-05-17 00:06:52', 2, '', 700, 'c5a3f56a-953c-42fb-a1dd-73f738ae2e82', '', '', '', '', ''),
(1307, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'Region (not-required)', 'NOT NULL', '', 6, '\"<field\\n\\ttype=\\\"regions\\\"\\n\\tname=\\\"region\\\"\\n\\tlabel=\\\"Region\\\"\\n\\tdescription=\\\"Please select the region this ###view### belongs to.\\\"\\n\\tclass=\\\"list_class\\\"\\n\\tmultiple=\\\"false\\\"\\n\\tdefault=\\\"0\\\"\\n\\trequired=\\\"false\\\"\\n\\textends=\\\"list\\\"\\n\\tbutton=\\\"true\\\"\\n\\ttable=\\\"#__###component###_region\\\"\\n\\tcomponent=\\\"com_###component###\\\"\\n\\tview=\\\"region\\\"\\n\\tviews=\\\"regions\\\"\\n\\tvalue_field=\\\"name\\\"\\n\\tkey_field=\\\"id\\\"\\n\\ttype_php_1=\\\"__.o0=base64=Oo.__Ly8gR2V0IHRoZSB1c2VyIG9iamVjdC4NCgkJJHVzZXIgPSBKRmFjdG9yeTo6Z2V0VXNlcigpOw0KCQkvLyBHZXQgdGhlIGRhdGFic2Ugb2JqZWN0Lg0KCQkkZGIgPSBKRmFjdG9yeTo6Z2V0REJPKCk7DQoJCSRxdWVyeSA9ICRkYi0+Z2V0UXVlcnkodHJ1ZSk7DQoJCSRxdWVyeS0+c2VsZWN0KCRkYi0+cXVvdGVOYW1lKGFycmF5KCdhLiMjI0lEIyMjJywnYS4jIyNURVhUIyMjJywnYi5jb2RldHdvJyksYXJyYXkoJyMjI0lEIyMjJywnIyMjQ09ERV9URVhUIyMjJywnY291bnRyeScpKSk7DQoJCSRxdWVyeS0+ZnJvbSgkZGItPnF1b3RlTmFtZSgnIyMjVEFCTEUjIyMnLCAnYScpKTsNCgkJJHF1ZXJ5LT5qb2luKCdMRUZUJywgJyNfXyMjI2NvbXBvbmVudCMjI19jb3VudHJ5IEFTIGIgT04gYi5pZCA9IGEuY291bnRyeScpOw0KCQkkcXVlcnktPndoZXJlKCRkYi0+cXVvdGVOYW1lKCdhLnB1Ymxpc2hlZCcpIC4gJyA9IDEnKTsNCgkJJHF1ZXJ5LT5vcmRlcignYS4jIyNURVhUIyMjIEFTQycpOw0KCQkkZGItPnNldFF1ZXJ5KChzdHJpbmcpJHF1ZXJ5KTsNCgkJJGl0ZW1zID0gJGRiLT5sb2FkT2JqZWN0TGlzdCgpOw0KCQkkb3B0aW9ucyA9IGFycmF5KCk7DQoJCWlmICgkaXRlbXMpDQoJCXsNCgkJCWlmICgkdGhpcy0+bXVsdGlwbGUgPT09IGZhbHNlKQ0KCQkJew0KCQkJCSRvcHRpb25zW10gPSBKSHRtbDo6Xygnc2VsZWN0Lm9wdGlvbicsICcnLCBKVGV4dDo6XygnU2VsZWN0IGFuIG9wdGlvbicpKTsNCgkJCX0NCgkJCWZvcmVhY2goJGl0ZW1zIGFzICRpdGVtKQ0KCQkJew0KCQkJCSRvcHRpb25zW10gPSBKSHRtbDo6Xygnc2VsZWN0Lm9wdGlvbicsICRpdGVtLT4jIyNJRCMjIywgJGl0ZW0tPiMjI0NPREVfVEVYVCMjIyk7DQoJCQl9DQoJCX0NCgkJcmV0dXJuICRvcHRpb25zOw==\\\"\\n\\/>\"', 1, '2016-05-17 04:46:53', '2021-08-01 15:35:15', 3, '', 667, '345cb1b9-fcf7-4878-8c8d-84b3187bddc5', '', '', '', '', ''),
(1308, '', '', '', '', '', '', '', '', '', '', 'MEDIUMTEXT', '', '', '', 'PHP (display - Import)', 'NOT NULL', 2, 25, '\"<field \\r\\n\\ttype=\\\"textarea\\\" \\r\\n\\tname=\\\"php_import_display\\\" \\r\\n\\tlabel=\\\"PHP (display)\\\" \\r\\n\\trows=\\\"30\\\" \\r\\n\\tcols=\\\"15\\\"\\r\\n\\tdescription=\\\"Add your PHP here!\\\" \\r\\n\\tclass=\\\"text_area span12\\\" \\r\\n\\tfilter=\\\"raw\\\" \\r\\n\\thint=\\\"\\/\\/ The display method for the view.html.php file.\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\/>\"', 1, '2016-05-20 04:16:05', '2016-05-20 04:39:43', 3, '', 119, 'ba23f3cb-221e-4510-adf5-2b6a71f0b61c', '', '', '', '', ''),
(1309, '', '', '', '', '', '', 1, '', 1, '', 'TINYINT', '', '', '', 'Player', 'NOT NULL', '', 11, '\"<field \\r\\n\\ttype=\\\"list\\\" \\r\\n\\tname=\\\"player\\\" \\r\\n\\tlabel=\\\"Players\\\" \\r\\n\\tdescription=\\\"Select the player you would like to use on your site.\\\" \\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\tmultiple=\\\"false\\\" \\r\\n\\tfilter=\\\"INT\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\toption=\\\"|select an option,1|Soundmanager,2|jPlayer,3|HTML 5 (basic)\\\" \\r\\n\\tdefault=\\\"1\\\" \\r\\n\\/>\"', 1, '2016-05-25 14:30:20', '2017-01-15 21:52:38', 5, '', 712, 'd7ad7d82-8efb-4ef2-8546-6f987c6316da', '', '', '', '', ''),
(1310, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Company Logo', 'NOT NULL', '', 12, '\"<field \\r\\n\\ttype=\\\"media\\\" \\r\\n\\tname=\\\"companylogo\\\" \\r\\n\\tlabel=\\\"Company Logo\\\" \\r\\n\\tdescription=\\\"select a company logo from the image folder\\\" \\r\\n\\tdirectory=\\\"\\\" \\r\\n\\tpreview=\\\"tooltip\\\" \\r\\n\\/>\"', 1, '2016-05-28 14:33:16', '2016-05-28 14:36:12', 2, '', 713, '189b573f-30d6-40b5-8d93-b0d3872e9cb8', '', '', '', '', ''),
(1311, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Document Header', 'NOT NULL', '', 25, '\"<field \\r\\n\\ttype=\\\"textarea\\\" \\r\\n\\tname=\\\"doc_header\\\" \\r\\n\\tlabel=\\\"Document Header<br \\/><small>html allowed<\\/small>\\\" \\r\\n\\trows=\\\"10\\\" \\r\\n\\tcols=\\\"12\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tdescription=\\\"Enter Document Header Here\\\" \\r\\n\\tclass=\\\"text_area span12\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\tfilter=\\\"SAFEHTML\\\" \\r\\n\\tmessage=\\\"Error! Please add header here.\\\" \\r\\n\\thint=\\\"Header Here\\\" \\r\\n\\/>\"', 1, '2016-05-28 15:56:19', '2016-11-24 12:39:47', 9, '', 4, '34127860-ad58-4d6a-87b5-344d00dbbbd3', '', '', '', '', ''),
(1312, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', 2, '', '', 'Document (logo) - Place Holders', 'NOT NULL', '', 14, '\"<field \\r\\n\\ttype=\\\"note\\\" \\r\\n\\tname=\\\"note_header_placeholders\\\" \\r\\n\\tlabel=\\\"Place Holders\\\" \\r\\n\\tdescription=\\\"<code style=\'display: inline-block; padding: 2px; margin: 3px;\'>[jobnumber]<\\/code>\\r\\n<code style=\'display: inline-block; padding: 2px; margin: 3px;\'>[order_date]<\\/code>\\r\\n<code style=\'display: inline-block; padding: 2px; margin: 3px;\'>[delivery_date]<\\/code>\\r\\n\\r\\n<code style=\'display: inline-block; padding: 2px; margin: 3px;\'>[company_name]<\\/code>\\r\\n<code style=\'display: inline-block; padding: 2px; margin: 3px;\'>[company_website]<\\/code>\\r\\n<code style=\'display: inline-block; padding: 2px; margin: 3px;\'>[company_logo]<\\/code>\\r\\n<code style=\'display: inline-block; padding: 2px; margin: 3px;\'>[company_email]<\\/code>\\r\\n<code style=\'display: inline-block; padding: 2px; margin: 3px;\'>[company_phone]<\\/code>\\r\\n<code style=\'display: inline-block; padding: 2px; margin: 3px;\'>[company_mobile]<\\/code>\\r\\n<code style=\'display: inline-block; padding: 2px; margin: 3px;\'>[company_street]<\\/code>\\r\\n<code style=\'display: inline-block; padding: 2px; margin: 3px;\'>[company_postal]<\\/code>\\r\\n<code style=\'display: inline-block; padding: 2px; margin: 3px;\'>[company_city]<\\/code>\\r\\n<code style=\'display: inline-block; padding: 2px; margin: 3px;\'>[company_region_name]<\\/code>\\r\\n<code style=\'display: inline-block; padding: 2px; margin: 3px;\'>[company_country_name]<\\/code>\\r\\n<code style=\'display: inline-block; padding: 2px; margin: 3px;\'>[company_postalcode]<\\/code>\\r\\n\\r\\n<code style=\'display: inline-block; padding: 2px; margin: 3px;\'>[client_name]<\\/code>\\r\\n<code style=\'display: inline-block; padding: 2px; margin: 3px;\'>[client_contact_person]<\\/code>\\r\\n<code style=\'display: inline-block; padding: 2px; margin: 3px;\'>[client_email]<\\/code>\\r\\n<code style=\'display: inline-block; padding: 2px; margin: 3px;\'>[client_phone]<\\/code>\\r\\n<code style=\'display: inline-block; padding: 2px; margin: 3px;\'>[client_mobile]<\\/code>\\r\\n<code style=\'display: inline-block; padding: 2px; margin: 3px;\'>[client_fax]<\\/code>\\r\\n<code style=\'display: inline-block; padding: 2px; margin: 3px;\'>[client_postal]<\\/code>\\r\\n<code style=\'display: inline-block; padding: 2px; margin: 3px;\'>[client_street]<\\/code>\\r\\n<code style=\'display: inline-block; padding: 2px; margin: 3px;\'>[client_city]<\\/code>\\r\\n<code style=\'display: inline-block; padding: 2px; margin: 3px;\'>[client_region_name]<\\/code>\\r\\n<code style=\'display: inline-block; padding: 2px; margin: 3px;\'>[client_country_name]<\\/code>\\r\\n<code style=\'display: inline-block; padding: 2px; margin: 3px;\'>[client_postalcode]<\\/code>\\r\\n<code style=\'display: inline-block; padding: 2px; margin: 3px;\'>[client_website]<\\/code>\\\" \\r\\n\\theading=\\\"h4\\\" \\r\\n\\/>\"', 1, '2016-05-28 16:23:56', '2016-06-12 22:38:23', 12, '', 4, '222f06f9-35db-4605-ad65-a873c2b13999', '', '', '', '', ''),
(1313, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Document Footer', 'NOT NULL', '', 25, '\"<field \\r\\n\\ttype=\\\"textarea\\\" \\r\\n\\tname=\\\"doc_footer\\\" \\r\\n\\tlabel=\\\"Document Footer<br \\/><small>html allowed<\\/small>\\\" \\r\\n\\trows=\\\"10\\\" \\r\\n\\tcols=\\\"12\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tdescription=\\\"Enter Document Footer Here\\\" \\r\\n\\tclass=\\\"text_area span12\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\tfilter=\\\"SAFEHTML\\\" \\r\\n\\tmessage=\\\"Error! Please add footer here.\\\" \\r\\n\\thint=\\\"Footer Here\\\" \\r\\n\\/>\"', 1, '2016-05-30 10:19:49', '2016-11-24 12:40:08', 4, '', 4, 'c87aad43-d11e-47e0-b40d-39201ae76fad', '', '', '', '', ''),
(1314, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Add FadeIn To Page', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"add_fadein\\\" \\r\\n\\tlabel=\\\"Fade In Affect\\\" \\r\\n\\tdescription=\\\"Should the fade in affect be added to the admin edit view.\\\" \\r\\n\\tclass=\\\"btn-group btn-group-yesno\\\" \\r\\n\\toption=\\\"1|Add,0|Remove\\\" \\r\\n\\tdefault=\\\"1\\\"\\r\\n\\/>\"', 1, '2016-05-31 04:42:37', '0000-00-00 00:00:00', 1, '', 714, 'e1bcb366-b7e0-47d7-9a5f-58f8d8d0307d', '', '', '', '', ''),
(1315, '', '', '', '', '', '', 'Other', '0000-00-00 00:00:00', '', '', 'DATETIME', '', '', '', 'Created - Date', 'NOT NULL', '', 1, '\"<field\\n\\ttype=\\\"calendar\\\"\\n\\tname=\\\"created\\\"\\n\\tlabel=\\\"Created Date\\\"\\n\\tdescription=\\\"The date this [[[View]]] was created.\\\"\\n\\tformat=\\\"%Y-%m-%d %H:%M:%S\\\"\\n\\tfilter=\\\"user_utc\\\"\\n\\tsize=\\\"22\\\"\\n\\tescape=\\\"false\\\"\\n\\/>\"', 1, '2016-06-02 08:22:40', '2021-01-20 15:35:48', 11, '', 167, 'e091bf65-58cb-4bf4-aba3-22015889acc6', '', '', '', '', ''),
(1316, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'Created - By', 'NOT NULL', '', 28, '\"<field \\r\\n\\ttype=\\\"user\\\" \\r\\n\\tname=\\\"created_by\\\" \\r\\n\\tlabel=\\\"Created By\\\" \\r\\n\\tdescription=\\\"The user that created this.\\\" \\r\\n\\/>\"', 1, '2016-06-02 08:41:37', '2016-06-02 10:42:40', 2, '', 4, '164d54e2-e3cc-4771-b4ce-c2865cc54318', '', '', '', '', ''),
(1317, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Add Email (Helper Class)', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"add_email_helper\\\" \\r\\n\\tlabel=\\\"Add Email Helper\\\" \\r\\n\\tdescription=\\\"Adding the email helper class, that can be used to send emails.\\\" \\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-06-03 06:20:00', '2015-08-25 21:15:22', 1, '', 548, 'b4013eb9-0716-42a5-a479-6c4b53746cd6', '', '', '', '', ''),
(1318, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Consolidate', 'NOT NULL', '', 11, '\"<field \\r\\n\\ttype=\\\"list\\\" \\r\\n\\tname=\\\"consolidate\\\" \\r\\n\\tlabel=\\\"Consolidate\\\" \\r\\n\\tdescription=\\\"Set the consolidation options\\\" \\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\tmultiple=\\\"false\\\" \\r\\n\\toption=\\\"0|None,1|Per\\/Course,2|Per\\/Program\\\" \\r\\n\\tdefault=\\\"0\\\" \\r\\n\\/>\"', 1, '2016-06-10 14:22:08', '0000-00-00 00:00:00', 1, '', 715, '061b6b23-fbb6-4898-9489-9384ca725a51', '', '', '', '', ''),
(1319, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', 2, '', '', 'Form - Default region', 'NOT NULL', '', 6, '\"<field \\r\\n\\ttype=\\\"regionname\\\" \\r\\n\\tname=\\\"defaultregion\\\" \\r\\n\\tlabel=\\\"Default\\\" \\r\\n\\tdescription=\\\"Select the default region\\\" \\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\tmultiple=\\\"false\\\" \\r\\n\\tdefault=\\\"0\\\" \\r\\n\\trequired=\\\"\\\" \\r\\n\\treadonly=\\\"\\\" \\r\\n\\tdisabled=\\\"\\\" \\r\\n\\textends=\\\"list\\\" \\r\\n\\tbutton=\\\"true\\\" \\r\\n\\ttable=\\\"#__###component###_region\\\" \\r\\n\\tcomponent=\\\"com_###component###\\\" \\r\\n\\tview=\\\"region\\\" \\r\\n\\tviews=\\\"regions\\\" \\r\\n\\tvalue_field=\\\"name\\\" \\r\\n\\tkey_field=\\\"name\\\" \\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 an option\');\\\" \\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-06-11 18:16:30', '2016-06-11 18:08:39', 1, '', 242, '2c48c3ee-516d-4cff-b8e4-290ed848c31d', '', '', '', '', ''),
(1320, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Proforma Invoicing', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"proforma\\\" \\r\\n\\tlabel=\\\"Proforma Invoicing\\\" \\r\\n\\tdescription=\\\"Setting the option of using proforma invoicing.\\\" \\r\\n\\tclass=\\\"btn-group btn-group-yesno\\\" \\r\\n\\toption=\\\"1|Activate,0|Deactivate\\\" \\r\\n\\tdefault=\\\"0\\\" \\r\\n\\trequired=\\\"true\\\"\\r\\n\\/>\"', 1, '2016-06-12 21:57:56', '2016-06-12 22:12:24', 2, '', 716, 'ed03277d-1daf-4731-b8bb-3ba59402b132', '', '', '', '', ''),
(1321, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'Next Invoice Number', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"next_invoice_number\\\" \\r\\n\\tlabel=\\\"Next Invoice Number\\\" \\r\\n\\tsize=\\\"20\\\" \\r\\n\\tmaxlength=\\\"150\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tdescription=\\\"Enter the next invoice number to use.\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\tfilter=\\\"INT\\\" \\r\\n\\tmessage=\\\"Error! Please add invoice number here.\\\" \\r\\n\\thint=\\\"next number to use\\\" \\r\\n\\tonchange=\\\"if(!jQuery(this).val().match(\\/^\\\\d+$\\/)){jQuery(this).val(\'\')};\\\"\\r\\n\\/>\"', 1, '2016-06-12 22:02:17', '2016-06-14 12:07:21', 2, '', 717, '70f63139-be49-4a11-b70e-0b1c65a42e1c', '', '', '', '', ''),
(1322, '', '', '', '', '', '', '', '', '', '', '', '', '', '', 'Document (Company) - Place Holders', 'NOT NULL', '', 14, '\"<field\\n\\ttype=\\\"note\\\"\\n\\tname=\\\"note_document_placeholders\\\"\\n\\tlabel=\\\"Place Holders\\\"\\n\\tdescription=\\\"[CUSTOMCODE=getPlaceholdersHTMLNote+document]\\\"\\n\\theading=\\\"h4\\\"\\n\\/>\"', 1, '2016-06-12 22:32:49', '2019-05-21 01:01:25', 5, '', 4, 'a5981d64-dd06-40d7-be5c-1f41c7b07749', '', '', '', '', ''),
(1323, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', 2, '', '', 'Proforma NR', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"proforma\\\" \\r\\n\\tlabel=\\\"PI #\\\" \\r\\n\\tsize=\\\"10\\\" \\r\\n\\tmaxlength=\\\"16\\\" \\r\\n\\tclass=\\\"invoices-nr\\\" \\r\\n\\treadonly=\\\"true\\\" \\r\\n\\tdisabled=\\\"false\\\" \\r\\n\\tfilter=\\\"ALNUM\\\" \\r\\n\\/>\"', 1, '2016-06-13 18:29:27', '2016-06-13 18:50:04', 2, '', 682, '6acb778c-9b75-48e8-b9e8-2d4e79794d1b', '', '', '', '', ''),
(1324, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'Next Proforma Number', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"next_proforma_number\\\" \\r\\n\\tlabel=\\\"Next Proforma Number\\\" \\r\\n\\tsize=\\\"20\\\" \\r\\n\\tmaxlength=\\\"150\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tdescription=\\\"Enter the next proforma number to use.\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\tfilter=\\\"INT\\\" \\r\\n\\tmessage=\\\"Error! Please add proforma number here.\\\" \\r\\n\\thint=\\\"next number to use\\\"\\r\\n\\tonchange=\\\"if(!jQuery(this).val().match(\\/^\\\\d+$\\/)){jQuery(this).val(\'\')};\\\" \\r\\n\\/>\"', 1, '2016-06-13 18:43:02', '2016-06-14 12:07:45', 2, '', 717, 'a5ce13c2-52aa-46f8-a013-724f27c85ba2', '', '', '', '', ''),
(1325, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', 2, '', '', 'Unique prefix', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"prefix\\\" \\r\\n\\tlabel=\\\"Unique Prefix\\\" \\r\\n\\tsize=\\\"50\\\" \\r\\n\\tmaxlength=\\\"150\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tdescription=\\\"Set the unique prefix to add to all document numbers, Only Alphabetic Characters!\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\tfilter=\\\"word\\\" \\r\\n\\tmessage=\\\"Error! Please add unique prefix here.\\\" \\r\\n\\thint=\\\"VDM\\\"\\r\\n\\tonchange=\\\"var theVal = jQuery(this).val(); if(!theVal.match(\\/^[a-zA-Z]+$\\/)){jQuery(this).val(\'\')}else{checkUnique(theVal, \'prefix\')}\\\" \\r\\n\\/>\"', 1, '2016-06-14 11:49:35', '2016-06-14 14:15:47', 9, '', 718, '499e52c9-6711-4708-b007-cbafce8dd31c', '', '', '', '', ''),
(1326, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Institution Logo', 'NOT NULL', '', 12, '\"<field \\r\\n\\ttype=\\\"media\\\" \\r\\n\\tname=\\\"institutionlogo\\\" \\r\\n\\tlabel=\\\"Institution Logo\\\" \\r\\n\\tdescription=\\\"select a institution logo from the image folder\\\" \\r\\n\\tdirectory=\\\"\\\" \\r\\n\\tpreview=\\\"tooltip\\\" \\r\\n\\/>\"', 1, '2016-06-17 17:50:54', '2016-05-28 14:36:12', 1, '', 713, 'af11cbcd-cc52-46a9-bd31-b7b2cb434300', '', '', '', '', ''),
(1327, '', '', '', '', '', '', '', '', 64, '', 'CHAR', '', '', '', 'Institution Name (institutionname)', 'NOT NULL', '', 24, '\"<field\\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"institutionname\\\" \\r\\n\\tlabel=\\\"Institution Name\\\" \\r\\n\\tsize=\\\"40\\\" \\r\\n\\tmaxlength=\\\"150\\\" \\r\\n\\tdescription=\\\"Enter Institution Name Here\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\treadonly=\\\"false\\\" \\r\\n\\tdisabled=\\\"false\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\tfilter=\\\"STRING\\\" \\r\\n\\tmessage=\\\"Error! Please add institution name here.\\\" \\r\\n\\thint=\\\"Institution Name Here\\\" \\r\\n\\/>\"', 1, '2016-06-17 17:51:58', '2015-08-25 21:15:22', 1, '', 159, '978304ba-3a57-4f1c-8cf3-1ccf5fbd9460', '', '', '', '', ''),
(1328, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', 2, '', '', 'Report Card (LMS) - Place Holders', 'NOT NULL', '', 14, '\"<field \\r\\n\\ttype=\\\"note\\\" \\r\\n\\tname=\\\"note_header_placeholders\\\" \\r\\n\\tlabel=\\\"Place Holders\\\" \\r\\n\\tdescription=\\\"<code style=\'display: inline-block; padding: 2px; margin: 3px;\'>[institution_name]<\\/code>\\r\\n<code style=\'display: inline-block; padding: 2px; margin: 3px;\'>[institution_website]<\\/code>\\r\\n<code style=\'display: inline-block; padding: 2px; margin: 3px;\'>[institution_logo]<\\/code>\\r\\n<code style=\'display: inline-block; padding: 2px; margin: 3px;\'>[institution_email]<\\/code>\\r\\n<code style=\'display: inline-block; padding: 2px; margin: 3px;\'>[institution_phone]<\\/code>\\r\\n<code style=\'display: inline-block; padding: 2px; margin: 3px;\'>[institution_fax]<\\/code>\\r\\n<code style=\'display: inline-block; padding: 2px; margin: 3px;\'>[institution_mobile]<\\/code>\\r\\n<code style=\'display: inline-block; padding: 2px; margin: 3px;\'>[institution_street]<\\/code>\\r\\n<code style=\'display: inline-block; padding: 2px; margin: 3px;\'>[institution_postal]<\\/code>\\r\\n<code style=\'display: inline-block; padding: 2px; margin: 3px;\'>[institution_city]<\\/code>\\r\\n<code style=\'display: inline-block; padding: 2px; margin: 3px;\'>[institution_region_name]<\\/code>\\r\\n<code style=\'display: inline-block; padding: 2px; margin: 3px;\'>[institution_country_name]<\\/code>\\r\\n<code style=\'display: inline-block; padding: 2px; margin: 3px;\'>[institution_postalcode]<\\/code>\\r\\n<h3>Student<\\/h3>\\r\\n<code style=\'display: inline-block; padding: 2px; margin: 3px;\'>[name]<\\/code>\\r\\n<code style=\'display: inline-block; padding: 2px; margin: 3px;\'>[gender]<\\/code>\\r\\n<code style=\'display: inline-block; padding: 2px; margin: 3px;\'>[marriagestatus]<\\/code>\\r\\n<code style=\'display: inline-block; padding: 2px; margin: 3px;\'>[dateofbirth]<\\/code>\\r\\n<code style=\'display: inline-block; padding: 2px; margin: 3px;\'>[national_id]<\\/code>\\r\\n<code style=\'display: inline-block; padding: 2px; margin: 3px;\'>[occupation]<\\/code>\\r\\n<code style=\'display: inline-block; padding: 2px; margin: 3px;\'>[employer]<\\/code>\\r\\n<code style=\'display: inline-block; padding: 2px; margin: 3px;\'>[email]<\\/code>\\r\\n<code style=\'display: inline-block; padding: 2px; margin: 3px;\'>[home_phone]<\\/code>\\r\\n<code style=\'display: inline-block; padding: 2px; margin: 3px;\'>[work_phone]<\\/code>\\r\\n<code style=\'display: inline-block; padding: 2px; margin: 3px;\'>[mobile_phone]<\\/code>\\r\\n<code style=\'display: inline-block; padding: 2px; margin: 3px;\'>[postal]<\\/code>\\r\\n<code style=\'display: inline-block; padding: 2px; margin: 3px;\'>[street]<\\/code>\\r\\n<code style=\'display: inline-block; padding: 2px; margin: 3px;\'>[city]<\\/code>\\r\\n<code style=\'display: inline-block; padding: 2px; margin: 3px;\'>[region_name]<\\/code>\\r\\n<code style=\'display: inline-block; padding: 2px; margin: 3px;\'>[country_name]<\\/code>\\r\\n<code style=\'display: inline-block; padding: 2px; margin: 3px;\'>[postalcode]<\\/code>\\r\\n<code style=\'display: inline-block; padding: 2px; margin: 3px;\'>[autobiography]<\\/code>\\\" \\r\\n\\theading=\\\"h3\\\" \\r\\n\\/>\"', 1, '2016-06-17 19:29:32', '2016-06-18 21:44:12', 3, '', 4, 'de54fa25-85bc-4004-9957-d654257bdfe0', '', '', '', '', ''),
(1329, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', 2, '', '', 'Region name (not-required)', 'NOT NULL', '', 6, '\"<field \\r\\n\\ttype=\\\"regionname\\\" \\r\\n\\tname=\\\"region\\\" \\r\\n\\tlabel=\\\"Region\\\" \\r\\n\\tdescription=\\\"Please select a region.\\\" \\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\tmultiple=\\\"false\\\"\\r\\n\\tdefault=\\\"0\\\" \\r\\n\\textends=\\\"list\\\" \\r\\n\\tbutton=\\\"true\\\" \\r\\n\\trequired=\\\"false\\\"\\r\\n\\ttable=\\\"#__###component###_region\\\" \\r\\n\\tcomponent=\\\"com_###component###\\\" \\r\\n\\tview=\\\"region\\\" \\r\\n\\tviews=\\\"regions\\\" \\r\\n\\tvalue_field=\\\"name\\\" \\r\\n\\tkey_field=\\\"name\\\" \\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###\',\'b.codetwo\'),array(\'###ID###\',\'###CODE_TEXT###\',\'country\')));\\\" \\r\\n\\ttype_php_4=\\\"$query->from($db->quoteName(\'###TABLE###\', \'a\'));\\\\n\\\\t\\\\t$query->join(\'LEFT\', \'#__###component###_country AS b ON b.id = a.country\');\\\" \\r\\n\\ttype_php_5=\\\"$query->where($db->quoteName(\'a.published\') . \' = 1\');\\\" \\r\\n\\ttype_php_6=\\\"$query->order(\'b.codetwo ASC\');\\\\n\\\\t\\\\t$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 region\');\\\" \\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###.\' (\'.$item->country.\')\');\\\" \\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-06-17 19:56:26', '2016-06-17 20:56:04', 3, '', 667, 'c1e089ad-1b4d-4334-8d1e-e6bc3ba2899c', '', '', '', '', ''),
(1330, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', 2, '', '', 'Country name (not required)', 'NOT NULL', '', 6, '\"<field \\r\\n\\ttype=\\\"countryname\\\" \\r\\n\\tname=\\\"country\\\" \\r\\n\\tlabel=\\\"Default\\\" \\r\\n\\tdescription=\\\"Select a country\\\" \\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\tmultiple=\\\"false\\\" \\r\\n\\tdefault=\\\"0\\\" \\r\\n\\trequired=\\\"\\\" \\r\\n\\treadonly=\\\"\\\" \\r\\n\\tdisabled=\\\"\\\" \\r\\n\\textends=\\\"list\\\" \\r\\n\\tbutton=\\\"false\\\" \\r\\n\\ttable=\\\"#__###component###_country\\\" \\r\\n\\tcomponent=\\\"com_###component###\\\" \\r\\n\\tview=\\\"country\\\" \\r\\n\\tviews=\\\"countries\\\" \\r\\n\\tvalue_field=\\\"name\\\" \\r\\n\\tkey_field=\\\"name\\\" \\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 an option\');\\\" \\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-06-17 20:00:52', '2016-06-11 18:08:39', 1, '', 242, '8d93757e-a8fb-4b66-9aaf-75905ec70ec7', '', '', '', '', ''),
(1331, '', '', '', '', '', '', '', '', 7, '', 'INT', 2, '', '', 'Credit Needed to Pass', 'NOT NULL', '', 10, '\"<field \\r\\n\\ttype=\\\"integer\\\" \\r\\n\\tname=\\\"pass_credit\\\" \\r\\n\\tlabel=\\\"Credit Needed to Pass\\\" \\r\\n\\tdefault=\\\"100\\\" \\r\\n\\tdescription=\\\"Set the total credits needed to pass this program.\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\tfirst=\\\"1\\\" \\r\\n\\tlast=\\\"400\\\" \\r\\n\\tstep=\\\"1\\\" \\r\\n\\/>\"', 1, '2016-06-18 21:25:20', '2016-06-18 23:22:40', 2, '', 605, '384f73c9-5733-4565-b04b-8e2be5c6c6b3', '', '', '', '', ''),
(1332, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Report Card Header', 'NOT NULL', '', 25, '\"<field \\r\\n\\ttype=\\\"textarea\\\" \\r\\n\\tname=\\\"report_card_header\\\" \\r\\n\\tlabel=\\\"Report Card Header\\\" \\r\\n\\trows=\\\"10\\\" \\r\\n\\tcols=\\\"12\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tdescription=\\\"Enter Report Card Header Here\\\" \\r\\n\\tclass=\\\"text_area span12\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\tfilter=\\\"SAFEHTML\\\" \\r\\n\\tmessage=\\\"Error! Please add header here.\\\" \\r\\n\\thint=\\\"Header Here\\\" \\r\\n\\/>\"', 1, '2016-06-18 21:44:53', '2016-06-12 22:32:06', 1, '', 4, '6b0781ab-85be-47e9-b792-a0164b287982', '', '', '', '', ''),
(1333, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Report Card Footer', 'NOT NULL', '', 25, '\"<field \\r\\n\\ttype=\\\"textarea\\\" \\r\\n\\tname=\\\"report_card_footer\\\" \\r\\n\\tlabel=\\\"Report Card Footer\\\" \\r\\n\\trows=\\\"10\\\" \\r\\n\\tcols=\\\"12\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tdescription=\\\"Enter Report Card Footer Here\\\" \\r\\n\\tclass=\\\"text_area span12\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\tfilter=\\\"SAFEHTML\\\" \\r\\n\\tmessage=\\\"Error! Please add footer here.\\\" \\r\\n\\thint=\\\"Footer Here\\\" \\r\\n\\/>\"', 1, '2016-06-18 21:45:34', '2016-06-12 22:32:19', 1, '', 4, 'ab643c47-dc1f-4653-855d-721a26484f7e', '', '', '', '', ''),
(1334, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Set Report Card Header & Footer', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"set_report_card\\\" \\r\\n\\tlabel=\\\"Report Card Header & Footer\\\" \\r\\n\\tdescription=\\\"\\\" \\r\\n\\tclass=\\\"btn-group btn-group-yesno\\\" \\r\\n\\toption=\\\"1|Set Here,2|Use Global\\\" \\r\\n\\tdefault=\\\"2\\\" \\r\\n\\/>\"', 1, '2016-06-18 22:33:42', '2016-06-18 22:44:18', 3, '', 719, '69d486d0-d17f-47eb-ab3d-899613a37d4a', '', '', '', '', ''),
(1335, '', '', '', '', '', '', '', '', 7, '', 'CHAR', 2, '', '', 'Currency (FROM)', 'NOT NULL', '', 6, '\"<field \\r\\n\\ttype=\\\"currency\\\" \\r\\n\\tname=\\\"from\\\" \\r\\n\\tlabel=\\\"From\\\" \\r\\n\\tdescription=\\\"Select the currency.\\\" \\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\tmultiple=\\\"false\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\treadonly=\\\"\\\" \\r\\n\\tdisabled=\\\"\\\" \\r\\n\\textends=\\\"list\\\" \\r\\n\\ttable=\\\"#__###component###_currency\\\" \\r\\n\\tcomponent=\\\"com_###component###\\\" \\r\\n\\tview=\\\"currency\\\" \\r\\n\\tviews=\\\"currencies\\\" \\r\\n\\tvalue_field=\\\"name\\\" \\r\\n\\tkey_field=\\\"codethree\\\" \\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_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-06-28 04:41:37', '2016-06-14 16:25:34', 1, '', 559, 'f2c8507d-0554-4689-94cb-9d7cde00416b', '', '', '', '', ''),
(1336, '', '', '', '', '', '', '', '', 7, '', 'CHAR', 2, '', '', 'Currency (TO)', 'NOT NULL', '', 6, '\"<field \\r\\n\\ttype=\\\"currency\\\" \\r\\n\\tname=\\\"to\\\" \\r\\n\\tlabel=\\\"To\\\" \\r\\n\\tdescription=\\\"Select the currency.\\\" \\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\tmultiple=\\\"false\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\treadonly=\\\"\\\" \\r\\n\\tdisabled=\\\"\\\" \\r\\n\\textends=\\\"list\\\" \\r\\n\\ttable=\\\"#__###component###_currency\\\" \\r\\n\\tcomponent=\\\"com_###component###\\\" \\r\\n\\tview=\\\"currency\\\" \\r\\n\\tviews=\\\"currencies\\\" \\r\\n\\tvalue_field=\\\"name\\\" \\r\\n\\tkey_field=\\\"codethree\\\" \\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_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-06-28 04:41:59', '2016-06-14 16:25:34', 1, '', 559, '470c274e-397b-4c9f-a255-560e4d5ad942', '', '', '', '', ''),
(1337, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Rate', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"rate\\\" \\r\\n\\tlabel=\\\"Rate\\\" \\r\\n\\tsize=\\\"10\\\" \\r\\n\\tmaxlength=\\\"50\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tdescription=\\\"\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\treadonly=\\\"false\\\" \\r\\n\\tdisabled=\\\"false\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\tfilter=\\\"FLOAT\\\" \\r\\n\\tmessage=\\\"Error! Please add number here.\\\" \\r\\n\\thint=\\\"Number Here\\\" \\r\\n\\/>\"', 1, '2016-06-28 04:46:22', '2016-06-28 05:35:14', 3, '', 573, '9d2a0786-b39b-4983-ada0-bd641c9a77e1', '', '', '', '', ''),
(1338, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Rate (ask)', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"ask\\\" \\r\\n\\tlabel=\\\"Ask\\\" \\r\\n\\tsize=\\\"10\\\" \\r\\n\\tmaxlength=\\\"50\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tdescription=\\\"\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\treadonly=\\\"false\\\" \\r\\n\\tdisabled=\\\"false\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\tfilter=\\\"FLOAT\\\" \\r\\n\\tmessage=\\\"Error! Please add number here.\\\" \\r\\n\\thint=\\\"Number Here\\\" \\r\\n\\/>\"', 1, '2016-06-28 04:46:57', '2016-06-28 05:35:28', 2, '', 573, 'ce1f201f-3023-4232-ad64-734d73cb7a53', '', '', '', '', ''),
(1339, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Rate (bid)', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"bid\\\" \\r\\n\\tlabel=\\\"Bid\\\" \\r\\n\\tsize=\\\"10\\\" \\r\\n\\tmaxlength=\\\"50\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tdescription=\\\"\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\treadonly=\\\"false\\\" \\r\\n\\tdisabled=\\\"false\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\tfilter=\\\"FLOAT\\\" \\r\\n\\tmessage=\\\"Error! Please add number here.\\\" \\r\\n\\thint=\\\"Number Here\\\" \\r\\n\\/>\"', 1, '2016-06-28 04:47:24', '2016-06-28 05:35:40', 2, '', 573, 'b3f738b6-6889-43f7-b331-f17047294113', '', '', '', '', ''),
(1340, '', '', '', '', '', '', '', '', 7, '', 'CHAR', 2, '', '', 'Country (CNTRY)', 'NOT NULL', '', 6, '\"<field \\r\\n\\ttype=\\\"cntry\\\" \\r\\n\\tname=\\\"CNTRY\\\" \\r\\n\\tlabel=\\\"CNTRY\\\" \\r\\n\\tdescription=\\\"Select your code three for country.\\\" \\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\tmultiple=\\\"false\\\" \\r\\n\\tdefault=\\\"0\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\treadonly=\\\"\\\" \\r\\n\\tdisabled=\\\"\\\" \\r\\n\\textends=\\\"list\\\" \\r\\n\\tbutton=\\\"false\\\" \\r\\n\\ttable=\\\"#__###component###_country\\\" \\r\\n\\tcomponent=\\\"com_###component###\\\" \\r\\n\\tview=\\\"country\\\" \\r\\n\\tviews=\\\"countries\\\" \\r\\n\\tvalue_field=\\\"codethree\\\" \\r\\n\\tkey_field=\\\"codethree\\\" \\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 an option\');\\\" \\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-06-28 04:59:23', '2016-06-28 05:36:31', 2, '', 242, '55d18e8b-f6bf-45e3-a3f4-d281880acaf7', '', '', '', '', ''),
(1341, '', '', '', '', '', '', '', '', 7, '', 'CHAR', 2, '', '', 'Country (CTRY)', 'NOT NULL', '', 6, '\"<field \\r\\n\\ttype=\\\"ctry\\\" \\r\\n\\tname=\\\"CTRY\\\" \\r\\n\\tlabel=\\\"CTRY\\\" \\r\\n\\tdescription=\\\"Select your code two for country.\\\" \\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\tmultiple=\\\"false\\\" \\r\\n\\tdefault=\\\"0\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\treadonly=\\\"\\\" \\r\\n\\tdisabled=\\\"\\\" \\r\\n\\textends=\\\"list\\\" \\r\\n\\tbutton=\\\"false\\\" \\r\\n\\ttable=\\\"#__###component###_country\\\" \\r\\n\\tcomponent=\\\"com_###component###\\\" \\r\\n\\tview=\\\"country\\\" \\r\\n\\tviews=\\\"countries\\\" \\r\\n\\tvalue_field=\\\"codetwo\\\" \\r\\n\\tkey_field=\\\"codetwo\\\" \\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 an option\');\\\" \\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-06-28 05:00:42', '2016-06-28 05:36:45', 2, '', 242, '328d23d9-224a-4b0d-a35a-c0b839d21de0', '', '', '', '', ''),
(1342, '', '', '', '', '', '', '', '', 11, '', 'CHAR', 2, '', '', 'REGISTRY', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"REGISTRY\\\" \\r\\n\\tlabel=\\\"REGISTRY\\\" \\r\\n\\tsize=\\\"20\\\" \\r\\n\\tmaxlength=\\\"150\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\tdescription=\\\"Enter registry that this range belong to.\\\" \\r\\n\\tclass=\\\"text_area\\\"\\r\\n\\tfilter=\\\"WORD\\\"\\r\\n\\tmessage=\\\"Error! Please add registry that this range belong to here.\\\" \\r\\n\\thint=\\\"apnic\\\" \\r\\n\\/>\"', 1, '2016-06-28 05:04:02', '2016-06-28 05:37:16', 2, '', 242, 'c0afc2aa-b5c1-4555-a852-db7155b04df8', '', '', '', '', ''),
(1343, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', 2, '', '', 'IP_FROM', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"IP_FROM\\\" \\r\\n\\tlabel=\\\"IP From\\\" \\r\\n\\tsize=\\\"20\\\" \\r\\n\\tmaxlength=\\\"150\\\"\\r\\n\\tdescription=\\\"\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\trequired=\\\"true\\\"\\r\\n\\tfilter=\\\"STRING\\\" \\r\\n\\tmessage=\\\"Error! Please add IP FROM here.\\\" \\r\\n\\/>\"', 1, '2016-06-28 05:07:43', '2017-01-14 14:43:52', 2, '', 7, '657988c9-f135-41e4-9589-38282ea8d736', '', '', '', '', ''),
(1344, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', 2, '', '', 'IP_TO', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"IP_TO\\\" \\r\\n\\tlabel=\\\"IP To\\\" \\r\\n\\tsize=\\\"20\\\" \\r\\n\\tmaxlength=\\\"150\\\"\\r\\n\\tdescription=\\\"\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\trequired=\\\"true\\\"\\r\\n\\tfilter=\\\"STRING\\\" \\r\\n\\tmessage=\\\"Error! Please add IP TO here.\\\" \\r\\n\\/>\"', 1, '2016-06-28 05:08:19', '2017-01-14 14:44:35', 2, '', 7, '2558e915-ff9b-4dcc-8442-78496be4cc3a', '', '', '', '', ''),
(1345, '', '', '', '', '', '', '', '', 'Other', 20, 'BIGINT', 2, '', '', 'ASSIGNED', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"ASSIGNED\\\" \\r\\n\\tlabel=\\\"Assigned\\\" \\r\\n\\tsize=\\\"20\\\" \\r\\n\\tmaxlength=\\\"150\\\"\\r\\n\\tdescription=\\\"\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\trequired=\\\"true\\\"\\r\\n\\tfilter=\\\"INT\\\" \\r\\n\\tmessage=\\\"Error! Please add assigned number here.\\\" \\r\\n\\thint=\\\"Only Numbers\\\"\\r\\n\\tonchange=\\\"if(!jQuery(this).val().match(\\/^\\\\d+$\\/)){jQuery(this).val(\'\')};\\\" \\r\\n\\/>\"', 1, '2016-06-28 05:09:04', '2016-05-15 06:08:27', 1, '', 7, '8aed7e6a-656a-429f-928c-e2daeebe90f3', '', '', '', '', ''),
(1346, '', '', '', '', '', '', 'Other', '0000-00-00 00:00:00', '', '', 'DATETIME', '', '', '', 'Date Rate', 'NOT NULL', '', 1, '\"<field \\r\\n\\ttype=\\\"calendar\\\" \\r\\n\\tname=\\\"date_rate\\\" \\r\\n\\tlabel=\\\"Date Rate\\\" \\r\\n\\tdefault=\\\"2016-01-01\\\" \\r\\n\\tdescription=\\\"The date of the rate.\\\" \\r\\n\\tsize=\\\"22\\\"\\r\\n\\tformat=\\\"%Y-%m-%d %H:%M:%S\\\"\\r\\n\\tfilter=\\\"user_utc\\\"\\r\\n\\tescape=\\\"false\\\"\\r\\n\\trequired=\\\"true\\\" \\r\\n\\/>\"', 1, '2016-06-29 15:53:49', '2015-12-07 02:15:24', 1, '', 649, '7fb9fbd3-cb1d-471b-8ba0-c99e426cb361', '', '', '', '', ''),
(1347, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'Discount type', 'NOT NULL', '', 11, '\"<field \\r\\n\\ttype=\\\"list\\\" \\r\\n\\tname=\\\"type\\\" \\r\\n\\tlabel=\\\"Type\\\" \\r\\n\\tdescription=\\\"Select what type of discount this will be.\\\" \\r\\n\\tclass=\\\"list_class dtwidth\\\" \\r\\n\\tmultiple=\\\"false\\\" \\r\\n\\tfilter=\\\"Int\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\toption=\\\"1|Percent (%),2|Fixed ($)\\\" \\r\\n\\tdefault=\\\"1\\\" \\r\\n\\/>\"', 1, '2016-07-19 10:15:15', '2016-07-19 10:25:46', 2, '', 692, '50960fab-b6d8-479b-b055-ff4d4b479afa', '', '', '', '', ''),
(1348, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'Discount (not-required)', 'NOT NULL', '', 6, '\"<field \\r\\n\\ttype=\\\"discount\\\" \\r\\n\\tname=\\\"discount\\\" \\r\\n\\tlabel=\\\"Discount\\\" \\r\\n\\tdescription=\\\"Please select a discount.\\\" \\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\tmultiple=\\\"false\\\"\\r\\n\\tdefault=\\\"0\\\" \\r\\n\\textends=\\\"list\\\" \\r\\n\\tbutton=\\\"true\\\" \\r\\n\\trequired=\\\"false\\\"\\r\\n\\ttable=\\\"#__###component###_discount\\\" \\r\\n\\tcomponent=\\\"com_###component###\\\" \\r\\n\\tview=\\\"discount\\\" \\r\\n\\tviews=\\\"discounts\\\" \\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.amount\',\'a.type\'),array(\'###ID###\',\'###CODE_TEXT###\',\'amount\',\'type\')));\\\" \\r\\n\\ttype_php_4=\\\"$query->from($db->quoteName(\'###TABLE###\', \'a\'));\\\\n\\\\t\\\\t$query->where($db->quoteName(\'a.published\') . \' = 1\');\\\" \\r\\n\\ttype_php_5=\\\"$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$options[] = JHtml::_(\'select.option\', \'\', \'No Discount\');\\\" \\r\\n\\ttype_php_12=\\\"\\\\tforeach($items as $item)\\\" \\r\\n\\ttype_php_13=\\\"\\\\t{\\\" \\r\\n\\ttype_php_14=\\\"\\\\t\\\\t$symbol = ($item->type == 1) ? \'%\' : \' fixed\';\\\"\\r\\n\\ttype_php_15=\\\"\\\\t\\\\t$options[] = JHtml::_(\'select.option\', $item->###ID###, $item->###CODE_TEXT###.\' (\'.$item->amount.$symbol.\')\');\\\" \\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-07-19 10:31:02', '2016-07-19 11:31:36', 4, '', 667, '85832238-5e5b-49ce-a7ec-6c24e97df539', '', '', '', '', ''),
(1349, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Amount (discount)', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"amount\\\" \\r\\n\\tlabel=\\\"Amount\\\" \\r\\n\\tsize=\\\"50\\\" \\r\\n\\tmaxlength=\\\"150\\\"\\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\tfilter=\\\"FLOAT\\\" \\r\\n\\thint=\\\"Only Numbers\\\"\\r\\n\\/>\"', 1, '2016-07-19 10:48:32', '2016-07-19 14:16:19', 4, '', 7, 'c3590cd8-43e4-4f7d-9163-bb782aefddba', '', '', '', '', ''),
(1350, '', '', '', '', '', '', '', '', 100, '', 'VARCHAR', '', '', '', 'Total Price (logo)', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"total\\\" \\r\\n\\tlabel=\\\"Total\\\" \\r\\n\\tsize=\\\"10\\\" \\r\\n\\tmaxlength=\\\"50\\\"\\r\\n\\tclass=\\\"text_area wprice\\\" \\r\\n\\tfilter=\\\"FLOAT\\\"\\r\\n\\treadonly=\\\"true\\\"\\r\\n\\thint=\\\"Total\\\"\\r\\n\\tonchange=\\\"if(!jQuery(this).val().match(\\/^\\\\d+\\\\.\\\\d+$\\/)){jQuery(this).val(\'\')};\\\" \\r\\n\\/>\"', 1, '2016-07-19 13:24:21', '2016-07-19 17:38:20', 3, '', 7, 'a863c813-bd33-44e3-9e3e-1ccdd1e200f3', '', '', '', '', ''),
(1351, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Price (Logo)', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"price\\\" \\r\\n\\tlabel=\\\"Price\\\" \\r\\n\\tsize=\\\"10\\\" \\r\\n\\tmaxlength=\\\"50\\\"\\r\\n\\tclass=\\\"text_area wprice\\\" \\r\\n\\treadonly=\\\"true\\\"\\r\\n\\tfilter=\\\"FLOAT\\\" \\r\\n\\thint=\\\"Only Numbers & dot\\\"\\r\\n\\tonchange=\\\"if(!jQuery(this).val().match(\\/^\\\\d+\\\\.\\\\d+$\\/)){jQuery(this).val(\'\')};\\\" \\r\\n\\/>\"', 1, '2016-07-19 13:24:51', '2016-07-19 17:39:51', 3, '', 7, '735a1bec-47f8-4915-81c0-67c16a3c9acd', '', '', '', '', ''),
(1352, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Stitch Price (Logo)', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"stitch_price\\\" \\r\\n\\tlabel=\\\"Stitch Price (per\\/1000)\\\" \\r\\n\\tsize=\\\"10\\\" \\r\\n\\tmaxlength=\\\"50\\\"\\r\\n\\tclass=\\\"text_area wprice\\\"\\r\\n\\tfilter=\\\"FLOAT\\\" \\r\\n\\thint=\\\"Only Numbers & dot\\\"\\r\\n\\tonchange=\\\"if(!jQuery(this).val().match(\\/^\\\\d+\\\\.\\\\d+$\\/)){jQuery(this).val(\'\')};\\\" \\r\\n\\/>\"', 1, '2016-07-19 17:41:56', '2016-07-19 17:39:51', 1, '', 7, 'a374a09b-2e4f-41e7-a400-8bafc0759273', '', '', '', '', ''),
(1353, '', '', '', '', '', '', '', '', 11, '', 'INT', '', '', '', 'Item (logo)', 'NOT NULL', '', 6, '\"<field \\r\\n\\ttype=\\\"items\\\" \\r\\n\\tname=\\\"item\\\" \\r\\n\\tlabel=\\\"Item\\\" \\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\tmultiple=\\\"false\\\" \\r\\n\\tdefault=\\\"0\\\" \\r\\n\\textends=\\\"list\\\" \\r\\n\\tbutton=\\\"false\\\" \\r\\n\\ttable=\\\"#__###component###_item\\\" \\r\\n\\tcomponent=\\\"com_###component###\\\" \\r\\n\\tview=\\\"item\\\" \\r\\n\\tviews=\\\"items\\\" \\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.code\'),array(\'###ID###\',\'###CODE_TEXT###\',\'code\')));\\\" \\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 item\');\\\" \\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.\' - \'.$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-07-20 11:58:48', '2016-07-20 12:01:30', 2, '', 681, '51a1693b-048e-411f-b8a1-72a5df1ac3a3', '', '', '', '', ''),
(1354, '', '', '', '', '', '', '', '', 11, '', 'INT', '', '', '', 'Production (Products)', 'NOT NULL', '', 11, '\"<field \\r\\n\\ttype=\\\"list\\\" \\r\\n\\tname=\\\"item\\\" \\r\\n\\tlabel=\\\"Item\\\" \\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\tmultiple=\\\"true\\\" \\r\\n\\tfilter=\\\"int\\\" \\r\\n\\toption=\\\"|Own Product\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\/>\"', 1, '2016-08-08 21:17:44', '2016-09-14 15:07:08', 2, '', 720, 'c7cb5d9c-a7dc-4419-8e3f-a61987074445', '', '', '', '', ''),
(1355, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'Production Type', 'NOT NULL', '', 6, '\"<field \\r\\n\\ttype=\\\"productiontype\\\" \\r\\n\\tname=\\\"production_type\\\" \\r\\n\\tlabel=\\\"Type\\\" \\r\\n\\tdescription=\\\"\\\" \\r\\n\\tclass=\\\"list_class production_types\\\" \\r\\n\\tmultiple=\\\"false\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\textends=\\\"list\\\" \\r\\n\\tbutton=\\\"false\\\" \\r\\n\\ttable=\\\"#__###component###_production_type\\\" \\r\\n\\tcomponent=\\\"com_###component###\\\" \\r\\n\\tview=\\\"production_type\\\" \\r\\n\\tviews=\\\"production_types\\\" \\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.ordering 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_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-08-09 20:22:20', '2016-08-09 20:29:47', 2, '', 670, '3745c488-e7ab-43b5-885c-7b03ca6edd88', '', '', '', '', ''),
(1356, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Remove Columns', 'NOT NULL', '', 11, '\"<field \\r\\n\\ttype=\\\"list\\\" \\r\\n\\tname=\\\"remove\\\" \\r\\n\\tlabel=\\\"Remove Columns\\\" \\r\\n\\tdescription=\\\"Select the columns you would like to remove from this production document.\\\" \\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\tmultiple=\\\"true\\\" \\r\\n\\tfilter=\\\"WORD\\\" \\r\\n\\trequired=\\\"\\\" \\r\\n\\toption=\\\"design|Design,item|Item,position|Position,note|Note,stitch|Stitch,qty|QTY,price|Price,total|Total,production_type|Type\\\" \\r\\n\\/>\"', 1, '2016-08-09 22:31:54', '2016-08-10 20:40:45', 2, '', 721, '52223f62-3410-4ab6-92da-7af172d50519', '', '', '', '', ''),
(1357, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Empty Fields', 'NOT NULL', '', 11, '\"<field \\r\\n\\ttype=\\\"list\\\" \\r\\n\\tname=\\\"empty\\\" \\r\\n\\tlabel=\\\"Target Check Empty Fields\\\" \\r\\n\\tdescription=\\\"Select the columns you would like to check if on is left empty.\\\" \\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\tmultiple=\\\"true\\\" \\r\\n\\tfilter=\\\"WORD\\\" \\r\\n\\trequired=\\\"\\\" \\r\\n\\toption=\\\"design|Design,item|Item,position|Position,note|Note,stitch|Stitch,qty|QTY,price|Price,total|Total,production_type|Type\\\" \\r\\n\\/>\"', 1, '2016-08-10 20:40:08', '2016-08-10 20:41:03', 2, '', 721, '24c6b518-cb6d-41f5-adb3-91c200e74707', '', '', '', '', ''),
(1358, '', '', '', '', '', '', '', '', 64, '', 'VARCHAR', 2, '', '', 'Information URL (CBP)', 'NOT NULL', '', 27, '\"<field \\r\\n\\ttype=\\\"url\\\" \\r\\n\\tname=\\\"information_url\\\" \\r\\n\\tlabel=\\\"Information URL\\\" \\r\\n\\tsize=\\\"50\\\" \\r\\n\\tmaxlength=\\\"150\\\" \\r\\n\\tdescription=\\\"Enter the URL where more information is found about the CPB tool.\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\tfilter=\\\"url\\\" \\r\\n\\tvalidated=\\\"url\\\" \\r\\n\\tmessage=\\\"Error! Please add information url here.\\\" \\r\\n\\thint=\\\"http:\\/\\/www.yourwebsite.com\\/\\\" \\r\\n\\/>\"', 1, '2016-08-11 20:44:31', '2016-08-11 20:44:56', 3, '', 637, '72b03932-0f15-4ec1-845f-1c132aea8e92', '', '', '', '', ''),
(1359, '', '', '', '', '', '', '', '', '', '', 'CHAR', '', '', '', 'Local Encryption', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"local_encryption\\\" \\r\\n\\tlabel=\\\"Local Encryption\\\" \\r\\n\\tsize=\\\"50\\\" \\r\\n\\tmaxlength=\\\"150\\\" \\r\\n\\tdefault=\\\"localKey34fdsEkl\\\" \\r\\n\\tdescription=\\\"This key will be used for local encryption.\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\tfilter=\\\"STRING\\\" \\r\\n\\tmessage=\\\"Error! Please add key here.\\\" \\r\\n\\thint=\\\"Your Local Key\\\" \\r\\n\\/>\"', 1, '2016-08-17 22:49:34', '0000-00-00 00:00:00', 1, '', 722, '02093d82-cdf1-4f7e-8d8f-e48733e7c06c', '', '', '', '', ''),
(1360, '', '', '', '', '', '', '', '', '', '', 'CHAR', '', '', '', 'IP Table Updater', 'NOT NULL', '', 11, '\"<field \\r\\n\\ttype=\\\"list\\\" \\r\\n\\tname=\\\"timer_ip_table\\\" \\r\\n\\tlabel=\\\"IP Table Updater\\\" \\r\\n\\tdescription=\\\"Set the intervals for the auto updater.\\\" \\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\tmultiple=\\\"false\\\" \\r\\n\\toption=\\\"0|Never,-30 minutes|Every half an hour,-1 hours|Every hour,-5 hours|Every five hours,-12 hours|Every twelve hours,-1 day|Once a day,-2 day|Every second day,-1 week|Once a week\\\" \\r\\n\\tdefault=\\\"-1 day\\\" \\r\\n\\/>\"', 1, '2016-08-17 22:54:44', '0000-00-00 00:00:00', 1, '', 723, '477e52d3-6065-475c-89f2-7229ac502e66', '', '', '', '', ''),
(1361, '', '', '', '', '', '', '', '', '', '', 'CHAR', '', '', '', 'Exchange Rate Updater', 'NOT NULL', '', 11, '\"<field \\r\\n\\ttype=\\\"list\\\" \\r\\n\\tname=\\\"timer_exchange_rate\\\" \\r\\n\\tlabel=\\\"Exchange Rate Updater\\\" \\r\\n\\tdescription=\\\"Set the intervals for the auto updater.\\\" \\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\tmultiple=\\\"false\\\" \\r\\n\\toption=\\\"-1 minutes|Every minute,-5 minutes|Every 5 minutes,-15 minutes|Every 15 minutes,-30 minutes|Every half an hour,-1 hours|Every hour,-5 hours|Every five hours,-12 hours|Every twelve hours,-1 day|Once a day,-2 day|Every second day,-1 week|Once a week\\\" \\r\\n\\tdefault=\\\"-5 hours\\\" \\r\\n\\/>\"', 1, '2016-08-17 22:55:38', '2018-04-03 10:54:48', 2, '', 723, '0b56f58f-985a-4078-9203-4c699c67cce9', '', '', '', '', ''),
(1362, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Document Heading', 'NOT NULL', '', 25, '\"<field \\r\\n\\ttype=\\\"textarea\\\" \\r\\n\\tname=\\\"doc_heading\\\" \\r\\n\\tlabel=\\\"Document Heading\\\" \\r\\n\\trows=\\\"10\\\" \\r\\n\\tcols=\\\"12\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tdescription=\\\"Enter Document Heading Here\\\" \\r\\n\\tclass=\\\"text_area span12\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\tfilter=\\\"SAFEHTML\\\" \\r\\n\\tmessage=\\\"Error! Please add heading here.\\\" \\r\\n\\thint=\\\"Heading Here\\\" \\r\\n\\/>\"', 1, '2016-08-30 12:59:42', '2016-06-12 22:32:06', 1, '', 4, 'eba15271-c95a-4b06-a0b9-a50d78e99a55', '', '', '', '', ''),
(1363, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'Job Orders (logo)', 'NOT NULL', '', 6, '\"<field \\r\\n\\ttype=\\\"joborders\\\" \\r\\n\\tname=\\\"job_order\\\" \\r\\n\\tlabel=\\\"Job Order\\\" \\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\tmultiple=\\\"false\\\" \\r\\n\\tdefault=\\\"0\\\" \\r\\n\\textends=\\\"list\\\" \\r\\n\\tbutton=\\\"true\\\" \\/\\/ yes we can create user from a job order but we may want to edit them\\r\\n\\ttable=\\\"#__###component###_job_order\\\" \\r\\n\\tcomponent=\\\"com_###component###\\\" \\r\\n\\tview=\\\"job_order\\\" \\r\\n\\tviews=\\\"job_orders\\\" \\r\\n\\tvalue_field=\\\"jobnumber\\\" \\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.client\'),array(\'###ID###\',\'###CODE_TEXT###\',\'client\')));\\\" \\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 job order\');\\\" \\r\\n\\ttype_php_13=\\\"\\\\tforeach($items as $item)\\\" \\r\\n\\ttype_php_14=\\\"\\\\t{\\\" \\r\\n\\ttype_php_15=\\\"\\\\t\\\\tif ($client = ###Component###Helper::getClientDetails($item->client)) { $clientName = \' (\' . $client->name . \')\'; } else { $clientName = \'\'; }\\\" \\r\\n\\ttype_php_16=\\\"\\\\t\\\\t$options[] = JHtml::_(\'select.option\', $item->###ID###, $item->###CODE_TEXT### . $clientName);\\\" \\r\\n\\ttype_php_17=\\\"\\\\t}\\\" \\r\\n\\ttype_php_18=\\\"}\\\" \\r\\n\\ttype_php_19=\\\"return $options;\\\" \\r\\n\\/>\"', 1, '2016-08-31 11:23:14', '2016-09-01 08:44:51', 5, '', 626, 'e25648e6-b548-46fe-8975-d0655e919061', '', '', '', '', ''),
(1364, '', '', '', '', '', '', '', '', 11, '', 'INT', '', '', '', 'Needed QTY', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"needed\\\" \\r\\n\\tlabel=\\\"Needed QTY\\\" \\r\\n\\tsize=\\\"50\\\" \\r\\n\\tmaxlength=\\\"150\\\"\\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\tfilter=\\\"INT\\\" \\r\\n\\thint=\\\"Only Numbers\\\"\\r\\n\\tonchange=\\\"if(!jQuery(this).val().match(\\/^\\\\d+$\\/)){jQuery(this).val(\'\')};\\\" \\r\\n\\/>\"', 1, '2016-08-31 13:34:55', '2016-08-31 13:35:03', 2, '', 7, '7c38d245-520b-45b1-9f09-a8289f9c2d38', '', '', '', '', ''),
(1365, '', '', '', '', '', '', '', '', 11, '', 'INT', '', '', '', 'Ordered QTY', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"ordered\\\" \\r\\n\\tlabel=\\\"Ordered QTY\\\" \\r\\n\\tsize=\\\"50\\\" \\r\\n\\tmaxlength=\\\"150\\\"\\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\tfilter=\\\"INT\\\" \\r\\n\\thint=\\\"Only Numbers\\\"\\r\\n\\tonchange=\\\"if(!jQuery(this).val().match(\\/^\\\\d+$\\/)){jQuery(this).val(\'\')};\\\" \\r\\n\\/>\"', 1, '2016-08-31 13:35:32', '2016-08-31 13:35:03', 1, '', 7, '467f09d5-9f59-46b9-9b7f-48b8449f1dd2', '', '', '', '', ''),
(1366, '', '', '', '', '', '', '', '', 11, '', 'INT', '', '', '', 'Allocated QTY', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"allocated\\\" \\r\\n\\tlabel=\\\"Allocated QTY\\\" \\r\\n\\tsize=\\\"50\\\" \\r\\n\\tmaxlength=\\\"150\\\"\\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\tfilter=\\\"INT\\\" \\r\\n\\thint=\\\"Only Numbers\\\"\\r\\n\\tonchange=\\\"if(!jQuery(this).val().match(\\/^\\\\d+$\\/)){jQuery(this).val(\'\')};\\\" \\r\\n\\/>\"', 1, '2016-08-31 13:37:03', '2016-08-31 13:35:03', 1, '', 7, 'bb8eab99-05d2-4ccc-9559-989fe48a395c', '', '', '', '', ''),
(1367, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Note (needed item)', 'NOT NULL', '', 25, '\"<field \\r\\n\\ttype=\\\"textarea\\\" \\r\\n\\tname=\\\"note\\\" \\r\\n\\tlabel=\\\"Note\\\" \\r\\n\\trows=\\\"3\\\" \\r\\n\\tcols=\\\"5\\\"\\r\\n\\tdescription=\\\"Explain here why the item can\'t be ordered.\\\" \\r\\n\\tclass=\\\"text_area span12\\\" \\r\\n\\tfilter=\\\"STRING\\\" \\r\\n\\thint=\\\"important note\\\"\\r\\n\\tescape=\\\"false\\\"\\r\\n\\/>\"', 1, '2016-09-01 18:06:51', '2016-09-01 22:21:09', 4, '', 687, '98667091-a225-4c33-9c45-b35c6905f054', '', '', '', '', ''),
(1368, '', '', '', '', '', '', 1, '', 1, '', 'TINYINT', 2, '', '', 'Problem (needed item)', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"problem\\\" \\r\\n\\tlabel=\\\"Problem\\\" \\r\\n\\tdescription=\\\"Make note that there is a problem with this item.\\\" \\r\\n\\tclass=\\\"btn-group btn-group-yesno\\\" \\r\\n\\toption=\\\"0|Yes,1|No\\\" \\r\\n\\tdefault=\\\"1\\\" \\r\\n\\trequired=\\\"\\\" \\r\\n\\/>\"', 1, '2016-09-01 18:13:02', '0000-00-00 00:00:00', 1, '', 724, 'e603054d-b227-432e-935c-a344df177bd7', '', '', '', '', ''),
(1369, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Add PHP (getItems Method - After All)', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"add_php_getitems_after_all\\\" \\r\\n\\tlabel=\\\"Add PHP (getItems Method - after all)\\\" \\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-09-02 15:24:27', '2016-09-02 15:23:20', 1, '', 187, '4b956c45-bbcd-4d01-82ce-a85270f44c10', '', '', '', '', ''),
(1370, '', '', '', '', '', '', '', '', '', '', 'MEDIUMTEXT', '', '', '', 'PHP (getItems - JModelAdmin - After All)', 'NOT NULL', 2, 8, '\"<field\\n\\ttype=\\\"editor\\\"\\n\\tname=\\\"php_getitems_after_all\\\"\\n\\tlabel=\\\"PHP getItems Method<br \\/><small>Target (array) $items values<\\/small>\\\"\\n\\tdescription=\\\"Add PHP Here that should run in the getItems Method after all. 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-02 15:26:23', '2019-07-08 14:17:47', 3, '', 118, '887264da-8ea1-4333-8a12-de26f6041251', '', '', '', '', ''),
(1371, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Job Status (logo)', 'NOT NULL', 1, 6, '\"<field \\r\\n\\ttype=\\\"jobstatus\\\" \\r\\n\\tname=\\\"order_status\\\" \\r\\n\\tlabel=\\\"Ordering status\\\" \\r\\n\\tdescription=\\\"Select the status when a Job Orders is ready for ordering of items. (when client has excepted the order)\\\"\\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\treadonly=\\\"false\\\"\\r\\n\\tmultiple=\\\"false\\\" \\r\\n\\tdefault=\\\"0\\\" \\r\\n\\textends=\\\"list\\\" \\r\\n\\tbutton=\\\"false\\\"\\r\\n\\ttable=\\\"#__###component###_job_status\\\" \\r\\n\\tcomponent=\\\"com_###component###\\\" \\r\\n\\tview=\\\"job_status\\\" \\r\\n\\tviews=\\\"job_statuses\\\" \\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.ordering 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_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-09-07 19:12:50', '2016-09-07 19:01:30', 1, '', 681, 'c35f6ea0-d8f8-4ae6-8022-1ac97fabb9e4', '', '', '', '', ''),
(1372, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Add PHP (script - before state change)', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"add_php_before_publish\\\"\\n\\tlabel=\\\"Add PHP (script - before state change)\\\"\\n\\tdescription=\\\"\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"1|Yes,0|No\\\"\\n\\tdefault=\\\"0\\\"\\n\\trequired=\\\"true\\\"\\n\\/>\"', 1, '2016-09-07 20:41:02', '2019-06-12 19:30:33', 3, '', 187, '3b02a65c-1a0a-4e04-8306-34cb484c45fe', '', '', '', '', ''),
(1373, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Add PHP (script - after state change)', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"add_php_after_publish\\\"\\n\\tlabel=\\\"Add PHP (script - after state change)\\\"\\n\\tdescription=\\\"\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"1|Yes,0|No\\\"\\n\\tdefault=\\\"0\\\"\\n\\trequired=\\\"true\\\"\\n\\/>\"', 1, '2016-09-07 20:41:16', '2019-06-12 19:53:27', 2, '', 187, '3eb7643a-7205-4683-9b8b-80c2d65334eb', '', '', '', '', ''),
(1374, '', '', '', '', '', '', '', '', '', '', 'MEDIUMTEXT', '', '', '', 'PHP (script - before state change)', 'NOT NULL', 2, 8, '\"<field\\n\\ttype=\\\"editor\\\"\\n\\tname=\\\"php_before_publish\\\"\\n\\tlabel=\\\"PHP publish Method before<br \\/><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 before items published state is 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:44:19', '2019-07-08 14:17:57', 5, '', 119, 'e4b56d60-7171-43c9-89ad-03f04a2cdba1', '', '', '', '', ''),
(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', '', '', '', '', ''),
(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', '', '', '', '', ''),
(1393, '', '', '', '', '', '', '', '', 255, '', 'TEXT', '', '', '', 'HTTP_HOST', 'NOT NULL', 3, 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"http_host\\\" \\r\\n\\tlabel=\\\"HTTP_HOST\\\" \\r\\n\\tsize=\\\"40\\\" \\r\\n\\tmaxlength=\\\"150\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tdescription=\\\"\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\tfilter=\\\"STRING\\\" \\r\\n\\tmessage=\\\"Error! Please add some text here.\\\" \\r\\n\\thint=\\\"http_host\\\" \\r\\n\\/>\"', 1, '2016-10-22 03:48:20', '2016-10-22 03:58:38', 3, '', 726, 'd0050cdb-927b-4713-8125-07198b410694', '', '', '', '', ''),
(1394, '', '', '', '', '', '', '', '', 255, '', 'TEXT', '', '', '', 'HTTP_USER_AGENT', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"http_user_agent\\\" \\r\\n\\tlabel=\\\"HTTP_USER_AGENT\\\" \\r\\n\\tsize=\\\"100\\\" \\r\\n\\tmaxlength=\\\"250\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tdescription=\\\"\\\" \\r\\n\\tclass=\\\"text_area span12\\\" \\r\\n\\tfilter=\\\"STRING\\\" \\r\\n\\tmessage=\\\"Error! Please add some text here.\\\" \\r\\n\\thint=\\\"http_user_agent\\\" \\r\\n\\/>\"', 1, '2016-10-22 03:49:32', '2016-10-23 21:12:21', 4, '', 726, '7a23eec2-416a-46a6-8267-9778bc6f4ad3', '', '', '', '', ''),
(1395, '', '', '', '', '', '', '', '', 255, '', 'TEXT', '', '', '', 'HTTP_X_REQUESTED_WITH', 'NOT NULL', 3, 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"http_x_requested_with\\\" \\r\\n\\tlabel=\\\"HTTP_X_REQUESTED_WITH\\\" \\r\\n\\tsize=\\\"100\\\" \\r\\n\\tmaxlength=\\\"250\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tdescription=\\\"\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\tfilter=\\\"WORD\\\" \\r\\n\\tmessage=\\\"Error! Please add some text here.\\\" \\r\\n\\thint=\\\"http_x_requested_with\\\" \\r\\n\\/>\"', 1, '2016-10-22 03:52:31', '2016-10-22 03:59:09', 1, '', 726, '4d29046a-07f3-4a7a-87fd-4340e72273db', '', '', '', '', ''),
(1396, '', '', '', '', '', '', '', '', 255, '', 'TEXT', '', '', '', 'HTTP_REFERER', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"http_referer\\\" \\r\\n\\tlabel=\\\"HTTP_REFERER\\\" \\r\\n\\tsize=\\\"100\\\" \\r\\n\\tmaxlength=\\\"250\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tdescription=\\\"\\\" \\r\\n\\tclass=\\\"text_area span12\\\" \\r\\n\\tfilter=\\\"STRING\\\" \\r\\n\\tmessage=\\\"Error! Please add some text here.\\\" \\r\\n\\thint=\\\"http_referer\\\" \\r\\n\\/>\"', 1, '2016-10-22 03:53:32', '2016-10-23 21:11:22', 4, '', 726, '4f298846-d5b4-4ee1-bd0d-ae732be1e6c4', '', '', '', '', ''),
(1397, '', '', '', '', '', '', '', '', 255, '', 'TEXT', '', '', '', 'SERVER_SIGNATURE', 'NOT NULL', 3, 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"server_signature\\\" \\r\\n\\tlabel=\\\"SERVER_SIGNATURE\\\" \\r\\n\\tsize=\\\"100\\\" \\r\\n\\tmaxlength=\\\"250\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tdescription=\\\"\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\tfilter=\\\"STRING\\\" \\r\\n\\tmessage=\\\"Error! Please add some text here.\\\" \\r\\n\\thint=\\\"server_signature\\\" \\r\\n\\/>\"', 1, '2016-10-22 03:54:20', '2016-10-22 03:59:26', 2, '', 726, '9161bff2-829d-4108-b9e6-6e9c9592c43d', '', '', '', '', ''),
(1398, '', '', '', '', '', '', '', '', 255, '', 'TEXT', '', '', '', 'SERVER_SOFTWARE', 'NOT NULL', 3, 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"server_software\\\" \\r\\n\\tlabel=\\\"SERVER_SOFTWARE\\\" \\r\\n\\tsize=\\\"100\\\" \\r\\n\\tmaxlength=\\\"250\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tdescription=\\\"\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\tfilter=\\\"STRING\\\" \\r\\n\\tmessage=\\\"Error! Please add some text here.\\\" \\r\\n\\thint=\\\"server_software\\\" \\r\\n\\/>\"', 1, '2016-10-22 03:55:19', '2016-10-22 03:59:09', 1, '', 726, 'b5e35829-6ca0-41ff-8f17-ecafb641a2d4', '', '', '', '', ''),
(1399, '', '', '', '', '', '', '', '', 255, '', 'TEXT', '', '', '', 'SERVER_NAME', 'NOT NULL', 3, 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"server_name\\\" \\r\\n\\tlabel=\\\"SERVER_NAME\\\" \\r\\n\\tsize=\\\"100\\\" \\r\\n\\tmaxlength=\\\"250\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tdescription=\\\"\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\tfilter=\\\"STRING\\\" \\r\\n\\tmessage=\\\"Error! Please add some text here.\\\" \\r\\n\\thint=\\\"server_name\\\" \\r\\n\\/>\"', 1, '2016-10-22 03:56:33', '2016-10-22 03:59:35', 2, '', 726, '4cdeb35f-cf97-4f1d-a704-3fbfe36a2f3c', '', '', '', '', ''),
(1400, '', '', '', '', '', '', '', '', 255, '', 'TEXT', '', '', '', 'SERVER_ADDR', 'NOT NULL', 3, 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"server_addr\\\" \\r\\n\\tlabel=\\\"SERVER_ADDR\\\" \\r\\n\\tsize=\\\"100\\\" \\r\\n\\tmaxlength=\\\"250\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tdescription=\\\"\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\tfilter=\\\"CMD\\\" \\r\\n\\tmessage=\\\"Error! Please add some text here.\\\" \\r\\n\\thint=\\\"server_addr\\\" \\r\\n\\/>\"', 1, '2016-10-22 03:57:59', '0000-00-00 00:00:00', 1, '', 726, '221263f4-97be-4655-8594-4690266b5a60', '', '', '', '', ''),
(1401, '', '', '', '', '', '', '', '', 10, '', 'TEXT', '', '', '', 'SERVER_PORT', 'NOT NULL', 3, 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"server_port\\\" \\r\\n\\tlabel=\\\"SERVER_PORT\\\" \\r\\n\\tsize=\\\"100\\\" \\r\\n\\tmaxlength=\\\"250\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tdescription=\\\"\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\tfilter=\\\"INT\\\" \\r\\n\\tmessage=\\\"Error! Please add some text here.\\\" \\r\\n\\thint=\\\"server_port\\\" \\r\\n\\/>\"', 1, '2016-10-22 04:01:36', '2016-10-23 05:54:43', 2, '', 726, 'c3d3b6d3-110e-4a13-9c91-d67acfbd695f', '', '', '', '', ''),
(1402, '', '', '', '', '', '', '', '', 10, '', 'TEXT', '', '', '', 'REMOTE_ADDR', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"remote_addr\\\" \\r\\n\\tlabel=\\\"REMOTE_ADDR\\\" \\r\\n\\tsize=\\\"100\\\" \\r\\n\\tmaxlength=\\\"250\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tdescription=\\\"\\\" \\r\\n\\tclass=\\\"text_area span12\\\" \\r\\n\\tfilter=\\\"CMD\\\" \\r\\n\\tmessage=\\\"Error! Please add some text here.\\\" \\r\\n\\thint=\\\"remote_addr\\\" \\r\\n\\/>\"', 1, '2016-10-22 04:02:50', '2016-10-23 21:11:54', 3, '', 726, '7b7d8a6a-f1a2-4e0b-a905-7b6eb4a070b7', '', '', '', '', ''),
(1403, '', '', '', '', '', '', '', '', 10, '', 'TEXT', '', '', '', 'DOCUMENT_ROOT', 'NOT NULL', 3, 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"document_root\\\" \\r\\n\\tlabel=\\\"DOCUMENT_ROOT\\\" \\r\\n\\tsize=\\\"100\\\" \\r\\n\\tmaxlength=\\\"250\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tdescription=\\\"\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\tfilter=\\\"PATH\\\" \\r\\n\\tmessage=\\\"Error! Please add some text here.\\\" \\r\\n\\thint=\\\"document_root\\\" \\r\\n\\/>\"', 1, '2016-10-22 04:03:37', '2016-10-22 04:10:35', 1, '', 726, '0ad6085f-f2a0-43f2-bb00-b51ad740045a', '', '', '', '', ''),
(1404, '', '', '', '', '', '', '', '', 10, '', 'TEXT', '', '', '', 'REQUEST_SCHEME', 'NOT NULL', 3, 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"request_scheme\\\" \\r\\n\\tlabel=\\\"REQUEST_SCHEME\\\" \\r\\n\\tsize=\\\"100\\\" \\r\\n\\tmaxlength=\\\"250\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tdescription=\\\"\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\tfilter=\\\"WORD\\\" \\r\\n\\tmessage=\\\"Error! Please add some text here.\\\" \\r\\n\\thint=\\\"request_scheme\\\" \\r\\n\\/>\"', 1, '2016-10-22 04:04:38', '2016-10-22 04:10:52', 1, '', 726, '906ffd70-ffbe-4bc6-8b45-5ebab1a90b8d', '', '', '', '', ''),
(1405, '', '', '', '', '', '', '', '', 10, '', 'TEXT', '', '', '', 'CONTEXT_DOCUMENT_ROOT', 'NOT NULL', 3, 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"context_document_root\\\" \\r\\n\\tlabel=\\\"CONTEXT_DOCUMENT_ROOT\\\" \\r\\n\\tsize=\\\"100\\\" \\r\\n\\tmaxlength=\\\"250\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tdescription=\\\"\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\tfilter=\\\"PATH\\\" \\r\\n\\tmessage=\\\"Error! Please add some text here.\\\" \\r\\n\\thint=\\\"context_document_root\\\" \\r\\n\\/>\"', 1, '2016-10-22 04:05:34', '2016-10-22 04:10:52', 1, '', 726, '3dbd9946-05eb-47f6-9c97-b1a8bad45ce6', '', '', '', '', ''),
(1406, '', '', '', '', '', '', '', '', 10, '', 'TEXT', '', '', '', 'SERVER_ADMIN', 'NOT NULL', 3, 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"server_admin\\\" \\r\\n\\tlabel=\\\"SERVER_ADMIN\\\" \\r\\n\\tsize=\\\"100\\\" \\r\\n\\tmaxlength=\\\"250\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tdescription=\\\"\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\tfilter=\\\"STRING\\\" \\r\\n\\tmessage=\\\"Error! Please add some text here.\\\" \\r\\n\\thint=\\\"server_admin\\\" \\r\\n\\/>\"', 1, '2016-10-22 04:06:39', '2016-10-22 04:10:52', 1, '', 726, '5fb53cad-b58e-4dc3-849a-ba10dae06416', '', '', '', '', ''),
(1407, '', '', '', '', '', '', '', '', 10, '', 'TEXT', '', '', '', 'SCRIPT_FILENAME', 'NOT NULL', 3, 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"script_filename\\\" \\r\\n\\tlabel=\\\"SCRIPT_FILENAME\\\" \\r\\n\\tsize=\\\"100\\\" \\r\\n\\tmaxlength=\\\"250\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tdescription=\\\"\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\tfilter=\\\"PATH\\\" \\r\\n\\tmessage=\\\"Error! Please add some text here.\\\" \\r\\n\\thint=\\\"script_filename\\\" \\r\\n\\/>\"', 1, '2016-10-22 04:07:37', '2016-10-22 04:10:52', 1, '', 726, '5e17bfff-583d-4046-a269-30d9a96dccf0', '', '', '', '', ''),
(1408, '', '', '', '', '', '', '', '', 10, '', 'TEXT', '', '', '', 'REQUEST_METHOD', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"request_method\\\" \\r\\n\\tlabel=\\\"REQUEST_METHOD\\\" \\r\\n\\tsize=\\\"100\\\" \\r\\n\\tmaxlength=\\\"250\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tdescription=\\\"\\\" \\r\\n\\tclass=\\\"text_area span12\\\" \\r\\n\\tfilter=\\\"WORD\\\" \\r\\n\\tmessage=\\\"Error! Please add some text here.\\\" \\r\\n\\thint=\\\"request_method\\\" \\r\\n\\/>\"', 1, '2016-10-22 04:08:28', '2016-10-23 21:12:35', 3, '', 726, '50e3f751-4bd3-4e99-bbb5-00dbfef9d929', '', '', '', '', ''),
(1409, '', '', '', '', '', '', '', '', 11, '', 'TEXT', '', '', '', 'REQUEST_TIME', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"request_time\\\" \\r\\n\\tlabel=\\\"REQUEST_TIME\\\" \\r\\n\\tsize=\\\"100\\\" \\r\\n\\tmaxlength=\\\"250\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tdescription=\\\"\\\" \\r\\n\\tclass=\\\"text_area span12\\\" \\r\\n\\tfilter=\\\"INT\\\" \\r\\n\\tmessage=\\\"Error! Please add some text here.\\\" \\r\\n\\thint=\\\"request_time\\\" \\r\\n\\/>\"', 1, '2016-10-22 04:09:52', '2016-10-23 21:12:51', 4, '', 726, 'aaa15b8b-aa07-4a3f-bcb7-5931136b6e4c', '', '', '', '', ''),
(1410, '', '', '', '', '', '', '', '', 11, '', 'INT', '', '', '', 'Notice (request_id)', 'NOT NULL', '', 6, '\"<field\\n\\ttype=\\\"noticing\\\"\\n\\tname=\\\"notice_request_id\\\"\\n\\tlabel=\\\"Notice\\\"\\n\\tdescription=\\\"Select the notice being targeted.\\\"\\n\\tclass=\\\"list_class\\\"\\n\\tmultiple=\\\"false\\\"\\n\\tdefault=\\\"0\\\"\\n\\textends=\\\"list\\\"\\n\\tbutton=\\\"true\\\"\\n\\ttable=\\\"#__###component###_notice\\\"\\n\\tcomponent=\\\"com_###component###\\\"\\n\\tview=\\\"notice\\\"\\n\\tviews=\\\"notices\\\"\\n\\tvalue_field=\\\"title\\\"\\n\\tkey_field=\\\"id\\\"\\n\\ttype_php_1=\\\"__.o0=base64=Oo.__Ly8gR2V0IHRoZSB1c2VyIG9iamVjdC4NCgkJJHVzZXIgPSBKRmFjdG9yeTo6Z2V0VXNlcigpOw0KCQkvLyBHZXQgdGhlIGRhdGFic2Ugb2JqZWN0Lg0KCQkkZGIgPSBKRmFjdG9yeTo6Z2V0REJPKCk7DQoJCSRxdWVyeSA9ICRkYi0+Z2V0UXVlcnkodHJ1ZSk7DQoJCSRxdWVyeS0+c2VsZWN0KCRkYi0+cXVvdGVOYW1lKGFycmF5KCdhLiMjI0lEIyMjJywnYS4jIyNURVhUIyMjJyksYXJyYXkoJyMjI0lEIyMjJywnIyMjQ09ERV9URVhUIyMjJykpKTsNCgkJJHF1ZXJ5LT5mcm9tKCRkYi0+cXVvdGVOYW1lKCcjIyNUQUJMRSMjIycsICdhJykpOw0KCQkkcXVlcnktPndoZXJlKCRkYi0+cXVvdGVOYW1lKCdhLnB1Ymxpc2hlZCcpIC4gJyA9IDEnKTsNCgkJJHF1ZXJ5LT5vcmRlcignYS4jIyNURVhUIyMjIEFTQycpOw0KCQkvLyBJbXBsZW1lbnQgVmlldyBMZXZlbCBBY2Nlc3MgKGlmIHNldCBpbiB0YWJsZSkNCgkJaWYgKCEkdXNlci0+YXV0aG9yaXNlKCdjb3JlLm9wdGlvbnMnLCAnW1tbY29tX2NvbXBvbmVudF1dXScpKQ0KCQl7DQoJCQkkY29sdW1ucyA9ICRkYi0+Z2V0VGFibGVDb2x1bW5zKCcjIyNUQUJMRSMjIycpOw0KCQkJaWYoaXNzZXQoJGNvbHVtbnNbJ2FjY2VzcyddKSkNCgkJCXsNCgkJCQkkZ3JvdXBzID0gaW1wbG9kZSgnLCcsICR1c2VyLT5nZXRBdXRob3Jpc2VkVmlld0xldmVscygpKTsNCgkJCQkkcXVlcnktPndoZXJlKCdhLmFjY2VzcyBJTiAoJyAuICRncm91cHMgLiAnKScpOw0KCQkJfQ0KCQl9DQoJCSRkYi0+c2V0UXVlcnkoKHN0cmluZykkcXVlcnkpOw0KCQkkaXRlbXMgPSAkZGItPmxvYWRPYmplY3RMaXN0KCk7DQoJCSRvcHRpb25zID0gYXJyYXkoKTsNCgkJaWYgKCRpdGVtcykNCgkJew0KCQkJaWYgKCR0aGlzLT5tdWx0aXBsZSA9PT0gZmFsc2UpDQoJCQl7DQoJCQkJJG9wdGlvbnNbXSA9IEpIdG1sOjpfKCdzZWxlY3Qub3B0aW9uJywgJycsIEpUZXh0OjpfKCdTZWxlY3QgYW4gb3B0aW9uJykpOw0KCQkJfQ0KCQkJZm9yZWFjaCgkaXRlbXMgYXMgJGl0ZW0pDQoJCQl7DQoJCQkJJG9wdGlvbnNbXSA9IEpIdG1sOjpfKCdzZWxlY3Qub3B0aW9uJywgJGl0ZW0tPiMjI0lEIyMjLCAkaXRlbS0+IyMjQ09ERV9URVhUIyMjKTsNCgkJCX0NCgkJfQ0KCQlyZXR1cm4gJG9wdGlvbnM7\\\"\\n\\/>\"', 1, '2016-10-23 05:40:29', '2021-01-20 13:57:28', 8, '', 725, 'aa94453b-ef5f-4500-b28e-cf7f72d40148', '', '', '', '', ''),
(1411, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'Area of Expertise', 'NOT NULL', '', 6, '\"<field \\r\\n\\ttype=\\\"areaofexpertise\\\" \\r\\n\\tname=\\\"area_of_expertise\\\" \\r\\n\\tlabel=\\\"Area of Expertise\\\" \\r\\n\\tdescription=\\\"Please select the area in which you are an expert.\\\" \\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\tmultiple=\\\"false\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\trequired=\\\"true\\\"\\r\\n\\textends=\\\"list\\\" \\r\\n\\tbutton=\\\"true\\\" \\r\\n\\ttable=\\\"#__###component###_area_of_expertise\\\" \\r\\n\\tcomponent=\\\"com_###component###\\\" \\r\\n\\tview=\\\"area_of_expertise\\\" \\r\\n\\tviews=\\\"areas_of_expertise\\\" \\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 an option\');\\\" \\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-24 10:13:10', '2016-10-24 21:20:01', 4, '', 670, 'bcc78ac1-30e7-46d9-8ef7-69f21528f95f', '', '', '', '', ''),
(1412, '', '', '', '', '', '', '', '', 11, '', 'TEXT', '', '', '', 'Specialisation (multiple)', 'NOT NULL', '', 6, '\"<field \\r\\n\\ttype=\\\"specialisation\\\" \\r\\n\\tname=\\\"specialisation\\\" \\r\\n\\tlabel=\\\"Specialisation\\\" \\r\\n\\tdescription=\\\"Please select the sub-area in which you are an expert.\\\" \\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\tmultiple=\\\"true\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\textends=\\\"list\\\" \\r\\n\\tbutton=\\\"true\\\" \\r\\n\\ttable=\\\"#__###component###_specialisation\\\" \\r\\n\\tcomponent=\\\"com_###component###\\\" \\r\\n\\tview=\\\"specialisation\\\" \\r\\n\\tviews=\\\"specialisations\\\" \\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_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-24 10:16:34', '2016-12-06 08:49:21', 5, '', 670, '0c92d720-dc33-4f99-b3bf-662372616eb0', '', '', '', '', ''),
(1413, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'Academic Qualification', 'NOT NULL', '', 6, '\"<field \\r\\n\\ttype=\\\"academicqualification\\\" \\r\\n\\tname=\\\"academic_qualification\\\" \\r\\n\\tlabel=\\\"Academic Qualification\\\" \\r\\n\\tdescription=\\\"Please select your highest academic qualification.\\\" \\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\tmultiple=\\\"false\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\textends=\\\"list\\\" \\r\\n\\tbutton=\\\"true\\\" \\r\\n\\ttable=\\\"#__###component###_academic_qualification\\\" \\r\\n\\tcomponent=\\\"com_###component###\\\" \\r\\n\\tview=\\\"academic_qualification\\\" \\r\\n\\tviews=\\\"academic_qualifications\\\" \\r\\n\\tvalue_field=\\\"name\\\" \\r\\n\\tkey_field=\\\"id\\\" \\r\\n\\ttype_php_1=\\\"$db = Factory::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[] = Html::_(\'select.option\', \'\', \'Select an option\');\\\" \\r\\n\\ttype_php_13=\\\"\\\\tforeach($items as $item)\\\" \\r\\n\\ttype_php_14=\\\"\\\\t{\\\" \\r\\n\\ttype_php_15=\\\"\\\\t\\\\t$options[] = Html::_(\'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-24 10:18:52', '2016-10-24 19:53:21', 5, '', 670, '211f001c-959d-4769-8329-1f8720896843', '', '', '', '', ''),
(1414, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'Prefix (mr, ms)', 'NOT NULL', '', 6, '\"<field \\r\\n\\ttype=\\\"prefix\\\" \\r\\n\\tname=\\\"prefix\\\" \\r\\n\\tlabel=\\\"Prefix\\\" \\r\\n\\tdescription=\\\"Please select a prefix.\\\" \\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\tmultiple=\\\"false\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\trequired=\\\"true\\\"\\r\\n\\textends=\\\"list\\\" \\r\\n\\tbutton=\\\"true\\\" \\r\\n\\ttable=\\\"#__###component###_prefix\\\" \\r\\n\\tcomponent=\\\"com_###component###\\\" \\r\\n\\tview=\\\"prefix\\\" \\r\\n\\tviews=\\\"prefixes\\\" \\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 an option\');\\\" \\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-24 10:20:24', '2016-11-16 04:43:43', 3, '', 670, 'f8eb74c5-17e3-4ebe-947c-92ab673a392b', '', '', '', '', ''),
(1415, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'Title (dr, prof)', 'NOT NULL', '', 6, '\"<field \\r\\n\\ttype=\\\"title\\\" \\r\\n\\tname=\\\"title\\\" \\r\\n\\tlabel=\\\"Title\\\" \\r\\n\\tdescription=\\\"Please select a title.\\\" \\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\tmultiple=\\\"false\\\" \\r\\n\\trequired=\\\"false\\\"\\r\\n\\tdefault=\\\"\\\" \\r\\n\\textends=\\\"list\\\" \\r\\n\\tbutton=\\\"true\\\" \\r\\n\\ttable=\\\"#__###component###_title\\\" \\r\\n\\tcomponent=\\\"com_###component###\\\" \\r\\n\\tview=\\\"title\\\" \\r\\n\\tviews=\\\"titles\\\" \\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 an option\');\\\" \\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-24 10:21:32', '2016-11-16 04:43:19', 3, '', 670, '28a06479-7c83-4a12-a686-b65c71b59e8b', '', '', '', '', ''),
(1416, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'Nationality (default - required)', 'NOT NULL', '', 6, '\"<field \\r\\n\\ttype=\\\"countries\\\" \\r\\n\\tname=\\\"nationality\\\" \\r\\n\\tlabel=\\\"Nationality\\\" \\r\\n\\tdescription=\\\"Select your nationality.\\\" \\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\tmultiple=\\\"false\\\" \\r\\n\\textends=\\\"list\\\" \\r\\n\\trequired=\\\"true\\\"\\r\\n\\tbutton=\\\"false\\\" \\r\\n\\ttable=\\\"#__###component###_country\\\" \\r\\n\\tcomponent=\\\"com_###component###\\\" \\r\\n\\tview=\\\"country\\\" \\r\\n\\tviews=\\\"countries\\\" \\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 an option\');\\\" \\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-24 12:02:04', '2016-10-24 19:50:51', 4, '', 242, 'db9c5569-2c06-4282-8209-80e69e498e63', '', '', '', '', ''),
(1417, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'Country of Residence (default - required)', 'NOT NULL', '', 6, '\"<field \\r\\n\\ttype=\\\"countries\\\" \\r\\n\\tname=\\\"countryresidence\\\" \\r\\n\\tlabel=\\\"Country of Residence\\\" \\r\\n\\tdescription=\\\"Select your country of residence.\\\" \\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\tmultiple=\\\"false\\\" \\r\\n\\textends=\\\"list\\\" \\r\\n\\trequired=\\\"true\\\"\\r\\n\\tbutton=\\\"false\\\" \\r\\n\\ttable=\\\"#__###component###_country\\\" \\r\\n\\tcomponent=\\\"com_###component###\\\" \\r\\n\\tview=\\\"country\\\" \\r\\n\\tviews=\\\"countries\\\" \\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 an option\');\\\" \\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-24 12:03:25', '2016-11-09 23:16:03', 5, '', 242, '268907f0-3deb-43fc-bf3f-8ddd90332157', '', '', '', '', ''),
(1418, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'City of Residence', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"city\\\" \\r\\n\\tlabel=\\\"City of Residence\\\" \\r\\n\\tsize=\\\"60\\\" \\r\\n\\tmaxlength=\\\"150\\\" \\r\\n\\trequired=\\\"true\\\"\\r\\n\\tdefault=\\\"\\\" \\r\\n\\tdescription=\\\"Please add your city of residence name here\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\tfilter=\\\"STRING\\\" \\r\\n\\tvalidate=\\\"\\\"\\r\\n\\tmessage=\\\"Error! Please add city here.\\\" \\r\\n\\thint=\\\"City Name\\\" \\r\\n\\/>\"', 1, '2016-10-24 12:05:45', '2016-10-25 19:22:15', 4, '', 647, 'efdab2b2-8ce6-4d9d-a4dc-ce42ff2cfd69', '', '', '', '', ''),
(1419, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Contact Address', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"address\\\" \\r\\n\\tlabel=\\\"Contact Address\\\" \\r\\n\\tsize=\\\"60\\\" \\r\\n\\tmaxlength=\\\"150\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tdescription=\\\"Please add your contact address here\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\tfilter=\\\"STRING\\\" \\r\\n\\tvalidate=\\\"\\\"\\r\\n\\tmessage=\\\"Error! Please add contact here.\\\" \\r\\n\\thint=\\\"Street or P.O.Box\\\" \\r\\n\\/>\"', 1, '2016-10-24 12:08:55', '2016-10-24 19:51:48', 3, '', 647, '84cd8c03-032d-4754-9fbf-12ad707279e0', '', '', '', '', ''),
(1420, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Profession', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"profession\\\" \\r\\n\\tlabel=\\\"Profession\\\" \\r\\n\\tsize=\\\"60\\\" \\r\\n\\tmaxlength=\\\"150\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\trequired=\\\"true\\\"\\r\\n\\tdescription=\\\"Please add your profession here\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\tfilter=\\\"STRING\\\" \\r\\n\\tvalidate=\\\"\\\"\\r\\n\\tmessage=\\\"Error! Please add profession here.\\\" \\r\\n\\thint=\\\"Profession\\\" \\r\\n\\/>\"', 1, '2016-10-24 12:10:37', '2016-10-24 21:19:35', 4, '', 647, '0d3184d1-1ce1-4efa-aca1-357d7025f51f', '', '', '', '', ''),
(1421, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Organisation (working at)', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"organisation\\\" \\r\\n\\tlabel=\\\"Organisation\\\" \\r\\n\\tsize=\\\"60\\\" \\r\\n\\tmaxlength=\\\"150\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tdescription=\\\"If you work for an organisation or company with a permanent or semi-permanent contract, please provide the name here.\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\tfilter=\\\"STRING\\\" \\r\\n\\tvalidate=\\\"\\\"\\r\\n\\tmessage=\\\"Error! Please add organisation here.\\\" \\r\\n\\thint=\\\"Organisation\\\" \\r\\n\\/>\"', 1, '2016-10-24 12:13:11', '2016-11-09 22:44:38', 4, '', 647, '10828399-5cd6-4160-89ad-a2afbfa50aa6', '', '', '', '', ''),
(1422, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'Experience', 'NOT NULL', '', 10, '\"<field \\r\\n\\ttype=\\\"integer\\\" \\r\\n\\tname=\\\"experience\\\" \\r\\n\\tlabel=\\\"Experience (years)\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tdescription=\\\"Number of years you have worked as expert in the specified sub-areas.\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\trequired=\\\"\\\" \\r\\n\\tfirst=\\\"1\\\" \\r\\n\\tlast=\\\"80\\\" \\r\\n\\tstep=\\\"1\\\" \\r\\n\\/>\"', 1, '2016-10-24 12:15:35', '2016-10-24 20:00:42', 3, '', 727, '63d9935d-ebd8-48df-8329-052c545294fa', '', '', '', '', ''),
(1423, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Worked For', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"worked_for\\\" \\r\\n\\tlabel=\\\"Worked For\\\" \\r\\n\\tsize=\\\"60\\\" \\r\\n\\tmaxlength=\\\"150\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tdescription=\\\"Organisations or companies you have worked for in the specified sub-area.\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\tfilter=\\\"STRING\\\" \\r\\n\\tvalidate=\\\"\\\"\\r\\n\\tmessage=\\\"Error! Please add worked at names here.\\\" \\r\\n\\thint=\\\"Names\\\" \\r\\n\\/>\"', 1, '2016-10-24 12:18:26', '2016-10-24 19:54:22', 3, '', 647, '32832a7c-3eb4-4d21-a2d3-b75e93c66a3f', '', '', '', '', ''),
(1424, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Membership', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"membership\\\" \\r\\n\\tlabel=\\\"Membership\\\" \\r\\n\\tsize=\\\"60\\\" \\r\\n\\tmaxlength=\\\"150\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tdescription=\\\"In which associations, groups or networks are you a member?\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\tfilter=\\\"STRING\\\" \\r\\n\\tvalidate=\\\"\\\"\\r\\n\\tmessage=\\\"Error! Please add memberships here.\\\" \\r\\n\\thint=\\\"Membership\\\" \\r\\n\\/>\"', 1, '2016-10-24 12:20:09', '2016-10-24 19:54:29', 3, '', 647, '0fdb81b4-85c7-4871-9be1-09bdc7966cbb', '', '', '', '', ''),
(1425, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Professional Networks', 'NOT NULL', '', 27, '\"<field \\r\\n\\ttype=\\\"url\\\" \\r\\n\\tname=\\\"professional_networks\\\" \\r\\n\\tlabel=\\\"Professional Networks\\\" \\r\\n\\tsize=\\\"50\\\" \\r\\n\\tmaxlength=\\\"150\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tdescription=\\\"Please enter the link to your profile on a professional network (e.g. linkedin)\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\tfilter=\\\"url\\\" \\r\\n\\tvalidated=\\\"url\\\" \\r\\n\\tmessage=\\\"Error! Please add website here.\\\" \\r\\n\\thint=\\\"e.g. linkedin\\\" \\r\\n\\/>\"', 1, '2016-10-24 16:19:24', '2016-10-24 19:54:39', 3, '', 647, '7cbba008-baeb-43d4-b54b-c91076c04cc6', '', '', '', '', ''),
(1426, '', '', '', '', '', '', 1, '', 1, '', 'INT', 2, '', '', 'Area of Expertise (privacy)', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"privacy_area_of_expertise\\\" \\r\\n\\tlabel=\\\"Show Area of Expertise Public\\\" \\r\\n\\tdescription=\\\"Select if area of expertise is visible to the public\\\" \\r\\n\\tclass=\\\"btn-group btn-group-yesno vdm-privacy\\\" \\r\\n\\toption=\\\"1|Yes,0|No\\\" \\r\\n\\tdefault=\\\"1\\\" \\r\\n\\/>\"', 1, '2016-10-24 16:25:18', '2017-01-20 15:58:59', 2, '', 728, '55e5774d-f11c-4e70-9e52-b4521272e72b', '', '', '', '', ''),
(1427, '', '', '', '', '', '', 1, '', 1, '', 'INT', 2, '', '', 'Specialisation (privacy)', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"privacy_specialisation\\\" \\r\\n\\tlabel=\\\"Show Specialisation Public\\\" \\r\\n\\tdescription=\\\"Select if specialisation is visible to the public\\\" \\r\\n\\tclass=\\\"btn-group btn-group-yesno vdm-privacy\\\" \\r\\n\\toption=\\\"1|Yes,0|No\\\" \\r\\n\\tdefault=\\\"1\\\" \\r\\n\\/>\"', 1, '2016-10-24 16:26:16', '2017-01-20 15:49:25', 2, '', 728, '563c459d-10a1-4b12-9bdb-c2abcfcca6b3', '', '', '', '', ''),
(1428, '', '', '', '', '', '', 1, '', 1, '', 'INT', 2, '', '', 'Academic Qualification (privacy)', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"privacy_academic_qualification\\\" \\r\\n\\tlabel=\\\"Show Academic Qualification Public\\\" \\r\\n\\tdescription=\\\"Select if academic qualification is visible to the public\\\" \\r\\n\\tclass=\\\"btn-group btn-group-yesno vdm-privacy\\\" \\r\\n\\toption=\\\"1|Yes,0|No\\\" \\r\\n\\tdefault=\\\"1\\\" \\r\\n\\/>\"', 1, '2016-10-24 16:27:04', '2017-01-20 15:50:08', 2, '', 728, '8e7a9473-25c3-4cd0-bc93-c1b29794e43d', '', '', '', '', ''),
(1429, '', '', '', '', '', '', 1, '', 1, '', 'INT', 2, '', '', 'Prefix (privacy)', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"privacy_prefix\\\" \\r\\n\\tlabel=\\\"Show Prefix Public\\\" \\r\\n\\tdescription=\\\"Select if prefix is visible to the public\\\" \\r\\n\\tclass=\\\"btn-group btn-group-yesno vdm-privacy\\\" \\r\\n\\toption=\\\"1|Yes,0|No\\\" \\r\\n\\tdefault=\\\"1\\\" \\r\\n\\/>\"', 1, '2016-10-24 16:28:08', '2017-01-20 15:50:43', 2, '', 728, 'd69ffe3c-7084-42cd-8683-186cabe50418', '', '', '', '', ''),
(1430, '', '', '', '', '', '', 1, '', 1, '', 'INT', 2, '', '', 'Title (privacy)', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"privacy_title\\\" \\r\\n\\tlabel=\\\"Show Title Public\\\" \\r\\n\\tdescription=\\\"Select if title is visible to the public\\\" \\r\\n\\tclass=\\\"btn-group btn-group-yesno vdm-privacy\\\" \\r\\n\\toption=\\\"1|Yes,0|No\\\" \\r\\n\\tdefault=\\\"1\\\" \\r\\n\\/>\"', 1, '2016-10-24 16:29:17', '2017-01-20 15:51:04', 2, '', 728, 'eaef38ae-a07b-4b52-869f-604b7d1ad3e0', '', '', '', '', ''),
(1431, '', '', '', '', '', '', 1, '', 1, '', 'INT', 2, '', '', 'Nationality (privacy)', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"privacy_nationality\\\" \\r\\n\\tlabel=\\\"Show Nationality Public\\\" \\r\\n\\tdescription=\\\"Select if nationality is visible to the public\\\" \\r\\n\\tclass=\\\"btn-group btn-group-yesno vdm-privacy\\\" \\r\\n\\toption=\\\"1|Yes,0|No\\\" \\r\\n\\tdefault=\\\"1\\\" \\r\\n\\/>\"', 1, '2016-10-24 16:29:42', '2017-01-20 15:51:39', 2, '', 728, '713bb8c3-5a0d-4be9-b8bd-1bb745545ed8', '', '', '', '', ''),
(1432, '', '', '', '', '', '', 1, '', 1, '', 'INT', 2, '', '', 'Country of Residence (privacy)', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"privacy_countryresidence\\\" \\r\\n\\tlabel=\\\"Show Country of Residence Public\\\" \\r\\n\\tdescription=\\\"Select if country of residence is visible to the public\\\" \\r\\n\\tclass=\\\"btn-group btn-group-yesno vdm-privacy\\\" \\r\\n\\toption=\\\"1|Yes,0|No\\\" \\r\\n\\tdefault=\\\"1\\\" \\r\\n\\/>\"', 1, '2016-10-24 16:30:16', '2017-01-20 15:52:12', 3, '', 728, '9949bc28-b93e-4f09-8d8f-84bda0863711', '', '', '', '', ''),
(1433, '', '', '', '', '', '', 1, '', 1, '', 'INT', 2, '', '', 'City of Residence (privacy)', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"privacy_city\\\" \\r\\n\\tlabel=\\\"Show City of Residence Public\\\" \\r\\n\\tdescription=\\\"Select if city of residence is visible to the public\\\" \\r\\n\\tclass=\\\"btn-group btn-group-yesno vdm-privacy\\\" \\r\\n\\toption=\\\"1|Yes,0|No\\\" \\r\\n\\tdefault=\\\"1\\\" \\r\\n\\/>\"', 1, '2016-10-24 16:30:43', '2017-01-20 15:53:01', 4, '', 728, '3ea52870-8af1-47bf-b5e0-b9783cacfe3e', '', '', '', '', ''),
(1434, '', '', '', '', '', '', 1, '', 1, '', 'INT', 2, '', '', 'Contact Address (privacy)', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"privacy_address\\\" \\r\\n\\tlabel=\\\"Show Contact Address Public\\\" \\r\\n\\tdescription=\\\"Select if contact address is visible to the public\\\" \\r\\n\\tclass=\\\"btn-group btn-group-yesno vdm-privacy\\\" \\r\\n\\toption=\\\"1|Yes,0|No\\\" \\r\\n\\tdefault=\\\"1\\\" \\r\\n\\/>\"', 1, '2016-10-24 18:19:15', '2017-01-20 15:53:37', 2, '', 728, '43a2976b-493c-4468-bca5-bbf7e35dd018', '', '', '', '', ''),
(1435, '', '', '', '', '', '', 1, '', 1, '', 'INT', 2, '', '', 'Profession (privacy)', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"privacy_profession\\\" \\r\\n\\tlabel=\\\"Show Profession Public\\\" \\r\\n\\tdescription=\\\"Select if profession is visible to the public\\\" \\r\\n\\tclass=\\\"btn-group btn-group-yesno vdm-privacy\\\" \\r\\n\\toption=\\\"1|Yes,0|No\\\" \\r\\n\\tdefault=\\\"1\\\" \\r\\n\\/>\"', 1, '2016-10-24 18:20:20', '2017-01-20 15:54:12', 2, '', 728, '63aca95e-5fe9-44a4-be9a-97348368c23e', '', '', '', '', ''),
(1436, '', '', '', '', '', '', 1, '', 1, '', 'INT', 2, '', '', 'Organisation (privacy)', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"privacy_organisation\\\" \\r\\n\\tlabel=\\\"Show Organisation Public\\\" \\r\\n\\tdescription=\\\"Select if organisation is visible to the public\\\" \\r\\n\\tclass=\\\"btn-group btn-group-yesno vdm-privacy\\\" \\r\\n\\toption=\\\"1|Yes,0|No\\\" \\r\\n\\tdefault=\\\"1\\\" \\r\\n\\/>\"', 1, '2016-10-24 18:20:58', '2017-01-20 15:54:40', 2, '', 728, '33e01d32-3d77-4af3-b8af-7a0ba9ee6a2b', '', '', '', '', ''),
(1437, '', '', '', '', '', '', 1, '', 1, '', 'INT', 2, '', '', 'Experience (privacy)', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"privacy_experience\\\" \\r\\n\\tlabel=\\\"Show Experience Public\\\" \\r\\n\\tdescription=\\\"Select if experience is visible to the public\\\" \\r\\n\\tclass=\\\"btn-group btn-group-yesno vdm-privacy\\\" \\r\\n\\toption=\\\"1|Yes,0|No\\\" \\r\\n\\tdefault=\\\"1\\\" \\r\\n\\/>\"', 1, '2016-10-24 18:21:51', '2017-01-20 15:55:10', 2, '', 728, 'a8642930-e05e-4997-aab8-d1be4f93d327', '', '', '', '', ''),
(1438, '', '', '', '', '', '', 1, '', 1, '', 'INT', 2, '', '', 'Worked For (privacy)', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"privacy_worked_for\\\" \\r\\n\\tlabel=\\\"Show Worked For Public\\\" \\r\\n\\tdescription=\\\"Select if worked for is visible to the public\\\" \\r\\n\\tclass=\\\"btn-group btn-group-yesno vdm-privacy\\\" \\r\\n\\toption=\\\"1|Yes,0|No\\\" \\r\\n\\tdefault=\\\"1\\\" \\r\\n\\/>\"', 1, '2016-10-24 18:22:21', '2017-01-20 15:55:34', 2, '', 728, '9f42d272-a0a1-45ca-80e8-9f992bdb0bbb', '', '', '', '', ''),
(1439, '', '', '', '', '', '', 1, '', 1, '', 'INT', 2, '', '', 'Membership (privacy)', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"privacy_membership\\\" \\r\\n\\tlabel=\\\"Show Membership Public\\\" \\r\\n\\tdescription=\\\"Select if membership is visible to the public\\\" \\r\\n\\tclass=\\\"btn-group btn-group-yesno vdm-privacy\\\" \\r\\n\\toption=\\\"1|Yes,0|No\\\" \\r\\n\\tdefault=\\\"1\\\" \\r\\n\\/>\"', 1, '2016-10-24 18:22:46', '2017-01-20 15:55:52', 3, '', 728, '76bc6a05-f7f6-44ef-beb6-37d1b877389d', '', '', '', '', ''),
(1440, '', '', '', '', '', '', 1, '', 1, '', 'INT', 2, '', '', 'Professional Networks (privacy)', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"privacy_professional_networks\\\" \\r\\n\\tlabel=\\\"Show Professional Networks Public\\\" \\r\\n\\tdescription=\\\"Select if professional networks is visible to the public\\\" \\r\\n\\tclass=\\\"btn-group btn-group-yesno vdm-privacy\\\" \\r\\n\\toption=\\\"1|Yes,0|No\\\" \\r\\n\\tdefault=\\\"1\\\" \\r\\n\\/>\"', 1, '2016-10-24 18:23:22', '2017-01-20 15:56:20', 2, '', 728, '1ff29f85-00f9-469f-87ef-26ba11e387f3', '', '', '', '', ''),
(1441, '', '', '', '', '', '', '', '', 64, '', 'VARCHAR', '', '', '', 'Phone Number (required)', 'NOT NULL', '', 23, '\"<field\\r\\ntype=\\\"text\\\"\\r\\nname=\\\"phone\\\"\\r\\nlabel=\\\"Phone Number\\\"\\r\\nsize=\\\"60\\\"\\r\\nmaxlength=\\\"150\\\"\\r\\nrequired=\\\"true\\\"\\r\\ndefault=\\\"\\\"\\r\\ndescription=\\\"Your phone number.\\\"\\r\\nclass=\\\"text_area\\\"\\r\\nfilter=\\\"STRING\\\"\\r\\nvalidated=\\\"tel\\\"\\r\\nmessage=\\\"Error! Please add phone number here.\\\" \\r\\nhint=\\\"Phone Number Here!\\\" \\/>\"', 1, '2016-10-24 19:30:08', '2016-10-24 21:19:15', 3, '', 7, 'dfb4c805-fd28-4711-aa46-1025dda56dcd', '', '', '', '', ''),
(1442, '', '', '', '', '', '', 1, '', 1, '', 'INT', 2, '', '', 'Phone Number (privacy)', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"privacy_phone\\\" \\r\\n\\tlabel=\\\"Show Phone Number Public\\\" \\r\\n\\tdescription=\\\"Select if phone number is visible to the public\\\" \\r\\n\\tclass=\\\"btn-group btn-group-yesno vdm-privacy\\\" \\r\\n\\toption=\\\"1|Yes,0|No\\\" \\r\\n\\tdefault=\\\"1\\\" \\r\\n\\/>\"', 1, '2016-10-24 19:31:55', '2017-01-20 15:56:46', 2, '', 728, '817676bb-cc25-4876-b4f2-ce6194a21940', '', '', '', '', ''),
(1443, '', '', '', '', '', '', 1, '', 1, '', 'INT', 2, '', '', 'Mobile Phone (privacy)', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"privacy_mobile_phone\\\" \\r\\n\\tlabel=\\\"Show Mobile Phone Public\\\" \\r\\n\\tdescription=\\\"Select if mobile phone is visible to the public\\\" \\r\\n\\tclass=\\\"btn-group btn-group-yesno vdm-privacy\\\" \\r\\n\\toption=\\\"1|Yes,0|No\\\" \\r\\n\\tdefault=\\\"1\\\" \\r\\n\\/>\"', 1, '2016-10-24 19:32:49', '2017-01-20 15:57:14', 2, '', 728, '40b62d8f-1a14-434c-ac07-e88c2a9b0db9', '', '', '', '', ''),
(1444, '', '', '', '', '', '', '', '', 11, '', 'TEXT', '', '', '', 'Geographic Focus (multiple)', 'NOT NULL', '', 6, '\"<field \\r\\n\\ttype=\\\"geographicfocuses\\\" \\r\\n\\tname=\\\"geographic_focus\\\" \\r\\n\\tlabel=\\\"Geographic Focus\\\" \\r\\n\\tdescription=\\\"In which countries \\/ regions have you the most experience?\\\" \\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\tmultiple=\\\"true\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\textends=\\\"list\\\" \\r\\n\\tbutton=\\\"true\\\" \\r\\n\\ttable=\\\"#__###component###_geographic_focus\\\" \\r\\n\\tcomponent=\\\"com_###component###\\\" \\r\\n\\tview=\\\"geographic_focus\\\" \\r\\n\\tviews=\\\"geographic_focuses\\\" \\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_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-24 20:17:11', '2016-12-06 08:49:19', 3, '', 670, '91f4a888-3674-4a67-b81f-336ff9ac4384', '', '', '', '', ''),
(1445, '', '', '', '', '', '', 1, '', 1, '', 'INT', 2, '', '', 'CV (privacy)', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"privacy_cv\\\" \\r\\n\\tlabel=\\\"Show Your CV Public\\\" \\r\\n\\tdescription=\\\"Select if your CV is visible to the public\\\" \\r\\n\\tclass=\\\"btn-group btn-group-yesno vdm-privacy\\\" \\r\\n\\toption=\\\"1|Yes,0|No\\\" \\r\\n\\tdefault=\\\"1\\\" \\r\\n\\/>\"', 1, '2016-10-24 20:17:58', '2017-01-20 15:57:37', 3, '', 728, 'a45a63e7-db79-4344-8ed9-7085553b987a', '', '', '', '', ''),
(1446, '', '', '', '', '', '', 1, '', 1, '', 'INT', 2, '', '', 'Website (privacy)', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"privacy_website\\\" \\r\\n\\tlabel=\\\"Show Website Public\\\" \\r\\n\\tdescription=\\\"Select if website is visible to the public\\\" \\r\\n\\tclass=\\\"btn-group btn-group-yesno vdm-privacy\\\" \\r\\n\\toption=\\\"1|Yes,0|No\\\" \\r\\n\\tdefault=\\\"1\\\" \\r\\n\\/>\"', 1, '2016-10-24 20:18:42', '2017-01-20 15:58:06', 2, '', 728, '6d15a6b9-8aff-4e51-a481-b0c2c67ad145', '', '', '', '', ''),
(1447, '', '', 1, '', '', '', '', '', 1, '', 'CHAR', '', 'alF1ZXJ5KGZ1bmN0aW9uKCQpew0KCXZhciBwcm9ncmVzc2JhciA9ICQoIiNwcm9ncmVzc2JhciIpLA0KCWJhciAgICAgICAgID0gcHJvZ3Jlc3NiYXIuZmluZCgnLnVrLXByb2dyZXNzLWJhcicpLA0KCXNldHRpbmdzICAgID0gew0KDQoJCWFjdGlvbjogSlJvdXRlcignaW5kZXgucGhwP29wdGlvbj1jb21fW1tbY29tcG9uZW50XV1dJnRhc2s9YWpheC51cGxvYWRmaWxlJmZvcm1hdD1qc29uJmN2PTEmcmF3PXRydWUmdG9rZW49Jyt0b2tlbiksIC8vIHVwbG9hZCB1cmwNCg0KCQlhbGxvdyA6ICcqLihwZGYpJywgLy8gYWxsb3cgdXBsb2Fkcw0KDQoJCWxvYWRzdGFydDogZnVuY3Rpb24oKSB7DQoJCQlqUXVlcnkoIi5zdWNjZXNzLXBkZi04NzY4IikucmVtb3ZlKCk7DQoJCQliYXIuY3NzKCJ3aWR0aCIsICIwJSIpLnRleHQoIjAlIik7DQoJCQlwcm9ncmVzc2Jhci5yZW1vdmVDbGFzcygidWstaGlkZGVuIik7DQoJCX0sDQoNCgkJcHJvZ3Jlc3M6IGZ1bmN0aW9uKHBlcmNlbnQpIHsNCgkJCXBlcmNlbnQgPSBNYXRoLmNlaWwocGVyY2VudCk7DQoJCQliYXIuY3NzKCJ3aWR0aCIsIHBlcmNlbnQrIiUiKS50ZXh0KHBlcmNlbnQrIiUiKTsNCgkJfSwNCg0KCQlhbGxjb21wbGV0ZTogZnVuY3Rpb24ocmVzcG9uc2UpIHsNCgkJCWJhci5jc3MoIndpZHRoIiwgIjEwMCUiKS50ZXh0KCIxMDAlIik7DQoJCQlyZXNwb25zZSA9IEpTT04ucGFyc2UocmVzcG9uc2UpOw0KCQkJc2V0VGltZW91dChmdW5jdGlvbigpew0KCQkJCXByb2dyZXNzYmFyLmFkZENsYXNzKCJ1ay1oaWRkZW4iKTsNCgkJCX0sIDI1MCk7DQoJCQlpZiAocmVzcG9uc2UuZXJyb3Ipew0KCQkJCWFsZXJ0KHJlc3BvbnNlLmVycm9yKTsNCgkJCX0gZWxzZSBpZiAocmVzcG9uc2Uuc3VjY2Vzcykgew0KCQkJCS8vIHNldCB0aGUgbmV3IGZpbGUgbmFtZSBhbmQgaWYgYW5vdGhlciBpcyBmb3VuZCBkZWxldGUgaXQNCgkJCQlzZXRDVmtleShyZXNwb25zZS5zdWNjZXNzKTsNCgkJCX0NCgkJfQ0KfTsNCg0KdmFyIHNlbGVjdCA9IFVJa2l0LnVwbG9hZFNlbGVjdCgkKCIjdXBsb2FkLXNlbGVjdC1wZGYiKSwgc2V0dGluZ3MpLA0KCWRyb3AgICA9IFVJa2l0LnVwbG9hZERyb3AoJCgiI3VwbG9hZC1kcm9wLXBkZiIpLCBzZXR0aW5ncyk7DQp9KTsNCg==', '', 'PDF CV Uploader (uikit)', 'NOT NULL', '', 14, '\"<field \\r\\n\\ttype=\\\"note\\\" \\r\\n\\tname=\\\"uikit_pdf_uploader\\\" \\r\\n\\tlabel=\\\"Your PDF CV\\\"\\r\\n\\tdescription=\\\"<div id=\'upload-drop-pdf\' class=\'uk-placeholder\'><br \\/><br \\/><i class=\'uk-icon-cloud-upload uk-icon-medium uk-text-muted uk-margin-small-right\'><\\/i> Upload Your <strong>PDF CV<\\/strong> by dropping the file here or <a class=\'uk-form-file\'>selecting the file from your computer<input id=\'upload-select-pdf\' type=\'file\'><\\/a><br \\/><br \\/><br \\/><\\/div><div id=\'progressbar\' class=\'uk-progress uk-hidden\'><div class=\'uk-progress-bar\' style=\'width: 0%;\'>...<\\/div><\\/div>\\\" \\r\\n\\/>\"', 1, '2016-10-25 10:05:13', '2017-01-05 15:54:28', 34, '', 110, '652b206b-f289-40e7-bd62-7a5e2d8193db', '', '', '', '', ''),
(1448, '', '', '', '', '', '', '', '', 255, '', 'TEXT', '', '', '', 'CV Key', 'NOT NULL', 3, 9, '\"<field \\r\\n\\ttype=\\\"hidden\\\" \\r\\n\\tname=\\\"cvkey\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\/>\"', 1, '2016-10-26 02:31:04', '2016-11-19 06:06:52', 3, '', 729, '853c8528-4977-4c6c-8d29-eee342c071db', '', '', '', '', ''),
(1449, '', '', '', '', '', '', '', '', '', '', 'CHAR', '', '', '', 'Safe Path', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"safepath\\\" \\r\\n\\tlabel=\\\"Safe Path\\\" \\r\\n\\tsize=\\\"50\\\" \\r\\n\\tmaxlength=\\\"150\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tdescription=\\\"Set the path where the uploaded files must be stored\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\tfilter=\\\"PATH\\\" \\r\\n\\tmessage=\\\"Error! Please add path here.\\\" \\r\\n\\thint=\\\"\\/home\\/user\\/safe\\/\\\" \\r\\n\\/>\"', 1, '2016-10-26 02:41:54', '0000-00-00 00:00:00', 1, '', 730, '7aca0503-d346-4b39-ab3f-a002d639ec04', '', '', '', '', ''),
(1450, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'Expert User (user)', 'NOT NULL', '', 7, '\"<field \\r\\n\\ttype=\\\"expertuser\\\" \\r\\n\\tname=\\\"user\\\" \\r\\n\\tlabel=\\\"Expert\\\" \\r\\n\\trequired=\\\"true\\\"\\r\\n\\thint=\\\"select an expert\\\" \\r\\n\\textends=\\\"user\\\" \\r\\n\\ttable=\\\"#__users\\\" \\r\\n\\tcomponent=\\\"com_users\\\" \\r\\n\\tview=\\\"###view###\\\" \\r\\n\\tviews=\\\"###views###\\\" \\r\\n\\tvalue_field=\\\"name\\\" \\r\\n\\tkey_field=\\\"id\\\" \\r\\n\\ttype_php_1=\\\"\\/\\/ set the groups array\\\" \\r\\n\\ttype_php_2=\\\"$groups = JComponentHelper::getParams(\'com_###component###\')->get(\'###type###\');\\\" \\r\\n\\ttype_php_3=\\\"return $groups;\\\"\\r\\n\\ttype_phpx_1=\\\"\\/\\/ To ensure that there is only one record per user\\\" \\r\\n\\ttype_phpx_2=\\\"\\/\\/ Get a db connection.\\\" \\r\\n\\ttype_phpx_3=\\\"$db = JFactory::getDbo();\\\" \\r\\n\\ttype_phpx_4=\\\"\\/\\/ Create a new query object.\\\" \\r\\n\\ttype_phpx_5=\\\"$query = $db->getQuery(true);\\\" \\r\\n\\ttype_phpx_6=\\\"\\/\\/ Select all records from the #__###component###_###view### table from ###CODE### column\\\".\\\" \\r\\n\\ttype_phpx_7=\\\"$query->select($db->quoteName(\'###CODE###\'));\\\" \\r\\n\\ttype_phpx_8=\\\"$query->from($db->quoteName(\'#__###component###_###view###\'));\\\" \\r\\n\\ttype_phpx_9=\\\"$db->setQuery($query);\\\" \\r\\n\\ttype_phpx_10=\\\"$db->execute();\\\" \\r\\n\\ttype_phpx_11=\\\"$found = $db->getNumRows();\\\" \\r\\n\\ttype_phpx_12=\\\"if ($found)\\\" \\r\\n\\ttype_phpx_13=\\\"{\\\" \\r\\n\\ttype_phpx_14=\\\"\\\\t\\/\\/ return all users already used\\\" \\r\\n\\ttype_phpx_15=\\\"\\\\treturn array_unique($db->loadColumn());\\\" \\r\\n\\ttype_phpx_16=\\\"}\\\" \\r\\n\\ttype_phpx_17=\\\"return null;\\\" \\r\\n\\/>\"', 1, '2016-10-27 12:51:16', '2016-10-27 13:05:27', 4, '', 596, '40c3402f-ddb8-4820-8345-d08c66314cd4', '', '', '', '', ''),
(1451, '', '', '', '', '', '', '', '', '', '', 'CHAR', '', '', '', 'Access Details', 'NOT NULL', '', 14, '\"<field \\r\\n\\ttype=\\\"note\\\" \\r\\n\\tname=\\\"note_access_details\\\" \\r\\n\\tlabel=\\\"Access Details\\\" \\r\\n\\theading=\\\"h4\\\" \\r\\n\\/>\"', 1, '2016-10-28 16:06:56', '2016-10-28 16:16:58', 3, '', 731, '5ab84a37-b2d7-4515-a421-cdee96328a5d', '', '', '', '', ''),
(1452, '', '', '', '', '', '', '', '', '', '', 'CHAR', '', '', '', 'Contact Details', 'NOT NULL', '', 14, '\"<field \\r\\n\\ttype=\\\"note\\\" \\r\\n\\tname=\\\"note_contact_details\\\" \\r\\n\\tlabel=\\\"Contact Details\\\" \\r\\n\\theading=\\\"h4\\\" \\r\\n\\/>\"', 1, '2016-10-28 16:11:39', '2016-10-28 16:25:04', 2, '', 731, '504c356f-bc0f-4d4e-9653-4d05a1e89d2a', '', '', '', '', ''),
(1453, '', '', '', '', '', '', '', '', '', '', 'CHAR', '', '', '', 'Reference Details', 'NOT NULL', '', 14, '\"<field \\r\\n\\ttype=\\\"note\\\" \\r\\n\\tname=\\\"note_reference_details\\\" \\r\\n\\tlabel=\\\"Here you must add persons who can verify your experience in the field\\\" \\r\\n\\tdescription=\\\"It is <b><span style=\'color:red;\'>mandatory to add at least one reference person<\\/span><\\/b> in order to <b>verify the information you provided<\\/b>. A summary will be send to the <b>first reference person<\\/b> you add and they will be asked to verify the information by <b>clicking a link in the mail<\\/b>. You cannot delete or change this reference person details after this person has verified your information, unless you contact support with the reasons for doing so. Please note that these reference details are not shown to the public, but are available to our partnering organisations.\\\"\\r\\n\\theading=\\\"h2\\\" \\r\\n\\tclass=\\\"alert alert-info\\\" \\r\\n\\/>\"', 1, '2016-10-28 16:16:31', '2016-11-12 07:26:11', 10, '', 731, '8e927a41-6f0f-4ec3-9e57-6c999fb46bce', '', '', '', '', ''),
(1454, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', 2, '', '', 'Full Name', 'NOT NULL', '', 24, '\"<field\\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"name\\\" \\r\\n\\tlabel=\\\"Full Name\\\" \\r\\n\\tsize=\\\"50\\\" \\r\\n\\tmaxlength=\\\"150\\\" \\r\\n\\tdescription=\\\"\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\treadonly=\\\"false\\\" \\r\\n\\tdisabled=\\\"false\\\" \\r\\n\\trequired=\\\"true\\\"\\r\\n\\tfilter=\\\"STRING\\\" \\r\\n\\tmessage=\\\"Error! Please add name here.\\\" \\r\\n\\thint=\\\"Full Name\\\" \\r\\n\\/>\"', 1, '2016-10-29 12:38:55', '2016-10-18 12:42:57', 1, '', 4, 'a8f1a0df-970c-4780-b442-09f0c4b01ff8', '', '', '', '', ''),
(1455, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Email (no desc)', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"email\\\" \\r\\n\\tlabel=\\\"Email\\\" \\r\\n\\tsize=\\\"10\\\" \\r\\n\\tmaxlength=\\\"50\\\" \\r\\n\\tdescription=\\\"\\\" \\r\\n\\tclass=\\\"text_area\\\"\\r\\n\\tfilter=\\\"STRING\\\" \\r\\n\\tvalidate=\\\"email\\\" \\r\\n\\trequired=\\\"true\\\"\\r\\n\\tmessage=\\\"Error! Please add email address here.\\\" \\r\\n\\thint=\\\"Email Here\\\" \\r\\n\\/>\"', 1, '2016-10-29 13:03:44', '2016-02-07 23:00:02', 1, '', 53, 'f3374d5f-1fde-4973-abbd-8a1b12b39172', '', '', '', '', ''),
(1456, '', '', '', '', '', '', '', '', 64, '', 'VARCHAR', '', '', '', 'Phone', 'NOT NULL', '', 23, '\"<field \\r\\ntype=\\\"text\\\" \\r\\nname=\\\"phone\\\" \\r\\nlabel=\\\"Phone\\\" \\r\\nsize=\\\"10\\\" \\r\\nmaxlength=\\\"50\\\" \\r\\ndefault=\\\"\\\" \\r\\ndescription=\\\"\\\" \\r\\nclass=\\\"text_area\\\" \\r\\nfilter=\\\"tel\\\" \\r\\nvalidated=\\\"tel\\\" \\r\\nmessage=\\\"Error! Please add phone number here.\\\" \\r\\nhint=\\\"Phone Number\\\" \\r\\n\\/>\"', 1, '2016-10-29 13:07:18', '2016-10-29 13:05:55', 1, '', 47, '720e7ae6-ba48-4ea1-9a7e-b1a291cc9236', '', '', '', '', ''),
(1457, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Contact Address (Text Area)', 'NOT NULL', '', 25, '\"<field \\r\\n\\ttype=\\\"textarea\\\" \\r\\n\\tname=\\\"address\\\" \\r\\n\\tlabel=\\\"Contact Address\\\" \\r\\n\\tsize=\\\"100\\\" \\r\\n\\tmaxlength=\\\"150\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tdescription=\\\"\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\tfilter=\\\"STRING\\\" \\r\\n\\tvalidate=\\\"\\\"\\r\\n\\tmessage=\\\"Error! Please add contact here.\\\" \\r\\n\\thint=\\\"Street or P.O.Box\\\"\\r\\n\\trows=\\\"10\\\" \\r\\n\\tcols=\\\"5\\\"\\r\\n\\/>\"', 1, '2016-10-29 13:10:19', '2016-10-24 19:51:48', 1, '', 647, '08425d09-241e-41ab-9cf0-f2ee322c2251', '', '', '', '', ''),
(1458, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'References', 'NOT NULL', '', 19, '\"<field \\r\\n\\ttype=\\\"repeatable\\\" \\r\\n\\tname=\\\"reference\\\" \\r\\n\\tlabel=\\\"References\\\" \\r\\n\\tdescription=\\\"Person who can verify your experience in the field.\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tid=\\\"reference\\\" \\r\\n\\tclass=\\\"references\\\" \\r\\n\\tselect=\\\"Add\\/Edit\\\" \\r\\n\\ticon=\\\"list\\\" \\r\\n\\tmaximum=\\\"5\\\" \\r\\n\\tfields=\\\"1454, 1455, 1456, 1489, 1484, 1207\\\" \\r\\n\\/>\"', 1, '2016-10-29 13:14:40', '2016-11-19 05:06:39', 4, '', 732, '05c396f2-74df-4bbe-bfc0-2bc3bca7d1d3', '', '', '', '', ''),
(1459, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'Target (notice)', 'NOT NULL', '', 6, '\"<field\\n\\ttype=\\\"targeted\\\"\\n\\tname=\\\"target\\\"\\n\\tlabel=\\\"Target\\\"\\n\\tdescription=\\\"\\\"\\n\\tclass=\\\"list_class\\\"\\n\\tmultiple=\\\"false\\\"\\n\\tdefault=\\\"0\\\"\\n\\trequired=\\\"true\\\"\\n\\textends=\\\"list\\\"\\n\\tbutton=\\\"true\\\"\\n\\ttable=\\\"#__###component###_target\\\"\\n\\tcomponent=\\\"com_###component###\\\"\\n\\tview=\\\"target\\\"\\n\\tviews=\\\"targets\\\"\\n\\tvalue_field=\\\"name\\\"\\n\\tkey_field=\\\"id\\\"\\n\\tprime_php=\\\"1\\\"\\n\\ttype_php_1=\\\"__.o0=base64=Oo.__Ly8gR2V0IHRoZSB1c2VyIG9iamVjdC4NCgkJJHVzZXIgPSBKRmFjdG9yeTo6Z2V0VXNlcigpOw0KCQkvLyBHZXQgdGhlIGRhdGFic2Ugb2JqZWN0Lg0KCQkkZGIgPSBKRmFjdG9yeTo6Z2V0REJPKCk7DQoJCSRxdWVyeSA9ICRkYi0+Z2V0UXVlcnkodHJ1ZSk7DQoJCSRxdWVyeS0+c2VsZWN0KCRkYi0+cXVvdGVOYW1lKGFycmF5KCdhLiMjI0lEIyMjJywnYS4jIyNURVhUIyMjJyksYXJyYXkoJyMjI0lEIyMjJywnIyMjQ09ERV9URVhUIyMjJykpKTsNCgkJJHF1ZXJ5LT5mcm9tKCRkYi0+cXVvdGVOYW1lKCcjIyNUQUJMRSMjIycsICdhJykpOw0KCQkkcXVlcnktPndoZXJlKCRkYi0+cXVvdGVOYW1lKCdhLnB1Ymxpc2hlZCcpIC4gJyA9IDEnKTsNCgkJJHF1ZXJ5LT5vcmRlcignYS4jIyNURVhUIyMjIEFTQycpOw0KCQkvLyBJbXBsZW1lbnQgVmlldyBMZXZlbCBBY2Nlc3MgKGlmIHNldCBpbiB0YWJsZSkNCgkJaWYgKCEkdXNlci0+YXV0aG9yaXNlKCdjb3JlLm9wdGlvbnMnLCAnW1tbY29tX2NvbXBvbmVudF1dXScpKQ0KCQl7DQoJCQkkY29sdW1ucyA9ICRkYi0+Z2V0VGFibGVDb2x1bW5zKCcjIyNUQUJMRSMjIycpOw0KCQkJaWYoaXNzZXQoJGNvbHVtbnNbJ2FjY2VzcyddKSkNCgkJCXsNCgkJCQkkZ3JvdXBzID0gaW1wbG9kZSgnLCcsICR1c2VyLT5nZXRBdXRob3Jpc2VkVmlld0xldmVscygpKTsNCgkJCQkkcXVlcnktPndoZXJlKCdhLmFjY2VzcyBJTiAoJyAuICRncm91cHMgLiAnKScpOw0KCQkJfQ0KCQl9DQoJCSRkYi0+c2V0UXVlcnkoKHN0cmluZykkcXVlcnkpOw0KCQkkaXRlbXMgPSAkZGItPmxvYWRPYmplY3RMaXN0KCk7DQoJCSRvcHRpb25zID0gYXJyYXkoKTsNCgkJaWYgKCRpdGVtcykNCgkJew0KCQkJaWYgKCR0aGlzLT5tdWx0aXBsZSA9PT0gZmFsc2UpDQoJCQl7DQoJCQkJJG9wdGlvbnNbXSA9IEpIdG1sOjpfKCdzZWxlY3Qub3B0aW9uJywgJycsIEpUZXh0OjpfKCdTZWxlY3QgYW4gb3B0aW9uJykpOw0KCQkJfQ0KCQkJZm9yZWFjaCgkaXRlbXMgYXMgJGl0ZW0pDQoJCQl7DQoJCQkJJG9wdGlvbnNbXSA9IEpIdG1sOjpfKCdzZWxlY3Qub3B0aW9uJywgJGl0ZW0tPiMjI0lEIyMjLCAkaXRlbS0+IyMjQ09ERV9URVhUIyMjKTsNCgkJCX0NCgkJfQ0KCQlyZXR1cm4gJG9wdGlvbnM7\\\"\\n\\/>\"', 1, '2016-10-31 12:42:10', '2021-01-20 13:57:17', 5, '', 733, '5d1f6b59-6a30-4634-9dc2-fa4a74c000a7', '', '', '', '', ''),
(1460, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'Target (notice - request_id)', 'NOT NULL', '', 6, '\"<field\\n\\ttype=\\\"targeted\\\"\\n\\tname=\\\"target_request_id\\\"\\n\\tlabel=\\\"Target\\\"\\n\\tdescription=\\\"Select the target.\\\"\\n\\tclass=\\\"list_class\\\"\\n\\tmultiple=\\\"false\\\"\\n\\tdefault=\\\"0\\\"\\n\\trequired=\\\"true\\\"\\n\\textends=\\\"list\\\"\\n\\tbutton=\\\"true\\\"\\n\\ttable=\\\"#__###component###_target\\\"\\n\\tcomponent=\\\"com_###component###\\\"\\n\\tview=\\\"target\\\"\\n\\tviews=\\\"targets\\\"\\n\\tvalue_field=\\\"name\\\"\\n\\tkey_field=\\\"id\\\"\\n\\ttype_php_1=\\\"__.o0=base64=Oo.__Ly8gR2V0IHRoZSB1c2VyIG9iamVjdC4NCgkJJHVzZXIgPSBKRmFjdG9yeTo6Z2V0VXNlcigpOw0KCQkvLyBHZXQgdGhlIGRhdGFic2Ugb2JqZWN0Lg0KCQkkZGIgPSBKRmFjdG9yeTo6Z2V0REJPKCk7DQoJCSRxdWVyeSA9ICRkYi0+Z2V0UXVlcnkodHJ1ZSk7DQoJCSRxdWVyeS0+c2VsZWN0KCRkYi0+cXVvdGVOYW1lKGFycmF5KCdhLiMjI0lEIyMjJywnYS4jIyNURVhUIyMjJyksYXJyYXkoJyMjI0lEIyMjJywnIyMjQ09ERV9URVhUIyMjJykpKTsNCgkJJHF1ZXJ5LT5mcm9tKCRkYi0+cXVvdGVOYW1lKCcjIyNUQUJMRSMjIycsICdhJykpOw0KCQkkcXVlcnktPndoZXJlKCRkYi0+cXVvdGVOYW1lKCdhLnB1Ymxpc2hlZCcpIC4gJyA9IDEnKTsNCgkJJHF1ZXJ5LT5vcmRlcignYS4jIyNURVhUIyMjIEFTQycpOw0KCQkvLyBJbXBsZW1lbnQgVmlldyBMZXZlbCBBY2Nlc3MgKGlmIHNldCBpbiB0YWJsZSkNCgkJaWYgKCEkdXNlci0+YXV0aG9yaXNlKCdjb3JlLm9wdGlvbnMnLCAnW1tbY29tX2NvbXBvbmVudF1dXScpKQ0KCQl7DQoJCQkkY29sdW1ucyA9ICRkYi0+Z2V0VGFibGVDb2x1bW5zKCcjIyNUQUJMRSMjIycpOw0KCQkJaWYoaXNzZXQoJGNvbHVtbnNbJ2FjY2VzcyddKSkNCgkJCXsNCgkJCQkkZ3JvdXBzID0gaW1wbG9kZSgnLCcsICR1c2VyLT5nZXRBdXRob3Jpc2VkVmlld0xldmVscygpKTsNCgkJCQkkcXVlcnktPndoZXJlKCdhLmFjY2VzcyBJTiAoJyAuICRncm91cHMgLiAnKScpOw0KCQkJfQ0KCQl9DQoJCSRkYi0+c2V0UXVlcnkoKHN0cmluZykkcXVlcnkpOw0KCQkkaXRlbXMgPSAkZGItPmxvYWRPYmplY3RMaXN0KCk7DQoJCSRvcHRpb25zID0gYXJyYXkoKTsNCgkJaWYgKCRpdGVtcykNCgkJew0KCQkJaWYgKCR0aGlzLT5tdWx0aXBsZSA9PT0gZmFsc2UpDQoJCQl7DQoJCQkJJG9wdGlvbnNbXSA9IEpIdG1sOjpfKCdzZWxlY3Qub3B0aW9uJywgJycsIEpUZXh0OjpfKCdTZWxlY3QgYW4gb3B0aW9uJykpOw0KCQkJfQ0KCQkJZm9yZWFjaCgkaXRlbXMgYXMgJGl0ZW0pDQoJCQl7DQoJCQkJJG9wdGlvbnNbXSA9IEpIdG1sOjpfKCdzZWxlY3Qub3B0aW9uJywgJGl0ZW0tPiMjI0lEIyMjLCAkaXRlbS0+IyMjQ09ERV9URVhUIyMjKTsNCgkJCX0NCgkJfQ0KCQlyZXR1cm4gJG9wdGlvbnM7\\\"\\n\\/>\"', 1, '2016-10-31 13:47:05', '2021-01-20 13:57:04', 5, '', 733, 'c4812499-e513-4d9d-bc14-d188a466c901', '', '', '', '', ''),
(1461, '', '', '', '', '', '', 'Other', '0000-00-00 00:00:00', '', '', 'DATETIME', '', '', '', 'Activate Notice', 'NOT NULL', '', 1, '\"<field \\r\\n\\ttype=\\\"calendar\\\" \\r\\n\\tname=\\\"activate\\\" \\r\\n\\tlabel=\\\"Activate Notice\\\" \\r\\n\\tdefault=\\\"NOW\\\" \\r\\n\\tdescription=\\\"Select the date when the notice should be activated.\\\" \\r\\n\\tsize=\\\"22\\\"\\r\\n\\tformat=\\\"%Y-%m-%d %H:%M:%S\\\"\\r\\n\\tfilter=\\\"user_utc\\\"\\r\\n\\trequired=\\\"true\\\" \\r\\n\\/>\"', 1, '2016-10-31 14:22:50', '2016-10-31 16:54:43', 5, '', 734, '4fe09234-768c-41f3-9038-a09489d80b5c', '', '', '', '', ''),
(1462, '', '', '', '', '', '', 'Other', '0000-00-00 00:00:00', '', '', 'DATETIME', '', '', '', 'Deactivate Notice', 'NOT NULL', '', 1, '\"<field \\r\\n\\ttype=\\\"calendar\\\" \\r\\n\\tname=\\\"deactivate\\\" \\r\\n\\tlabel=\\\"Deactivate Notice\\\" \\r\\n\\tdefault=\\\"NOW\\\" \\r\\n\\tdescription=\\\"Select the date when the notice should be deactivated.\\\" \\r\\n\\tsize=\\\"22\\\"\\r\\n\\tformat=\\\"%Y-%m-%d %H:%M:%S\\\"\\r\\n\\tfilter=\\\"user_utc\\\"\\r\\n\\trequired=\\\"true\\\" \\r\\n\\/>\"', 1, '2016-10-31 14:24:00', '2017-09-21 23:31:32', 5, '', 734, '04bbee3d-b7ba-48d0-9dd4-8547ba225ba4', '', '', '', '', ''),
(1463, '', '', '', '', '', '', '', '', 1, '', 'INT', 2, '', '', 'Deactivate Switch', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"deactivate_switch\\\" \\r\\n\\tlabel=\\\"Deactivate\\\" \\r\\n\\tdescription=\\\"\\\" \\r\\n\\tclass=\\\"btn-group btn-group-yesno\\\" \\r\\n\\toption=\\\"1|Yes,0|No\\\" \\r\\n\\tdefault=\\\"0\\\" \\r\\n\\/>\"', 1, '2016-10-31 14:26:16', '0000-00-00 00:00:00', 1, '', 734, '06d164c3-6dec-46c4-ad15-ee6230d5dd5d', '', '', '', '', ''),
(1464, '', '', '', '', '', '', '', '', 1, '', 'INT', 2, '', '', 'Activate Switch', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"activate_switch\\\" \\r\\n\\tlabel=\\\"Activate\\\" \\r\\n\\tdescription=\\\"\\\" \\r\\n\\tclass=\\\"btn-group btn-group-yesno\\\" \\r\\n\\toption=\\\"1|Yes,0|No\\\" \\r\\n\\tdefault=\\\"0\\\" \\r\\n\\/>\"', 1, '2016-10-31 14:26:50', '0000-00-00 00:00:00', 1, '', 734, '24d11915-f227-488f-b1f6-ab3adcdf225b', '', '', '', '', ''),
(1465, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Dropbox manual folder 1', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"manual-dropbox-folder-1\\\" \\r\\n\\tlabel=\\\"Dropbox Manual (Folder 1)\\\"\\r\\n\\tsize=\\\"40\\\" \\r\\n\\tmaxlength=\\\"150\\\" \\r\\n\\tdescription=\\\"Enter the Dropbox folder to target, this will link the files. The folder must be in your Dropbox account.\\\" \\r\\n\\tclass=\\\"text_area span12\\\" \\r\\n\\tfilter=\\\"PATH\\\" \\r\\n\\tmessage=\\\"Error! Please add Dropbox folder here.\\\" \\r\\n\\thint=\\\"any\\/folder\\/in\\/your\\/Dropbox\\\" \\r\\n\\tshowon=\\\"dropboxoptions:2\\\" \\r\\n\\/>\"', 2, '2015-10-28 19:38:36', '2016-11-02 02:30:44', 9, '', 601, '21040c56-040b-456d-b617-c8e824b47948', '', '', '', '', ''),
(1466, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Dropbox manual folder 2', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"manual-dropbox-folder-2\\\" \\r\\n\\tlabel=\\\"Dropbox Manual (Folder 2)\\\"\\r\\n\\tsize=\\\"40\\\" \\r\\n\\tmaxlength=\\\"150\\\" \\r\\n\\tdescription=\\\"Enter the Dropbox folder to target, this will link the files. The folder must be in your Dropbox account.\\\" \\r\\n\\tclass=\\\"text_area span12\\\" \\r\\n\\tfilter=\\\"PATH\\\" \\r\\n\\tmessage=\\\"Error! Please add Dropbox folder here.\\\" \\r\\n\\thint=\\\"any\\/folder\\/in\\/your\\/Dropbox\\\" \\r\\n\\tshowon=\\\"dropboxoptions:2\\\" \\r\\n\\/>\"', 2, '2015-10-29 09:54:15', '2016-11-02 02:30:52', 6, '', 601, '1e1abe04-23c8-4427-b451-3b395bf740c8', '', '', '', '', ''),
(1467, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Dropbox manual folder 3', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"manual-dropbox-folder-3\\\" \\r\\n\\tlabel=\\\"Dropbox Manual (Folder 3)\\\"\\r\\n\\tsize=\\\"40\\\" \\r\\n\\tmaxlength=\\\"150\\\" \\r\\n\\tdescription=\\\"Enter the Dropbox folder to target, this will link the files. The folder must be in your Dropbox account.\\\" \\r\\n\\tclass=\\\"text_area span12\\\" \\r\\n\\tfilter=\\\"PATH\\\" \\r\\n\\tmessage=\\\"Error! Please add Dropbox folder here.\\\" \\r\\n\\thint=\\\"any\\/folder\\/in\\/your\\/Dropbox\\\" \\r\\n\\tshowon=\\\"dropboxoptions:2\\\" \\r\\n\\/>\"', 2, '2015-10-29 09:54:26', '2016-11-02 02:31:26', 5, '', 601, 'c9f506bd-ffca-4579-a72a-250b7de98812', '', '', '', '', ''),
(1468, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Dropbox manual folder 4', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"manual-dropbox-folder-4\\\" \\r\\n\\tlabel=\\\"Dropbox Manual (Folder 4)\\\"\\r\\n\\tsize=\\\"40\\\" \\r\\n\\tmaxlength=\\\"150\\\" \\r\\n\\tdescription=\\\"Enter the Dropbox folder to target, this will link the files. The folder must be in your Dropbox account.\\\" \\r\\n\\tclass=\\\"text_area span12\\\" \\r\\n\\tfilter=\\\"PATH\\\" \\r\\n\\tmessage=\\\"Error! Please add Dropbox folder here.\\\" \\r\\n\\thint=\\\"any\\/folder\\/in\\/your\\/Dropbox\\\" \\r\\n\\tshowon=\\\"dropboxoptions:2\\\" \\r\\n\\/>\"', 2, '2015-10-29 09:54:38', '2016-11-02 02:31:32', 5, '', 601, 'ae90307f-d85d-4c98-a1b1-253c504ab932', '', '', '', '', ''),
(1469, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'tFolder', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"tfolder\\\" \\r\\n\\tlabel=\\\"Folder\\\"\\r\\n\\tsize=\\\"40\\\" \\r\\n\\tmaxlength=\\\"150\\\" \\r\\n\\tdescription=\\\"Enter the folder to target. The folder must be in the account where you generated the access token.\\\" \\r\\n\\tclass=\\\"text_area span12\\\" \\r\\n\\tfilter=\\\"PATH\\\" \\r\\n\\tmessage=\\\"Error! Please add folder here.\\\" \\r\\n\\thint=\\\"any\\/folder\\/in\\/your\\/Dropbox\\\" \\r\\n\\/>\"', 1, '2016-11-02 01:40:54', '2016-11-14 04:42:24', 9, '', 601, '2e41b259-859c-496c-ab76-fa314365a98a', '', '', '', '', ''),
(1470, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Folder 2', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"folder-2\\\" \\r\\n\\tlabel=\\\"Folder 2\\\"\\r\\n\\tsize=\\\"40\\\" \\r\\n\\tmaxlength=\\\"150\\\" \\r\\n\\tdescription=\\\"Enter the folder to target. The folder must be in the account where you generated the access token.\\\" \\r\\n\\tclass=\\\"text_area span12\\\" \\r\\n\\tfilter=\\\"PATH\\\" \\r\\n\\tmessage=\\\"Error! Please add folder here.\\\" \\r\\n\\thint=\\\"any\\/folder\\/in\\/your\\/Dropbox\\\" \\r\\n\\/>\"', 2, '2016-11-02 01:41:11', '2016-11-03 21:06:50', 5, '', 601, '059f3347-c928-4f4f-bd67-9e7dd8eeb0c6', '', '', '', '', ''),
(1471, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Folder 3', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"folder-3\\\" \\r\\n\\tlabel=\\\"Folder 3\\\"\\r\\n\\tsize=\\\"40\\\" \\r\\n\\tmaxlength=\\\"150\\\" \\r\\n\\tdescription=\\\"Enter the folder to target. The folder must be in the account where you generated the access token.\\\" \\r\\n\\tclass=\\\"text_area span12\\\" \\r\\n\\tfilter=\\\"PATH\\\" \\r\\n\\tmessage=\\\"Error! Please add folder here.\\\" \\r\\n\\thint=\\\"any\\/folder\\/in\\/your\\/Dropbox\\\" \\r\\n\\/>\"', 2, '2016-11-02 01:41:21', '2016-11-03 21:07:06', 5, '', 601, 'e8027cf7-8685-4752-bec4-61dc9ddbc919', '', '', '', '', ''),
(1472, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Folder 4', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"folder-4\\\" \\r\\n\\tlabel=\\\"Folder 4\\\"\\r\\n\\tsize=\\\"40\\\" \\r\\n\\tmaxlength=\\\"150\\\" \\r\\n\\tdescription=\\\"Enter the folder to target. The folder must be in the account where you generated the access token.\\\" \\r\\n\\tclass=\\\"text_area span12\\\" \\r\\n\\tfilter=\\\"PATH\\\" \\r\\n\\tmessage=\\\"Error! Please add folder here.\\\" \\r\\n\\thint=\\\"any\\/folder\\/in\\/your\\/Dropbox\\\" \\r\\n\\/>\"', 2, '2016-11-02 01:41:59', '2016-11-03 21:07:26', 5, '', 601, '739a39ff-c579-4e56-b79c-4c6840ca063d', '', '', '', '', ''),
(1473, '', '', '', '', '', '', 1, '', 1, '', 'TINYINT', 2, '', '', 'Dropbox Options', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"dropboxoptions\\\" \\r\\n\\tlabel=\\\"Options\\\" \\r\\n\\tdescription=\\\"Select the option you would like to use in targeting the Dropbox API.\\\" \\r\\n\\tclass=\\\"btn-group btn-group-yesno\\\" \\r\\n\\toption=\\\"1|Shared URL,2|Folder Path\\\" \\r\\n\\tdefault=\\\"1\\\" \\r\\n\\/>\"', 1, '2016-11-02 02:18:18', '2016-11-03 20:19:37', 3, '', 735, '9f3081f0-381e-47da-b004-cedceda64cfb', '', '', '', '', ''),
(1474, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'External Sources', 'NOT NULL', '', 11, '\"<field \\r\\n\\ttype=\\\"list\\\" \\r\\n\\tname=\\\"externalsources\\\" \\r\\n\\tlabel=\\\"External Sources\\\" \\r\\n\\tdescription=\\\"Only one option at this time\\\" \\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\tmultiple=\\\"false\\\" \\r\\n\\tfilter=\\\"INT\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\toption=\\\"|Select an option,1|Dropbox\\\" \\r\\n\\tdefault=\\\"1\\\" \\r\\n\\/>\"', 1, '2016-11-03 17:38:48', '0000-00-00 00:00:00', 1, '', 736, '14eab7cd-1cf7-4979-a9e3-ca6839f7b5cd', '', '', '', '', ''),
(1475, '', '', '', '', '', '', '', '', 64, '', 'VARCHAR', 2, '', '', 'Dropbox App Permission Type', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"permissiontype\\\" \\r\\n\\tlabel=\\\"App Permission Type\\\" \\r\\n\\tdescription=\\\"What kind of permission type is your app.\\\" \\r\\n\\tclass=\\\"btn-group btn-group-yesno\\\" \\r\\n\\toption=\\\"full|Full Dropbox,app|App folder\\\" \\r\\n\\tdefault=\\\"app\\\" \\r\\n\\/>\"', 1, '2016-11-03 20:21:37', '2016-11-03 23:30:06', 2, '', 735, '8a378ecb-eb11-49db-a5c3-40520c0221bc', '', '', '', '', ''),
(1476, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Generated access token', 'NOT NULL', 3, 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"oauthtoken\\\" \\r\\n\\tlabel=\\\"App Generated access token <br \\/><small>(Encrypted Field)<\\/small>\\\" \\r\\n\\tsize=\\\"250\\\" \\r\\n\\tmaxlength=\\\"250\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tdescription=\\\"By using an access token, the system will be able to make automatic API calls to your app without going through the authorization flow.<hr \\/>This field is being kept encrypted in the database.<hr \\/> Yet <b>Joomla back-end must be access with SSL in-place when saving this page.<\\/b> This will help avoid a man in the middle attach on your access token.\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\tfilter=\\\"STRING\\\" \\r\\n\\tmessage=\\\"Error! Please add generated access token here.\\\" \\r\\n\\thint=\\\"oauthtoken here\\\" \\r\\n\\/>\"', 1, '2016-11-03 22:53:04', '2016-11-05 03:53:22', 7, '', 737, '855d8fe7-206a-4861-ae71-d5ab72247236', '', '', '', '', ''),
(1477, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Folders', 'NOT NULL', '', 19, '\"<field \\r\\n\\ttype=\\\"repeatable\\\" \\r\\n\\tname=\\\"folder\\\" \\r\\n\\tlabel=\\\"Target Folders<br \\/><small>Please note: <i>limitation of 3000 files per\\/folder<\\/i><\\/small>\\\" \\r\\n\\tdescription=\\\"Enter the folders to target. The folders must be in the account where you generated the access token.\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tid=\\\"folder\\\" \\r\\n\\tclass=\\\"folders\\\" \\r\\n\\tselect=\\\"Add\\/Remove\\\" \\r\\n\\ticon=\\\"list\\\" \\r\\n\\tmaximum=\\\"10\\\" \\r\\n\\tfields=\\\"1469\\\" \\r\\n\\/>\"', 1, '2016-11-03 23:10:08', '2018-01-22 14:12:51', 10, '', 738, '60faadc6-20b6-4ab8-85d0-fb9b121c0c89', '', '', '', '', ''),
(1478, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Shared-urls', 'NOT NULL', '', 19, '\"<field \\r\\n\\ttype=\\\"repeatable\\\" \\r\\n\\tname=\\\"sharedurl\\\" \\r\\n\\tlabel=\\\"Target Shared-urls<br \\/><small>Please note: <i>limitation of 3000 files per\\/shared-url<\\/i><\\/small>\\\" \\r\\n\\tdescription=\\\"Enter the shared-urls of the main folders to target. The shared-urls must be from the account where you generated the access token.\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tid=\\\"sharedurl\\\" \\r\\n\\tclass=\\\"sharedurls\\\" \\r\\n\\tselect=\\\"Add\\/Remove\\\" \\r\\n\\ticon=\\\"list\\\" \\r\\n\\tmaximum=\\\"10\\\" \\r\\n\\tfields=\\\"808\\\" \\r\\n\\/>\"', 1, '2016-11-03 23:14:38', '2018-01-22 14:12:43', 5, '', 738, 'b0ffc526-4297-452a-9889-9176383b976c', '', '', '', '', ''),
(1479, '', '', '', '', '', '', '', '', '', '', 'CHAR', '', '', '', 'Generated access token (note)', 'NOT NULL', '', 14, '\"<field \\r\\n\\ttype=\\\"note\\\" \\r\\n\\tname=\\\"generated_access_token_note\\\" \\r\\n\\tlabel=\\\"Generated access token\\\" \\r\\n\\tdescription=\\\"The manual option you selected will not require you to store the access token on this server. <b>But you will need it during the manual updating process.<\\/b>\\\" \\r\\n\\theading=\\\"h4\\\" \\r\\n\\tclass=\\\"alert alert-info\\\"\\r\\n\\/>\"', 1, '2016-11-03 23:55:27', '2016-11-04 00:05:03', 4, '', 739, '30de5569-b686-4c2f-b19d-b2a5536d54ac', '', '', '', '', ''),
(1480, '', '', '', '', '', '', '', '', '', '', 'CHAR', '', '', '', 'App Limitation (note)', 'NOT NULL', '', 14, '\"<field \\r\\n\\ttype=\\\"note\\\" \\r\\n\\tname=\\\"app_limitation_note\\\" \\r\\n\\tdescription=\\\"Please Note: <i>There is a limitation of 3000 files per app\\/folder<\\/i>\\\" \\r\\n\\/>\"', 1, '2016-11-07 16:16:05', '2018-01-22 14:12:09', 3, '', 739, 'a3d0c853-6f70-48cb-884b-fe7f5db2e37b', '', '', '', '', ''),
(1481, '', '', '', '', '', '', '', '', '', '', 'CHAR', '', '', '', 'Check Wiki (note)', 'NOT NULL', '', 14, '\"<field \\r\\n\\ttype=\\\"note\\\" \\r\\n\\tname=\\\"wiki_check_note\\\" \\r\\n\\tlabel=\\\"Please check the Wiki tab above.\\\"\\r\\n\\tdescription=\\\"It will give instructions on how to setup the external source in <b>relation to the Build Option<\\/b> you have chosen.\\\" \\r\\n\\tclass=\\\"alert alert-success\\\"\\r\\n\\/>\"', 1, '2016-11-07 16:43:07', '2016-11-07 16:52:28', 3, '', 739, 'a619adee-369c-4da6-a8ca-1ff97a129bbc', '', '', '', '', ''),
(1482, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'Organisation Representative', 'NOT NULL', '', 7, '\"<field \\r\\n\\ttype=\\\"organisationuser\\\" \\r\\n\\tname=\\\"user\\\" \\r\\n\\tlabel=\\\"Organisation Representative\\\" \\r\\n\\tdescription=\\\"Select the user that is the representative of this organisation.\\\"\\r\\n\\trequired=\\\"true\\\"\\r\\n\\thint=\\\"select an user\\\" \\r\\n\\textends=\\\"user\\\" \\r\\n\\ttable=\\\"#__users\\\" \\r\\n\\tcomponent=\\\"com_users\\\" \\r\\n\\tview=\\\"###view###\\\" \\r\\n\\tviews=\\\"###views###\\\" \\r\\n\\tvalue_field=\\\"name\\\" \\r\\n\\tkey_field=\\\"id\\\" \\r\\n\\ttype_php_1=\\\"\\/\\/ set the groups array\\\" \\r\\n\\ttype_php_2=\\\"$groups = JComponentHelper::getParams(\'com_###component###\')->get(\'###type###\');\\\" \\r\\n\\ttype_php_3=\\\"return $groups;\\\"\\r\\n\\ttype_phpx_1=\\\"\\/\\/ To ensure that there is only one record per user\\\" \\r\\n\\ttype_phpx_2=\\\"\\/\\/ Get a db connection.\\\" \\r\\n\\ttype_phpx_3=\\\"$db = JFactory::getDbo();\\\" \\r\\n\\ttype_phpx_4=\\\"\\/\\/ Create a new query object.\\\" \\r\\n\\ttype_phpx_5=\\\"$query = $db->getQuery(true);\\\" \\r\\n\\ttype_phpx_6=\\\"\\/\\/ Select all records from the #__###component###_###view### table from ###CODE### column\\\".\\\" \\r\\n\\ttype_phpx_7=\\\"$query->select($db->quoteName(\'###CODE###\'));\\\" \\r\\n\\ttype_phpx_8=\\\"$query->from($db->quoteName(\'#__###component###_###view###\'));\\\" \\r\\n\\ttype_phpx_9=\\\"$db->setQuery($query);\\\" \\r\\n\\ttype_phpx_10=\\\"$db->execute();\\\" \\r\\n\\ttype_phpx_11=\\\"$found = $db->getNumRows();\\\" \\r\\n\\ttype_phpx_12=\\\"if ($found)\\\" \\r\\n\\ttype_phpx_13=\\\"{\\\" \\r\\n\\ttype_phpx_14=\\\"\\\\t\\/\\/ return all users already used\\\" \\r\\n\\ttype_phpx_15=\\\"\\\\treturn array_unique($db->loadColumn());\\\" \\r\\n\\ttype_phpx_16=\\\"}\\\" \\r\\n\\ttype_phpx_17=\\\"return null;\\\" \\r\\n\\/>\"', 1, '2016-11-09 04:13:42', '2016-11-09 22:41:51', 4, '', 596, 'bcd84b36-3ef4-41a7-a0a6-916f60b6acda', '', '', '', '', ''),
(1483, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Organisation (this)', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"organisation\\\" \\r\\n\\tlabel=\\\"Organisation\\\" \\r\\n\\tsize=\\\"60\\\" \\r\\n\\tmaxlength=\\\"150\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tdescription=\\\"Enter the name of this organisation.\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\tfilter=\\\"STRING\\\" \\r\\n\\tvalidate=\\\"\\\"\\r\\n\\tmessage=\\\"Error! Please add organisation here.\\\" \\r\\n\\thint=\\\"Organisation Name\\\" \\r\\n\\/>\"', 1, '2016-11-09 22:44:03', '2016-11-09 22:44:20', 2, '', 647, 'd5f1a8b2-a3ab-45ec-a696-5c4022a6e4b1', '', '', '', '', ''),
(1484, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Position', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"position\\\" \\r\\n\\tlabel=\\\"Position\\\" \\r\\n\\tsize=\\\"50\\\" \\r\\n\\tmaxlength=\\\"150\\\"\\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\tfilter=\\\"STRING\\\" \\r\\n\\tmessage=\\\"Error! Please add some text here.\\\" \\r\\n\\thint=\\\"Position of Reference\\\" \\r\\n\\/>\"', 1, '2016-11-09 23:04:53', '0000-00-00 00:00:00', 1, '', 740, 'd43ba064-5398-4812-bc6d-98d10303c366', '', '', '', '', ''),
(1485, '', '', '', '', '', '', 1, '', 1, '', 'INT', 2, '', '', 'Country of Residence (privacy)', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"privacy_countryresidence\\\" \\r\\n\\tlabel=\\\"Show Country of Residence Public\\\" \\r\\n\\tdescription=\\\"Select if country of residence is visible to the public\\\" \\r\\n\\tclass=\\\"btn-group btn-group-yesno vdm-privacy\\\" \\r\\n\\toption=\\\"1|Yes,0|No\\\" \\r\\n\\tdefault=\\\"1\\\" \\r\\n\\/>\"', '', '2016-11-09 23:17:18', '2017-01-20 15:58:32', 4, '', 728, 'e1a48b3c-740f-46d9-ba3d-b5d8577648e3', '', '', '', '', ''),
(1486, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'Experts Menu Item', 'NOT NULL', '', 33, '\"<field \\r\\n\\ttype=\\\"menuitem\\\" \\r\\n\\tname=\\\"area_of_expertise_menu\\\" \\r\\n\\tlabel=\\\"Experts Menu Item\\\" \\r\\n\\tdescription=\\\"Select the menu item you would like your experts view to be linked to.\\\" \\r\\n\\tfilter=\\\"int\\\" \\r\\n\\tpublished=\\\"1\\\"\\r\\n\\/>\"', 1, '2016-11-10 01:49:15', '2016-11-10 02:20:32', 3, '', 637, 'a22fdf20-695c-458a-b265-60ac97137e60', '', '', '', '', ''),
(1487, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Confirmation Email Template', 'NOT NULL', '', 25, '\"<field \\r\\n\\ttype=\\\"textarea\\\" \\r\\n\\tname=\\\"confirmation_email\\\" \\r\\n\\tlabel=\\\"Confirmation Email Template<br \\/><small>html allowed<\\/small>\\\" \\r\\n\\trows=\\\"30\\\" \\r\\n\\tcols=\\\"50\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tdescription=\\\"Here you can change the global email template that is used for confirming the expert referral.\\\" \\r\\n\\tclass=\\\"text_area span12\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\tfilter=\\\"SAFEHTML\\\" \\r\\n\\thint=\\\"\\/\\/ add the global confirmation email template here.\\\" \\r\\n\\/>\"', 1, '2016-11-12 04:45:43', '2016-11-24 12:40:25', 6, '', 741, '268e89e1-809f-4e27-bb2d-e35699d3eead', '', '', '', '', ''),
(1488, '', '', '', '', '', '', '', '', '', '', '', '', '', '', 'Confirmation Email Placeholders', 'NOT NULL', '', 14, '\"<field\\n\\ttype=\\\"note\\\"\\n\\tname=\\\"note_confirmation_email_placeholders\\\"\\n\\tlabel=\\\"Confirmation Email Place holders\\\"\\n\\tdescription=\\\"<div id=\'confirmation_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(\'confirmation_email\', token);\\r\\n});\\r\\n<\\/script>\\\"\\n\\theading=\\\"h3\\\"\\n\\/>\"', 1, '2016-11-12 04:49:29', '2018-09-08 10:38:35', 10, '', 742, '9b2d3c3c-80d4-4afa-a49b-69d79bcf0386', '', '', '', '', ''),
(1489, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Organisation (reference)', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"organisation_ref\\\" \\r\\n\\tlabel=\\\"Organisation\\\" \\r\\n\\tsize=\\\"60\\\" \\r\\n\\tmaxlength=\\\"150\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tdescription=\\\"or Company\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\tfilter=\\\"STRING\\\" \\r\\n\\tvalidate=\\\"\\\"\\r\\n\\tmessage=\\\"Error! Please add organisation here.\\\" \\r\\n\\thint=\\\"Organisation\\/Company\\\" \\r\\n\\/>\"', 1, '2016-11-12 04:55:21', '2016-11-19 05:07:18', 3, '', 647, '9304cf8b-e790-4596-a98a-6251bdb8c7e0', '', '', '', '', ''),
(1490, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Your Website', 'NOT NULL', '', 27, '\"<field \\r\\n\\ttype=\\\"url\\\" \\r\\n\\tname=\\\"website\\\" \\r\\n\\tlabel=\\\"Your Website\\\" \\r\\n\\tsize=\\\"60\\\" \\r\\n\\tmaxlength=\\\"150\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tdescription=\\\"Enter website address\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\treadonly=\\\"\\\" \\r\\n\\tdisabled=\\\"\\\" \\r\\n\\trequired=\\\"\\\" \\r\\n\\tfilter=\\\"url\\\" \\r\\n\\tvalidated=\\\"url\\\" \\r\\n\\tmessage=\\\"Error! Please add website here.\\\" \\r\\n\\thint=\\\"http:\\/\\/www.yourwebsite.com\\\" \\r\\n\\/>\"', 1, '2016-11-16 07:03:26', '2015-08-25 21:15:22', 1, '', 105, '58d13467-a0dc-476e-80a5-d36f53d04df7', '', '', '', '', ''),
(1491, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Summary (full width)', 'NOT NULL', '', 8, '\"<field\\r\\n\\ttype=\\\"editor\\\" \\r\\n\\tname=\\\"summary\\\" \\r\\n\\tlabel=\\\"Summary<br \\/><small>Add a summary highlighting your expertise, experience and interests<\\/small>\\\" \\r\\n\\twidth=\\\"100%\\\" \\r\\n\\theight=\\\"400px\\\" \\r\\n\\tcols=\\\"11\\\" \\r\\n\\trows=\\\"10\\\" \\r\\n\\tbuttons=\\\"false\\\" \\r\\n\\teditor=\\\"jce|none\\\" \\r\\n\\tfilter=\\\"safehtml\\\" \\r\\n\\trequired=\\\"\\\" \\r\\n\\/>\"', 1, '2016-11-16 09:12:35', '2016-11-16 09:12:21', 1, '', 265, 'f075f28e-4edf-4d48-adf7-34742375237b', '', '', '', '', ''),
(1492, '', '', '', '', '', '', '', '', '', '', 'INT', '', '', '', 'Expert', 'NOT NULL', '', 6, '\"<field \\r\\n\\ttype=\\\"experts\\\" \\r\\n\\tname=\\\"expert\\\" \\r\\n\\tlabel=\\\"Expert\\\" \\r\\n\\tdescription=\\\"Please select the expert.\\\" \\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\tmultiple=\\\"false\\\" \\r\\n\\tdefault=\\\"0\\\" \\r\\n\\trequired=\\\"true\\\"\\r\\n\\textends=\\\"list\\\" \\r\\n\\tbutton=\\\"false\\\" \\r\\n\\ttable=\\\"#__###component###_expert\\\" \\r\\n\\tcomponent=\\\"com_###component###\\\" \\r\\n\\tview=\\\"expert\\\" \\r\\n\\tviews=\\\"experts\\\" \\r\\n\\tvalue_field=\\\"user\\\" \\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 an expert\');\\\" \\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###, JFactory::getUser($item->###CODE_TEXT###)->name);\\\" \\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-11-17 00:23:07', '0000-00-00 00:00:00', 1, '', 743, 'e3974f40-c5ca-4e10-a2b0-6a1dea61f6a6', '', '', '', '', ''),
(1493, '', '', '', '', '', '', '', '', '', '', 'INT', '', '', '', 'Confirmed', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"confirmed\\\" \\r\\n\\tlabel=\\\"Confirmed\\\" \\r\\n\\tdescription=\\\"\\\" \\r\\n\\tclass=\\\"btn-group btn-group-yesno\\\" \\r\\n\\toption=\\\"1|Yes,0|No\\\" \\r\\n\\tdefault=\\\"0\\\"\\r\\n\\/>\"', 1, '2016-11-17 01:05:05', '0000-00-00 00:00:00', 1, '', 744, 'a0942ab2-3d0c-4e4a-a783-64404dfb23b0', '', '', '', '', ''),
(1494, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Admin Groups', 'NOT NULL', 1, 29, '\"<field \\r\\n\\ttype=\\\"usergroup\\\" \\r\\n\\tname=\\\"adminuser\\\" \\r\\n\\tlabel=\\\"Admin Group\\\" \\r\\n\\trequired=\\\"\\\"\\r\\n\\tdescription=\\\"Set the group\\/s being target by this user type.\\\"\\r\\n\\tmultiple=\\\"true\\\"\\r\\n\\/>\"', 1, '2016-11-17 11:36:39', '2016-11-17 11:50:17', 2, '', 50, '5762b5d3-ac6d-45c5-b7a2-f06c2584dd9a', '', '', '', '', ''),
(1495, '', '', '', '', '', '', 'Other', 2, 1, '', 'TINYINT', '', '', '', 'Email Send', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"emailsend\\\" \\r\\n\\tlabel=\\\"Email Send\\\" \\r\\n\\tdescription=\\\"\\\" \\r\\n\\tclass=\\\"btn-group btn-group-yesno\\\" \\r\\n\\toption=\\\"1|Yes,2|No,0|Error\\\" \\r\\n\\tdefault=\\\"2\\\"\\r\\n\\/>\"', 1, '2016-11-17 11:59:42', '2016-11-22 15:25:17', 8, '', 745, '58d3e6da-b316-4434-8e12-17dfe2adc1ed', '', '', '', '', ''),
(1496, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Email Message', 'NOT NULL', '', 8, '\"<field \\r\\n\\ttype=\\\"editor\\\" \\r\\n\\tname=\\\"message\\\" \\r\\n\\tlabel=\\\"Email Message\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\twidth=\\\"100%\\\" \\r\\n\\theight=\\\"600\\\"\\r\\n\\trows=\\\"20\\\" \\r\\n\\tcols=\\\"15\\\" \\r\\n\\tbuttons=\\\"false\\\" \\r\\n\\tfilter=\\\"safehtml\\\"\\r\\n\\tclass=\\\"text_area span12\\\"\\r\\n\\teditor=\\\"jce|none\\\"\\r\\n\\thint=\\\"\\/\\/ once the email message has been send it will be added here.\\\" \\r\\n\\trequired=\\\"false\\\" \\r\\n\\/>\"', 1, '2016-11-17 12:02:49', '2016-11-17 12:05:38', 2, '', 661, '47ce5078-1479-4bbc-8909-5b937bdb6eb8', '', '', '', '', ''),
(1497, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', 2, '', '', 'Listing Key', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"key\\\" \\r\\n\\tlabel=\\\"Listing Key\\\" \\r\\n\\tsize=\\\"50\\\" \\r\\n\\tmaxlength=\\\"150\\\" \\r\\n\\tdescription=\\\"This key will be used for this local listing.\\\" \\r\\n\\tclass=\\\"text_area span12\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\tfilter=\\\"STRING\\\" \\r\\n\\tmessage=\\\"Error! Please add key here.\\\" \\r\\n\\thint=\\\"Listing Key\\\" \\r\\n\\/>\"', 1, '2016-11-20 19:13:31', '2016-11-20 19:24:27', 2, '', 722, 'd3ffc5bc-8845-4ce6-83b8-813717ed0080', '', '', '', '', ''),
(1498, '', '', '', '', '', '', '', '', 255, '', 'TEXT', '', '', '', 'Listing Shared-URL', 'NOT NULL', 3, 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"url\\\" \\r\\n\\tlabel=\\\"Shared-URL\\\" \\r\\n\\tsize=\\\"256\\\" \\r\\n\\tmaxlength=\\\"256\\\" \\r\\n\\tdescription=\\\"This is the shared URL.\\\" \\r\\n\\tclass=\\\"text_area span12\\\"\\r\\n\\trequired=\\\"true\\\"\\r\\n\\tfilter=\\\"STRING\\\"\\r\\n\\tmessage=\\\"Error! Please add shared-URL here.\\\"\\r\\n\\thint=\\\"shared URL\\\" \\r\\n\\/>\"', 1, '2016-11-20 19:17:12', '0000-00-00 00:00:00', 1, '', 722, 'cac046ca-0a32-4fa7-ab4d-910240535c6b', '', '', '', '', ''),
(1499, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', 2, '', '', 'Listing File Name', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"name\\\" \\r\\n\\tlabel=\\\"File Name\\\" \\r\\n\\tsize=\\\"50\\\" \\r\\n\\tmaxlength=\\\"150\\\" \\r\\n\\tdescription=\\\"This is the file name.\\\" \\r\\n\\tclass=\\\"text_area\\\"\\r\\n\\trequired=\\\"true\\\"\\r\\n\\tfilter=\\\"STRING\\\"\\r\\n\\tmessage=\\\"Error! Please add file name here.\\\"\\r\\n\\thint=\\\"file name\\\" \\r\\n\\/>\"', 1, '2016-11-20 19:19:58', '0000-00-00 00:00:00', 1, '', 722, '6a2cb025-83b5-4ff2-8f96-c7b01a1bbf6e', '', '', '', '', ''),
(1500, '', '', '', '', '', '', '', '', 50, '', 'INT', '', '', '', 'Listing File Size', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"size\\\" \\r\\n\\tlabel=\\\"File Size\\\" \\r\\n\\tsize=\\\"50\\\" \\r\\n\\tmaxlength=\\\"150\\\" \\r\\n\\tdescription=\\\"This is the file size.\\\" \\r\\n\\tclass=\\\"text_area\\\"\\r\\n\\trequired=\\\"true\\\"\\r\\n\\tfilter=\\\"INT\\\"\\r\\n\\tmessage=\\\"Error! Please add file size here.\\\"\\r\\n\\thint=\\\"file size\\\" \\r\\n\\/>\"', 1, '2016-11-20 19:21:16', '0000-00-00 00:00:00', 1, '', 722, '31e4af66-871a-4a1b-8604-846de471958c', '', '', '', '', ''),
(1501, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Update Server Target', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"update_server_target\\\" \\r\\n\\tlabel=\\\"Update Server Target\\\" \\r\\n\\tdescription=\\\"Select the type of way you would like the update server to be set.\\\" \\r\\n\\tclass=\\\"btn-group btn-group-yesno\\\" \\r\\n\\toption=\\\"1|Server,2|ZIP,3|Other\\\" \\r\\n\\tdefault=\\\"1\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\/>\"', 1, '2016-11-22 03:59:56', '2018-02-14 15:28:14', 4, '', 192, 'b9f98c3d-a93a-4b19-b89e-4c62781f9b99', '', '', '', '', ''),
(1502, '', '', '', '', '', '', '', '', '', '', '', '', '', '', 'Update Server Target (note FTP)', 'NOT NULL', '', 14, '\"<field\\n\\ttype=\\\"note\\\"\\n\\tname=\\\"note_update_server_note_ftp\\\"\\n\\tlabel=\\\"Select the server used for your update server.\\\"\\n\\tdescription=\\\"During compilation the file will be moved to the server. You still need to point the above <b>update server<\\/b> url to the xml file location on your server for it to work correctly.\\\"\\n\\theading=\\\"h4\\\"\\n\\tclass=\\\"alert alert-success\\\"\\n\\/>\"', 1, '2016-11-22 04:02:41', '2019-04-11 22:10:16', 9, '', 746, '28ab798e-41b9-499c-844e-85fbad349ace', '', '', '', '', ''),
(1503, '', '', '', '', '', '', '', '', '', '', 'CHAR', '', '', '', 'Update Server Target (note ZIP)', 'NOT NULL', '', 14, '\"<field \\r\\n\\ttype=\\\"note\\\" \\r\\n\\tname=\\\"note_update_server_note_zip\\\" \\r\\n\\tlabel=\\\"The ZIP Option\\\" \\r\\n\\tdescription=\\\"The update server XML file will be added to the zipped package during compilation. You still need to point the above <b>update server<\\/b> url to the xml wherever you have placed the files online.\\\"\\r\\n\\theading=\\\"h4\\\" \\r\\n\\tclass=\\\"alert alert-info\\\" \\r\\n\\/>\"', 1, '2016-11-22 04:06:03', '2017-10-26 15:43:28', 4, '', 746, '49d1f05c-6873-4307-9d1f-3358e5e709b0', '', '', '', '', ''),
(1504, '', '', '', '', '', '', '', '', '', '', 'CHAR', '', '', '', 'Update Server Target (note Other)', 'NOT NULL', '', 14, '\"<field \\r\\n\\ttype=\\\"note\\\" \\r\\n\\tname=\\\"note_update_server_note_other\\\" \\r\\n\\tlabel=\\\"The Other Options\\\" \\r\\n\\tdescription=\\\"Not really sure what other options to add.... so let me know. For now this option does not really do anything except adding the link above to your component as an update server. So it really could be called the manual option, since you will need to set the update server your self. You still need to point the above <b>update server<\\/b> url to the manually created xml file for it to work correctly.\\\"\\r\\n\\theading=\\\"h4\\\" \\r\\n\\tclass=\\\"alert alert-success\\\" \\r\\n\\/>\"', 1, '2016-11-22 04:08:43', '2016-11-22 04:40:32', 2, '', 746, '3cced40e-102a-46ab-8f6f-24980fdfc15d', '', '', '', '', ''),
(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', '', '', '', '', ''),
(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', '', '', '', '', ''),
(1512, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'JED Listing Server URL', 'NOT NULL', '', 27, '\"<field \\r\\n\\ttype=\\\"url\\\" \\r\\n\\tname=\\\"jed_server\\\" \\r\\n\\tlabel=\\\"JED Listing Server\\\" \\r\\n\\tsize=\\\"60\\\" \\r\\n\\tmaxlength=\\\"150\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tdescription=\\\"Enter JED Listing Server URL\\\" \\r\\n\\tclass=\\\"text_area span12\\\" \\r\\n\\tfilter=\\\"url\\\" \\r\\n\\tvalidated=\\\"url\\\" \\r\\n\\tmessage=\\\"Error! Please add url here.\\\" \\r\\n\\thint=\\\"http:\\/\\/www.example.com\\/jed\\/component.xml\\\" \\r\\n\\/>\"', 1, '2016-11-25 03:52:39', '2015-12-23 09:35:22', 1, '', 378, 'aefb7574-cd07-4bfd-bd11-c74f351c11d1', '', '', '', '', ''),
(1513, '', '', '', '', '', '', '', '', '', '', 'CHAR', '', '', '', 'JED Listing Server Target (note Other)', 'NOT NULL', '', 14, '\"<field \\r\\n\\ttype=\\\"note\\\" \\r\\n\\tname=\\\"note_jed_server_note_other\\\" \\r\\n\\tlabel=\\\"The Other Options\\\" \\r\\n\\tdescription=\\\"Not really sure what other options to add.... so let me know. For now this option does not really do anything except adding the link above to your component for the JED Listing Server. So it really could be called the manual option, since you will need to set the JED Listing Server your self. You still need to point the above <b>JED Listing Server<\\/b> url to the manually created xml file for it to work correctly.\\\"\\r\\n\\theading=\\\"h4\\\" \\r\\n\\tclass=\\\"alert alert-success\\\" \\r\\n\\/>\"', 1, '2016-11-25 03:53:50', '2016-11-22 04:40:32', 1, '', 746, '5840ab63-22d7-4cba-900d-9a227d034a59', '', '', '', '', ''),
(1514, '', '', '', '', '', '', '', '', '', '', 'CHAR', '', '', '', 'JED Listing Server Target (note ZIP)', 'NOT NULL', '', 14, '\"<field \\r\\n\\ttype=\\\"note\\\" \\r\\n\\tname=\\\"note_jed_server_note_zip\\\" \\r\\n\\tlabel=\\\"The ZIP Option\\\" \\r\\n\\tdescription=\\\"The JED Listing Server XML file will be added to the zipped package during compilation. You still need to point the above <b>JED Listing Server<\\/b> url to the xml wherever you have placed the files online.\\\"\\r\\n\\theading=\\\"h4\\\" \\r\\n\\tclass=\\\"alert alert-info\\\" \\r\\n\\/>\"', 1, '2016-11-25 03:54:22', '2017-10-26 15:43:37', 2, '', 746, 'd7a23844-8425-4d8a-bd31-c7d2f7411a15', '', '', '', '', ''),
(1515, '', '', '', '', '', '', '', '', '', '', 'CHAR', '', '', '', 'JED Listing Server Target (note FTP)', 'NOT NULL', '', 14, '\"<field \\r\\n\\ttype=\\\"note\\\" \\r\\n\\tname=\\\"note_jed_server_note_ftp\\\" \\r\\n\\tlabel=\\\"The FTP Option\\\" \\r\\n\\tdescription=\\\"Add your FTP signature in the given field and during compilation the file will be moved to the FTP folder. You still need to point the above <b>JED Listing Server<\\/b> url to the xml file on your FTP server for it to work correctly.<br \\/><b>Here are the details of the signature:<\\/b><br \\/>&nbsp;&nbsp;&nbsp;string $host = \'127.0.0.1\'<br \\/>&nbsp;&nbsp;&nbsp;string $port = \'21\'<br \\/>&nbsp;&nbsp;&nbsp;array $options = array()<br \\/>&nbsp;&nbsp;&nbsp;string $user = null<br \\/>&nbsp;&nbsp;&nbsp;string $pass = null<br \\/>&nbsp;&nbsp;&nbsp;OPTIONS = Array with any of these options:<br \\/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;type=>[FTP_AUTOASCII|FTP_ASCII|FTP_BINARY]<br \\/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;timeout=>(int)<br \\/><b>Here is an example signature:<\\/b><br \\/><code>host=HOSTNAME&port=PORT_INT&options[type]=FTP_BINARY&options[timeout]=15&username=user@name.com&password=password<\\/code>\\\" \\r\\n\\theading=\\\"h4\\\" \\r\\n\\tclass=\\\"alert alert-success\\\" \\r\\n\\/>\"', 1, '2016-11-25 03:55:05', '2016-11-22 04:39:40', 1, '', 746, '652ed828-6e46-400b-a7e3-5079c84fc0bf', '', '', '', '', ''),
(1516, '', '', '', '', '', '', '', '', 11, '', 'INT', '', '', '', 'External Source', 'NOT NULL', '', 6, '\"<field \\r\\n\\ttype=\\\"externalsource\\\" \\r\\n\\tname=\\\"external_source\\\" \\r\\n\\tlabel=\\\"External Source\\\" \\r\\n\\tdescription=\\\"The external source of this listing\\\" \\r\\n\\tclass=\\\"list_class span12\\\" \\r\\n\\tmultiple=\\\"false\\\" \\r\\n\\tdefault=\\\"0\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\textends=\\\"list\\\" \\r\\n\\tbutton=\\\"true\\\" \\r\\n\\ttable=\\\"#__###component###_external_source\\\" \\r\\n\\tcomponent=\\\"com_###component###\\\" \\r\\n\\tview=\\\"external_source\\\" \\r\\n\\tviews=\\\"external_sources\\\" \\r\\n\\tvalue_field=\\\"description\\\" \\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.externalsources\',\'a.update_method\'),array(\'###ID###\',\'###CODE_TEXT###\',\'externalsources\',\'update_method\')));\\\" \\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=\\\"{\\\\n\\\\t\\\\t\\\\t$model = ###Component###Helper::getModel(\'external_sources\', JPATH_COMPONENT_ADMINISTRATOR);\\\" \\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{\\\" \\r\\n\\ttype_php_15=\\\"\\\\t\\\\t$options[] = JHtml::_(\'select.option\', $item->###ID###, $item->###CODE_TEXT###. \' (\' . JText::_($model->selectionTranslation($item->externalsources,\'externalsources\')). \' \' . JText::_($model->selectionTranslation($item->update_method,\'update_method\')). \')\');\\\" \\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-11-26 14:31:00', '2018-02-19 15:10:47', 6, '', 747, '601a13ea-583d-417a-b4bb-53809b8373de', '', '', '', '', ''),
(1517, '', '', '', '', '', '', '', '', 1, '', 'INT', '', '', '', 'max_execution_time (PHP)', 'NOT NULL', '', 10, '\"<field \\r\\n\\ttype=\\\"integer\\\" \\r\\n\\tname=\\\"max_execution_time\\\" \\r\\n\\tlabel=\\\"Max Execution Time\\\" \\r\\n\\tdefault=\\\"500\\\" \\r\\n\\tdescription=\\\"Set in minutes the max execution time of the PHP script during updating to local listing.\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\tfirst=\\\"500\\\" \\r\\n\\tlast=\\\"50000\\\" \\r\\n\\tstep=\\\"10\\\" \\r\\n\\/>\"', 1, '2016-11-27 12:37:20', '2016-11-27 12:42:14', 2, '', 602, '83536169-c4db-45f8-9481-47be6fb9968d', '', '', '', '', ''),
(1518, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Program Types Display (table|grid|list)', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"programtypes_display\\\" \\r\\n\\tlabel=\\\"Program Types Display\\\" \\r\\n\\tdescription=\\\"Select the option for display of program types.\\\" \\r\\n\\tclass=\\\"btn-group btn-group-yesno\\\" \\r\\n\\toption=\\\"1|Table,2|Grid,3|List\\\" \\r\\n\\tdefault=\\\"2\\\" \\r\\n\\trequired=\\\"\\\" \\r\\n\\/>\"', 1, '2016-11-28 07:33:59', '2016-11-28 07:37:03', 2, '', 635, '0d508866-5baa-41b2-951e-9e5bc981d846', '', '', '', '', ''),
(1519, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'Program Type Menu Item', 'NOT NULL', '', 33, '\"<field \\r\\n\\ttype=\\\"menuitem\\\" \\r\\n\\tname=\\\"programtype_menu\\\" \\r\\n\\tlabel=\\\"Program Type Menu Item\\\" \\r\\n\\tdescription=\\\"Select the menu item you would like your program type view to be linked to, must be a componentbuilder menu.\\\" \\r\\n\\tfilter=\\\"int\\\" \\r\\n\\tpublished=\\\"1\\\"\\r\\n\\/>\"', 1, '2016-11-28 07:40:41', '2015-11-19 22:01:08', 1, '', 637, 'b2a31b9f-fc0f-4959-91ad-12076e7ed9a7', '', '', '', '', ''),
(1520, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'Program Type (request_id)', 'NOT NULL', '', 2, '\"<field \\r\\n\\ttype=\\\"category\\\" \\r\\n\\tname=\\\"programtype_request_id\\\" \\r\\n\\tlabel=\\\"Program Type\\\" \\r\\n\\textension=\\\"com_learningmanager.programs\\\" \\r\\n\\tscope=\\\"\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tdescription=\\\"select one of the following program types\\\" \\r\\n\\tclass=\\\"inputbox\\\" \\r\\n\\tpublished=\\\"\\\" \\r\\n\\/>\"', 1, '2016-11-28 07:43:25', '2016-11-28 07:53:57', 2, '', 625, 'b598537e-84a3-4e5f-96ad-b8c079b3c6d9', '', '', '', '', ''),
(1521, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Program Types - Table Color', 'NOT NULL', '', 11, '\"<field \\r\\n\\ttype=\\\"list\\\" \\r\\n\\tname=\\\"programtypes_table_color\\\" \\r\\n\\tlabel=\\\"Table Color\\\" \\r\\n\\tdescription=\\\"Select the color to use for the table display option.\\\" \\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\tmultiple=\\\"false\\\" \\r\\n\\tfilter=\\\"INT\\\" \\r\\n\\trequired=\\\"\\\" \\r\\n\\toption=\\\"0|Blue,1|Red,2|Purple,3|Green,4|Dark Blue,5|Legacy,6|Uikit,7|Custom,8|None\\\" \\r\\n\\tdefault=\\\"0\\\" \\r\\n\\/>\"', 1, '2016-11-28 16:36:50', '2016-11-28 16:44:05', 3, '', 635, 'dccd9a16-3b14-49a8-a09a-c08ee3052ad3', '', '', '', '', ''),
(1522, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Program Types - Table Color', 'NOT NULL', '', 11, '\"<field \\r\\n\\ttype=\\\"list\\\" \\r\\n\\tname=\\\"programtypes_table_color\\\" \\r\\n\\tlabel=\\\"Table Color\\\" \\r\\n\\tdescription=\\\"Select the color to use for the table display option.\\\" \\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\tmultiple=\\\"false\\\" \\r\\n\\tfilter=\\\"INT\\\" \\r\\n\\trequired=\\\"\\\" \\r\\n\\toption=\\\"0|Blue,1|Red,2|Purple,3|Green,4|Dark Blue,5|Legacy,6|Uikit,7|Custom,8|None\\\" \\r\\n\\tdefault=\\\"0\\\" \\r\\n\\/>\"', 2, '2016-11-28 16:36:54', '2016-11-28 16:39:37', 2, '', 635, '35634353-e17c-4662-b9c4-dbd1a2927766', '', '', '', '', ''),
(1523, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Program Types - Description', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"programtypes_desc\\\" \\r\\n\\tlabel=\\\"Show Description\\\" \\r\\n\\tdescription=\\\"Set if description should be shown.\\\" \\r\\n\\tclass=\\\"btn-group btn-group-yesno\\\" \\r\\n\\toption=\\\"1|Yes,0|No\\\" \\r\\n\\tdefault=\\\"1\\\" \\r\\n\\trequired=\\\"\\\" \\r\\n\\/>\"', 1, '2016-11-28 16:36:56', '2016-11-28 16:38:51', 2, '', 635, '3cf8e3f1-14f3-4b90-8744-50e0c795282b', '', '', '', '', ''),
(1524, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Program Types - Program Count', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"programtypes_program_count\\\" \\r\\n\\tlabel=\\\"Show Program Count\\\" \\r\\n\\tdescription=\\\"Set if program count should be shown.\\\" \\r\\n\\tclass=\\\"btn-group btn-group-yesno\\\" \\r\\n\\toption=\\\"1|Yes,0|No\\\" \\r\\n\\tdefault=\\\"1\\\" \\r\\n\\trequired=\\\"\\\" \\r\\n\\/>\"', 1, '2016-11-28 16:36:58', '2016-11-28 16:38:39', 2, '', 635, '890fb273-5170-4745-9950-57da0161b303', '', '', '', '', ''),
(1525, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Program Types - Icon', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"programtypes_icon\\\" \\r\\n\\tlabel=\\\"Show Icon (grid)\\\" \\r\\n\\tdescription=\\\"Set if icon should be shown in grid display option.\\\" \\r\\n\\tclass=\\\"btn-group btn-group-yesno\\\" \\r\\n\\toption=\\\"1|Yes,0|No\\\" \\r\\n\\tdefault=\\\"1\\\" \\r\\n\\trequired=\\\"\\\" \\r\\n\\/>\"', 1, '2016-11-28 16:37:00', '2016-11-28 16:42:27', 2, '', 635, '0b42a67c-f169-4a26-b617-8b318ffe5492', '', '', '', '', ''),
(1526, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Program Types - Icon', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"programtypes_icon\\\" \\r\\n\\tlabel=\\\"Show Icon (grid)\\\" \\r\\n\\tdescription=\\\"Set if icon should be shown in grid display option.\\\" \\r\\n\\tclass=\\\"btn-group btn-group-yesno\\\" \\r\\n\\toption=\\\"1|Yes,0|No\\\" \\r\\n\\tdefault=\\\"1\\\" \\r\\n\\trequired=\\\"\\\" \\r\\n\\/>\"', 2, '2016-11-28 16:37:31', '2016-11-28 16:38:02', 2, '', 635, 'aa95c53b-5edf-4677-af62-d8cff2e38e7a', '', '', '', '', ''),
(1527, '', '', '', '', '', '', '', '', 64, '', 'CHAR', '', '', '', 'Program Type Icon (LMS)', 'NOT NULL', '', 12, '\"<field \\r\\n\\ttype=\\\"media\\\" \\r\\n\\tname=\\\"programtypes_default_icon\\\" \\r\\n\\tlabel=\\\"Program Type Default Icon \\\" \\r\\n\\tdescription=\\\"Must be 358px x 358px<br \\/>Set the default icon for program types.\\\" \\r\\n\\tdirectory=\\\"\\/images\\\" \\r\\n\\/>\"', 1, '2016-11-28 16:41:33', '2016-11-28 16:41:58', 2, '', 46, '0f18b633-ccd6-4aa5-8e47-7f9029ad5d8a', '', '', '', '', ''),
(1528, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Program Types - List Style', 'NOT NULL', '', 11, '\"<field \\r\\n\\ttype=\\\"list\\\" \\r\\n\\tname=\\\"programtypes_list_style\\\" \\r\\n\\tlabel=\\\"List Style\\\" \\r\\n\\tdescription=\\\"Select the style to use for the list display option.\\\" \\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\tmultiple=\\\"false\\\" \\r\\n\\tfilter=\\\"INT\\\" \\r\\n\\trequired=\\\"\\\" \\r\\n\\toption=\\\"0|Plain,1|Lines,2|Striped,3|Spaced\\\" \\r\\n\\tdefault=\\\"0\\\" \\r\\n\\/>\"', 1, '2016-11-28 16:46:48', '2016-11-28 16:47:09', 2, '', 635, '01fe8a37-d116-4698-9ee2-e9a91eda24ec', '', '', '', '', ''),
(1529, '', '', '', '', '', '', '', '', 11, '', 'INT', '', '', '', 'Geographic Focus Limit', 'NOT NULL', '', 10, '\"<field \\r\\n\\ttype=\\\"integer\\\" \\r\\n\\tname=\\\"geographic_focus_limit\\\" \\r\\n\\tlabel=\\\"Geographic Focus Limit\\\" \\r\\n\\tdefault=\\\"2\\\" \\r\\n\\tdescription=\\\"Select the number of geographic focuses an expert can select\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\trequired=\\\"\\\" \\r\\n\\tfirst=\\\"2\\\" \\r\\n\\tlast=\\\"20\\\" \\r\\n\\tstep=\\\"1\\\" \\r\\n\\/>\"', 1, '2016-11-29 09:29:34', '2016-11-29 09:30:56', 2, '', 748, '95f7091a-24ae-48e2-bddd-9618faa3fae7', '', '', '', '', ''),
(1530, '', '', '', '', '', '', '', '', 11, '', 'INT', '', '', '', 'Specialisation Limit', 'NOT NULL', '', 10, '\"<field \\r\\n\\ttype=\\\"integer\\\" \\r\\n\\tname=\\\"specialisation_limit\\\" \\r\\n\\tlabel=\\\"Specialisation Limit\\\" \\r\\n\\tdefault=\\\"3\\\" \\r\\n\\tdescription=\\\"Select the number of specialisations an expert can select\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\trequired=\\\"\\\" \\r\\n\\tfirst=\\\"2\\\" \\r\\n\\tlast=\\\"20\\\" \\r\\n\\tstep=\\\"1\\\" \\r\\n\\/>\"', 1, '2016-11-29 09:30:35', '0000-00-00 00:00:00', 1, '', 748, '1d94a5ff-0b39-4db2-9bb7-b5287ef27f75', '', '', '', '', ''),
(1531, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Expert Profile Template', 'NOT NULL', '', 25, '\"<field \\r\\n\\ttype=\\\"textarea\\\" \\r\\n\\tname=\\\"expert_profile\\\" \\r\\n\\tlabel=\\\"Expert Profile Template<br \\/><small>html allowed<\\/small>\\\" \\r\\n\\trows=\\\"30\\\" \\r\\n\\tcols=\\\"50\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tdescription=\\\"Here you can change the global expert profile template that is to display the details of an expert.\\\" \\r\\n\\tclass=\\\"text_area span12\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\tfilter=\\\"SAFEHTML\\\" \\r\\n\\thint=\\\"\\/\\/ add the global expert profile template here.\\\" \\r\\n\\/>\"', 1, '2016-12-02 07:15:50', '2016-11-24 12:40:25', 1, '', 741, 'bd3f8ab9-1b59-464e-b874-8ec3b95dd307', '', '', '', '', ''),
(1532, '', '', '', '', '', '', '', '', '', '', 'CHAR', '', '', '', 'Expert Profile Placeholders', 'NOT NULL', '', 14, '\"<field \\r\\n\\ttype=\\\"note\\\" \\r\\n\\tname=\\\"note_expert_profile_placeholders\\\" \\r\\n\\tlabel=\\\"Expert Profile Place holders\\\" \\r\\n\\tdescription=\\\"<div id=\'expert_profile_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(\'expert_profile\', token);\\r\\n});\\r\\n<\\/script>\\\" \\r\\n\\theading=\\\"h3\\\"\\r\\n\\/>\"', 1, '2016-12-02 08:02:14', '2016-11-24 11:33:37', 1, '', 742, '15f52321-ef8a-4b22-94d6-7e354a86bdb1', '', '', '', '', ''),
(1533, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'Credit System', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"credit_system\\\" \\r\\n\\tlabel=\\\"Credit System\\\" \\r\\n\\tdescription=\\\"Select the credit system to use.\\\" \\r\\n\\tclass=\\\"btn-group btn-group-yesno\\\" \\r\\n\\toption=\\\"1|Assessments,2|Modules\\\" \\r\\n\\tdefault=\\\"2\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\/>\"', 1, '2016-12-08 11:52:14', '2016-12-08 12:20:29', 2, '', 749, '7fe3ad6f-d527-4509-813e-1ffef4456130', '', '', '', '', ''),
(1534, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'Point Available (answer point)', 'NOT NULL', '', 10, '\"<field \\r\\n\\ttype=\\\"integer\\\" \\r\\n\\tname=\\\"available_point\\\" \\r\\n\\tlabel=\\\"Total Available Point\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tdescription=\\\"The total point available for this answer.\\\" \\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, '2016-12-08 18:09:57', '2016-12-08 18:14:14', 2, '', 114, '7602a690-8269-4374-b330-d1fd372db8fa', '', '', '', '', ''),
(1535, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'Build Component Dynamically', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"buildcomp\\\" \\r\\n\\tlabel=\\\"Build Backend-views Dynamically\\\" \\r\\n\\tdescription=\\\"To build the component fields and back-end views dynamically using a mySQL table file.\\\" \\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-12-25 17:35:05', '2016-12-25 18:06:42', 3, '', 750, '288e00d8-7ea3-4bfc-829c-3ab247ca9718', '', '', '', '', ''),
(1536, '', '', '', '', '', '', '', '', '', '', '', '', '', '', 'Dynamic Builder Option (mySql) - Note', 'NOT NULL', '', 14, '\"<field\\n\\ttype=\\\"note\\\"\\n\\tname=\\\"note_buildcomp_dynamic_mysql\\\"\\n\\tlabel=\\\"Dynamic Builder (MySql) Option\\\"\\n\\tdescription=\\\"<p>You can dynamically build the components back-end views and fields by adding a MySQL table dump that includes all or additional tables with their respective columns and data types. A basic and generic set of fields and tables will be created and integrated with the existing fields and tables of this component.<\\/p>\\r\\n\\r\\n<p>It is critical that the SQL provided be valid; otherwise, the process will fail. Additionally, you have the option to specify the field type and other properties directly in the MySQL column <b>COMMENT<\\/b>. This is done using JSON formatting in the comments section of each column\\/field.<\\/p>\\r\\n\\r\\n<p>For example, to define a field as a list with predefined options, use the following comment format:\\r\\n<br>\\r\\n<code>COMMENT \'{&quot;type&quot;:&quot;List&quot;, &quot;label&quot;:&quot;Name&quot;}\'<\\/code>\\r\\n<\\/p>\\r\\n<p>This JSON format allows you to specify various field properties, such as &quot;type&quot;, &quot;label&quot;, and &quot;option&quot;, which will be used to generate corresponding fields in the JCB Field configuration area.<\\/p>\\\"\\n\\theading=\\\"h4\\\"\\n\\tclass=\\\"alert alert-info\\\"\\n\\/>\"', 1, '2016-12-25 17:41:24', '2024-04-06 17:43:24', 8, '', 751, 'bdc7b3e1-b9cd-493c-8752-3fd60a8c0e24', '', '', '', '', ''),
(1537, '', '', '', '', '', '', '', '', '', '', 'MEDIUMTEXT', '', '', '', 'MySQL (dump - to build)', 'NOT NULL', 2, 25, '\"<field \\r\\n\\ttype=\\\"textarea\\\" \\r\\n\\tname=\\\"buildcomp-sql\\\" \\r\\n\\tlabel=\\\"MySQL\\\" \\r\\n\\trows=\\\"30\\\" \\r\\n\\tcols=\\\"15\\\"\\r\\n\\tdescription=\\\"Add your MySQL here!\\\" \\r\\n\\tclass=\\\"text_area span12\\\" \\r\\n\\tfilter=\\\"raw\\\" \\r\\n\\thint=\\\"\\/\\/ Add MySQL Table Dump Here\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\/>\"', 1, '2016-12-25 18:10:09', '2015-08-25 21:15:22', 1, '', 5, '98ad53ca-0da2-4aab-9a3c-1c7e1ee0a24e', '', '', '', '', ''),
(1538, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'Min Amount Per/Group', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"min\\\" \\r\\n\\tlabel=\\\"Minimum Amount\\\" \\r\\n\\tsize=\\\"10\\\" \\r\\n\\tmaxlength=\\\"50\\\"\\r\\n\\tdescription=\\\"\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\trequired=\\\"true\\\"\\r\\n\\tfilter=\\\"INT\\\" \\r\\n\\tmessage=\\\"Error! Please add minimum number of registrations allowed here.\\\" \\r\\n\\thint=\\\"Only Numbers\\\"\\r\\n\\tonchange=\\\"if(!jQuery(this).val().match(\\/^\\\\d+$\\/)){jQuery(this).val(\'\')};\\\" \\r\\n\\/>\"', 1, '2017-01-09 12:19:34', '2017-01-09 12:51:24', 3, '', 7, 'ca072f17-f6cd-4967-a9c0-31c0ae1f32ba', '', '', '', '', ''),
(1539, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'Max Amount Per/Group', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"max\\\" \\r\\n\\tlabel=\\\"Maximum Amount\\\" \\r\\n\\tsize=\\\"10\\\" \\r\\n\\tmaxlength=\\\"50\\\"\\r\\n\\tdescription=\\\"\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\trequired=\\\"true\\\"\\r\\n\\tfilter=\\\"INT\\\" \\r\\n\\tmessage=\\\"Error! Please add maximum number of registrations allowed here.\\\" \\r\\n\\thint=\\\"Only Numbers\\\"\\r\\n\\tonchange=\\\"if(!jQuery(this).val().match(\\/^\\\\d+$\\/)){jQuery(this).val(\'\')};\\\" \\r\\n\\/>\"', 1, '2017-01-09 12:22:58', '2017-01-09 12:51:01', 2, '', 7, 'd1d4a7d0-1a82-4dc8-9efe-e3944debad79', '', '', '', '', ''),
(1540, '', '', '', '', '', '', '', '', 11, '', 'TEXT', '', '', '', 'Limitations Per/Group', 'NOT NULL', '', 19, '\"<field \\r\\n\\ttype=\\\"repeatable\\\" \\r\\n\\tname=\\\"limit_per_group\\\" \\r\\n\\tlabel=\\\"Limitations Per\\/Group\\\" \\r\\n\\tdescription=\\\"The minimum & maximum number of registrations per\\/group.\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tid=\\\"limit_per_group\\\" \\r\\n\\tclass=\\\"limit_per_groups\\\" \\r\\n\\tselect=\\\"Add\\/Remove\\\" \\r\\n\\ticon=\\\"list\\\" \\r\\n\\tmaximum=\\\"50\\\" \\r\\n\\tfields=\\\"1260,1538,1539\\\" \\r\\n\\/>\"', 1, '2017-01-09 12:49:03', '2017-01-09 12:59:41', 4, '', 7, '3953a0e1-6615-49dd-ba57-ca54f5ca677e', '', '', '', '', ''),
(1541, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'Payment Types', 'NOT NULL', '', 11, '\"<field \\r\\n\\ttype=\\\"list\\\" \\r\\n\\tname=\\\"type\\\" \\r\\n\\tlabel=\\\"Type\\\" \\r\\n\\tdescription=\\\"The payment method type\\\" \\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\tmultiple=\\\"false\\\" \\r\\n\\tfilter=\\\"INT\\\" \\r\\n\\trequired=\\\"\\\" \\r\\n\\toption=\\\"|Select an option,1|Cash,2|Bank Transfer,3|Paypal,4|Netbank (iveri)\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\/>\"', 1, '2017-01-12 19:34:57', '0000-00-00 00:00:00', 1, '', 752, '7c8c263b-145f-4ccd-a200-2bccbedbd3af', '', '', '', '', ''),
(1542, '', '', '', '', '', '', '', '', 64, '', 'VARCHAR', '', '', '', 'Display Name - payment gateways', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"name\\\" \\r\\n\\tlabel=\\\"Display Name\\\" \\r\\n\\tsize=\\\"50\\\" \\r\\n\\tmaxlength=\\\"150\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tdescription=\\\"Display name of the payment method\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\tfilter=\\\"STRING\\\" \\r\\n\\tmessage=\\\"Error! Please add display name here.\\\" \\r\\n\\thint=\\\"Display Name Here\\\" \\r\\n\\/>\"', 1, '2017-01-12 19:43:11', '0000-00-00 00:00:00', 1, '', 753, 'c1d39227-26d1-4af0-ad31-b8f88a8b5e49', '', '', '', '', ''),
(1543, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'PayPal Email - payment gateways', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"paypal_email\\\" \\r\\n\\tlabel=\\\"PayPal Email\\\" \\r\\n\\tsize=\\\"50\\\" \\r\\n\\tmaxlength=\\\"150\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tdescription=\\\"PayPal email\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\tfilter=\\\"STRING\\\" \\r\\n\\tvalidate=\\\"email\\\" \\r\\n\\trequired=\\\"true\\\"\\r\\n\\tmessage=\\\"Error! Please add PayPal Email here.\\\" \\r\\n\\thint=\\\"demo@example.com\\\" \\r\\n\\/>\"', 1, '2017-01-12 19:46:02', '2017-01-12 20:52:03', 2, '', 753, '4a41ac05-d5d5-4661-8bfa-9c8cb2476264', '', '', '', '', ''),
(1544, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'Require Shipping Address - payment gateways', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"require_shipping_address\\\" \\r\\n\\tlabel=\\\"Require Shipping Address\\\" \\r\\n\\tdescription=\\\"Should the clients shipping address be requested from the payment gateway.\\\" \\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-01-12 19:50:31', '2017-01-12 19:56:49', 2, '', 753, 'bf1f2c40-d1f6-4a82-bdf8-7ea6f108dee1', '', '', '', '', ''),
(1545, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'Client Address Matching - payment gateways', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"client_address_matching\\\" \\r\\n\\tlabel=\\\"Client Address Matching\\\" \\r\\n\\tdescription=\\\"Force the client to use the same address at the payment gateway as on this website\\\" \\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-01-12 19:54:32', '2017-01-12 19:57:33', 2, '', 753, 'e773bde3-7e39-4151-8d48-fe919b58e9f9', '', '', '', '', ''),
(1546, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'Sandbox Mode - payment gateways', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"sandbox_mode\\\" \\r\\n\\tlabel=\\\"Sandbox Mode\\\" \\r\\n\\tdescription=\\\"Use Sandbox Test Environment.\\\" \\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-01-12 19:59:12', '2017-01-12 19:57:33', 1, '', 753, 'a3675d0b-47e0-4d1c-83db-c6b3255565ba', '', '', '', '', ''),
(1547, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'API Username - payment gateways', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"api_username\\\" \\r\\n\\tlabel=\\\"API Username\\\" \\r\\n\\tsize=\\\"50\\\" \\r\\n\\tmaxlength=\\\"150\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tdescription=\\\"API Details are required for refunds and cancellations.\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\tfilter=\\\"STRING\\\" \\r\\n\\tmessage=\\\"Error! Please add API Username here.\\\" \\r\\n\\thint=\\\"API Username Here\\\" \\r\\n\\/>\"', 1, '2017-01-12 20:00:39', '2017-01-12 20:53:16', 3, '', 753, 'd2199238-040d-467c-bb13-a4ed5632d693', '', '', '', '', ''),
(1548, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'API Password - payment gateways', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"api_password\\\" \\r\\n\\tlabel=\\\"API Password\\\" \\r\\n\\tsize=\\\"50\\\" \\r\\n\\tmaxlength=\\\"150\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\tfilter=\\\"STRING\\\" \\r\\n\\trequired=\\\"true\\\"\\r\\n\\tmessage=\\\"Error! Please add API Password here.\\\" \\r\\n\\thint=\\\"API Password Here\\\" \\r\\n\\/>\"', 1, '2017-01-12 20:01:05', '2017-01-12 20:53:40', 3, '', 753, 'd333de36-997a-4e20-b206-42b37bc9c3b4', '', '', '', '', ''),
(1549, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'API Signature - payment gateways', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"api_signature\\\" \\r\\n\\tlabel=\\\"API Signature\\\" \\r\\n\\tsize=\\\"50\\\" \\r\\n\\tmaxlength=\\\"150\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\tfilter=\\\"STRING\\\" \\r\\n\\trequired=\\\"true\\\"\\r\\n\\tmessage=\\\"Error! Please add API Signature here.\\\" \\r\\n\\thint=\\\"API Signature Here\\\"\\r\\n\\/>\"', 1, '2017-01-12 20:01:54', '2017-01-12 20:53:49', 3, '', 753, '8ce30665-fc0d-430b-bcf7-91bcc404ad57', '', '', '', '', ''),
(1550, '', '', '', '', '', '', '', '', 7, '', 'CHAR', 2, '', '', 'Convert To For Processing - payment gateways', 'NOT NULL', '', 6, '\"<field \\r\\n\\ttype=\\\"currency\\\" \\r\\n\\tname=\\\"currency\\\" \\r\\n\\tlabel=\\\"Convert To For Processing\\\" \\r\\n\\tdescription=\\\"List of available currencies\\\" \\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\\ttable=\\\"#__###component###_currency\\\" \\r\\n\\tcomponent=\\\"com_###component###\\\" \\r\\n\\tview=\\\"currency\\\" \\r\\n\\tviews=\\\"currencies\\\" \\r\\n\\tvalue_field=\\\"name\\\" \\r\\n\\tkey_field=\\\"codethree\\\" \\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_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, '2017-01-12 20:05:16', '2017-01-12 20:55:03', 2, '', 559, 'fc8510f1-d080-45b8-9853-b27c146eddab', '', '', '', '', ''),
(1551, '', '', '', '', '', '', '', '', 7, '', 'TEXT', '', '', '', 'Instructions - payment gateways', 'NOT NULL', '', 25, '\"<field \\r\\n\\ttype=\\\"textarea\\\" \\r\\n\\tname=\\\"instructions\\\" \\r\\n\\tlabel=\\\"Instructions\\\" \\r\\n\\trows=\\\"10\\\" \\r\\n\\tcols=\\\"10\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tdescription=\\\"The instructions you want displaying to customers who choose this payment method.\\\" \\r\\n\\tclass=\\\"text_area span-12\\\" \\r\\n\\tfilter=\\\"STRING\\\" \\r\\n\\thint=\\\"The instructions you want displaying to customers who choose this payment method, leave blank for none.\\\" \\r\\n\\/>\"', 1, '2017-01-12 20:08:58', '2017-01-12 20:45:25', 4, '', 559, 'ff4cb2cd-4a15-4ec0-b8d4-ed09e7650da6', '', '', '', '', ''),
(1552, '', '', '', '', '', '', '', '', 1, '', 'TEXT', '', '', '', 'Related Articles (joomla)', 'NOT NULL', 1, 6, '\"<field \\r\\n\\ttype=\\\"articles\\\" \\r\\n\\tname=\\\"article\\\" \\r\\n\\tlabel=\\\"Related Article\\\" \\r\\n\\tdescription=\\\"Select any related articles.\\\" \\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\tmultiple=\\\"true\\\" \\r\\n\\tdefault=\\\"0\\\" \\r\\n\\textends=\\\"list\\\" \\r\\n\\ttable=\\\"#__content\\\" \\r\\n\\tcomponent=\\\"com_content\\\" \\r\\n\\tview=\\\"article\\\" \\r\\n\\tviews=\\\"articles\\\" \\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###\',\'c.title\'),array(\'###ID###\',\'###CODE_TEXT###\',\'category\')));\\\" \\r\\n\\ttype_php_4=\\\"$query->from($db->quoteName(\'###TABLE###\', \'a\'));\\\\n\\\\t\\\\t$query->join(\'LEFT\', $db->quoteName(\'#__categories\', \'c\') . \' ON (\' . $db->quoteName(\'a.catid\') . \' = \' . $db->quoteName(\'c.id\') . \')\');\\\" \\r\\n\\ttype_php_5=\\\"$query->where($db->quoteName(\'a.state\') . \' = 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_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### . \' (\' . $item->category . \')\');\\\" \\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, '2017-01-13 02:26:28', '2017-01-24 19:55:48', 4, '', 565, 'ad713ddb-e263-4674-beb8-b9070a4e4a57', '', '', '', '', ''),
(1553, '', '', '', '', '', '', '', '', 11, '', 'TEXT', '', '', '', 'Related Events (Roline)', 'NOT NULL', 1, 6, '\"<field \\r\\n\\ttype=\\\"relatedevents\\\" \\r\\n\\tname=\\\"related_event\\\" \\r\\n\\tlabel=\\\"Related Event\\\"\\r\\n\\tfilter=\\\"STRING\\\"\\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\tmultiple=\\\"true\\\"\\r\\n\\textends=\\\"list\\\" \\r\\n\\tbutton=\\\"true\\\"\\r\\n\\ttable=\\\"#__###component###_event\\\" \\r\\n\\tcomponent=\\\"com_###component###\\\" \\r\\n\\tview=\\\"event\\\" \\r\\n\\tviews=\\\"events\\\" \\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(\'#__###component###_event\', \'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=\\\"{\\\\n\\\\t\\\\t\\\\t$jinput = JFactory::getApplication()->input;\\\\n\\\\t\\\\t\\\\t$id = $jinput->get(\'id\', 0);\\\" \\r\\n\\ttype_php_12=\\\"\\\\tforeach($items as $item)\\\" \\r\\n\\ttype_php_13=\\\"\\\\t{\\\\n\\\\t\\\\t\\\\t\\\\tif ($id != $item->###ID###)\\\\n\\\\t\\\\t\\\\t\\\\t{\\\" \\r\\n\\ttype_php_14=\\\"\\\\t\\\\t\\\\t\\\\t$options[] = JHtml::_(\'select.option\', $item->###ID###, $item->###CODE_TEXT### );\\\\n\\\\t\\\\t\\\\t\\\\t}\\\" \\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, '2017-01-13 02:29:18', '2017-01-24 19:47:13', 4, '', 149, '7a317c7b-dd4c-4bce-b233-61c471886868', '', '', '', '', ''),
(1554, '', '', '', '', '', '', '', '', 7, '', 'CHAR', 2, '', '', 'Registered User Currency', 'NOT NULL', '', 6, '\"<field \\r\\n\\ttype=\\\"currency\\\" \\r\\n\\tname=\\\"registered_user_currency\\\" \\r\\n\\tlabel=\\\"Registered User Currency\\\" \\r\\n\\tdescription=\\\"Currency of the registered user when this document was generated.\\\" \\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\\ttable=\\\"#__###component###_currency\\\" \\r\\n\\tcomponent=\\\"com_###component###\\\" \\r\\n\\tview=\\\"currency\\\" \\r\\n\\tviews=\\\"currencies\\\" \\r\\n\\tvalue_field=\\\"name\\\" \\r\\n\\tkey_field=\\\"codethree\\\" \\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_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, '2017-01-13 14:04:45', '2017-02-20 14:34:11', 3, '', 559, 'd1f3f3f3-a2b9-43da-91af-638d7039b8fc', '', '', '', '', ''),
(1555, '', '', '', '', '', '', '', '', 7, '', 'CHAR', 2, '', '', 'Organizer Currency', 'NOT NULL', '', 6, '\"<field \\r\\n\\ttype=\\\"currency\\\" \\r\\n\\tname=\\\"organizer_currency\\\" \\r\\n\\tlabel=\\\"Organizer Currency\\\" \\r\\n\\tdescription=\\\"Currency of the organizer when this document was generated.\\\" \\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\\ttable=\\\"#__###component###_currency\\\" \\r\\n\\tcomponent=\\\"com_###component###\\\" \\r\\n\\tview=\\\"currency\\\" \\r\\n\\tviews=\\\"currencies\\\" \\r\\n\\tvalue_field=\\\"name\\\" \\r\\n\\tkey_field=\\\"codethree\\\" \\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_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, '2017-01-13 14:06:38', '2017-02-20 14:34:32', 3, '', 559, 'd1234283-936e-4055-ba96-c1acd19a17d4', '', '', '', '', ''),
(1556, '', '', '', '', '', '', '', '', 100, '', 'VARCHAR', '', '', '', 'Total (Organizer)', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"total_organizer\\\" \\r\\n\\tlabel=\\\"Total (Organizer)\\\" \\r\\n\\tsize=\\\"10\\\" \\r\\n\\tmaxlength=\\\"50\\\"\\r\\n\\tclass=\\\"text_area wprice\\\" \\r\\n\\tfilter=\\\"FLOAT\\\" \\r\\n\\thint=\\\"Total\\\"\\r\\n\\treadonly=\\\"true\\\"\\r\\n\\tonchange=\\\"if(!jQuery(this).val().match(\\/^\\\\d+\\\\.\\\\d+$\\/)){jQuery(this).val(\'\')};\\\" \\r\\n\\/>\"', 1, '2017-01-13 14:07:55', '2017-02-21 01:10:26', 4, '', 559, 'a152efc3-57b8-4311-ad49-8f3a95ac1dc5', '', '', '', '', ''),
(1557, '', '', '', '', '', '', '', '', 100, '', 'VARCHAR', '', '', '', 'Exchange Rate Used', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"exchange_rate\\\" \\r\\n\\tlabel=\\\"Exchange Rate Used\\\" \\r\\n\\tdescription=\\\"The exchange rate used to convert the organizer\\u2019s currency to the registered user\'s currency when this invoice was created.\\\"\\r\\n\\tsize=\\\"10\\\" \\r\\n\\tmaxlength=\\\"50\\\"\\r\\n\\tclass=\\\"text_area wprice\\\" \\r\\n\\tfilter=\\\"FLOAT\\\" \\r\\n\\thint=\\\"Exchange Rate\\\"\\r\\n\\tonchange=\\\"if(!jQuery(this).val().match(\\/^\\\\d+\\\\.\\\\d+$\\/)){jQuery(this).val(\'\')};\\\" \\r\\n\\/>\"', 1, '2017-01-13 14:21:09', '2017-01-13 14:23:12', 2, '', 7, '1dc323fb-e749-44c2-b104-9cf0be871d43', '', '', '', '', ''),
(1558, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Session Key', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"key\\\" \\r\\n\\tlabel=\\\"Session Key\\\" \\r\\n\\tsize=\\\"50\\\" \\r\\n\\tmaxlength=\\\"150\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tdescription=\\\"Session Key\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\treadonly=\\\"true\\\" \\r\\n\\tdisabled=\\\"true\\\" \\r\\n\\trequired=\\\"false\\\" \\r\\n\\tfilter=\\\"ALNUM\\\" \\r\\n\\thint=\\\"Set Automatic\\\" \\r\\n\\/>\"', 1, '2017-01-13 17:39:31', '0000-00-00 00:00:00', 1, '', 754, '7a3baae7-05e6-4d16-8730-59004f22c1da', '', '', '', '', ''),
(1559, '', '', '', '', '', '', 'Other', 4, 1, '', 'INT', 2, '', '', 'IP - Protocol', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"protocol\\\" \\r\\n\\tlabel=\\\"Protocol\\\" \\r\\n\\tdescription=\\\"IP protocol\\\" \\r\\n\\tclass=\\\"btn-group btn-group-yesno\\\" \\r\\n\\toption=\\\"4|V4,6|V6\\\" \\r\\n\\tdefault=\\\"4\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\/>\"', 1, '2017-01-14 14:48:15', '0000-00-00 00:00:00', 1, '', 755, 'd611ad51-7160-48ec-9e91-c3edfc657601', '', '', '', '', ''),
(1560, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Subject Confirmation Email Template', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"subject_confirmation_email\\\" \\r\\n\\tlabel=\\\"Subject for confirmation email\\\" \\r\\n\\tsize=\\\"50\\\" \\r\\n\\tmaxlength=\\\"150\\\" \\r\\n\\tdefault=\\\"Hi [referral_name], please confirm the details of [expert_name]\\\" \\r\\n\\tdescription=\\\"Enter subject for the confirmation email.\\\" \\r\\n\\tclass=\\\"text_area span12\\\" \\r\\n\\tfilter=\\\"STRING\\\" \\r\\n\\tmessage=\\\"Error! Please add some text here.\\\" \\r\\n\\thint=\\\"Subject for the confirmation email\\\" \\r\\n\\/>\"', 1, '2017-01-17 20:36:27', '2017-01-17 20:38:32', 2, '', 741, '7454b47f-0573-4c98-8535-10fda9a5211d', '', '', '', '', ''),
(1561, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', 2, '', '', 'Function Name', 'NOT NULL', '', 24, '\"<field name=\\\"function_name\\\"\\r\\n\\t\\t\\t\\tlabel=\\\"Function Name\\\"\\r\\n\\t\\t\\t\\tdescription=\\\"The name for this code snippet\\\"\\r\\n\\t\\t\\t\\ttype=\\\"text\\\"\\r\\n\\t\\t\\t\\tclass=\\\"input-large-text\\\"\\r\\n\\t\\t\\t\\tsize=\\\"40\\\"\\r\\n\\t\\t\\t\\trequired=\\\"true\\\"\\/>\"', 1, '2017-01-19 18:50:57', '0000-00-00 00:00:00', 1, '', 756, '3a3c43e6-18c2-4fc6-aebe-0ed8d5c6416f', '', '', '', '', ''),
(1562, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', 2, '', '', 'Function Call', 'NOT NULL', '', 24, '\"<field name=\\\"call\\\" \\r\\n\\tlabel=\\\"Function Call\\\"\\r\\n\\tdescription=\\\"The string used to call this code\\\"\\r\\n\\thint=\\\"add_name\\\"\\r\\n\\ttype=\\\"text\\\" size=\\\"40\\\"\\r\\n\\/>\"', 1, '2017-01-19 18:53:34', '0000-00-00 00:00:00', 1, '', 757, '211ddcca-6344-4d6d-a74b-a65de7dbbaf2', '', '', '', '', ''),
(1563, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Add', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"add\\\" \\r\\n\\tlabel=\\\"Add\\\" \\r\\n\\tdescription=\\\"\\\" \\r\\n\\tclass=\\\"btn-group btn-group-yesno\\\" \\r\\n\\toption=\\\"1|Yes,0|No\\\" \\r\\n\\tdefault=\\\"0\\\" \\r\\n\\/>\"', 1, '2017-01-19 19:00:26', '0000-00-00 00:00:00', 1, '', 758, '684763b7-b50c-4eaf-ab74-e70d52fba3c2', '', '', '', '', ''),
(1564, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Prepare Content', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"prepare_content\\\" \\r\\n\\tlabel=\\\"Prepare Content\\\" \\r\\n\\tdescription=\\\"Set if the html of this code snippet should use Prepare Content plugins.\\\" \\r\\n\\tclass=\\\"btn-group btn-group-yesno\\\" \\r\\n\\toption=\\\"1|Yes,0|No\\\" \\r\\n\\tdefault=\\\"0\\\" \\r\\n\\/>\"', 1, '2017-01-19 19:02:47', '0000-00-00 00:00:00', 1, '', 759, '2491ee69-d4e3-4b88-a053-00a61fc3b522', '', '', '', '', ''),
(1565, '', '', '', '', '', '', 1, '', 1, '', 'TINYINT', 2, '', '', 'Load Only First Found', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"first_found_content\\\" \\r\\n\\tlabel=\\\"Load Only First Found\\\" \\r\\n\\tdescription=\\\"\\\" \\r\\n\\tclass=\\\"btn-group btn-group-yesno\\\" \\r\\n\\toption=\\\"1|Yes,0|No\\\" \\r\\n\\tdefault=\\\"1\\\"\\r\\n\\/>\"', 1, '2017-01-19 19:04:01', '2017-01-19 19:06:06', 2, '', 760, '7a182a1f-e22d-42ca-8d37-b802039ddddc', '', '', '', '', ''),
(1566, '', '', '', '', '', '', 1, '', 1, '', 'TINYINT', 2, '', '', 'Load Direction', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"execution_direction\\\" \\r\\n\\tlabel=\\\"Load Direction\\\" \\r\\n\\tdescription=\\\"\\\" \\r\\n\\tclass=\\\"btn-group btn-group-yesno\\\" \\r\\n\\toption=\\\"1|Normal,0|Reverse\\\" \\r\\n\\tdefault=\\\"1\\\" \\r\\n\\/>\"', 1, '2017-01-19 19:08:40', '0000-00-00 00:00:00', 1, '', 761, 'c7cec825-6c32-45a2-9753-b39efe8b1015', '', '', '', '', ''),
(1567, '', '', '', '', '', '', '', '', 1, '', 'INT', 2, '', '', 'Content Separator', 'NOT NULL', '', 11, '\"<field \\r\\n\\ttype=\\\"list\\\" \\r\\n\\tname=\\\"separator\\\" \\r\\n\\tlabel=\\\"Content Separator\\\" \\r\\n\\tdescription=\\\"\\\" \\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\tmultiple=\\\"false\\\" \\r\\n\\toption=\\\"0|None,1|New Line,2|Class [&lt;div class=&quot;separator&quot;&gt;],3|Bootstrap,4|Div\\\" \\r\\n\\tdefault=\\\"0\\\" \\r\\n\\/>\"', 1, '2017-01-19 19:11:34', '0000-00-00 00:00:00', 1, '', 762, 'c4a17fd7-f20f-41e6-af22-1fc0c1f1e752', '', '', '', '', ''),
(1568, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Use Proxy', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"use_proxy\\\" \\r\\n\\tlabel=\\\"Check Proxy\\\" \\r\\n\\tdescription=\\\"Should we check proxy values when searching for the IP?\\\" \\r\\n\\tclass=\\\"btn-group btn-group-yesno\\\" \\r\\n\\toption=\\\"1|Yes,0|No\\\" \\r\\n\\tdefault=\\\"0\\\"\\r\\n\\/>\"', 1, '2017-01-20 23:34:55', '0000-00-00 00:00:00', 1, '', 763, '9b919286-80cc-4b1f-90a4-40bae102d511', '', '', '', '', ''),
(1569, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', 2, '', '', 'Proxies', 'NOT NULL', '', 11, '\"<field \\r\\n\\ttype=\\\"list\\\" \\r\\n\\tname=\\\"proxies\\\" \\r\\n\\tlabel=\\\"Proxies\\\" \\r\\n\\tdescription=\\\"Select the proxies you would like to use. Selecting none will load all options.\\\" \\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\tmultiple=\\\"true\\\" \\r\\n\\tfilter=\\\"WORD\\\" \\r\\n\\toption=\\\"HTTP_X_REAL_IP,HTTP_CLIENT_IP,HTTP_TRUE_CLIENT_IP,HTTP_X_FWD_IP_ADDR,HTTP_X_FORWARDED_FOR,HTTP_X_FORWARDED,HTTP_FORWARDED_FOR,HTTP_FORWARDED,HTTP_VIA,HTTP_X_COMING_FROM,HTTP_COMING_FROM\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tshowon=\\\"use_proxy:1\\\"\\r\\n\\/>\"', 1, '2017-01-20 23:51:29', '2017-01-20 23:54:56', 3, '', 764, '527ca32a-a480-4abd-8acb-4c1e5da86e94', '', '', '', '', ''),
(1570, '', '', 1, '', '', '', '', '', '', '', '', '', 'W0NVU1RPTUNPREU9dWlraXRJbWFnZVVwbG9hZGVyK2ltYWdlLGltYWdlLGJhbm5lcl0=', '', 'Banner Image Uploader (uikit)', 'NOT NULL', '', 14, '\"<field\\n\\ttype=\\\"note\\\"\\n\\tname=\\\"banner_image_uploader\\\"\\n\\tlabel=\\\"Banner Image\\\"\\n\\tdescription=\\\"[CUSTOMCODE=uikitImageUploaderHTML+image,image,banner]\\\"\\n\\/>\"', 1, '2017-01-24 20:04:36', '2018-09-18 20:49:16', 26, '', 110, '632744f9-b5c5-4e1a-a94e-9162013b76ae', '', '', '', '', ''),
(1571, '', '', '', '', '', '', '', '', 255, '', 'TEXT', '', '', '', 'Banner Image Key', 'NOT NULL', 3, 9, '\"<field \\r\\n\\ttype=\\\"hidden\\\" \\r\\n\\tname=\\\"banner_image\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\/>\"', 1, '2017-01-24 20:05:59', '2016-11-19 06:06:52', 1, '', 729, '74ac1def-0afa-4333-9dbc-fa315c6a8615', '', '', '', '', ''),
(1572, '', '', '', '', '', '', '', '', 255, '', 'TEXT', '', '', '', 'Teaser Image Key', 'NOT NULL', 3, 9, '\"<field \\r\\n\\ttype=\\\"hidden\\\" \\r\\n\\tname=\\\"teaser_image\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\/>\"', 1, '2017-01-24 20:09:18', '2016-11-19 06:06:52', 1, '', 729, 'c92a61fd-f680-47ca-9a72-f2d55b864941', '', '', '', '', ''),
(1573, '', '', 1, '', '', '', '', '', '', '', '', '', 'W0NVU1RPTUNPREU9dWlraXRJbWFnZVVwbG9hZGVyK2ltYWdlLGltYWdlLHRlYXNlcl0=', '', 'Teaser Image Uploader (uikit)', 'NOT NULL', '', 14, '\"<field\\n\\ttype=\\\"note\\\"\\n\\tname=\\\"teaser_image_uploader\\\"\\n\\tlabel=\\\"Teaser Image\\\"\\n\\tdescription=\\\"[CUSTOMCODE=uikitImageUploaderHTML+image,image,teaser]\\\"\\n\\/>\"', 1, '2017-01-24 20:10:25', '2018-09-18 20:49:47', 17, '', 110, '6a093533-43c1-4fab-bfa4-33e419fc82b8', '', '', '', '', ''),
(1574, '', '', 1, '', '', '', '', '', '', '', '', '', 'W0NVU1RPTUNPREU9dWlraXRJbWFnZVVwbG9hZGVyK2ltYWdlLGltYWdlLHBvc3Rlcl0=', '', 'Poster Image Uploader (uikit)', 'NOT NULL', '', 14, '\"<field\\n\\ttype=\\\"note\\\"\\n\\tname=\\\"poster_image_uploader\\\"\\n\\tlabel=\\\"Poster Image\\\"\\n\\tdescription=\\\"[CUSTOMCODE=uikitImageUploaderHTML+image,image,poster]\\\"\\n\\/>\"', 1, '2017-01-24 20:27:30', '2018-09-18 20:50:39', 16, '', 110, '9e98615a-b01e-4ccb-8301-95d9525f5ab5', '', '', '', '', ''),
(1575, '', '', '', '', '', '', '', '', 255, '', 'TEXT', '', '', '', 'Poster Image Key', 'NOT NULL', 3, 9, '\"<field \\r\\n\\ttype=\\\"hidden\\\" \\r\\n\\tname=\\\"poster_image\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\/>\"', 1, '2017-01-24 20:29:38', '2016-11-19 06:06:52', 1, '', 729, '57ae1d07-36f6-417b-9191-0e87cd6d3e40', '', '', '', '', ''),
(1576, '', '', '', '', '', '', '', '', 11, '', 'INT', '', '', '', 'Program (show archived also)', 'NOT NULL', '', 6, '\"<field \\r\\n\\ttype=\\\"programs\\\" \\r\\n\\tname=\\\"program\\\" \\r\\n\\tlabel=\\\"Select a Program\\\" \\r\\n\\tdescription=\\\"\\\" \\r\\n\\trequired=\\\"true\\\"\\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\tmultiple=\\\"false\\\"\\r\\n\\textends=\\\"list\\\" \\r\\n\\tbutton=\\\"true\\\"\\r\\n\\ttable=\\\"#__###component###_program\\\" \\r\\n\\tcomponent=\\\"com_###component###\\\" \\r\\n\\tview=\\\"program\\\" \\r\\n\\tviews=\\\"programs\\\" \\r\\n\\tvalue_field=\\\"acronym\\\" \\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_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, '2017-01-25 10:27:51', '2017-01-25 10:35:38', 3, '', 113, 'cfdf50a5-d2b5-4866-977d-5487971d3237', '', '', '', '', ''),
(1577, '', '', '', '', '', '', '', '', 11, '', 'INT', '', '', '', 'Course (show archived also)', 'NOT NULL', '', 6, '\"<field \\r\\n\\ttype=\\\"course\\\" \\r\\n\\tname=\\\"course\\\" \\r\\n\\tlabel=\\\"Select a Course\\\"\\r\\n\\tfilter=\\\"INT\\\"\\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\trequired=\\\"true\\\"\\r\\n\\textends=\\\"list\\\" \\r\\n\\tbutton=\\\"true\\\"\\r\\n\\ttable=\\\"#__###component###_course\\\" \\r\\n\\tcomponent=\\\"com_###component###\\\" \\r\\n\\tview=\\\"course\\\" \\r\\n\\tviews=\\\"courses\\\" \\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###\')))->select($db->quoteName(array(\'c.acronym\'),array(\'program\')));\\\" \\r\\n\\ttype_php_4=\\\"$query->from($db->quoteName(\'#__###component###_course\', \'a\'))->join(\'LEFT\', $db->quoteName(\'#__###component###_program\', \'c\') . \' ON (\' . $db->quoteName(\'a.program\') . \' = \' . $db->quoteName(\'c.id\') . \')\');\\\" \\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$options[] = JHtml::_(\'select.option\', \'\', \'Select an option\');\\\" \\r\\n\\ttype_php_12=\\\"\\\\tforeach($items as $item)\\\" \\r\\n\\ttype_php_13=\\\"\\\\t{\\\" \\r\\n\\ttype_php_14=\\\"\\\\t\\\\t$options[] = JHtml::_(\'select.option\', $item->###ID###, $item->###CODE_TEXT### . \' (\' . $item->program . \')\' );\\\" \\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, '2017-01-25 10:29:06', '2017-01-25 10:35:48', 2, '', 149, '19532c6b-d9b8-479a-b1aa-cb8b73e204c5', '', '', '', '', ''),
(1578, '', '', '', '', '', '', '', '', 11, '', 'INT', '', '', '', 'Event (show archived also)', 'NOT NULL', '', 6, '\"<field \\r\\n\\ttype=\\\"events\\\" \\r\\n\\tname=\\\"event\\\" \\r\\n\\tlabel=\\\"Select an Event\\\" \\r\\n\\tdescription=\\\"\\\" \\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\trequired=\\\"true\\\"\\r\\n\\textends=\\\"list\\\" \\r\\n\\tbutton=\\\"true\\\"\\r\\n\\ttable=\\\"#__###component###_event\\\" \\r\\n\\tcomponent=\\\"com_###component###\\\" \\r\\n\\tview=\\\"event\\\" \\r\\n\\tviews=\\\"events\\\" \\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);\\\" type_php_3=\\\"$query->select($db->quoteName(array(\'a.###ID###\',\'a.###TEXT###\'),array(\'###ID###\',\'###CODE_TEXT###\')))->select($db->quoteName(array(\'c.acronym\'),array(\'program\')));\\\" \\r\\n\\ttype_php_4=\\\"$query->from($db->quoteName(\'###TABLE###\', \'a\'))->join(\'LEFT\', $db->quoteName(\'#__###component###_program\', \'c\') . \' ON (\' . $db->quoteName(\'a.program\') . \' = \' . $db->quoteName(\'c.id\') . \')\');\\\" \\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_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### . \' (\' . $item->program . \')\');\\\" \\r\\n\\ttype_php_16=\\\"\\\\t}\\\" \\r\\n\\ttype_php_17=\\\"}\\\" \\r\\n\\ttype_php_19=\\\"return $options;\\\" \\r\\n\\/>\"', 1, '2017-01-25 10:33:39', '2017-01-25 10:35:09', 2, '', 283, '8989dbec-097f-4233-87ce-0459b6648dad', '', '', '', '', ''),
(1579, '', '', '', '', '', '', '', '', 11, '', 'INT', '', '', '', 'Banner Width (in pixels)', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"banner_width\\\" \\r\\n\\tlabel=\\\"Banner Width (in pixels)\\\" \\r\\n\\tsize=\\\"50\\\" \\r\\n\\tmaxlength=\\\"150\\\"\\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\tfilter=\\\"INT\\\" \\r\\n\\thint=\\\"Only Numbers\\\"\\r\\n\\tonchange=\\\"if(!jQuery(this).val().match(\\/^\\\\d+$\\/)){jQuery(this).val(\'\')};\\\" \\r\\n\\tshowon=\\\"crop_banner:1\\\"\\r\\n\\/>\"', 1, '2017-01-25 11:42:47', '2017-01-27 02:01:43', 4, '', 7, '09deb6f5-4868-4a5c-a2f7-e6ff1b83ee33', '', '', '', '', ''),
(1580, '', '', '', '', '', '', '', '', 11, '', 'INT', '', '', '', 'Banner Height (in pixels)', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"banner_height\\\" \\r\\n\\tlabel=\\\"Banner Height (in pixels)\\\" \\r\\n\\tsize=\\\"50\\\" \\r\\n\\tmaxlength=\\\"150\\\"\\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\tfilter=\\\"INT\\\" \\r\\n\\thint=\\\"Only Numbers\\\"\\r\\n\\tonchange=\\\"if(!jQuery(this).val().match(\\/^\\\\d+$\\/)){jQuery(this).val(\'\')};\\\" \\r\\n\\tshowon=\\\"crop_banner:1\\\"\\r\\n\\/>\"', 1, '2017-01-25 11:44:05', '2017-01-27 02:01:54', 3, '', 7, 'c81dd6fe-c2f7-47e7-8b6b-6b656c6a268a', '', '', '', '', ''),
(1581, '', '', '', '', '', '', '', '', 11, '', 'INT', '', '', '', 'Poster Width (in pixels)', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"poster_width\\\" \\r\\n\\tlabel=\\\"Poster Width (in pixels)\\\" \\r\\n\\tsize=\\\"50\\\" \\r\\n\\tmaxlength=\\\"150\\\"\\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\tfilter=\\\"INT\\\" \\r\\n\\thint=\\\"Only Numbers\\\"\\r\\n\\tonchange=\\\"if(!jQuery(this).val().match(\\/^\\\\d+$\\/)){jQuery(this).val(\'\')};\\\" \\r\\n\\tshowon=\\\"crop_poster:1\\\"\\r\\n\\/>\"', 1, '2017-01-25 11:44:56', '2017-01-27 02:02:06', 3, '', 7, '558d8f6b-fc19-40af-9efd-7021115512ad', '', '', '', '', ''),
(1582, '', '', '', '', '', '', '', '', 11, '', 'INT', '', '', '', 'Poster Height (in pixels)', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"poster_height\\\" \\r\\n\\tlabel=\\\"Poster Height (in pixels)\\\" \\r\\n\\tsize=\\\"50\\\" \\r\\n\\tmaxlength=\\\"150\\\"\\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\tfilter=\\\"INT\\\" \\r\\n\\thint=\\\"Only Numbers\\\"\\r\\n\\tonchange=\\\"if(!jQuery(this).val().match(\\/^\\\\d+$\\/)){jQuery(this).val(\'\')};\\\" \\r\\n\\tshowon=\\\"crop_poster:1\\\"\\r\\n\\/>\"', 1, '2017-01-25 11:45:31', '2017-01-27 02:02:15', 3, '', 7, '149ee155-49f5-4d2d-a2bf-3d50ffcf58d9', '', '', '', '', ''),
(1583, '', '', '', '', '', '', '', '', 11, '', 'INT', '', '', '', 'Teaser Width (in pixels)', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"teaser_width\\\" \\r\\n\\tlabel=\\\"Teaser Width (in pixels)\\\" \\r\\n\\tsize=\\\"50\\\" \\r\\n\\tmaxlength=\\\"150\\\"\\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\tfilter=\\\"INT\\\" \\r\\n\\thint=\\\"Only Numbers\\\"\\r\\n\\tonchange=\\\"if(!jQuery(this).val().match(\\/^\\\\d+$\\/)){jQuery(this).val(\'\')};\\\" \\r\\n\\tshowon=\\\"crop_teaser:1\\\"\\r\\n\\/>\"', 1, '2017-01-25 11:46:04', '2017-01-27 02:02:26', 3, '', 7, '3ad67290-a494-4f30-8c0c-c6277e5f6cfc', '', '', '', '', ''),
(1584, '', '', '', '', '', '', '', '', 11, '', 'INT', '', '', '', 'Teaser Height (in pixels)', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"teaser_height\\\" \\r\\n\\tlabel=\\\"Teaser Height (in pixels)\\\" \\r\\n\\tsize=\\\"50\\\" \\r\\n\\tmaxlength=\\\"150\\\"\\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\tfilter=\\\"INT\\\" \\r\\n\\thint=\\\"Only Numbers\\\"\\r\\n\\tonchange=\\\"if(!jQuery(this).val().match(\\/^\\\\d+$\\/)){jQuery(this).val(\'\')};\\\" \\r\\n\\tshowon=\\\"crop_teaser:1\\\"\\r\\n\\/>\"', 1, '2017-01-25 11:46:20', '2017-01-27 02:02:35', 3, '', 7, 'f5d07ac6-328e-4c26-a731-3ddc6f1f04ef', '', '', '', '', ''),
(1585, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'Crop Banners', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"crop_banner\\\" \\r\\n\\tlabel=\\\"Crop Banners\\\" \\r\\n\\tdescription=\\\"Set if all banners that are added should be cropped.\\\" \\r\\n\\tclass=\\\"btn-group btn-group-yesno\\\" \\r\\n\\toption=\\\"1|Yes,0|No\\\" \\r\\n\\tdefault=\\\"0\\\"\\r\\n\\/>\"', 1, '2017-01-25 11:49:20', '2017-01-27 01:23:49', 2, '', 765, '3820ca03-7495-4580-a61c-6d5434315f81', '', '', '', '', ''),
(1586, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'Crop Posters', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"crop_poster\\\" \\r\\n\\tlabel=\\\"Crop Posters\\\" \\r\\n\\tdescription=\\\"Set if all posters that are added should be cropped.\\\" \\r\\n\\tclass=\\\"btn-group btn-group-yesno\\\" \\r\\n\\toption=\\\"1|Yes,0|No\\\" \\r\\n\\tdefault=\\\"0\\\"\\r\\n\\/>\"', 1, '2017-01-25 11:49:51', '2017-01-27 01:23:53', 2, '', 765, 'b510ff16-2f8b-472b-84a7-dc10187bde65', '', '', '', '', ''),
(1587, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'Crop Teasers', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"crop_teaser\\\" \\r\\n\\tlabel=\\\"Crop Teaser Images\\\" \\r\\n\\tdescription=\\\"Set if all teaser images that are added should be cropped.\\\" \\r\\n\\tclass=\\\"btn-group btn-group-yesno\\\" \\r\\n\\toption=\\\"1|Yes,0|No\\\" \\r\\n\\tdefault=\\\"0\\\"\\r\\n\\/>\"', 1, '2017-01-25 11:51:41', '2017-01-27 01:23:58', 2, '', 765, 'f6e5e1b3-31d5-4d8d-aa2d-bb36ed09bf97', '', '', '', '', ''),
(1588, '', '', '', '', '', '', '', '', 11, '', 'INT', '', '', '', 'Image Width (in pixels)', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"main_width\\\" \\r\\n\\tlabel=\\\"Image Width (in pixels)\\\" \\r\\n\\tsize=\\\"50\\\" \\r\\n\\tmaxlength=\\\"150\\\"\\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\tfilter=\\\"INT\\\" \\r\\n\\thint=\\\"Only Numbers\\\"\\r\\n\\tonchange=\\\"if(!jQuery(this).val().match(\\/^\\\\d+$\\/)){jQuery(this).val(\'\')};\\\" \\r\\n\\tshowon=\\\"crop_main:1\\\"\\r\\n\\/>\"', 1, '2017-01-25 11:46:04', '2017-01-27 02:02:51', 6, '', 7, 'fbd7a39c-fa94-430e-bd2c-77d345c59b93', '', '', '', '', ''),
(1589, '', '', '', '', '', '', '', '', 11, '', 'INT', '', '', '', 'Image Height (in pixels)', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"main_height\\\" \\r\\n\\tlabel=\\\"Image Height (in pixels)\\\" \\r\\n\\tsize=\\\"50\\\" \\r\\n\\tmaxlength=\\\"150\\\"\\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\tfilter=\\\"INT\\\" \\r\\n\\thint=\\\"Only Numbers\\\"\\r\\n\\tonchange=\\\"if(!jQuery(this).val().match(\\/^\\\\d+$\\/)){jQuery(this).val(\'\')};\\\" \\r\\n\\tshowon=\\\"crop_main:1\\\"\\r\\n\\/>\"', 1, '2017-01-25 11:46:20', '2017-04-07 10:43:25', 7, '', 7, 'd47def95-faf2-4d55-a177-2ff98e46d673', '', '', '', '', ''),
(1590, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'Crop Images', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"crop_main\\\" \\r\\n\\tlabel=\\\"Crop All Other Images\\\" \\r\\n\\tdescription=\\\"Set if all other images that are added should be cropped.\\\" \\r\\n\\tclass=\\\"btn-group btn-group-yesno\\\" \\r\\n\\toption=\\\"1|Yes,0|No\\\" \\r\\n\\tdefault=\\\"0\\\"\\r\\n\\/>\"', 1, '2017-01-25 11:51:41', '2017-04-07 18:59:49', 8, '', 765, '5988e5aa-8db8-4370-be82-aee8ea10974a', '', '', '', '', ''),
(1591, '', '', 1, '', '', '', '', '', '', '', '', '', 'W0NVU1RPTUNPREU9dWlraXRJbWFnZVVwbG9hZGVyK2ltYWdlLGltYWdlLG1haW5d', '', 'Main Image Uploader (uikit)', 'NOT NULL', '', 14, '\"<field\\n\\ttype=\\\"note\\\"\\n\\tname=\\\"main_image_uploader\\\"\\n\\tlabel=\\\"Image\\\"\\n\\tdescription=\\\"[CUSTOMCODE=uikitImageUploaderHTML+image,image,main]\\\"\\n\\/>\"', 1, '2017-01-24 20:27:30', '2018-09-18 20:51:14', 12, '', 110, 'bb5b63dc-edf3-4165-ada4-6f9ddf8a14a3', '', '', '', '', ''),
(1592, '', '', '', '', '', '', '', '', 255, '', 'TEXT', '', '', '', 'Main Image Key', 'NOT NULL', 3, 9, '\"<field \\r\\n\\ttype=\\\"hidden\\\" \\r\\n\\tname=\\\"main_image\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\/>\"', 1, '2017-01-24 20:29:38', '2017-01-25 15:44:33', 2, '', 729, '5dab2f55-2ce7-4162-9010-d44eec632b51', '', '', '', '', ''),
(1593, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Allowed Images Formats', 'NOT NULL', '', 6, '\"<field\\n\\ttype=\\\"allowedimageformats\\\"\\n\\tname=\\\"image_formats\\\"\\n\\tlabel=\\\"Allowed Image Formats\\\"\\n\\tdescription=\\\"Select all the image formats allowed\\\"\\n\\tclass=\\\"list_class\\\"\\n\\tmultiple=\\\"true\\\"\\n\\textends=\\\"list\\\"\\n\\tprime_php=\\\"1\\\"\\n\\ttype_php_1=\\\"__.o0=base64=Oo.__W0NVU1RPTUNPREU9Z2V0RmlsZUV4dGVuc2lvbnNGb3VyRmllbGRzK2ltYWdlXQ==\\\"\\n\\/>\"', 1, '2017-01-25 20:43:32', '2019-10-01 11:02:33', 6, '', 766, '37d9b32f-d910-4b6a-9511-769f0c9e3d83', '', '', '', '', ''),
(1594, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Allowed Document Formats', 'NOT NULL', '', 6, '\"<field\\n\\ttype=\\\"alloweddocumentformats\\\"\\n\\tname=\\\"document_formats\\\"\\n\\tlabel=\\\"Allowed Document Formats\\\"\\n\\tdescription=\\\"Select all the document formats allowed\\\"\\n\\tclass=\\\"list_class\\\"\\n\\tmultiple=\\\"true\\\"\\n\\textends=\\\"list\\\"\\n\\tprime_php=\\\"1\\\"\\n\\ttype_php_1=\\\"__.o0=base64=Oo.__W0NVU1RPTUNPREU9Z2V0RmlsZUV4dGVuc2lvbnNGb3VyRmllbGRzK2RvY3VtZW50XQ==\\\"\\n\\/>\"', 1, '2017-01-25 20:52:24', '2019-10-01 11:06:13', 6, '', 766, '4dde1f2b-b73c-43f1-9e25-bcb4b873a825', '', '', '', '', ''),
(1595, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Allowed Media Formats', 'NOT NULL', '', 6, '\"<field\\n\\ttype=\\\"allowedmediaformats\\\"\\n\\tname=\\\"media_formats\\\"\\n\\tlabel=\\\"Allowed Media Formats\\\"\\n\\tdescription=\\\"Select all the media formats allowed\\\"\\n\\tclass=\\\"list_class\\\"\\n\\tmultiple=\\\"true\\\"\\n\\textends=\\\"list\\\"\\n\\tprime_php=\\\"1\\\"\\n\\ttype_php_1=\\\"__.o0=base64=Oo.__W0NVU1RPTUNPREU9Z2V0RmlsZUV4dGVuc2lvbnNGb3VyRmllbGRzK21lZGlhXQ==\\\"\\n\\/>\"', 1, '2017-01-25 21:06:36', '2019-10-01 11:07:42', 6, '', 766, 'b71082d5-5972-4a2b-ae63-625b25e0106b', '', '', '', '', ''),
(1596, '', '', '', '', '', '', '', '', 11, '', 'INT', '', '', '', 'Concept Width (in pixels)', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"concept_width\\\" \\r\\n\\tlabel=\\\"Concept Image Width (in pixels)\\\" \\r\\n\\tsize=\\\"50\\\" \\r\\n\\tmaxlength=\\\"150\\\"\\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\tfilter=\\\"INT\\\" \\r\\n\\thint=\\\"Only Numbers\\\"\\r\\n\\tonchange=\\\"if(!jQuery(this).val().match(\\/^\\\\d+$\\/)){jQuery(this).val(\'\')};\\\" \\r\\n\\tshowon=\\\"crop_concept:1\\\"\\r\\n\\/>\"', 1, '2017-01-25 11:46:04', '2017-01-27 03:55:37', 7, '', 7, '5f81a5e4-4bed-4caa-b75d-cfeb6596f7af', '', '', '', '', ''),
(1597, '', '', '', '', '', '', '', '', 11, '', 'INT', '', '', '', 'Concept Height (in pixels)', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"concept_height\\\" \\r\\n\\tlabel=\\\"Concept Image Height (in pixels)\\\" \\r\\n\\tsize=\\\"50\\\" \\r\\n\\tmaxlength=\\\"150\\\"\\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\tfilter=\\\"INT\\\" \\r\\n\\thint=\\\"Only Numbers\\\"\\r\\n\\tonchange=\\\"if(!jQuery(this).val().match(\\/^\\\\d+$\\/)){jQuery(this).val(\'\')};\\\" \\r\\n\\tshowon=\\\"crop_concept:1\\\"\\r\\n\\/>\"', 1, '2017-01-25 11:46:20', '2017-01-27 03:56:11', 7, '', 7, '386567a3-eb25-4526-9b8f-594c369b3adb', '', '', '', '', ''),
(1598, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'Crop Concept', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"crop_concept\\\" \\r\\n\\tlabel=\\\"Crop Concept Images\\\" \\r\\n\\tdescription=\\\"Set if concept images that are added should be cropped.\\\" \\r\\n\\tclass=\\\"btn-group btn-group-yesno\\\" \\r\\n\\toption=\\\"1|Yes,0|No\\\" \\r\\n\\tdefault=\\\"0\\\"\\r\\n\\/>\"', 1, '2017-01-25 11:51:41', '2017-01-27 03:56:50', 6, '', 765, '1c2c1cdd-9d64-4f49-b0c7-fc755314b0a6', '', '', '', '', ''),
(1599, '', '', 1, '', '', '', '', '', '', '', '', '', 'W0NVU1RPTUNPREU9dWlraXRJbWFnZVVwbG9hZGVyK2ltYWdlLGltYWdlLGNvbmNlcHRd', '', 'Concept Image Uploader (uikit)', 'NOT NULL', '', 14, '\"<field\\n\\ttype=\\\"note\\\"\\n\\tname=\\\"concept_image_uploader\\\"\\n\\tlabel=\\\"Concept Image\\\"\\n\\tdescription=\\\"[CUSTOMCODE=uikitImageUploaderHTML+image,image,concept]\\\"\\n\\/>\"', 1, '2017-01-24 20:27:30', '2018-09-18 20:52:30', 12, '', 110, '3d925ad2-d83d-4aa8-870e-f24c2abd167b', '', '', '', '', ''),
(1600, '', '', '', '', '', '', '', '', 255, '', 'TEXT', '', '', '', 'Concept Image Key', 'NOT NULL', 3, 9, '\"<field \\r\\n\\ttype=\\\"hidden\\\" \\r\\n\\tname=\\\"concept_image\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\/>\"', 1, '2017-01-24 20:29:38', '2017-01-27 04:00:35', 3, '', 729, 'c71c8630-ceb0-467b-9f2c-e2c8d5f87a3f', '', '', '', '', ''),
(1601, '', '', '', '', '', '', '', '', 11, '', 'INT', '', '', '', 'Content Width (in pixels)', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"content_width\\\" \\r\\n\\tlabel=\\\"Content Image Width (in pixels)\\\" \\r\\n\\tsize=\\\"50\\\" \\r\\n\\tmaxlength=\\\"150\\\"\\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\tfilter=\\\"INT\\\" \\r\\n\\thint=\\\"Only Numbers\\\"\\r\\n\\tonchange=\\\"if(!jQuery(this).val().match(\\/^\\\\d+$\\/)){jQuery(this).val(\'\')};\\\" \\r\\n\\tshowon=\\\"crop_content:1\\\"\\r\\n\\/>\"', 1, '2017-01-25 11:46:04', '2017-01-27 04:02:18', 8, '', 7, 'dc058d3d-ce41-4615-a7b8-346e6a54fc9b', '', '', '', '', ''),
(1602, '', '', '', '', '', '', '', '', 11, '', 'INT', '', '', '', 'Content Height (in pixels)', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"content_height\\\" \\r\\n\\tlabel=\\\"Content Image Height (in pixels)\\\" \\r\\n\\tsize=\\\"50\\\" \\r\\n\\tmaxlength=\\\"150\\\"\\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\tfilter=\\\"INT\\\" \\r\\n\\thint=\\\"Only Numbers\\\"\\r\\n\\tonchange=\\\"if(!jQuery(this).val().match(\\/^\\\\d+$\\/)){jQuery(this).val(\'\')};\\\" \\r\\n\\tshowon=\\\"crop_content:1\\\"\\r\\n\\/>\"', 1, '2017-01-25 11:46:20', '2017-01-27 04:02:49', 8, '', 7, '9d8c324e-eba1-4fb4-82c6-6586c7ae14b7', '', '', '', '', ''),
(1603, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'Crop Content', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"crop_content\\\" \\r\\n\\tlabel=\\\"Crop Content Images\\\" \\r\\n\\tdescription=\\\"Set if content images that are added should be cropped.\\\" \\r\\n\\tclass=\\\"btn-group btn-group-yesno\\\" \\r\\n\\toption=\\\"1|Yes,0|No\\\" \\r\\n\\tdefault=\\\"0\\\"\\r\\n\\/>\"', 1, '2017-01-25 11:51:41', '2017-01-27 04:37:34', 8, '', 765, '6628f3c6-1a08-484e-b4e4-623b7baba906', '', '', '', '', ''),
(1604, '', '', 1, '', '', '', '', '', '', '', '', '', 'W0NVU1RPTUNPREU9dWlraXRJbWFnZVVwbG9hZGVyK2ltYWdlLGltYWdlLGNvbnRlbnRd', '', 'Content Image Uploader (uikit)', 'NOT NULL', '', 14, '\"<field\\n\\ttype=\\\"note\\\"\\n\\tname=\\\"content_image_uploader\\\"\\n\\tlabel=\\\"Content Image\\\"\\n\\tdescription=\\\"[CUSTOMCODE=uikitImageUploaderHTML+image,image,content]\\\"\\n\\/>\"', 1, '2017-01-24 20:27:30', '2018-09-18 20:53:47', 13, '', 110, 'cc2d2fa4-11c7-4eaf-8690-ec5307e65cc9', '', '', '', '', ''),
(1605, '', '', '', '', '', '', '', '', 255, '', 'TEXT', '', '', '', 'Content Image Key', 'NOT NULL', 3, 9, '\"<field \\r\\n\\ttype=\\\"hidden\\\" \\r\\n\\tname=\\\"content_image\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\/>\"', 1, '2017-01-24 20:29:38', '2017-01-27 04:05:52', 4, '', 729, 'd422d29c-e4cc-4610-9ef6-7f91660b6961', '', '', '', '', ''),
(1606, '', '', '', '', '', '', '', '', 11, '', 'INT', '', '', '', 'Venue Width (in pixels)', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"venue_width\\\" \\r\\n\\tlabel=\\\"Venue Image Width (in pixels)\\\" \\r\\n\\tsize=\\\"50\\\" \\r\\n\\tmaxlength=\\\"150\\\"\\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\tfilter=\\\"INT\\\" \\r\\n\\thint=\\\"Only Numbers\\\"\\r\\n\\tonchange=\\\"if(!jQuery(this).val().match(\\/^\\\\d+$\\/)){jQuery(this).val(\'\')};\\\" \\r\\n\\tshowon=\\\"crop_venue:1\\\"\\r\\n\\/>\"', 1, '2017-01-25 11:46:04', '2017-01-27 04:30:54', 10, '', 7, '92a368b3-6b81-494e-b495-6e529776d586', '', '', '', '', ''),
(1607, '', '', '', '', '', '', '', '', 11, '', 'INT', '', '', '', 'Venue Height (in pixels)', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"venue_height\\\" \\r\\n\\tlabel=\\\"Venue Image Height (in pixels)\\\" \\r\\n\\tsize=\\\"50\\\" \\r\\n\\tmaxlength=\\\"150\\\"\\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\tfilter=\\\"INT\\\" \\r\\n\\thint=\\\"Only Numbers\\\"\\r\\n\\tonchange=\\\"if(!jQuery(this).val().match(\\/^\\\\d+$\\/)){jQuery(this).val(\'\')};\\\" \\r\\n\\tshowon=\\\"crop_venue:1\\\"\\r\\n\\/>\"', 1, '2017-01-25 11:46:20', '2017-01-27 04:31:05', 10, '', 7, '3222eb33-41ac-4364-a093-7926bf52f9ef', '', '', '', '', ''),
(1608, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'Crop Venue', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"crop_venue\\\" \\r\\n\\tlabel=\\\"Crop Venue Images\\\" \\r\\n\\tdescription=\\\"Set if venue images that are added should be cropped.\\\" \\r\\n\\tclass=\\\"btn-group btn-group-yesno\\\" \\r\\n\\toption=\\\"1|Yes,0|No\\\" \\r\\n\\tdefault=\\\"0\\\"\\r\\n\\/>\"', 1, '2017-01-25 11:51:41', '2017-01-27 04:32:24', 8, '', 765, 'a87eed23-9dbe-463b-acc1-08b940036b3d', '', '', '', '', ''),
(1609, '', '', 1, '', '', '', '', '', '', '', '', '', 'W0NVU1RPTUNPREU9dWlraXRJbWFnZVVwbG9hZGVyK2ltYWdlLGltYWdlcyx2ZW51ZV0=', '', 'Venue images Uploader (uikit)', 'NOT NULL', '', 14, '\"<field\\n\\ttype=\\\"note\\\"\\n\\tname=\\\"venue_images_uploader\\\"\\n\\tlabel=\\\"Venue Images\\\"\\n\\tdescription=\\\"[CUSTOMCODE=uikitImageUploaderHTML+image,images,venue]\\\"\\n\\/>\"', 1, '2017-01-24 20:27:30', '2018-09-18 20:54:14', 16, '', 110, 'b2cdf95f-dec5-4ecd-b12a-299d662cf353', '', '', '', '', ''),
(1610, '', '', '', '', '', '', '', '', 255, '', 'TEXT', '', '', '', 'Venue Images Key', 'NOT NULL', 3, 9, '\"<field \\r\\n\\ttype=\\\"hidden\\\" \\r\\n\\tname=\\\"venue_images\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\/>\"', 1, '2017-01-24 20:29:38', '2017-01-30 18:20:07', 6, '', 729, '85b31688-8173-4889-a8c1-59641f75c745', '', '', '', '', ''),
(1611, '', '', '', '', '', '', '', '', 255, '', 'TEXT', '', '', '', 'File Path', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"path\\\" \\r\\n\\tlabel=\\\"File Path\\\" \\r\\n\\tdescription=\\\"File path of where this code should be added.\\\"\\r\\n\\tsize=\\\"100\\\" \\r\\n\\tmaxlength=\\\"250\\\"\\r\\n\\tclass=\\\"text_area span12\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\tfilter=\\\"PATH\\\" \\r\\n\\tvalidate=\\\"\\\" \\r\\n\\tmessage=\\\"Error! Please add target path.\\\" \\r\\n\\thint=\\\"File Path Here\\\" \\r\\n\\/>\"', 1, '2017-01-29 01:48:31', '2017-01-29 02:30:31', 2, '', 303, 'b7942a37-45cc-4005-b4b5-e716cbf176f9', '', '', '', '', ''),
(1612, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Type', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"type\\\" \\r\\n\\tlabel=\\\"Add Type\\\" \\r\\n\\tdescription=\\\"How To Add the Code to the file\\\" \\r\\n\\tclass=\\\"btn-group btn-group-yesno\\\" \\r\\n\\toption=\\\"1|Replacement,2|Insertion\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\/>\"', 1, '2017-01-29 01:57:43', '2015-08-25 21:15:22', 1, '', 303, 'd1c48683-2655-4e49-9f13-6b25f2b0a0d0', '', '', '', '', ''),
(1613, '', '', '', '', '', '', '', '', 100, '', 'VARCHAR', 2, '', '', 'From Line', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"from_line\\\" \\r\\n\\tlabel=\\\"From Line (Zero based)\\\" \\r\\n\\tsize=\\\"10\\\" \\r\\n\\tmaxlength=\\\"50\\\"\\r\\n\\tdescription=\\\"The line from where to start adding the code.\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\tfilter=\\\"FLOAT\\\" \\r\\n\\tmessage=\\\"Error! Please add amount paid here.\\\" \\r\\n\\thint=\\\"Only Numbers\\\"\\r\\n\\tonchange=\\\"if(!jQuery(this).val().match(\\/^\\\\d+$\\/)){jQuery(this).val(\'\')};\\\" \\r\\n\\/>\"', 1, '2017-01-29 02:01:11', '2017-01-31 16:52:07', 2, '', 7, '82e196f5-cc38-4045-8be3-c1067b23df72', '', '', '', '', ''),
(1614, '', '', '', '', '', '', '', '', 100, '', 'VARCHAR', 2, '', '', 'To Line', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"to_line\\\" \\r\\n\\tlabel=\\\"To Line (Zero based)\\\" \\r\\n\\tsize=\\\"10\\\" \\r\\n\\tmaxlength=\\\"50\\\"\\r\\n\\tdescription=\\\"The line to where the code must be replaced.\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\tfilter=\\\"FLOAT\\\" \\r\\n\\tmessage=\\\"Error! Please add line number here.\\\" \\r\\n\\thint=\\\"Only Numbers\\\"\\r\\n\\tonchange=\\\"if(!jQuery(this).val().match(\\/^\\\\d+$\\/)){jQuery(this).val(\'\')};\\\" \\r\\n\\/>\"', 1, '2017-01-29 02:02:07', '2017-01-31 16:52:24', 2, '', 7, 'ebbfce08-7d5a-416a-aad2-b23b78bd926b', '', '', '', '', ''),
(1615, '', '', '', '', '', '', '', '', '', '', 'MEDIUMTEXT', '', '', '', 'Custom Code', 'NOT NULL', 2, 8, '\"<field\\n\\ttype=\\\"editor\\\"\\n\\tname=\\\"code\\\"\\n\\tlabel=\\\"Custom code\\\"\\n\\tdescription=\\\"Add your custom code here. <b>Do Not Add The Placeholders Here<\\/b>, it will be added to the code dynamically!\\\"\\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, '2017-01-29 02:03:31', '2019-07-08 14:19:41', 8, '', 535, '777b846c-f3f4-4eb3-a73a-a460d28976dc', '', '', '', '', ''),
(1616, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'Component (JCB - required)', 'NOT NULL', '', 6, '\"<field\\n\\ttype=\\\"joomlacomponent\\\"\\n\\tname=\\\"component\\\"\\n\\tlabel=\\\"Component\\\"\\n\\tclass=\\\"list_class\\\"\\n\\tmultiple=\\\"false\\\"\\n\\tdefault=\\\"0\\\"\\n\\trequired=\\\"true\\\"\\n\\textends=\\\"list\\\"\\n\\tbutton=\\\"true\\\"\\n\\ttable=\\\"#__###component###_joomla_component\\\"\\n\\tcomponent=\\\"com_###component###\\\"\\n\\tview=\\\"joomla_component\\\"\\n\\tviews=\\\"joomla_components\\\"\\n\\tvalue_field=\\\"system_name\\\"\\n\\tkey_field=\\\"id\\\"\\n\\tprime_php=\\\"1\\\"\\n\\ttype_php_1=\\\"__.o0=base64=Oo.__JGRiID0gSkZhY3Rvcnk6OmdldERCTygpOw0KCQkkcXVlcnkgPSAkZGItPmdldFF1ZXJ5KHRydWUpOw0KCQkkcXVlcnktPnNlbGVjdCgkZGItPnF1b3RlTmFtZShhcnJheSgnYS4jIyNJRCMjIycsJ2EuIyMjVEVYVCMjIycpLGFycmF5KCcjIyNJRCMjIycsJyMjI0NPREVfVEVYVCMjIycpKSk7DQoJCSRxdWVyeS0+ZnJvbSgkZGItPnF1b3RlTmFtZSgnIyMjVEFCTEUjIyMnLCAnYScpKTsNCgkJJHF1ZXJ5LT53aGVyZSgkZGItPnF1b3RlTmFtZSgnYS5wdWJsaXNoZWQnKSAuICcgPj0gMScpOw0KCQkkcXVlcnktPm9yZGVyKCdhLiMjI1RFWFQjIyMgQVNDJyk7DQoJCSRkYi0+c2V0UXVlcnkoKHN0cmluZykkcXVlcnkpOw0KCQkkaXRlbXMgPSAkZGItPmxvYWRPYmplY3RMaXN0KCk7DQoJCSRvcHRpb25zID0gYXJyYXkoKTsNCgkJaWYgKCRpdGVtcykNCgkJew0KCQkJJG9wdGlvbnNbXSA9IEpIdG1sOjpfKCdzZWxlY3Qub3B0aW9uJywgJycsICdTZWxlY3QgYW4gb3B0aW9uJyk7DQoJCQlmb3JlYWNoKCRpdGVtcyBhcyAkaXRlbSkNCgkJCXsNCgkJCQkkb3B0aW9uc1tdID0gSkh0bWw6Ol8oJ3NlbGVjdC5vcHRpb24nLCAkaXRlbS0+IyMjSUQjIyMsICRpdGVtLT4jIyNDT0RFX1RFWFQjIyMpOw0KCQkJfQ0KCQl9DQoNCgkJcmV0dXJuICRvcHRpb25zOw==\\\"\\n\\/>\"', 1, '2017-01-29 02:12:40', '2021-12-21 08:59:12', 12, '', 733, '04886e45-7821-40a6-ae2b-2f46c6b45906', '', '', '', '', ''),
(1617, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', 2, '', '', 'Name in Code (codename)', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"codename\\\"\\n\\tlabel=\\\"Name in Code<br \\/>\\r\\n<small><a href=&quot;https:\\/\\/docs.joomla.org\\/J3.x:File_Structure_and_Naming_Conventions&quot; target=&quot;_blank&quot;>Naming Conventions<\\/a><\\/small>\\\"\\n\\tsize=\\\"80\\\"\\n\\tmaxlength=\\\"150\\\"\\n\\tdefault=\\\"\\\"\\n\\tdescription=\\\"Add Name in Code Here\\\"\\n\\tclass=\\\"text_area\\\"\\n\\tfilter=\\\"CMD\\\"\\n\\tmessage=\\\"Error! Please add name in code here.\\\"\\n\\thint=\\\"codename\\\"\\n\\/>\"', 1, '2017-01-29 02:28:13', '2021-04-26 13:47:48', 3, '', 536, '83871f4f-e406-416a-845e-a8257a4a34d3', '', '', '', '', ''),
(1618, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Question (qna)', 'NOT NULL', '', 25, '\"<field \\r\\n\\ttype=\\\"textarea\\\" \\r\\n\\tname=\\\"question\\\" \\r\\n\\tlabel=\\\"Question\\\" \\r\\n\\trows=\\\"2\\\" \\r\\n\\tcols=\\\"5\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tdescription=\\\"The question being asked\\\" \\r\\n\\tclass=\\\"text_area span12\\\" \\r\\n\\tfilter=\\\"STRING\\\" \\r\\n\\thint=\\\"Add Question Here\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\/>\"', 1, '2017-01-30 14:21:27', '2017-02-03 02:08:42', 2, '', 129, 'e8d463f1-ffb4-4a53-b282-3c06188dfb37', '', '', '', '', ''),
(1619, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Answer (qna)', 'NOT NULL', '', 8, '\"<field \\r\\n\\ttype=\\\"editor\\\" \\r\\n\\tname=\\\"answer\\\" \\r\\n\\tlabel=\\\"Answer\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\twidth=\\\"100%\\\" \\r\\n\\theight=\\\"500\\\" \\r\\n\\tbuttons=\\\"false\\\" \\r\\n\\teditor=\\\"jce|none\\\" \\r\\n\\tfilter=\\\"safehtml\\\" \\r\\n\\trequired=\\\"false\\\" \\r\\n\\/>\"', 1, '2017-01-30 14:27:31', '2017-01-30 14:31:17', 3, '', 129, '14d5c69e-2f6c-4b63-af2a-2b493ac427c9', '', '', '', '', ''),
(1620, '', '', '', '', '', '', '', '', 255, '', 'TEXT', '', '', '', 'documents Key', 'NOT NULL', 3, 9, '\"<field \\r\\n\\ttype=\\\"hidden\\\" \\r\\n\\tname=\\\"documents\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\/>\"', 1, '2017-01-30 14:44:08', '2017-01-25 15:44:33', 1, '', 729, '472f18e8-7cf5-4b82-99c6-8883fe235eb8', '', '', '', '', ''),
(1621, '', '', 1, '', '', '', '', '', 1, '', 'CHAR', '', 'PD9waHAgaWYgKCRmb3JtYXRzID0gJGNvbXBvbmVudFBhcmFtcy0+Z2V0KCdpbWFnZV9mb3JtYXRzJywgbnVsbCkpIDogPz4NCmpRdWVyeShmdW5jdGlvbigkKXsNCgl2YXIgcHJvZ3Jlc3NiYXIgPSAkKCIjcHJvZ3Jlc3NiYXItbWFpbi1pbWFnZXMiKSwNCgliYXIgICAgICAgICA9IHByb2dyZXNzYmFyLmZpbmQoJy51ay1wcm9ncmVzcy1iYXInKSwNCglzZXR0aW5ncyAgICA9IHsNCg0KCQlhY3Rpb246IEpSb3V0ZXIoJ2luZGV4LnBocD9vcHRpb249Y29tX1tbW2NvbXBvbmVudF1dXSZ0YXNrPWFqYXgudXBsb2FkZmlsZSZmb3JtYXQ9anNvbiZ0eXBlPWltYWdlcyZ0YXJnZXQ9bWFpbiZyYXc9dHJ1ZSZ0b2tlbj0nK3Rva2VuKycmdmRtPScrdmFzdERldk1vZCksIC8vIHVwbG9hZCB1cmwNCg0KCQlhbGxvdyA6ICcqLig8P3BocCBlY2hvIGltcGxvZGUoJ3wnLCAkZm9ybWF0cyk7ID8+KScsIC8vIGFsbG93IHVwbG9hZHMNCg0KCQlsb2Fkc3RhcnQ6IGZ1bmN0aW9uKCkgew0KCQkJalF1ZXJ5KCIuc3VjY2Vzcy1tYWluLWltYWdlcy04NzY4IikucmVtb3ZlKCk7DQoJCQliYXIuY3NzKCJ3aWR0aCIsICIwJSIpLnRleHQoIjAlIik7DQoJCQlwcm9ncmVzc2Jhci5yZW1vdmVDbGFzcygidWstaGlkZGVuIik7DQoJCX0sDQoNCgkJcHJvZ3Jlc3M6IGZ1bmN0aW9uKHBlcmNlbnQpIHsNCgkJCXBlcmNlbnQgPSBNYXRoLmNlaWwocGVyY2VudCk7DQoJCQliYXIuY3NzKCJ3aWR0aCIsIHBlcmNlbnQrIiUiKS50ZXh0KHBlcmNlbnQrIiUiKTsNCgkJfSwNCg0KCQlhbGxjb21wbGV0ZTogZnVuY3Rpb24ocmVzcG9uc2UpIHsNCgkJCWJhci5jc3MoIndpZHRoIiwgIjEwMCUiKS50ZXh0KCIxMDAlIik7DQoJCQlyZXNwb25zZSA9IEpTT04ucGFyc2UocmVzcG9uc2UpOw0KCQkJc2V0VGltZW91dChmdW5jdGlvbigpew0KCQkJCXByb2dyZXNzYmFyLmFkZENsYXNzKCJ1ay1oaWRkZW4iKTsNCgkJCX0sIDI1MCk7DQoJCQlpZiAocmVzcG9uc2UuZXJyb3Ipew0KCQkJCWFsZXJ0KHJlc3BvbnNlLmVycm9yKTsNCgkJCX0gZWxzZSBpZiAocmVzcG9uc2Uuc3VjY2Vzcykgew0KCQkJCS8vIHNldCB0aGUgbmV3IGZpbGUgbmFtZSBhbmQgaWYgYW5vdGhlciBpcyBmb3VuZCBkZWxldGUgaXQNCgkJCQlzZXRGaWxla2V5KHJlc3BvbnNlLnN1Y2Nlc3MsIHJlc3BvbnNlLmZpbGVmb3JtYXQsICdtYWluJywgJ2ltYWdlcycpOw0KCQkJfQ0KCQl9DQp9Ow0KDQp2YXIgc2VsZWN0ID0gVUlraXQudXBsb2FkU2VsZWN0KCQoIiN1cGxvYWQtc2VsZWN0LW1haW4taW1hZ2VzIiksIHNldHRpbmdzKSwNCglkcm9wICAgPSBVSWtpdC51cGxvYWREcm9wKCQoIiN1cGxvYWQtZHJvcC1tYWluLWltYWdlcyIpLCBzZXR0aW5ncyk7DQp9KTsNCjw/cGhwIGlmICgkcmVzaXplID0gJGNvbXBvbmVudFBhcmFtcy0+Z2V0KCdjcm9wX21haW4nLCBudWxsKSkgOiA/Pg0KCXZhciBzaXplbWFpbiA9ICcoJzsNCgk8P3BocCBpZiAoJHdpZHRoID0gJGNvbXBvbmVudFBhcmFtcy0+Z2V0KCdtYWluX3dpZHRoJywgbnVsbCkpOiA/Pg0KCQlzaXplbWFpbiArPSAnd2lkdGg6IDw/cGhwIGVjaG8gJHdpZHRoOyA/PnB4JzsNCgk8P3BocCBlbHNlOiA/Pg0KCQlzaXplbWFpbiArPSAnd2lkdGg6IDw/cGhwIGVjaG8gSlRleHQ6Ol8oJ3Byb3BvcnRpb25hbGx5Jyk7ID8+JzsNCgk8P3BocCBlbmRpZjsgPz4NCgk8P3BocCBpZiAoJGhlaWdodCA9ICRjb21wb25lbnRQYXJhbXMtPmdldCgnbWFpbl9oZWlnaHQnLCBudWxsKSk6ID8+DQoJCXNpemVtYWluICs9ICcgIGhlaWdodDogPD9waHAgZWNobyAkaGVpZ2h0OyA/PnB4JzsJDQoJPD9waHAgZWxzZTogPz4NCgkJc2l6ZW1haW4gKz0gJyAgaGVpZ2h0OiA8P3BocCBlY2hvIEpUZXh0OjpfKCdwcm9wb3J0aW9uYWxseScpOyA/Pic7DQoJPD9waHAgZW5kaWY7ID8+DQoJc2l6ZW1haW4gKz0gJyknOw0KCXNpemVOb3RpY2UgPSAnPHNwYW4gZGF0YS11ay10b29sdGlwIHRpdGxlPSI8P3BocCBlY2hvIEpUZXh0OjpfKCdUaGUgaW1hZ2VzIHdpbGwgYmUgY3JvcHBlZCB0byB0aGlzIHNpemUnKTsgPz4iPicrc2l6ZW1haW4rJzwvc3Bhbj4nOw0KCWpRdWVyeSgnI3NpemUtbWFpbicpLmh0bWwoc2l6ZU5vdGljZSk7DQo8P3BocCBlbmRpZjsgPz4NCjw/cGhwIGVsc2U6ID8+DQpqUXVlcnkoJyN1cGxvYWQtZHJvcC1tYWluLWltYWdlJykuaHRtbCgnPGI+PD9waHAgZWNobyBKVGV4dDo6XygnQWxsb3dlZCBpbWFnZXMgZm9ybWF0cyBhcmUgbm90IHNldCBpbiB0aGUgZ2xvYmFsIHNldHRpbmdzLCBwbGVhc2Ugbm90aWZ5IHlvdXIgc3lzdGVtIGFkbWluaXN0cmF0b3IuJyk7ID8+PC9iPicpOw0KPD9waHAgZW5kaWY7ID8+', '', 'Main Images Uploader (uikit)', 'NOT NULL', '', 14, '\"<field \\r\\n\\ttype=\\\"note\\\" \\r\\n\\tname=\\\"main_images_uploader\\\" \\r\\n\\tlabel=\\\"Images\\\"\\r\\n\\tdescription=\\\"<div id=\'upload-drop-main-images\' class=\'uk-placeholder\'><br \\/><br \\/><i class=\'uk-icon-cloud-upload uk-icon-medium uk-text-muted uk-margin-small-right\'><\\/i> Upload Your <strong>images <span id=\'size-main\'><\\/span><\\/strong> by dropping the file here or <a class=\'uk-form-file\'>selecting the file from your computer<input id=\'upload-select-main-images\' type=\'file\'><\\/a><br \\/><br \\/><br \\/><\\/div><div id=\'progressbar-main-images\' class=\'uk-progress uk-hidden\'><div class=\'uk-progress-bar\' style=\'width: 0%;\'>...<\\/div><\\/div>\\\" \\r\\n\\/>\"', 1, '2017-01-30 14:47:15', '2017-01-30 18:19:44', 3, '', 110, '8c93e46d-f33d-41ff-b511-eddb44de262b', '', '', '', '', ''),
(1622, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Teaser (Roline - event)', 'NOT NULL', '', 25, '\"<field \\r\\n\\ttype=\\\"textarea\\\" \\r\\n\\tname=\\\"teaser\\\" \\r\\n\\tlabel=\\\"Teaser\\\" \\r\\n\\tdescription=\\\"Enter a short teaser description\\\" \\r\\n\\trows=\\\"2\\\" \\r\\n\\tcols=\\\"5\\\"\\r\\n\\tclass=\\\"span12\\\" \\r\\n\\tfilter=\\\"safehtml\\\"\\r\\n\\trequired=\\\"false\\\"\\r\\n\\thint=\\\"Add Teaser Here\\\"\\r\\n\\/>\"', 1, '2017-01-30 21:06:03', '2017-01-30 21:06:27', 3, '', 80, '6e73dd72-1171-4ea2-b8a2-54abdd6cadda', '', '', '', '', ''),
(1623, '', '', '', '', '', '', '', '', 64, '', 'VARCHAR', '', '', '', 'Start Hash Target', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"hashtarget\\\" \\r\\n\\tlabel=\\\"Start Hash Target\\\" \\r\\n\\tsize=\\\"50\\\" \\r\\n\\tmaxlength=\\\"150\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tdescription=\\\"The start hash target to help insert the code at the correct place, if the line position change. This hash is the md5 of a few lines above the custom code\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\treadonly=\\\"true\\\" \\r\\n\\tfilter=\\\"STRING\\\" \\r\\n\\tmessage=\\\"Error! Please add some text here.\\\" \\r\\n\\thint=\\\"autogenerated md5 hash\\\" \\r\\n\\/>\"', 1, '2017-01-31 16:22:54', '2017-01-31 23:00:42', 4, '', 767, 'e0272089-9156-409b-8444-61e2e3e755bf', '', '', '', '', ''),
(1624, '', '', '', '', '', '', '', '', 64, '', 'VARCHAR', '', '', '', 'End Hash Target', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"hashendtarget\\\" \\r\\n\\tlabel=\\\"End Hash Target\\\" \\r\\n\\tsize=\\\"50\\\" \\r\\n\\tmaxlength=\\\"150\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tdescription=\\\"The end hash target to help insert the code until the correct place, if the line position change. This hash is the md5 of a few lines below the custom code\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\treadonly=\\\"true\\\" \\r\\n\\tfilter=\\\"STRING\\\" \\r\\n\\tmessage=\\\"Error! Please add some text here.\\\" \\r\\n\\thint=\\\"autogenerated md5 hash\\\" \\r\\n\\/>\"', 1, '2017-01-31 23:00:32', '2017-01-31 23:00:20', 1, '', 767, '3347f841-b8e8-4f52-acbd-0bada696e540', '', '', '', '', ''),
(1625, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Custom Code Placeholders', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"add_placeholders\\\" \\r\\n\\tlabel=\\\"Custom Code Placeholders\\\" \\r\\n\\tdescription=\\\"Should JCB insert the custom code placeholders? This is only applicable if this component has custom code.\\\" \\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, '2017-02-02 03:05:12', '0000-00-00 00:00:00', 1, '', 768, '991ec7f9-257a-486c-9453-c6b1c3fd5bf0', '', '', '', '', ''),
(1626, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Version Options', 'NOT NULL', '', 11, '\"<field \\r\\n\\ttype=\\\"list\\\" \\r\\n\\tname=\\\"mvc_versiondate\\\" \\r\\n\\tlabel=\\\"Version Options\\\" \\r\\n\\tdescription=\\\"Here you can tweak the way JCB implements versions in the code commenting of your component.\\\" \\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\tmultiple=\\\"false\\\" \\r\\n\\tfilter=\\\"int\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\toption=\\\"0|Use Global Version,1|Use View Version & Date,2|Use Only First 2 Number of Global Version (1.0.x),3|Use Only First Number of Global Version (1.x.x)\\\" \\r\\n\\tdefault=\\\"0\\\" \\r\\n\\/>\"', 1, '2017-02-02 03:22:30', '2017-11-06 13:13:59', 3, '', 768, '508b5e78-c91a-4aaa-b587-000759130d4e', '', '', '', '', ''),
(1627, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'QnA (Category)', 'NOT NULL', '', 2, '\"<field\\n\\ttype=\\\"category\\\"\\n\\tname=\\\"catid\\\"\\n\\tlabel=\\\"Category\\\"\\n\\textension=\\\"com_###component###.question_and_answer\\\"\\n\\tdescription=\\\"select one of the following categories\\\"\\n\\tclass=\\\"inputbox\\\"\\n\\/>\"', 1, '2017-02-03 02:10:58', '2020-05-30 22:01:20', 3, '', 147, '141b5e2c-8552-4545-9646-64501ba4450e', '', '', '', '', ''),
(1628, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'QnA Tags', 'NOT NULL', '', 22, '\"<field \\r\\n\\ttype=\\\"tag\\\" \\r\\n\\tname=\\\"tags\\\" \\r\\n\\tmode=\\\"ajax\\\" \\r\\n\\tlabel=\\\"Tags\\\" \\r\\n\\tdescription=\\\"Assign tags to ###view### items. Tag names must be unique.\\\" \\r\\n\\tclass=\\\"inputbox small\\\" \\r\\n\\tpublished=\\\"true\\\" \\r\\n\\tmultiple=\\\"true\\\" \\r\\n\\/>\"', 1, '2017-02-03 02:12:03', '2017-02-28 00:26:53', 2, '', 624, 'eb0e31fe-38b4-4efc-a763-327516f2fa12', '', '', '', '', ''),
(1629, '', '', 1, '', '', '', '', '', '', '', '', '', 'W0NVU1RPTUNPREU9dWlraXRGaWxlVXBsb2FkZXIrZG9jdW1lbnQsZG9jdW1lbnRzLGV2ZW50XQ==', '', 'Event Documents Uploader (uikit)', 'NOT NULL', '', 14, '\"<field\\n\\ttype=\\\"note\\\"\\n\\tname=\\\"event_documents_uploader\\\"\\n\\tlabel=\\\"Event Documents\\\"\\n\\tdescription=\\\"[CUSTOMCODE=uikitFileUploaderHTML+document,documents,event]\\\"\\n\\/>\"', 1, '2017-02-03 02:34:56', '2018-09-18 22:56:21', 6, '', 110, 'e6bc568a-1439-4c97-ae8f-468daf7b142c', '', '', '', '', ''),
(1630, '', '', '', '', '', '', '', '', 255, '', 'TEXT', '', '', '', 'Event Documents Key', 'NOT NULL', 3, 9, '\"<field \\r\\n\\ttype=\\\"hidden\\\" \\r\\n\\tname=\\\"event_documents\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\/>\"', 1, '2017-02-03 02:36:57', '2017-01-30 18:20:07', 1, '', 729, 'd86050b8-8dd4-43fb-af62-904173ad480a', '', '', '', '', ''),
(1631, '', '', '', '', '', '', '', '', 255, '', 'MEDIUMTEXT', '', '', '', 'Event Images Key', 'NOT NULL', 3, 9, '\"<field \\r\\n\\ttype=\\\"hidden\\\" \\r\\n\\tname=\\\"event_images\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\/>\"', 1, '2017-02-03 03:05:22', '2017-01-30 18:20:07', 1, '', 729, '69f69940-62c4-40ef-b660-bc77b7beb788', '', '', '', '', ''),
(1632, '', '', 1, '', '', '', '', '', '', '', '', '', 'W0NVU1RPTUNPREU9dWlraXRJbWFnZVVwbG9hZGVyK2ltYWdlLGltYWdlcyxldmVudF0=', '', 'Event images Uploader (uikit)', 'NOT NULL', '', 14, '\"<field\\n\\ttype=\\\"note\\\"\\n\\tname=\\\"event_images_uploader\\\"\\n\\tlabel=\\\"Event Images\\\"\\n\\tdescription=\\\"[CUSTOMCODE=uikitImageUploaderHTML+image,images,event]\\\"\\n\\/>\"', 1, '2017-02-03 03:06:56', '2018-09-18 20:54:56', 4, '', 110, '071016a3-5835-47dd-ae41-26f4246ea77a', '', '', '', '', ''),
(1633, '', '', '', '', '', '', '', '', 11, '', 'INT', '', '', '', 'Event Width (in pixels)', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"event_width\\\" \\r\\n\\tlabel=\\\"Event Image Width (in pixels)\\\" \\r\\n\\tsize=\\\"50\\\" \\r\\n\\tmaxlength=\\\"150\\\"\\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\tfilter=\\\"INT\\\" \\r\\n\\thint=\\\"Only Numbers\\\"\\r\\n\\tonchange=\\\"if(!jQuery(this).val().match(\\/^\\\\d+$\\/)){jQuery(this).val(\'\')};\\\" \\r\\n\\tshowon=\\\"crop_event:1\\\"\\r\\n\\/>\"', 1, '2017-02-03 03:08:06', '2017-01-27 04:30:54', 1, '', 7, '0fec5e46-6a26-4abe-a8a8-c6aaa88791be', '', '', '', '', ''),
(1634, '', '', '', '', '', '', '', '', 11, '', 'INT', '', '', '', 'Event Height (in pixels)', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"event_height\\\" \\r\\n\\tlabel=\\\"Event Image Height (in pixels)\\\" \\r\\n\\tsize=\\\"50\\\" \\r\\n\\tmaxlength=\\\"150\\\"\\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\tfilter=\\\"INT\\\" \\r\\n\\thint=\\\"Only Numbers\\\"\\r\\n\\tonchange=\\\"if(!jQuery(this).val().match(\\/^\\\\d+$\\/)){jQuery(this).val(\'\')};\\\" \\r\\n\\tshowon=\\\"crop_event:1\\\"\\r\\n\\/>\"', 1, '2017-02-03 03:08:31', '2017-01-27 04:31:05', 1, '', 7, '6487095f-532c-4331-a84e-3d313ada0f2a', '', '', '', '', ''),
(1635, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'Crop Event', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"crop_event\\\" \\r\\n\\tlabel=\\\"Crop Event Images\\\" \\r\\n\\tdescription=\\\"Set if event images that are added should be cropped.\\\" \\r\\n\\tclass=\\\"btn-group btn-group-yesno\\\" \\r\\n\\toption=\\\"1|Yes,0|No\\\" \\r\\n\\tdefault=\\\"0\\\"\\r\\n\\/>\"', 1, '2017-02-03 03:09:02', '2017-01-27 03:56:50', 1, '', 765, '1254b48a-c7bd-45a5-8d6d-df8fdcfff6f8', '', '', '', '', ''),
(1636, '', '', 1, '', '', '', '', '', '', '', '', '', 'W0NVU1RPTUNPREU9dWlraXRJbWFnZVVwbG9hZGVyK2ltYWdlLGltYWdlLGxvZ29d', '', 'Logo Image Uploader (uikit)', 'NOT NULL', '', 14, '\"<field\\n\\ttype=\\\"note\\\"\\n\\tname=\\\"logo_image_uploader\\\"\\n\\tlabel=\\\"Logo Image\\\"\\n\\tdescription=\\\"[CUSTOMCODE=uikitImageUploaderHTML+image,image,logo]\\\"\\n\\/>\"', 1, '2017-02-03 22:28:55', '2018-09-18 20:55:29', 3, '', 110, '2a3b34ab-cc68-49e3-aff8-29e10e76371f', '', '', '', '', ''),
(1637, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Logo Image Key', 'NOT NULL', 3, 9, '\"<field\\n\\ttype=\\\"hidden\\\"\\n\\tname=\\\"logo_image\\\"\\n\\tdefault=\\\"\\\"\\n\\/>\"', 1, '2017-02-03 22:29:31', '2020-07-09 00:40:00', 4, '', 729, 'd02c17b6-8d8a-48ad-88d2-02904568fc32', '', '', '', '', ''),
(1638, '', '', '', '', '', '', '', '', 11, '', 'INT', '', '', '', 'Logo Width (in pixels)', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"logo_width\\\" \\r\\n\\tlabel=\\\"Logo Width (in pixels)\\\" \\r\\n\\tsize=\\\"50\\\" \\r\\n\\tmaxlength=\\\"150\\\"\\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\tfilter=\\\"INT\\\" \\r\\n\\thint=\\\"Only Numbers\\\"\\r\\n\\tonchange=\\\"if(!jQuery(this).val().match(\\/^\\\\d+$\\/)){jQuery(this).val(\'\')};\\\" \\r\\n\\tshowon=\\\"crop_logo:1\\\"\\r\\n\\/>\"', 1, '2017-02-03 22:29:59', '2017-01-27 02:02:26', 1, '', 7, 'acf5d915-cbef-4d12-a43f-d6d183b6918f', '', '', '', '', ''),
(1639, '', '', '', '', '', '', '', '', 11, '', 'INT', '', '', '', 'Logo Height (in pixels)', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"logo_height\\\" \\r\\n\\tlabel=\\\"Logo Height (in pixels)\\\" \\r\\n\\tsize=\\\"50\\\" \\r\\n\\tmaxlength=\\\"150\\\"\\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\tfilter=\\\"INT\\\" \\r\\n\\thint=\\\"Only Numbers\\\"\\r\\n\\tonchange=\\\"if(!jQuery(this).val().match(\\/^\\\\d+$\\/)){jQuery(this).val(\'\')};\\\" \\r\\n\\tshowon=\\\"crop_logo:1\\\"\\r\\n\\/>\"', 1, '2017-02-03 22:30:18', '2017-01-27 02:02:35', 1, '', 7, 'd4e2b1b8-e1ea-4aae-9c1b-39c3a335938b', '', '', '', '', ''),
(1640, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'Crop Logos', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"crop_logo\\\" \\r\\n\\tlabel=\\\"Crop Logo Images\\\" \\r\\n\\tdescription=\\\"Set if all logo images that are added should be cropped.\\\" \\r\\n\\tclass=\\\"btn-group btn-group-yesno\\\" \\r\\n\\toption=\\\"1|Yes,0|No\\\" \\r\\n\\tdefault=\\\"0\\\"\\r\\n\\/>\"', 1, '2017-02-03 22:30:41', '2017-01-27 01:23:58', 1, '', 765, 'f6093273-98fd-44b5-af95-0a52a2bb8a82', '', '', '', '', ''),
(1641, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Target (code action)', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"target\\\" \\r\\n\\tlabel=\\\"Target\\\" \\r\\n\\tdescription=\\\"Set the way this code will be added to the component.<br \\/>Hash automation means it is added using the hash target of the lines surrounding the code.<br \\/>JCB manual means you add a place-holder in Component Builder User Interface area in one of the custom code blocks manually, and this code is added in at those place holders in any component.\\\" \\r\\n\\tclass=\\\"btn-group btn-group-yesno\\\" \\r\\n\\toption=\\\"2|JCB (manual),1|Hash (automation)\\\" \\r\\n\\tdefault=\\\"2\\\" \\r\\n\\/>\"', 1, '2017-02-05 23:38:28', '2017-02-11 17:10:59', 2, '', 769, 'b4fce451-7c6d-4cf9-8b1c-f8be6dbcec5b', '', '', '', '', ''),
(1642, '', '', '', '', '', '', '', '', '', '', '', '', '', '', 'JCB Manual Place-holder', 'NOT NULL', '', 14, '\"<field\\n\\ttype=\\\"note\\\"\\n\\tname=\\\"note_jcb_placeholder\\\"\\n\\tlabel=\\\"You can use this code in any JCB code area, simply add this PlaceHolder.\\\"\\n\\tdescription=\\\"<p><span id=\'jcb-placeholder\'><code>[save to see placeholder]<\\/code><\\/span><br \\/>You can also pass values to this code like this: <span id=\'jcb-placeholder-arg\'><code>[save to see placeholder trick]<\\/code><\\/span><\\/p>\\r\\n<p>Those values will be replace placeholders called args. These placeholders are zero based and should look like this: [[[arg0]]], [[[arg1]]] ... as many as you like. If you use 5 args in your code, you must always pass 5 values, since they are zero based your fifth arg will look like this [[[arg4]]]<\\/p>\\r\\n<p>To use the following <code>[ ] , + =<\\/code> in your string being passed, use the following: <code>[<\\/code> <b style=&quot;font-size: large;&quot;>&#8658;<\\/b> <code>&amp;#91;<\\/code>; <code>]<\\/code> <b style=&quot;font-size: large;&quot;>&#8658;<\\/b> <code>&amp;#93;<\\/code>; <code>,<\\/code> <b style=&quot;font-size: large;&quot;>&#8658;<\\/b> <code>&amp;#44;<\\/code>; <code>+<\\/code> <b style=&quot;font-size: large;&quot;>&#8658;<\\/b> <code>&amp;#43;<\\/code>; <code>=<\\/code> <b style=&quot;font-size: large;&quot;>&#8658;<\\/b> <code>&amp;#61;<\\/code><\\/p>\\r\\n<p>Please note <em>THAT YOU CAN NOW<\\/em> use this placeholder in other custom code views, just not in <b>Hash (automation)<\\/b> custom code from the IDE, and not in it self, enjoy!<br \\/>Another important note, all code with args will not be reversed updated from the changes in the editor out side of JCB at this time, since that will remove all the arg placeholders this means you will only be able to update the code here in the JCB UI.<\\/p><small>This note will change once we have resolved these limitations.<\\/small>\\\"\\n\\theading=\\\"h4\\\"\\n\\tclass=\\\"alert alert-info\\\"\\n\\/>\"', 1, '2017-02-05 23:46:48', '2018-11-29 00:08:50', 22, '', 770, '5ee8e9e7-4e4f-4c3c-ae0e-ff5c3aeac1ff', '', '', '', '', ''),
(1643, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Custom Fields (repeatable - ET)', 'NOT NULL', '', 19, '\"<field \\r\\n\\ttype=\\\"repeatable\\\" \\r\\n\\tname=\\\"customfield\\\" \\r\\n\\tlabel=\\\"Custom Fields\\\" \\r\\n\\tdescription=\\\"Set the custom fields of this event.\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tid=\\\"customfield\\\" \\r\\n\\tclass=\\\"customfields\\\" \\r\\n\\tselect=\\\"Add\\/Remove\\\" \\r\\n\\ticon=\\\"list\\\" \\r\\n\\tmaximum=\\\"100\\\" \\r\\n\\tfields=\\\"1225, 1645\\\" \\r\\n\\/>\"', 1, '2017-02-07 12:30:55', '2017-02-08 02:38:00', 4, '', '', 'a9c6e91d-54fb-4b0d-a3b6-38e4c99f3dda', '', '', '', '', ''),
(1644, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Item Types (linked)', 'NOT NULL', '', 6, '\"<field \\r\\n\\ttype=\\\"itemtypes\\\" \\r\\n\\tname=\\\"item_type\\\" \\r\\n\\tlabel=\\\"Linked\\\" \\r\\n\\tdescription=\\\"\\\" \\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\tmultiple=\\\"true\\\"\\r\\n\\textends=\\\"list\\\" \\r\\n\\tbutton=\\\"true\\\" \\r\\n\\ttable=\\\"#__###component###_item_type\\\" \\r\\n\\tcomponent=\\\"com_###component###\\\" \\r\\n\\tview=\\\"item_type\\\" \\r\\n\\tviews=\\\"item_types\\\" \\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_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, '2017-02-07 13:11:23', '0000-00-00 00:00:00', 1, '', 771, '2657449c-5eef-402e-b75d-18dff9b8a7a2', '', '', '', '', ''),
(1645, '', '', '', '', '', '', '', '', '', '', 'INT', '', '', '', 'Required', 'NOT NULL', '', 3, '\"<field \\r\\n\\ttype=\\\"checkbox\\\" \\r\\n\\tname=\\\"required\\\" \\r\\n\\tlabel=\\\"Required\\\" \\r\\n\\tvalue=\\\"1\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tclass=\\\"inputbox\\\" \\r\\n\\/>\"', 1, '2017-02-08 02:33:50', '0000-00-00 00:00:00', 1, '', 772, 'd9d4cca8-fa26-427f-8621-3f7dbf8c5c17', '', '', '', '', ''),
(1646, '', '', '', '', '', '', 1, '', 1, '', 'TINYINT', '', '', '', 'Comment Type', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"comment_type\\\" \\r\\n\\tlabel=\\\"Comment Type (used in placeholder)\\\" \\r\\n\\tdescription=\\\"Select what type of comment is used to mark the placement of this code.\\\" \\r\\n\\tclass=\\\"btn-group btn-group-yesno\\\" \\r\\n\\toption=\\\"1|PHP\\/JS,2|HTML\\\" \\r\\n\\tdefault=\\\"1\\\" \\r\\n\\trequired=\\\"true\\\"\\r\\n\\/>\"', 1, '2017-02-12 10:21:09', '2017-02-12 10:24:46', 2, '', 773, '176c63c6-65b1-4a91-97f2-db4d1e36911a', '', '', '', '', ''),
(1647, '', '', '', '', '', '', '', '', '', '', '', '', '', '', 'Placeholders Explained', 'NOT NULL', '', 14, '\"<field\\n\\ttype=\\\"note\\\"\\n\\tname=\\\"note_placeholders_explained\\\"\\n\\tlabel=\\\"Information Area.\\\"\\n\\tdescription=\\\"<div class=\'form-horizontal\'><div class=\'span6\'>\\r\\n\\t\\t<h1>Understand how the placeholders work in (IDE)<\\/h1>\\r\\n\\t\\t<div id=\'phpjs-comment-info\'>\\r\\n\\t\\t\\t<h2>Comment Type PHP\\/JS<\\/h2>\\r\\n\\t\\t\\t<h3>How You Can Add New Code in the IDE<\\/h3>\\r\\n\\t\\t\\t<table>\\r\\n\\t\\t\\t\\t<legend>Add New Insert Code<\\/legend>\\r\\n\\t\\t\\t\\t<tr><td><code>\\/***[INSERT&lt;&gt;$$$$]***\\/<\\/code><\\/td><td>&nbsp;<\\/td><\\/tr>\\r\\n\\t\\t\\t\\t<tr><td>&nbsp;<\\/td><td>&lt;YOUR CODE HERE&gt;<\\/td><\\/tr>\\r\\n\\t\\t\\t\\t<tr><td><code>\\/***[\\/INSERT&lt;&gt;$$$$]***\\/<\\/code><\\/td><td>&nbsp;<\\/td><\\/tr>\\r\\n\\t\\t\\t<\\/table>\\r\\n\\t\\t\\t<table>\\r\\n\\t\\t\\t\\t<legend>Add New Replace Code<\\/legend>\\r\\n\\t\\t\\t\\t<tr><td><code>\\/***[REPLACE&lt;&gt;$$$$]***\\/<\\/code><\\/td><td>&nbsp;<\\/td><\\/tr>\\r\\n\\t\\t\\t\\t<tr><td>&nbsp;<\\/td><td>&lt;YOUR CODE HERE&gt;<\\/td><\\/tr>\\r\\n\\t\\t\\t\\t<tr><td><code>\\/***[\\/REPLACE&lt;&gt;$$$$]***\\/<\\/code><\\/td><td>&nbsp;<\\/td><\\/tr>\\r\\n\\t\\t\\t<\\/table>\\r\\n\\t\\t\\t<h3>When JCB Adds it Back<\\/h3>\\r\\n\\t\\t\\t<table>\\r\\n\\t\\t\\t\\t<legend>JCB Add Inserted Code<\\/legend>\\r\\n\\t\\t\\t\\t<tr><td><code>\\/***[INSERTED$$$$]***\\/\\/*<span class=\'placeholder-key-id\'>x<\\/span>*\\/<\\/code><\\/td><td>&nbsp;<\\/td><\\/tr>\\r\\n\\t\\t\\t\\t<tr><td>&nbsp;<\\/td><td>&lt;YOUR CODE HERE&gt;<\\/td><\\/tr>\\r\\n\\t\\t\\t\\t<tr><td><code>\\/***[\\/INSERTED$$$$]***\\/<\\/code><\\/td><td>&nbsp;<\\/td><\\/tr>\\r\\n\\t\\t\\t<\\/table>\\r\\n\\t\\t\\t<table>\\r\\n\\t\\t\\t\\t<legend>JCB Add Replaced Code<\\/legend>\\r\\n\\t\\t\\t\\t<tr><td><code>\\/***[REPLACED$$$$]***\\/\\/*<span class=\'placeholder-key-id\'>x<\\/span>*\\/<\\/code><\\/td><td>&nbsp;<\\/td><\\/tr>\\r\\n\\t\\t\\t\\t<tr><td>&nbsp;<\\/td><td>&lt;YOUR CODE HERE&gt;<\\/td><\\/tr>\\r\\n\\t\\t\\t\\t<tr><td><code>\\/***[\\/REPLACED$$$$]***\\/<\\/code><\\/td><td>&nbsp;<\\/td><\\/tr>\\r\\n\\t\\t\\t<\\/table>\\r\\n\\t\\t\\t<h3>When You Want to Changing Existing Custom Code in the IDE<\\/h3>\\r\\n\\t\\t\\t<table>\\r\\n\\t\\t\\t\\t<legend>Update Inserted Code<\\/legend>\\r\\n\\t\\t\\t\\t<tr><td><code>\\/***[INSERTED&lt;&gt;$$$$]***\\/\\/*<span class=\'placeholder-key-id\'>x<\\/span>*\\/<\\/code><\\/td><td>&nbsp;<\\/td><\\/tr>\\r\\n\\t\\t\\t\\t<tr><td>&nbsp;<\\/td><td>&lt;YOUR CODE HERE&gt;<\\/td><\\/tr>\\r\\n\\t\\t\\t\\t<tr><td><code>\\/***[\\/INSERTED&lt;&gt;$$$$]***\\/<\\/code><\\/td><td>&nbsp;<\\/td><\\/tr>\\r\\n\\t\\t\\t<\\/table>\\r\\n\\t\\t\\t<table>\\r\\n\\t\\t\\t\\t<legend>Update Replaced Code<\\/legend>\\r\\n\\t\\t\\t\\t<tr><td><code>\\/***[REPLACED&lt;&gt;$$$$]***\\/\\/*<span class=\'placeholder-key-id\'>x<\\/span>*\\/<\\/code><\\/td><td>&nbsp;<\\/td><\\/tr>\\r\\n\\t\\t\\t\\t<tr><td>&nbsp;<\\/td><td>&lt;YOUR CODE HERE&gt;<\\/td><\\/tr>\\r\\n\\t\\t\\t\\t<tr><td><code>\\/***[\\/REPLACED&lt;&gt;$$$$]***\\/<\\/code><\\/td><td>&nbsp;<\\/td><\\/tr>\\r\\n\\t\\t\\t<\\/table>\\r\\n\\t\\t<\\/div>\\r\\n\\t\\t<div id=\'html-comment-info\'>\\r\\n\\t\\t\\t<h2>Comment Type HTML<\\/h2>\\r\\n\\t\\t\\t<h3>How You Can Add New Code in the IDE<\\/h3>\\r\\n\\t\\t\\t<table>\\r\\n\\t\\t\\t\\t<legend>Add New Insert Code<\\/legend>\\r\\n\\t\\t\\t\\t<tr><td><code>&lt;!--[INSERT&lt;&gt;$$$$]--&gt;<\\/code><\\/td><td>&nbsp;<\\/td><\\/tr>\\r\\n\\t\\t\\t\\t<tr><td>&nbsp;<\\/td><td>&lt;YOUR CODE HERE&gt;<\\/td><\\/tr>\\r\\n\\t\\t\\t\\t<tr><td><code>&lt;!--[\\/INSERT&lt;&gt;$$$$]--&gt;<\\/code><\\/td><td>&nbsp;<\\/td><\\/tr>\\r\\n\\t\\t\\t<\\/table>\\r\\n\\t\\t\\t<table>\\r\\n\\t\\t\\t\\t<legend>Add New Replace Code<\\/legend>\\r\\n\\t\\t\\t\\t<tr><td><code>&lt;!--[REPLACE&lt;&gt;$$$$]--&gt;<\\/code><\\/td><td>&nbsp;<\\/td><\\/tr>\\r\\n\\t\\t\\t\\t<tr><td>&nbsp;<\\/td><td>&lt;YOUR CODE HERE&gt;<\\/td><\\/tr>\\r\\n\\t\\t\\t\\t<tr><td><code>&lt;!--[\\/REPLACE&lt;&gt;$$$$]--&gt;<\\/code><\\/td><td>&nbsp;<\\/td><\\/tr>\\r\\n\\t\\t\\t<\\/table>\\r\\n\\t\\t\\t<h3>When JCB Adds it Back<\\/h3>\\r\\n\\t\\t\\t<table>\\r\\n\\t\\t\\t\\t<legend>JCB Add Inserted Code<\\/legend>\\r\\n\\t\\t\\t\\t<tr><td><code>&lt;!--[INSERTED$$$$]--&gt;&lt;!--<span class=\'placeholder-key-id\'>x<\\/span>--&gt;<\\/code><\\/td><td>&nbsp;<\\/td><\\/tr>\\r\\n\\t\\t\\t\\t<tr><td>&nbsp;<\\/td><td>&lt;YOUR CODE HERE&gt;<\\/td><\\/tr>\\r\\n\\t\\t\\t\\t<tr><td><code>&lt;!--[\\/INSERTED$$$$]--&gt;<\\/code><\\/td><td>&nbsp;<\\/td><\\/tr>\\r\\n\\t\\t\\t<\\/table>\\r\\n\\t\\t\\t<table>\\r\\n\\t\\t\\t\\t<legend>JCB Add Replaced Code<\\/legend>\\r\\n\\t\\t\\t\\t<tr><td><code>&lt;!--[REPLACED$$$$]--&gt;&lt;!--<span class=\'placeholder-key-id\'>x<\\/span>--&gt;<\\/code><\\/td><td>&nbsp;<\\/td><\\/tr>\\r\\n\\t\\t\\t\\t<tr><td>&nbsp;<\\/td><td>&lt;YOUR CODE HERE&gt;<\\/td><\\/tr>\\r\\n\\t\\t\\t\\t<tr><td><code>&lt;!--[\\/REPLACED$$$$]--&gt;<\\/code><\\/td><td>&nbsp;<\\/td><\\/tr>\\r\\n\\t\\t\\t<\\/table>\\r\\n\\t\\t\\t<h3>When You Want to Changing Existing Custom Code in the IDE<\\/h3>\\r\\n\\t\\t\\t<table>\\r\\n\\t\\t\\t\\t<legend>Update Inserted Code<\\/legend>\\r\\n\\t\\t\\t\\t<tr><td><code>&lt;!--[INSERTED&lt;&gt;$$$$]--&gt;&lt;!--<span class=\'placeholder-key-id\'>x<\\/span>--&gt;<\\/code><\\/td><td>&nbsp;<\\/td><\\/tr>\\r\\n\\t\\t\\t\\t<tr><td>&nbsp;<\\/td><td>&lt;YOUR CODE HERE&gt;<\\/td><\\/tr>\\r\\n\\t\\t\\t\\t<tr><td><code>&lt;!--[\\/INSERTED&lt;&gt;$$$$]--&gt;<\\/code><\\/td><td>&nbsp;<\\/td><\\/tr>\\r\\n\\t\\t\\t<\\/table>\\r\\n\\t\\t\\t<table>\\r\\n\\t\\t\\t\\t<legend>Update Replaced Code<\\/legend>\\r\\n\\t\\t\\t\\t<tr><td><code>&lt;!--[REPLACED&lt;&gt;$$$$]--&gt;&lt;!--<span class=\'placeholder-key-id\'>x<\\/span>--&gt;<\\/code><\\/td><td>&nbsp;<\\/td><\\/tr>\\r\\n\\t\\t\\t\\t<tr><td>&nbsp;<\\/td><td>&lt;YOUR CODE HERE&gt;<\\/td><\\/tr>\\r\\n\\t\\t\\t\\t<tr><td><code>&lt;!--[\\/REPLACED&lt;&gt;$$$$]--&gt;<\\/code><\\/td><td>&nbsp;<\\/td><\\/tr>\\r\\n\\t\\t\\t<\\/table>\\r\\n\\t\\t<\\/div>\\r\\n\\t\\t<p><b><span class=\'placeholder-key-id\'>x<\\/span> is the ID of the code in the system don&apos;t change it when you edit the code in your IDE outside of JCB!<\\/b><\\/p>\\r\\n\\t<\\/div>\\r\\n\\t<div class=\'span6\' id=\'usedin\' style=\'display: none;\'>\\r\\n\\t\\t[CUSTOMCODE=codeUsedInHtmlNote+USED IN,usedin,code]\\r\\n\\t<\\/div>\\r\\n<\\/div>\\\"\\n\\theading=\\\"h4\\\"\\n\\/>\"', 1, '2017-02-12 11:26:43', '2019-02-22 22:26:52', 27, '', 774, 'be1e3fd5-0806-4151-849f-087a6cd9a793', '', '', '', '', ''),
(1648, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Venue Template', 'NOT NULL', '', 25, '\"<field \\r\\n\\ttype=\\\"textarea\\\" \\r\\n\\tname=\\\"venue_display\\\" \\r\\n\\tlabel=\\\"Venue display template<br \\/><small>html allowed<\\/small>\\\" \\r\\n\\trows=\\\"30\\\" \\r\\n\\tcols=\\\"50\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tdescription=\\\"Here you can set the venue template that is to display the details of the venue.\\\" \\r\\n\\tclass=\\\"text_area span12\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\tfilter=\\\"SAFEHTML\\\" \\r\\n\\thint=\\\"\\/\\/ add the template here.\\\" \\r\\n\\/>\"', 1, '2017-02-14 15:35:51', '2016-11-24 12:40:25', 1, '', 741, '8850e92f-4653-4c9f-b4ed-fdd5d895c915', '', '', '', '', ''),
(1649, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Organizer Template', 'NOT NULL', '', 25, '\"<field \\r\\n\\ttype=\\\"textarea\\\" \\r\\n\\tname=\\\"organizer_display\\\" \\r\\n\\tlabel=\\\"Organizer display template<br \\/><small>html allowed<\\/small>\\\" \\r\\n\\trows=\\\"30\\\" \\r\\n\\tcols=\\\"50\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tdescription=\\\"Here you can set the organizer template that is to display the details of the organizer.\\\" \\r\\n\\tclass=\\\"text_area span12\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\tfilter=\\\"SAFEHTML\\\" \\r\\n\\thint=\\\"\\/\\/ add the template here.\\\" \\r\\n\\/>\"', 1, '2017-02-14 15:36:50', '2016-11-24 12:40:25', 1, '', 741, 'ed943220-d5bc-4fbd-b073-ec74ae4a99c7', '', '', '', '', ''),
(1650, '', '', '', '', '', '', '', '', '', '', 'CHAR', '', '', '', 'Venue Placeholders', 'NOT NULL', '', 14, '\"<field \\r\\n\\ttype=\\\"note\\\" \\r\\n\\tname=\\\"note_venue_placeholders\\\" \\r\\n\\tlabel=\\\"Venue Placeholders\\\" \\r\\n\\tdescription=\\\"<div id=\'venue_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\\/\\/ now get the place holders\\r\\n\\tgetPlaceHolders(\'venue\', token);\\r\\n});\\r\\n<\\/script>\\\" \\r\\n\\theading=\\\"h3\\\"\\r\\n\\/>\"', 1, '2017-02-14 15:39:18', '2017-02-26 16:23:00', 3, '', 742, 'e045af44-38a8-40db-8553-56a8d4fc3ae4', '', '', '', '', ''),
(1651, '', '', '', '', '', '', '', '', '', '', 'CHAR', '', '', '', 'Organizer Placeholders', 'NOT NULL', '', 14, '\"<field \\r\\n\\ttype=\\\"note\\\" \\r\\n\\tname=\\\"note_organizer_placeholders\\\" \\r\\n\\tlabel=\\\"Organizer Placeholders\\\" \\r\\n\\tdescription=\\\"<div id=\'organizer_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\\/\\/ now get the place holders\\r\\n\\tgetPlaceHolders(\'organizer\', token);\\r\\n});\\r\\n\\/\\/ nice little dot trick :)\\r\\nvar x=0;\\r\\nsetInterval(function() {\\r\\n\\tvar dots = \'\';\\r\\n\\tx++;\\r\\n\\tfor (var y=0; y < x%11; y++) {\\r\\n\\t\\tdots+=\'.\';\\r\\n\\t}\\r\\n\\tjQuery(\'.loading-dots\').text(dots);\\r\\n} , 500);\\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>\\\" \\r\\n\\theading=\\\"h3\\\"\\r\\n\\/>\"', 1, '2017-02-14 15:40:12', '2017-02-26 16:23:59', 3, '', 742, 'e7945aed-ef08-472b-af81-0382122af01c', '', '', '', '', ''),
(1652, '', '', 1, '', '', '', '', '', '', '', '', '', 'W0NVU1RPTUNPREU9dWlraXRGaWxlVXBsb2FkZXIrZG9jdW1lbnQsZG9jdW1lbnRzLGFuc3dlcl0=', '', 'Answer Documents Uploader (uikit)', 'NOT NULL', '', 14, '\"<field\\n\\ttype=\\\"note\\\"\\n\\tname=\\\"answer_documents_uploader\\\"\\n\\tlabel=\\\"Answer Documents\\\"\\n\\tdescription=\\\"[CUSTOMCODE=uikitFileUploaderHTML+document,documents,answer]\\\"\\n\\/>\"', 1, '2017-02-21 23:40:41', '2018-09-18 22:56:55', 4, '', 110, '36ab6fc0-4db1-456a-8537-74626e007870', '', '', '', '', ''),
(1653, '', '', '', '', '', '', '', '', 255, '', 'TEXT', '', '', '', 'Answer Documents Key', 'NOT NULL', 3, 9, '\"<field \\r\\n\\ttype=\\\"hidden\\\" \\r\\n\\tname=\\\"answer_documents\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\/>\"', 1, '2017-02-21 23:41:49', '2017-01-30 18:20:07', 1, '', 729, '8dec7b9d-7cc3-427c-9eec-6c9b0957c4cc', '', '', '', '', ''),
(1654, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Status (register)', 'NOT NULL', '', 11, '\"<field \\r\\n\\ttype=\\\"list\\\" \\r\\n\\tname=\\\"status\\\" \\r\\n\\tlabel=\\\"Status\\\" \\r\\n\\tdescription=\\\"The status of this registered entry\\\" \\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\tmultiple=\\\"false\\\" \\r\\n\\tfilter=\\\"INT\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\toption=\\\"|Select an option,1|Cart,2|Document,0|Canceled\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\/>\"', 1, '2017-02-22 02:04:53', '2017-02-22 02:09:43', 2, '', 775, 'f91ba4a2-f108-4a56-893f-aae27be646b2', '', '', '', '', ''),
(1655, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', 2, '', '', 'Public ID', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"public\\\" \\r\\n\\tlabel=\\\"Public ID\\\" \\r\\n\\tsize=\\\"50\\\" \\r\\n\\tmaxlength=\\\"150\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tdescription=\\\"The id used to identify a public user.\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\tfilter=\\\"STRING\\\" \\r\\n\\tmessage=\\\"Error! Please add some public id here.\\\" \\r\\n\\thint=\\\"public id here\\\"\\r\\n\\/>\"', 1, '2017-02-22 02:09:21', '0000-00-00 00:00:00', 1, '', 776, 'f87de00a-95ee-4751-94b5-9844e8f9c610', '', '', '', '', ''),
(1656, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', 2, '', '', 'Key', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"key\\\" \\r\\n\\tlabel=\\\"Key\\\" \\r\\n\\tsize=\\\"50\\\" \\r\\n\\tmaxlength=\\\"150\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tdescription=\\\"The unique key of the registered entry\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\tfilter=\\\"STRING\\\" \\r\\n\\tmessage=\\\"Error! Please add some key here.\\\" \\r\\n\\thint=\\\"key here\\\" \\r\\n\\/>\"', 1, '2017-02-22 02:14:06', '0000-00-00 00:00:00', 1, '', 777, '88b05f8b-2fd8-4d8d-8caa-e30b586880bc', '', '', '', '', ''),
(1657, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'Registered User (not required)', 'NOT NULL', '', 6, '\"<field \\r\\n\\ttype=\\\"registered\\\" \\r\\n\\tname=\\\"registered_user\\\" \\r\\n\\tlabel=\\\"Registered User\\\" \\r\\n\\tdescription=\\\"Select a registered user.\\\" \\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\tmultiple=\\\"false\\\"\\r\\n\\trequired=\\\"false\\\" \\r\\n\\tdefault=\\\"0\\\" \\r\\n\\textends=\\\"list\\\" \\r\\n\\tbutton=\\\"true\\\" \\r\\n\\ttable=\\\"#__###component###_registered_user\\\" \\r\\n\\tcomponent=\\\"com_###component###\\\" \\r\\n\\tview=\\\"registered_user\\\" \\r\\n\\tviews=\\\"registered_users\\\" \\r\\n\\tvalue_field=\\\"user\\\" \\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 an user\');\\\" \\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###, JFactory::getUser($item->###CODE_TEXT###)->name);\\\" \\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, '2017-02-25 19:48:47', '2017-02-20 20:53:19', 1, '', 596, '6c4db7bd-2678-4f62-a327-51c37e9b6797', '', '', '', '', ''),
(1658, '', '', '', '', '', '', '', '', '', '', 'CHAR', '', '', '', 'Organizer Cart Header Placeholders', 'NOT NULL', '', 14, '\"<field \\r\\n\\ttype=\\\"note\\\" \\r\\n\\tname=\\\"note_cart_organizer_placeholders\\\" \\r\\n\\tlabel=\\\"Organizer Cart Header Placeholders\\\" \\r\\n\\tdescription=\\\"<div id=\'organizer_cart_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\\/\\/ now get the place holders\\r\\n\\tgetPlaceHolders(\'organizer_cart\', token);\\r\\n});\\r\\n<\\/script>\\\" \\r\\n\\theading=\\\"h3\\\"\\r\\n\\/>\"', '', '2017-02-26 16:06:44', '2017-02-26 16:27:28', 4, '', 742, 'd7a51960-e173-42b4-a940-3a89884e82bf', '', '', '', '', ''),
(1659, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Organizer Cart Template', 'NOT NULL', '', 25, '\"<field \\r\\n\\ttype=\\\"textarea\\\" \\r\\n\\tname=\\\"organizer_cart_template\\\" \\r\\n\\tlabel=\\\"Organizer cart template (Use <code>[doc_body]<\\/code> for the cart items)<br \\/><small>html allowed<\\/small>\\\" \\r\\n\\trows=\\\"30\\\" \\r\\n\\tcols=\\\"50\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tdescription=\\\"Here you can set the organizer cart template that is to display the details of the organizer and the document\\/invoice.\\\" \\r\\n\\tclass=\\\"text_area span12\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\tfilter=\\\"SAFEHTML\\\" \\r\\n\\thint=\\\"\\/\\/ add the template here.\\\" \\r\\n\\/>\"', 1, '2017-02-26 16:08:50', '2017-02-26 17:04:44', 4, '', 741, '32539aae-1499-41e9-bb04-9d149c4969fa', '', '', '', '', ''),
(1660, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'Country (id - default)', 'NOT NULL', '', 6, '\"<field\\n\\ttype=\\\"country\\\"\\n\\tname=\\\"country\\\"\\n\\tlabel=\\\"Country\\\"\\n\\tdescription=\\\"Default country\\\"\\n\\tclass=\\\"list_class\\\"\\n\\tmultiple=\\\"false\\\"\\n\\tdefault=\\\"0\\\"\\n\\trequired=\\\"true\\\"\\n\\textends=\\\"list\\\"\\n\\tbutton=\\\"false\\\"\\n\\ttable=\\\"#__###component###_country\\\"\\n\\tcomponent=\\\"com_###component###\\\"\\n\\tview=\\\"country\\\"\\n\\tviews=\\\"countries\\\"\\n\\tvalue_field=\\\"name\\\"\\n\\tkey_field=\\\"id\\\"\\n\\ttype_php_1=\\\"__.o0=base64=Oo.__Ly8gR2V0IHRoZSB1c2VyIG9iamVjdC4NCgkJJHVzZXIgPSBKRmFjdG9yeTo6Z2V0VXNlcigpOw0KCQkvLyBHZXQgdGhlIGRhdGFic2Ugb2JqZWN0Lg0KCQkkZGIgPSBKRmFjdG9yeTo6Z2V0REJPKCk7DQoJCSRxdWVyeSA9ICRkYi0+Z2V0UXVlcnkodHJ1ZSk7DQoJCSRxdWVyeS0+c2VsZWN0KCRkYi0+cXVvdGVOYW1lKGFycmF5KCdhLiMjI0lEIyMjJywnYS4jIyNURVhUIyMjJyksYXJyYXkoJyMjI0lEIyMjJywnIyMjQ09ERV9URVhUIyMjJykpKTsNCgkJJHF1ZXJ5LT5mcm9tKCRkYi0+cXVvdGVOYW1lKCcjIyNUQUJMRSMjIycsICdhJykpOw0KCQkkcXVlcnktPndoZXJlKCRkYi0+cXVvdGVOYW1lKCdhLnB1Ymxpc2hlZCcpIC4gJyA9IDEnKTsNCgkJJHF1ZXJ5LT5vcmRlcignYS4jIyNURVhUIyMjIEFTQycpOw0KCQkvLyBJbXBsZW1lbnQgVmlldyBMZXZlbCBBY2Nlc3MgKGlmIHNldCBpbiB0YWJsZSkNCgkJaWYgKCEkdXNlci0+YXV0aG9yaXNlKCdjb3JlLm9wdGlvbnMnLCAnW1tbY29tX2NvbXBvbmVudF1dXScpKQ0KCQl7DQoJCQkkY29sdW1ucyA9ICRkYi0+Z2V0VGFibGVDb2x1bW5zKCcjIyNUQUJMRSMjIycpOw0KCQkJaWYoaXNzZXQoJGNvbHVtbnNbJ2FjY2VzcyddKSkNCgkJCXsNCgkJCQkkZ3JvdXBzID0gaW1wbG9kZSgnLCcsICR1c2VyLT5nZXRBdXRob3Jpc2VkVmlld0xldmVscygpKTsNCgkJCQkkcXVlcnktPndoZXJlKCdhLmFjY2VzcyBJTiAoJyAuICRncm91cHMgLiAnKScpOw0KCQkJfQ0KCQl9DQoJCSRkYi0+c2V0UXVlcnkoKHN0cmluZykkcXVlcnkpOw0KCQkkaXRlbXMgPSAkZGItPmxvYWRPYmplY3RMaXN0KCk7DQoJCSRvcHRpb25zID0gYXJyYXkoKTsNCgkJaWYgKCRpdGVtcykNCgkJew0KCQkJJG9wdGlvbnNbXSA9IEpIdG1sOjpfKCdzZWxlY3Qub3B0aW9uJywgJycsICdTZWxlY3QgYW4gb3B0aW9uJyk7DQoJCQlmb3JlYWNoKCRpdGVtcyBhcyAkaXRlbSkNCgkJCXsNCgkJCQkkb3B0aW9uc1tdID0gSkh0bWw6Ol8oJ3NlbGVjdC5vcHRpb24nLCAkaXRlbS0+IyMjSUQjIyMsICRpdGVtLT4jIyNDT0RFX1RFWFQjIyMpOw0KCQkJfQ0KCQl9DQoJCXJldHVybiAkb3B0aW9uczs=\\\"\\n\\/>\"', 1, '2017-02-27 11:38:56', '2020-05-31 01:18:51', 3, '', 242, 'eb24cc5d-48fb-4eed-a8a7-8b42fae9d83d', '', '', '', '', ''),
(1661, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'Checkout Menu Item', 'NOT NULL', '', 33, '\"<field \\r\\n\\ttype=\\\"menuitem\\\" \\r\\n\\tname=\\\"checkout_menu\\\" \\r\\n\\tlabel=\\\"Checkout Menu Item\\\" \\r\\n\\tdescription=\\\"Select the menu item you would like your checkout to be linked to.\\\" \\r\\n\\tfilter=\\\"int\\\" \\r\\n\\tpublished=\\\"1\\\"\\r\\n\\/>\"', 1, '2017-02-28 23:11:43', '2016-11-10 02:20:32', 1, '', 637, 'b4da2ae4-088f-47b3-9a70-557101d30b5f', '', '', '', '', ''),
(1662, '', '', '', '', '', '', '', '', '', '', 'MEDIUMTEXT', '', '', '', 'PHP (model_list method)', 'NOT NULL', 2, 8, '\"<field\\n\\ttype=\\\"editor\\\"\\n\\tname=\\\"php_model_list\\\"\\n\\tlabel=\\\"PHP <b>List view<\\/b> (model methods)\\\"\\n\\tdescription=\\\"Add PHP methods for the model that the controller will use. Do not add the php tags.\\\"\\n\\twidth=\\\"100%\\\"\\n\\theight=\\\"450px\\\"\\n\\tcols=\\\"30\\\"\\n\\trows=\\\"15\\\"\\n\\tbuttons=\\\"no\\\"\\n\\tsyntax=\\\"php\\\"\\n\\teditor=\\\"codemirror|none\\\"\\n\\tfilter=\\\"raw\\\"\\n\\tvalidate=\\\"code\\\"\\n\\/>\"', 1, '2017-03-01 19:47:26', '2019-07-08 14:19:35', 6, '', 118, '46e5c9d6-6304-4e9f-a582-242308667e2f', '', '', '', '', ''),
(1663, '', '', '', '', '', '', '', '', '', '', 'MEDIUMTEXT', '', '', '', 'PHP (controller_list method)', 'NOT NULL', 2, 8, '\"<field\\n\\ttype=\\\"editor\\\"\\n\\tname=\\\"php_controller_list\\\"\\n\\tlabel=\\\"PHP <b>List view<\\/b> (controller methods)\\\"\\n\\tdescription=\\\"Add PHP methods for the controller that the button will target. 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, '2017-03-01 19:47:49', '2019-07-08 14:19:46', 5, '', 118, 'fe8a8811-1bcd-448a-a111-25e17ac47687', '', '', '', '', ''),
(1664, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'Registry Menu Item', 'NOT NULL', '', 33, '\"<field \\r\\n\\ttype=\\\"menuitem\\\" \\r\\n\\tname=\\\"registry_menu\\\" \\r\\n\\tlabel=\\\"Registry Menu Item\\\" \\r\\n\\tdescription=\\\"Select the menu item you would like your registry to be linked to.\\\" \\r\\n\\tfilter=\\\"int\\\" \\r\\n\\tpublished=\\\"1\\\"\\r\\n\\/>\"', 1, '2017-03-02 03:26:59', '2016-11-10 02:20:32', 1, '', 637, 'ff177951-6e3b-433d-bc21-3203b38fa33a', '', '', '', '', ''),
(1665, '', '', '', '', '', '', '', '', '', '', 'CHAR', '', '', '', 'Custom Toolbar Placeholder Note', 'NOT NULL', '', 14, '\"<field \\r\\n\\ttype=\\\"note\\\" \\r\\n\\tname=\\\"note_custom_toolbar_placeholder\\\" \\r\\n\\tdescription=\\\"Use this placeholder in the body <code>[[[SITE_TOOLBAR]]]<\\/code> to add the custom position of the toolbar.\\\" \\r\\n\\theading=\\\"h4\\\" \\r\\n\\tshowon=\\\"button_position:5\\\" \\r\\n\\/>\"', 1, '2017-03-06 19:52:58', '2017-03-06 20:03:42', 3, '', 778, '5397edb3-9146-45d6-82a7-bbb5c44a95b3', '', '', '', '', ''),
(1666, '', '', 1, '', '', '', '', '', '', '', '', '', 'W0NVU1RPTUNPREU9dWlraXRJbWFnZVVwbG9hZGVyK2ltYWdlLGltYWdlLGZlYXR1cmVd', '', 'Feature Banner Image Uploader (uikit)', 'NOT NULL', '', 14, '\"<field\\n\\ttype=\\\"note\\\"\\n\\tname=\\\"feature_image_uploader\\\"\\n\\tlabel=\\\"Featured Banner Image\\\"\\n\\tdescription=\\\"[CUSTOMCODE=uikitImageUploaderHTML+image,image,feature]\\\"\\n\\/>\"', 1, '2017-03-06 23:27:26', '2018-09-18 20:53:14', 2, '', 110, 'ee511daf-6d1c-444b-89a1-00c84f062151', '', '', '', '', ''),
(1667, '', '', '', '', '', '', '', '', 255, '', 'TEXT', '', '', '', 'Featured Banner Image Key', 'NOT NULL', 3, 9, '\"<field \\r\\n\\ttype=\\\"hidden\\\" \\r\\n\\tname=\\\"feature_image\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\/>\"', 1, '2017-03-06 23:27:40', '2016-11-19 06:06:52', 1, '', 729, '45eb8e79-8670-4694-b5fb-d527ec775234', '', '', '', '', ''),
(1668, '', '', '', '', '', '', '', '', 11, '', 'INT', '', '', '', 'Featured Banner Width (in pixels)', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"feature_width\\\" \\r\\n\\tlabel=\\\"Featured Width (in pixels)\\\" \\r\\n\\tsize=\\\"50\\\" \\r\\n\\tmaxlength=\\\"150\\\"\\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\tfilter=\\\"INT\\\" \\r\\n\\thint=\\\"Only Numbers\\\"\\r\\n\\tonchange=\\\"if(!jQuery(this).val().match(\\/^\\\\d+$\\/)){jQuery(this).val(\'\')};\\\" \\r\\n\\tshowon=\\\"crop_feature:1\\\"\\r\\n\\/>\"', 1, '2017-01-25 11:42:47', '2017-03-06 23:56:59', 6, '', 7, '317b3496-f4d1-425b-9256-02deb8a358c1', '', '', '', '', ''),
(1669, '', '', '', '', '', '', '', '', 11, '', 'INT', '', '', '', 'Featured Banner Height (in pixels)', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"feature_height\\\" \\r\\n\\tlabel=\\\"Featured Height (in pixels)\\\" \\r\\n\\tsize=\\\"50\\\" \\r\\n\\tmaxlength=\\\"150\\\"\\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\tfilter=\\\"INT\\\" \\r\\n\\thint=\\\"Only Numbers\\\"\\r\\n\\tonchange=\\\"if(!jQuery(this).val().match(\\/^\\\\d+$\\/)){jQuery(this).val(\'\')};\\\" \\r\\n\\tshowon=\\\"crop_feature:1\\\"\\r\\n\\/>\"', 1, '2017-01-25 11:44:05', '2017-03-06 23:57:15', 5, '', 7, '612ccaf8-c266-4d14-a77f-e79a1d2732dc', '', '', '', '', ''),
(1670, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'Crop Featured Banners', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"crop_feature\\\" \\r\\n\\tlabel=\\\"Crop Featured Banners\\\" \\r\\n\\tdescription=\\\"Set if all featured banners that are added should be cropped.\\\" \\r\\n\\tclass=\\\"btn-group btn-group-yesno\\\" \\r\\n\\toption=\\\"1|Yes,0|No\\\" \\r\\n\\tdefault=\\\"0\\\"\\r\\n\\/>\"', 1, '2017-03-06 23:52:05', '2017-01-27 01:23:49', 1, '', 765, '492bf073-ac68-49d8-a2ae-45a89215c433', '', '', '', '', ''),
(1671, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Events - Table/Grid', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"events_display\\\" \\r\\n\\tlabel=\\\"Events Display\\\" \\r\\n\\tdescription=\\\"Select the option for display of events.\\\" \\r\\n\\tclass=\\\"btn-group btn-group-yesno\\\" \\r\\n\\toption=\\\"1|Table,2|Grid\\\" \\r\\n\\tdefault=\\\"1\\\" \\r\\n\\trequired=\\\"\\\" \\r\\n\\/>\"', 1, '2017-03-07 12:26:15', '2015-11-19 21:53:40', 1, '', 635, '05ac5baf-f4b2-4531-8c44-792a180dce6b', '', '', '', '', ''),
(1672, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'Q&A (request_catid)', 'NOT NULL', '', 2, '\"<field \\r\\n\\ttype=\\\"category\\\" \\r\\n\\tname=\\\"category_request_catid\\\" \\r\\n\\tlabel=\\\"Category\\\" \\r\\n\\textension=\\\"com_###component###.questions_and_answers\\\"\\r\\n\\tdefault=\\\"\\\" \\r\\n\\tdescription=\\\"select one of the following categories\\\" \\r\\n\\tclass=\\\"inputbox\\\" \\r\\n\\/>\"', 1, '2017-03-08 03:57:52', '2017-03-08 04:27:19', 4, '', 147, '3af23d81-5c6f-48ee-ac89-6e1481efac95', '', '', '', '', ''),
(1673, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'Events (request_catid)', 'NOT NULL', '', 2, '\"<field \\r\\n\\ttype=\\\"category\\\" \\r\\n\\tname=\\\"category_request_catid\\\" \\r\\n\\tlabel=\\\"Category\\\" \\r\\n\\textension=\\\"com_###component###.events\\\"\\r\\n\\tdefault=\\\"\\\" \\r\\n\\tdescription=\\\"select one of the following categories\\\" \\r\\n\\tclass=\\\"inputbox\\\" \\r\\n\\/>\"', 1, '2017-03-08 12:26:55', '2017-03-08 04:27:19', 1, '', 147, 'e47d788c-2336-49f2-a638-7ab433124b6e', '', '', '', '', ''),
(1674, '', '', '', '', '', '', '', '', '', '', 'INT', '', '', '', 'Add Custom Category Panel Template', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"category_add_panel_template\\\" \\r\\n\\tlabel=\\\"Add Custom Category Panel Template\\\" \\r\\n\\tdescription=\\\"\\\" \\r\\n\\tclass=\\\"btn-group btn-group-yesno\\\" \\r\\n\\toption=\\\"1|Yes,0|No\\\" \\r\\n\\tdefault=\\\"0\\\" \\r\\n\\/>\"', 1, '2017-03-08 20:57:10', '2017-03-08 21:06:43', 2, '', 779, 'b0f36ad2-2127-48f4-8dad-c827004ed807', '', '', '', '', ''),
(1675, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Category Panel Template', 'NOT NULL', '', 25, '\"<field \\r\\n\\ttype=\\\"textarea\\\" \\r\\n\\tname=\\\"category_panel_template\\\" \\r\\n\\tlabel=\\\"Category Panel template<br \\/><small>html allowed<\\/small>\\\" \\r\\n\\trows=\\\"30\\\" \\r\\n\\tcols=\\\"50\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tdescription=\\\"Here you can set the category panel template.\\\" \\r\\n\\tclass=\\\"text_area span12\\\" \\r\\n\\tfilter=\\\"SAFEHTML\\\" \\r\\n\\thint=\\\"\\/\\/ add the template here.\\\" \\r\\n\\tshowon=\\\"category_add_panel_template:1\\\"\\r\\n\\/>\"', 1, '2017-03-08 20:59:33', '2016-11-24 12:40:25', 1, '', 741, '278ac010-3559-441f-98ca-30e360add3c0', '', '', '', '', ''),
(1676, '', '', '', '', '', '', '', '', '', '', 'CHAR', '', '', '', 'Event Placeholders', 'NOT NULL', '', 14, '\"<field \\r\\n\\ttype=\\\"note\\\" \\r\\n\\tname=\\\"note_event_placeholders\\\" \\r\\n\\tlabel=\\\"Event Placeholders\\\" \\r\\n\\tdescription=\\\"<div id=\'event_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\\/\\/ now get the place holders\\r\\n\\tgetPlaceHolders(\'event\', token);\\r\\n});\\r\\n<\\/script>\\\" \\r\\n\\theading=\\\"h3\\\"\\r\\n\\/>\"', 1, '2017-03-09 14:54:36', '2017-02-26 16:23:00', 1, '', 742, '347a4fed-2248-4f59-a4f0-d5caa62e25d4', '', '', '', '', ''),
(1677, '', '', '', '', '', '', '', '', '', '', 'MEDIUMTEXT', '', '', '', 'PHP (Extension - Import)', 'NOT NULL', 2, 25, '\"<field \\r\\n\\ttype=\\\"textarea\\\" \\r\\n\\tname=\\\"php_import_ext\\\" \\r\\n\\tlabel=\\\"Check Extension Method PHP\\\" \\r\\n\\trows=\\\"30\\\" \\r\\n\\tcols=\\\"15\\\"\\r\\n\\tdescription=\\\"Add your PHP here! [Do not add the php tags]\\\" \\r\\n\\tclass=\\\"text_area span12\\\" \\r\\n\\tfilter=\\\"raw\\\"\\r\\n\\thint=\\\"\\/\\/ PHP here for the checkExtension Method\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\/>\"', 1, '2017-03-23 21:14:27', '2017-03-23 21:34:25', 3, '', 119, 'eb27ce54-18e1-4d35-b45d-562bb8146459', '', '', '', '', ''),
(1678, '', '', '', '', '', '', '', '', 255, '', 'TEXT', '', '', '', 'Export Key', 'NOT NULL', 3, 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"export_key\\\" \\r\\n\\tlabel=\\\"Export Key<br \\/><small>(encrypted field)<\\/small>\\\" \\r\\n\\tsize=\\\"150\\\" \\r\\n\\tmaxlength=\\\"265\\\" \\r\\n\\tdescription=\\\"The key used to lock the data during export.\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\trequired=\\\"false\\\" \\r\\n\\tfilter=\\\"STRING\\\" \\r\\n\\tmessage=\\\"Error! Please add export key here.\\\" \\r\\n\\thint=\\\"Export Key Here\\\"\\r\\n\\/>\"', 1, '2017-03-28 00:45:51', '2017-03-30 16:16:57', 4, '', 780, 'a1aa4716-5ee0-495c-ac35-5a969277da39', '', '', '', '', ''),
(1679, '', '', '', '', '', '', '', '', 255, '', 'TEXT', '', '', '', 'Main Documents Key', 'NOT NULL', 3, 9, '\"<field \\r\\n\\ttype=\\\"hidden\\\" \\r\\n\\tname=\\\"main_documents\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\/>\"', 1, '2017-03-29 09:13:57', '2017-01-30 18:20:07', 1, '', 729, 'e914eb53-cfe4-40d0-857d-34aa6c7b3c93', '', '', '', '', ''),
(1680, '', '', '', '', '', '', '', '', 255, '', 'TEXT', '', '', '', 'Doc Image Key', 'NOT NULL', 3, 9, '\"<field \\r\\n\\ttype=\\\"hidden\\\" \\r\\n\\tname=\\\"doc_image\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\/>\"', 1, '2017-03-29 09:14:35', '2017-01-25 15:44:33', 1, '', 729, '878de554-ed06-4763-a3ac-658242479ca5', '', '', '', '', ''),
(1681, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Document (Categories)', 'NOT NULL', 1, 2, '\"<field\\n\\ttype=\\\"category\\\"\\n\\tname=\\\"catid\\\"\\n\\tlabel=\\\"Category\\\"\\n\\textension=\\\"com_###component###.document\\\"\\n\\tdefault=\\\"\\\"\\n\\tdescription=\\\"select any of the following categories\\\"\\n\\tclass=\\\"inputbox\\\"\\n\\tmultiple=\\\"true\\\"\\n\\/>\"', 1, '2017-03-29 09:22:41', '2021-02-24 14:10:59', 2, '', 147, 'da6e366a-47cd-4afa-ada3-7ba35e433fef', '', '', '', '', ''),
(1682, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Description (not required)', 'NOT NULL', '', 25, '\"<field\\n\\ttype=\\\"textarea\\\"\\n\\tname=\\\"description\\\"\\n\\tlabel=\\\"Description\\\"\\n\\trows=\\\"3\\\"\\n\\tcols=\\\"5\\\"\\n\\tdefault=\\\"\\\"\\n\\tdescription=\\\"The description here.\\\"\\n\\tclass=\\\"text_area span12\\\"\\n\\tfilter=\\\"STRING\\\"\\n\\thint=\\\"Add Description Here\\\"\\n\\/>\"', 1, '2017-03-29 09:24:45', '2019-10-01 16:13:04', 2, '', 129, '03ed5e1b-c7ed-449d-a456-3ed717e9e1ca', '', '', '', '', ''),
(1683, '', '', 1, '', '', '', '', '', '', '', '', '', 'W0NVU1RPTUNPREU9dWlraXRGaWxlVXBsb2FkZXIrZG9jdW1lbnQsZG9jdW1lbnRzLG1haW5d', '', 'Main Documents Uploader (uikit)', 'NOT NULL', '', 14, '\"<field\\n\\ttype=\\\"note\\\"\\n\\tname=\\\"main_documents_uploader\\\"\\n\\tlabel=\\\"Documents\\\"\\n\\tdescription=\\\"[CUSTOMCODE=uikitFileUploaderHTML+document,documents,main]\\\"\\n\\/>\"', 1, '2017-03-29 09:26:25', '2018-09-18 22:55:36', 3, '', 110, 'b1cb38df-b35c-4ea0-b126-cd894b6f4ba7', '', '', '', '', ''),
(1684, '', '', 1, '', '', '', '', '', '', '', '', '', 'W0NVU1RPTUNPREU9dWlraXRJbWFnZVVwbG9hZGVyK2ltYWdlLGltYWdlLGRvY10=', '', 'Doc Image Uploader (uikit)', 'NOT NULL', '', 14, '\"<field\\n\\ttype=\\\"note\\\"\\n\\tname=\\\"doc_image_uploader\\\"\\n\\tlabel=\\\"Image\\\"\\n\\tdescription=\\\"[CUSTOMCODE=uikitImageUploaderHTML+image,image,doc]\\\"\\n\\/>\"', 1, '2017-03-29 09:27:36', '2018-09-18 20:55:54', 3, '', 110, '921e4e18-9b28-457a-8646-e03b61982c51', '', '', '', '', ''),
(1685, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Export Owner', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"export_owner\\\"\\n\\tlabel=\\\"Owner\\\"\\n\\tsize=\\\"10\\\"\\n\\tmaxlength=\\\"120\\\"\\n\\tdescription=\\\"The Owner\'s Name &amp; Surname.\\\"\\n\\tclass=\\\"text_area\\\"\\n\\trequired=\\\"true\\\"\\n\\tautocomplete=\\\"on\\\"\\n\\tfilter=\\\"HTML\\\"\\n\\tmessage=\\\"Error! Please add owner name here.\\\"\\n\\thint=\\\"Owner Name &amp; Surname Here\\\"\\n\\/>\"', 1, '2017-03-30 11:59:22', '2021-12-19 00:58:41', 2, '', 205, '74de17c9-5de6-4851-9fa5-0ba6d3fc1b56', '', '', '', '', ''),
(1686, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Export Email', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"export_email\\\"\\n\\tlabel=\\\"Email\\\"\\n\\tsize=\\\"40\\\"\\n\\tmaxlength=\\\"150\\\"\\n\\tdescription=\\\"Enter Email\\\"\\n\\tclass=\\\"text_area\\\"\\n\\trequired=\\\"true\\\"\\n\\tfilter=\\\"STRING\\\"\\n\\tvalidate=\\\"email\\\"\\n\\tautocomplete=\\\"on\\\"\\n\\tmessage=\\\"Error! Please email address here.\\\"\\n\\thint=\\\"Email Here\\\"\\n\\/>\"', 1, '2017-03-30 12:00:44', '2021-12-19 00:59:14', 2, '', 204, 'b0b315ba-7094-49d6-ad07-d4ad2892c5e6', '', '', '', '', ''),
(1687, '', '', '', '', '', '', '', '', 64, '', 'CHAR', '', '', '', 'Company Name (export)', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"export_company\\\"\\n\\tlabel=\\\"Company Name\\\"\\n\\tsize=\\\"40\\\"\\n\\tmaxlength=\\\"150\\\"\\n\\tdescription=\\\"Enter Company Name Here\\\"\\n\\tclass=\\\"text_area\\\"\\n\\trequired=\\\"true\\\"\\n\\tautocomplete=\\\"on\\\"\\n\\tfilter=\\\"STRING\\\"\\n\\tmessage=\\\"Error! Please add company name here.\\\"\\n\\thint=\\\"Company Name Here\\\"\\n\\/>\"', 1, '2017-03-30 12:02:00', '2021-12-19 00:58:12', 2, '', 159, '56e7775e-d18a-4199-a1ae-0c6b2bd34e16', '', '', '', '', ''),
(1688, '', '', '', '', '', '', '', '', 255, '', 'CHAR', '', '', '', 'Export Website', 'NOT NULL', '', 27, '\"<field\\n\\ttype=\\\"url\\\"\\n\\tname=\\\"export_website\\\"\\n\\tlabel=\\\"Website\\\"\\n\\tsize=\\\"60\\\"\\n\\tmaxlength=\\\"150\\\"\\n\\tdescription=\\\"Enter website address\\\"\\n\\tclass=\\\"text_area\\\"\\n\\trequired=\\\"true\\\"\\n\\tautocomplete=\\\"on\\\"\\n\\tfilter=\\\"url\\\"\\n\\tvalidated=\\\"url\\\"\\n\\tmessage=\\\"Error! Please add website here.\\\"\\n\\thint=\\\"http:\\/\\/www.example.com\\\"\\n\\/>\"', 1, '2017-03-30 12:02:42', '2021-12-19 01:01:07', 3, '', 185, 'a9e30d8f-448e-4aa4-89bc-57f55b483b11', '', '', '', '', ''),
(1689, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Export License', 'NOT NULL', '', 25, '\"<field \\r\\n\\ttype=\\\"textarea\\\" \\r\\n\\tname=\\\"export_license\\\" \\r\\n\\tlabel=\\\"License\\\" \\r\\n\\tdefault=\\\"GNU\\/GPL Version 2 or later - http:\\/\\/www.gnu.org\\/licenses\\/gpl-2.0.html\\\"\\r\\n\\trows=\\\"7\\\" \\r\\n\\tcols=\\\"10\\\" \\r\\n\\tdescription=\\\"Add License Here\\\" \\r\\n\\tclass=\\\"text_area span12\\\" \\r\\n\\tfilter=\\\"HTML\\\" \\r\\n\\thint=\\\"Add License Here\\\" \\r\\n\\trequired=\\\"true\\\"\\r\\n\\/>\"', 1, '2017-03-30 12:02:48', '2015-08-25 21:15:22', 1, '', 67, '24ddbe3a-bc06-4bef-8707-055a3aba47b4', '', '', '', '', ''),
(1690, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Export Copyright', 'NOT NULL', '', 25, '\"<field \\r\\n\\ttype=\\\"textarea\\\" \\r\\n\\tname=\\\"export_copyright\\\" \\r\\n\\tlabel=\\\"Copyright\\\" \\r\\n\\tdefault=\\\"Copyright (C) 2015. All Rights Reserved\\\"\\r\\n\\trows=\\\"7\\\" \\r\\n\\tcols=\\\"10\\\" \\r\\n\\tdescription=\\\"Add Copyright Here\\\" \\r\\n\\tclass=\\\"text_area span12\\\" \\r\\n\\tfilter=\\\"HTML\\\" \\r\\n\\thint=\\\"Add Copyright Here\\\" \\r\\n\\trequired=\\\"true\\\"\\r\\n\\/>\"', 1, '2017-03-30 12:02:57', '2015-08-25 21:15:22', 1, '', 150, '750ed790-58c0-4a94-886d-c43bcb142463', '', '', '', '', ''),
(1691, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Export Buy Link', 'NOT NULL', '', 27, '\"<field\\n\\ttype=\\\"url\\\"\\n\\tname=\\\"export_buy_link\\\"\\n\\tlabel=\\\"Buy Link<br \\/><small>(to get key)<\\/small>\\\"\\n\\tsize=\\\"60\\\"\\n\\tmaxlength=\\\"150\\\"\\n\\tdescription=\\\"Enter link where your JCB package key can be bought.\\\"\\n\\tclass=\\\"text_area\\\"\\n\\trequired=\\\"false\\\"\\n\\tfilter=\\\"url\\\"\\n\\tvalidated=\\\"url\\\"\\n\\tmessage=\\\"Error! Please add link here.\\\"\\n\\thint=\\\"http:\\/\\/www.example.com\\/buy-keys\\\"\\n\\tscheme=\\\"http,https\\\"\\n\\/>\"', 1, '2017-03-30 19:15:14', '2018-07-08 00:08:35', 5, '', 185, 'c8186809-e78b-4632-a2d1-ac2469ccb643', '', '', '', '', ''),
(1692, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Joomla Source Link', 'NOT NULL', '', 27, '\"<field\\n\\ttype=\\\"url\\\"\\n\\tname=\\\"joomla_source_link\\\"\\n\\tlabel=\\\"Joomla Source Link<br \\/><small>(where the Joomla source code is found)<\\/small>\\\"\\n\\tsize=\\\"60\\\"\\n\\tmaxlength=\\\"150\\\"\\n\\tdefault=\\\"\\\"\\n\\tdescription=\\\"Enter link where this Joomla component\'s source code can be found on gitHub. Where those who want to use this package, can review and contribute to the code.\\\"\\n\\tclass=\\\"text_area\\\"\\n\\treadonly=\\\"\\\"\\n\\tdisabled=\\\"\\\"\\n\\trequired=\\\"false\\\"\\n\\tfilter=\\\"url\\\"\\n\\tvalidated=\\\"url\\\"\\n\\tmessage=\\\"Error! Please add link here.\\\"\\n\\thint=\\\"https:\\/\\/github.com\\/vdm-io\\/Joomla-Component-Builder\\\"\\n\\/>\"', 1, '2017-03-30 20:31:40', '2018-05-05 01:47:13', 4, '', 185, 'de21cce1-44f6-4310-a2c2-08146fb21cbe', '', '', '', '', ''),
(1693, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Note - JCB Package', 'NOT NULL', '', 14, '\"<field \\r\\n\\ttype=\\\"note\\\" \\r\\n\\tname=\\\"jcb_export_package_note\\\" \\r\\n\\tlabel=\\\"JCB Package Export Settings\\\" \\r\\n\\tdescription=\\\"The settings below are used when you export this component as a JCB Package, for more info on how this works please review the following tutorial (<a href=\'https:\\/\\/youtu.be\\/lkE0ZiSWufg\' target=\'_blank\'>https:\\/\\/youtu.be\\/lkE0ZiSWufg<\\/a>).\\\" \\r\\n\\theading=\\\"h4\\\" \\r\\n\\tclass=\\\"alert alert-info\\\"\\r\\n\\/>\"', 1, '2017-03-30 20:35:21', '2017-10-26 15:34:42', 6, '', 204, 'b99b80c1-8f4c-495b-9024-b0260dbc6ae2', '', '', '', '', ''),
(1694, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Export Package Query', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"export_package_query\\\" \\r\\n\\tlabel=\\\"Package Query string\\\" \\r\\n\\tsize=\\\"40\\\" \\r\\n\\tmaxlength=\\\"150\\\" \\r\\n\\tdescription=\\\"Enter query string to use in building the package url [http:\\/\\/www.example.com\\/buy-package&package=JCB_demo]\\\" \\r\\n\\tclass=\\\"text_area\\\"\\r\\n\\tfilter=\\\"STRING\\\"\\r\\n\\tmessage=\\\"Error! Please email address here.\\\" \\r\\n\\thint=\\\"&package=\\\" \\r\\n\\/>\"', 1, '2017-03-30 20:37:08', '2015-08-25 21:15:22', 1, '', 204, '3d52754c-78c3-43c5-8f90-71e4713e113f', '', '', '', '', ''),
(1695, '', '', '', '', '', '', '', '', 64, '', 'VARCHAR', '', '', '', 'Language Tag', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"langtag\\\" \\r\\n\\tlabel=\\\"Language Tag\\\" \\r\\n\\tsize=\\\"10\\\" \\r\\n\\tmaxlength=\\\"10\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tdescription=\\\"Enter the language tag \\u2013 example: en-GB for English (UK). This should be the exact prefix used for the language installed or to be installed.\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\tfilter=\\\"STRING\\\"\\r\\n\\tmessage=\\\"Error! Please add language tag here.\\\" \\r\\n\\thint=\\\"en-GB\\\" \\r\\n\\/>\"', 1, '2017-04-03 09:07:39', '2017-04-03 10:15:08', 2, '', 781, '8fdf3640-8668-4818-be46-36c74f9e103e', '', '', '', '', ''),
(1696, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Joomla Components (multiple)', 'NULL', 1, 6, '\"<field\\n\\ttype=\\\"joomlacomponents\\\"\\n\\tname=\\\"components\\\"\\n\\tlabel=\\\"Components<br \\/><small>source string is used in these components<\\/small>\\\"\\n\\tclass=\\\"list_class span12\\\"\\n\\tlayout=\\\"joomla.form.field.list-fancy-select\\\"\\n\\tmultiple=\\\"true\\\"\\n\\tdefault=\\\"0\\\"\\n\\textends=\\\"list\\\"\\n\\tbutton=\\\"false\\\"\\n\\ttable=\\\"#__###component###_joomla_component\\\"\\n\\tcomponent=\\\"com_###component###\\\"\\n\\tview=\\\"joomla_component\\\"\\n\\tviews=\\\"joomla_components\\\"\\n\\tvalue_field=\\\"system_name\\\"\\n\\tkey_field=\\\"id\\\"\\n\\tprime_php=\\\"1\\\"\\n\\ttype_php_1=\\\"__.o0=base64=Oo.__JGRiID0gSkZhY3Rvcnk6OmdldERCTygpOw0KCQkkcXVlcnkgPSAkZGItPmdldFF1ZXJ5KHRydWUpOw0KCQkkcXVlcnktPnNlbGVjdCgkZGItPnF1b3RlTmFtZShhcnJheSgnYS4jIyNJRCMjIycsJ2EuIyMjVEVYVCMjIycpLGFycmF5KCcjIyNJRCMjIycsJyMjI0NPREVfVEVYVCMjIycpKSk7DQoJCSRxdWVyeS0+ZnJvbSgkZGItPnF1b3RlTmFtZSgnIyMjVEFCTEUjIyMnLCAnYScpKTsNCgkJJHF1ZXJ5LT53aGVyZSgkZGItPnF1b3RlTmFtZSgnYS5wdWJsaXNoZWQnKSAuICcgPj0gMScpOw0KCQkkcXVlcnktPm9yZGVyKCdhLiMjI1RFWFQjIyMgQVNDJyk7DQoJCSRkYi0+c2V0UXVlcnkoKHN0cmluZykkcXVlcnkpOw0KCQkkaXRlbXMgPSAkZGItPmxvYWRPYmplY3RMaXN0KCk7DQoJCSRvcHRpb25zID0gYXJyYXkoKTsNCgkJaWYgKCRpdGVtcykNCgkJew0KCQkJZm9yZWFjaCgkaXRlbXMgYXMgJGl0ZW0pDQoJCQl7DQoJCQkJJG9wdGlvbnNbXSA9IEpIdG1sOjpfKCdzZWxlY3Qub3B0aW9uJywgJGl0ZW0tPiMjI0lEIyMjLCAkaXRlbS0+IyMjQ09ERV9URVhUIyMjKTsNCgkJCX0NCgkJfQ0KDQoJCXJldHVybiAkb3B0aW9uczs=\\\"\\n\\/>\"', 1, '2017-04-03 09:22:26', '2024-03-26 13:24:08', 12, '', 733, '61990265-efe5-49d3-ae08-4bd0e8f3e4ce', '', '', '', '', ''),
(1697, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Lang Placeholder', 'NOT NULL', '', 25, '\"<field \\r\\n\\ttype=\\\"textarea\\\" \\r\\n\\tname=\\\"placeholder\\\" \\r\\n\\tlabel=\\\"Placeholder\\\" \\r\\n\\trows=\\\"3\\\" \\r\\n\\tcols=\\\"5\\\" \\r\\n\\tdescription=\\\"The language placeholder in the code\\\" \\r\\n\\tclass=\\\"text_area span12\\\" \\r\\n\\treadonly=\\\"true\\\" \\r\\n\\tdisabled=\\\"true\\\" \\r\\n\\tfilter=\\\"STRING\\\" \\r\\n\\tmessage=\\\"Error! Please add some text here.\\\" \\r\\n\\thint=\\\"Automatically generated!\\\" \\r\\n\\/>\"', 1, '2017-04-03 09:26:34', '2017-04-03 15:12:07', 3, '', 782, '867475b7-7de1-4f49-a769-8db6c0fd609f', '', '', '', '', ''),
(1698, 1, '', '', '', 'LnRyYW5zbGF0aW9uX3RleHRfYXJlYSB7DQp3aWR0aDogMTAwJTsNCn0=', '', '', '', '', '', 'TEXT', '', '', '', 'Translated String', 'NULL', '', 25, '\"<field\\n\\ttype=\\\"textarea\\\"\\n\\tname=\\\"translation\\\"\\n\\tlabel=\\\"Translated String\\\"\\n\\trows=\\\"4\\\"\\n\\tcols=\\\"20\\\"\\n\\tmessage=\\\"Error! Please add translated string here.\\\"\\n\\tclass=\\\"text_area translation_text_area\\\"\\n\\tfilter=\\\"RAW\\\"\\n\\thint=\\\"Translated String Here\\\"\\n\\/>\"', 1, '2017-04-03 09:29:10', '2024-03-08 06:54:55', 9, '', 783, '2099396f-4a69-40ee-b764-e9b619d74387', '', '', '', '', ''),
(1699, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Language', 'NOT NULL', '', 6, '\"<field\\n\\ttype=\\\"lang\\\"\\n\\tname=\\\"language\\\"\\n\\tlabel=\\\"Language\\\"\\n\\tdescription=\\\"\\\"\\n\\tclass=\\\"list_class\\\"\\n\\tlayout=\\\"joomla.form.field.list-fancy-select\\\"\\n\\tmultiple=\\\"false\\\"\\n\\tdefault=\\\"en-GB\\\"\\n\\trequired=\\\"true\\\"\\n\\textends=\\\"list\\\"\\n\\tbutton=\\\"true\\\"\\n\\ttable=\\\"#__###component###_language\\\"\\n\\tcomponent=\\\"com_###component###\\\"\\n\\tview=\\\"language\\\"\\n\\tviews=\\\"languages\\\"\\n\\tvalue_field=\\\"name\\\"\\n\\tkey_field=\\\"langtag\\\"\\n\\tprime_php=\\\"1\\\"\\n\\ttype_php_1=\\\"__.o0=base64=Oo.__JGRiID0gSkZhY3Rvcnk6OmdldERCTygpOw0KCQkkcXVlcnkgPSAkZGItPmdldFF1ZXJ5KHRydWUpOw0KCQkkcXVlcnktPnNlbGVjdCgkZGItPnF1b3RlTmFtZShhcnJheSgnYS4jIyNJRCMjIycsJ2EuIyMjVEVYVCMjIycpLGFycmF5KCcjIyNJRCMjIycsJyMjI0NPREVfVEVYVCMjIycpKSk7DQoJCSRxdWVyeS0+ZnJvbSgkZGItPnF1b3RlTmFtZSgnIyMjVEFCTEUjIyMnLCAnYScpKTsNCgkJJHF1ZXJ5LT53aGVyZSgkZGItPnF1b3RlTmFtZSgnYS5wdWJsaXNoZWQnKSAuICcgPj0gMScpOw0KCQkkcXVlcnktPm9yZGVyKCdhLiMjI0lEIyMjIEFTQycpOw0KCQkkZGItPnNldFF1ZXJ5KChzdHJpbmcpJHF1ZXJ5KTsNCgkJJGl0ZW1zID0gJGRiLT5sb2FkT2JqZWN0TGlzdCgpOw0KCQkvLyBhZGQgdGhlIG1haW4gbGFuZ3VhZ2UNCgkJJG1haW5fbGFuZyA9IHRyaW0oSkNvbXBvbmVudEhlbHBlcjo6Z2V0UGFyYW1zKCdjb21fIyMjY29tcG9uZW50IyMjJyktPmdldCgnbGFuZ3VhZ2UnLCAnZW4tR0InKSk7DQoJCS8vIG1ha2Ugc3VyZSB0aGUgbWFpbiBsYW5ndWFnZSBpcyBhZGRlZA0KCQkkd2FzQWRkZWQgPSBmYWxzZTsNCgkJJG9wdGlvbnMgPSBhcnJheSgpOw0KCQlpZiAoJGl0ZW1zKQ0KCQl7DQoJCQkkb3B0aW9uc1tdID0gSkh0bWw6Ol8oJ3NlbGVjdC5vcHRpb24nLCAnJywgJ1NlbGVjdCBhbiBvcHRpb24nKTsNCgkJCWZvcmVhY2goJGl0ZW1zIGFzICRpdGVtKQ0KCQkJew0KCQkJCSRpdGVtLT4jIyNJRCMjIyA9IHRyaW0oJGl0ZW0tPiMjI0lEIyMjKTsNCgkJCQkkb3B0aW9uc1tdID0gSkh0bWw6Ol8oJ3NlbGVjdC5vcHRpb24nLCAkaXRlbS0+IyMjSUQjIyMsICRpdGVtLT4jIyNDT0RFX1RFWFQjIyMgLiAnICgnIC4kaXRlbS0+IyMjSUQjIyMuJyknKTsNCgkJCQlpZiAoJG1haW5fbGFuZyA9PT0gJGl0ZW0tPiMjI0lEIyMjKQ0KCQkJCXsNCgkJCQkJJHdhc0FkZGVkID0gdHJ1ZTsNCgkJCQl9DQoJCQl9DQoJCX0NCgkJLy8gbm93IGFkZCBpdCBpZiBub3QgYWxyZWFkeSBhZGRlZCAoaXQgbXVzdCBkZWZhdWx0IHRvICRtYWluX2xhbmcpDQoJCWlmICghJHdhc0FkZGVkKQ0KCQl7DQoJCQlpZiAoJ2VuLUdCJyA9PT0gJG1haW5fbGFuZykNCgkJCXsNCgkJCQkkb3B0aW9uc1tdID0gSkh0bWw6Ol8oJ3NlbGVjdC5vcHRpb24nLCAkbWFpbl9sYW5nLCAnRW5nbGlzaCBHQiAoJyAuICRtYWluX2xhbmcgLiAnKScpOw0KCQkJfQ0KCQkJZWxzZQ0KCQkJew0KCQkJCSRvcHRpb25zW10gPSBKSHRtbDo6Xygnc2VsZWN0Lm9wdGlvbicsICRtYWluX2xhbmcsICdNYWluIExhbmd1YWdlICgnIC4gJG1haW5fbGFuZyAuICcpJyk7DQoJCQl9DQoJCX0NCgkJcmV0dXJuICRvcHRpb25zOw==\\\"\\n\\/>\"', 1, '2017-04-03 10:13:31', '2024-03-26 13:24:01', 23, '', 733, '1c821d8e-c5cf-48ef-8dfc-333e13d044e5', '', '', '', '', ''),
(1700, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Translation (JCB)', 'NULL', '', 35, '\"<field\\n\\ttype=\\\"subform\\\"\\n\\tname=\\\"translation\\\"\\n\\tlabel=\\\"Translation\\\"\\n\\tlayout=\\\"joomla.form.field.subform.repeatable-table\\\"\\n\\tmultiple=\\\"true\\\"\\n\\tfields=\\\"1698,1699\\\"\\n\\tdescription=\\\"The translation strings.\\\"\\n\\tdefault=\\\"\\\"\\n\\ticon=\\\"list\\\"\\n\\/>\"', 1, '2017-04-03 10:18:41', '2024-03-08 06:55:04', 4, '', 784, '36edbdce-b9b7-4b89-b2d9-03f91bb56019', '', '', '', '', ''),
(1701, '', '', '', '', '', '', '', '', '', '', 'MEDIUMTEXT', '', '', '', 'Source String', 'NOT NULL', '', 25, '\"<field\\n\\ttype=\\\"textarea\\\"\\n\\tname=\\\"source\\\"\\n\\tlabel=\\\"Source String\\\"\\n\\trows=\\\"4\\\"\\n\\tcols=\\\"5\\\"\\n\\tmessage=\\\"Error! Please source translated string here.\\\"\\n\\tclass=\\\"text_area span12\\\"\\n\\tfilter=\\\"safehtml\\\"\\n\\thint=\\\"Automatically generated!\\\"\\n\\treadonly=\\\"true\\\"\\n\\tdisabled=\\\"true\\\"\\n\\tescape=\\\"false\\\"\\n\\/>\"', 1, '2017-04-03 12:56:53', '2019-01-25 21:30:55', 9, '', 783, 'c2f5d193-ef76-422b-aae5-421cd0a4b22b', '', '', '', '', ''),
(1702, '', '', '', '', '', '', '', '', 64, '', 'CHAR', '', '', '', 'Percentage Language Add', 'NOT NULL', '', 15, '\"<field\\n\\ttype=\\\"number\\\"\\n\\tname=\\\"percentagelanguageadd\\\"\\n\\tlabel=\\\"Add Language if %? ready.\\\"\\n\\tdefault=\\\"50\\\"\\n\\tdescription=\\\"Select percentage any language should be translated before the system should add the language to the component during compilation.\\\"\\n\\tclass=\\\"text_area\\\"\\n\\trequired=\\\"true\\\"\\n\\tmin=\\\"10\\\"\\n\\tmax=\\\"100\\\"\\n\\tstep=\\\"10\\\"\\n\\/>\"', 1, '2017-04-06 08:24:14', '2020-04-02 21:26:10', 3, '', 785, 'e26786ac-e065-4819-b93f-93602d810069', '', '', '', '', ''),
(1703, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Types (Multiple - Access)', 'NOT NULL', 6, 6, '\"<field\\n\\ttype=\\\"typesonaccess\\\"\\n\\tname=\\\"type\\\"\\n\\tlabel=\\\"Type\\\"\\n\\tdescription=\\\"Select the type\\/s\\\"\\n\\tclass=\\\"list_class\\\"\\n\\tmultiple=\\\"true\\\"\\n\\trequired=\\\"false\\\"\\n\\textends=\\\"list\\\"\\n\\tbutton=\\\"true\\\"\\n\\ttable=\\\"#__###component###_type\\\"\\n\\tcomponent=\\\"com_###component###\\\"\\n\\tview=\\\"type\\\"\\n\\tviews=\\\"types\\\"\\n\\tvalue_field=\\\"name\\\"\\n\\tkey_field=\\\"id\\\"\\n\\tprime_php=\\\"1\\\"\\n\\ttype_php_1=\\\"__.o0=base64=Oo.__Ly8gR2V0IHRoZSB1c2VyIG9iamVjdC4NCgkJJHVzZXIgPSBKRmFjdG9yeTo6Z2V0VXNlcigpOw0KCQkvLyBHZXQgdGhlIGRhdGFic2Ugb2JqZWN0Lg0KCQkkZGIgPSBKRmFjdG9yeTo6Z2V0REJPKCk7DQoJCSRxdWVyeSA9ICRkYi0+Z2V0UXVlcnkodHJ1ZSk7DQoJCSRxdWVyeS0+c2VsZWN0KCRkYi0+cXVvdGVOYW1lKGFycmF5KCdhLiMjI0lEIyMjJywnYS4jIyNURVhUIyMjJyksYXJyYXkoJyMjI0lEIyMjJywnIyMjQ09ERV9URVhUIyMjJykpKTsNCgkJJHF1ZXJ5LT5mcm9tKCRkYi0+cXVvdGVOYW1lKCcjIyNUQUJMRSMjIycsICdhJykpOw0KCQkkcXVlcnktPndoZXJlKCRkYi0+cXVvdGVOYW1lKCdhLnB1Ymxpc2hlZCcpIC4gJyA+PSAxJyk7DQoJCSRxdWVyeS0+b3JkZXIoJ2EuIyMjVEVYVCMjIyBBU0MnKTsNCgkJLy8gSW1wbGVtZW50IFZpZXcgTGV2ZWwgQWNjZXNzIChpZiBzZXQgaW4gdGFibGUpDQoJCWlmICghJHVzZXItPmF1dGhvcmlzZSgnY29yZS5vcHRpb25zJywgJ1tbW2NvbV9jb21wb25lbnRdXV0nKSkNCgkJew0KCQkJJGNvbHVtbnMgPSAkZGItPmdldFRhYmxlQ29sdW1ucygnIyMjVEFCTEUjIyMnKTsNCgkJCWlmKGlzc2V0KCRjb2x1bW5zWydhY2Nlc3MnXSkpDQoJCQl7DQoJCQkJJGdyb3VwcyA9IGltcGxvZGUoJywnLCAkdXNlci0+Z2V0QXV0aG9yaXNlZFZpZXdMZXZlbHMoKSk7DQoJCQkJJHF1ZXJ5LT53aGVyZSgnYS5hY2Nlc3MgSU4gKCcgLiAkZ3JvdXBzIC4gJyknKTsNCgkJCX0NCgkJfQ0KCQkkZGItPnNldFF1ZXJ5KChzdHJpbmcpJHF1ZXJ5KTsNCgkJJGl0ZW1zID0gJGRiLT5sb2FkT2JqZWN0TGlzdCgpOw0KCQkkb3B0aW9ucyA9IGFycmF5KCk7DQoJCWlmICgkaXRlbXMpDQoJCXsNCgkJCWZvcmVhY2goJGl0ZW1zIGFzICRpdGVtKQ0KCQkJew0KCQkJCSRvcHRpb25zW10gPSBKSHRtbDo6Xygnc2VsZWN0Lm9wdGlvbicsICRpdGVtLT4jIyNJRCMjIywgJGl0ZW0tPiMjI0NPREVfVEVYVCMjIyk7DQoJCQl9DQoJCX0NCgkJcmV0dXJuICRvcHRpb25zOw==\\\"\\n\\/>\"', 1, '2017-04-07 06:10:10', '2021-02-24 15:23:08', 18, '', 384, '32334253-e94c-408f-ae6d-055068df6c87', 'aWYgKCFlbXB0eShbW1tmaWVsZF1dXSkpDQp7DQoJLy8gQ29udmVydCB0aGUgdHlwZSBmaWVsZCB0byBhbiBhcnJheS4NCglbW1tmaWVsZF1dXSA9IGpzb25fZGVjb2RlKFtbW2ZpZWxkXV1dLCB0cnVlKTsNCn0=', 'Ly8gU2V0IHRoZSB0eXBlIGl0ZW1zIHRvIGRhdGEuDQppZiAoaXNzZXQoW1tbZmllbGRdXV0pICYmIGlzX2FycmF5KFtbW2ZpZWxkXV1dKSkNCnsNCglbW1tmaWVsZF1dXSA9IGpzb25fZW5jb2RlKFtbW2ZpZWxkXV1dKTsNCn0NCmVsc2VpZiAoIWlzc2V0KFtbW2ZpZWxkXV1dKSkNCnsNCgkvLyBTZXQgdGhlIGVtcHR5IHR5cGUgdG8gZGF0YQ0KCVtbW2ZpZWxkXV1dID0gJyc7DQp9', '', '', ''),
(1704, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'Crop Doc Images', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"crop_doc\\\" \\r\\n\\tlabel=\\\"Crop All Doc Images\\\" \\r\\n\\tdescription=\\\"Set if all doc images that are added should be cropped.\\\" \\r\\n\\tclass=\\\"btn-group btn-group-yesno\\\" \\r\\n\\toption=\\\"1|Yes,0|No\\\" \\r\\n\\tdefault=\\\"0\\\"\\r\\n\\/>\"', 1, '2017-04-07 10:42:02', '2017-04-07 19:59:52', 7, '', 765, 'cb2e63b4-d096-4e56-8ab6-182854aef58a', '', '', '', '', ''),
(1705, '', '', '', '', '', '', '', '', 11, '', 'INT', '', '', '', 'Doc Image Height (in pixels)', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"doc_height\\\"\\n\\tlabel=\\\"Doc Image Height (in pixels)\\\"\\n\\tsize=\\\"50\\\"\\n\\tmaxlength=\\\"150\\\"\\n\\tclass=\\\"text_area\\\"\\n\\tfilter=\\\"INT\\\"\\n\\thint=\\\"Only Numbers\\\"\\n\\tshowon=\\\"crop_doc:1\\\"\\n\\tonchange=\\\"if(!jQuery(this).val().match(\\/^\\\\d+$\\/)){jQuery(this).val(\'\')};\\\"\\n\\/>\"', 1, '2017-04-07 10:43:07', '2019-09-30 10:46:38', 3, '', 7, '1d047fee-91a5-4c38-8a7e-38e2825dec67', '', '', '', '', ''),
(1706, '', '', '', '', '', '', '', '', 11, '', 'INT', '', '', '', 'Doc Image Width (in pixels)', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"doc_width\\\" \\r\\n\\tlabel=\\\"Doc Image Width (in pixels)\\\" \\r\\n\\tsize=\\\"50\\\" \\r\\n\\tmaxlength=\\\"150\\\"\\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\tfilter=\\\"INT\\\" \\r\\n\\thint=\\\"Only Numbers\\\"\\r\\n\\tonchange=\\\"if(!jQuery(this).val().match(\\/^\\\\d+$\\/)){jQuery(this).val(\'\')};\\\" \\r\\n\\tshowon=\\\"crop_doc:1\\\"\\r\\n\\/>\"', 1, '2017-04-07 10:43:59', '2017-04-07 10:44:09', 2, '', 7, '8cc5ea2f-e1f9-46a4-b9e2-a22874a58f4e', '', '', '', '', ''),
(1707, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'Downloads (request_catid)', 'NOT NULL', '', 2, '\"<field \\r\\n\\ttype=\\\"category\\\" \\r\\n\\tname=\\\"downloads_request_catid\\\" \\r\\n\\tlabel=\\\"Category\\\" \\r\\n\\textension=\\\"com_###component###.questions_and_answers\\\"\\r\\n\\tdefault=\\\"\\\" \\r\\n\\tdescription=\\\"select one of the following categories\\\" \\r\\n\\tclass=\\\"inputbox\\\" \\r\\n\\/>\"', 1, '2017-04-12 11:53:00', '2017-04-12 11:53:21', 2, '', 147, '41e3a94b-71bd-4728-ab9c-f0f3de2afe17', '', '', '', '', ''),
(1708, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'REUSE!!! (request_catid)', 'NOT NULL', 1, 2, '\"<field \\r\\n\\ttype=\\\"category\\\" \\r\\n\\tname=\\\"documents_request_catid\\\" \\r\\n\\tlabel=\\\"Category\\\" \\r\\n\\textension=\\\"com_###component###.documents\\\"\\r\\n\\tdescription=\\\"Select any of the following categories\\\" \\r\\n\\tclass=\\\"inputbox\\\"\\r\\n\\/>\"', 1, '2017-04-21 08:56:56', '2017-04-21 09:03:34', 5, '', 147, '566ad15d-a067-4d96-bb31-4deb5438c53a', '', '', '', '', ''),
(1709, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Document category (request_catid)', 'NOT NULL', 1, 2, '\"<field\\n\\ttype=\\\"category\\\"\\n\\tname=\\\"category_request_catid\\\"\\n\\tlabel=\\\"Category\\\"\\n\\textension=\\\"com_###component###.document\\\"\\n\\tdescription=\\\"Select any of the following categories\\\"\\n\\tclass=\\\"inputbox\\\"\\n\\/>\"', 1, '2017-04-21 09:00:01', '2021-02-24 20:33:09', 4, '', 147, '224b5bba-7d4d-4cd1-a86b-edaf9c7b84d1', '', '', '', '', ''),
(1710, '', '', '', '', '', '', '', '', '', '', 'CHAR', '', '', '', 'Link Options', 'NOT NULL', '', 11, '\"<field \\r\\n\\ttype=\\\"list\\\" \\r\\n\\tname=\\\"link_option\\\" \\r\\n\\tlabel=\\\"Link Options\\\" \\r\\n\\tdescription=\\\"How should the download links be build.\\\" \\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\tmultiple=\\\"true\\\" \\r\\n\\tfilter=\\\"ARRAY\\\" \\r\\n\\toption=\\\"1|Encrypted,2|Session Based\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\/>\"', 1, '2017-05-08 12:58:22', '2017-05-08 18:46:26', 3, '', 786, '3781c262-c6f0-4030-8440-ae0e4524aef9', '', '', '', '', ''),
(1711, '', '', '', '', '', '', '', '', 255, '', 'TEXT', '', '', '', 'Hidden File Path', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"hiddenfilepath\\\" \\r\\n\\tlabel=\\\"Hidden File Path\\\" \\r\\n\\tdescription=\\\"Path where we should store hidden files.\\\"\\r\\n\\tsize=\\\"100\\\" \\r\\n\\tmaxlength=\\\"250\\\"\\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\tfilter=\\\"PATH\\\"\\r\\n\\tmessage=\\\"Error! Please add target path.\\\" \\r\\n\\thint=\\\"\\/home\\/username\\/documents\\/\\\" \\r\\n\\/>\"', 1, '2017-05-31 11:32:28', '2017-05-31 14:23:33', 3, '', 303, 'a6a8a42d-c82f-446e-ab88-9495da4eb64b', '', '', '', '', ''),
(1712, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Date (custom)', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"date\\\" \\r\\n\\tlabel=\\\"Date\\\" \\r\\n\\tsize=\\\"20\\\" \\r\\n\\tmaxlength=\\\"50\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tdescription=\\\"\\\" \\r\\n\\tclass=\\\"text_area dawidth\\\" \\r\\n\\treadonly=\\\"false\\\" \\r\\n\\tdisabled=\\\"false\\\" \\r\\n\\trequired=\\\"false\\\" \\r\\n\\tfilter=\\\"STRING\\\" \\r\\n\\tvalidate=\\\"\\\" \\r\\n\\tfield=\\\"\\\" \\r\\n\\tmessage=\\\"Error! Please add date here.\\\" \\r\\n\\thint=\\\"yyyy-mm-dd hh:mm\\\" \\r\\n\\/>\"', 1, '2017-06-17 09:11:50', '2016-04-19 21:39:49', 1, '', 167, '36e7b485-6d8d-4a9c-af5d-cb6a2c0b630a', '', '', '', '', ''),
(1713, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', 2, '', '', 'IP', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"ip\\\" \\r\\n\\tlabel=\\\"IP\\\" \\r\\n\\tsize=\\\"20\\\" \\r\\n\\tmaxlength=\\\"150\\\"\\r\\n\\tdescription=\\\"\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\trequired=\\\"true\\\"\\r\\n\\tfilter=\\\"STRING\\\" \\r\\n\\tmessage=\\\"Error! Please add IP here.\\\" \\r\\n\\/>\"', 1, '2017-06-17 09:13:16', '2017-01-14 14:43:52', 1, '', 7, '95b8f006-435d-4233-82fb-7421b6619685', '', '', '', '', ''),
(1714, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'IP Watch', 'NOT NULL', '', 35, '\"<field \\r\\n\\ttype=\\\"subform\\\" \\r\\n\\tname=\\\"watcher\\\" \\r\\n\\tmultiple=\\\"true\\\"\\r\\n\\tlabel=\\\"IP Watch\\\" \\r\\n\\tlayout=\\\"joomla.form.field.subform.repeatable-table\\\" \\r\\n\\tfields=\\\"1713,1712\\\" \\r\\n\\tdescription=\\\"\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\ticon=\\\"list\\\" \\r\\n\\tmaximum=\\\"50\\\" \\r\\n\\tfilter=\\\"\\\" \\r\\n\\tshowon=\\\"\\\" \\r\\n\\/>\"', 1, '2017-06-17 09:42:28', '2017-06-17 10:04:17', 2, '', 787, 'f43e7af1-fc53-49c4-8558-44842aa29abd', '', '', '', '', ''),
(1715, '', '', 1, '', '', '', '', '', '', '', '', '', 'W0NVU1RPTUNPREU9dWlraXRGaWxlVXBsb2FkZXIrbWVkaWEsbWVkaWEsbWFpbl0=', '', 'Main Media Uploader (uikit)', 'NOT NULL', '', 14, '\"<field\\n\\ttype=\\\"note\\\"\\n\\tname=\\\"main_media_uploader\\\"\\n\\tlabel=\\\"Media\\\"\\n\\tdescription=\\\"[CUSTOMCODE=uikitFileUploaderHTML+media,media,main]\\\"\\n\\/>\"', 1, '2017-06-29 01:04:50', '2018-09-18 22:57:23', 3, '', 110, 'ad8c4562-4d39-488b-b241-3d3cc34f6646', '', '', '', '', ''),
(1716, '', '', '', '', '', '', '', '', 255, '', 'TEXT', '', '', '', 'Main Media Key', 'NOT NULL', 3, 9, '\"<field \\r\\n\\ttype=\\\"hidden\\\" \\r\\n\\tname=\\\"main_media\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\/>\"', 1, '2017-06-29 01:09:25', '2017-06-29 01:11:04', 2, '', 729, '2fd46d9e-7621-45c0-a5d6-f19a731623b1', '', '', '', '', ''),
(1717, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', 2, '', '', 'Google ID', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"google_id\\\" \\r\\n\\tlabel=\\\"Google+ User ID\\\" \\r\\n\\tsize=\\\"40\\\" \\r\\n\\tmaxlength=\\\"150\\\"\\r\\n\\tdescription=\\\"Set your Google+ user id, example: user id = 105317722025504553587 from https:\\/\\/plus.google.com\\/u\\/0\\/105317722025504553587\\/posts\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\tfilter=\\\"STRING\\\" \\r\\n\\tmessage=\\\"Error! Please add some text here.\\\" \\r\\n\\thint=\\\"105317722025504553587\\\" \\r\\n\\/>\"', 1, '2017-07-02 13:27:10', '0000-00-00 00:00:00', 1, '', 788, '23fd7623-5de4-4b9e-9b07-42032da27295', '', '', '', '', ''),
(1718, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Profile GP - Set Post Background Color', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"profile_set_background_color\\\" \\r\\n\\tlabel=\\\"Set Post Background Color\\\" \\r\\n\\tdescription=\\\"Would you like to set a background color to the posts.\\\" \\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-07-03 12:35:31', '2017-07-03 12:44:25', 3, '', 635, 'c5242038-9b6b-4921-b0e4-58eac2e2cd06', '', '', '', '', ''),
(1719, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Profile GP - Set Post Corner Radius', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"profile_set_corner_radius\\\" \\r\\n\\tlabel=\\\"Set Post Corner Radius\\\" \\r\\n\\tdescription=\\\"Would you like to set the radius of each post corners.\\\" \\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-07-03 12:37:26', '2017-07-03 22:00:19', 6, '', 635, '354af2f6-0168-4376-a866-f4dd94135995', '', '', '', '', ''),
(1720, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Profile GP - Set Font Colors', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"profile_set_font_color\\\" \\r\\n\\tlabel=\\\"Set Font Colors\\\" \\r\\n\\tdescription=\\\"Would you like to set the font color.\\\" \\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-07-03 12:39:23', '2017-07-03 22:06:59', 5, '', 635, '8e5cc848-a1d5-45d8-94d1-60a8b1d3e3e4', '', '', '', '', ''),
(1721, '', '', '', '', '', '', '', '', 11, '', 'VARCHAR', '', '', '', 'Profile GP - Post Background Color', 'NOT NULL', '', 5, '\"<field \\r\\n\\ttype=\\\"color\\\" \\r\\n\\tname=\\\"profile_background_color\\\" \\r\\n\\tdefault=\\\"#F8F8F8\\\" \\r\\n\\tlabel=\\\"Background\\\" \\r\\n\\tdescription=\\\"Select the background color here.\\\" \\r\\n\\tshowon=\\\"profile_set_background_color:1\\\" \\r\\n\\tdisplay=\\\"config\\\"\\r\\n\\/>\"', 1, '2017-07-03 12:46:45', '2017-07-06 11:48:12', 8, '', 635, '976c5e00-c602-46eb-a01f-868dc6fc41cd', '', '', '', '', ''),
(1722, '', '', '', '', '', '', '', '', 7, '', 'INT', 2, '', '', 'Profile GP - Post Corner Radius', 'NOT NULL', '', 10, '\"<field \\r\\n\\ttype=\\\"integer\\\" \\r\\n\\tname=\\\"profile_corner_radius\\\" \\r\\n\\tlabel=\\\"Profile Corner Radius\\\" \\r\\n\\tdefault=\\\"12\\\" \\r\\n\\tdescription=\\\"Set the radius of the profile corners\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\trequired=\\\"\\\" \\r\\n\\tfirst=\\\"6\\\" \\r\\n\\tlast=\\\"30\\\" \\r\\n\\tstep=\\\"6\\\" \\r\\n\\tshowon=\\\"profile_set_corner_radius:1\\\" \\r\\n\\tdisplay=\\\"config\\\"\\r\\n\\/>\"', 1, '2017-07-03 21:59:41', '2017-07-06 11:48:08', 3, '', 635, '78c3df94-0b76-48a2-b370-e6f82efe29d7', '', '', '', '', ''),
(1723, '', '', '', '', '', '', '', '', 11, '', 'VARCHAR', '', '', '', 'Profile GP - Post Font Color', 'NOT NULL', '', 5, '\"<field \\r\\n\\ttype=\\\"color\\\" \\r\\n\\tname=\\\"profile_font_color\\\" \\r\\n\\tdefault=\\\"#404040\\\" \\r\\n\\tlabel=\\\"Font Color\\\" \\r\\n\\tdescription=\\\"Select the font color here.\\\" \\r\\n\\tshowon=\\\"profile_set_font_color:1\\\" \\r\\n\\tdisplay=\\\"config\\\"\\r\\n\\/>\"', 1, '2017-07-03 22:10:01', '2017-07-06 11:48:06', 2, '', 635, '6f940720-22d7-42d2-80ea-25afe7dd0445', '', '', '', '', ''),
(1724, '', '', '', '', '', '', '', '', 11, '', 'VARCHAR', '', '', '', 'Profile GP - Post Link Color', 'NOT NULL', '', 5, '\"<field \\r\\n\\ttype=\\\"color\\\" \\r\\n\\tname=\\\"profile_link_color\\\" \\r\\n\\tdefault=\\\"#999999\\\" \\r\\n\\tlabel=\\\"Link Color\\\" \\r\\n\\tdescription=\\\"Select the link color here.\\\" \\r\\n\\tshowon=\\\"profile_set_font_color:1\\\" \\r\\n\\tdisplay=\\\"config\\\"\\r\\n\\/>\"', 1, '2017-07-03 22:11:34', '2017-07-06 11:48:04', 2, '', 635, '27ef764d-f6f7-43e0-9c5a-2e8db577eff6', '', '', '', '', ''),
(1725, '', '', '', '', '', '', '', '', 11, '', 'VARCHAR', '', '', '', 'Profile GP - Post Link Hover Color', 'NOT NULL', '', 5, '\"<field \\r\\n\\ttype=\\\"color\\\" \\r\\n\\tname=\\\"profile_link_hover_color\\\" \\r\\n\\tdefault=\\\"#999999\\\" \\r\\n\\tlabel=\\\"Link Hover Color\\\" \\r\\n\\tdescription=\\\"Select the link hover color here.\\\" \\r\\n\\tshowon=\\\"profile_set_font_color:1\\\" \\r\\n\\tdisplay=\\\"config\\\"\\r\\n\\/>\"', 1, '2017-07-03 22:14:00', '2017-07-06 11:48:01', 2, '', 635, 'c1851b89-6eac-48be-a93e-448a1862f6da', '', '', '', '', ''),
(1726, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'Profile GP - Profile (request_id)', 'NOT NULL', '', 6, '\"<field\\n\\ttype=\\\"profile\\\"\\n\\tname=\\\"profile_request_id\\\"\\n\\tlabel=\\\"Profile\\\"\\n\\tdescription=\\\"Select a profile.\\\"\\n\\tclass=\\\"list_class\\\"\\n\\tmultiple=\\\"false\\\"\\n\\tdefault=\\\"0\\\"\\n\\trequired=\\\"true\\\"\\n\\textends=\\\"list\\\"\\n\\tbutton=\\\"false\\\"\\n\\ttable=\\\"#__###component###_form\\\"\\n\\tcomponent=\\\"com_###component###\\\"\\n\\tview=\\\"form\\\"\\n\\tviews=\\\"forms\\\"\\n\\tvalue_field=\\\"name\\\"\\n\\tkey_field=\\\"id\\\"\\n\\ttype_php_1=\\\"__.o0=base64=Oo.__JGRiID0gSkZhY3Rvcnk6OmdldERCTygpOw0KCQkkcXVlcnkgPSAkZGItPmdldFF1ZXJ5KHRydWUpOw0KCQkkcXVlcnktPnNlbGVjdCgkZGItPnF1b3RlTmFtZShhcnJheSgnYS4jIyNJRCMjIycsJ2EuIyMjVEVYVCMjIycpLGFycmF5KCcjIyNJRCMjIycsJyMjI0NPREVfVEVYVCMjIycpKSk7DQoJCSRxdWVyeS0+ZnJvbSgkZGItPnF1b3RlTmFtZSgnIyMjVEFCTEUjIyMnLCAnYScpKTsNCgkJJHF1ZXJ5LT53aGVyZSgkZGItPnF1b3RlTmFtZSgnYS5wdWJsaXNoZWQnKSAuICcgPSAxJyk7DQoJCSRxdWVyeS0+b3JkZXIoJ2EuIyMjVEVYVCMjIyBBU0MnKTsNCgkJJGRiLT5zZXRRdWVyeSgoc3RyaW5nKSRxdWVyeSk7DQoJCSRpdGVtcyA9ICRkYi0+bG9hZE9iamVjdExpc3QoKTsNCgkJJG9wdGlvbnMgPSBhcnJheSgpOw0KCQlpZiAoJGl0ZW1zKQ0KCQl7DQoJCQkkb3B0aW9uc1tdID0gSkh0bWw6Ol8oJ3NlbGVjdC5vcHRpb24nLCAnJywgJ1NlbGVjdCBhIHByb2ZpbGUnKTsNCgkJCWZvcmVhY2goJGl0ZW1zIGFzICRpdGVtKQ0KCQkJew0KCQkJCSRvcHRpb25zW10gPSBKSHRtbDo6Xygnc2VsZWN0Lm9wdGlvbicsICRpdGVtLT4jIyNJRCMjIywgJGl0ZW0tPiMjI0NPREVfVEVYVCMjIyk7DQoJCQl9DQoJCX0NCg0KCQlyZXR1cm4gJG9wdGlvbnM7\\\"\\n\\/>\"', 1, '2017-07-04 01:20:31', '2019-08-27 13:48:38', 4, '', 626, 'cac7b580-4a74-4a72-ae7f-41c23b73e2ad', '', '', '', '', ''),
(1727, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Profile GP - Google Plus API Key', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"api_key\\\" \\r\\n\\tlabel=\\\"Google Plus API Key\\\" \\r\\n\\tsize=\\\"60\\\" \\r\\n\\tmaxlength=\\\"150\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tdescription=\\\"\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\tfilter=\\\"STRING\\\" \\r\\n\\tmessage=\\\"Error! Please add API Key here.\\\" \\r\\n\\thint=\\\"YOUR_API_KEY\\\" \\r\\n\\trequired=\\\"true\\\"\\r\\n\\tdisplay=\\\"config\\\"\\r\\n\\/>\"', 1, '2017-07-04 15:28:03', '2017-07-06 03:33:04', 8, '', 673, '0e0ea19f-8ca4-4328-aa1a-c72cba854f76', '', '', '', '', ''),
(1728, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', 2, '', '', 'Bash Access Key', 'NOT NULL', 3, 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"hostkey\\\" \\r\\n\\tlabel=\\\"BASH Access Key <br \\/><small>(encrypted field)<\\/small>\\\" \\r\\n\\tsize=\\\"128\\\" \\r\\n\\tmaxlength=\\\"128\\\"\\r\\n\\tdescription=\\\"The given host access key auto generated.\\\" \\r\\n\\tclass=\\\"text_area span12\\\"\\r\\n\\tfilter=\\\"STRING\\\" \\r\\n\\treadonly=\\\"true\\\"\\r\\n\\thint=\\\"Auto Generated Access Key\\\" \\r\\n\\/>\"', 1, '2017-07-04 20:48:19', '2017-07-20 15:20:01', 8, '', 789, '7fc8fcd0-f906-4d14-9b4c-260606db5996', '', '', '', '', ''),
(1729, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', 2, '', '', 'Trust Key', 'NOT NULL', 3, 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"trustkey\\\" \\r\\n\\tlabel=\\\"Trust Key <br \\/><small>(encrypted field)<\\/small>\\\" \\r\\n\\tsize=\\\"128\\\" \\r\\n\\tmaxlength=\\\"128\\\"\\r\\n\\tdescription=\\\"Set the VDM access key used during install of dynamic IP script.\\\" \\r\\n\\tclass=\\\"text_area\\\"\\r\\n\\tfilter=\\\"STRING\\\" \\r\\n\\thint=\\\"VDM access key\\\" \\r\\n\\/>\"', 1, '2017-07-04 20:51:00', '2018-03-11 02:04:15', 19, '', 789, '47d03232-f6ff-4654-bfd3-ad020094a019', '', '', '', '', ''),
(1730, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Profile GP - Google Plus API Note', 'NOT NULL', '', 14, '\"<field \\r\\n\\ttype=\\\"note\\\" \\r\\n\\tname=\\\"api_key_note\\\" \\r\\n\\tlabel=\\\"Google API\\\" \\r\\n\\tdescription=\\\"Get an API key at <a href=\'http:\\/\\/code.google.com\\/apis\\/console\' target=\'_blank\'>http:\\/\\/code.google.com\\/apis\\/console<\\/a> for instructions <a href=\'http:\\/\\/youtu.be\\/-wPKcfEadAc\' target=\'_blank\'>http:\\/\\/youtu.be\\/-wPKcfEadAc<\\/a>\\\" \\r\\n\\theading=\\\"h4\\\" \\r\\n\\tdisplay=\\\"config\\\"\\r\\n\\/>\"', 1, '2017-07-06 01:17:27', '2017-07-06 11:23:21', 4, '', 673, '3e011a15-d88e-490d-965f-73760d3c34af', '', '', '', '', ''),
(1731, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Profile GP - Set API Key', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"api_key_override\\\" \\r\\n\\tlabel=\\\"Active API Key\\\" \\r\\n\\tdescription=\\\"Which API Key would you like to use.\\\" \\r\\n\\tclass=\\\"btn-group btn-group-yesno\\\" \\r\\n\\toption=\\\"|Use Global,1|Override,2|Profile\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tdisplay=\\\"menu\\\"\\r\\n\\/>\"', 1, '2017-07-06 11:12:45', '2017-08-13 12:43:24', 4, '', 635, 'de151c29-5b36-43e2-b15c-f616222dc748', '', '', '', '', ''),
(1732, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Profile GP - Google Plus API Key (override)', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"api_key\\\" \\r\\n\\tlabel=\\\"Google Plus API Key\\\"\\r\\n\\tsize=\\\"60\\\" \\r\\n\\tmaxlength=\\\"150\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tdescription=\\\"\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\tfilter=\\\"STRING\\\" \\r\\n\\tmessage=\\\"Error! Please add API Key here.\\\" \\r\\n\\thint=\\\"YOUR_API_KEY\\\" \\r\\n\\tdisplay=\\\"menu\\\"\\r\\n\\tshowon=\\\"api_key_override:1\\\"\\r\\n\\/>\"', 1, '2017-07-06 11:14:25', '2017-07-06 11:22:32', 6, '', 673, 'ed7d5202-ecaa-4ba1-87ac-e9818130b6a3', '', '', '', '', ''),
(1733, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Profile GP - Google Plus API Note (removed)', 'NOT NULL', '', 14, '\"<field \\r\\n\\ttype=\\\"note\\\" \\r\\n\\tname=\\\"api_key_note\\\" \\r\\n\\tdisplay=\\\"menu\\\"\\r\\n\\tshowon=\\\"api_key_override:1,2\\\"\\r\\n\\/>\"', -2, '2017-07-06 11:23:34', '2017-07-06 11:29:44', 4, '', '', 'f6d05765-5105-4c5a-a360-213feab4610c', '', '', '', '', ''),
(1734, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Profile GP - Google Plus API Note (menu)', 'NOT NULL', '', 14, '\"<field \\r\\n\\ttype=\\\"note\\\" \\r\\n\\tname=\\\"api_key_note\\\" \\r\\n\\tlabel=\\\"Google API\\\" \\r\\n\\tdescription=\\\"Get an API key at <a href=\'http:\\/\\/code.google.com\\/apis\\/console\' target=\'_blank\'>http:\\/\\/code.google.com\\/apis\\/console<\\/a> for instructions <a href=\'http:\\/\\/youtu.be\\/-wPKcfEadAc\' target=\'_blank\'>http:\\/\\/youtu.be\\/-wPKcfEadAc<\\/a>\\\" \\r\\n\\theading=\\\"h4\\\" \\r\\n\\tdisplay=\\\"menu\\\"\\r\\n\\/>\"', 1, '2017-07-06 11:25:32', '2017-07-06 11:29:28', 3, '', 673, '46cd9b16-4f13-4b7a-ae2e-e07807d768ee', '', '', '', '', ''),
(1735, '', '', '', '', '', '', '', '', 11, '', 'VARCHAR', '', '', '', 'Profile GP - Post Background Color (menu)', 'NOT NULL', '', 5, '\"<field \\r\\n\\ttype=\\\"color\\\" \\r\\n\\tname=\\\"profile_background_color\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tlabel=\\\"Background\\\" \\r\\n\\tdescription=\\\"Select the background color here.\\\" \\r\\n\\tshowon=\\\"profile_set_background_color:1\\\" \\r\\n\\tdisplay=\\\"menu\\\"\\r\\n\\/>\"', 1, '2017-07-06 11:48:45', '2017-07-06 11:48:12', 1, '', 635, 'bf394934-d01c-41b7-884c-8ada0c30a418', '', '', '', '', ''),
(1736, '', '', '', '', '', '', '', '', 7, '', 'INT', 2, '', '', 'Profile GP - Post Corner Radius (menu)', 'NOT NULL', '', 11, '\"<field \\r\\n\\ttype=\\\"list\\\" \\r\\n\\tname=\\\"profile_corner_radius\\\" \\r\\n\\tlabel=\\\"Profile Corner Radius\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tdescription=\\\"Set the radius of the profile corners\\\" \\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\tmultiple=\\\"false\\\" \\r\\n\\tfilter=\\\"INT\\\" \\r\\n\\toption=\\\"6,12,18,24,30\\\" \\r\\n\\tshowon=\\\"profile_set_corner_radius:1\\\" \\r\\n\\tdisplay=\\\"menu\\\"\\r\\n\\/>\"', 1, '2017-07-06 11:48:59', '2017-07-06 12:03:11', 4, '', 635, 'd8b1e757-f797-45a3-8611-9e65f78567f0', '', '', '', '', ''),
(1737, '', '', '', '', '', '', '', '', 11, '', 'VARCHAR', '', '', '', 'Profile GP - Post Font Color (menu)', 'NOT NULL', '', 5, '\"<field \\r\\n\\ttype=\\\"color\\\" \\r\\n\\tname=\\\"profile_font_color\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tlabel=\\\"Font Color\\\" \\r\\n\\tdescription=\\\"Select the font color here.\\\" \\r\\n\\tshowon=\\\"profile_set_font_color:1\\\" \\r\\n\\tdisplay=\\\"menu\\\"\\r\\n\\/>\"', 1, '2017-07-06 11:49:09', '2017-07-06 11:48:06', 1, '', 635, 'a026826b-5061-4980-bb10-a2d56ebb8ce2', '', '', '', '', ''),
(1738, '', '', '', '', '', '', '', '', 7, '', 'INT', 2, '', '', 'Profile GP - Post Corner Radius (menu)', 'NOT NULL', '', 10, '\"<field \\r\\n\\ttype=\\\"integer\\\" \\r\\n\\tname=\\\"profile_corner_radius\\\" \\r\\n\\tlabel=\\\"Profile Corner Radius\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tdescription=\\\"Set the radius of the profile corners\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\trequired=\\\"\\\" \\r\\n\\tfirst=\\\"6\\\" \\r\\n\\tlast=\\\"30\\\" \\r\\n\\tstep=\\\"6\\\" \\r\\n\\tshowon=\\\"profile_set_corner_radius:1\\\" \\r\\n\\tdisplay=\\\"menu\\\"\\r\\n\\/>\"', -2, '2017-07-06 11:49:16', '2017-07-06 11:48:08', 1, '', 635, '8b359d0b-1df1-4a8c-b850-060751ec6c5b', '', '', '', '', ''),
(1739, '', '', '', '', '', '', '', '', 11, '', 'VARCHAR', '', '', '', 'Profile GP - Post Link Color (menu)', 'NOT NULL', '', 5, '\"<field \\r\\n\\ttype=\\\"color\\\" \\r\\n\\tname=\\\"profile_link_color\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tlabel=\\\"Link Color\\\" \\r\\n\\tdescription=\\\"Select the link color here.\\\" \\r\\n\\tshowon=\\\"profile_set_font_color:1\\\" \\r\\n\\tdisplay=\\\"menu\\\"\\r\\n\\/>\"', 1, '2017-07-06 11:49:19', '2017-07-06 11:50:24', 2, '', 635, '5b949b40-aba6-486c-9194-2e83db6bbdab', '', '', '', '', ''),
(1740, '', '', '', '', '', '', '', '', 11, '', 'VARCHAR', '', '', '', 'Profile GP - Post Link Hover Color (menu)', 'NOT NULL', '', 5, '\"<field \\r\\n\\ttype=\\\"color\\\" \\r\\n\\tname=\\\"profile_link_hover_color\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tlabel=\\\"Link Hover Color\\\" \\r\\n\\tdescription=\\\"Select the link hover color here.\\\" \\r\\n\\tshowon=\\\"profile_set_font_color:1\\\" \\r\\n\\tdisplay=\\\"menu\\\"\\r\\n\\/>\"', 1, '2017-07-06 11:50:48', '2017-07-06 11:48:01', 1, '', 635, '6fcfd009-0fd9-462e-8a67-1bf38fa813ce', '', '', '', '', ''),
(1741, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Profile GP - Set API Key (profile)', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"api_key_override\\\" \\r\\n\\tlabel=\\\"Set API Key\\\" \\r\\n\\tdescription=\\\"Would you like to set a profile API key.\\\" \\r\\n\\tclass=\\\"btn-group btn-group-yesno\\\" \\r\\n\\toption=\\\"0|No,1|Yes\\\" \\r\\n\\tdefault=\\\"0\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\/>\"', 1, '2017-07-06 20:51:40', '2017-07-06 20:57:47', 3, '', 635, '2bc2b67e-6dcf-4e54-b36e-d13caad9e7a9', '', '', '', '', ''),
(1742, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Profile GP - Google Plus API Note (profile)', 'NOT NULL', '', 14, '\"<field \\r\\n\\ttype=\\\"note\\\" \\r\\n\\tname=\\\"api_key_note\\\" \\r\\n\\tlabel=\\\"Google API\\\" \\r\\n\\tdescription=\\\"Get an API key at <a href=\'http:\\/\\/code.google.com\\/apis\\/console\' target=\'_blank\'>http:\\/\\/code.google.com\\/apis\\/console<\\/a> for instructions <a href=\'http:\\/\\/youtu.be\\/-wPKcfEadAc\' target=\'_blank\'>http:\\/\\/youtu.be\\/-wPKcfEadAc<\\/a>\\\" \\r\\n\\theading=\\\"h4\\\" \\r\\n\\tshowon=\\\"api_key_override:1\\\"\\r\\n\\/>\"', 1, '2017-07-06 20:53:40', '2017-07-06 20:58:02', 2, '', 673, '4679c147-3353-4bc2-b4da-ad6f1de0ff0a', '', '', '', '', ''),
(1743, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'Profile GP - Initial Number of Post to Load', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"profile_initial_load_number\\\" \\r\\n\\tlabel=\\\"Initial Number of Post to Load\\\" \\r\\n\\tsize=\\\"10\\\" \\r\\n\\tmaxlength=\\\"50\\\"\\r\\n\\tdefault=\\\"\\\" \\r\\n\\tfilter=\\\"INT\\\" \\r\\n\\thint=\\\"add number above 6\\\"\\r\\n\\tonchange=\\\"if(!jQuery(this).val().match(\\/^\\\\d+$\\/)){jQuery(this).val(\'\')};\\\" \\r\\n\\/>\"', 1, '2017-07-06 21:15:23', '2017-07-06 21:34:15', 2, '', 7, 'f8070054-a4da-408e-b1e5-80ae3aec48cf', '', '', '', '', ''),
(1744, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'Profile GP - More Number of Post to Load', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"profile_more_load_number\\\" \\r\\n\\tlabel=\\\"More Number of Post to Load\\\" \\r\\n\\tsize=\\\"10\\\" \\r\\n\\tmaxlength=\\\"50\\\"\\r\\n\\tdefault=\\\"\\\" \\r\\n\\tfilter=\\\"INT\\\" \\r\\n\\thint=\\\"add number above 2\\\"\\r\\n\\tonchange=\\\"if(!jQuery(this).val().match(\\/^\\\\d+$\\/)){jQuery(this).val(\'\')};\\\" \\r\\n\\tshowon=\\\"profile_load_new_post:true\\\"\\r\\n\\/>\"', 1, '2017-07-06 21:16:27', '2017-07-06 21:34:51', 3, '', 7, 'd64b85be-f45f-4261-bb9e-b4d97ee70084', '', '', '', '', ''),
(1745, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'Profile GP - Fetch Timer', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"profile_check_timer\\\" \\r\\n\\tlabel=\\\"Fetch Timer\\\" \\r\\n\\tdescription=\\\"The time in seconds before checking again for new post\\\"\\r\\n\\tsize=\\\"10\\\" \\r\\n\\tmaxlength=\\\"50\\\"\\r\\n\\tdefault=\\\"\\\" \\r\\n\\tfilter=\\\"INT\\\"\\r\\n\\thint=\\\"add above 10 seconds\\\"\\r\\n\\tonchange=\\\"if(!jQuery(this).val().match(\\/^\\\\d+$\\/)){jQuery(this).val(\'\')};\\\" \\r\\n\\tshowon=\\\"profile_load_new_post:true\\\"\\r\\n\\/>\"', 1, '2017-07-06 21:20:09', '2017-07-06 21:35:38', 3, '', 7, '76c4846d-ae55-4b2e-8534-bdbc08bfb6ee', '', '', '', '', ''),
(1746, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'Profile GP - Loading New Posts', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"profile_load_new_post\\\" \\r\\n\\tlabel=\\\"Loading New Posts\\\" \\r\\n\\tdescription=\\\"Show the system load new posts\\\" \\r\\n\\tclass=\\\"btn-group btn-group-yesno\\\" \\r\\n\\toption=\\\"true|Yes,false|No\\\" \\r\\n\\tdefault=\\\"true\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\/>\"', 1, '2017-07-06 21:22:06', '2017-07-06 21:25:27', 2, '', 7, '7325cd3f-3f4e-47d3-9fb2-624248038ab3', '', '', '', '', ''),
(1747, '', '', '', '', '', '', '', '', 64, '', 'VARCHAR', 2, '', '', 'Profile GP - Loading Old Posts', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"profile_load_old_post\\\" \\r\\n\\tlabel=\\\"Loading Old Posts\\\" \\r\\n\\tdescription=\\\"Show the system load old posts\\\" \\r\\n\\tclass=\\\"btn-group btn-group-yesno\\\" \\r\\n\\toption=\\\"true|Yes,false|No\\\" \\r\\n\\tdefault=\\\"true\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\/>\"', 1, '2017-07-06 21:23:02', '2017-07-06 21:24:04', 2, '', 7, 'cd4cba03-6b1e-4c07-9030-1f06b619b784', '', '', '', '', ''),
(1748, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'Document (DM)', 'NOT NULL', '', 6, '\"<field\\n\\ttype=\\\"document\\\"\\n\\tname=\\\"[[[document]]]\\\"\\n\\tlabel=\\\"[[[Document]]]\\\"\\n\\tclass=\\\"list_class\\\"\\n\\tmultiple=\\\"false\\\"\\n\\tdefault=\\\"0\\\"\\n\\textends=\\\"list\\\"\\n\\tbutton=\\\"true\\\"\\n\\ttable=\\\"#__###component###_[[[document]]]\\\"\\n\\tcomponent=\\\"com_###component###\\\"\\n\\tview=\\\"[[[document]]]\\\"\\n\\tviews=\\\"[[[document]]]s\\\"\\n\\tvalue_field=\\\"name\\\"\\n\\tkey_field=\\\"id\\\"\\n\\ttype_php_1=\\\"__.o0=base64=Oo.__JGRiID0gSkZhY3Rvcnk6OmdldERCTygpOw0KCQkkcXVlcnkgPSAkZGItPmdldFF1ZXJ5KHRydWUpOw0KCQkkcXVlcnktPnNlbGVjdCgkZGItPnF1b3RlTmFtZShhcnJheSgnYS4jIyNJRCMjIycsJ2EuIyMjVEVYVCMjIycpLGFycmF5KCcjIyNJRCMjIycsJyMjI0NPREVfVEVYVCMjIycpKSk7DQoJCSRxdWVyeS0+ZnJvbSgkZGItPnF1b3RlTmFtZSgnIyMjVEFCTEUjIyMnLCAnYScpKTsNCgkJJHF1ZXJ5LT53aGVyZSgkZGItPnF1b3RlTmFtZSgnYS5wdWJsaXNoZWQnKSAuICcgPj0gMScpOw0KCQkkcXVlcnktPm9yZGVyKCdhLiMjI1RFWFQjIyMgQVNDJyk7DQoJCSRkYi0+c2V0UXVlcnkoKHN0cmluZykkcXVlcnkpOw0KCQkkaXRlbXMgPSAkZGItPmxvYWRPYmplY3RMaXN0KCk7DQoJCSRvcHRpb25zID0gYXJyYXkoKTsNCgkJaWYgKCRpdGVtcykNCgkJew0KCQkJJG9wdGlvbnNbXSA9IEpIdG1sOjpfKCdzZWxlY3Qub3B0aW9uJywgJycsICdTZWxlY3QgYSBbW1tkb2N1bWVudF1dXScpOw0KCQkJZm9yZWFjaCgkaXRlbXMgYXMgJGl0ZW0pDQoJCQl7DQoJCQkJJG9wdGlvbnNbXSA9IEpIdG1sOjpfKCdzZWxlY3Qub3B0aW9uJywgJGl0ZW0tPiMjI0lEIyMjLCAkaXRlbS0+IyMjQ09ERV9URVhUIyMjKTsNCgkJCX0NCgkJfQ0KDQoJCXJldHVybiAkb3B0aW9uczs=\\\"\\n\\/>\"', 1, '2017-07-09 18:28:14', '2019-09-30 01:26:58', 5, '', 790, '78172305-4ade-4d80-8ec1-3f80d4776fb4', '', '', '', '', ''),
(1749, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Featured Document', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"featured\\\" \\r\\n\\tlabel=\\\"Feature\\\" \\r\\n\\tdescription=\\\"Set if this document should be featured.\\\" \\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-07-09 22:21:49', '0000-00-00 00:00:00', 1, '', 607, '841b042f-e887-4975-b607-349c025ea700', '', '', '', '', ''),
(1750, '', '', '', '', '', '', '', '', '', '', 'CHAR', '', '', '', 'Remove Button (note)', 'NOT NULL', '', 14, '\"<field \\r\\n\\ttype=\\\"note\\\" \\r\\n\\tname=\\\"note_download_buttons\\\" \\r\\n\\tlabel=\\\"Download Buttons\\\" \\r\\n\\tdescription=\\\"When you add a button\\/link (via placeholder) to the description of a document, should it remove that button from the download buttons.\\\" \\r\\n\\theading=\\\"h4\\\"\\r\\n\\/>\"', 1, '2017-07-10 09:26:06', '2017-07-10 09:27:13', 2, '', 791, 'df750c6b-6a04-433e-8e77-55f21ded74c6', '', '', '', '', ''),
(1751, '', '', '', '', '', '', '', '', '', '', 'CHAR', '', '', '', 'Remove Button', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"remove_button\\\" \\r\\n\\tlabel=\\\"Remove Button\\\" \\r\\n\\tclass=\\\"btn-group btn-group-yesno\\\" \\r\\n\\toption=\\\"1|Yes,0|No\\\" \\r\\n\\/>\"', 1, '2017-07-10 09:27:00', '2017-07-10 09:27:38', 2, '', 791, '6aef5c4f-e7c7-41e7-a14c-d60936778a4b', '', '', '', '', ''),
(1752, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Show Number of Downloads - Documents', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"show_downloads\\\" \\r\\n\\tlabel=\\\"Show Number of Downloads\\\" \\r\\n\\tdescription=\\\"Set if number of downloads should be shown.\\\" \\r\\n\\tclass=\\\"btn-group btn-group-yesno\\\" \\r\\n\\toption=\\\"1|Yes,0|No\\\" \\r\\n\\tdefault=\\\"1\\\" \\r\\n\\/>\"', 1, '2017-07-10 09:39:37', '2017-07-10 09:46:03', 3, '', 635, 'bcf9e533-391e-4004-b74a-ab4ed9476b45', '', '', '', '', ''),
(1753, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'IP Client (request_id)', 'NOT NULL', '', 6, '\"<field \\r\\n\\ttype=\\\"clients\\\" \\r\\n\\tname=\\\"client_request_id\\\" \\r\\n\\tlabel=\\\"Client\\\" \\r\\n\\tdescription=\\\"\\\" \\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\tmultiple=\\\"false\\\" \\r\\n\\trequired=\\\"false\\\" \\r\\n\\textends=\\\"list\\\" \\r\\n\\tbutton=\\\"false\\\" \\r\\n\\ttable=\\\"#__###component###_client\\\" \\r\\n\\tcomponent=\\\"com_###component###\\\" \\r\\n\\tview=\\\"client\\\" \\r\\n\\tviews=\\\"clients\\\" \\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 an option\');\\\" \\r\\n\\ttype_php_12=\\\"\\\\t$options[] = JHtml::_(\'select.option\', \'0\', \'None\');\\\" \\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, '2017-07-16 17:54:45', '2017-07-16 18:02:08', 2, '', 792, '85be4a34-305d-4fd8-a872-f191fb781763', '', '', '', '', ''),
(1754, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'IP - Joomla Admin', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"client_jadmint\\\" \\r\\n\\tlabel=\\\"Load Joomla Admin\\\" \\r\\n\\tdescription=\\\"Should we load the admin area if a Joomla website?\\\" \\r\\n\\tclass=\\\"btn-group btn-group-yesno\\\" \\r\\n\\toption=\\\"1|Yes,0|No\\\" \\r\\n\\tdefault=\\\"0\\\"\\r\\n\\tdisplay=\\\"menu\\\"\\r\\n\\/>\"', 1, '2017-07-16 18:15:43', '2017-07-18 17:13:25', 4, '', 7, '78fe1552-5988-4ed9-96ef-2261ddd2559f', '', '', '', '', ''),
(1755, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'IP - Use token', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"client_usetoken\\\" \\r\\n\\tlabel=\\\"Use Access Token\\\" \\r\\n\\tdescription=\\\"Would an access token be needed to access client IP?\\\" \\r\\n\\tclass=\\\"btn-group btn-group-yesno\\\" \\r\\n\\toption=\\\"1|Yes,0|No\\\" \\r\\n\\tdefault=\\\"0\\\"\\r\\n\\tdisplay=\\\"menu\\\"\\r\\n\\/>\"', 1, '2017-07-16 18:18:48', '2017-07-18 17:13:14', 5, '', 7, '05f6a6d3-61b3-4714-b6d6-45137dd2808d', '', '', '', '', ''),
(1756, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Hashes (tables)', 'NOT NULL', '', 35, '\"<field \\r\\n\\ttype=\\\"subform\\\" \\r\\n\\tname=\\\"hashes\\\" \\r\\n\\tmultiple=\\\"true\\\"\\r\\n\\tlabel=\\\"Hashes\\\" \\r\\n\\tlayout=\\\"joomla.form.field.subform.repeatable-table\\\" \\r\\n\\tfields=\\\"1763,1760\\\" \\r\\n\\tdescription=\\\"\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\ticon=\\\"list\\\" \\r\\n\\tmaximum=\\\"500\\\" \\r\\n\\tfilter=\\\"\\\" \\r\\n\\tshowon=\\\"\\\" \\r\\n\\/>\"', 1, '2017-07-17 10:57:15', '2017-07-17 11:39:09', 4, '', 787, 'e672140c-9496-4c09-b579-0515731edf70', '', '', '', '', ''),
(1757, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Name (dbtable)', 'NOT NULL', '', 6, '\"<field\\n\\ttype=\\\"dbtable\\\"\\n\\tname=\\\"name\\\"\\n\\tlabel=\\\"Name\\\"\\n\\tdescription=\\\"\\\"\\n\\tclass=\\\"list_class\\\"\\n\\tmultiple=\\\"false\\\"\\n\\tdefault=\\\"0\\\"\\n\\trequired=\\\"\\\"\\n\\treadonly=\\\"\\\"\\n\\tdisabled=\\\"\\\"\\n\\textends=\\\"list\\\"\\n\\ttable=\\\"\\\"\\n\\tview=\\\"\\\"\\n\\tviews=\\\"\\\"\\n\\tvalue_field=\\\"\\\"\\n\\tkey_field=\\\"\\\"\\n\\ttype_php_1=\\\"__.o0=base64=Oo.__Ly8gZ2V0IGRiIG9iamVjdA0KCQkkZGIgPSBKRmFjdG9yeTo6Z2V0REJPKCk7DQoJCS8vIGdldCBhbGwgdGFibGVzDQoJCSR0YWJsZXM9ICRkYi0+Z2V0VGFibGVMaXN0KCk7DQoJCS8vIGdldCBjb25maWcNCgkJJGNvbmZpZyA9IEpGYWN0b3J5OjpnZXRDb25maWcoKTsNCgkJJGRicHJlZml4ID0gdmVyc2lvbl9jb21wYXJlKEpWRVJTSU9OLCczLjAnLCdsdCcpID8gJGNvbmZpZy0+Z2V0VmFsdWUoJ2NvbmZpZy5kYnByZWZpeCcpIDogJGNvbmZpZy0+Z2V0KCdkYnByZWZpeCcpOw0KCQkkb3B0aW9ucyA9IGFycmF5KCk7DQoJCSRvcHRpb25zW10gPSBKSHRtbDo6Xygnc2VsZWN0Lm9wdGlvbicsICcnLCAnU2VsZWN0IGFuIG9wdGlvbicpOw0KCQlmb3IgKCRpPTA7ICRpIDwgY291bnQoJHRhYmxlcyk7ICRpKyspDQoJCXsNCgkJCSRrZXkgPSAkaSsxOw0KCQkJJG9wdGlvbnNbJGtleV0gPSBuZXcgc3RkQ2xhc3M7DQoJCQkkb3B0aW9uc1ska2V5XS0+dmFsdWUgPSBzdHJfcmVwbGFjZSgkZGJwcmVmaXgsICcnLCAkdGFibGVzWyRpXSk7DQoJCQkkb3B0aW9uc1ska2V5XS0+dGV4dCA9ICR0YWJsZXNbJGldOw0KCQl9DQoJCXJldHVybiAkb3B0aW9uczs=\\\"\\n\\/>\"', 1, '2017-07-17 11:20:29', '2018-10-29 14:37:56', 7, '', 329, '016a4f76-2e84-4314-b42b-1cdad2b13650', '', '', '', '', ''),
(1758, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Hashes (table)', 'NOT NULL', '', 35, '\"<field \\r\\n\\ttype=\\\"subform\\\" \\r\\n\\tname=\\\"hashes\\\" \\r\\n\\tmultiple=\\\"true\\\"\\r\\n\\tlabel=\\\"Hashes\\\" \\r\\n\\tlayout=\\\"joomla.form.field.subform.repeatable-table\\\" \\r\\n\\tfields=\\\"1761,1762,1760\\\" \\r\\n\\tdescription=\\\"\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\ticon=\\\"list\\\" \\r\\n\\tmaximum=\\\"500\\\" \\r\\n\\tfilter=\\\"\\\" \\r\\n\\tshowon=\\\"\\\" \\r\\n\\/>\"', 1, '2017-07-17 11:22:21', '2017-07-20 00:19:09', 4, '', 787, '63848608-beda-4856-8510-ea49eace48ae', '', '', '', '', ''),
(1759, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Hashes (watchers)', 'NOT NULL', '', 35, '\"<field \\r\\n\\ttype=\\\"subform\\\" \\r\\n\\tname=\\\"hashes\\\" \\r\\n\\tmultiple=\\\"true\\\"\\r\\n\\tlabel=\\\"Hashes\\\" \\r\\n\\tlayout=\\\"joomla.form.field.subform.repeatable-table\\\" \\r\\n\\tfields=\\\"1764,1760\\\" \\r\\n\\tdescription=\\\"\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\ticon=\\\"list\\\" \\r\\n\\tmaximum=\\\"500\\\" \\r\\n\\tfilter=\\\"\\\" \\r\\n\\tshowon=\\\"\\\" \\r\\n\\/>\"', 1, '2017-07-17 11:22:41', '2017-07-17 11:54:50', 3, '', 787, '554ea3f7-3898-44a9-b228-a05ab8d7e29c', '', '', '', '', ''),
(1760, '', '', '', '', '', '', '', '', 64, '', 'VARCHAR', '', '', '', 'Hash', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"hash\\\" \\r\\n\\tlabel=\\\"Hash\\\" \\r\\n\\tsize=\\\"35\\\" \\r\\n\\tmaxlength=\\\"150\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tdescription=\\\"This hash is the md5 of the selected items\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\treadonly=\\\"true\\\" \\r\\n\\tfilter=\\\"STRING\\\" \\r\\n\\tmessage=\\\"Error! Please add some text here.\\\" \\r\\n\\thint=\\\"autogenerated md5 hash\\\" \\r\\n\\/>\"', 1, '2017-07-17 11:30:45', '2017-01-31 23:00:42', 1, '', 767, '57f933c4-6c5b-4a1d-9a22-c2ba588010f6', '', '', '', '', ''),
(1761, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'Start', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"start\\\" \\r\\n\\tlabel=\\\"Start\\\" \\r\\n\\tdescription=\\\"The first number\\\"\\r\\n\\tsize=\\\"10\\\" \\r\\n\\tmaxlength=\\\"50\\\"\\r\\n\\tdefault=\\\"\\\" \\r\\n\\tfilter=\\\"INT\\\"\\r\\n\\tonchange=\\\"if(!jQuery(this).val().match(\\/^\\\\d+$\\/)){jQuery(this).val(\'\')};\\\" \\r\\n\\/>\"', 1, '2017-07-17 11:33:37', '2017-07-18 23:32:16', 2, '', 7, '7fa4c5fe-33db-46b3-98ff-cd499d44a2f7', '', '', '', '', ''),
(1762, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'End', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"end\\\" \\r\\n\\tlabel=\\\"End\\\" \\r\\n\\tdescription=\\\"The last number\\\"\\r\\n\\tsize=\\\"10\\\" \\r\\n\\tmaxlength=\\\"50\\\"\\r\\n\\tdefault=\\\"\\\" \\r\\n\\tfilter=\\\"INT\\\"\\r\\n\\tonchange=\\\"if(!jQuery(this).val().match(\\/^\\\\d+$\\/)){jQuery(this).val(\'\')};\\\" \\r\\n\\/>\"', 1, '2017-07-17 11:34:22', '2017-07-18 23:32:43', 2, '', 7, '94492860-5c1b-4404-b18d-ea3eee049418', '', '', '', '', ''),
(1763, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'Table', 'NOT NULL', '', 6, '\"<field \\r\\n\\ttype=\\\"table\\\" \\r\\n\\tname=\\\"table\\\" \\r\\n\\tlabel=\\\"Table\\\" \\r\\n\\tdescription=\\\"\\\" \\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###_table\\\" \\r\\n\\tcomponent=\\\"com_###component###\\\" \\r\\n\\tview=\\\"table\\\" \\r\\n\\tviews=\\\"tables\\\" \\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 table\');\\\" \\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, '2017-07-17 11:36:54', '2017-07-17 11:55:54', 2, '', 7, 'cba44be2-d4ae-48a8-bba6-63369837d3bd', '', '', '', '', ''),
(1764, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'Watcher', 'NOT NULL', '', 6, '\"<field \\r\\n\\ttype=\\\"watcher\\\" \\r\\n\\tname=\\\"watcher\\\" \\r\\n\\tlabel=\\\"Watcher\\\" \\r\\n\\tdescription=\\\"\\\" \\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###_watcher\\\" \\r\\n\\tcomponent=\\\"com_###component###\\\" \\r\\n\\tview=\\\"watcher\\\" \\r\\n\\tviews=\\\"watchers\\\" \\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 watcher\');\\\" \\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, '2017-07-17 11:40:08', '2017-07-17 11:55:41', 2, '', 7, '24f9e468-7a06-4e08-b61f-2420402ba2b1', '', '', '', '', ''),
(1765, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'Watcher Auto Bundle', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"watcher_bundle\\\" \\r\\n\\tlabel=\\\"Watcher Auto Bundle\\\" \\r\\n\\tdescription=\\\"The number of tables to bundle per watcher\\\"\\r\\n\\tsize=\\\"10\\\" \\r\\n\\tmaxlength=\\\"50\\\"\\r\\n\\tdefault=\\\"\\\" \\r\\n\\tfilter=\\\"INT\\\"\\r\\n\\tonchange=\\\"if(!jQuery(this).val().match(\\/^\\\\d+$\\/)){jQuery(this).val(\'\')};\\\" \\r\\n\\/>\"', 1, '2017-07-17 12:31:56', '2017-07-06 21:35:38', 1, '', 7, '4d2e0899-dae7-454a-a1c2-e9b39b43578b', '', '', '', '', ''),
(1766, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'Table Auto Bundle', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"table_bundle\\\" \\r\\n\\tlabel=\\\"Table Auto Bundle\\\" \\r\\n\\tdescription=\\\"The number of rows to bundle per table\\\"\\r\\n\\tsize=\\\"10\\\" \\r\\n\\tmaxlength=\\\"50\\\"\\r\\n\\tdefault=\\\"\\\" \\r\\n\\tfilter=\\\"INT\\\"\\r\\n\\tonchange=\\\"if(!jQuery(this).val().match(\\/^\\\\d+$\\/)){jQuery(this).val(\'\')};\\\" \\r\\n\\/>\"', 1, '2017-07-17 12:33:07', '2017-07-06 21:35:38', 1, '', 7, '4ec2c24a-7aaa-48c4-aee2-7601a82a4e14', '', '', '', '', ''),
(1767, '', '', '', '', '', '', '', '', '', '', 'CHAR', '', '', '', 'Type (Custom Buttons)', 'NOT NULL', '', 11, '\"<field \\r\\n\\ttype=\\\"list\\\" \\r\\n\\tname=\\\"type\\\" \\r\\n\\tlabel=\\\"Type\\\" \\r\\n\\tdescription=\\\"for list target\\\" \\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\tmultiple=\\\"false\\\" \\r\\n\\toption=\\\"0|Default,1|Selection,2|Only Function\\\" \\r\\n\\tdefault=\\\"0\\\" \\r\\n\\/>\"', 1, '2017-07-17 12:53:46', '0000-00-00 00:00:00', 1, '', 793, '2d94e6ca-b301-4cd1-abd5-7d89332be123', '', '', '', '', ''),
(1768, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'IP - Allow return type override', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"client_return_type_override\\\" \\r\\n\\tlabel=\\\"Allow return type override\\\" \\r\\n\\tdescription=\\\"Should the overriding option of the return type be allowed?\\\" \\r\\n\\tclass=\\\"btn-group btn-group-yesno\\\" \\r\\n\\toption=\\\"1|Yes,0|No\\\" \\r\\n\\tdefault=\\\"0\\\"\\r\\n\\/>\"', 1, '2017-07-17 14:28:44', '2017-07-16 20:11:32', 1, '', 7, 'fdc762f3-a75c-40a7-a9dc-9edec0dc04d3', '', '', '', '', ''),
(1769, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'IP - Return Type', 'NOT NULL', '', 11, '\"<field \\r\\n\\ttype=\\\"list\\\" \\r\\n\\tname=\\\"client_return_type\\\" \\r\\n\\tlabel=\\\"Return Type\\\" \\r\\n\\tdescription=\\\"The way the client IP should given to a request.\\\" \\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\tmultiple=\\\"false\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\toption=\\\"1|iFrame,2|IP string only,3|Redirect\\\" \\r\\n\\tdefault=\\\"1\\\" \\r\\n\\/>\"', 1, '2017-07-17 14:31:15', '2017-07-17 15:00:28', 2, '', 7, '106d661a-3e24-4382-a5bd-5062c3b59251', '', '', '', '', ''),
(1770, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'IP - Token Type', 'NOT NULL', '', 11, '\"<field \\r\\n\\ttype=\\\"list\\\" \\r\\n\\tname=\\\"client_usetoken_type\\\" \\r\\n\\tlabel=\\\"Token Type\\\" \\r\\n\\tdescription=\\\"What type of token should be used.\\\" \\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\tmultiple=\\\"false\\\" \\r\\n\\toption=\\\"1|Trusted Time Hash,2|Trusted Hash,3|Password\\\" \\r\\n\\tdefault=\\\"1\\\" \\r\\n\\tshowon=\\\"client_usetoken:1\\\"\\r\\n\\tdisplay=\\\"menu\\\"\\r\\n\\/>\"', 1, '2017-07-18 13:56:09', '2017-07-18 17:12:53', 5, '', 7, '3d7dfc1b-59c9-4865-8871-3ce023307db8', '', '', '', '', ''),
(1771, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'IP - Password', 'NOT NULL', '', 16, '\"<field \\r\\n\\ttype=\\\"password\\\" \\r\\n\\tname=\\\"client_password\\\" \\r\\n\\tlabel=\\\"Password\\\" \\r\\n\\tsize=\\\"10\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tdescription=\\\"\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\tfilter=\\\"raw\\\"\\r\\n\\tfield=\\\"\\\" \\r\\n\\tmessage=\\\"Error! Please add some password here.\\\" \\r\\n\\thint=\\\"TokenPassword\\\" \\r\\n\\tshowon=\\\"client_usetoken_type:3\\\"\\r\\n\\tdisplay=\\\"menu\\\"\\r\\n\\/>\"', 1, '2017-07-18 14:03:16', '2017-07-18 15:29:18', 2, '', 7, '9f5dfa1a-03ca-49b6-8749-25572c04ea7c', '', '', '', '', ''),
(1772, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'Type of numbers', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"type\\\" \\r\\n\\tlabel=\\\"Type\\\" \\r\\n\\tdescription=\\\"numbers\\\" \\r\\n\\tclass=\\\"btn-group btn-group-yesno\\\" \\r\\n\\toption=\\\"1|ID,2|Row\\\" \\r\\n\\/>\"', 1, '2017-07-18 23:34:20', '2017-07-18 23:36:03', 3, '', 7, '8688399a-77cf-4bbc-9e7a-de6edea2f3d5', '', '', '', '', ''),
(1773, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', 2, '', '', 'Domain (ips)', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"domain\\\" \\r\\n\\tlabel=\\\"Domain\\\" \\r\\n\\tsize=\\\"50\\\" \\r\\n\\tmaxlength=\\\"150\\\" \\r\\n\\tdescription=\\\"The domain name to add A record to DNS. Only name like (vdm.io) Make sure that the needed BASH script is loaded on the selected server where this domain DNS is controlled.\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\tfilter=\\\"STRING\\\" \\r\\n\\tmessage=\\\"Error! Please add some text here.\\\" \\r\\n\\thint=\\\"example.com\\\" \\r\\n\\/>\"', 1, '2017-07-20 14:51:22', '0000-00-00 00:00:00', 1, '', 794, '9cf33e22-0462-4d8d-a95b-b6d0ae51c744', '', '', '', '', ''),
(1774, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', 2, '', '', 'Sub Domain (ips)', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"sub\\\" \\r\\n\\tlabel=\\\"Sub Domain\\\" \\r\\n\\tsize=\\\"50\\\" \\r\\n\\tmaxlength=\\\"150\\\" \\r\\n\\tdescription=\\\"The sub domain string the IP should be pointing to in the DNS. Like (www).\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\tfilter=\\\"ALNUM\\\" \\r\\n\\tmessage=\\\"Error! Please add some text here.\\\" \\r\\n\\thint=\\\"www\\\" \\r\\n\\/>\"', 1, '2017-07-20 14:54:29', '0000-00-00 00:00:00', 1, '', 794, '62bf245d-5823-40a1-9459-4ce637b1f37a', '', '', '', '', ''),
(1775, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'Servers (ips)', 'NOT NULL', '', 6, '\"<field \\r\\n\\ttype=\\\"servers\\\" \\r\\n\\tname=\\\"Server\\\" \\r\\n\\tlabel=\\\"Server\\\" \\r\\n\\tdescription=\\\"\\\" \\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\tmultiple=\\\"false\\\" \\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###\'),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 server\');\\\" \\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, '2017-07-20 15:02:52', '2017-07-20 15:03:06', 2, '', 794, '851b9de2-9c88-4cf1-b0fc-83e0ae5e5114', '', '', '', '', ''),
(1776, '', '', '', '', '', '', '', '', 11, '', 'INT', '', '', '', 'Tables (custom)', 'NOT NULL', '', 6, '\"<field \\r\\n\\ttype=\\\"tables\\\" \\r\\n\\tname=\\\"table\\\" \\r\\n\\tlabel=\\\"Table\\\" \\r\\n\\tdescription=\\\"\\\" \\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\tmultiple=\\\"false\\\" \\r\\n\\tdefault=\\\"0\\\" \\r\\n\\trequired=\\\"\\\" \\r\\n\\treadonly=\\\"\\\" \\r\\n\\tdisabled=\\\"\\\" \\r\\n\\textends=\\\"list\\\" \\r\\n\\tbutton=\\\"true\\\" \\r\\n\\ttable=\\\"#__###component###_table\\\" \\r\\n\\tcomponent=\\\"com_###component###\\\" \\r\\n\\tview=\\\"table\\\" \\r\\n\\tviews=\\\"tables\\\" \\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 table\');\\\" \\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, '2017-08-04 13:49:51', '2017-07-17 20:12:23', 1, '', 329, 'ca18d542-755e-46ee-9ea0-69272cb743c7', '', '', '', '', ''),
(1777, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', 2, '', '', 'Pointer', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"pointer\\\" \\r\\n\\tlabel=\\\"Pointer\\\" \\r\\n\\tdescription=\\\"The row pointer\\\"\\r\\n\\tsize=\\\"50\\\" \\r\\n\\tmaxlength=\\\"250\\\"\\r\\n\\tfilter=\\\"STRING\\\"\\r\\n\\/>\"', 1, '2017-08-04 13:54:50', '2017-07-06 21:35:38', 1, '', 7, '27755750-6568-420e-9bf1-56976b77bb76', '', '', '', '', ''),
(1778, '', '', '', '', '', '', '', '', 11, '', 'INT', '', '', '', 'API User', 'NOT NULL', '', 28, '\"<field \\r\\n\\ttype=\\\"user\\\" \\r\\n\\tname=\\\"api\\\" \\r\\n\\tlabel=\\\"API User\\\" \\r\\n\\tdescription=\\\"This User will be used to log the API call.\\\" \\r\\n\\/>\"', 1, '2017-08-06 16:25:04', '2017-08-06 16:26:31', 2, '', 795, '691dffc1-0395-45e0-b49d-86d8d5cc67ec', '', '', '', '', ''),
(1779, '', '', '', '', '', '', '', '', 255, '', 'TEXT', '', '', '', 'Ignore Tables (dbtable)', 'NOT NULL', '', 6, '\"<field\\n\\ttype=\\\"dbtable\\\"\\n\\tname=\\\"ignore_tables\\\"\\n\\tlabel=\\\"Ignore Tables\\\"\\n\\tdescription=\\\"The tables to ignore in dynamic sync.\\\"\\n\\tclass=\\\"list_class\\\"\\n\\tmultiple=\\\"true\\\"\\n\\tdefault=\\\"0\\\"\\n\\textends=\\\"list\\\"\\n\\ttype_php_1=\\\"__.o0=base64=Oo.__Ly8gY2hlY2sgb3V0IHByaW1l\\\"\\n\\/>\"', 1, '2017-08-06 18:23:50', '2018-10-29 15:19:44', 2, '', 329, '561f667f-3ad5-4d92-843b-5ee2618fd95f', '', '', '', '', ''),
(1780, '', '', '', '', '', '', '', '', 255, '', 'TEXT', '', '', '', 'Sync sites', 'NOT NULL', '', 6, '\"<field \\r\\n\\ttype=\\\"syncsites\\\" \\r\\n\\tname=\\\"sync_site\\\" \\r\\n\\tlabel=\\\"Sync sites\\\" \\r\\n\\tdescription=\\\"The website having access to this gateway\\\" \\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\tmultiple=\\\"true\\\" \\r\\n\\textends=\\\"list\\\" \\r\\n\\tbutton=\\\"true\\\" \\r\\n\\ttable=\\\"#__###component###_sync_site\\\" \\r\\n\\tcomponent=\\\"com_###component###\\\" \\r\\n\\tview=\\\"sync_site\\\" \\r\\n\\tviews=\\\"sync_sites\\\" \\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_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, '2017-08-08 12:32:56', '2017-08-09 19:43:47', 5, '', 794, '41bd0a72-0e38-44a2-9156-40c6f472cf1d', '', '', '', '', ''),
(1781, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', 2, '', '', 'Access Key', 'NOT NULL', 3, 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"accesskey\\\" \\r\\n\\tlabel=\\\"Access Key <br \\/><small>(encrypted field)<\\/small>\\\" \\r\\n\\tsize=\\\"128\\\" \\r\\n\\tmaxlength=\\\"128\\\"\\r\\n\\tdescription=\\\"The given access key auto generated.\\\" \\r\\n\\tclass=\\\"text_area span12\\\"\\r\\n\\tfilter=\\\"STRING\\\" \\r\\n\\treadonly=\\\"true\\\"\\r\\n\\thint=\\\"Auto Generated Access Key\\\" \\r\\n\\/>\"', 1, '2017-08-08 14:41:26', '2017-08-27 17:53:23', 2, '', 789, '0a8452ff-e3eb-4226-a2bb-e5a429733aa4', '', '', '', '', ''),
(1782, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', 2, '', '', 'Trust Key (sync)', 'NOT NULL', 3, 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"trustkey\\\" \\r\\n\\tlabel=\\\"Trust Key <br \\/><small>(encrypted field)<\\/small>\\\" \\r\\n\\tsize=\\\"128\\\" \\r\\n\\tmaxlength=\\\"128\\\"\\r\\n\\tdescription=\\\"Set the trust access key used to link with sync system.\\\" \\r\\n\\tclass=\\\"text_area span12\\\"\\r\\n\\tfilter=\\\"STRING\\\" \\r\\n\\thint=\\\"Trust Key\\\" \\r\\n\\/>\"', 1, '2017-08-08 14:42:47', '2017-08-27 17:57:48', 3, '', 789, 'ad45353f-bb67-46ab-8d7b-3d1d6e47e426', '', '', '', '', ''),
(1783, '', '', '', '', '', '', '', '', 1, '', 'INT', '', '', '', 'Sync Method', 'NOT NULL', '', 11, '\"<field \\r\\n\\ttype=\\\"list\\\" \\r\\n\\tname=\\\"method\\\" \\r\\n\\tlabel=\\\"Sync Method\\\" \\r\\n\\tdescription=\\\"What method is used during sync.\\\" \\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\tmultiple=\\\"false\\\" \\r\\n\\tfilter=\\\"INT\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\toption=\\\"|Select an option,1|Pull,2|Push,3|Loop\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\/>\"', 1, '2017-08-08 16:12:27', '0000-00-00 00:00:00', 1, '', 796, '7bec9b3e-b161-4eaa-98ef-78883a3158c5', '', '', '', '', ''),
(1784, '', '', '', '', '', '', '', '', 1, '', 'INT', '', '', '', 'IP Type', 'NOT NULL', '', 11, '\"<field \\r\\n\\ttype=\\\"list\\\" \\r\\n\\tname=\\\"ip_type\\\" \\r\\n\\tlabel=\\\"IP Type\\\" \\r\\n\\tdescription=\\\"What type of IP is used.\\\" \\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\tmultiple=\\\"false\\\" \\r\\n\\tfilter=\\\"INT\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\toption=\\\"|Select an option,1|Dynamic,2|Static\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\/>\"', 1, '2017-08-08 16:13:39', '2017-08-08 16:13:58', 2, '', 796, 'a157dd85-40c1-4190-be6f-117c9fd1cc22', '', '', '', '', ''),
(1785, '', '', '', '', '', '', '', '', 1, '', 'INT', '', '', '', 'API Link Type', 'NOT NULL', '', 11, '\"<field \\r\\n\\ttype=\\\"list\\\" \\r\\n\\tname=\\\"link_type\\\" \\r\\n\\tlabel=\\\"API Link Type\\\" \\r\\n\\tdescription=\\\"What type of link is used to query the sync portal API.\\\" \\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\tmultiple=\\\"false\\\" \\r\\n\\tfilter=\\\"INT\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\toption=\\\"|Select an option,1|IP,2|Domain\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\/>\"', 1, '2017-08-08 16:15:16', '2017-08-08 16:13:58', 1, '', 796, '8efabb21-d3b6-48b8-b2f9-da9ef76f573c', '', '', '', '', ''),
(1786, '', '', '', '', '', '', '', '', '', '', 'CHAR', '', '', '', 'Pull (sync - note)', 'NOT NULL', '', 14, '\"<field \\r\\n\\ttype=\\\"note\\\" \\r\\n\\tname=\\\"pull-note\\\" \\r\\n\\tlabel=\\\"Pull Sync Method (slave)\\\" \\r\\n\\tdescription=\\\"This method will pull data from the remote system and update your local system with the given data <b>irrespective of time stamps<\\/b>. This system effectively becomes a slave!<br \\/>This system <- Pull <--- <b>encrypted data<\\/b> <--- Remote System\\\" \\r\\n\\theading=\\\"h4\\\" \\r\\n\\tclass=\\\"alert alert-info\\\" \\r\\n\\/>\"', 1, '2017-08-08 21:02:27', '2018-02-21 18:27:37', 8, '', 797, '176beba4-8866-44a2-92f7-e4d8f6b90fd9', '', '', '', '', ''),
(1787, '', '', '', '', '', '', '', '', '', '', 'CHAR', '', '', '', 'Push (sync - note)', 'NOT NULL', '', 14, '\"<field \\r\\n\\ttype=\\\"note\\\" \\r\\n\\tname=\\\"push-note\\\" \\r\\n\\tlabel=\\\"Push Sync Method (master)\\\" \\r\\n\\tdescription=\\\"This method will push data from this local system to the remote system and replace the given data <b>irrespective of time stamps<\\/b>. This system effectively becomes a master of the remote system!<br \\/>This system -> Push ---> <b>encrypted data<\\/b> ---> Remote system\\\" \\r\\n\\theading=\\\"h4\\\" \\r\\n\\tclass=\\\"alert alert-info\\\" \\r\\n\\/>\"', 1, '2017-08-08 21:04:15', '2018-02-21 18:29:05', 8, '', 797, '902a93a4-532a-4369-92d4-3ea878ea42f6', '', '', '', '', ''),
(1788, '', '', '', '', '', '', '', '', '', '', 'CHAR', '', '', '', 'Loop (sync - note)', 'NOT NULL', '', 14, '\"<field \\r\\n\\ttype=\\\"note\\\" \\r\\n\\tname=\\\"loop-note\\\" \\r\\n\\tlabel=\\\"Loop Sync Method (both)\\\" \\r\\n\\tdescription=\\\"This method will push and pull data from this local system to the remote system and replace the given data <b>based on time stamps<\\/b>. This method keeps both systems in sync with each other and is the most advanced option.<br \\/>This system -> Loop <---> <b>encrypted data<\\/b> <---> Loop <- Remote system\\\" \\r\\n\\theading=\\\"h4\\\" \\r\\n\\tclass=\\\"alert alert-info\\\" \\r\\n\\/>\"', 1, '2017-08-08 21:09:13', '2018-02-21 18:31:17', 9, '', 797, '6fb37230-7879-4992-9ee9-948c151428dc', '', '', '', '', ''),
(1789, '', '', '', '', '', '', '', '', '', '', 'CHAR', '', '', '', 'API domain (sync - note)', 'NOT NULL', '', 14, '\"<field \\r\\n\\ttype=\\\"note\\\" \\r\\n\\tname=\\\"api-domain-note\\\" \\r\\n\\tdescription=\\\"Only add the main domain like (http:\\/\\/www.demo.com\\/) to your Joomla installed website where sync portal is installed.\\\" \\r\\n\\tclass=\\\"alert alert-info\\\" \\r\\n\\/>\"', 1, '2017-08-08 21:16:41', '2017-08-08 21:14:54', 1, '', 797, 'f5df859e-d5cf-4e09-8776-c28c29931c6e', '', '', '', '', ''),
(1790, '', '', '', '', '', '', '', '', '', '', 'CHAR', '', '', '', 'Trust Key (sync - note)', 'NOT NULL', '', 14, '\"<field \\r\\n\\ttype=\\\"note\\\" \\r\\n\\tname=\\\"trust-key-note\\\" \\r\\n\\tlabel=\\\"Trust keys are emailed\\\"\\r\\n\\tdescription=\\\"The first time you setup a sync website, you must <\\/b>request a trust<\\/b> key. Watch this <a href=\'#\' target=\'_blank\'>tutorial<\\/a> for more details.\\\" \\r\\n\\tclass=\\\"alert alert-info\\\" \\r\\n\\/>\"', 1, '2017-08-08 21:24:12', '2017-08-08 22:18:43', 3, '', 797, '210944c7-a43e-4bfc-9e83-a1d4d72871c3', '', '', '', '', ''),
(1791, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Path', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"path\\\" \\r\\n\\tlabel=\\\"Path\\\" \\r\\n\\tdescription=\\\"The folder path of the given relation.\\\"\\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=\\\"Folder Path Here\\\" \\r\\n\\/>\"', 1, '2017-08-12 19:24:53', '2017-08-12 19:23:33', 1, '', 303, '7b6c283f-85f3-49b8-86f4-78ecbf71f5ac', '', '', '', '', ''),
(1792, '', '', '', '', '', '', '', '', 11, '', 'INT', '', '', '', 'Trusted User', 'NOT NULL', '', 28, '\"<field \\r\\n\\ttype=\\\"user\\\" \\r\\n\\tname=\\\"trusted\\\" \\r\\n\\tlabel=\\\"Trusted User\\\"\\r\\n\\tdescription=\\\"This User will be used to confirm trust requests.\\\" \\r\\n\\tshowon=\\\"allow_trust_request:1\\\"\\r\\n\\/>\"', 1, '2017-08-12 20:28:59', '2017-08-27 17:20:16', 2, '', 795, '004c2243-cb2f-4c6b-9048-4e194d752595', '', '', '', '', ''),
(1793, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Allowed Tables (chain)', 'NOT NULL', '', 35, '\"<field \\r\\n\\ttype=\\\"subform\\\" \\r\\n\\tname=\\\"chain\\\" \\r\\n\\tlabel=\\\"Allowed Tables\\\" \\r\\n\\tlayout=\\\"joomla.form.field.subform.repeatable-table\\\" \\r\\n\\tmultiple=\\\"true\\\" \\r\\n\\tfields=\\\"1757\\\" \\r\\n\\tdescription=\\\"The list of tables that is allowed to be updated based on the selected method\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\ticon=\\\"list\\\" \\r\\n\\/>\"', 1, '2017-08-12 21:56:45', '2017-11-07 20:40:54', 3, '', 798, 'aa346d74-df89-4b6a-94df-140d8e3cde23', '', '', '', '', ''),
(1794, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'Validation Type', 'NOT NULL', '', 11, '\"<field \\r\\n\\ttype=\\\"list\\\" \\r\\n\\tname=\\\"target-type\\\" \\r\\n\\tlabel=\\\"Validation Type\\\" \\r\\n\\tdescription=\\\"The way the group validation is done.\\\" \\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\toption=\\\"1|In Groups,0|Not In Groups\\\" \\r\\n\\tmultiple=\\\"false\\\" \\r\\n\\tdefault=\\\"1\\\" \\r\\n\\/>\"', 1, '2017-08-13 19:50:32', '2017-08-13 20:10:55', 2, '', 799, '9ff5b4aa-997a-4c5f-a067-1fe9572cecd8', '', '', '', '', ''),
(1795, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Select Group', 'NOT NULL', '', 29, '\"<field \\r\\n\\ttype=\\\"usergroup\\\" \\r\\n\\tname=\\\"target-group\\\" \\r\\n\\tlabel=\\\"Select Group\\\" \\r\\n\\tdescription=\\\"Select a group\\\"\\r\\n\\tmultiple=\\\"true\\\" \\r\\n\\/>\"', 1, '2017-08-13 19:53:00', '2017-08-13 19:53:40', 2, '', 799, 'aa6f7cfa-e7e7-47a5-a96a-a564fdade043', '', '', '', '', ''),
(1796, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'HTML', 'NOT NULL', '', 25, '\"<field \\r\\n\\ttype=\\\"textarea\\\" \\r\\n\\tname=\\\"html\\\" \\r\\n\\tlabel=\\\"Text\\/html\\\" \\r\\n\\trows=\\\"20\\\" \\r\\n\\tcols=\\\"15\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\tfilter=\\\"raw\\\" \\r\\n\\thint=\\\"\\/\\/ Add the HTML here.\\\" \\r\\n\\/>\"', 1, '2017-08-13 19:58:31', '2017-08-13 20:05:37', 2, '', 368, '756856c2-1d6a-4032-8f6e-ef56b9dbb4de', '', '', '', '', ''),
(1797, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'PHP (codebox)', 'NOT NULL', '', 25, '\"<field \\r\\n\\ttype=\\\"textarea\\\" \\r\\n\\tname=\\\"PHP\\\" \\r\\n\\tlabel=\\\"PHP\\\" \\r\\n\\trows=\\\"20\\\" \\r\\n\\tcols=\\\"15\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\tfilter=\\\"raw\\\" \\r\\n\\thint=\\\"\\/\\/ Add the PHP script that run before text display [Remember to not include the <?php and ?> tags] The $html string contains the HTML code of the text.\\\" \\r\\n\\/>\"', 1, '2017-08-13 20:00:02', '2017-08-13 20:06:36', 3, '', 368, '6d8d5d2d-c333-45df-b032-79b2fa44ed24', '', '', '', '', ''),
(1798, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Javascript (codebox)', 'NOT NULL', '', 25, '\"<field \\r\\n\\ttype=\\\"textarea\\\" \\r\\n\\tname=\\\"javascript\\\" \\r\\n\\tlabel=\\\"Javascript\\/jQuery\\\" \\r\\n\\trows=\\\"20\\\" \\r\\n\\tcols=\\\"15\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\tfilter=\\\"raw\\\" \\r\\n\\thint=\\\"\\/\\/ Add the JavaScript here. [Remember to not include the <script> and <\\/script> tags] if you use jQuery then replace $ with jQuery\\\" \\r\\n\\/>\"', 1, '2017-08-13 20:01:23', '2017-08-13 20:07:21', 2, '', 368, 'c54b181d-4246-4792-a086-aae273a4e2ec', '', '', '', '', ''),
(1799, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'CSS (codebox)', 'NOT NULL', '', 25, '\"<field \\r\\n\\ttype=\\\"textarea\\\" \\r\\n\\tname=\\\"css\\\" \\r\\n\\tlabel=\\\"CSS\\\" \\r\\n\\trows=\\\"20\\\" \\r\\n\\tcols=\\\"15\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\tfilter=\\\"raw\\\" \\r\\n\\thint=\\\"\\/\\/ Add the css here. [Remember to not include the <style> and <\\/style> tags]\\\" \\r\\n\\/>\"', 1, '2017-08-13 20:02:21', '2017-08-13 20:07:39', 2, '', 368, '122926f9-cb0c-49c2-82df-bf5f8cd4fc8f', '', '', '', '', ''),
(1800, '', '', '', '', '', '', '', '', '', '', 'MEDIUMTEXT', '', '', '', 'Coding (codebox)', 'NOT NULL', '', 35, '\"<field\\r\\n\\ttype=\\\"subform\\\"\\r\\n\\tname=\\\"code\\\"\\r\\n\\tlabel=\\\"Coding\\\"\\r\\n\\tlayout=\\\"joomla.form.field.subform.repeatable-table\\\"\\r\\n\\tmultiple=\\\"true\\\"\\r\\n\\tfields=\\\"1794,1795,1796,1797,1798,1799\\\"\\r\\n\\tdescription=\\\"The data to load in relation to the selected group settings.\\\"\\r\\n\\tdefault=\\\"\\\"\\r\\n\\ticon=\\\"list\\\"\\r\\n\\tmaximum=\\\"50\\\"\\r\\n\\/>\"', 1, '2017-08-13 20:02:44', '2017-08-13 20:49:16', 7, '', 800, 'f5ec8d68-c5f4-4691-8129-7d6e7c8ef46a', '', '', '', '', ''),
(1801, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Redirect (codebox)', 'NOT NULL', '', 35, '\"<field \\r\\n\\ttype=\\\"subform\\\" \\r\\n\\tname=\\\"redirect\\\" \\r\\n\\tlabel=\\\"Redirect\\\" \\r\\n\\tlayout=\\\"joomla.form.field.subform.repeatable-table\\\" \\r\\n\\tmultiple=\\\"true\\\" \\r\\n\\tfields=\\\"1794,1795,1803,1802\\\" \\r\\n\\tdescription=\\\"The redirection in relation to the selected group settings\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\ticon=\\\"list\\\" \\r\\n\\tmaximum=\\\"50\\\" \\r\\n\\/>\"', 1, '2017-08-13 20:50:45', '2017-08-13 21:02:15', 4, '', 800, 'bc80afb7-1e81-4599-b576-f86bf6bae393', '', '', '', '', ''),
(1802, '', '', '', '', '', '', '', '', 11, '', 'INT', '', '', '', 'Menu (codebox)', 'NOT NULL', '', 33, '\"<field \\r\\n\\ttype=\\\"menuitem\\\" \\r\\n\\tname=\\\"target-menu\\\" \\r\\n\\tlabel=\\\"Menu\\\" \\r\\n\\tdescription=\\\"\\\" \\r\\n\\tfilter=\\\"int\\\"\\r\\n\\tpublished=\\\"1\\\"\\r\\n\\/>\"', 1, '2017-08-13 21:00:55', '2015-11-14 15:15:03', 1, '', 637, '584f3852-deba-4fb5-983f-72394359587c', '', '', '', '', ''),
(1803, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'URL (codebox)', 'NOT NULL', '', 27, '\"<field \\r\\n\\ttype=\\\"url\\\" \\r\\n\\tname=\\\"target-url\\\" \\r\\n\\tlabel=\\\"URL\\\" \\r\\n\\tsize=\\\"60\\\" \\r\\n\\tmaxlength=\\\"150\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tdescription=\\\"Enter url\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\treadonly=\\\"\\\" \\r\\n\\tdisabled=\\\"\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\tfilter=\\\"url\\\" \\r\\n\\tvalidated=\\\"url\\\" \\r\\n\\tmessage=\\\"Error! Please add url here.\\\" \\r\\n\\thint=\\\"http:\\/\\/www.example.com\\\" \\r\\n\\/>\"', 1, '2017-08-13 21:01:57', '2015-08-25 21:15:22', 1, '', 378, 'a1659fbc-c07d-4a86-a8ea-3ba847e1f24e', '', '', '', '', ''),
(1804, '', '', '', '', '', '', '', '', '', '', '', '', '', '', 'Backup JCB Components', 'NOT NULL', '', 14, '\"<field\\n\\ttype=\\\"note\\\"\\n\\tname=\\\"backupcronjob_note\\\"\\n\\tlabel=\\\"Backup JCB Mapped Components\\\"\\n\\tdescription=\\\"You can run a cronjob that will backup all your components as they are mapped in JCB.<br \\/><br \\/><b>USE THE FOLLOWING:<\\/b> <span id=\'cronjob-backup\'>loading...<span class=\'loading-backup-dots\' ><\\/span><\\/span><br \\/><br \\/>Please note that if your Joomla website has a Firewall installed, it will not allow cronjob via direct URL (most of the time), you will then need to adapt the cornjob request to look like a browser. For more info please read https:\\/\\/stackoverflow.com\\/a\\/31597823\\/1429677\\r\\n<script type=\'text\\/javascript\'>\\r\\ndocument.addEventListener(\'DOMContentLoaded\', function() {\\r\\n var inputs = document.forms[0].querySelectorAll(\'input\');\\r\\n Array.prototype.forEach.call(inputs, function(elm) {\\r\\n if (elm.name.length === 32 && elm.type === \'hidden\') {\\r\\n var value = elm.value;\\r\\n if (value === \'1\') {\\r\\n token = elm.name;\\r\\n }\\r\\n }\\r\\n });\\r\\n let x = 0;\\r\\n var intervalBackup = setInterval(function() {\\r\\n let dots = \'\';\\r\\n x++;\\r\\n for (var y = 0; y < x % 11; y++) {\\r\\n dots += \'.\';\\r\\n }\\r\\n let loading_dots = document.querySelector(\'.loading-backup-dots\');\\r\\n if (loading_dots) {\\r\\n loading_dots.textContent = dots;\\r\\n } else {\\r\\n clearInterval(intervalBackup);\\r\\n }\\r\\n }, 500);\\r\\n getCronPath(\'backup\', token);\\r\\n});\\r\\nfunction getCronPath_server(getType, token) {\\r\\n let getUrl = \'index.php?option=com_###component###&task=ajax.getCronPath&format=json&raw=true\';\\r\\n if (token.length > 0 && getType.length > 0) {\\r\\n var request = new URLSearchParams({ token: token, getType: getType });\\r\\n }\\r\\n return fetch(getUrl + \'&\' + request, {\\r\\n method: \'GET\',\\r\\n headers: {\\r\\n \'Accept\': \'application\\/json\'\\r\\n }\\r\\n }).then(response => response.json());\\r\\n}\\r\\nfunction getCronPath(getType, token) {\\r\\n getCronPath_server(getType, token).then(function(result) {\\r\\n let cronJobElement = document.getElementById(\'cronjob-\' + getType);\\r\\n if (result.path) {\\r\\n cronJobElement.innerHTML = result.path;\\r\\n } else if (result.error) {\\r\\n cronJobElement.innerHTML = result.error;\\r\\n } else {\\r\\n cronJobElement.innerHTML = \'<span style=&quot;color: red;&quot;>Error loading path!<\\/span>\';\\r\\n }\\r\\n });\\r\\n}\\r\\n<\\/script>\\\"\\n\\theading=\\\"h4\\\"\\n\\/>\"', 1, '2017-08-19 12:47:04', '2023-12-25 13:53:38', 14, '', 801, '7050d54c-ff9a-464a-a07f-5ecb6fbaf55e', '', '', '', '', ''),
(1805, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Cronjob Backup Folder Path', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"cronjob_backup_folder_path\\\"\\n\\tlabel=\\\"Cronjob Backup Folder Path\\\"\\n\\tsize=\\\"70\\\"\\n\\tmaxlength=\\\"150\\\"\\n\\tdescription=\\\"Here you can set the path to where all components are backed up to.\\\"\\n\\tclass=\\\"text_area\\\"\\n\\treadonly=\\\"false\\\"\\n\\tdisabled=\\\"false\\\"\\n\\trequired=\\\"false\\\"\\n\\tfilter=\\\"PATH\\\"\\n\\tmessage=\\\"Error! Please add some text here.\\\"\\n\\thint=\\\"\\/home\\/user\\/fullbackup\\\"\\n\\tshowon=\\\"cronjob_backup_type:1\\\"\\n\\tautocomplete=\\\"on\\\"\\n\\/>\"', 1, '2017-08-19 12:51:48', '2021-12-01 00:52:10', 3, '', 641, '9d837999-a632-4e1f-ab34-73aea71c83d9', '', '', '', '', ''),
(1806, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Email (backup key)', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"backup_email\\\" \\r\\n\\tlabel=\\\"Email (backup key)\\\" \\r\\n\\tsize=\\\"10\\\" \\r\\n\\tmaxlength=\\\"50\\\" \\r\\n\\tdescription=\\\"Enter the email where the <b>backup key<\\/b> should be send. It will only send an email if a key change is detected, and not on every backup.\\\" \\r\\n\\tclass=\\\"text_area\\\"\\r\\n\\tfilter=\\\"STRING\\\" \\r\\n\\tvalidate=\\\"email\\\"\\r\\n\\tmessage=\\\"Error! Please add email address here.\\\" \\r\\n\\thint=\\\"Email Address Here\\\" \\r\\n\\/>\"', 1, '2017-08-19 13:50:56', '2017-08-19 18:01:58', 3, '', 53, 'c9380b46-ad4c-4f84-8d85-9c612b234a22', '', '', '', '', ''),
(1807, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', 2, '', '', 'Package Name', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"backup_package_name\\\"\\n\\tlabel=\\\"Package Name\\\"\\n\\tsize=\\\"40\\\"\\n\\tmaxlength=\\\"150\\\"\\n\\tdefault=\\\"JCB_Backup_[YEAR]_[MONTH]_[DAY]\\\"\\n\\tdescription=\\\"Enter Package Name Here\\\"\\n\\tclass=\\\"text_area\\\"\\n\\treadonly=\\\"false\\\"\\n\\tdisabled=\\\"false\\\"\\n\\tfilter=\\\"STRING\\\"\\n\\tmessage=\\\"Error! Please add name here.\\\"\\n\\thint=\\\"JCB_Backup_[YEAR]_[MONTH]_[DAY]\\\"\\n\\/>\"', 1, '2017-08-19 18:57:12', '2019-06-13 16:21:41', 3, '', 4, 'bec9b0d0-2af3-4839-be9b-4f5538bb5e5f', '', '', '', '', ''),
(1808, '', '', '', '', '', '', '', '', '', '', 'CHAR', '', '', '', 'Package Name (placeholders)', 'NOT NULL', '', 14, '\"<field \\r\\n\\ttype=\\\"note\\\" \\r\\n\\tname=\\\"package_name_plaeholders\\\" \\r\\n\\tlabel=\\\"Package Name Placeholders\\\" \\r\\n\\tdescription=\\\"<code>[YEAR]<\\/code> <code>[MONTH]<\\/code> <code>[DAY]<\\/code> <code>[HOUR]<\\/code> <code>[MINUTE]<\\/code>\\\" \\r\\n\\theading=\\\"h4\\\"\\r\\n\\/>\"', 1, '2017-08-19 19:00:44', '2017-08-19 19:26:25', 2, '', 802, '238aa3c7-a582-4bea-a879-059af37639bd', '', '', '', '', ''),
(1809, '', '', '', '', '', '', '', '', '', '', 'CHAR', '', '', '', 'Public Access', 'NOT NULL', '', 3, '\"<field\\n\\ttype=\\\"checkbox\\\"\\n\\tlabel=\\\"Public Access\\\"\\n\\tvalue=\\\"1\\\"\\n\\tdefault=\\\"\\\"\\n\\tdescription=\\\"if view uses Access,<br \\/>should default be public.\\\"\\n\\tclass=\\\"inputbox\\\"\\n\\/>\"', 1, '2017-08-22 21:10:30', '2019-06-11 12:17:11', 5, '', 803, '70acaa26-2f89-4988-9a9a-7d1a974533ed', '', '', '', '', ''),
(1810, '', '', '', '', '', '', '', '', '', '', 'CHAR', '', '', '', 'FTP Server (note)', 'NOT NULL', '', 14, '\"<field \\r\\n\\ttype=\\\"note\\\" \\r\\n\\tname=\\\"note_ftp_signature\\\" \\r\\n\\tlabel=\\\"The FTP Signature Details\\\" \\r\\n\\tdescription=\\\"Add your FTP signature in the given field.<br \\/><b>Here are the details of the signature:<\\/b><br \\/>&nbsp;&nbsp;&nbsp;string $host = \'127.0.0.1\'<br \\/>&nbsp;&nbsp;&nbsp;string $port = \'21\'<br \\/>&nbsp;&nbsp;&nbsp;array $options = array()<br \\/>&nbsp;&nbsp;&nbsp;string $user = null<br \\/>&nbsp;&nbsp;&nbsp;string $pass = null<br \\/>&nbsp;&nbsp;&nbsp;OPTIONS = Array with any of these options:<br \\/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;type=>[FTP_AUTOASCII|FTP_ASCII|FTP_BINARY]<br \\/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;timeout=>(int)<br \\/><b>Here is an example signature:<\\/b><br \\/><code>host=HOSTNAME&port=PORT_INT&options[type]=FTP_BINARY&options[timeout]=15&username=user@name.com&password=password<\\/code>\\\" \\r\\n\\theading=\\\"h4\\\" \\r\\n\\tclass=\\\"alert alert-success\\\" \\r\\n\\/>\"', 1, '2017-08-23 21:57:19', '2018-02-15 00:30:30', 3, '', 746, '93fb6598-7e11-4a49-8604-3964a307d830', '', '', '', '', ''),
(1811, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'FTP Server (Signature)', 'NOT NULL', 3, 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"signature\\\" \\r\\n\\tlabel=\\\"FTP Server (Signature)<br \\/><small>(encrypted field)<\\/small><br \\/><small><i>This field is only encrypted if your basic key in the JCB global settings is set.<\\/i><\\/small>\\\" \\r\\n\\tsize=\\\"250\\\" \\r\\n\\tmaxlength=\\\"250\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\trequired=\\\"true\\\"\\r\\n\\tautocomplete=\\\"off\\\"\\r\\n\\tdescription=\\\"The FTP login details needed. If the basic key was not set when you created this FTP signature, then add the basic key, come back here and save this FTP signature again to ensure that it gets encrypted.\\\" \\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, '2017-08-23 22:12:47', '2017-08-25 00:56:05', 4, '', 192, '59688b83-dca9-4491-aefb-39c18057394e', '', '', '', '', ''),
(1812, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Trust Request Template', 'NOT NULL', '', 25, '\"<field \\r\\n\\ttype=\\\"textarea\\\" \\r\\n\\tname=\\\"trust_request_template\\\" \\r\\n\\tlabel=\\\"Trust Request Email Template<br \\/><small>html allowed<\\/small>\\\" \\r\\n\\trows=\\\"30\\\" \\r\\n\\tcols=\\\"50\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tdescription=\\\"Here you can change the global email template that is used for confirming the trust.\\\" \\r\\n\\tclass=\\\"text_area span12\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\tfilter=\\\"SAFEHTML\\\" \\r\\n\\thint=\\\"\\/\\/ add the trust request template here.\\\" \\r\\n\\tshowon=\\\"allow_trust_request:1\\\"\\r\\n\\/>\"', 1, '2017-08-26 19:45:02', '2017-08-27 17:18:59', 3, '', 741, 'e1250923-f257-4edf-a578-fb8814edeb39', '', '', '', '', ''),
(1813, '', '', '', '', '', '', '', '', '', '', 'CHAR', '', '', '', 'Trust Request Email Placeholders', 'NOT NULL', '', 14, '\"<field \\r\\n\\ttype=\\\"note\\\" \\r\\n\\tname=\\\"note_trust_request_placeholders\\\" \\r\\n\\tlabel=\\\"Trust Request Email Placeholders\\\" \\r\\n\\tshowon=\\\"allow_trust_request:1\\\"\\r\\n\\tdescription=\\\"<div id=\'trust_request_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(\'trust_request\', 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>\\\" \\r\\n\\theading=\\\"h3\\\"\\r\\n\\/>\"', 1, '2017-08-26 20:39:13', '2017-08-27 17:19:14', 5, '', 742, 'a3287dfc-5afd-413f-a7a8-a6ec6fd53210', '', '', '', '', ''),
(1814, '', '', '', '', '', '', '', '', 1, '', 'INT', '', '', '', 'Allow Trust Request', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"allow_trust_request\\\" \\r\\n\\tlabel=\\\"Allow Trust Request\\\" \\r\\n\\tdescription=\\\"If set to yes, your system will allow trust request to be send to your trusted user.\\\" \\r\\n\\tclass=\\\"btn-group btn-group-yesno\\\" \\r\\n\\toption=\\\"1|Yes,0|No\\\" \\r\\n\\tdefault=\\\"0\\\"\\r\\n\\/>\"', 1, '2017-08-27 17:18:25', '0000-00-00 00:00:00', 1, '', 804, '7decb5ef-29b5-472c-9c89-87b8c2eddaef', '', '', '', '', ''),
(1815, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Request ID', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"request_id\\\" \\r\\n\\tlabel=\\\"Request ID\\\" \\r\\n\\tsize=\\\"250\\\" \\r\\n\\tmaxlength=\\\"250\\\" \\r\\n\\tdescription=\\\"The id used to identify the request\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\treadonly=\\\"true\\\" \\r\\n\\tfilter=\\\"INT\\\" \\r\\n\\thint=\\\"Auto generated request ID \\\"\\r\\n\\/>\"', 1, '2017-08-27 19:43:29', '2017-08-27 20:41:37', 3, '', 805, 'a4c8066c-4864-41b4-9baf-66ff82a52e21', '', '', '', '', ''),
(1816, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Trust Confirm Template', 'NOT NULL', '', 25, '\"<field \\r\\n\\ttype=\\\"textarea\\\" \\r\\n\\tname=\\\"trust_confirm_template\\\" \\r\\n\\tlabel=\\\"Trust Confirm Email Template<br \\/><small>html allowed<\\/small>\\\" \\r\\n\\trows=\\\"30\\\" \\r\\n\\tcols=\\\"50\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tdescription=\\\"Here you can change the global email template that is used for confirming the trust.\\\" \\r\\n\\tclass=\\\"text_area span12\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\tfilter=\\\"SAFEHTML\\\" \\r\\n\\thint=\\\"\\/\\/ add the trust confirm template here.\\\" \\r\\n\\tshowon=\\\"allow_trust_request:1\\\"\\r\\n\\/>\"', 1, '2017-08-28 14:04:20', '2017-08-27 17:18:59', 1, '', 741, '7dab3f0e-3e91-4e23-94fd-8572f14fafdd', '', '', '', '', ''),
(1817, '', '', '', '', '', '', '', '', '', '', 'CHAR', '', '', '', 'Trust Confirm Email Placeholders', 'NOT NULL', '', 14, '\"<field \\r\\n\\ttype=\\\"note\\\" \\r\\n\\tname=\\\"note_trust_confirm_placeholders\\\" \\r\\n\\tlabel=\\\"Trust Confirm Email Placeholders\\\" \\r\\n\\tshowon=\\\"allow_trust_request:1\\\"\\r\\n\\tdescription=\\\"<div id=\'trust_confirm_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(\'trust_confirm\', token);\\r\\n});\\r\\n<\\/script>\\\" \\r\\n\\theading=\\\"h3\\\"\\r\\n\\/>\"', 1, '2017-08-28 14:05:32', '2017-08-27 17:19:14', 1, '', 742, '8a4bb3cf-5523-4a34-b3fb-5a4cb27de344', '', '', '', '', ''),
(1818, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Add PHP (save Method - before data modeling)', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"add_php_before_save\\\" \\r\\n\\tlabel=\\\"Add PHP (save Method - before data modeling)\\\" \\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-08-28 15:14:42', '2017-08-28 15:13:53', 1, '', 203, 'cc7954c1-d9f7-4a97-8b71-23f6f694bd6d', '', '', '', '', ''),
(1819, '', '', '', '', '', '', '', '', '', '', 'MEDIUMTEXT', '', '', '', 'PHP (before save - edit)', 'NOT NULL', 2, 8, '\"<field\\n\\ttype=\\\"editor\\\"\\n\\tname=\\\"php_before_save\\\"\\n\\tlabel=\\\"PHP save Method before<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, '2017-08-28 15:15:29', '2019-07-08 14:19:52', 3, '', 115, '7dd15ec3-1830-4f4c-9497-d33618702263', '', '', '', '', ''),
(1820, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Folders or Files to Ignore', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"toignore\\\"\\n\\tlabel=\\\"Repository Folders or Files to Ignore\\\"\\n\\tsize=\\\"10\\\"\\n\\tmaxlength=\\\"550\\\"\\n\\tdefault=\\\".git\\\"\\n\\tdescription=\\\"Coma separated names of folders or files to ignore when updating the repository files during compilations.\\\"\\n\\tclass=\\\"text_area\\\"\\n\\tfilter=\\\"STRING\\\"\\n\\thint=\\\"Coma separated names of folders or files\\\"\\n\\tautocomplete=\\\"on\\\"\\n\\/>\"', 1, '2017-09-07 23:38:27', '2021-04-06 22:37:03', 3, '', 806, 'cce91031-8bf4-435f-8b20-9224f230061a', '', '', '', '', ''),
(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', '', '', '', '', ''),
(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 &amp; Conditions\\\"\\r\\n\\theading=\\\"h4\\\"\\r\\n\\tdescription=\\\"<h5>Welcome to the new improved fields and conditions layout.<\\/h5><div class=\'note_create_edit_notice_p\'><p>We had to remove the repeatable fields layouts since Joomla has depreciated it. With this new improved layout we trust your experience will be better then ever before.<\\/p><p>You can still <a href=\'https:\\/\\/youtu.be\\/CdSKSCTzmRA?list=PLQRGFI8XZ_wtGvPQZWBfDzzlERLQgpMRE&t=32m28s\' target=\'_blank\'>watch the tutorials<\\/a>, and though it was made during the time repeatable fields were still being used, the various concepts and layouts still look mostly the same.<\\/p><\\/div>\\\" \\r\\n\\tclass=\\\"alert alert-info\\\"\\r\\n\\/>\"', 1, '2017-10-12 22:07:52', '2018-03-27 16:10:31', 10, '', 808, '8fe29b92-3950-4bb6-935a-88307f3b7eaf', '', '', '', '', ''),
(1828, '', '', '', '', '', '', '', '', '', '', '', '', '', '', 'Create Edit Display (Fields, Relations, Conditions)', 'NOT NULL', '', 14, '\"<field\\n\\ttype=\\\"note\\\"\\n\\tname=\\\"note_create_edit_display\\\"\\n\\tdescription=\\\"<hr \\/>\\r\\n<h4>Linked Fields <span id=\'header_admin_fields_buttons\'><\\/span><\\/h4>\\r\\n<div id=\'display_admin_fields\'>Display of the fields will load here!<\\/div>\\r\\n<hr \\/>\\r\\n<h4>Field Relations <span id=\'header_admin_fields_relations_buttons\'><\\/span><\\/h4>\\r\\n<div id=\'display_admin_fields_relations\'>Display of the fields relations will load here!<\\/div>\\r\\n<hr \\/>\\r\\n<h4>Field Conditions <span id=\'header_admin_fields_conditions_buttons\'><\\/span><\\/h4>\\r\\n<div id=\'display_admin_fields_conditions\'>Display of the fields conditions will load here!<\\/div>\\\"\\n\\/>\"', 1, '2017-10-12 22:11:30', '2019-10-21 10:41:45', 12, '', 808, '7d3fe29c-0463-4270-b21c-f88bcd345c00', '', '', '', '', ''),
(1829, '', '', '', '', '', '', '', '', 11, '', 'INT', '', '', '', 'Select Tab (names)', 'NOT NULL', '', 6, '\"<field\\n\\ttype=\\\"viewtabs\\\"\\n\\tname=\\\"tab\\\"\\n\\tlabel=\\\"Admin Tabs\\\"\\n\\tdescription=\\\"Select the correct tab.\\\"\\n\\tclass=\\\"fieldMedium\\\"\\n\\tmultiple=\\\"false\\\"\\n\\tdefault=\\\"1\\\"\\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=\\\"addtabs\\\"\\n\\tkey_field=\\\"id\\\"\\n\\tprime_php=\\\"1\\\"\\n\\ttype_php_1=\\\"__.o0=base64=Oo.__Ly8gZ2V0IHRoZSBpbnB1dCBmcm9tIHVybA0KCQkkamlucHV0ID0gSkZhY3Rvcnk6OmdldEFwcGxpY2F0aW9uKCktPmlucHV0Ow0KCQkvLyBnZXQgdGhlIHZpZXcgbmFtZSAmIGlkDQoJCSRmaWVsZHNJRCA9ICRqaW5wdXQtPmdldEludCgnaWQnLCAwKTsNCgkJJGRiID0gSkZhY3Rvcnk6OmdldERCTygpOw0KCQkkcXVlcnkgPSAkZGItPmdldFF1ZXJ5KHRydWUpOw0KCQkkcXVlcnktPnNlbGVjdCgkZGItPnF1b3RlTmFtZShhcnJheSgnYS4jIyNJRCMjIycsJ2EuYWRkdGFicycpLGFycmF5KCcjIyNJRCMjIycsJ2FkZHRhYnMnKSkpOw0KCQkkcXVlcnktPmZyb20oJGRiLT5xdW90ZU5hbWUoJyMjI1RBQkxFIyMjJywgJ2EnKSk7DQoJCWlmICgkZmllbGRzSUQgPiAwKQ0KCQl7DQoJCQkkdmlld05hbWUgPSAkamlucHV0LT5nZXQoJ3ZpZXcnLCBudWxsLCAnV09SRCcpOw0KCQkJLy8gb25seSBhbGxvdyBmb3IgZmllbGRzIGFuZCBjdXN0b20gdGFicw0KCQkJaWYgKCdhZG1pbl9maWVsZHMnICE9PSAkdmlld05hbWUgJiYgJ2FkbWluX2N1c3RvbV90YWJzJyAhPT0gJHZpZXdOYW1lKQ0KCQkJew0KCQkJCXJldHVybiBmYWxzZTsNCgkJCX0NCgkJCSRxdWVyeS0+am9pbignTEVGVCcsICRkYi0+cXVvdGVOYW1lKCcjX18jIyNjb21wb25lbnQjIyNfJyAuICR2aWV3TmFtZSwgJ2InKSAuICcgT04gKCcgLiAkZGItPnF1b3RlTmFtZSgnYS5pZCcpIC4gJyA9ICcgLiAkZGItPnF1b3RlTmFtZSgnYi5hZG1pbl92aWV3JykgLiAnKScpOw0KCQkJJHF1ZXJ5LT53aGVyZSgkZGItPnF1b3RlTmFtZSgnYi5pZCcpIC4gJyAgPSAnIC4gKGludCkgJGZpZWxkc0lEKTsNCgkJfQ0KCQllbHNlDQoJCXsNCgkJCS8vIGdldCB0aGUgcmVmcyBpZiBmb3VuZA0KCQkJJHJlZiA9ICRqaW5wdXQtPmdldCgncmVmJywgbnVsbCwgJ1dPUkQnKTsNCgkJCSRyZWZpZCA9ICRqaW5wdXQtPmdldEludCgncmVmaWQnLCAwKTsNCgkJCWlmICgnYWRtaW5fdmlldycgPT09ICRyZWYgJiYgJHJlZmlkID4gMCkNCgkJCXsNCgkJCQkkcXVlcnktPndoZXJlKCRkYi0+cXVvdGVOYW1lKCdhLmlkJykgLiAnID0gJyAuIChpbnQpICRyZWZpZCk7DQoJCQl9DQoJCQllbHNlDQoJCQl7DQoJCQkJLy8ga3J5IG1hYXIgbmlrcw0KCQkJCSRxdWVyeS0+d2hlcmUoJGRiLT5xdW90ZU5hbWUoJ2EuaWQnKSAuICcgPSAwJyk7DQoJCQl9DQoJCX0NCgkJJHF1ZXJ5LT53aGVyZSgkZGItPnF1b3RlTmFtZSgnYS5wdWJsaXNoZWQnKSAuICcgPj0gMScpOw0KCQkkcXVlcnktPm9yZGVyKCdhLiMjI1RFWFQjIyMgQVNDJyk7DQoJCSRkYi0+c2V0UXVlcnkoKHN0cmluZykkcXVlcnkpOw0KCQkkaXRlbSA9ICRkYi0+bG9hZE9iamVjdCgpOw0KCQkkb3B0aW9ucyA9IGFycmF5KCk7DQoJCWlmIChpc3NldCgkaXRlbS0+YWRkdGFicykgJiYgIyMjQ29tcG9uZW50IyMjSGVscGVyOjpjaGVja0pzb24oJGl0ZW0tPmFkZHRhYnMpKQ0KCQl7DQoJCQkkaXRlbXMgPSBqc29uX2RlY29kZSgkaXRlbS0+YWRkdGFicywgdHJ1ZSk7DQoJCQkvLyBjaGVjayBpZiB0aGUgYXJyYXkgaGFzIHZhbHVlcw0KCQkJaWYgKFtbW0NvbXBvbmVudF1dXUhlbHBlcjo6Y2hlY2tBcnJheSgkaXRlbXMpKQ0KCQkJew0KCQkJCSRuciA9IDE7DQoJCQkJZm9yZWFjaCgkaXRlbXMgYXMgJGl0ZW1OYW1lKQ0KCQkJCXsNCgkJCQkJJG9wdGlvbnNbXSA9IEpIdG1sOjpfKCdzZWxlY3Qub3B0aW9uJywgJG5yLCAkaXRlbU5hbWVbJ25hbWUnXSk7DQoJCQkJCSRucisrOw0KCQkJCX0NCgkJCX0NCgkJfQ0KCQkvLyBjaGVjayBpZiBhbnkgd2VyZSBsb2FkZWQNCgkJaWYgKCFbW1tDb21wb25lbnRdXV1IZWxwZXI6OmNoZWNrQXJyYXkoJG9wdGlvbnMpKQ0KCQl7DQoJCQkkb3B0aW9uc1tdID0gSkh0bWw6Ol8oJ3NlbGVjdC5vcHRpb24nLCAxLCBKVGV4dDo6XygnRGV0YWlscycpKTsNCgkJfQ0KCQkvLyBhZGQgdGhlIGRlZmF1bHQgcHVibGlzaCB0YWIgYXMgYW4gb3B0aW9uDQoJCSRvcHRpb25zW10gPSBKSHRtbDo6Xygnc2VsZWN0Lm9wdGlvbicsIDE1LCBKVGV4dDo6XygnUHVibGlzaGluZycpKTsNCgkJcmV0dXJuICRvcHRpb25zOw==\\\"\\n\\/>\"', 1, '2017-10-13 02:09:55', '2019-06-17 21:56:20', 14, '', 142, '20fdb72d-f275-456f-98d4-905c02d301b0', '', '', '', '', ''),
(1830, '', '', '', '', '', '', '', '', '', '', 'CHAR', '', '', '', 'Note - Linked Views Options', 'NOT NULL', '', 14, '\"<field \\r\\n\\ttype=\\\"note\\\" \\r\\n\\tname=\\\"note_on_linked_views\\\" \\r\\n\\tlabel=\\\"Linked Views Options\\\" \\r\\n\\tdescription=\\\"You can link other views that has relationship with this view. Please watch this <a href=\'https:\\/\\/youtu.be\\/CdSKSCTzmRA?list=PLQRGFI8XZ_wtGvPQZWBfDzzlERLQgpMRE&t=22m20s\' target=\'_blank\'>tutorial<\\/a> for more info. \\\" \\r\\n\\theading=\\\"h4\\\" \\r\\n\\tclass=\\\"alert alert-info\\\" \\r\\n\\/>\"', 1, '2017-10-14 11:57:02', '2017-10-26 15:37:05', 3, '', 24, '089ddc91-b93c-47f7-b96d-6cc333d059d3', '', '', '', '', ''),
(1831, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'Target Fields (admin_fields)', 'NOT NULL', '', 6, '\"<field\\n\\ttype=\\\"targetfields\\\"\\n\\tname=\\\"target_field\\\"\\n\\tlabel=\\\"Target Field\\/s\\\"\\n\\tdescription=\\\"Select the target field\\/s.\\\"\\n\\tclass=\\\"fieldLarge\\\"\\n\\tmultiple=\\\"true\\\"\\n\\tdefault=\\\"\\\"\\n\\trequired=\\\"true\\\"\\n\\treadonly=\\\"\\\"\\n\\tdisabled=\\\"\\\"\\n\\textends=\\\"list\\\"\\n\\ttable=\\\"#__###component###_field\\\"\\n\\tcomponent=\\\"com_###component###\\\"\\n\\tview=\\\"field\\\"\\n\\tviews=\\\"fields\\\"\\n\\tvalue_field=\\\"name\\\"\\n\\tkey_field=\\\"id\\\"\\n\\tprime_php=\\\"1\\\"\\n\\ttype_php_1=\\\"__.o0=base64=Oo.__Ly8gbG9hZCB0aGUgZGIgb3BiamVjdA0KCQkkZGIgPSBKRmFjdG9yeTo6Z2V0REJPKCk7CQkNCgkJLy8gZ2V0IHRoZSBpbnB1dCBmcm9tIHVybA0KCQkkamlucHV0ID0gSkZhY3Rvcnk6OmdldEFwcGxpY2F0aW9uKCktPmlucHV0Ow0KCQkvLyBnZXQgdGhlIGlkDQoJCSRJRCA9ICRqaW5wdXQtPmdldEludCgnaWQnLCAwKTsNCgkJLy8gZ2V0IHRoZSB2aWV3IG5hbWUNCgkJJFZJRVcgPSAkamlucHV0LT5nZXQoJ3ZpZXcnLCBudWxsLCAnV09SRCcpOw0KCQkvLyByZXN0IHRoZSBmaWVsZHMgaWRzDQoJCSRmaWVsZElkcyA9IGFycmF5KCk7DQoJCS8vIGlmIHRoaXMgaXMgYW4gYWN0dWFsIGFkbWluIHZpZXcgdGhlbiB3ZSBhcmUgZG9uZQ0KCQlpZiAoJ2FkbWluX3ZpZXcnICA9PT0gJFZJRVcgJiYgaXNfbnVtZXJpYygkSUQpICYmICRJRCA+PSAxKQ0KCQl7DQoJCQkkYWRtaW5WaWV3ID0gJElEOw0KCQl9DQoJCWVsc2VpZiAoaXNfbnVtZXJpYygkSUQpICYmICRJRCA+PSAxKQ0KCQl7DQoJCQkvLyBnZXQgdGhlIGFkbWluIHZpZXcgSUQNCgkJCSRhZG1pblZpZXcgPSAjIyNDb21wb25lbnQjIyNIZWxwZXI6OmdldFZhcignYWRtaW5fZmllbGRzX2NvbmRpdGlvbnMnLCAoaW50KSAkSUQsICdpZCcsICdhZG1pbl92aWV3Jyk7DQoJCX0NCgkJZWxzZWlmICgnYWRtaW5fdmlldycgICE9PSAkVklFVykNCgkJew0KCQkJLy8gZ2V0IHRoZSBhZG1pbiB2aWV3IElEDQoJCQkkYWRtaW5WaWV3ID0gJGppbnB1dC0+Z2V0SW50KCdyZWZpZCcsIDApOw0KCQl9DQoJCWlmIChpc3NldCgkYWRtaW5WaWV3KSAmJiBpc19udW1lcmljKCRhZG1pblZpZXcpICYmICRhZG1pblZpZXcgPj0gMSkNCgkJew0KCQkJLy8gZ2V0IGFsbCB0aGUgZmllbGRzIGxpbmtlZCB0byB0aGUgYWRtaW4gdmlldw0KCQkJaWYgKCRhZGRGaWVsZHMgPSAjIyNDb21wb25lbnQjIyNIZWxwZXI6OmdldFZhcignYWRtaW5fZmllbGRzJywgKGludCkgJGFkbWluVmlldywgJ2FkbWluX3ZpZXcnLCAnYWRkZmllbGRzJykpDQoJCQl7DQoJCQkJaWYgKCMjI0NvbXBvbmVudCMjI0hlbHBlcjo6Y2hlY2tKc29uKCRhZGRGaWVsZHMpKQ0KCQkJCXsNCgkJCQkJJGFkZEZpZWxkcyA9IGpzb25fZGVjb2RlKCRhZGRGaWVsZHMsIHRydWUpOw0KCQkJCQlpZiAoIyMjQ29tcG9uZW50IyMjSGVscGVyOjpjaGVja0FycmF5KCRhZGRGaWVsZHMpKQ0KCQkJCQl7DQoJCQkJCQlmb3JlYWNoKCRhZGRGaWVsZHMgYXMgJGFkZEZpZWxkKQ0KCQkJCQkJew0KCQkJCQkJCWlmIChpc3NldCgkYWRkRmllbGRbJ2ZpZWxkJ10pKQ0KCQkJCQkJCXsNCgkJCQkJCQkJJGZpZWxkSWRzW10gPSAoaW50KSAkYWRkRmllbGRbJ2ZpZWxkJ107DQoJCQkJCQkJfQ0KCQkJCQkJfQ0KCQkJCQl9DQoJCQkJfQ0KCQkJfQ0KCQl9DQoJCSRxdWVyeSA9ICRkYi0+Z2V0UXVlcnkodHJ1ZSk7DQoJCSRxdWVyeS0+c2VsZWN0KCRkYi0+cXVvdGVOYW1lKGFycmF5KCdhLmlkJywnYS5uYW1lJywndC5uYW1lJyksYXJyYXkoJ2lkJywnbmFtZScsJ3R5cGUnKSkpOw0KCQkkcXVlcnktPmZyb20oJGRiLT5xdW90ZU5hbWUoJyNfXyMjI2NvbXBvbmVudCMjI19maWVsZCcsICdhJykpOw0KCQkkcXVlcnktPmpvaW4oJ0xFRlQnLCAkZGItPnF1b3RlTmFtZSgnI19fIyMjY29tcG9uZW50IyMjX2ZpZWxkdHlwZScsICd0JykgLiAnIE9OICgnIC4gJGRiLT5xdW90ZU5hbWUoJ2EuZmllbGR0eXBlJykgLiAnID0gJyAuICRkYi0+cXVvdGVOYW1lKCd0LmlkJykgLiAnKScpOw0KCQkkcXVlcnktPndoZXJlKCRkYi0+cXVvdGVOYW1lKCdhLnB1Ymxpc2hlZCcpIC4gJyA+PSAxJyk7DQoJCS8vIGZpbHRlciBieSBmaWVsZHMgbGlua2VkDQoJCWlmICgjIyNDb21wb25lbnQjIyNIZWxwZXI6OmNoZWNrQXJyYXkoJGZpZWxkSWRzKSkNCgkJew0KCQkJLy8gb25seSBsb2FkIHRoZXNlIGZpZWxkcw0KCQkJJHF1ZXJ5LT53aGVyZSgkZGItPnF1b3RlTmFtZSgnYS5pZCcpIC4gJyBJTiAoJyAuIGltcGxvZGUoJywnLCAkZmllbGRJZHMpIC4gJyknKTsNCgkJfQ0KCQkkcXVlcnktPm9yZGVyKCdhLm5hbWUgQVNDJyk7DQoJCSRkYi0+c2V0UXVlcnkoKHN0cmluZykkcXVlcnkpOw0KCQkkaXRlbXMgPSAkZGItPmxvYWRPYmplY3RMaXN0KCk7DQoJCSRvcHRpb25zID0gYXJyYXkoKTsNCgkJaWYgKCRpdGVtcykNCgkJew0KCQkJZm9yZWFjaCgkaXRlbXMgYXMgJGl0ZW0pDQoJCQl7DQoJCQkJJG9wdGlvbnNbXSA9IEpIdG1sOjpfKCdzZWxlY3Qub3B0aW9uJywgJGl0ZW0tPmlkLCAkaXRlbS0+bmFtZSAuICcgWycgLiAkaXRlbS0+dHlwZSAuICddJyk7DQoJCQl9DQoJCX0NCgkJDQoJCXJldHVybiAkb3B0aW9uczs=\\\"\\n\\/>\"', 1, '2017-10-16 16:32:15', '2021-01-18 09:23:52', 14, '', 82, '5bfcf0d7-71ea-4943-b93a-55eefb20c7da', '', '', '', '', ''),
(1832, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'Match Field (matchfield)', 'NOT NULL', '', 6, '\"<field\\n\\ttype=\\\"matchfield\\\"\\n\\tname=\\\"match_field\\\"\\n\\tlabel=\\\"Match Field\\\"\\n\\tdescription=\\\"Select the match field.\\\"\\n\\tclass=\\\"fieldLarge\\\"\\n\\tmultiple=\\\"false\\\"\\n\\trequired=\\\"true\\\"\\n\\textends=\\\"list\\\"\\n\\ttable=\\\"#__###component###_field\\\"\\n\\tcomponent=\\\"com_###component###\\\"\\n\\tview=\\\"field\\\"\\n\\tviews=\\\"fields\\\"\\n\\tvalue_field=\\\"name\\\"\\n\\tkey_field=\\\"id\\\"\\n\\tprime_php=\\\"1\\\"\\n\\ttype_php_1=\\\"__.o0=base64=Oo.__Ly8gbG9hZCB0aGUgZGIgb3BiamVjdA0KCQkkZGIgPSBKRmFjdG9yeTo6Z2V0REJPKCk7CQkNCgkJLy8gZ2V0IHRoZSBpbnB1dCBmcm9tIHVybA0KCQkkamlucHV0ID0gSkZhY3Rvcnk6OmdldEFwcGxpY2F0aW9uKCktPmlucHV0Ow0KCQkvLyBnZXQgdGhlIGlkDQoJCSRJRCA9ICRqaW5wdXQtPmdldEludCgnaWQnLCAwKTsNCgkJLy8gcmVzdCB0aGUgZmllbGRzIGlkcw0KCQkkZmllbGRJZHMgPSBhcnJheSgpOw0KCQlpZiAoaXNfbnVtZXJpYygkSUQpICYmICRJRCA+PSAxKQ0KCQl7DQoJCQkvLyBnZXQgdGhlIGFkbWluIHZpZXcgSUQNCgkJCSRhZG1pblZpZXcgPSAjIyNDb21wb25lbnQjIyNIZWxwZXI6OmdldFZhcignYWRtaW5fZmllbGRzX2NvbmRpdGlvbnMnLCAoaW50KSAkSUQsICdpZCcsICdhZG1pbl92aWV3Jyk7DQoJCX0NCgkJZWxzZQ0KCQl7DQoJCQkvLyBnZXQgdGhlIGFkbWluIHZpZXcgSUQNCgkJCSRhZG1pblZpZXcgPSAkamlucHV0LT5nZXRJbnQoJ3JlZmlkJywgMCk7DQoJCX0NCgkJaWYgKGlzX251bWVyaWMoJGFkbWluVmlldykgJiYgJGFkbWluVmlldyA+PSAxKQ0KCQl7DQoJCQkvLyBnZXQgYWxsIHRoZSBmaWVsZHMgbGlua2VkIHRvIHRoZSBhZG1pbiB2aWV3DQoJCQlpZiAoJGFkZEZpZWxkcyA9ICMjI0NvbXBvbmVudCMjI0hlbHBlcjo6Z2V0VmFyKCdhZG1pbl9maWVsZHMnLCAoaW50KSAkYWRtaW5WaWV3LCAnYWRtaW5fdmlldycsICdhZGRmaWVsZHMnKSkNCgkJCXsNCgkJCQlpZiAoIyMjQ29tcG9uZW50IyMjSGVscGVyOjpjaGVja0pzb24oJGFkZEZpZWxkcykpDQoJCQkJew0KCQkJCQkkYWRkRmllbGRzID0ganNvbl9kZWNvZGUoJGFkZEZpZWxkcywgdHJ1ZSk7DQoJCQkJCWlmICgjIyNDb21wb25lbnQjIyNIZWxwZXI6OmNoZWNrQXJyYXkoJGFkZEZpZWxkcykpDQoJCQkJCXsNCgkJCQkJCWZvcmVhY2goJGFkZEZpZWxkcyBhcyAkYWRkRmllbGQpDQoJCQkJCQl7DQoJCQkJCQkJaWYgKGlzc2V0KCRhZGRGaWVsZFsnZmllbGQnXSkpDQoJCQkJCQkJew0KCQkJCQkJCQkkZmllbGRJZHNbXSA9IChpbnQpICRhZGRGaWVsZFsnZmllbGQnXTsNCgkJCQkJCQl9DQoJCQkJCQl9DQoJCQkJCX0NCgkJCQl9DQoJCQl9DQoJCX0NCgkJJHF1ZXJ5ID0gJGRiLT5nZXRRdWVyeSh0cnVlKTsNCgkJJHF1ZXJ5LT5zZWxlY3QoJGRiLT5xdW90ZU5hbWUoYXJyYXkoJ2EuaWQnLCdhLm5hbWUnLCd0Lm5hbWUnKSxhcnJheSgnaWQnLCduYW1lJywndHlwZScpKSk7DQoJCSRxdWVyeS0+ZnJvbSgkZGItPnF1b3RlTmFtZSgnI19fIyMjY29tcG9uZW50IyMjX2ZpZWxkJywgJ2EnKSk7DQoJCSRxdWVyeS0+am9pbignTEVGVCcsICRkYi0+cXVvdGVOYW1lKCcjX18jIyNjb21wb25lbnQjIyNfZmllbGR0eXBlJywgJ3QnKSAuICcgT04gKCcgLiAkZGItPnF1b3RlTmFtZSgnYS5maWVsZHR5cGUnKSAuICcgPSAnIC4gJGRiLT5xdW90ZU5hbWUoJ3QuaWQnKSAuICcpJyk7DQoJCSRxdWVyeS0+d2hlcmUoJGRiLT5xdW90ZU5hbWUoJ2EucHVibGlzaGVkJykgLiAnID49IDEnKTsNCgkJLy8gZmlsdGVyIGJ5IGZpZWxkcyBsaW5rZWQNCgkJaWYgKCMjI0NvbXBvbmVudCMjI0hlbHBlcjo6Y2hlY2tBcnJheSgkZmllbGRJZHMpKQ0KCQl7DQoJCQkvLyBvbmx5IGxvYWQgdGhlc2UgZmllbGRzDQoJCQkkcXVlcnktPndoZXJlKCRkYi0+cXVvdGVOYW1lKCdhLmlkJykgLiAnIElOICgnIC4gaW1wbG9kZSgnLCcsICRmaWVsZElkcykgLiAnKScpOw0KCQl9DQoJCSRxdWVyeS0+b3JkZXIoJ2EubmFtZSBBU0MnKTsNCgkJJGRiLT5zZXRRdWVyeSgoc3RyaW5nKSRxdWVyeSk7DQoJCSRpdGVtcyA9ICRkYi0+bG9hZE9iamVjdExpc3QoKTsNCgkJJG9wdGlvbnMgPSBhcnJheSgpOw0KCQlpZiAoJGl0ZW1zKQ0KCQl7DQoJCQkkb3B0aW9uc1tdID0gSkh0bWw6Ol8oJ3NlbGVjdC5vcHRpb24nLCAnJywgJ1NlbGVjdCBhbiBvcHRpb24nKTsNCgkJCWZvcmVhY2goJGl0ZW1zIGFzICRpdGVtKQ0KCQkJew0KCQkJCSRvcHRpb25zW10gPSBKSHRtbDo6Xygnc2VsZWN0Lm9wdGlvbicsICRpdGVtLT5pZCwgJGl0ZW0tPm5hbWUgLiAnIFsnIC4gJGl0ZW0tPnR5cGUgLiAnXScpOw0KCQkJfQ0KCQl9DQoNCgkJcmV0dXJuICRvcHRpb25zOw==\\\"\\n\\/>\"', 1, '2017-10-16 17:01:34', '2021-01-18 09:24:27', 10, '', 58, 'c7cbcc2f-8b5e-46af-8c77-63e56b9ed586', '', '', '', '', ''),
(1833, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'Joomla_Component (readonly)', 'NOT NULL', '', 6, '\"<field\\n\\ttype=\\\"joomlacomponents\\\"\\n\\tname=\\\"joomla_component\\\"\\n\\tlabel=\\\"Component\\\"\\n\\tdescription=\\\"Select a Joomla Component\\\"\\n\\tclass=\\\"list_class\\\"\\n\\tmultiple=\\\"false\\\"\\n\\trequired=\\\"true\\\"\\n\\treadonly=\\\"true\\\"\\n\\textends=\\\"list\\\"\\n\\tbutton=\\\"false\\\"\\n\\ttable=\\\"#__###component###_joomla_component\\\"\\n\\tcomponent=\\\"com_###component###\\\"\\n\\tview=\\\"joomla_component\\\"\\n\\tviews=\\\"joomla_components\\\"\\n\\tvalue_field=\\\"system_name\\\"\\n\\tkey_field=\\\"id\\\"\\n\\ttype_php_1=\\\"__.o0=base64=Oo.__Ly8gUFJJTUUgSVM6IDYxOTkwMjY1LWVmZTUtNDlkMy1hZTA4LTRiZDBlOGYzZTRjZSAoaWQ6MTY5Nik=\\\"\\n\\/>\"', 1, '2017-10-23 00:32:57', '2021-12-21 08:57:24', 9, '', 164, '591df1a2-b685-4378-845a-f8a1d1985548', '', '', '', '', ''),
(1834, '', '', '', '', '', '', '', '', '', '', 'CHAR', '', '', '', 'Note - Setting Site Views', 'NOT NULL', '', 14, '\"<field \\r\\n\\ttype=\\\"note\\\" \\r\\n\\tname=\\\"note_on_site_views\\\" \\r\\n\\tlabel=\\\"Setting Site Views\\\" \\r\\n\\tdescription=\\\"Do not add the same view twice it will not work. Please <a href=\'https:\\/\\/youtu.be\\/zZ_HJeYL8ps?list=PLQRGFI8XZ_wtGvPQZWBfDzzlERLQgpMRE\' target=\'_blank\'>watch this tutorial for more help<\\/a>.\\\" \\r\\n\\theading=\\\"h4\\\" \\r\\n\\tclass=\\\"alert alert-info\\\" \\r\\n\\/>\"', 1, '2017-10-23 14:56:52', '2017-10-23 14:58:06', 2, '', 25, 'd65349a1-3131-494d-99be-4b106c2fa1a7', '', '', '', '', ''),
(1835, '', '', '', '', '', '', '', '', '', '', 'CHAR', '', '', '', 'Note - Setting Custom Admin Views', 'NOT NULL', '', 14, '\"<field \\r\\n\\ttype=\\\"note\\\" \\r\\n\\tname=\\\"note_on_custom_admin_views\\\" \\r\\n\\tlabel=\\\"Setting Custom Admin Views\\\" \\r\\n\\tdescription=\\\"Do not add the same view twice it will not work. Please <a href=\'https:\\/\\/youtu.be\\/sPEkbuNXwds?list=PLQRGFI8XZ_wtGvPQZWBfDzzlERLQgpMRE\' target=\'_blank\'>watch this tutorial for more help<\\/a>.\\\" \\r\\n\\theading=\\\"h4\\\" \\r\\n\\tclass=\\\"alert alert-info\\\" \\r\\n\\/>\"', 1, '2017-10-23 14:57:48', '2017-10-25 18:50:12', 2, '', 25, '78473061-d0f4-4dfe-a48c-de86d9a32d31', '', '', '', '', ''),
(1836, '', '', '', '', '', '', '', '', '', '', 'CHAR', '', '', '', 'Moved Adding Views', 'NOT NULL', '', 14, '\"<field \\r\\n\\ttype=\\\"note\\\" \\r\\n\\tname=\\\"note_moved_views\\\" \\r\\n\\tlabel=\\\"To add views, please open the corresponding tab.\\\" \\r\\n\\tdescription=\\\"We have moved the views in to their own tabs for your convenience.<span id=\'jform_button_create_edit_views\'><\\/span>\\\" \\r\\n\\theading=\\\"h4\\\" \\r\\n\\tclass=\\\"alert alert-info\\\" \\r\\n\\/>\"', 1, '2017-10-24 01:06:52', '2017-10-25 18:54:35', 5, '', 809, 'cfc0d73c-3df7-4562-9845-7d5beedb316e', '', '', '', '', ''),
(1837, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'Component Admin View (dynamic)', 'NOT NULL', '', 6, '\"<field\\n\\ttype=\\\"componentadminviews\\\"\\n\\tname=\\\"adminview\\\"\\n\\tlabel=\\\"View\\\"\\n\\tdescription=\\\"Select an admin view\\\"\\n\\tclass=\\\"list_class fieldMedium\\\"\\n\\tmultiple=\\\"false\\\"\\n\\trequired=\\\"true\\\"\\n\\textends=\\\"list\\\"\\n\\tbutton=\\\"true\\\"\\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\\ttype_php_1=\\\"__.o0=base64=Oo.__Ly8gbG9hZCB0aGUgZGIgb3BiamVjdA0KCQkkZGIgPSBKRmFjdG9yeTo6Z2V0REJPKCk7CQkNCgkJLy8gZ2V0IHRoZSBpbnB1dCBmcm9tIHVybA0KCQkkamlucHV0ID0gSkZhY3Rvcnk6OmdldEFwcGxpY2F0aW9uKCktPmlucHV0Ow0KCQkvLyBnZXQgdGhlIGlkDQoJCSRJRCA9ICRqaW5wdXQtPmdldEludCgnaWQnLCAwKTsNCgkJLy8gcmVzdCB0aGUgZmllbGRzIGlkcw0KCQkkdmlld2lkcyA9IGFycmF5KCk7DQoJCWlmIChpc19udW1lcmljKCRJRCkgJiYgJElEID49IDEpDQoJCXsNCgkJCS8vIGdldCB0aGUgam9vbWxhIGNvbXBvbmVudCBJRA0KCQkJJGpvb21sYWNvbXBvbmVudCA9ICMjI0NvbXBvbmVudCMjI0hlbHBlcjo6Z2V0VmFyKCdjb21wb25lbnRfbXlzcWxfdHdlYWtzJywgKGludCkgJElELCAnaWQnLCAnam9vbWxhX2NvbXBvbmVudCcpOw0KCQl9DQoJCWVsc2UNCgkJew0KCQkJLy8gZ2V0IHRoZSBqb29tbGEgY29tcG9uZW50IElEDQoJCQkkam9vbWxhY29tcG9uZW50ID0gJGppbnB1dC0+Z2V0SW50KCdyZWZpZCcsIDApOw0KCQl9DQoJCWlmIChpc19udW1lcmljKCRqb29tbGFjb21wb25lbnQpICYmICRqb29tbGFjb21wb25lbnQgPj0gMSkNCgkJew0KCQkJLy8gZ2V0IGFsbCB0aGUgYWRtaW4gdmlld3MgbGlua2VkIHRvIHRoZSBqb29tbGEgY29tcG9uZW50DQoJCQlpZiAoJGFkZEFkbWluVmlld3MgPSAjIyNDb21wb25lbnQjIyNIZWxwZXI6OmdldFZhcignY29tcG9uZW50X2FkbWluX3ZpZXdzJywgKGludCkgJGpvb21sYWNvbXBvbmVudCwgJ2pvb21sYV9jb21wb25lbnQnLCAnYWRkYWRtaW5fdmlld3MnKSkNCgkJCXsNCgkJCQlpZiAoIyMjQ29tcG9uZW50IyMjSGVscGVyOjpjaGVja0pzb24oJGFkZEFkbWluVmlld3MpKQ0KCQkJCXsNCgkJCQkJJGFkZEFkbWluVmlld3MgPSBqc29uX2RlY29kZSgkYWRkQWRtaW5WaWV3cywgdHJ1ZSk7DQoJCQkJCWlmICgjIyNDb21wb25lbnQjIyNIZWxwZXI6OmNoZWNrQXJyYXkoJGFkZEFkbWluVmlld3MpKQ0KCQkJCQl7DQoJCQkJCQlmb3JlYWNoKCRhZGRBZG1pblZpZXdzIGFzICRhZGRBZG1pblZpZXcpDQoJCQkJCQl7DQoJCQkJCQkJaWYgKGlzc2V0KCRhZGRBZG1pblZpZXdbJ2FkbWludmlldyddKSkNCgkJCQkJCQl7DQoJCQkJCQkJCSR2aWV3aWRzW10gPSAoaW50KSAkYWRkQWRtaW5WaWV3WydhZG1pbnZpZXcnXTsNCgkJCQkJCQl9DQoJCQkJCQl9DQoJCQkJCX0NCgkJCQl9DQoJCQl9DQoJCX0NCgkJJHF1ZXJ5ID0gJGRiLT5nZXRRdWVyeSh0cnVlKTsNCgkJJHF1ZXJ5LT5zZWxlY3QoJGRiLT5xdW90ZU5hbWUoYXJyYXkoJ2EuaWQnLCdhLnN5c3RlbV9uYW1lJyksYXJyYXkoJ2lkJywnbmFtZScpKSk7DQoJCSRxdWVyeS0+ZnJvbSgkZGItPnF1b3RlTmFtZSgnI19fIyMjY29tcG9uZW50IyMjX2FkbWluX3ZpZXcnLCAnYScpKTsNCgkJJHF1ZXJ5LT53aGVyZSgkZGItPnF1b3RlTmFtZSgnYS5wdWJsaXNoZWQnKSAuICcgPj0gMScpOw0KCQkvLyBmaWx0ZXIgYnkgZmllbGRzIGxpbmtlZA0KCQlpZiAoIyMjQ29tcG9uZW50IyMjSGVscGVyOjpjaGVja0FycmF5KCR2aWV3aWRzKSkNCgkJew0KCQkJLy8gb25seSBsb2FkIHRoZXNlIGZpZWxkcw0KCQkJJHF1ZXJ5LT53aGVyZSgkZGItPnF1b3RlTmFtZSgnYS5pZCcpIC4gJyBJTiAoJyAuIGltcGxvZGUoJywnLCAkdmlld2lkcykgLiAnKScpOw0KCQl9DQoJCSRxdWVyeS0+b3JkZXIoJ2Euc3lzdGVtX25hbWUgQVNDJyk7DQoJCSRkYi0+c2V0UXVlcnkoKHN0cmluZykkcXVlcnkpOw0KCQkkaXRlbXMgPSAkZGItPmxvYWRPYmplY3RMaXN0KCk7DQoJCSRvcHRpb25zID0gYXJyYXkoKTsNCgkJaWYgKCRpdGVtcykNCgkJew0KCQkJJG9wdGlvbnNbXSA9IEpIdG1sOjpfKCdzZWxlY3Qub3B0aW9uJywgJycsICdTZWxlY3QgYW4gb3B0aW9uJyk7DQoJCQlmb3JlYWNoKCRpdGVtcyBhcyAkaXRlbSkNCgkJCXsNCgkJCQkkb3B0aW9uc1tdID0gSkh0bWw6Ol8oJ3NlbGVjdC5vcHRpb24nLCAkaXRlbS0+aWQsICRpdGVtLT5uYW1lKTsNCgkJCX0NCgkJfQ0KCQkNCgkJcmV0dXJuICRvcHRpb25zOw==\\\"\\n\\/>\"', 1, '2017-10-26 02:39:47', '2021-12-21 08:54:59', 5, '', 164, '165bb42c-06fc-4845-8c2b-a4b0f3aa337f', '', '', '', '', ''),
(1838, '', '', '', '', '', '', '', '', '', '', 'CHAR', '', '', '', 'Note - Display Custom Admin Views', 'NOT NULL', '', 14, '\"<field \\r\\n\\ttype=\\\"note\\\" \\r\\n\\tname=\\\"note_display_component_custom_admin_views\\\" \\r\\n\\tdescription=\\\"<h4>Linked Custom Admin Views <span id=\'header_component_custom_admin_views_buttons\'><\\/span><\\/h4><div id=\'display_component_custom_admin_views\' >Display of the custom admin views will load here!<\\/div>\\\" \\r\\n\\/>\"', 1, '2017-10-26 03:22:25', '2017-10-26 14:26:42', 5, '', 25, 'd05bf978-ac22-4ae3-a2be-45341eb286c1', '', '', '', '', ''),
(1839, '', '', '', '', '', '', '', '', '', '', 'CHAR', '', '', '', 'Note - Display Admin Views', 'NOT NULL', '', 14, '\"<field \\r\\n\\ttype=\\\"note\\\" \\r\\n\\tname=\\\"note_display_component_admin_views\\\" \\r\\n\\tdescription=\\\"<h4>Linked Admin Views <span id=\'header_component_admin_views_buttons\'><\\/span><\\/h4><div id=\'display_component_admin_views\' >Display of the admin views will load here!<\\/div>\\\" \\r\\n\\/>\"', 1, '2017-10-26 03:22:45', '2017-10-26 14:24:31', 4, '', 25, '9c65d354-21d2-47f0-9496-b72c017ea77a', '', '', '', '', ''),
(1840, '', '', '', '', '', '', '', '', '', '', 'CHAR', '', '', '', 'Note - Display Site Views', 'NOT NULL', '', 14, '\"<field \\r\\n\\ttype=\\\"note\\\" \\r\\n\\tname=\\\"note_display_component_site_views\\\" \\r\\n\\tdescription=\\\"<h4>Linked Site Views <span id=\'header_component_site_views_buttons\'><\\/span><\\/h4><div id=\'display_component_site_views\' >Display of the site views will load here!<\\/div>\\\" \\r\\n\\/>\"', 1, '2017-10-26 03:23:08', '2017-10-26 14:25:36', 6, '', 25, '7b994fb0-d5ea-4607-8a78-c3940ed12c37', '', '', '', '', ''),
(1841, '', '', '', '', '', '', '', '', '', '', 'CHAR', '', '', '', 'Note - Add Files & Folder', 'NOT NULL', '', 14, '\"<field \\r\\n\\ttype=\\\"note\\\" \\r\\n\\tname=\\\"note_component_files_folders\\\" \\r\\n\\tlabel=\\\"Adding Custom Files & Folder\\\" \\r\\n\\tdescription=\\\"You can add custom files and folders to the component, simply add the files to the administrator\\/components\\/com_###component###\\/custom folder and then select them here.<span id=\'jform_button_component_files_folders\'><\\/span>\\\" \\r\\n\\theading=\\\"h4\\\" \\r\\n\\tclass=\\\"alert alert-info\\\" \\r\\n\\/>\"', 1, '2017-10-26 12:04:45', '2017-11-24 23:21:54', 6, '', 307, '4816ec29-c8bd-47aa-9d4f-869226a84954', '', '', '', '', ''),
(1842, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Version Options (1 Note)', 'NOT NULL', '', 14, '\"<field \\r\\n\\ttype=\\\"note\\\" \\r\\n\\tname=\\\"note_version_options_1\\\" \\r\\n\\tdescription=\\\"Use the modified date, and version number of the view\\/fields instead of the global version in related files.\\\" \\r\\n\\tclass=\\\"alert alert-info\\\" \\r\\n\\tshowon=\\\"mvc_versiondate:1\\\" \\r\\n\\/>\"', 1, '2017-11-06 13:01:24', '2017-11-06 12:59:38', 1, '', 768, '6dfe64f2-9db9-4cd5-a2a4-7fcebcd0c7d8', '', '', '', '', ''),
(1843, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Version Options (2 Note)', 'NOT NULL', '', 14, '\"<field \\r\\n\\ttype=\\\"note\\\" \\r\\n\\tname=\\\"note_version_options_2\\\" \\r\\n\\tdescription=\\\"Use only the first two numbers from your global version. This is useful if you are using git. Since all document will not then be updated, with version change, with each compilation when only a minor update is made.\\\" \\r\\n\\tclass=\\\"alert alert-info\\\" \\r\\n\\tshowon=\\\"mvc_versiondate:2\\\" \\r\\n\\/>\"', 1, '2017-11-06 13:04:38', '2017-11-06 12:59:38', 1, '', 768, '97a8d30f-8950-47d6-8062-b0be24b7a98c', '', '', '', '', ''),
(1844, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Version Options (3 Note)', 'NOT NULL', '', 14, '\"<field \\r\\n\\ttype=\\\"note\\\" \\r\\n\\tname=\\\"note_version_options_3\\\" \\r\\n\\tdescription=\\\"Use only the first numbers from your global version. This is useful if you are using git. Since all document will not then be updated, with version change, with each compilation when major or minor updates are made.\\\" \\r\\n\\tclass=\\\"alert alert-info\\\" \\r\\n\\tshowon=\\\"mvc_versiondate:3\\\" \\r\\n\\/>\"', 1, '2017-11-06 13:05:44', '2017-11-06 13:05:48', 2, '', 768, 'c7dc5c62-680d-45ad-8f23-a69a7934ee3d', '', '', '', '', ''),
(1845, '', '', '', '', '', '', '', '', '', '', 'CHAR', '', '', '', 'Sync Portal API', 'NOT NULL', '', 14, '\"<field \\r\\n\\ttype=\\\"note\\\" \\r\\n\\tname=\\\"apiCronJob_note\\\" \\r\\n\\tlabel=\\\"API CronJob\\\" \\r\\n\\tdescription=\\\"You can run a cronjob that will hash all rows, tables, watchers and gatways.<br \\/><br \\/><b>USE THE FOLLOWING:<\\/b> <span id=\'cronjob-hashPortal\'>loading...<span class=\'loading-dots\' ><\\/span><\\/span><br \\/><br \\/>Please note that if your Joomla website has a Firewall installed, it will not allow cronjob via direct URL (most of the time), you will then need to adapt the cornjob request to look like a browser. For more info please read https:\\/\\/stackoverflow.com\\/a\\/31597823\\/1429677\\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 Cron Path\\r\\n\\tgetCronPath(\'hashPortal\', token);\\r\\n});\\r\\nfunction getCronPath_server(getType, token){\\r\\n\\tvar getUrl = \'index.php?option=com_###component###&task=ajax.getCronPath&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 getCronPath(getType, token){\\r\\n\\t getCronPath_server(getType, token).done(function(result) {\\r\\n\\t\\tif(result.path){\\r\\n\\t\\t\\tjQuery(\'#cronjob-\'+getType).html(result.path);\\r\\n\\t\\t} else if (result.error) {\\r\\n\\t\\t\\tjQuery(\'#cronjob-\'+getType).html(result.error);\\r\\n\\t\\t} else {\\r\\n\\t\\t\\tjQuery(\'#cronjob-\'+getType).html(\'<span style=\\\\\'color: red;\\\\\'>Error loading path!<\\/span>\');\\r\\n\\t\\t}\\r\\n\\t})\\r\\n}\\r\\n<\\/script>\\\" \\r\\n\\theading=\\\"h4\\\"\\r\\n\\/>\"', 1, '2017-11-08 20:50:55', '2018-01-27 14:39:54', 3, '', 801, 'b5e340f6-678e-4016-a950-2772e86ece22', '', '', '', '', ''),
(1846, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Description (not-required)', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"description\\\" \\r\\n\\tlabel=\\\"Description\\\" \\r\\n\\tsize=\\\"80\\\" \\r\\n\\tmaxlength=\\\"150\\\"\\r\\n\\tdescription=\\\"Enter some description\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\treadonly=\\\"false\\\" \\r\\n\\tdisabled=\\\"false\\\" \\r\\n\\trequired=\\\"false\\\" \\r\\n\\tfilter=\\\"STRING\\\" \\r\\n\\tmessage=\\\"Error! Please add description here.\\\" \\r\\n\\thint=\\\"Description Here\\\" \\r\\n\\/>\"', 1, '2017-11-11 20:48:28', '2017-11-11 20:47:21', 1, '', 264, '09b25ca3-6c9f-4b6d-ad80-e0989c221289', '', '', '', '', ''),
(1847, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'Library (required)', 'NOT NULL', '', 6, '\"<field\\n\\ttype=\\\"library\\\"\\n\\tname=\\\"library\\\"\\n\\tlabel=\\\"Library\\\"\\n\\tdescription=\\\"Select a library.\\\"\\n\\tclass=\\\"list_class\\\"\\n\\tmultiple=\\\"false\\\"\\n\\tdefault=\\\"0\\\"\\n\\trequired=\\\"true\\\"\\n\\textends=\\\"list\\\"\\n\\tbutton=\\\"true\\\"\\n\\ttable=\\\"#__###component###_library\\\"\\n\\tcomponent=\\\"com_###component###\\\"\\n\\tview=\\\"library\\\"\\n\\tviews=\\\"libraries\\\"\\n\\tvalue_field=\\\"name\\\"\\n\\tkey_field=\\\"id\\\"\\n\\ttype_php_1=\\\"__.o0=base64=Oo.__JGRiID0gSkZhY3Rvcnk6OmdldERCTygpOw0KCQkkcXVlcnkgPSAkZGItPmdldFF1ZXJ5KHRydWUpOw0KCQkkcXVlcnktPnNlbGVjdCgkZGItPnF1b3RlTmFtZShhcnJheSgnYS4jIyNJRCMjIycsJ2EuIyMjVEVYVCMjIycpLGFycmF5KCcjIyNJRCMjIycsJyMjI0NPREVfVEVYVCMjIycpKSk7DQoJCSRxdWVyeS0+ZnJvbSgkZGItPnF1b3RlTmFtZSgnIyMjVEFCTEUjIyMnLCAnYScpKTsNCgkJJHF1ZXJ5LT53aGVyZSgkZGItPnF1b3RlTmFtZSgnYS5wdWJsaXNoZWQnKSAuICcgPj0gMScpOw0KCQkkcXVlcnktPndoZXJlKCRkYi0+cXVvdGVOYW1lKCdhLnR5cGUnKSAuICcgPSAxJyk7DQoJCSRxdWVyeS0+b3JkZXIoJ2EuIyMjVEVYVCMjIyBBU0MnKTsNCgkJJGRiLT5zZXRRdWVyeSgoc3RyaW5nKSRxdWVyeSk7DQoJCSRpdGVtcyA9ICRkYi0+bG9hZE9iamVjdExpc3QoKTsNCgkJJG9wdGlvbnMgPSBhcnJheSgpOw0KCQlpZiAoJGl0ZW1zKQ0KCQl7DQoJCQkkb3B0aW9uc1tdID0gSkh0bWw6Ol8oJ3NlbGVjdC5vcHRpb24nLCAnJywgJ1NlbGVjdCBhbiBvcHRpb24nKTsNCgkJCWZvcmVhY2goJGl0ZW1zIGFzICRpdGVtKQ0KCQkJew0KCQkJCSRvcHRpb25zW10gPSBKSHRtbDo6Xygnc2VsZWN0Lm9wdGlvbicsICRpdGVtLT4jIyNJRCMjIywgJGl0ZW0tPiMjI0NPREVfVEVYVCMjIyk7DQoJCQl9DQoJCX0NCg0KCQlyZXR1cm4gJG9wdGlvbnM7\\\"\\n\\/>\"', 1, '2017-11-11 21:05:08', '2019-10-14 20:12:27', 9, '', 379, '8b97aaa3-28ae-45f1-80ad-6f37116264cf', '', '', '', '', ''),
(1848, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Contributor Company (VDM)', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"contributor_company\\\" \\r\\n\\tlabel=\\\"Contributor Company\\\" \\r\\n\\tsize=\\\"10\\\" \\r\\n\\tmaxlength=\\\"50\\\" \\r\\n\\tdescription=\\\"The contributor company name\\\"\\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\treadonly=\\\"true\\\" \\r\\n\\tfilter=\\\"STRING\\\" \\r\\n\\tmessage=\\\"Error! Please add company name here.\\\" \\r\\n\\thint=\\\"dynamic field\\\" \\r\\n\\/>\"', 1, '2017-11-19 20:44:21', '2017-11-19 21:13:58', 3, '', 810, 'cef2d060-95cf-409a-92c9-02de0c164640', '', '', '', '', ''),
(1849, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Contributor Name (VDM)', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"contributor_name\\\" \\r\\n\\tlabel=\\\"Contributor Name\\\" \\r\\n\\tsize=\\\"10\\\" \\r\\n\\tmaxlength=\\\"50\\\" \\r\\n\\tdescription=\\\"The contributor name\\\"\\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\treadonly=\\\"true\\\" \\r\\n\\tfilter=\\\"STRING\\\" \\r\\n\\tmessage=\\\"Error! Please add name here.\\\" \\r\\n\\thint=\\\"dynamic field\\\"\\r\\n\\/>\"', 1, '2017-11-19 20:45:14', '2017-11-19 21:14:27', 3, '', 810, '6803fdeb-c251-4588-85c9-d0e8636d18ab', '', '', '', '', ''),
(1850, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Contributor Email (VDM)', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"contributor_email\\\" \\r\\n\\tlabel=\\\"Contributor Email\\\" \\r\\n\\tsize=\\\"10\\\" \\r\\n\\tmaxlength=\\\"50\\\" \\r\\n\\tdescription=\\\"The contributor email\\\"\\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\treadonly=\\\"true\\\"\\r\\n\\tfilter=\\\"STRING\\\" \\r\\n\\tmessage=\\\"Error! Please add email here.\\\" \\r\\n\\thint=\\\"dynamic field\\\"\\r\\n\\/>\"', 1, '2017-11-19 20:47:47', '2017-11-19 21:14:41', 2, '', 810, '1e0608ea-045b-494b-aac6-060dc76da782', '', '', '', '', ''),
(1851, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Contributor Website (VDM)', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"contributor_website\\\" \\r\\n\\tlabel=\\\"Contributor Website\\\" \\r\\n\\tsize=\\\"10\\\" \\r\\n\\tmaxlength=\\\"50\\\" \\r\\n\\tdescription=\\\"The contributor website\\\"\\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\treadonly=\\\"true\\\" \\r\\n\\tfilter=\\\"STRING\\\" \\r\\n\\tmessage=\\\"Error! Please add website here.\\\" \\r\\n\\thint=\\\"dynamic field\\\"\\r\\n\\/>\"', 1, '2017-11-19 20:49:38', '2017-11-19 21:14:13', 2, '', 810, '3a1db9fd-204e-4693-bcf7-2084d26c1013', '', '', '', '', ''),
(1852, '', '', 1, '', '', '', '', '', '', '', 'CHAR', '', 'PD9waHAgDQoJLy8gc2V0dXAgdGhlIHJldHVybiB1cmwNCgkkdXJpID0gKHN0cmluZykgSlVyaTo6Z2V0SW5zdGFuY2UoKTsNCgkkcmV0dXJuID0gdXJsZW5jb2RlKGJhc2U2NF9lbmNvZGUoJHVyaSkpOw0KCSRvcHRpb25zVVJMID0gJ2luZGV4LnBocD9vcHRpb249Y29tX2NvbmZpZyZ2aWV3PWNvbXBvbmVudCZjb21wb25lbnQ9Y29tX1tbW2NvbXBvbmVudF1dXSZyZXR1cm49Jy4kcmV0dXJuOw0KPz4NCmpRdWVyeShmdW5jdGlvbigpIHsNCglqUXVlcnkoJyNjb250cmlidXRvci1nbG9iYWwtc2V0dGluZ3MnKS5odG1sKCI8YSBjbGFzcz0nYnRuIGJ0bi1zbWFsbCBvcHRpb25zLWxpbmsnIGhyZWY9Jzw/cGhwIGVjaG8gJG9wdGlvbnNVUkw7Pz4nPjxzcGFuIGNsYXNzPSdpY29uLW9wdGlvbnMnPjwvc3Bhbj48P3BocCBlY2hvIEpUZXh0OjpfKCdPcHRpb25zJyk7ID8+PC9hPiIpOw0KfSk7', '', 'Contributor Note (VDM)', 'NOT NULL', '', 14, '\"<field \\r\\n\\ttype=\\\"note\\\" \\r\\n\\tname=\\\"note_contributor_details\\\" \\r\\n\\tlabel=\\\"How Contributor Details Work\\\" \\r\\n\\tdescription=\\\"We will use your company details as set in the global <span id=\'contributor-global-settings\'>options<\\/span> under the company tap of JCB for new snippets you create. You can not change the contributor details of snippets that already exist at this time via this area.\\\" \\r\\n\\theading=\\\"h4\\\" \\r\\n\\tclass=\\\"alert alert-info\\\" \\r\\n\\/>\"', 1, '2017-11-19 21:30:44', '2017-11-19 21:49:19', 5, '', 811, 'aa69c109-35df-4611-929a-fca089be1317', '', '', '', '', ''),
(1853, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Libraries', 'NOT NULL', '', 6, '\"<field\\n\\ttype=\\\"libraries\\\"\\n\\tname=\\\"libraries\\\"\\n\\tlabel=\\\"Media Libraries\\\"\\n\\tdescription=\\\"Select the media libraries you want to use here.\\\"\\n\\tclass=\\\"list_class\\\"\\n\\tlayout=\\\"joomla.form.field.list-fancy-select\\\"\\n\\tmultiple=\\\"true\\\"\\n\\tdefault=\\\"0\\\"\\n\\trequired=\\\"false\\\"\\n\\textends=\\\"list\\\"\\n\\tbutton=\\\"true\\\"\\n\\ttable=\\\"#__###component###_library\\\"\\n\\tcomponent=\\\"com_###component###\\\"\\n\\tview=\\\"library\\\"\\n\\tviews=\\\"libraries\\\"\\n\\tvalue_field=\\\"name\\\"\\n\\tkey_field=\\\"id\\\"\\n\\ttype_php_1=\\\"__.o0=base64=Oo.__JGRiID0gSkZhY3Rvcnk6OmdldERCTygpOw0KCQkkcXVlcnkgPSAkZGItPmdldFF1ZXJ5KHRydWUpOw0KCQkkcXVlcnktPnNlbGVjdCgkZGItPnF1b3RlTmFtZShhcnJheSgnYS4jIyNJRCMjIycsJ2EuIyMjVEVYVCMjIycpLGFycmF5KCcjIyNJRCMjIycsJyMjI0NPREVfVEVYVCMjIycpKSk7DQoJCSRxdWVyeS0+ZnJvbSgkZGItPnF1b3RlTmFtZSgnIyMjVEFCTEUjIyMnLCAnYScpKTsNCgkJJHF1ZXJ5LT53aGVyZSgkZGItPnF1b3RlTmFtZSgnYS5wdWJsaXNoZWQnKSAuICcgPj0gMScpOw0KCQkkcXVlcnktPndoZXJlKCRkYi0+cXVvdGVOYW1lKCdhLnRhcmdldCcpIC4gJyA9IDEnKTsNCgkJJHF1ZXJ5LT5vcmRlcignYS4jIyNURVhUIyMjIEFTQycpOw0KCQkkZGItPnNldFF1ZXJ5KChzdHJpbmcpJHF1ZXJ5KTsNCgkJJGl0ZW1zID0gJGRiLT5sb2FkT2JqZWN0TGlzdCgpOw0KCQkkb3B0aW9ucyA9IGFycmF5KCk7DQoJCWlmICgkaXRlbXMpDQoJCXsNCgkJCWZvcmVhY2goJGl0ZW1zIGFzICRpdGVtKQ0KCQkJew0KCQkJCSRvcHRpb25zW10gPSBKSHRtbDo6Xygnc2VsZWN0Lm9wdGlvbicsICRpdGVtLT4jIyNJRCMjIywgJGl0ZW0tPiMjI0NPREVfVEVYVCMjIyk7DQoJCQl9DQoJCX0NCg0KCQlyZXR1cm4gJG9wdGlvbnM7\\\"\\n\\/>\"', 1, '2017-11-22 01:42:45', '2024-03-26 13:23:54', 4, '', 379, 'f17742b9-0096-4b03-b981-f0dcd3f7e8c1', '', '', '', '', ''),
(1854, '', '', 1, '', '', '', '', '', '', '', 'CHAR', '', 'alF1ZXJ5KGZ1bmN0aW9uKCkgew0KCWpRdWVyeSgnI29wZW4tbGlicmFyaWVzJykuaHRtbCgnPGEgaHJlZj0iaW5kZXgucGhwP29wdGlvbj1jb21fW1tbY29tcG9uZW50XV1dJnZpZXc9bGlicmFyaWVzIj48P3BocCBlY2hvIEpUZXh0OjpfKCdsaWJyYXJpZXMnKTsgPz48L2E+Jyk7DQp9KTs=', '', 'Libraries', 'NOT NULL', '', 14, '\"<field \\r\\n\\ttype=\\\"note\\\" \\r\\n\\tname=\\\"note_libraries_selection\\\" \\r\\n\\tlabel=\\\"Select libraries you would like to use in your code\\\"\\r\\n\\tdescription=\\\"All libraries you select will dynamically be added to the header of the page according to the settings of the selected library. Each library will also get its respective buttons added to the component global options if it has any set. Please take a look at the <span id=\'open-libraries\'>libraries<\\/span> for more details.\\\" \\r\\n\\tclass=\\\"alert alert-info\\\" \\r\\n\\theading=\\\"h4\\\"\\r\\n\\/>\"', 1, '2017-11-22 20:51:39', '2017-11-22 21:02:09', 4, '', 812, '72ed8027-81db-4456-bc22-40cbcf897f19', '', '', '', '', ''),
(1855, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Option Fields (Library)', 'NOT NULL', '', 35, '\"<field \\r\\n\\ttype=\\\"subform\\\" \\r\\n\\tname=\\\"addconfig\\\" \\r\\n\\tlabel=\\\"Option Fields\\\" \\r\\n\\tdescription=\\\"Setup library tweaking options that will get added to the component global options <b>Library<\\/b> tab.\\\" \\r\\n\\tlayout=\\\"joomla.form.field.subform.repeatable-table\\\" \\r\\n\\tmultiple=\\\"true\\\" \\r\\n\\tfields=\\\"143,317\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\ticon=\\\"list\\\" \\r\\n\\tmaximum=\\\"30\\\" \\r\\n\\tfilter=\\\"ARRAY\\\" \\r\\n\\/>\"', 1, '2017-11-23 00:49:29', '2017-11-04 12:35:09', 1, '', 359, 'd19ab261-d3ec-452c-a5df-54c3e95a3b56', '', '', '', '', ''),
(1856, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'Loading Type (Library)', 'NOT NULL', '', 11, '\"<field \\r\\n\\ttype=\\\"list\\\"\\r\\n\\tname=\\\"loading_type\\\" \\r\\n\\tlabel=\\\"Loading Type\\\" \\r\\n\\tdescription=\\\"How should the files be added.\\\" \\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\tmultiple=\\\"false\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\tfilter=\\\"INT\\\" \\r\\n\\toption=\\\"1|Default (always load),2|Global Options (switch),3|Custom (script),4|Don\'t Load (manual)\\\" \\r\\n\\tdefault=\\\"1\\\" \\r\\n\\/>\"', 1, '2017-11-23 01:11:26', '2017-11-04 12:35:09', 1, '', 359, '581b82fd-8619-4046-a24a-eae2dc1c83c7', '', '', '', '', ''),
(1857, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'Library (readonly)', 'NOT NULL', '', 6, '\"<field \\r\\n\\ttype=\\\"libraryreadonly\\\" \\r\\n\\tname=\\\"library\\\" \\r\\n\\tlabel=\\\"Library\\\" \\r\\n\\tdescription=\\\"Select a library.\\\" \\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\tmultiple=\\\"false\\\" \\r\\n\\tfilter=\\\"INT\\\"\\r\\n\\trequired=\\\"true\\\"\\r\\n\\treadonly=\\\"true\\\"\\r\\n\\tdefault=\\\"0\\\"\\r\\n\\textends=\\\"list\\\" \\r\\n\\ttable=\\\"#__###component###_library\\\" \\r\\n\\tcomponent=\\\"com_###component###\\\" \\r\\n\\tview=\\\"library\\\" \\r\\n\\tviews=\\\"libraries\\\" \\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_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{\\\" \\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, '2017-11-24 11:58:15', '2017-11-24 22:59:27', 4, '', 379, 'c6dddec0-c373-4069-bdcc-66acd474b648', '', '', '', '', ''),
(1858, '', '', '', '', '', '', '', '', '', '', 'MEDIUMTEXT', '', '', '', 'Add Conditions (library)', 'NOT NULL', '', 35, '\"<field\\n\\ttype=\\\"subform\\\"\\n\\tname=\\\"addconditions\\\"\\n\\tlabel=\\\"Conditions\\\"\\n\\tlayout=\\\"joomla.form.field.subform.repeatable\\\"\\n\\tmultiple=\\\"true\\\"\\n\\tfields=\\\"1868,1867,1870,1869,1881,1882\\\"\\n\\tdescription=\\\"Conditional setup for the the library behaviour.\\\"\\n\\tdefault=\\\"\\\"\\n\\ticon=\\\"list\\\"\\n\\/>\"', 1, '2017-11-24 20:55:27', '2020-05-20 12:06:20', 11, '', 220, '48d69b71-6eba-480a-b17b-c67243f02d06', '', '', '', '', ''),
(1859, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Add URLs', 'NOT NULL', '', 35, '\"<field \\r\\n\\ttype=\\\"subform\\\" \\r\\n\\tname=\\\"addurls\\\" \\r\\n\\tlabel=\\\"URLs\\\" \\r\\n\\tdescription=\\\"Add urls for this library.\\\" \\r\\n\\tlayout=\\\"joomla.form.field.subform.repeatable-table\\\" \\r\\n\\tmultiple=\\\"true\\\" \\r\\n\\tfields=\\\"1865,1864\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\ticon=\\\"list\\\" \\r\\n\\tmaximum=\\\"500\\\" \\r\\n\\/>\"', 1, '2017-11-24 21:07:01', '2017-11-24 23:39:22', 3, '', 310, 'c3474b9a-4677-4574-bda3-a4865569ac18', '', '', '', '', ''),
(1860, '', '', '', '', '', '', '', '', '', '', 'CHAR', '', '', '', 'Note - Add URLs', 'NOT NULL', '', 14, '\"<field \\r\\n\\ttype=\\\"note\\\" \\r\\n\\tname=\\\"note_add_urls\\\" \\r\\n\\tlabel=\\\"Adding Urls\\\" \\r\\n\\tdescription=\\\"You can add urls here, and it can be used in three ways. As a direct link <b>(default)<\\/b> or to get the file content and add it to the component <b>(get)<\\/b> or as both local and link <b>(dynamic)<\\/b>\\\" \\r\\n\\theading=\\\"h4\\\" \\r\\n\\tclass=\\\"alert alert-info\\\" \\r\\n\\/>\"', 1, '2017-11-24 21:09:19', '2017-11-24 23:26:36', 2, '', 307, '58c887d5-dab2-4a37-bfb7-140ccc6cb06b', '', '', '', '', ''),
(1861, '', '', '', '', '', '', '', '', '', '', 'CHAR', '', '', '', 'Note - Display Library Config', 'NOT NULL', '', 14, '\"<field \\r\\n\\ttype=\\\"note\\\" \\r\\n\\tname=\\\"note_display_library_config\\\" \\r\\n\\tdescription=\\\"<h4>Linked Config Fields <span id=\'header_library_config_buttons\'><\\/span><\\/h4><div id=\'display_library_config\' >Display of the config fields will load here!<\\/div>\\\" \\r\\n\\/>\"', 1, '2017-11-24 21:17:55', '2017-10-26 14:26:42', 1, '', 25, '469617b5-2e66-4f92-8eb7-9118b3b6e40f', '', '', '', '', ''),
(1862, '', '', '', '', '', '', '', '', '', '', 'CHAR', '', '', '', 'Note - Display Library Files Folders Urls', 'NOT NULL', '', 14, '\"<field \\r\\n\\ttype=\\\"note\\\" \\r\\n\\tname=\\\"note_display_library_files_folders_urls\\\" \\r\\n\\tdescription=\\\"<h4>Linked Files, Folders & URLs <span id=\'header_library_files_folders_urls_buttons\'><\\/span><\\/h4><div id=\'display_library_files_folders_urls\' >Display of the files, folders & urls will load here!<\\/div>\\\" \\r\\n\\/>\"', 1, '2017-11-24 21:19:46', '2017-10-26 14:26:42', 1, '', 25, '64c9d86f-0915-4ff7-8a06-de8d74b3d57c', '', '', '', '', ''),
(1863, '', '', '', '', '', '', '', '', 11, '', 'INT', '', '', '', 'Config Tabs (library)', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"tabname\\\" \\r\\n\\tlabel=\\\"Tab Name\\\" \\r\\n\\tsize=\\\"40\\\" \\r\\n\\tmaxlength=\\\"150\\\" \\r\\n\\tdefault=\\\"Library\\\" \\r\\n\\tdescription=\\\"The name of the tab this field belongs to.\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\treadonly=\\\"false\\\" \\r\\n\\tdisabled=\\\"false\\\" \\r\\n\\trequired=\\\"false\\\" \\r\\n\\tfilter=\\\"STRING\\\" \\r\\n\\tmessage=\\\"Error! Please add tab name here.\\\" \\r\\n\\thint=\\\"Library\\\" \\r\\n\\/>\"', 1, '2017-11-24 23:13:39', '2015-08-25 21:15:22', 1, '', 360, '90db8907-326e-40d2-bb37-c02554d0031f', '', '', '', '', ''),
(1864, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'Url Type (Library)', 'NOT NULL', '', 11, '\"<field \\r\\n\\ttype=\\\"list\\\"\\r\\n\\tname=\\\"type\\\" \\r\\n\\tlabel=\\\"Type\\\" \\r\\n\\tdescription=\\\"way url is used\\\" \\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\tmultiple=\\\"false\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\tfilter=\\\"INT\\\" \\r\\n\\toption=\\\"1|Default (link),2|Local (get),3|Link & Local (dynamic)\\\" \\r\\n\\tdefault=\\\"1\\\" \\r\\n\\/>\"', 1, '2017-11-24 23:31:58', '2017-11-04 12:35:09', 1, '', 359, '0d6c1466-d4d1-45db-ba28-5b97dc54b606', '', '', '', '', ''),
(1865, 1, '', '', '', 'LmNvbnRyb2wtZ3JvdXAsIC5jb250cm9scywgLmNvbnRyb2xzIGlucHV0W3R5cGU9InVybCJdLCAuY29udHJvbHMgaW5wdXRbdHlwZT0idGV4dCJdLCAuY29udHJvbHMgaW5wdXRbdHlwZT0ibnVtYmVyIl0sIC5jb250cm9scyBpbnB1dFt0eXBlPSJlbWFpbCJdLCAuY29udHJvbHMgc2VsZWN0LCAuY29udHJvbHMgdGV4dGFyZWEgew0KICAgIG1heC13aWR0aDogMTAwJTsNCn0=', '', '', '', 255, '', 'VARCHAR', '', '', '', 'URL (lib)', 'NOT NULL', '', 27, '\"<field\\n\\ttype=\\\"url\\\"\\n\\tname=\\\"url\\\"\\n\\tlabel=\\\"URL\\\"\\n\\tsize=\\\"150\\\"\\n\\tmaxlength=\\\"250\\\"\\n\\tdefault=\\\"\\\"\\n\\tdescription=\\\"Enter URL to <b>file<\\/b>.\\\"\\n\\tclass=\\\"text_area\\\"\\n\\trequired=\\\"true\\\"\\n\\tfilter=\\\"url\\\"\\n\\tvalidated=\\\"url\\\"\\n\\tmessage=\\\"Error! Please add url here.\\\"\\n\\thint=\\\"http:\\/\\/www.example.com\\/file.js\\\"\\n\\/>\"', 1, '2017-11-24 23:39:09', '2019-07-31 14:56:53', 5, '', 378, 'cbb3ab16-c010-43a0-9332-66fe1703ec91', '', '', '', '', ''),
(1866, '', '', '', '', '', '', 1, '', 1, '', 'TINYINT', 2, '', '', 'How to set Behaviour (switch)', 'NOT NULL', '', 6, '\"<field \\r\\n\\ttype=\\\"filebehaviour\\\" \\r\\n\\tname=\\\"how\\\" \\r\\n\\tlabel=\\\"File Behaviour\\\" \\r\\n\\tdescription=\\\"Select how you want to control the behaviour of the library file inclusion.\\\" \\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\tmultiple=\\\"false\\\" \\r\\n\\tdefault=\\\"1\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\textends=\\\"list\\\" \\r\\n\\tbutton=\\\"false\\\" \\r\\n\\ttype_php_1=\\\"\\/\\/ get the input from url\\\\n\\\\t\\\\t$jinput = JFactory::getApplication()->input;\\\\n\\\\t\\\\t\\/\\/ get the library id\\\\n\\\\t\\\\t$libID = $jinput->getInt(\'id\', 0);\\r\\n\\t\\t$options[] = JHtml::_(\'select.option\', \'1\', JText::_(\'Always Add\'));\\r\\n\\t\\t\\/\\/ add build in option for some libraries\\r\\n\\t\\t$buildin = array(3 => \'Uikit v3\', 4 => \'Uikit v2\', 5 => \'FooTable v2\', 6 => \'FooTable v3\');\\r\\n\\t\\tif (isset($buildin[$libID]))\\r\\n\\t\\t{\\r\\n\\t\\t\\t$options[] = JHtml::_(\'select.option\', \'4\', JText::_(\'Build-in\'));\\r\\n\\t\\t}\\r\\n\\t\\t$options[] = JHtml::_(\'select.option\', \'2\', JText::_(\'Conditions\'));\\r\\n\\t\\t$options[] = JHtml::_(\'select.option\', \'3\', JText::_(\'Custom Script\'));\\r\\n\\t\\t$options[] = JHtml::_(\'select.option\', \'0\', JText::_(\'Do not add\'));\\\" \\r\\n\\ttype_php_19=\\\"return $options;\\\" \\r\\n\\/>\"', 1, '2017-11-25 01:59:17', '2017-12-10 15:34:24', 10, '', 813, '0051004f-b0ec-47c4-bfdb-0d8e76adbbb8', '', '', '', '', ''),
(1867, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'Target Behavior (library)', 'NOT NULL', '', 11, '\"<field\\n\\ttype=\\\"list\\\"\\n\\tname=\\\"target_behavior\\\"\\n\\tlabel=\\\"Target Behavior\\\"\\n\\tdescription=\\\"Select the target behavior.\\\"\\n\\tclass=\\\"list_class fieldLarge\\\"\\n\\tmultiple=\\\"false\\\"\\n\\tfilter=\\\"INT\\\"\\n\\trequired=\\\"true\\\"\\n\\toption=\\\"1|include,2|exclude\\\"\\n\\tdefault=\\\"1\\\"\\n\\/>\"', 1, '2017-11-25 02:36:18', '2020-05-20 12:20:46', 3, '', 83, 'f989afd3-2977-48be-b9a0-117e3e14fd28', '', '', '', '', ''),
(1868, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'All Files (library)', 'NOT NULL', '', 6, '\"<field\\n\\ttype=\\\"libraryfiles\\\"\\n\\tname=\\\"file\\\"\\n\\tlabel=\\\"Target File Linked\\\"\\n\\tdescription=\\\"to library\\\"\\n\\tclass=\\\"list_class fieldLarge\\\"\\n\\tmultiple=\\\"true\\\"\\n\\tdefault=\\\"0\\\"\\n\\trequired=\\\"true\\\"\\n\\treadonly=\\\"\\\"\\n\\tdisabled=\\\"\\\"\\n\\textends=\\\"list\\\"\\n\\tbutton=\\\"false\\\"\\n\\ttype_php_1=\\\"__.o0=base64=Oo.__Ly8gZ2V0IHRoZSBpbnB1dCBmcm9tIHVybA0KCQkkamlucHV0ID0gSkZhY3Rvcnk6OmdldEFwcGxpY2F0aW9uKCktPmlucHV0Ow0KCQkvLyBnZXQgdGhlIGxpYnJhcnkgaWQNCgkJJGlkID0gJGppbnB1dC0+Z2V0SW50KCdpZCcsIDApOw0KCQkvLyBnZXQgY3VzdG9tIHRoZSBmaWxlcw0KCQkkZmlsZXMgPSAjIyNDb21wb25lbnQjIyNIZWxwZXI6OmdldExpYnJhcnlGaWxlcygkaWQpOw0KCQkvLyBzZXQgdGhlIGRlZmF1bHQNCgkJJG9wdGlvbnNbXSA9IEpIdG1sOjpfKCdzZWxlY3Qub3B0aW9uJywgJycsIEpUZXh0OjpfKCdObyBGaWxlcyBMaW5rZWQnKSk7DQoJCS8vIG5vdyBjaGVjayBpZiB0aGVyZSBhcmUgZmlsZXMgaW4gdGhlIGZvbGRlcg0KCQlpZiAoIyMjQ29tcG9uZW50IyMjSGVscGVyOjpjaGVja0FycmF5KCRmaWxlcykpDQoJCXsNCgkJCSRvcHRpb25zID0gYXJyYXkoKTsNCgkJCWZvcmVhY2ggKCRmaWxlcyBhcyAkZmlsZSA9PiAkbmFtZSkNCgkJCXsNCgkJCQkkb3B0aW9uc1tdID0gSkh0bWw6Ol8oJ3NlbGVjdC5vcHRpb24nLCAkZmlsZSwgJG5hbWUpOw0KCQkJfQ0KCQl9DQoJCXJldHVybiAkb3B0aW9uczs=\\\"\\n\\/>\"', 1, '2017-11-25 02:45:45', '2020-05-20 12:20:24', 7, '', 359, '0fa37066-8551-4cf4-8239-d1b3b556d2ea', '', '', '', '', ''),
(1869, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'Option Field (library)', 'NOT NULL', '', 6, '\"<field\\n\\ttype=\\\"libconfigfield\\\"\\n\\tname=\\\"option_field\\\"\\n\\tlabel=\\\"Option Field\\\"\\n\\tdescription=\\\"Select the global option field.\\\"\\n\\tclass=\\\"list_class fieldLarge\\\"\\n\\tmultiple=\\\"false\\\"\\n\\trequired=\\\"true\\\"\\n\\textends=\\\"list\\\"\\n\\ttable=\\\"#__###component###_field\\\"\\n\\tcomponent=\\\"com_###component###\\\"\\n\\tview=\\\"field\\\"\\n\\tviews=\\\"fields\\\"\\n\\tvalue_field=\\\"name\\\"\\n\\tkey_field=\\\"id\\\"\\n\\ttype_php_1=\\\"__.o0=base64=Oo.__Ly8gbG9hZCB0aGUgZGIgb2JqZWN0DQoJCSRkYiA9IEpGYWN0b3J5OjpnZXREQk8oKTsJCQ0KCQkvLyBnZXQgdGhlIGlucHV0IGZyb20gdXJsDQoJCSRqaW5wdXQgPSBKRmFjdG9yeTo6Z2V0QXBwbGljYXRpb24oKS0+aW5wdXQ7DQoJCS8vIGdldCB0aGUgaWQNCgkJJElEID0gJGppbnB1dC0+Z2V0SW50KCdpZCcsIDApOw0KCQkvLyByZXN0IHRoZSBmaWVsZHMgaWRzDQoJCSRmaWVsZElkcyA9IGFycmF5KCk7DQoJCWlmIChpc19udW1lcmljKCRJRCkgJiYgJElEID49IDEpDQoJCXsNCgkJCS8vIGdldCBhbGwgdGhlIGZpZWxkcyBsaW5rZWQgdG8gdGhlIGxpYnJhcnkgY29uZmlnDQoJCQlpZiAoJGFkZGNvbmZpZyA9ICMjI0NvbXBvbmVudCMjI0hlbHBlcjo6Z2V0VmFyKCdsaWJyYXJ5X2NvbmZpZycsIChpbnQpICRJRCwgJ2xpYnJhcnknLCAnYWRkY29uZmlnJykpDQoJCQl7DQoJCQkJaWYgKCMjI0NvbXBvbmVudCMjI0hlbHBlcjo6Y2hlY2tKc29uKCRhZGRjb25maWcpKQ0KCQkJCXsNCgkJCQkJJGFkZGNvbmZpZyA9IGpzb25fZGVjb2RlKCRhZGRjb25maWcsIHRydWUpOw0KCQkJCQlpZiAoIyMjQ29tcG9uZW50IyMjSGVscGVyOjpjaGVja0FycmF5KCRhZGRjb25maWcpKQ0KCQkJCQl7DQoJCQkJCQlmb3JlYWNoKCRhZGRjb25maWcgYXMgJGZpZWxkKQ0KCQkJCQkJew0KCQkJCQkJCWlmIChpc3NldCgkZmllbGRbJ2ZpZWxkJ10pKQ0KCQkJCQkJCXsNCgkJCQkJCQkJJGZpZWxkSWRzW10gPSAoaW50KSAkZmllbGRbJ2ZpZWxkJ107DQoJCQkJCQkJfQ0KCQkJCQkJfQ0KCQkJCQl9DQoJCQkJfQ0KCQkJfQ0KCQl9DQoJCS8vIGNoZWNrIGlmIHdlIGhhdmUgaWRzLCBzaW5jZSB3ZSBzaG91bGQgbm90IHNob3cgYW55IGZpZWxkcyB0aGF0IGFyZSBub3QgcGFydCBvZiB0aGlzIGNvbmZpZw0KCQlpZiAoIyMjQ29tcG9uZW50IyMjSGVscGVyOjpjaGVja0FycmF5KCRmaWVsZElkcykpDQoJCXsNCgkJCSRxdWVyeSA9ICRkYi0+Z2V0UXVlcnkodHJ1ZSk7DQoJCQkkcXVlcnktPnNlbGVjdCgkZGItPnF1b3RlTmFtZShhcnJheSgnYS5pZCcsJ2EubmFtZScpLGFycmF5KCdpZCcsJ25hbWUnKSkpOw0KCQkJJHF1ZXJ5LT5mcm9tKCRkYi0+cXVvdGVOYW1lKCcjX18jIyNjb21wb25lbnQjIyNfZmllbGQnLCAnYScpKTsNCgkJCSRxdWVyeS0+d2hlcmUoJGRiLT5xdW90ZU5hbWUoJ2EucHVibGlzaGVkJykgLiAnID49IDEnKTsNCgkJCS8vIG9ubHkgbG9hZCB0aGVzZSBmaWVsZHMNCgkJCSRxdWVyeS0+d2hlcmUoJGRiLT5xdW90ZU5hbWUoJ2EuaWQnKSAuICcgSU4gKCcgLiBpbXBsb2RlKCcsJywgJGZpZWxkSWRzKSAuICcpJyk7DQoJCQkkcXVlcnktPm9yZGVyKCdhLm5hbWUgQVNDJyk7DQoJCQkkZGItPnNldFF1ZXJ5KChzdHJpbmcpJHF1ZXJ5KTsNCgkJCSRpdGVtcyA9ICRkYi0+bG9hZE9iamVjdExpc3QoKTsNCgkJCSRvcHRpb25zID0gYXJyYXkoKTsNCgkJCWlmICgkaXRlbXMpDQoJCQl7DQoJCQkJJG9wdGlvbnNbXSA9IEpIdG1sOjpfKCdzZWxlY3Qub3B0aW9uJywgJycsICdTZWxlY3QgYW4gb3B0aW9uJyk7DQoJCQkJZm9yZWFjaCgkaXRlbXMgYXMgJGl0ZW0pDQoJCQkJew0KCQkJCQkkb3B0aW9uc1tdID0gSkh0bWw6Ol8oJ3NlbGVjdC5vcHRpb24nLCAkaXRlbS0+aWQsICRpdGVtLT5uYW1lKTsNCgkJCQl9DQoJCQkJcmV0dXJuICRvcHRpb25zOw0KCQkJfQ0KCQl9DQoJCXJldHVybiBhcnJheShKSHRtbDo6Xygnc2VsZWN0Lm9wdGlvbicsICcnLCAnTm8gY29uZmlnIGZpZWxkcyBsaW5rZWQnKSk7\\\"\\n\\/>\"', 1, '2017-11-25 02:53:55', '2020-05-20 12:26:24', 7, '', 58, 'bc6d54d9-f450-4067-a15d-cc8aab21ba5a', '', '', '', '', ''),
(1870, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Target Relation (library)', 'NOT NULL', '', 11, '\"<field\\n\\ttype=\\\"list\\\"\\n\\tname=\\\"target_relation\\\"\\n\\tlabel=\\\"Target Relation\\\"\\n\\tdescription=\\\"Select the target file\\/s relation to other of the same target file\\/s.\\\"\\n\\tclass=\\\"list_class fieldLarge\\\"\\n\\tmultiple=\\\"false\\\"\\n\\tfilter=\\\"INT\\\"\\n\\trequired=\\\"true\\\"\\n\\toption=\\\"0|Isolate,1|Chain\\\"\\n\\tdefault=\\\"0\\\"\\n\\/>\"', 1, '2017-11-25 03:13:05', '2020-05-20 12:16:37', 2, '', 81, 'cc36c93d-9e57-4d43-b2f0-7ae0c11620f7', '', '', '', '', ''),
(1871, '', '', '', '', '', '', '', '', '', '', 'MEDIUMTEXT', '', '', '', 'PHP (setDocument)', 'NOT NULL', 2, 25, '\"<field \\r\\n\\ttype=\\\"textarea\\\" \\r\\n\\tname=\\\"php_setdocument\\\" \\r\\n\\tlabel=\\\"PHP - setDocument()\\\" \\r\\n\\trows=\\\"30\\\" \\r\\n\\tcols=\\\"15\\\"\\r\\n\\tdescription=\\\"Add your PHP here! [Do not add the php tags]\\\" \\r\\n\\tclass=\\\"text_area span12\\\" \\r\\n\\tfilter=\\\"raw\\\" \\r\\n\\thint=\\\"\\/\\/ PHP Here that should run in the setDocument() & _prepareDocument() Method (to load the lib files). The document is accessed via $this->document-> like $this->document->addScript();\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\/>\"', 1, '2017-11-25 13:52:01', '2017-12-08 15:09:07', 7, '', 119, 'b70529a1-30bb-42c0-822f-802c23bd616b', '', '', '', '', ''),
(1872, '', '', '', '', '', '', '', '', '', '', 'MEDIUMTEXT', '', '', '', 'PHP (_prepareDocument)', 'NOT NULL', 2, 25, '\"<field \\r\\n\\ttype=\\\"textarea\\\" \\r\\n\\tname=\\\"php_preparedocument\\\" \\r\\n\\tlabel=\\\"PHP - _prepareDocument()\\\" \\r\\n\\trows=\\\"30\\\" \\r\\n\\tcols=\\\"15\\\"\\r\\n\\tdescription=\\\"Add your PHP here! [Do not add the php tags]\\\" \\r\\n\\tclass=\\\"text_area span12\\\" \\r\\n\\tfilter=\\\"raw\\\" \\r\\n\\thint=\\\"\\/\\/ PHP Here that should run in the _prepareDocument() Method. The document is accessed via $this->document-> like $this->document->addScript();\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\/>\"', 1, '2017-11-25 13:53:28', '2017-11-25 14:13:25', 3, '', 119, 'f857564f-fff0-4622-b932-522561d3ec68', '', '', '', '', ''),
(1873, '', '', '', '', '', '', '', '', '', '', 'CHAR', '', '', '', 'No Behaviour (one)', 'NOT NULL', '', 14, '\"<field \\r\\n\\ttype=\\\"note\\\" \\r\\n\\tname=\\\"note_no_behaviour_one\\\" \\r\\n\\tlabel=\\\"No Behaviour\\\" \\r\\n\\tdescription=\\\"There is no behaviour set for this library. This means JCB will not add any files unless you custom code it in somewhere.\\\" \\r\\n\\theading=\\\"h4\\\" \\r\\n\\tclass=\\\"alert alert-error\\\" \\r\\n\\/>\"', 1, '2017-11-25 13:59:34', '2017-11-25 14:23:35', 5, '', 814, 'd6e622ae-63c6-4803-a723-0a4aefcd55b1', '', '', '', '', ''),
(1874, '', '', '', '', '', '', '', '', '', '', 'CHAR', '', '', '', 'No Behaviour (two)', 'NOT NULL', '', 14, '\"<field \\r\\n\\ttype=\\\"note\\\" \\r\\n\\tname=\\\"note_no_behaviour_two\\\" \\r\\n\\tlabel=\\\"No Behaviour\\\" \\r\\n\\tdescription=\\\"There is no behaviour set for this library. This means JCB will not add any files unless you custom code it in somewhere.\\\" \\r\\n\\theading=\\\"h4\\\" \\r\\n\\tclass=\\\"alert alert-error\\\" \\r\\n\\/>\"', 1, '2017-11-25 14:19:59', '2017-11-25 14:23:45', 2, '', 814, '821dff28-c5b7-4e58-93ca-1ff9766a1568', '', '', '', '', ''),
(1875, '', '', '', '', '', '', '', '', '', '', 'CHAR', '', '', '', 'No Behaviour (three)', 'NOT NULL', '', 14, '\"<field \\r\\n\\ttype=\\\"note\\\" \\r\\n\\tname=\\\"note_no_behaviour_three\\\" \\r\\n\\tlabel=\\\"No Behaviour\\\" \\r\\n\\tdescription=\\\"There is no behaviour set for this library. This means JCB will not add any files unless you custom code it in somewhere.\\\" \\r\\n\\theading=\\\"h4\\\" \\r\\n\\tclass=\\\"alert alert-error\\\" \\r\\n\\/>\"', 1, '2017-11-25 14:20:09', '2017-11-25 14:23:51', 2, '', 814, '9e480af1-826d-4701-8c63-fca95a1bf46c', '', '', '', '', ''),
(1876, '', '', '', '', '', '', '', '', '', '', 'CHAR', '', '', '', 'Yes Behaviour (one)', 'NOT NULL', '', 14, '\"<field \\r\\n\\ttype=\\\"note\\\" \\r\\n\\tname=\\\"note_yes_behaviour_one\\\" \\r\\n\\tlabel=\\\"Set Behaviour\\\" \\r\\n\\tdescription=\\\"All the library files linked to this library will always be added to a view if linked to the view.\\\" \\r\\n\\theading=\\\"h4\\\" \\r\\n\\tclass=\\\"alert alert-success\\\" \\r\\n\\/>\"', 1, '2017-11-25 16:27:31', '2017-11-25 14:23:51', 1, '', 814, '86180653-fa39-46fc-9630-9014e207d47e', '', '', '', '', ''),
(1877, '', '', '', '', '', '', '', '', '', '', 'CHAR', '', '', '', 'Yes Behaviour (two)', 'NOT NULL', '', 14, '\"<field \\r\\n\\ttype=\\\"note\\\" \\r\\n\\tname=\\\"note_yes_behaviour_two\\\" \\r\\n\\tlabel=\\\"Set Behaviour\\\" \\r\\n\\tdescription=\\\"All the library files linked to this library will always be added to a view if linked to the view.\\\" \\r\\n\\theading=\\\"h4\\\" \\r\\n\\tclass=\\\"alert alert-success\\\" \\r\\n\\/>\"', 1, '2017-11-25 16:27:41', '2017-11-25 14:23:51', 1, '', 814, 'c7650398-b230-4e88-8393-de5eac88f0d2', '', '', '', '', ''),
(1878, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Add Bootstrap v4', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"bootstrap4\\\" \\r\\n\\tlabel=\\\"Add Bootstrap v4\\\" \\r\\n\\tdescription=\\\"Add Bootstrap v4 to the frontend of this component.\\\" \\r\\n\\tclass=\\\"btn-group btn-group-yesno\\\" \\r\\n\\toption=\\\"0|No,1|Yes\\\" \\r\\n\\tdefault=\\\"1\\\" \\r\\n\\/>\"', 1, '2017-11-25 21:30:58', '2017-11-25 21:50:57', 3, '', 591, 'a6593b75-97bb-4f0c-af2b-c78ffb3c50b8', '', '', '', '', ''),
(1879, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Add Uikit v3', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"uikit3\\\" \\r\\n\\tlabel=\\\"Add Uikit v3\\\" \\r\\n\\tdescription=\\\"Add Uikit v3 to the frontend of this component.\\\" \\r\\n\\tclass=\\\"btn-group btn-group-yesno\\\" \\r\\n\\toption=\\\"0|No,1|Yes\\\" \\r\\n\\tdefault=\\\"1\\\" \\r\\n\\/>\"', 1, '2017-11-25 21:50:43', '2017-11-25 21:50:16', 1, '', 591, '55feae8f-0d64-41db-97c9-5458411d7010', '', '', '', '', ''),
(1880, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Add Uikit v2', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"uikit2\\\" \\r\\n\\tlabel=\\\"Add Uikit v2\\\" \\r\\n\\tdescription=\\\"Add Uikit v2 to the frontend of this component.\\\" \\r\\n\\tclass=\\\"btn-group btn-group-yesno\\\" \\r\\n\\toption=\\\"0|No,1|Yes\\\" \\r\\n\\tdefault=\\\"1\\\" \\r\\n\\/>\"', 1, '2017-11-25 21:52:57', '2017-11-25 21:50:16', 1, '', 591, 'f0fc8034-e747-4a0a-88b8-60be51d84ed1', '', '', '', '', ''),
(1881, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'Option Behavior', 'NOT NULL', '', 11, '\"<field\\n\\ttype=\\\"list\\\"\\n\\tname=\\\"option_behaviour\\\"\\n\\tlabel=\\\"Option Behaviour\\\"\\n\\tdescription=\\\"Select the option field behaviour.\\\"\\n\\tclass=\\\"list_class fieldLarge\\\"\\n\\tmultiple=\\\"false\\\"\\n\\tfilter=\\\"INT\\\"\\n\\trequired=\\\"true\\\"\\n\\toption=\\\"1|Is (only 4 list\\/radio\\/checkboxes),2|Is Not (only 4 list\\/radio\\/checkboxes),3|Any Selection (only 4 list\\/radio\\/checkboxes\\/dynamic_list),4|Active (only 4 text_field),5|Unactive (only 4 text_field),6|Key Word All case-sensitive (only 4 text_field),7|Key Word Any case-sensitive (only 4 text_field),8|Key Word All case-insensitive (only 4 text_field),9|Key Word Any case-insensitive (only 4 text_field),10|Min Length (only 4 text_field),11|Max Length (only 4 text_field),12|Exact Length (only 4 text_field)\\\"\\n\\tdefault=\\\"1\\\"\\n\\/>\"', 1, '2017-11-26 00:52:48', '2020-05-20 12:21:33', 3, '', 60, 'fdc60576-168b-400e-85ca-a0fe22e4a4cb', '', '', '', '', ''),
(1882, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Field Options', 'NOT NULL', '', 25, '\"<field \\r\\n\\ttype=\\\"textarea\\\" \\r\\n\\tname=\\\"field_options\\\" \\r\\n\\tlabel=\\\"Field Options\\\" \\r\\n\\trows=\\\"10\\\" \\r\\n\\tcols=\\\"5\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\tfilter=\\\"STRING\\\" \\r\\n\\thint=\\\"Options here\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\/>\"', 1, '2017-11-26 00:55:11', '2015-08-25 21:15:22', 1, '', 59, '838dcecb-29fa-4ab3-aa09-a30ef61de616', '', '', '', '', ''),
(1883, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'Type Behavior (Library)', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"type\\\"\\n\\tlabel=\\\"Type Behavior\\\"\\n\\tdescription=\\\"Select what type of library behavior this should be.\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"1|Main,2|Bundle\\\"\\n\\tdefault=\\\"1\\\"\\n\\trequired=\\\"true\\\"\\n\\/>\"', 1, '2017-11-30 10:47:55', '2019-10-14 16:41:26', 4, '', 815, 'f2940a48-f104-4c11-86ef-ed6456a1211c', '', '', '', '', ''),
(1884, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Libraries (excluding)', 'NOT NULL', '', 6, '\"<field\\n\\ttype=\\\"librariesx\\\"\\n\\tname=\\\"libraries\\\"\\n\\tlabel=\\\"Media Libraries\\\"\\n\\tdescription=\\\"Select the libraries you want to bundle here.\\\"\\n\\tclass=\\\"list_class\\\"\\n\\tlayout=\\\"joomla.form.field.list-fancy-select\\\"\\n\\tmultiple=\\\"true\\\"\\n\\tdefault=\\\"0\\\"\\n\\trequired=\\\"false\\\"\\n\\textends=\\\"list\\\"\\n\\tbutton=\\\"true\\\"\\n\\ttable=\\\"#__###component###_library\\\"\\n\\tcomponent=\\\"com_###component###\\\"\\n\\tview=\\\"library\\\"\\n\\tviews=\\\"libraries\\\"\\n\\tvalue_field=\\\"name\\\"\\n\\tkey_field=\\\"id\\\"\\n\\ttype_php_1=\\\"__.o0=base64=Oo.__Ly8gZ2V0IHRoZSBpbnB1dCBmcm9tIHVybA0KCQkkamlucHV0ID0gSkZhY3Rvcnk6OmdldEFwcGxpY2F0aW9uKCktPmlucHV0Ow0KCQkvLyBnZXQgdGhlIGxpYnJhcnkgaWQNCgkJJGxpYklEID0gJGppbnB1dC0+Z2V0SW50KCdpZCcsIDApOw0KCQkkZGIgPSBKRmFjdG9yeTo6Z2V0REJPKCk7DQoJCSRxdWVyeSA9ICRkYi0+Z2V0UXVlcnkodHJ1ZSk7DQoJCSRxdWVyeS0+c2VsZWN0KCRkYi0+cXVvdGVOYW1lKGFycmF5KCdhLiMjI0lEIyMjJywnYS4jIyNURVhUIyMjJyksYXJyYXkoJyMjI0lEIyMjJywnIyMjQ09ERV9URVhUIyMjJykpKTsNCgkJJHF1ZXJ5LT5mcm9tKCRkYi0+cXVvdGVOYW1lKCcjIyNUQUJMRSMjIycsICdhJykpOw0KCQkkcXVlcnktPndoZXJlKCRkYi0+cXVvdGVOYW1lKCdhLnB1Ymxpc2hlZCcpIC4gJyA+PSAxJyk7DQoJCSRxdWVyeS0+d2hlcmUoJGRiLT5xdW90ZU5hbWUoJ2EudGFyZ2V0JykgLiAnID0gMScpOw0KCQlpZiAoJGxpYklEID4gMCkNCgkJew0KCQkJJHF1ZXJ5LT53aGVyZSgkZGItPnF1b3RlTmFtZSgnYS5pZCcpIC4gJyAhPSAnIC4gKGludCkgJGxpYklEKTsNCgkJfQ0KCQkkcXVlcnktPm9yZGVyKCdhLiMjI1RFWFQjIyMgQVNDJyk7DQoJCSRkYi0+c2V0UXVlcnkoKHN0cmluZykkcXVlcnkpOw0KCQkkaXRlbXMgPSAkZGItPmxvYWRPYmplY3RMaXN0KCk7DQoJCSRvcHRpb25zID0gYXJyYXkoKTsNCgkJaWYgKCRpdGVtcykNCgkJew0KCQkJZm9yZWFjaCgkaXRlbXMgYXMgJGl0ZW0pDQoJCQl7DQoJCQkJJG9wdGlvbnNbXSA9IEpIdG1sOjpfKCdzZWxlY3Qub3B0aW9uJywgJGl0ZW0tPiMjI0lEIyMjLCAkaXRlbS0+IyMjQ09ERV9URVhUIyMjKTsNCgkJCX0NCgkJfQ0KDQoJCXJldHVybiAkb3B0aW9uczs=\\\"\\n\\/>\"', 1, '2017-11-30 10:57:32', '2024-03-26 13:23:47', 3, '', 379, '7e1418d5-5515-49f6-99ed-166365b9b963', '', '', '', '', ''),
(1885, '', '', '', '', '', '', '', '', '', '', 'CHAR', '', '', '', 'Buildin Behaviour (one)', 'NOT NULL', '', 14, '\"<field \\r\\n\\ttype=\\\"note\\\" \\r\\n\\tname=\\\"note_build_in_behaviour_one\\\" \\r\\n\\tlabel=\\\"Build-in Behaviour\\\" \\r\\n\\tdescription=\\\"This library will be loaded based on the JCB build-in behaviour.\\\" \\r\\n\\theading=\\\"h4\\\" \\r\\n\\tclass=\\\"alert alert-success\\\" \\r\\n\\/>\"', 1, '2017-12-10 16:09:28', '2017-11-25 14:23:51', 1, '', 814, 'b8944b61-303f-4e8d-ad4a-65ff645f9f6f', '', '', '', '', ''),
(1886, '', '', '', '', '', '', '', '', '', '', 'CHAR', '', '', '', 'Buildin Behaviour (two)', 'NOT NULL', '', 14, '\"<field \\r\\n\\ttype=\\\"note\\\" \\r\\n\\tname=\\\"note_build_in_behaviour_two\\\" \\r\\n\\tlabel=\\\"Build-in Behaviour\\\" \\r\\n\\tdescription=\\\"This library will be loaded based on the JCB build-in behaviour.\\\" \\r\\n\\theading=\\\"h4\\\" \\r\\n\\tclass=\\\"alert alert-success\\\" \\r\\n\\/>\"', 1, '2017-12-10 16:09:45', '2017-11-25 14:23:51', 1, '', 814, '8939b06d-7c30-4614-9fa8-94f0879b400c', '', '', '', '', ''),
(1887, '', '', '', '', '', '', '', '', '', '', 'CHAR', '', '', '', 'Buildin Behaviour (three)', 'NOT NULL', '', 14, '\"<field \\r\\n\\ttype=\\\"note\\\" \\r\\n\\tname=\\\"note_build_in_behaviour_three\\\" \\r\\n\\tlabel=\\\"Build-in Behaviour\\\" \\r\\n\\tdescription=\\\"This library will be loaded based on the JCB build-in behaviour.\\\" \\r\\n\\theading=\\\"h4\\\" \\r\\n\\tclass=\\\"alert alert-success\\\" \\r\\n\\/>\"', 1, '2017-12-10 16:14:40', '2017-11-25 14:23:51', 1, '', 814, 'c908a935-aaee-4166-aca2-d6086fb26084', '', '', '', '', ''),
(1888, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Javascript (file)', 'NOT NULL', 2, 8, '\"<field\\n\\ttype=\\\"editor\\\"\\n\\tname=\\\"javascript_file\\\"\\n\\tlabel=\\\"Javascript (JS file)\\\"\\n\\tdescription=\\\"Add JavaScript for the edit view that is loaded in the header of the document via a JS file. Do not add the script tags. PHP does not work in this field\\/area\\/file.\\\"\\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-12-14 19:25:13', '2019-07-08 14:20:03', 4, '', 72, '25c87995-f58f-4f6a-8f6b-2e462545bdd6', '', '', '', '', ''),
(1889, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Add Javascript (file)', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"add_javascript_file\\\" \\r\\n\\tlabel=\\\"Add JavaScript (file)\\\" \\r\\n\\tdescription=\\\"Add JavaScript to the JavaScript file linked to this view.\\\" \\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-12-14 19:25:31', '2017-12-14 19:36:26', 2, '', 192, '075b5082-3fb1-46f1-a838-da558b3afb54', '', '', '', '', ''),
(1890, '', '', '', '', '', '', '', '', '', '', 'CHAR', '', '', '', 'Library Instruction', 'NOT NULL', '', 14, '\"<field \\r\\n\\ttype=\\\"note\\\" \\r\\n\\tname=\\\"note_library_instruction\\\" \\r\\n\\tlabel=\\\"Quick overview\\\" \\r\\n\\tdescription=\\\"Watch a <a href=\'https:\\/\\/www.youtube.com\\/watch?v=rDjvgLYOt1o&list=PLQRGFI8XZ_wtGvPQZWBfDzzlERLQgpMRE\' target=\'_blank\'>tutorial overview<\\/a> of the new library manager concept.\\\" \\r\\n\\theading=\\\"h4\\\" \\r\\n\\tclass=\\\"alert alert-info\\\" \\r\\n\\/>\"', 1, '2017-12-15 10:57:37', '0000-00-00 00:00:00', 1, '', 816, 'd5bfc0fa-9218-41c3-9d82-409b14536ed7', '', '', '', '', ''),
(1891, '', '', '', '', '', '', '', '', '', '', 'CHAR', '', '', '', 'Linked To Notice', 'NOT NULL', '', 14, '\"<field \\r\\n\\ttype=\\\"note\\\" \\r\\n\\tname=\\\"note_linked_to_notice\\\" \\r\\n\\tlabel=\\\"Linked To\\\" \\r\\n\\tdescription=\\\"<div id=\'display_linked_to\'>Searching the database.<span class=\'loading-dots\'><\\/span><\\/div>\\\" \\r\\n\\theading=\\\"h4\\\" \\r\\n\\/>\"', 1, '2018-01-13 08:23:15', '2018-03-26 05:58:11', 2, '', 817, 'e39528bd-d3ec-4a16-b1a2-6d0041397017', '', '', '', '', ''),
(1892, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Add CSS (admin)', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"add_css_admin\\\" \\r\\n\\tlabel=\\\"Add CSS (admin)\\\" \\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, '2018-01-15 11:51:03', '2018-01-15 11:50:37', 1, '', 298, 'c2afae90-c059-4efb-9705-b7cf161b0c2a', '', '', '', '', ''),
(1893, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Add CSS (site)', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"add_css_site\\\" \\r\\n\\tlabel=\\\"Add CSS (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, '2018-01-15 11:51:24', '2018-01-15 11:50:37', 1, '', 298, 'c5cbf873-d13a-4930-9c99-c8b1f03e1a06', '', '', '', '', ''),
(1894, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'CSS (site)', 'NOT NULL', 2, 8, '\"<field\\n\\ttype=\\\"editor\\\"\\n\\tname=\\\"css_site\\\"\\n\\tlabel=\\\"CSS (site)\\\"\\n\\tdescription=\\\"Add CSS for the entire front-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, '2018-01-15 11:53:37', '2019-07-08 14:20:08', 3, '', 299, '667a2147-05d1-4138-b666-e8a0ce54ffba', '', '', '', '', ''),
(1895, '', '', '', '', '', '', '', '', '', '', 'MEDIUMTEXT', '', '', '', 'PHP (Headers - Import)', 'NOT NULL', 2, 25, '\"<field \\r\\n\\ttype=\\\"textarea\\\" \\r\\n\\tname=\\\"php_import_headers\\\" \\r\\n\\tlabel=\\\"get Export Import Headers PHP\\\" \\r\\n\\trows=\\\"30\\\" \\r\\n\\tcols=\\\"15\\\"\\r\\n\\tdescription=\\\"Add your PHP here! [Do not add the php tags]\\\" \\r\\n\\tclass=\\\"text_area span12\\\" \\r\\n\\tfilter=\\\"raw\\\"\\r\\n\\thint=\\\"\\/\\/ PHP here for the getExImPortHeaders Method\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\/>\"', 1, '2018-01-17 20:50:50', '2018-01-17 21:38:04', 4, '', 119, '4c0b579c-dd80-4f81-98c7-60fbf63ea3b2', '', '', '', '', ''),
(1896, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'API Name', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"name\\\" \\r\\n\\tlabel=\\\"API Name\\\" \\r\\n\\tsize=\\\"70\\\" \\r\\n\\tmaxlength=\\\"150\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tdescription=\\\"Set the name of this API.\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\tfilter=\\\"STRING\\\"\\r\\n\\tmessage=\\\"Error! Please add API name here.\\\" \\r\\n\\thint=\\\"API name\\\" \\r\\n\\/>\"', 1, '2018-01-21 09:21:42', '2018-04-05 09:04:44', 4, '', 641, '1c2d46c8-8f80-47e1-9758-488f91408749', '', '', '', '', ''),
(1897, '', '', '', '', '', '', '', '', '', '', 'CHAR', '', '', '', 'Diverge Names', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"diverge_names\\\" \\r\\n\\tlabel=\\\"Diverge Names\\\" \\r\\n\\tdescription=\\\"Set if you want to use difrent names in the code and database then the actual view name.\\\" \\r\\n\\tclass=\\\"btn-group btn-group-yesno\\\" \\r\\n\\toption=\\\"1|Yes,0|No\\\" \\r\\n\\tdefault=\\\"0\\\"\\r\\n\\/>\"', 1, '2018-01-22 17:39:20', '0000-00-00 00:00:00', 1, '', 818, 'f5881ed4-57f3-4fac-87ea-5e943e3ea462', '', '', '', '', ''),
(1898, '', '', '', '', '', '', '', '', 64, '', 'CHAR', 2, '', '', 'Code (list of records)', 'NOT NULL', '', 24, '\"<field\\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"code_list\\\" \\r\\n\\tlabel=\\\"Name in Code (list of records)\\\" \\r\\n\\tsize=\\\"40\\\" \\r\\n\\tmaxlength=\\\"150\\\" \\r\\n\\tdescription=\\\"The code name of the list of records in this view\\\" \\r\\n\\tclass=\\\"inputbox\\\" \\r\\n\\treadonly=\\\"false\\\" \\r\\n\\tdisabled=\\\"false\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\tfilter=\\\"STRING\\\" \\r\\n\\tmessage=\\\"Error! Please add list of records code name here.\\\" \\r\\n\\thint=\\\"listcodename\\\" \\r\\n\\/>\"', 1, '2018-01-22 18:36:57', '2018-01-22 18:46:28', 2, '', 3, 'bad53a52-b70c-42ac-a635-bdbb5573ac4c', '', '', '', '', ''),
(1899, '', '', '', '', '', '', '', '', 64, '', 'CHAR', 2, '', '', 'Code (single record)', 'NOT NULL', '', 24, '\"<field\\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"code_single\\\" \\r\\n\\tlabel=\\\"Name in Code (single record)\\\" \\r\\n\\tsize=\\\"40\\\" \\r\\n\\tmaxlength=\\\"150\\\" \\r\\n\\tdescription=\\\"Code name for single record view.\\\" \\r\\n\\tclass=\\\"inputbox\\\" \\r\\n\\treadonly=\\\"false\\\" \\r\\n\\tdisabled=\\\"false\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\tfilter=\\\"STRING\\\" \\r\\n\\tmessage=\\\"Error! Please add single record code name here.\\\" \\r\\n\\thint=\\\"singlecodename\\\" \\r\\n\\/>\"', 1, '2018-01-22 18:38:08', '2018-01-22 18:46:57', 2, '', 2, 'c3a75e67-1dbe-4b18-9c67-c71a910ddb52', '', '', '', '', ''),
(1900, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Add PHP (parse Method)', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"add_php_router_parse\\\"\\n\\tlabel=\\\"Add PHP (parse Method) - <b>in Joomla 3 Router<\\/b>\\\"\\n\\tdescription=\\\"The option to override the default JCB implementation of the router parse method for the related view where this dynamicGet is added.\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"1|Yes,0|No\\\"\\n\\tdefault=\\\"0\\\"\\n\\trequired=\\\"true\\\"\\n\\/>\"', 1, '2018-01-23 12:28:09', '2024-01-26 05:52:36', 5, '', 188, 'd4b30bcc-414d-403b-9627-037bcbbd1c6b', '', '', '', '', ''),
(1901, '', '', '', '', '', '', '', '', '', '', 'MEDIUMTEXT', '', '', '', 'PHP (parse - JComponentRouterBase)', 'NOT NULL', 2, 25, '\"<field\\n\\ttype=\\\"textarea\\\"\\n\\tname=\\\"php_router_parse\\\"\\n\\tlabel=\\\"PHP (only for Joomla 3)\\\"\\n\\trows=\\\"30\\\"\\n\\tcols=\\\"15\\\"\\n\\tdescription=\\\"Add your PHP here! [Do not add the php tags]<br \\/>Add the php code to override the default JCB implementation of the router parse method for the related view where this dynamicGet is added.\\\"\\n\\tclass=\\\"text_area span12\\\"\\n\\tfilter=\\\"raw\\\"\\n\\thint=\\\"\\/\\/ PHP Here that should run in the parse Method -> switch | (array) $segments - the segments of the URL to parse | (array) $vars - the URL attributes to be used by the application.\\\"\\n\\trequired=\\\"true\\\"\\n\\/>\"', 1, '2018-01-23 12:32:56', '2024-01-26 05:57:03', 5, '', 119, '88ffbef3-064c-4f87-997a-30af1c88f2ec', '', '', '', '', ''),
(1902, '', '', '', '', '', '', '', '', '', '', 'CHAR', '', '', '', 'Dynamic Updater API', 'NOT NULL', '', 14, '\"<field \\r\\n\\ttype=\\\"note\\\" \\r\\n\\tname=\\\"apiCronJob_note\\\" \\r\\n\\tlabel=\\\"API CronJob\\\" \\r\\n\\tdescription=\\\"You must setup a cronjob that will update your local listing with the external sources.<br \\/><br \\/><b>USE THE FOLLOWING:<\\/b> <span id=\'cronjob-externalUpdate\'>loading...<span class=\'loading-dots\' ><\\/span><\\/span><br \\/><br \\/>Please note that if your Joomla website has a Firewall installed, it will not allow cronjob via direct URL (most of the time), you will then need to adapt the cornjob request to look like a browser. For more info please read https:\\/\\/stackoverflow.com\\/a\\/31597823\\/1429677\\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 Cron Path\\r\\n\\tgetCronPath(\'externalUpdate\', token);\\r\\n});\\r\\nfunction getCronPath_server(getType, token){\\r\\n\\tvar getUrl = \'index.php?option=com_###component###&task=ajax.getCronPath&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 getCronPath(getType, token){\\r\\n\\t getCronPath_server(getType, token).done(function(result) {\\r\\n\\t\\tif(result.path){\\r\\n\\t\\t\\tjQuery(\'#cronjob-\'+getType).html(result.path);\\r\\n\\t\\t} else if (result.error) {\\r\\n\\t\\t\\tjQuery(\'#cronjob-\'+getType).html(result.error);\\r\\n\\t\\t} else {\\r\\n\\t\\t\\tjQuery(\'#cronjob-\'+getType).html(\'<span style=\\\\\'color: red;\\\\\'>Error loading path!<\\/span>\');\\r\\n\\t\\t}\\r\\n\\t})\\r\\n}\\r\\n<\\/script>\\\" \\r\\n\\theading=\\\"h4\\\"\\r\\n\\/>\"', 1, '2018-01-23 23:03:04', '2018-01-27 14:39:38', 5, '', 801, 'b2bf6c8c-a510-4a68-a474-e69f62ac4a49', '', '', '', '', ''),
(1903, '', '', '', '', '', '', '', '', 100, '', 'VARCHAR', 2, '', '', 'Translation (getBible)', 'NOT NULL', '', 6, '\"<field\\n\\ttype=\\\"translations\\\"\\n\\tname=\\\"abbreviation\\\"\\n\\tlabel=\\\"Translation\\\"\\n\\tdescription=\\\"Select a Bible translation\\\"\\n\\tclass=\\\"list_class\\\"\\n\\tmultiple=\\\"false\\\"\\n\\tdefault=\\\"0\\\"\\n\\trequired=\\\"true\\\"\\n\\textends=\\\"list\\\"\\n\\ttable=\\\"#__###component###_translation\\\"\\n\\tcomponent=\\\"com_###component###\\\"\\n\\tview=\\\"translation\\\"\\n\\tviews=\\\"translations\\\"\\n\\tvalue_field=\\\"translation\\\"\\n\\tkey_field=\\\"abbreviation\\\"\\n\\tprime_php=\\\"1\\\"\\n\\ttype_php_1=\\\"__.o0=base64=Oo.__Ly8gR2V0IHRoZSB1c2VyIG9iamVjdC4NCgkJJHVzZXIgPSBKRmFjdG9yeTo6Z2V0VXNlcigpOw0KCQkvLyBHZXQgdGhlIGRhdGFic2Ugb2JqZWN0Lg0KCQkkZGIgPSBKRmFjdG9yeTo6Z2V0REJPKCk7DQoJCSRxdWVyeSA9ICRkYi0+Z2V0UXVlcnkodHJ1ZSk7DQoJCSRxdWVyeS0+c2VsZWN0KCRkYi0+cXVvdGVOYW1lKGFycmF5KCdhLiMjI0lEIyMjJywnYS4jIyNURVhUIyMjJyksYXJyYXkoJyMjI0lEIyMjJywnIyMjQ09ERV9URVhUIyMjJykpKTsNCgkJJHF1ZXJ5LT5mcm9tKCRkYi0+cXVvdGVOYW1lKCcjIyNUQUJMRSMjIycsICdhJykpOw0KCQkkcXVlcnktPndoZXJlKCRkYi0+cXVvdGVOYW1lKCdhLnB1Ymxpc2hlZCcpIC4gJyA9IDEnKTsNCgkJJHF1ZXJ5LT5vcmRlcignYS4jIyNURVhUIyMjIEFTQycpOw0KCQkvLyBJbXBsZW1lbnQgVmlldyBMZXZlbCBBY2Nlc3MgKGlmIHNldCBpbiB0YWJsZSkNCgkJaWYgKCEkdXNlci0+YXV0aG9yaXNlKCdjb3JlLm9wdGlvbnMnLCAnW1tbY29tX2NvbXBvbmVudF1dXScpKQ0KCQl7DQoJCQkkY29sdW1ucyA9ICRkYi0+Z2V0VGFibGVDb2x1bW5zKCcjIyNUQUJMRSMjIycpOw0KCQkJaWYoaXNzZXQoJGNvbHVtbnNbJ2FjY2VzcyddKSkNCgkJCXsNCgkJCQkkZ3JvdXBzID0gaW1wbG9kZSgnLCcsICR1c2VyLT5nZXRBdXRob3Jpc2VkVmlld0xldmVscygpKTsNCgkJCQkkcXVlcnktPndoZXJlKCdhLmFjY2VzcyBJTiAoJyAuICRncm91cHMgLiAnKScpOw0KCQkJfQ0KCQl9DQoJCSRkYi0+c2V0UXVlcnkoKHN0cmluZykkcXVlcnkpOw0KCQkkaXRlbXMgPSAkZGItPmxvYWRPYmplY3RMaXN0KCk7DQoJCSRvcHRpb25zID0gW107DQoJCWlmICghZW1wdHkoJGl0ZW1zKSkNCgkJew0KCQkJaWYgKCR0aGlzLT5tdWx0aXBsZSA9PT0gZmFsc2UpDQoJCQl7DQoJCQkJJG9wdGlvbnNbXSA9IEpIdG1sOjpfKCdzZWxlY3Qub3B0aW9uJywgJycsIEpUZXh0OjpfKCdTZWxlY3QgYW4gb3B0aW9uJykpOw0KCQkJfQ0KCQkJZm9yZWFjaCgkaXRlbXMgYXMgJGl0ZW0pDQoJCQl7DQoJCQkJJG9wdGlvbnNbXSA9IEpIdG1sOjpfKCdzZWxlY3Qub3B0aW9uJywgJGl0ZW0tPiMjI0lEIyMjLCAkaXRlbS0+IyMjQ09ERV9URVhUIyMjLicgKCcgLiRpdGVtLT4jIyNJRCMjIy4nKScpOw0KCQkJfQ0KCQl9DQoNCgkJLy8gaWYgbm9uZSB3YXMgZm91bmQgd2UgbG9hZCB0aGUgS0pWIGFzIHRoZSBkZWZhdWx0DQoJCWlmIChlbXB0eSgkb3B0aW9ucykpDQoJCXsNCgkJCSRvcHRpb25zID0gW107DQoJCQlpZiAoJHRoaXMtPm11bHRpcGxlID09PSBmYWxzZSkNCgkJCXsNCgkJCQkkb3B0aW9uc1tdID0gSkh0bWw6Ol8oJ3NlbGVjdC5vcHRpb24nLCAnJywgSlRleHQ6Ol8oJ1NlbGVjdCBhbiBvcHRpb24nKSk7DQoJCQl9DQoJCQkkb3B0aW9uc1tdID0gSkh0bWw6Ol8oJ3NlbGVjdC5vcHRpb24nLCAna2p2JywgJ0tpbmcgSmFtZXMgVmVyc2lvbiAoa2p2KScpOyAvLyB0aGlzIGlzIHRoZSBkZWZhdWx0IGF0IGFsbCB0aW1lcy4NCgkJfQ0KDQoJCXJldHVybiAkb3B0aW9uczs=\\\"\\n\\/>\"', 1, '2018-01-30 21:09:30', '2023-07-26 19:39:26', 11, '', 819, '2bf9662b-b0d1-4db1-ab8f-f2d8197464ee', '', '', '', '', ''),
(1904, '', '', '', '', '', '', '', '', 100, '', 'VARCHAR', '', '', '', 'View Number (only number)', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"number\\\"\\n\\tlabel=\\\"[[[View]]] Number\\\"\\n\\tsize=\\\"10\\\"\\n\\tmaxlength=\\\"50\\\"\\n\\tdescription=\\\"The field number.\\\"\\n\\tclass=\\\"text_area\\\"\\n\\tfilter=\\\"FLOAT\\\"\\n\\tmessage=\\\"Error! Please add a number here.\\\"\\n\\thint=\\\"Only Numbers\\\"\\n\\tonchange=\\\"if(!jQuery(this).val().match(\\/^\\\\d+$\\/)){jQuery(this).val(\'\')};\\\"\\n\\/>\"', 1, '2018-01-31 19:14:20', '2018-09-07 17:15:38', 2, '', 7, '16ab0e56-e123-472b-aece-819dd886e43f', '', '', '', '', ''),
(1905, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'Book Names (default)', 'NOT NULL', '', 6, '\"<field \\r\\n\\ttype=\\\"booknames\\\" \\r\\n\\tname=\\\"book\\\" \\r\\n\\tlabel=\\\"Book\\\" \\r\\n\\tdescription=\\\"Select a Bible book\\\" \\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\tmultiple=\\\"false\\\" \\r\\n\\tdefault=\\\"0\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\textends=\\\"list\\\" \\r\\n\\tbutton=\\\"false\\\" \\r\\n\\ttable=\\\"#__###component###_book_name\\\" \\r\\n\\tcomponent=\\\"com_###component###\\\" \\r\\n\\tview=\\\"book_name\\\" \\r\\n\\tviews=\\\"book_names\\\" \\r\\n\\tvalue_field=\\\"name\\\" \\r\\n\\tkey_field=\\\"number\\\" \\r\\n\\ttype_php_1=\\\"$translation = JComponentHelper::getParams(\'com_componentbuilder\')->get(\'translation\', \'kjv\');\\\\n\\\\t\\\\t$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\');\\\\n\\\\t\\\\t$query->where($db->quoteName(\'a.translation\') . \' = \' . $db->quote($translation));\\\" \\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{\\\" \\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, '2018-01-31 19:36:21', '2018-02-06 22:58:28', 3, '', 7, 'be96caa2-fdbd-41b8-a18e-24cad1143776', '', '', '', '', ''),
(1906, '', '', '', '', '', '', '', '', 7, '', 'INT', 2, '', '', 'Chapters (number)', 'NOT NULL', '', 15, '\"<field \\r\\n\\ttype=\\\"number\\\" \\r\\n\\tname=\\\"chapter\\\" \\r\\n\\tlabel=\\\"Chapter\\\" \\r\\n\\tdescription=\\\"Select the chapter number\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\tmin=\\\"1\\\" \\r\\n\\tmax=\\\"150\\\" \\r\\n\\tstep=\\\"1\\\" \\r\\n\\/>\"', 1, '2018-01-31 19:39:22', '2018-02-01 20:13:22', 2, '', 7, 'e563aeb4-fb5d-40d3-b9f3-07066cca9ee0', '', '', '', '', ''),
(1907, '', '', '', '', '', '', '', '', 7, '', 'INT', 2, '', '', 'Verse (number)', 'NOT NULL', '', 15, '\"<field \\r\\n\\ttype=\\\"number\\\" \\r\\n\\tname=\\\"verse\\\" \\r\\n\\tlabel=\\\"Verse\\\" \\r\\n\\tdescription=\\\"Select the verse number\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\tmin=\\\"1\\\" \\r\\n\\tmax=\\\"176\\\" \\r\\n\\tstep=\\\"1\\\" \\r\\n\\/>\"', 1, '2018-01-31 19:41:38', '2018-02-01 20:13:15', 2, '', 7, 'c5e07e4f-14e2-4ff8-b956-0077b77c4668', '', '', '', '', ''),
(1908, '', '', '', '', '', '', '', '', 7, '', 'TEXT', '', '', '', 'Scripture (verse)', 'NOT NULL', '', 25, '\"<field \\r\\n\\ttype=\\\"textarea\\\" \\r\\n\\tname=\\\"text\\\" \\r\\n\\tlabel=\\\"Scripture (verse)\\\" \\r\\n\\trows=\\\"10\\\" \\r\\n\\tcols=\\\"5\\\" \\r\\n\\tdescription=\\\"The Holy Scripture (do not change)\\\" \\r\\n\\tclass=\\\"text_area span12\\\" \\r\\n\\tfilter=\\\"raw\\\" \\r\\n\\thint=\\\"\\/\\/ Will be added during install of translations\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\treadonly=\\\"true\\\" \\r\\n\\tdisabled=\\\"true\\\" \\r\\n\\/>\"', 1, '2018-01-31 19:49:22', '2018-02-06 22:57:03', 3, '', 7, '1f4eb0e9-d4b5-4d3b-8c58-258b74303db1', '', '', '', '', ''),
(1909, '', '', '', '', '', '', '', '', 7, '', 'TEXT', '', '', '', 'Scripture (chapter)', 'NOT NULL', '', 25, '\"<field \\r\\n\\ttype=\\\"textarea\\\" \\r\\n\\tname=\\\"text\\\" \\r\\n\\tlabel=\\\"Scripture (chapter)\\\" \\r\\n\\trows=\\\"10\\\" \\r\\n\\tcols=\\\"5\\\" \\r\\n\\tdescription=\\\"The Holy Scripture (do not change)\\\" \\r\\n\\tclass=\\\"text_area span12\\\" \\r\\n\\tfilter=\\\"raw\\\" \\r\\n\\thint=\\\"\\/\\/ Will be added during install of translations\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\treadonly=\\\"true\\\" \\r\\n\\tdisabled=\\\"true\\\" \\r\\n\\/>\"', 1, '2018-01-31 19:50:12', '2018-02-06 22:57:15', 5, '', 7, '71e0c71a-45bc-4700-9fbd-50de94c75128', '', '', '', '', ''),
(1910, '', '', '', '', '', '', '', '', 7, '', 'MEDIUMTEXT', '', '', '', 'Scripture (book)', 'NOT NULL', '', 35, '\"<field \\r\\n\\ttype=\\\"subform\\\" \\r\\n\\tname=\\\"scripture\\\" \\r\\n\\tlabel=\\\"Scripture (book)\\\" \\r\\n\\tdescription=\\\"The Holy Scripture (do not change)\\\" \\r\\n\\tlayout=\\\"joomla.form.field.subform.repeatable-table\\\" \\r\\n\\tmultiple=\\\"true\\\" \\r\\n\\tfields=\\\"1906,1909\\\" \\r\\n\\ticon=\\\"list\\\" \\r\\n\\tmaximum=\\\"200\\\" \\r\\n\\/>\"', 1, '2018-01-31 19:50:56', '2018-02-01 20:08:51', 5, '', 7, 'fc33dc81-446e-47c0-ab25-3d45b280eb53', '', '', '', '', ''),
(1911, '', '', '', '', '', '', '', '', 64, '', 'VARCHAR', 2, '', '', 'Abbreviation', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"abbr\\\" \\r\\n\\tlabel=\\\"Abbreviation\\\" \\r\\n\\tsize=\\\"10\\\" \\r\\n\\tmaxlength=\\\"50\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\tfilter=\\\"STRING\\\" \\r\\n\\trequired=\\\"true\\\"\\r\\n\\tmessage=\\\"Error! Please add some text here.\\\" \\r\\n\\/>\"', 1, '2018-01-31 20:00:12', '2018-02-01 20:12:47', 2, '', 820, '14c8a145-61ee-488b-914b-d88c865f1937', '', '', '', '', ''),
(1912, '', '', '', '', '', '', '', '', 64, '', 'TEXT', '', '', '', 'Abbreviations', 'NOT NULL', '', 35, '\"<field \\r\\n\\ttype=\\\"subform\\\" \\r\\n\\tname=\\\"abbreviations\\\" \\r\\n\\tlabel=\\\"Abbreviations\\\" \\r\\n\\tdescription=\\\"Abbreviations for this book\\\" \\r\\n\\tlayout=\\\"joomla.form.field.subform.repeatable-table\\\" \\r\\n\\tmultiple=\\\"true\\\" \\r\\n\\tfields=\\\"1911\\\"\\r\\n\\ticon=\\\"list\\\" \\r\\n\\tmaximum=\\\"10\\\" \\r\\n\\/>\"', 1, '2018-01-31 20:02:58', '2018-02-01 20:13:01', 2, '', 820, 'd5335bc6-604f-4928-850b-a9ac5f7f12db', '', '', '', '', ''),
(1913, '', '', '', '', '', '', '', '', 100, '', 'VARCHAR', '', '', '', 'Language (translation)', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"language\\\"\\n\\tlabel=\\\"Language\\\"\\n\\tsize=\\\"10\\\"\\n\\tmaxlength=\\\"10\\\"\\n\\tdescription=\\\"The translation language.\\\"\\n\\tclass=\\\"text_area\\\"\\n\\trequired=\\\"true\\\"\\n\\tfilter=\\\"STRING\\\"\\n\\tmessage=\\\"Error! Please add language tag here.\\\"\\n\\thint=\\\"English\\\"\\n\\/>\"', 1, '2018-02-01 00:13:02', '2023-06-02 14:19:44', 4, '', 781, '5a956d5e-5145-4fab-863b-b7a5d92e4fb9', '', '', '', '', ''),
(1914, '', '', '', '', '', '', '', '', 64, '', 'VARCHAR', '', '', '', 'Directional (RTL - LTR)', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"direction\\\"\\n\\tlabel=\\\"Directional\\\"\\n\\tdescription=\\\"Select Right-to-Left (RTL) or Left-to-Right (LTR)\\\"\\n\\tclass=\\\"btn-group\\\"\\n\\toption=\\\"LTR|Sinistrodextral (LTR),RTL|Dextrosinistral (RTL)\\\"\\n\\tdefault=\\\"LTR\\\"\\n\\trequired=\\\"true\\\"\\n\\/>\"', 1, '2018-02-01 00:22:55', '2023-06-02 14:18:58', 6, '', 781, '2e6bd7af-443e-431b-b358-efbc079cf21c', '', '', '', '', ''),
(1915, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Two Letter Language Abbreviation', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"lang\\\"\\n\\tlabel=\\\"Two Letter Language Abbreviation\\\"\\n\\tsize=\\\"10\\\"\\n\\tmaxlength=\\\"50\\\"\\n\\tdescription=\\\"Enter some language abbreviation\\\"\\n\\tclass=\\\"text_area\\\"\\n\\trequired=\\\"true\\\"\\n\\tfilter=\\\"WORD\\\"\\n\\tmessage=\\\"Error! Please add some language abbreviation here.\\\"\\n\\thint=\\\"en\\\"\\n\\/>\"', 1, '2018-02-01 00:27:37', '2023-06-02 14:30:48', 5, '', 781, 'e8bf26e3-0777-4d2b-9b94-6abd39a55140', '', '', '', '', ''),
(1916, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Note (getBible)', 'NOT NULL', '', 25, '\"<field\\n\\ttype=\\\"textarea\\\"\\n\\tname=\\\"note\\\"\\n\\tlabel=\\\"Text\\\"\\n\\trows=\\\"10\\\"\\n\\tcols=\\\"5\\\"\\n\\tdescription=\\\"Text Area\\\"\\n\\tclass=\\\"text_area\\\"\\n\\tfilter=\\\"string\\\"\\n\\thint=\\\"add note here\\\"\\n\\trequired=\\\"true\\\"\\n\\/>\"', 1, '2018-02-01 00:53:14', '2023-06-28 01:28:37', 2, '', 821, '995f6d4a-4a97-4744-ac5b-d66e6e4f74c5', '', '', '', '', ''),
(1917, '', '', '', '', '', '', '', '', 7, '', 'TEXT', '', '', '', 'Scripture (chapter)', 'NOT NULL', '', 35, '\"<field \\r\\n\\ttype=\\\"subform\\\" \\r\\n\\tname=\\\"scripture\\\" \\r\\n\\tlabel=\\\"Scripture (chapter)\\\" \\r\\n\\tdescription=\\\"The Holy Scripture (do not change)\\\" \\r\\n\\tlayout=\\\"joomla.form.field.subform.repeatable-table\\\" \\r\\n\\tmultiple=\\\"true\\\" \\r\\n\\tfields=\\\"1907,1908\\\" \\r\\n\\ticon=\\\"list\\\" \\r\\n\\tmaximum=\\\"200\\\" \\r\\n\\/>\"', 1, '2018-02-01 19:58:07', '2018-02-01 20:05:20', 2, '', 7, '1519300b-d5d8-4b09-8ff2-4dc1b8f443cb', '', '', '', '', ''),
(1918, '', '', '', '', '', '', '', '', 64, '', 'VARCHAR', '', '', '', 'Type (return)', 'NOT NULL', '', 11, '\"<field \\r\\n\\ttype=\\\"list\\\" \\r\\n\\tname=\\\"type\\\" \\r\\n\\tlabel=\\\"Type\\\" \\r\\n\\tdescription=\\\"Select the return type\\\"\\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\trequired=\\\"true\\\"\\r\\n\\tmultiple=\\\"false\\\" \\r\\n\\toption=\\\"|Select an option,xml,json,html\\\" \\r\\n\\tdefault=\\\"\\\"\\r\\n\\/>\"', 1, '2018-02-01 20:16:19', '2018-02-01 20:12:17', 1, '', 781, 'bff01ca3-c97a-4f50-9a12-8f7d8ea3eb88', '', '', '', '', ''),
(1919, '', '', '', '', '', '', '', '', 255, '', 'TEXT', '', '', '', 'Verse Template (getBible)', 'NOT NULL', '', 25, '\"<field \\r\\n\\ttype=\\\"textarea\\\" \\r\\n\\tname=\\\"verse\\\" \\r\\n\\tlabel=\\\"Verse Template\\\" \\r\\n\\tdescription=\\\"This template will be used to build each verse\\\"\\r\\n\\trows=\\\"10\\\" \\r\\n\\tcols=\\\"5\\\" \\r\\n\\tdescription=\\\"Text Area\\\" \\r\\n\\tclass=\\\"text_area span12\\\" \\r\\n\\tfilter=\\\"SAFEHTML\\\" \\r\\n\\thint=\\\"\\/\\/ add the verse template here\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\/>\"', 1, '2018-02-01 20:19:40', '2018-02-01 20:22:43', 2, '', 821, 'e766db2e-ae47-4fac-a04b-a25a6919c23f', '', '', '', '', ''),
(1920, '', '', '', '', '', '', '', '', 255, '', 'TEXT', '', '', '', 'Chapter Template (getBible)', 'NOT NULL', '', 25, '\"<field \\r\\n\\ttype=\\\"textarea\\\" \\r\\n\\tname=\\\"chapter\\\" \\r\\n\\tlabel=\\\"Chapter Template\\\" \\r\\n\\tdescription=\\\"This template will be used to build each chapter\\\"\\r\\n\\trows=\\\"10\\\" \\r\\n\\tcols=\\\"5\\\" \\r\\n\\tdescription=\\\"Text Area\\\" \\r\\n\\tclass=\\\"text_area span12\\\" \\r\\n\\tfilter=\\\"SAFEHTML\\\" \\r\\n\\thint=\\\"\\/\\/ add the chapter template here\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\/>\"', 1, '2018-02-01 20:20:21', '2018-02-01 20:22:55', 3, '', 821, '8a592f30-2fbc-460a-9778-8433d5b7d50d', '', '', '', '', ''),
(1921, '', '', '', '', '', '', '', '', 255, '', 'TEXT', '', '', '', 'Book Template (getBible)', 'NOT NULL', '', 25, '\"<field \\r\\n\\ttype=\\\"textarea\\\" \\r\\n\\tname=\\\"book\\\" \\r\\n\\tlabel=\\\"Book Template\\\" \\r\\n\\tdescription=\\\"This template will be used to build each book\\\"\\r\\n\\trows=\\\"10\\\" \\r\\n\\tcols=\\\"5\\\" \\r\\n\\tdescription=\\\"Text Area\\\" \\r\\n\\tclass=\\\"text_area span12\\\" \\r\\n\\tfilter=\\\"SAFEHTML\\\" \\r\\n\\thint=\\\"\\/\\/ add the book template here\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\/>\"', 1, '2018-02-01 20:20:50', '2018-02-01 20:23:02', 3, '', 821, 'c8f11f6b-f4c3-4661-9a4f-4e248d956c15', '', '', '', '', ''),
(1922, '', '', '', '', '', '', '', '', 255, '', 'TEXT', '', '', '', 'Translation Template (getBible)', 'NOT NULL', '', 25, '\"<field \\r\\n\\ttype=\\\"textarea\\\" \\r\\n\\tname=\\\"translation\\\" \\r\\n\\tlabel=\\\"Translation Template\\\" \\r\\n\\tdescription=\\\"This template will be used to build each translation\\\"\\r\\n\\trows=\\\"10\\\" \\r\\n\\tcols=\\\"5\\\" \\r\\n\\tdescription=\\\"Text Area\\\" \\r\\n\\tclass=\\\"text_area span12\\\" \\r\\n\\tfilter=\\\"SAFEHTML\\\" \\r\\n\\thint=\\\"\\/\\/ add the translation template here\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\/>\"', 1, '2018-02-01 20:21:24', '2018-02-06 22:59:12', 3, '', 821, '1728b7e9-11d7-48c9-a6c8-e434cfe7cb79', '', '', '', '', ''),
(1923, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Distribution License (getBible)', 'NOT NULL', '', 25, '\"<field\\n\\ttype=\\\"textarea\\\"\\n\\tname=\\\"distribution_license\\\"\\n\\tlabel=\\\"Distribution License\\\"\\n\\trows=\\\"7\\\"\\n\\tcols=\\\"10\\\"\\n\\tdefault=\\\"\\\"\\n\\tdescription=\\\"Add Translation Distribution License Here\\\"\\n\\tclass=\\\"text_area span12\\\"\\n\\tfilter=\\\"SAFEHTML\\\"\\n\\thint=\\\"Add Distribution License Here\\\"\\n\\trequired=\\\"true\\\"\\n\\/>\"', 1, '2018-02-06 13:35:20', '2023-06-02 14:16:44', 4, '', 150, 'c7eaee18-cc01-480c-a0b1-362b034fc5ad', '', '', '', '', ''),
(1924, '', '', '', '', '', '', '', '', 255, '', 'TEXT', '', '', '', 'Username (ssh)', 'NOT NULL', 3, 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"username\\\" \\r\\n\\tlabel=\\\"Username<br \\/><small>(encrypted field)<\\/small>\\\" \\r\\n\\tsize=\\\"60\\\" \\r\\n\\tmaxlength=\\\"150\\\" \\r\\n\\trequired=\\\"true\\\"\\r\\n\\tdefault=\\\"\\\" \\r\\n\\tdescription=\\\"Enter the username.\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\tfilter=\\\"STRING\\\" \\r\\n\\tvalidate=\\\"\\\" \\r\\n\\tmessage=\\\"Error! Please add the username here.\\\" \\r\\n\\thint=\\\"root\\\" \\r\\n\\/>\"', 1, '2018-02-14 21:26:52', '2018-03-06 19:27:30', 4, '', 663, '41152cdd-e774-4edf-be9b-280d272d5712', '', '', '', '', ''),
(1925, '', '', '', '', '', '', '', '', 255, '', 'TEXT', '', '', '', 'Password (ssh)', 'NOT NULL', 3, 16, '\"<field \\r\\n\\ttype=\\\"password\\\" \\r\\n\\tname=\\\"password\\\" \\r\\n\\tlabel=\\\"Password<br \\/><small>(encrypted field)<\\/small>\\\" \\r\\n\\tsize=\\\"60\\\" \\r\\n\\tmaxlength=\\\"150\\\" \\r\\n\\trequired=\\\"true\\\"\\r\\n\\tdefault=\\\"\\\" \\r\\n\\tdescription=\\\"Enter the password.\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\tmessage=\\\"Error! Please add the password here.\\\" \\r\\n\\tfilter=\\\"raw\\\" \\r\\n\\/>\"', 1, '2018-02-14 21:29:00', '2018-03-06 19:27:36', 4, '', 663, '0a6939be-aabc-46df-b922-f083cf0c5bd4', '', '', '', '', ''),
(1926, '', '', '', '', '', '', '', '', 255, '', 'TEXT', '', '', '', 'Secret (ssh)', 'NOT NULL', 3, 16, '\"<field \\r\\n\\ttype=\\\"password\\\" \\r\\n\\tname=\\\"secret\\\" \\r\\n\\tlabel=\\\"Passphrase<br \\/><small>(encrypted field)<\\/small>\\\" \\r\\n\\tsize=\\\"60\\\" \\r\\n\\tmaxlength=\\\"150\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tdescription=\\\"If private key file is encrypted (which it should be), the passphrase must be provided.\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\tmessage=\\\"Error! Please add the passphrase here.\\\" \\r\\n\\tfilter=\\\"raw\\\" \\r\\n\\/>\"', 1, '2018-02-14 21:29:45', '2018-03-06 19:27:42', 6, '', 663, 'c6ccb2ba-4d74-487a-99a8-f2bfe40a23f1', '', '', '', '', ''),
(1927, '', '', '', '', '', '', '', '', 255, '', 'TEXT', '', '', '', 'Private Key Path', 'NOT NULL', 3, 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"private\\\" \\r\\n\\tlabel=\\\"Private Key Path<br \\/><small>(encrypted field)<\\/small>\\\" \\r\\n\\tdescription=\\\"Set the path to the private key.\\\"\\r\\n\\tsize=\\\"50\\\" \\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 private key path.\\\" \\r\\n\\thint=\\\"\\/home\\/username\\/.ssh\\/id_rsa\\\" \\r\\n\\/>\"', 1, '2018-02-14 21:35:53', '2018-03-06 19:27:48', 4, '', 303, '2c689678-6cef-40ef-97da-d59ab7d039d1', '', '', '', '', ''),
(1928, '', '', '', '', '', '', '', '', 255, '', 'TEXT', '', '', '', 'PEM certificate Path', 'NOT NULL', 3, 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"pem\\\" \\r\\n\\tlabel=\\\"PEM certificate Path<br \\/><small>(encrypted field)<\\/small>\\\" \\r\\n\\tdescription=\\\"Set the path to the PEM certificate. PEM or Privacy Enhanced Mail is a Base64 encoded DER certificate.\\\"\\r\\n\\tsize=\\\"50\\\" \\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 PEM certificate path.\\\" \\r\\n\\thint=\\\"\\/home\\/username\\/.ssh\\/certificate.pem\\\" \\r\\n\\/>\"', 1, '2018-02-14 21:37:52', '2018-03-06 19:27:57', 3, '', 303, '4d2ecaa0-bf44-4736-84fd-807b6c30d27e', '', '', '', '', ''),
(1929, '', '', '', '', '', '', '', '', 255, '', 'TEXT', '', '', '', 'Host (ssh)', 'NOT NULL', 3, 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"host\\\" \\r\\n\\tlabel=\\\"Host\\/IP<br \\/><small>(encrypted field)<\\/small>\\\" \\r\\n\\tsize=\\\"40\\\" \\r\\n\\tmaxlength=\\\"150\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tdescription=\\\"Add the server host name\\/IP here\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\trequired=\\\"true\\\"\\r\\n\\tfilter=\\\"STRING\\\" \\r\\n\\tmessage=\\\"Error! Please add server host name here.\\\" \\r\\n\\thint=\\\"yourhost.com\\\" \\r\\n\\/>\"', 1, '2018-02-14 21:40:21', '2018-03-06 19:28:03', 5, '', 726, '3eed4f04-46cc-43e8-9712-b6e339e71241', '', '', '', '', ''),
(1930, '', '', '', '', '', '', '', '', 11, '', 'TEXT', '', '', '', 'Port Number (ssh)', 'NOT NULL', 3, 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"port\\\" \\r\\n\\tlabel=\\\"Port Number<br \\/><small>(encrypted field)<\\/small>\\\" \\r\\n\\tsize=\\\"10\\\" \\r\\n\\tmaxlength=\\\"50\\\"\\r\\n\\tdescription=\\\"The port number\\\" \\r\\n\\tdefault=\\\"22\\\"\\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\trequired=\\\"true\\\"\\r\\n\\tfilter=\\\"INT\\\" \\r\\n\\tmessage=\\\"Error! Please add port number here.\\\" \\r\\n\\thint=\\\"22\\\"\\r\\n\\tonchange=\\\"if(!jQuery(this).val().match(\\/^\\\\d+$\\/)){jQuery(this).val(\'\')};\\\" \\r\\n\\/>\"', 1, '2018-02-14 21:43:19', '2018-03-06 19:28:09', 3, '', 7, '5a64961d-8aa6-4de4-92e2-997199e5a707', '', '', '', '', ''),
(1931, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Server Protocol', 'NOT NULL', '', 11, '\"<field \\r\\n\\ttype=\\\"list\\\" \\r\\n\\tname=\\\"protocol\\\" \\r\\n\\tlabel=\\\"Protocol\\\" \\r\\n\\tdescription=\\\"Select the protocol used to connect to this server.\\\" \\r\\n\\tmessage=\\\"\\\" \\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\tmultiple=\\\"false\\\" \\r\\n\\tfilter=\\\"INT\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\toption=\\\"|Select an option,1|FTP,2|SFTP\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\/>\"', 1, '2018-02-14 21:58:37', '2018-02-17 20:29:30', 2, '', 822, 'a5bb2b19-d773-465c-a7e3-ce6400735734', '', '', '', '', ''),
(1932, '', '', '', '', '', '', '', '', 255, '', 'TEXT', '', '', '', 'Remote Destination Path', 'NOT NULL', 3, 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"path\\\" \\r\\n\\tlabel=\\\"Remote Destination Folder Path<br \\/><small>(encrypted field)<\\/small>\\\" \\r\\n\\tdescription=\\\"Set the path to the remote destination folder. The user must have write permissions to this folder.\\\"\\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 destination path.\\\" \\r\\n\\thint=\\\"\\/home\\/username\\/folder\\/\\\" \\r\\n\\/>\"', 1, '2018-02-14 22:27:55', '2018-03-06 19:28:15', 4, '', 303, '593fe848-22f3-45d1-8d8d-7824542a7381', '', '', '', '', ''),
(1933, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'Authentication Type (ssh)', 'NOT NULL', '', 11, '\"<field \\r\\n\\ttype=\\\"list\\\"\\r\\n\\tname=\\\"authentication\\\" \\r\\n\\tlabel=\\\"Authentication Type\\\" \\r\\n\\tdescription=\\\"Select the authentication type to use with SFTP.\\\" \\r\\n\\tmessage=\\\"\\\" \\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\tmultiple=\\\"false\\\" \\r\\n\\tfilter=\\\"INT\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\toption=\\\"|Select an option,1|Password,2|Private Key - File Path,3|Both Password & Private Key - File Path,4|Private Key - Text Field,5|Both Password & Private Key - Text Field\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\/>\"', 1, '2018-02-14 23:41:34', '2018-02-26 15:15:18', 4, '', 823, '452b22ac-adfc-4fca-9d82-5461806bf847', '', '', '', '', ''),
(1934, '', '', '', '', '', '', '', '', '', '', 'CHAR', '', '', '', 'SSH Security (note)', 'NOT NULL', '', 14, '\"<field \\r\\n\\ttype=\\\"note\\\" \\r\\n\\tname=\\\"note_ssh_security\\\" \\r\\n\\tlabel=\\\"The SFTP Security Cautions!\\\" \\r\\n\\tdescription=\\\"<b>Do not use this feature if you do not know exactly what you are doing!<\\/b> Secure File Transfer Protocol (SFTP) is a secure version of File Transfer Protocol (FTP), which facilitates data access and data transfer over a Secure Shell (SSH) data stream. It is part of the SSH Protocol. This term is also known as SSH File Transfer Protocol. Secure Shell (SSH) is a cryptographic network protocol for operating network services securely over an unsecured network, but if not used correctly it can cause a major breach in security.\\\" \\r\\n\\theading=\\\"h4\\\" \\r\\n\\tclass=\\\"alert alert-info\\\" \\r\\n\\/>\"', 1, '2018-02-15 00:29:58', '2018-02-17 20:37:20', 2, '', 746, '5fcde295-b3f7-48d4-aa96-eed40023a3f6', '', '', '', '', ''),
(1935, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Add Files (full path)', 'NOT NULL', '', 35, '\"<field \\r\\n\\ttype=\\\"subform\\\" \\r\\n\\tname=\\\"addfilesfullpath\\\" \\r\\n\\tlabel=\\\"Files (full path)\\\" \\r\\n\\tdescription=\\\"Add files to this component using the full path.\\\" \\r\\n\\tlayout=\\\"joomla.form.field.subform.repeatable-table\\\" \\r\\n\\tmultiple=\\\"true\\\" \\r\\n\\tfields=\\\"1940,296,328\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\ticon=\\\"list\\\" \\r\\n\\tmaximum=\\\"500\\\" \\r\\n\\/>\"', 1, '2018-02-16 14:46:54', '2018-02-16 15:01:29', 2, '', 310, 'e5f50226-6749-4bd3-9aa1-cf3db6ce448d', '', '', '', '', ''),
(1936, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Add Folder (full path)', 'NOT NULL', '', 35, '\"<field \\r\\n\\ttype=\\\"subform\\\"\\r\\n\\tname=\\\"addfoldersfullpath\\\" \\r\\n\\tlabel=\\\"Folder (full path)\\\"\\r\\n\\tdescription=\\\"Add custom folder to this component using the full path.\\\" \\r\\n\\tlayout=\\\"joomla.form.field.subform.repeatable-table\\\" \\r\\n\\tmultiple=\\\"true\\\" \\r\\n\\tfields=\\\"1939,296,329\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\ticon=\\\"list\\\" \\r\\n\\tmaximum=\\\"500\\\" \\r\\n\\tfilter=\\\"\\\" \\r\\n\\/>\"', 1, '2018-02-16 14:47:41', '2018-02-16 15:02:03', 2, '', 309, 'fe780ac8-ed30-481c-8700-84472caa0072', '', '', '', '', ''),
(1937, '', '', '', '', '', '', '', '', '', '', 'CHAR', '', '', '', 'Note - Add Files (full path)', 'NOT NULL', '', 14, '\"<field \\r\\n\\ttype=\\\"note\\\" \\r\\n\\tname=\\\"note_add_files_fullpath\\\" \\r\\n\\tlabel=\\\"Adding Files\\\" \\r\\n\\tdescription=\\\"You can add any files to the component, by using the full system path. Example: \\/home\\/user\\/folder\\/file.php (make sure that php has permission to read the file)<br \\/><b>Please note<\\/b> that you can also <b>use constant paths in your full path<\\/b> (directly without quotes), this is highly recommended to insure portability.<br \\/>To see a list of constant paths please read the notes below. Example: JPATH_ROOT\\/file.php or JPATH_ROOT\\/components\\/com_yourcomponentname\\/helpers\\/file.php\\\" \\r\\n\\theading=\\\"h4\\\" \\r\\n\\tclass=\\\"alert alert-info\\\" \\r\\n\\/>\"', 1, '2018-02-16 14:51:25', '2018-03-02 02:06:41', 5, '', 307, '08a2206a-7df7-4a7c-ab64-9c055f916fc4', '', '', '', '', ''),
(1938, '', '', '', '', '', '', '', '', '', '', 'CHAR', '', '', '', 'Note - Add Folders (full path)', 'NOT NULL', '', 14, '\"<field \\r\\n\\ttype=\\\"note\\\" \\r\\n\\tname=\\\"note_add_folders_fullpath\\\" \\r\\n\\tlabel=\\\"Adding Folders\\\" \\r\\n\\tdescription=\\\"You can any folders to the component, by using the full system path. Example: \\/home\\/user\\/folder (make sure that php has permission to read the folder)<br \\/><b>Please note<\\/b> that you can also <b>use constant paths in your full path<\\/b> (directly without quotes), this is highly recommended to insure portability.<br \\/>To see a list of constant paths please read the notes below. Example: JPATH_ROOT\\/folder or JPATH_ROOT\\/components\\/com_yourcomponentname\\/helpers\\/folder\\\" \\r\\n\\theading=\\\"h4\\\" \\r\\n\\tclass=\\\"alert alert-info\\\" \\r\\n\\/>\"', 1, '2018-02-16 14:52:34', '2018-03-02 02:05:54', 4, '', 306, 'c885d1d1-7d18-4520-9297-ed59b500ee6c', '', '', '', '', ''),
(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', '', '', '', '', ''),
(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', '', '', '', '', ''),
(1946, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Components (single)', 'NOT NULL', '', 6, '\"<field\\n\\ttype=\\\"joomlacomponents\\\"\\n\\tname=\\\"components\\\"\\n\\tlabel=\\\"Components\\\"\\n\\tclass=\\\"list_class\\\"\\n\\tmultiple=\\\"false\\\"\\n\\tdefault=\\\"0\\\"\\n\\trequired=\\\"true\\\"\\n\\textends=\\\"list\\\"\\n\\tbutton=\\\"false\\\"\\n\\ttable=\\\"#__###component###_joomla_component\\\"\\n\\tcomponent=\\\"com_###component###\\\"\\n\\tview=\\\"joomla_component\\\"\\n\\tviews=\\\"joomla_components\\\"\\n\\tvalue_field=\\\"system_name\\\"\\n\\tkey_field=\\\"id\\\"\\n\\ttype_php_1=\\\"__.o0=base64=Oo.__Ly8gUFJJTUUgSVM6IDYxOTkwMjY1LWVmZTUtNDlkMy1hZTA4LTRiZDBlOGYzZTRjZSAoaWQ6MTY5Nik=\\\"\\n\\/>\"', 1, '2018-02-21 15:40:30', '2021-12-21 08:58:00', 3, '', 733, 'b363c37b-cc32-4a96-9d48-ef0ab95ccd5a', '', '', '', '', ''),
(1947, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Allowed Components (chain)', 'NOT NULL', '', 35, '\"<field \\r\\n\\ttype=\\\"subform\\\" \\r\\n\\tname=\\\"chain\\\" \\r\\n\\tlabel=\\\"JCB Components Being Synced\\\" \\r\\n\\tlayout=\\\"joomla.form.field.subform.repeatable-table\\\" \\r\\n\\tmultiple=\\\"true\\\" \\r\\n\\tfields=\\\"1946\\\" \\r\\n\\tdescription=\\\"The list of JCB mapped component that will be synced.\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\ticon=\\\"list\\\" \\r\\n\\/>\"', 1, '2018-02-21 15:42:12', '2017-11-07 20:40:54', 1, '', 798, '81fd60a1-0e11-4942-a285-170d93b5a7e1', '', '', '', '', ''),
(1948, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Dynamic Salt', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"dynamic_salt\\\" \\r\\n\\tlabel=\\\"Dynamic Salt\\\" \\r\\n\\tsize=\\\"10\\\" \\r\\n\\tmaxlength=\\\"50\\\" \\r\\n\\tdefault=\\\"1->!,3->E,4->A\\\" \\r\\n\\tdescription=\\\"The global dynamic replacement array<br \\/>(format: \'1->!,3->E,4->A\')\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\tfilter=\\\"STRING\\\" \\r\\n\\tmessage=\\\"Error! Please add some text here.\\\" \\r\\n\\thint=\\\"1->!,3->E,4->A\\\" \\r\\n\\/>\"', 1, '2018-02-22 16:30:49', '2018-02-23 06:03:21', 2, '', 826, '9a2b47de-f09b-4364-9914-7e1c989cc708', '', '', '', '', ''),
(1949, '', '', '', '', '', '', '', '', 255, '', 'TEXT', '', '', '', 'Private key (TEXT)', 'NOT NULL', 3, 25, '\"<field \\r\\n\\ttype=\\\"textarea\\\" \\r\\n\\tname=\\\"private_key\\\" \\r\\n\\tlabel=\\\"PRIVATE KEY<br \\/><small>(encrypted field)<\\/small>\\\" \\r\\n\\trows=\\\"15\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tdescription=\\\"Add your private key here! Yes this field is encrypted in the DB, but if your DB gets compromised this key must also be considered compromised! The system path option is considered more secure and seen as best practice.\\\" \\r\\n\\tclass=\\\"input-xxlarge span12\\\" \\r\\nhint=\\\"-----BEGIN RSA PRIVATE KEY-----\\r\\nMIICXQIBAAKBgQDPF9uyDuHtD+sCYBaEIV34uAc+eRa62souVUcmsVwKUUBbk7sY\\r\\nbnO6ixjouEbhis1L4m854895tJ99SSPu5cXxYTFimCJDjp47fjro4x8js9em10kK\\r\\nVCP2fP60\\/jO+mTruGc25C1SksMtRj5XlsGW3avoOV2RjsqAwKxhk6AUF6QIDAQAB\\r\\nAoGAYGGlMOB2S2NeJ7PaptH0rz3OuUeXyYzsDdZIj\\/x5bp\\/UCQrfR4aYO9hi1mR1\\r\\nMKDt3QRcaZ\\/ZvrXOiHuSyquLjG0R1tVVR+OZE+haBSunUUq05ZFT7zUJRPHVKoSK\\r\\nQOV\\/c831tCA5gCUupXiaak\\/vYMZRf+xs9wHDyuZstEoU8tUCQQD\\/GGV\\/8cuiYQK4\\r\\nMlpXgvOeYEYayhbQ80qe2aVolQIlRXyY6N9dV1lfbUO8rlTJ2EDVOFc8NDkPHf2f\\r\\nxzbplDCDAkEAz9PhT8ji8fJgKuDAhWDXF0TuwVWk2hjtYCVGsksE3w16lv9OCwoK\\r\\nUuWOY2b7wEYh0y8Z9AKBDHM1xhS8Bl7MIwJBANAkNd1Zi5Aom7Fz1GcHQIR\\/hXQi\\r\\nZM+FU+OdLuvQeXmz4uBZUre0qAXG\\/7gafrBbNTtEx1kmO1BsZh9Syyl3csUCQQDF\\r\\nMD4pm2tpMRV52YIRi07J70ex\\/PbLULd5cCTh6jgXAwz71AVSiBY\\/jTtKqV3YkzJo\\r\\n09oGIZIcI\\/wzk1zLloqNAkB8qHxAtmUZFdo5sssaUDTOB82QAPfiHUqIFPaYuc0f\\r\\n4NqtXZm+fv4liR3QJEo8zkiBs3NjBnm7Hh3BMSqGh3d+\\r\\n-----END RSA PRIVATE KEY-----\\\"\\r\\n\\trequired=\\\"true\\\"\\r\\n\\/>\"', 1, '2018-02-26 15:10:42', '2018-03-06 19:28:22', 4, '', 663, '29b8c31d-6e2a-4f8d-90c7-febfbb9cc16c', '', '', '', '', ''),
(1950, '', '', '', '', '', '', '', '', '', '', '', '', '', '', 'Note - Constant Paths', 'NOT NULL', '', 14, '\"<field\\n\\ttype=\\\"note\\\"\\n\\tname=\\\"note_constant_paths\\\"\\n\\tlabel=\\\"Constant Paths\\\"\\n\\tdescription=\\\"<p>\\/\\/ The path to the administrator folder.<br \\/>\\r\\n<b>JPATH_ADMINISTRATOR<\\/b><br \\/>\\r\\n\\/\\/ The path to the installed Joomla! site, or JPATH_ROOT\\/administrator if executed from the backend.<br \\/>\\r\\n<b>JPATH_BASE<\\/b><br \\/>\\r\\n\\/\\/ The path to the cache folder.<br \\/>\\t\\t\\r\\n<b>JPATH_CACHE<\\/b><br \\/>\\r\\n\\/\\/ The path to the administration folder of JCB component.<br \\/>\\t\\t\\r\\n<b>JPATH_COMPONENT_ADMINISTRATOR<\\/b> <small>no ideal to use<\\/small><br \\/>\\r\\n\\/\\/ The path to the site folder of JCB component.<br \\/>\\t\\t\\r\\n<b>JPATH_COMPONENT_SITE<\\/b> <small>no ideal to use<\\/small><br \\/>\\r\\n\\/\\/ The path to the JCB component.<br \\/>\\t\\t\\r\\n<b>JPATH_COMPONENT<\\/b> <small>no ideal to use<\\/small><br \\/>\\r\\n\\/\\/ The path to folder containing the configuration.php file.<br \\/>\\t\\t\\r\\n<b>JPATH_CONFIGURATION<\\/b><br \\/>\\r\\n\\/\\/ The path to the installation folder.<br \\/>\\t\\t\\r\\n<b>JPATH_INSTALLATION<\\/b><br \\/>\\r\\n\\/\\/ The path to the libraries folder.<br \\/>\\t\\t\\r\\n<b>JPATH_LIBRARIES<\\/b><br \\/>\\r\\n\\/\\/ The path to the plugins folder.<br \\/>\\t\\t\\r\\n<b>JPATH_PLUGINS<\\/b><br \\/>\\r\\n\\/\\/ The path to the installed Joomla! site.<br \\/>\\t\\t\\r\\n<b>JPATH_ROOT<\\/b><br \\/>\\r\\n\\/\\/ The path to the installed Joomla! site.<br \\/>\\t\\t\\r\\n<b>JPATH_SITE<\\/b><br \\/>\\r\\n\\/\\/ The path to the templates folder.<br \\/>\\t\\t\\r\\n<b>JPATH_THEMES<\\/b><\\/p>\\r\\n\\r\\n<p>JPATH_SITE is meant to represent the root path of the JSite application,<br \\/>\\r\\njust as JPATH_ADMINISTRATOR is mean to represent the root path of the JAdministrator application.<br \\/>\\r\\nJPATH_BASE is the root path for the current requested application.... so if you are in the administrator application:<br \\/>\\r\\nJPATH_BASE == JPATH_ADMINISTRATOR<br \\/>\\r\\nIf you are in the site application:<br \\/>\\r\\nJPATH_BASE == JPATH_SITE<br \\/>\\r\\nIf you are in the installation application:<br \\/>\\r\\nJPATH_BASE == JPATH_INSTALLATION.<br \\/>\\r\\nJPATH_ROOT is the root path for the Joomla install and does not depend upon any application.<\\/p>\\\"\\n\\theading=\\\"h4\\\"\\n\\tclass=\\\"alert alert-info\\\"\\n\\/>\"', 1, '2018-03-02 01:54:35', '2018-04-24 11:07:56', 2, '', 306, 'd998a4c0-92c7-4dc4-8b7a-da697b1d6c7e', '', '', '', '', ''),
(1951, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'add-id-at-title', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"add-id-at-title\\\" \\r\\n\\tlabel=\\\"Add Title\\\" \\r\\n\\tdescription=\\\"Would you like to add a title.\\\" \\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, '2018-03-03 19:03:58', '2018-03-05 01:41:12', 4, '', 827, '15a5f165-0f75-480e-b55f-651921c1f316', '', '', '', '', ''),
(1952, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'add-id-at-initials', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"add-id-at-initials\\\" \\r\\n\\tlabel=\\\"Add Initials\\\" \\r\\n\\tdescription=\\\"Would you like to add initials.\\\" \\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, '2018-03-03 19:04:58', '2018-03-05 01:55:35', 4, '', 827, '052af85b-8034-4a35-822e-400bab60b5a5', '', '', '', '', ''),
(1953, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'add-id-at-name', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"add-id-at-name\\\" \\r\\n\\tlabel=\\\"Add Name\\\" \\r\\n\\tdescription=\\\"Would you like to add a name.\\\" \\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, '2018-03-03 19:06:08', '2018-03-05 01:55:35', 5, '', 827, '4e2092cf-13cf-4974-afb4-50aac03e9d6b', '', '', '', '', ''),
(1954, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'add-id-at-surname', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"add-id-at-surname\\\" \\r\\n\\tlabel=\\\"Add Surname\\\" \\r\\n\\tdescription=\\\"Would you like to add a surname.\\\" \\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, '2018-03-03 19:06:51', '2018-03-05 01:55:35', 5, '', 827, 'd831c700-2160-4def-82a2-8a1653362b75', '', '', '', '', ''),
(1955, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'add-id-at-organizationalunitname', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"add-id-at-organizationalunitname\\\" \\r\\n\\tlabel=\\\"Add Organizational Unit Name\\\" \\r\\n\\tdescription=\\\"Would you like to add a organizational unit name.\\\" \\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, '2018-03-03 19:08:52', '2018-03-05 01:55:35', 4, '', 827, '6b1d0112-864e-4948-8b3b-0745c21ca5fa', '', '', '', '', ''),
(1956, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'add-id-at-role', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"add-id-at-role\\\" \\r\\n\\tlabel=\\\"Add Role\\\" \\r\\n\\tdescription=\\\"Would you like to add a role.\\\" \\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, '2018-03-03 19:10:20', '2018-03-05 01:55:35', 4, '', 827, '0ea14915-c20e-4258-9b6a-286e7536af94', '', '', '', '', ''),
(1957, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'add-id-at-stateorprovincename', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"add-id-at-stateorprovincename\\\" \\r\\n\\tlabel=\\\"Add State\\/Province Name\\\" \\r\\n\\tdescription=\\\"Would you like to add a state or province name.\\\" \\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, '2018-03-03 19:13:22', '2018-03-05 17:17:34', 6, '', 827, 'fa459422-9864-4f54-b725-726e421d6d0e', '', '', '', '', ''),
(1958, '', '', '', '', '', '', '', '', 255, '', 'TEXT', '', '', '', 'id-at-stateorprovincename', 'NOT NULL', 5, 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"id-at-stateorprovincename\\\" \\r\\n\\tlabel=\\\"State\\/Province Name<br \\/><small>(encrypted field)<\\/small>\\\" \\r\\n\\tsize=\\\"50\\\" \\r\\n\\tmaxlength=\\\"150\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tdescription=\\\"add your state or province name here\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\treadonly=\\\"false\\\" \\r\\n\\tdisabled=\\\"false\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\tfilter=\\\"STRING\\\" \\r\\n\\tvalidate=\\\"\\\" \\r\\n\\tfield=\\\"\\\" \\r\\n\\tmessage=\\\"Error! Please add state or province name here.\\\" \\r\\n\\thint=\\\"State\\/Province Name\\\" \\r\\n\\tautocomplete=\\\"on\\\" \\r\\n\\/>\"', 1, '2018-03-03 19:17:51', '2018-03-06 19:26:27', 5, '', 827, '3535d455-e74f-4d00-b0ae-7e441d1998fb', '', '', '', '', ''),
(1959, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'add-id-at-countryname', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"add-id-at-countryname\\\" \\r\\n\\tlabel=\\\"Add Country Name\\\" \\r\\n\\tdescription=\\\"Would you like to add a country name.\\\" \\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, '2018-03-03 19:20:34', '2018-03-05 17:03:50', 4, '', 827, '46a1848c-71c6-4cfc-96ab-5db263ebe016', '', '', '', '', ''),
(1960, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'add-id-at-streetaddress', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"add-id-at-streetaddress\\\" \\r\\n\\tlabel=\\\"Add Street Address\\\" \\r\\n\\tdescription=\\\"Would you like to add a street address.\\\" \\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, '2018-03-03 19:27:44', '2018-03-05 01:55:35', 3, '', 827, '7f9b113c-6768-499d-8964-30330abe5da4', '', '', '', '', ''),
(1961, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'add-id-at-givenname', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"add-id-at-givenname\\\" \\r\\n\\tlabel=\\\"Add Given Name\\\" \\r\\n\\tdescription=\\\"Would you like to add a given name.\\\" \\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, '2018-03-03 19:29:28', '2018-03-05 01:55:00', 3, '', 827, '5f453b55-ea53-445f-8e1d-53a2a2bea934', '', '', '', '', ''),
(1962, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'add-id-at-pseudonym', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"add-id-at-pseudonym\\\" \\r\\n\\tlabel=\\\"Add Pseudonym\\\" \\r\\n\\tdescription=\\\"Would you like to add a pseudonym.\\\" \\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, '2018-03-03 19:30:44', '2018-03-05 01:54:51', 2, '', 827, '63fd3a59-916d-447a-9acd-55810077ce65', '', '', '', '', ''),
(1963, '', '', '', '', '', '', '', '', 64, '', 'TEXT', '', '', '', 'id-at-title', 'NOT NULL', 5, 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"id-at-title\\\" \\r\\n\\tlabel=\\\"Title<br \\/><small>(encrypted field)<\\/small>\\\" \\r\\n\\tsize=\\\"10\\\" \\r\\n\\tmaxlength=\\\"50\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tdescription=\\\"add your title here\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\treadonly=\\\"false\\\" \\r\\n\\tdisabled=\\\"false\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\tfilter=\\\"STRING\\\" \\r\\n\\tvalidate=\\\"\\\" \\r\\n\\tfield=\\\"\\\" \\r\\n\\tmessage=\\\"Error! Please add title here.\\\" \\r\\n\\thint=\\\"Mr\\\" \\r\\n\\tautocomplete=\\\"on\\\" \\r\\n\\/>\"', 1, '2018-03-03 19:03:58', '2018-03-06 19:26:20', 5, '', 827, '83a9088a-3c0e-44d9-b1bc-a760392f477c', '', '', '', '', ''),
(1964, '', '', '', '', '', '', '', '', 64, '', 'TEXT', '', '', '', 'id-at-initials', 'NOT NULL', 5, 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"id-at-initials\\\" \\r\\n\\tlabel=\\\"Initials<br \\/><small>(encrypted field)<\\/small>\\\" \\r\\n\\tsize=\\\"10\\\" \\r\\n\\tmaxlength=\\\"50\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tdescription=\\\"add your initials here\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\treadonly=\\\"false\\\" \\r\\n\\tdisabled=\\\"false\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\tfilter=\\\"STRING\\\" \\r\\n\\tvalidate=\\\"\\\" \\r\\n\\tfield=\\\"\\\" \\r\\n\\tmessage=\\\"Error! Please add initials here.\\\" \\r\\n\\thint=\\\"L\\\" \\r\\n\\tautocomplete=\\\"on\\\" \\r\\n\\/>\"', 1, '2018-03-03 19:04:58', '2018-03-06 19:29:54', 5, '', 827, 'ff34cffd-9606-4881-a22d-80e38917a082', '', '', '', '', ''),
(1965, '', '', '', '', '', '', '', '', 255, '', 'TEXT', '', '', '', 'id-at-name', 'NOT NULL', 5, 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"id-at-name\\\" \\r\\n\\tlabel=\\\"Name<br \\/><small>(encrypted field)<\\/small>\\\" \\r\\n\\tsize=\\\"50\\\" \\r\\n\\tmaxlength=\\\"150\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tdescription=\\\"add your name here\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\treadonly=\\\"false\\\" \\r\\n\\tdisabled=\\\"false\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\tfilter=\\\"STRING\\\" \\r\\n\\tvalidate=\\\"\\\" \\r\\n\\tfield=\\\"\\\" \\r\\n\\tmessage=\\\"Error! Please add name here.\\\" \\r\\n\\thint=\\\"Your Name\\\" \\r\\n\\tautocomplete=\\\"on\\\" \\r\\n\\/>\"', 1, '2018-03-03 19:06:08', '2018-03-06 19:26:05', 6, '', 827, 'd87883cb-f3ff-4ac9-a88b-5e414877d646', '', '', '', '', ''),
(1966, '', '', '', '', '', '', '', '', 255, '', 'TEXT', '', '', '', 'id-at-surname', 'NOT NULL', 5, 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"id-at-surname\\\" \\r\\n\\tlabel=\\\"Surname<br \\/><small>(encrypted field)<\\/small>\\\" \\r\\n\\tsize=\\\"50\\\" \\r\\n\\tmaxlength=\\\"150\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tdescription=\\\"add your surname here\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\treadonly=\\\"false\\\" \\r\\n\\tdisabled=\\\"false\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\tfilter=\\\"STRING\\\" \\r\\n\\tvalidate=\\\"\\\" \\r\\n\\tfield=\\\"\\\" \\r\\n\\tmessage=\\\"Error! Please add surname here.\\\" \\r\\n\\thint=\\\"Surename\\\"\\r\\n\\tautocomplete=\\\"on\\\" \\r\\n\\/>\"', 1, '2018-03-03 19:06:51', '2018-03-06 19:31:34', 7, '', 827, 'd9d57edc-be37-4367-8160-78fb782d7406', '', '', '', '', ''),
(1967, '', '', '', '', '', '', '', '', 255, '', 'TEXT', '', '', '', 'id-at-organizationalunitname', 'NOT NULL', 5, 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"id-at-organizationalunitname\\\" \\r\\n\\tlabel=\\\"Organizational Unit Name<br \\/><small>(encrypted field)<\\/small>\\\" \\r\\n\\tsize=\\\"50\\\" \\r\\n\\tmaxlength=\\\"150\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tdescription=\\\"add your organizational unit name here\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\treadonly=\\\"false\\\" \\r\\n\\tdisabled=\\\"false\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\tfilter=\\\"STRING\\\" \\r\\n\\tvalidate=\\\"\\\" \\r\\n\\tfield=\\\"\\\" \\r\\n\\tmessage=\\\"Error! Please add organizational unit name here.\\\" \\r\\n\\thint=\\\"Open-Source\\\" \\r\\n\\tautocomplete=\\\"on\\\" \\r\\n\\/>\"', 1, '2018-03-03 19:08:52', '2018-03-06 19:25:49', 5, '', 827, '7045805f-1752-464f-93fe-ea19b4c25673', '', '', '', '', ''),
(1968, '', '', '', '', '', '', '', '', 255, '', 'TEXT', '', '', '', 'id-at-role', 'NOT NULL', 5, 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"id-at-role\\\" \\r\\n\\tlabel=\\\"Role<br \\/><small>(encrypted field)<\\/small>\\\" \\r\\n\\tsize=\\\"50\\\" \\r\\n\\tmaxlength=\\\"150\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tdescription=\\\"add your role here\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\treadonly=\\\"false\\\" \\r\\n\\tdisabled=\\\"false\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\tfilter=\\\"STRING\\\" \\r\\n\\tvalidate=\\\"\\\" \\r\\n\\tfield=\\\"\\\" \\r\\n\\tmessage=\\\"Error! Please add role here.\\\" \\r\\n\\thint=\\\"CEO\\\" \\r\\n\\tautocomplete=\\\"on\\\" \\r\\n\\/>\"', 1, '2018-03-03 19:10:20', '2018-03-06 19:25:43', 4, '', 827, '2f763fb8-c45a-4825-a4ad-bef515911ce9', '', '', '', '', ''),
(1969, '', '', '', '', '', '', '', '', 255, '', 'TEXT', '', '', '', 'id-at-emailaddress', 'NOT NULL', 5, 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"id-at-emailaddress\\\" \\r\\n\\tlabel=\\\"Email Address<br \\/><small>(encrypted field)<\\/small>\\\" \\r\\n\\tsize=\\\"50\\\" \\r\\n\\tmaxlength=\\\"150\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tdescription=\\\"add your email address here\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\treadonly=\\\"false\\\" \\r\\n\\tdisabled=\\\"false\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\tfilter=\\\"STRING\\\" \\r\\n\\tvalidate=\\\"\\\" \\r\\n\\tfield=\\\"\\\" \\r\\n\\tmessage=\\\"Error! Please add email address here.\\\" \\r\\n\\thint=\\\"your@email.com\\\" \\r\\n\\tautocomplete=\\\"on\\\" \\r\\n\\/>\"', 1, '2018-03-03 19:13:22', '2018-03-06 19:25:37', 5, '', 827, '0a9b08d3-0046-49ff-8da9-952761076515', '', '', '', '', ''),
(1970, '', '', '', '', '', '', '', '', 255, '', 'TEXT', '', '', '', 'id-at-organizationname', 'NOT NULL', 5, 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"id-at-organizationname\\\" \\r\\n\\tlabel=\\\"Organizational Name<br \\/><small>(encrypted field)<\\/small>\\\" \\r\\n\\tsize=\\\"50\\\" \\r\\n\\tmaxlength=\\\"150\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tdescription=\\\"add your organizational name here\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\treadonly=\\\"false\\\" \\r\\n\\tdisabled=\\\"false\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\tfilter=\\\"STRING\\\" \\r\\n\\tvalidate=\\\"\\\" \\r\\n\\tfield=\\\"\\\" \\r\\n\\tmessage=\\\"Error! Please add organizational name here.\\\" \\r\\n\\thint=\\\"Organizational Name\\\" \\r\\n\\tautocomplete=\\\"on\\\" \\r\\n\\/>\"', 1, '2018-03-03 19:17:51', '2018-03-06 19:25:31', 4, '', 827, '4ef112f8-583b-4e39-8c81-4c83d92069bd', '', '', '', '', ''),
(1971, '', '', '', '', '', '', '', '', 255, '', 'TEXT', '', '', '', 'id-at-countryname', 'NOT NULL', 5, 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"id-at-countryname\\\" \\r\\n\\tlabel=\\\"Country Name<br \\/><small>(encrypted field)<\\/small>\\\" \\r\\n\\tsize=\\\"50\\\" \\r\\n\\tmaxlength=\\\"150\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tdescription=\\\"add your country name here\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\treadonly=\\\"false\\\" \\r\\n\\tdisabled=\\\"false\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\tfilter=\\\"STRING\\\" \\r\\n\\tvalidate=\\\"\\\" \\r\\n\\tfield=\\\"\\\" \\r\\n\\tmessage=\\\"Error! Please add country name here.\\\" \\r\\n\\thint=\\\"Country Name\\\" \\r\\n\\tautocomplete=\\\"on\\\" \\r\\n\\/>\"', 1, '2018-03-03 19:20:34', '2018-03-06 19:25:25', 5, '', 827, '2da575d4-83b3-425e-9727-d416f7206e62', '', '', '', '', ''),
(1972, '', '', '', '', '', '', '', '', 255, '', 'TEXT', '', '', '', 'id-at-streetaddress', 'NOT NULL', 5, 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"id-at-streetaddress\\\" \\r\\n\\tlabel=\\\"Street Address<br \\/><small>(encrypted field)<\\/small>\\\" \\r\\n\\tsize=\\\"50\\\" \\r\\n\\tmaxlength=\\\"150\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tdescription=\\\"add your street address here\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\treadonly=\\\"false\\\" \\r\\n\\tdisabled=\\\"false\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\tfilter=\\\"STRING\\\" \\r\\n\\tvalidate=\\\"\\\" \\r\\n\\tfield=\\\"\\\" \\r\\n\\tmessage=\\\"Error! Please add street address here.\\\" \\r\\n\\thint=\\\"Street Address\\\" \\r\\n\\tautocomplete=\\\"on\\\" \\r\\n\\/>\"', 1, '2018-03-03 19:27:44', '2018-03-06 19:25:18', 3, '', 827, 'da8c66d8-590a-45c7-a89e-46c84e3b1ee0', '', '', '', '', ''),
(1973, '', '', '', '', '', '', '', '', 255, '', 'TEXT', '', '', '', 'id-at-givenname', 'NOT NULL', 5, 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"id-at-givenname\\\" \\r\\n\\tlabel=\\\"Given Name<br \\/><small>(encrypted field)<\\/small>\\\" \\r\\n\\tsize=\\\"50\\\" \\r\\n\\tmaxlength=\\\"150\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tdescription=\\\"add your given name here\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\treadonly=\\\"false\\\" \\r\\n\\tdisabled=\\\"false\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\tfilter=\\\"STRING\\\" \\r\\n\\tvalidate=\\\"\\\" \\r\\n\\tfield=\\\"\\\" \\r\\n\\tmessage=\\\"Error! Please add given name here.\\\" \\r\\n\\thint=\\\"Given Name\\\" \\r\\n\\tautocomplete=\\\"on\\\" \\r\\n\\/>\"', 1, '2018-03-03 19:29:28', '2018-03-06 19:25:12', 3, '', 827, 'bc2bbbb6-1b3e-4219-b6f4-846bee1daa4f', '', '', '', '', ''),
(1974, '', '', '', '', '', '', '', '', 255, '', 'TEXT', '', '', '', 'id-at-pseudonym', 'NOT NULL', 5, 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"id-at-pseudonym\\\" \\r\\n\\tlabel=\\\"Pseudonym<br \\/><small>(encrypted field)<\\/small>\\\" \\r\\n\\tsize=\\\"50\\\" \\r\\n\\tmaxlength=\\\"150\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tdescription=\\\"add your pseudonym here\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\treadonly=\\\"false\\\" \\r\\n\\tdisabled=\\\"false\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\tfilter=\\\"STRING\\\" \\r\\n\\tvalidate=\\\"\\\" \\r\\n\\tfield=\\\"\\\" \\r\\n\\tmessage=\\\"Error! Please add pseudonym here.\\\" \\r\\n\\thint=\\\"Pseudonym\\\" \\r\\n\\tautocomplete=\\\"on\\\" \\r\\n\\/>\"', 1, '2018-03-03 19:30:44', '2018-03-06 19:25:07', 4, '', 827, '714086b1-b88b-4084-ab0f-70c9fdde68b1', '', '', '', '', ''),
(1975, 1, '', '', '', 'I2pmb3JtX3R5cGVfY2h6biB7DQp3aWR0aDogMzgwcHggIWltcG9ydGFudDsNCn0=', '', '', '', 7, '', 'INT', '', '', '', 'Certificate Type', 'NOT NULL', '', 11, '\"<field \\r\\n\\ttype=\\\"list\\\" \\r\\n\\tname=\\\"type\\\" \\r\\n\\tlabel=\\\"Type\\\" \\r\\n\\tdescription=\\\"What type of certificate will this be?<br \\/>Trust Certificate is for communication between Joomla Websites and <b>must be signed by an ICA<\\/b>.<br \\/>Intermediate Certificate Authority is used to verify\\/sign trust certificates.\\\" \\r\\n\\tmessage=\\\"\\\" \\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\tmultiple=\\\"false\\\"\\r\\n\\tfilter=\\\"INT\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\tvalidate=\\\"\\\" \\r\\n\\toption=\\\"|Select an option,1|Self Signed Certificate (not trusted),2|Trust Certificate,3|Intermediate Certificate Authority (only for online systems)\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\/>\"', 1, '2018-03-05 14:43:32', '2018-03-06 12:44:37', 4, '', 828, '629ecdcd-383f-4c67-b7d9-4873f363e680', '', '', '', '', ''),
(1976, '', '', '', '', '', '', '', '', 1, '', 'INT', '', '', '', 'Certificate CA', 'NOT NULL', '', 11, '\"<field \\r\\n\\ttype=\\\"list\\\" \\r\\n\\tname=\\\"ca\\\" \\r\\n\\tlabel=\\\"Root Certificate Authority\\\" \\r\\n\\tdescription=\\\"Who is the Root Certificate Authority.\\\" \\r\\n\\tmessage=\\\"\\\" \\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\tmultiple=\\\"false\\\" \\r\\n\\tfilter=\\\"INT\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\tvalidate=\\\"\\\" \\r\\n\\toption=\\\"|Select an option,1|Vast Development Method,2|Other\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\/>\"', 1, '2018-03-05 14:47:23', '2018-03-06 12:44:47', 3, '', 828, 'e420e64e-8b9f-4a52-bf55-b2e623ede015', '', '', '', '', ''),
(1977, '', '', '', '', '', '', '', '', 1, '', 'INT', '', '', '', 'Certificate ICA', 'NOT NULL', '', 11, '\"<field \\r\\n\\ttype=\\\"list\\\" \\r\\n\\tname=\\\"ica\\\" \\r\\n\\tlabel=\\\"Intermediate Certificate Authority\\\" \\r\\n\\tdescription=\\\"Who is the Intermediate Certificate Authority.\\\" \\r\\n\\tmessage=\\\"\\\" \\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\tmultiple=\\\"false\\\" \\r\\n\\tfilter=\\\"INT\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\tvalidate=\\\"\\\" \\r\\n\\toption=\\\"|Select an option,1|Vast Development Method,2|Other\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\/>\"', 1, '2018-03-05 14:50:15', '2018-03-06 12:44:56', 3, '', 828, 'f6f150cb-6930-4162-8aa0-2b2807f44e68', '', '', '', '', ''),
(1978, '', '', '', '', '', '', '', '', 255, '', 'TEXT', '', '', '', 'id-at-localityname', 'NOT NULL', 5, 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"id-at-localityname\\\" \\r\\n\\tlabel=\\\"Locality Name<br \\/><small>(encrypted field)<\\/small>\\\" \\r\\n\\tsize=\\\"50\\\" \\r\\n\\tmaxlength=\\\"150\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tdescription=\\\"add your locality name here\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\treadonly=\\\"false\\\" \\r\\n\\tdisabled=\\\"false\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\tfilter=\\\"STRING\\\" \\r\\n\\tvalidate=\\\"\\\" \\r\\n\\tfield=\\\"\\\" \\r\\n\\tmessage=\\\"Error! Please add locality name here.\\\" \\r\\n\\thint=\\\"City Name\\\" \\r\\n\\tautocomplete=\\\"on\\\" \\r\\n\\/>\"', 1, '2018-03-05 17:03:35', '2018-03-06 19:25:01', 4, '', 827, 'b512fccf-b276-4427-af94-00105d6337cc', '', '', '', '', ''),
(1979, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'add-id-at-localityname', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"add-id-at-localityname\\\" \\r\\n\\tlabel=\\\"Add Locality Name\\\" \\r\\n\\tdescription=\\\"Would you like to add a locality name.\\\" \\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, '2018-03-05 17:04:48', '2018-03-05 17:03:50', 1, '', 827, '7795b436-d002-4c60-b8b6-9e6499116f8a', '', '', '', '', ''),
(1980, '', '', '', '', '', '', '', '', 255, '', 'TEXT', '', '', '', 'Passphrase', 'NOT NULL', 5, 16, '\"<field \\r\\n\\ttype=\\\"password\\\" \\r\\n\\tname=\\\"passphrase\\\" \\r\\n\\tlabel=\\\"Passphrase<br \\/><small>(encrypted field)<\\/small>\\\" \\r\\n\\tsize=\\\"60\\\" \\r\\n\\tmaxlength=\\\"150\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tdescription=\\\"If private key file is encrypted (which it should be), the passphrase must be provided.\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\tmessage=\\\"Error! Please add the passphrase here.\\\" \\r\\n\\tfilter=\\\"raw\\\" \\r\\n\\/>\"', 1, '2018-03-06 00:50:02', '2018-03-06 19:24:54', 4, '', 663, '1b30e03d-2c32-47dd-b424-7d3928473f17', '', '', '', '', ''),
(1981, '', '', '', '', '', '', '', '', 255, '', 'TEXT', '', '', '', 'Private/Public Key Path', 'NOT NULL', 5, 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"key_path\\\" \\r\\n\\tlabel=\\\"Private\\/Public Key Path<br \\/><small>(encrypted field)<\\/small>\\\" \\r\\n\\tdescription=\\\"Set the path to the where the private\\/public key should be stored.\\\"\\r\\n\\tsize=\\\"50\\\" \\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\\tmessage=\\\"Error! Please add path where private\\/public key should be stored.\\\" \\r\\n\\thint=\\\"\\/home\\/username\\/.ssh\\/\\\" \\r\\n\\/>\"', 1, '2018-03-06 12:49:37', '2018-03-06 19:24:48', 5, '', 303, '4d61d10c-2634-40a7-8cf4-65b39664c3b8', '', '', '', '', ''),
(1982, '', '', '', '', '', '', '', '', 255, '', 'TEXT', '', '', '', 'Certificate (TEXT)', 'NOT NULL', 5, 25, '\"<field \\r\\n\\ttype=\\\"textarea\\\" \\r\\n\\tname=\\\"certificate\\\" \\r\\n\\tlabel=\\\"Certificate<br \\/><small>(encrypted field)<\\/small>\\\" \\r\\n\\trows=\\\"15\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tdescription=\\\"Once you have saved your data the certificate will be generated and placed here.\\\" \\r\\n\\tclass=\\\"input-xxlarge span12\\\" \\r\\n\\treadonly=\\\"true\\\"\\r\\n\\thint=\\\"-----BEGIN CERTIFICATE-----\\r\\nMIIHFzCCBP+gAwIBAgIUW6X9GIkfTlfw6uHsJdtXfE9EK6MwDQYJKoZIhvcNAQEF\\r\\nBQAwggEsMQswCQYDVQQMDAJNcjEKMAgGA1UEKwwBTDESMBAGA1UEKQwJTGxld2Vs\\r\\nbHluMRYwFAYDVQQEDA1WYW4gRGVyIE1lcndlMSAwHgYDVQQKDBdWYXN0IERldmVs\\r\\nb3BtZW50IE1ldGhvZDEsMCoGA1UESAwjU2VuaW9yIFNvZnR3YXJlIERldmVsb3Bt\\r\\nZW50IE1hbmFnZXIxDDAKBgNVBC0MA1ZETTEfMB0GCSqGSIb3DQEJAQwQbGxld2Vs\\r\\nbHluQHZkbS5pbzETMBEGA1UEAwwKd3d3LnZkbS5pbzEUMBIGA1UECwwLT3Blbi1T\\r\\nb3VyY2UxFjAUBgNVBAgMDUtob21hcyBSZWdpb24xETAPBgNVBAcMCFdpbmRob2Vr\\r\\nMRAwDgYDVQQGDAdOYW1pYmlhMB4XDTE4MDMwNjE1MjgyN1oXDTIxMDMwNjE1Mjgy\\r\\nN1owggEaMQswCQYDVQQMDAJNcjEKMAgGA1UEKwwBTDESMBAGA1UEKQwJTGxld2Vs\\r\\nbHluMRYwFAYDVQQEDA1WYW4gRGVyIE1lcndlMSEwHwYDVQQKDBhKb29tbGEgQ29t\\r\\ncG9uZW50IEJ1aWxkZXIxDDAKBgNVBC0MA0pDQjEzMDEGCSqGSIb3DQEJAQwkbGxl\\r\\nd2VsbHluQGpvb21sYWNvbXBvbmVudGJ1aWxkZXIuY29tMS4wLAYDVQRIDCVGb3Vu\\r\\nZGVyICYgTGVhZGluZyBEZXZlbG9wbWVudCBNYW5hZ2VyMScwJQYDVQQDDB53d3cu\\r\\nam9vbWxhY29tcG9uZW50YnVpbGRlci5jb20xFDASBgNVBAsMC09wZW4tU291cmNl\\r\\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEArnfX5JdApsVPT1yWyOvs\\r\\n0jDkJWZi9ykCNKJsnKK54eq3mc5zJLHD+LICBhb5MwDCC+kP1UFMRf1MyMZrJmTm\\r\\nCHqPv94D6hi9wknNBL0vXJkgqPOnogkZshGifiLrHbLvyA1+07v\\/6HyrEdUXab13\\r\\nM+SIE9zvPq4fAziemdiNadQG1Qr\\/7w01Kn0n5qQgaSay4GnGGOJDDszNJ86wlIz6\\r\\n8BF+CteLsHSxb3A2anhX\\/nCwkWkkzO96vpeDVPuuVF+dFo4Az6OJAhaksRwrRUQD\\r\\nkULzxpVPexZJagUBuaTFuJkx5nM9ABr4dlDiNVW\\/LsRrmcxskjR3rzY8mie2FSjD\\r\\nIWSWm+qayxFaPjWDyvJICThzpdBL6CoPqx2na8QmczqB9t1VFw+N7EzXhXZQwgDw\\r\\nuD0l9nniX5qNLWiUbfwkCELwIBVIhKKxwfU1HpV2lGUDaIYIS48QeR9\\/TuqgviFu\\r\\ntPpnCXzvzqEiwe7DhZWnZGy96xY41vuC3t0ltb\\/tYp6lfzBaTxYHcnyJctA9FMmX\\r\\ntYw0++CYSALSlAB9\\/UEAJgZuuDCdqfzI2jbBe17Wt+rHIw813M8XEtBRFaIyrUBA\\r\\n9IcOpB3I5Gk1gAoE2YnU0ceH8teTK5HTPGkEpsuopdSr4JndmU3UJKsg547IVnHl\\r\\n+uLpzbndgZjAg0TCAz01KP8CAwEAAaM\\/MD0wHQYDVR0OBBYEFI0RGltm1iyErlOg\\r\\nYvvV2BpYN9SMMAsGA1UdDwQEAwIBBjAPBgNVHRMBAf8EBTADAQH\\/MA0GCSqGSIb3\\r\\nDQEBBQUAA4ICAQCnJyJvPJhxL+BI5O6EldKu3XuH4pWojum2P39Ol\\/yZUjG8WXu6\\r\\n7ulE0eYmKURJWLTfA8g00gy2\\/AXPaok3sqssOmZwxV7pnGdcqWtefCD0u0rMiuBH\\r\\nHz+fSBW5rY1YQgpT+aoRUlhV0THMLMqIfaMv0DLL+wPTbN7Hm8JIlNtMe+wP7ZdU\\r\\nqydWo6IJ6tfU1+jsuYCM2uvF2\\/\\/uxYGTFU8B7OB0jw4Drxj34gU5ZdkF5\\/Jam9dI\\r\\n0rf7WYHS9xXDrvXhN46l8bKkGzfIEdweLt3L0zhknMBYtxeYPY3g9wnmG17Yos0H\\r\\ns5fWx3QlYD3thBInMCWmpHH3ovuOzPrA7unNmS1Bj89OtVxNp2QjPR1rN13P0cnn\\r\\nXv\\/Bryy1wgEe+SAbfgyM2TpVEjpeSLUtIP5saFhiMOPKbXZBLcb4esvhEXXaONqj\\r\\n+4dGAn8YK45q2yubx5t8WjvL86JL9ggvqdxo2xyeSKB4r7rSp6zqb\\/tS9yRjbvNz\\r\\nq3nwPJzk0uh4y63bpijEC\\/Aa0m3ZQIlE5AiCpW3GThZ+B9jwf\\/jifegKxpIcJxvI\\r\\nhzZ5YDGIcd+L3liwV7x41v1aVf53H5MMvjwdCmu7zUlCyePa12A4u2LxfGRmZOou\\r\\n+w+JRKrg09lFmqB\\/rdbVC+ele8cqqkCaV7Rb5AOX6OCxUROGHCEDxWupfg==\\r\\n-----END CERTIFICATE-----\\\"\\r\\n\\/>\"', 1, '2018-03-06 13:00:21', '2018-03-06 19:24:41', 4, '', 663, '1311e458-cb6d-4096-b83e-8c3980ab21b0', '', '', '', '', ''),
(1983, '', '', '', '', '', '', '', '', 255, '', 'TEXT', '', '', '', 'Domain (CA)', 'NOT NULL', '', 27, '\"<field \\r\\n\\ttype=\\\"url\\\" \\r\\n\\tname=\\\"ca_domain\\\" \\r\\n\\tlabel=\\\"CA Domain\\\" \\r\\n\\tdescription=\\\"You must provide the domain name to your root certificate authority.<br \\/>Need help to setup a root certificate authority, please contact vdm.io\\/support (<b>this service is not free<\\/b>)\\\"\\r\\n\\tsize=\\\"50\\\" \\r\\n\\tmaxlength=\\\"150\\\"\\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\tfilter=\\\"url\\\" \\r\\n\\tvalidated=\\\"url\\\" \\r\\n\\tfilter=\\\"STRING\\\" \\r\\n\\tmessage=\\\"Error! Please add domain name of your root certificate authority\\\" \\r\\n\\thint=\\\"https:\\/\\/www.vdm.io\\/\\\" \\r\\n\\/>\"', 1, '2018-03-06 14:22:05', '2018-03-06 14:31:42', 4, '', 303, '2048e853-c312-45c1-9f60-ffbdd2974e73', '', '', '', '', ''),
(1984, '', '', '', '', '', '', '', '', 255, '', 'TEXT', '', '', '', 'Domain (ICA)', 'NOT NULL', '', 27, '\"<field \\r\\n\\ttype=\\\"url\\\" \\r\\n\\tname=\\\"ica_domain\\\" \\r\\n\\tlabel=\\\"ICA Domain\\\" \\r\\n\\tdescription=\\\"You must provide the domain name to your intermediate certificate authority.<br \\/>Need help to setup a intermediate certificate authority, please contact vdm.io\\/support (<b>this service is not free<\\/b>)\\\"\\r\\n\\tsize=\\\"50\\\" \\r\\n\\tmaxlength=\\\"150\\\"\\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\tfilter=\\\"url\\\" \\r\\n\\tvalidated=\\\"url\\\" \\r\\n\\tfilter=\\\"STRING\\\" \\r\\n\\tmessage=\\\"Error! Please add domain name of your intermediate certificate authority\\\" \\r\\n\\thint=\\\"https:\\/\\/www.vdm.io\\/\\\" \\r\\n\\/>\"', 1, '2018-03-06 14:24:51', '2018-03-06 14:32:05', 2, '', 303, '85afb662-213f-4080-b840-57ae73b5459a', '', '', '', '', ''),
(1985, 1, '', '', '', 'I2pmb3JtX2Rhc2hib2FyZF9jaHpuIHsNCndpZHRoOiAxMDAlICFpbXBvcnRhbnQ7DQp9', '', '', '', 64, '', 'VARCHAR', '', '', '', 'Dynamic Dashboard', 'NOT NULL', '', 6, '\"<field\\n\\ttype=\\\"dynamicdashboard\\\"\\n\\tname=\\\"dashboard\\\"\\n\\tlabel=\\\"Dynamic Dashboard<br \\/><small>(admin or custom admin view)<\\/small>\\\"\\n\\tdescription=\\\"Select a custom admin view that is already linked to this component as a dynamic dashboard.\\\"\\n\\tclass=\\\"fieldMedium\\\"\\n\\tlayout=\\\"joomla.form.field.list-fancy-select\\\"\\n\\tmultiple=\\\"false\\\"\\n\\tdefault=\\\"\\\"\\n\\treadonly=\\\"\\\"\\n\\tdisabled=\\\"\\\"\\n\\textends=\\\"list\\\"\\n\\ttable=\\\"#__###component###_custom_admin_view\\\"\\n\\tcomponent=\\\"com_###component###\\\"\\n\\tview=\\\"custom_admin_view\\\"\\n\\tviews=\\\"custom_admin_views\\\"\\n\\tvalue_field=\\\"system_name\\\"\\n\\ttype_php_1=\\\"__.o0=base64=Oo.__Ly8gbG9hZCB0aGUgZGIgb3BiamVjdA0KCQkkZGIgPSBGYWN0b3J5OjpnZXREQk8oKTsJCQ0KCQkvLyBnZXQgdGhlIGlucHV0IGZyb20gdXJsDQoJCSRqaW5wdXQgPSBGYWN0b3J5OjpnZXRBcHBsaWNhdGlvbigpLT5pbnB1dDsNCgkJLy8gZ2V0IHRoZSBpZA0KCQkkSUQgPSAkamlucHV0LT5nZXRJbnQoJ2lkJywgMCk7DQoJCS8vIHNldCB0aGUgdGFyZ2V0cw0KCQkkdGFyZ2V0cyA9IFsnYWRtaW52aWV3JyA9PiAnYWRtaW5fdmlldycsICdjdXN0b21hZG1pbnZpZXcnID0+ICdjdXN0b21fYWRtaW5fdmlldyddOw0KCQkkdCA9IFsnYWRtaW52aWV3JyA9PiAnQScsICdjdXN0b21hZG1pbnZpZXcnID0+ICdDJ107DQoJCS8vIHJlc3QgdGhlIG9wdGlvbnMNCgkJJG9wdGlvbnMgPSBbXTsNCgkJLy8gcmVzZXQgdGhlIGN1c3RvbSBhZG1pbiB2aWV3cyBhcnJheQ0KCQkkdmlld3MgPSBmYWxzZTsNCgkJaWYgKGlzX251bWVyaWMoJElEKSAmJiAkSUQgPj0gMSkNCgkJew0KCQkJLy8gZ2V0IHRoZSBsaW5rZWQgYmFjay1lbmQgdmlld3MNCgkJCWZvcmVhY2ggKCR0YXJnZXRzIGFzICR0YXJnZXQgPT4gJHZpZXcpDQoJCQl7DQoJCQkJaWYgKCRyZXN1bHQgPSBTdXBlcl9fX2RiODdjMzM5XzViYjZfNDI5MV9hN2VmXzJjNDhlYTFiMDZiY19fX1Bvd2VyOjp2YXIoJ2NvbXBvbmVudF8nLiR2aWV3LidzJywgKGludCkgJElELCAnam9vbWxhX2NvbXBvbmVudCcsICdhZGQnLiR2aWV3LidzJykpDQoJCQkJew0KCQkJCQkkdmlld3NbJHRhcmdldF0gPSAkcmVzdWx0Ow0KCQkJCX0NCgkJCX0NCgkJfQ0KCQllbHNlDQoJCXsNCgkJCS8vIG5vdCBsaW5rZWQgc28gdGhlcmUgaXMgbm9uZSBhdmFpbGFibGUNCgkJCXJldHVybiBbSHRtbDo6Xygnc2VsZWN0Lm9wdGlvbicsICcnLCBUZXh0OjpfKCdZb3UgbXVzdCBmaXJzdCBsaW5rIGFuIGFkbWluIG9yIGEgY3VzdG9tIGFkbWluIHZpZXcgdG8gdGhpcyBjb21wb25lbnQsIHRoZW4geW91IGNhbiBzZWxlY3QgaXQgaGVyZScpKV07DQoJCX0NCgkJLy8gY2hlY2sgaWYgd2UgZm91bmQgYW55IHZhbHVlcw0KCQlpZiAoU3VwZXJfX18wYTU5YzY1Y185ZGFmXzRiYzlfYmFmNF9lMDYzZmY5ZTZhOGFfX19Qb3dlcjo6Y2hlY2soJHZpZXdzKSkNCgkJew0KCQkJZm9yZWFjaCAoJHRhcmdldHMgYXMgJHRhcmdldCA9PiAkdmlldykNCgkJCXsNCgkJCQlpZiAoaXNzZXQoJHZpZXdzWyR0YXJnZXRdKSAmJiBTdXBlcl9fXzRiMjI1YzUxX2QyOTNfNDhlNF9iM2Y2XzUxMzZjZjVjM2YxOF9fX1Bvd2VyOjpjaGVjaygkdmlld3NbJHRhcmdldF0pKQ0KCQkJCXsNCgkJCQkJLy8gY29udmVydCB0byBhbiBhcnJheQ0KCQkJCQkkdmFsdWUgPSBqc29uX2RlY29kZSgkdmlld3NbJHRhcmdldF0sIHRydWUpOw0KCQkJCQkkdHlwZSA9IFN1cGVyX19fMWYyOGNiNTNfNjBkOV80ZGIxX2I1MTdfM2M3ZGM2YjQyOWVmX19fUG93ZXI6OnNhZmUoJHZpZXcsICd3Jyk7DQoJCQkJCWlmIChTdXBlcl9fXzBhNTljNjVjXzlkYWZfNGJjOV9iYWY0X2UwNjNmZjllNmE4YV9fX1Bvd2VyOjpjaGVjaygkdmFsdWUpKQ0KCQkJCQl7DQoJCQkJCQlmb3JlYWNoICgkdmFsdWUgYXMgJF92aWV3KQ0KCQkJCQkJew0KCQkJCQkJCWlmIChpc3NldCgkX3ZpZXdbJHRhcmdldF0pICYmIGlzX251bWVyaWMoJF92aWV3WyR0YXJnZXRdKSkNCgkJCQkJCQl7DQoJCQkJCQkJCS8vIHNldCB0aGUgdmlldyB0byB0aGUgc2VsZWN0aW9ucyBpZiBmb3VuZA0KCQkJCQkJCQlpZiAoJG5hbWUgPSBTdXBlcl9fX2RiODdjMzM5XzViYjZfNDI5MV9hN2VmXzJjNDhlYTFiMDZiY19fX1Bvd2VyOjp2YXIoJHZpZXcsIChpbnQpICRfdmlld1skdGFyZ2V0XSwgJ2lkJywgJ3N5c3RlbV9uYW1lJykpDQoJCQkJCQkJCXsNCgkJCQkJCQkJCSRvcHRpb25zW10gPSBIdG1sOjpfKCdzZWxlY3Qub3B0aW9uJywgJHRbJHRhcmdldF0uJ18nLiRfdmlld1skdGFyZ2V0XSwgJG5hbWUuJyAgWycuJHR5cGUuJ10nKTsNCgkJCQkJCQkJfQ0KCQkJCQkJCX0NCgkJCQkJCX0NCgkJCQkJfQ0KCQkJCX0NCgkJCX0NCgkJfQ0KCQkvLyByZXR1cm4gZm91bmQgb3B0aW9ucw0KCQlpZiAoU3VwZXJfX18wYTU5YzY1Y185ZGFmXzRiYzlfYmFmNF9lMDYzZmY5ZTZhOGFfX19Qb3dlcjo6Y2hlY2soJG9wdGlvbnMpKQ0KCQl7DQoJCQlhcnJheV91bnNoaWZ0KCRvcHRpb25zICwgSHRtbDo6Xygnc2VsZWN0Lm9wdGlvbicsICcnLCBUZXh0OjpfKCdTZWxlY3QgYW4gb3B0aW9uJykpKTsNCgkJCXJldHVybiAkb3B0aW9uczsNCgkJfQ0KCQkvLyBub3QgbGlua2VkIHNvIHRoZXJlIGlzIG5vbmUgYXZhaWxhYmxlDQoJCXJldHVybiBbSHRtbDo6Xygnc2VsZWN0Lm9wdGlvbicsICcnLCBUZXh0OjpfKCdZb3UgbXVzdCBmaXJzdCBsaW5rIGFuIGFkbWluIG9yIGEgY3VzdG9tIGFkbWluIHZpZXcgdG8gdGhpcyBjb21wb25lbnQsIHRoZW4geW91IGNhbiBzZWxlY3QgaXQgaGVyZScpKV07\\\"\\n\\/>\"', 1, '2018-03-08 22:58:00', '2024-03-26 13:23:41', 14, '', 164, 'b12fadb6-2825-465e-a1e7-1dde507ffde5', '', '', '', '', ''),
(1986, '', '', '', '', '', '', 1, '', 1, '', 'TINYINT', '', '', '', 'Dynamic Dashboard Switch', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"dashboard_type\\\" \\r\\n\\tlabel=\\\"Dashboard Type\\\" \\r\\n\\tdescription=\\\"Select the type of dashboard you would like to use.\\\" \\r\\n\\tclass=\\\"btn-group btn-group-yesno\\\" \\r\\n\\toption=\\\"1|Default,2|Dynamic\\\" \\r\\n\\tdefault=\\\"1\\\" \\r\\n\\tmessage=\\\"\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\/>\"', 1, '2018-03-08 23:05:32', '2018-03-09 00:56:42', 5, '', 829, '36fc971f-a446-49ae-94d0-2f270e60bd0b', '', '', '', '', ''),
(1987, '', '', '', '', '', '', '', '', '', '', 'CHAR', '', '', '', 'Dynamic Dashboard (note)', 'NOT NULL', '', 14, '\"<field \\r\\n\\ttype=\\\"note\\\" \\r\\n\\tname=\\\"note_dynamic_dashboard\\\" \\r\\n\\tlabel=\\\"Dynamic Dashboard Option\\\" \\r\\n\\tdescription=\\\"The dynamic dashboard is basically the option of taking an <b>Admin View<\\/b> or <b>Custom Admin View<\\/b> that is already linked to this component, and making it the dashboard.\\\" \\r\\n\\theading=\\\"h4\\\" \\r\\n\\tclass=\\\"alert alert-info\\\" \\r\\n\\/>\"', 1, '2018-03-08 23:32:17', '2018-03-09 01:45:22', 2, '', 830, '1e16cc94-4bdb-448c-93c6-33137dab95c3', '', '', '', '', ''),
(1988, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'Field Builder Type', 'NOT NULL', '', 11, '\"<field \\r\\n\\ttype=\\\"list\\\" \\r\\n\\tname=\\\"compiler_field_builder_type\\\" \\r\\n\\tlabel=\\\"Field Builder Type<br \\/><small>(in compiler)<\\/small>\\\" \\r\\n\\tdescription=\\\"Select the method to use when building the xml fields in the compiler. The <b>SimpleXMLElement Class<\\/b> is best practice, and <b>String Manipulation<\\/b> is faster and works without special extensions.\\\" \\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\tfilter=\\\"INT\\\" \\r\\n\\toption=\\\"1|String Manipulation,2|SimpleXMLElement Class\\\" \\r\\n\\tdefault=\\\"2\\\"\\r\\n\\trequired=\\\"true\\\" \\r\\n\\/>\"', 1, '2018-03-18 03:47:36', '0000-00-00 00:00:00', 1, '', 831, '0ca7d68d-7c4b-4ddb-b063-337fb36c00b9', '', '', '', '', ''),
(1989, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Greeting', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"greeting\\\" \\r\\n\\tlabel=\\\"Greeting\\\" \\r\\n\\tsize=\\\"10\\\" \\r\\n\\tmaxlength=\\\"50\\\" \\r\\n\\tdefault=\\\"Some text\\\" \\r\\n\\tdescription=\\\"Enter a greeting\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\tfilter=\\\"STRING\\\" \\r\\n\\tmessage=\\\"Error! Please add some text here.\\\" \\r\\n\\thint=\\\"Greeting here!\\\" \\r\\n\\/>\"', 1, '2017-09-20 01:17:03', '2018-04-11 21:11:46', 1, '', 650, '75e830a6-a3a5-4327-9161-3f774a6f1591', '', '', '', '', ''),
(1990, '', '', '', '', '', '', '', '', '', '', 'MEDIUMTEXT', '', '', '', 'PHP (class methods)', 'NOT NULL', 2, 25, '\"<field \\r\\n\\ttype=\\\"textarea\\\" \\r\\n\\tname=\\\"php\\\" \\r\\n\\tlabel=\\\"PHP <small>(class methods)<\\/small>\\\" \\r\\n\\trows=\\\"30\\\" \\r\\n\\tcols=\\\"15\\\"\\r\\n\\tdescription=\\\"Add your PHP here! [Do not add the php tags]\\\" \\r\\n\\tclass=\\\"text_area span12\\\" \\r\\n\\tfilter=\\\"raw\\\" \\r\\n\\thint=\\\"\\/\\/ PHP class methods and fields can be added here\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\/>\"', 1, '2018-03-24 20:11:20', '2015-10-17 18:17:23', 1, '', 115, '24ed6b0e-c86c-4131-91a7-5205ac931ad5', '', '', '', '', ''),
(1991, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', 2, '', '', 'Name (validation rule)', 'NOT NULL', '', 24, '\"<field name=\\\"name\\\"\\r\\n\\t\\t\\t\\tlabel=\\\"Name\\\"\\r\\n\\t\\t\\t\\tdescription=\\\"The name for this validation rule\\\"\\r\\n\\t\\t\\t\\ttype=\\\"text\\\"\\r\\n\\t\\t\\t\\tclass=\\\"input-large-text\\\"\\r\\n\\t\\t\\t\\tsize=\\\"40\\\"\\r\\n\\t\\t\\t\\trequired=\\\"true\\\"\\/>\"', 1, '2018-03-25 17:14:04', '0000-00-00 00:00:00', 1, '', 756, '9a98c57f-bf01-49b0-91e3-e72e1b9551f1', '', '', '', '', ''),
(1992, '', '', '', '', '', '', '', '', 64, '', 'CHAR', '', '', '', 'Default Validation Rules', 'NOT NULL', '', 6, '\"<field\\n\\ttype=\\\"existingvalidationrules\\\"\\n\\tname=\\\"inherit\\\"\\n\\tlabel=\\\"Existing Validation Rules\\\"\\n\\tdescription=\\\"Select an existing validation rule that you would like to adapt.\\\"\\n\\tmessage=\\\"\\\"\\n\\tclass=\\\"list_class\\\"\\n\\tlayout=\\\"joomla.form.field.list-fancy-select\\\"\\n\\tmultiple=\\\"false\\\"\\n\\tdefault=\\\"0\\\"\\n\\trequired=\\\"false\\\"\\n\\textends=\\\"list\\\"\\n\\tbutton=\\\"false\\\"\\n\\ttable=\\\"#__###component###_validation_rule\\\"\\n\\tcomponent=\\\"com_###component###\\\"\\n\\tview=\\\"validation_rule\\\"\\n\\tviews=\\\"validation_rules\\\"\\n\\tvalue_field=\\\"name\\\"\\n\\tkey_field=\\\"id\\\"\\n\\tprime_php=\\\"1\\\"\\n\\ttype_php_1=\\\"__.o0=base64=Oo.__Ly8gZ2V0IHRoZSBleGlzdGluZyB2YWxpZGF0aW9uIHJ1bGVzIG5hbWVzDQoJCWlmICgkaXRlbXMgPSAjIyNDb21wb25lbnQjIyNIZWxwZXI6OmdldEV4aXN0aW5nVmFsaWRhdGlvblJ1bGVOYW1lcygpKQ0KCQl7DQoJCQkvLyBsb2FkIHRoZSBpdGVtcw0KCQkJJG9wdGlvbnMgPSBhcnJheShKSHRtbDo6Xygnc2VsZWN0Lm9wdGlvbicsICcnLCAnU2VsZWN0IGFuIG9wdGlvbicpKTsNCgkJCWZvcmVhY2goJGl0ZW1zIGFzICRpdGVtKQ0KCQkJew0KCQkJCSRvcHRpb25zW10gPSBKSHRtbDo6Xygnc2VsZWN0Lm9wdGlvbicsICRpdGVtLCAjIyNDb21wb25lbnQjIyNIZWxwZXI6OnNhZmVTdHJpbmcoJGl0ZW0sICdXdycpKTsNCgkJCX0NCgkJCXJldHVybiAkb3B0aW9uczsNCgkJfQ0KCQlyZXR1cm4gYXJyYXkoSkh0bWw6Ol8oJ3NlbGVjdC5vcHRpb24nLCAnJywgSlRleHQ6Ol8oJ05vIHZhbGlkYXRpb24gcnVsZXMgZm91bmQuJykpKTs=\\\"\\n\\/>\"', 1, '2018-03-25 17:42:40', '2024-03-26 13:23:27', 9, '', 832, '419fa655-e64a-4e39-b124-29eeb3198bc7', '', '', '', '', ''),
(1993, '', '', '', '', '', '', '', '', '', '', 'CHAR', '', '', '', 'Alias Builder Type', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"alias_builder_type\\\" \\r\\n\\tlabel=\\\"Alias Builder Type\\\" \\r\\n\\tdescription=\\\"How should the alias be build for this view\\\" \\r\\n\\tclass=\\\"btn-group btn-group-yesno\\\" \\r\\n\\toption=\\\"1|Default,2|Custom\\\"\\r\\n\\tdefault=\\\"1\\\"\\r\\n\\/>\"', 1, '2018-03-27 14:29:40', '2018-03-27 15:52:43', 3, '', 833, 'a5043582-b29c-4ede-a712-16de9346abed', '', '', '', '', ''),
(1994, '', '', '', '', '', '', '', '', '', '', 'CHAR', '', '', '', 'Alias Builder (default)', 'NOT NULL', '', 14, '\"<field \\r\\n\\ttype=\\\"note\\\" \\r\\n\\tname=\\\"note_alias_builder_default\\\" \\r\\n\\tlabel=\\\"Default Alias Behaviour\\\" \\r\\n\\tdescription=\\\"The default behaviour uses the title field to build that alias, and if no title field is found uses the date.\\\" \\r\\n\\theading=\\\"h4\\\" \\r\\n\\tclass=\\\"alert alert-info\\\" \\r\\n\\tshowon=\\\"alias_builder_type:1\\\" \\r\\n\\/>\"', 1, '2018-03-27 14:32:21', '2018-03-27 14:36:23', 2, '', 834, 'fdc68882-5750-4120-9c51-29f1076c0052', '', '', '', '', ''),
(1995, '', '', '', '', '', '', '', '', '', '', 'CHAR', '', '', '', 'Alias Builder (custom)', 'NOT NULL', '', 14, '\"<field \\r\\n\\ttype=\\\"note\\\" \\r\\n\\tname=\\\"note_alias_builder_custom\\\" \\r\\n\\tlabel=\\\"Custom Alias Behaviour\\\" \\r\\n\\tdescription=\\\"The custom behaviour allows you to select what field\\/s must be used to build the alias.\\\" \\r\\n\\theading=\\\"h4\\\" \\r\\n\\tclass=\\\"alert alert-info\\\" \\r\\n\\tshowon=\\\"alias_builder_type:2\\\" \\r\\n\\/>\"', 1, '2018-03-27 14:34:20', '0000-00-00 00:00:00', 1, '', 835, '11a6e497-111f-417c-bd41-21b148f3513b', '', '', '', '', ''),
(1996, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'URL (API)', 'NOT NULL', '', 27, '\"<field \\r\\n\\ttype=\\\"url\\\" \\r\\n\\tname=\\\"url\\\" \\r\\n\\tlabel=\\\"URL\\\" \\r\\n\\tsize=\\\"60\\\" \\r\\n\\tmaxlength=\\\"150\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tdescription=\\\"Enter api url\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\treadonly=\\\"\\\" \\r\\n\\tdisabled=\\\"\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\tfilter=\\\"url\\\" \\r\\n\\tscheme=\\\"http,https\\\"\\r\\n\\tvalidated=\\\"url\\\" \\r\\n\\tmessage=\\\"Error! Please add url here.\\\" \\r\\n\\thint=\\\"http:\\/\\/www.example.com\\/api\\\" \\r\\n\\/>\"', 1, '2018-04-05 09:09:08', '2015-08-25 21:15:22', 1, '', 378, 'e390c880-fff1-4500-aa86-21d2db867845', '', '', '', '', ''),
(1997, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Expansion', 'NOT NULL', '', 35, '\"<field\\n\\ttype=\\\"subform\\\"\\n\\tname=\\\"expansion\\\"\\n\\tlabel=\\\"Expansion\\\"\\n\\tlayout=\\\"joomla.form.field.subform.repeatable-table\\\"\\n\\tmultiple=\\\"true\\\"\\n\\tfields=\\\"2536,2537,2004,2005,2006\\\"\\n\\tdescription=\\\"Properties for this field\\\"\\n\\ticon=\\\"list\\\"\\n\\tmax=\\\"50\\\"\\n\\tmin=\\\"1\\\"\\n\\tshowon=\\\"development_method:2\\\"\\n\\/>\"', 1, '2018-04-07 12:31:25', '2022-08-25 20:29:29', 9, '', 128, '1823adff-bd9d-48ac-ac63-d3843a05e34d', '', '', '', '', ''),
(1998, '', '', '', '', '', '', '', '', '', '', 'CHAR', '', '', '', 'Select Field Type Note', 'NOT NULL', '', 14, '\"<field\\n\\ttype=\\\"note\\\"\\n\\tname=\\\"note_select_field_type\\\"\\n\\tlabel=\\\"Building a field\\\"\\n\\tdescription=\\\"Please select a field type that you would like to build.\\\"\\n\\theading=\\\"h4\\\"\\n\\tclass=\\\"alert alert-info\\\"\\n\\/>\"', 1, '2018-04-11 20:26:34', '0000-00-00 00:00:00', 1, '', 836, '1b588221-d90c-4201-abfa-57e219844edc', '', '', '', '', ''),
(1999, '', '', '', '', '', '', 1, '', 1, '', 'TINYINT', '', '', '', 'Add To DataBase', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"add_db\\\"\\n\\tlabel=\\\"Add To Data Base\\\"\\n\\tdescription=\\\"Should this field be stored in the database, if added to a admin view.\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"1|Yes,0|No\\\"\\n\\tdefault=\\\"1\\\"\\n\\trequired=\\\"true\\\"\\n\\tvalidate=\\\"bool\\\"\\n\\treadonly=\\\"false\\\"\\n\\tdisabled=\\\"false\\\"\\n\\/>\"', 1, '2018-04-12 13:47:20', '2018-04-12 13:47:56', 2, '', 837, '2d28d81d-51e6-41d7-8b69-1ea1b584bbfc', '', '', '', '', ''),
(2000, '', '', '', '', '', '', '', '', '', '', 'CHAR', '', '', '', 'Global Language Source', 'NOT NULL', '', 14, '\"<field\\n\\ttype=\\\"note\\\"\\n\\tname=\\\"note_language_global\\\"\\n\\tlabel=\\\"Global Language Source\\\"\\n\\tdescription=\\\"<p>Here you can select the main\\/global language that you are using to build components. This is the language you use for field label, descriptions. view names and well everything language related across the whole JCB build interface.<\\/p><p><b>You should not change this global language option once you have set it<\\/b> as this will cause major confusion, that will cause languages to get mixed-up very badly.<\\/p><p>Also make sure that if you import a JCB package from other developers that they use the same language as you selected here.<\\/p><p>At this time best practice is to use <b>en-GB<\\/b> since this has been the default language since the start of the project and will remain VDM\'s default for years to come, and if you import our JCB packages all the source language strings are in en-GB. English GB is also the source\\/main language for Joomla.<\\/p>\\\"\\n\\theading=\\\"h4\\\"\\n\\tclass=\\\"alert alert-info\\\"\\n\\/>\"', 1, '2018-04-20 21:52:05', '0000-00-00 00:00:00', 1, '', 838, '23a5d5da-77cc-4302-adcc-3b6f012a55af', '', '', '', '', ''),
(2001, '', '', '', '', '', '', '', '', '', '', 'CHAR', '', '', '', 'Development Method', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"development_method\\\"\\n\\tlabel=\\\"Development Method\\\"\\n\\tdescription=\\\"Select what development method you would like to use.\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"1|Default,2|Expansion\\\"\\n\\tdefault=\\\"1\\\"\\n\\trequired=\\\"true\\\"\\n\\/>\"', 1, '2018-04-21 14:02:04', '0000-00-00 00:00:00', 1, '', 839, 'b4af2374-2b1a-4a40-a6ac-427ee385e6d5', '', '', '', '', ''),
(2002, '', '', '', '', '', '', '', '', '', '', '', '', '', '', 'Development Method (default)', 'NOT NULL', '', 14, '\"<field\\n\\ttype=\\\"note\\\"\\n\\tname=\\\"note_development_method_default\\\"\\n\\tlabel=\\\"Default Development Method\\\"\\n\\tdescription=\\\"<p>This method is basically the way JCB has always worked by default.<\\/p>\\r\\n<p>So once you have made changes, you go to the compiler view and compile your component. Then you have the option to install and\\/or distribute the Joomla installation package.<\\/p><p>This option will always be active to those with permission to access the compiler. You can change this permission in the Permissions tab with the option called <b>Compiler Access<\\/b>.<\\/p>\\\"\\n\\theading=\\\"h2\\\"\\n\\tclass=\\\"alert alert-info\\\"\\n\\tshowon=\\\"development_method:1\\\"\\n\\/>\"', 1, '2018-04-21 14:10:45', '2018-09-20 17:09:05', 3, '', 840, 'ae2287dd-276a-459b-b187-315726fe69dd', '', '', '', '', ''),
(2003, '', '', '', '', '', '', '', '', '', '', '', '', '', '', 'Development Method (Expansion)', 'NOT NULL', '', 14, '\"<field\\n\\ttype=\\\"note\\\"\\n\\tname=\\\"note_development_method_expansion\\\"\\n\\tlabel=\\\"Expansion Development Method\\\"\\n\\tdescription=\\\"<p>This method adds easy compile and install of multiple components to the current Joomla system. This automated action is called <b>expansion<\\/b>.<\\/p>\\r\\n<p><em>Expansion can be achieved in two ways.<\\/em><\\/p>\\r\\n<h4>Button Expansion Option<\\/h4>\\r\\n<p>The first and most common way is to click on any of the <b>Run Expansion<\\/b> buttons found at the top of some of the JCB admin views.<\\/p>\\r\\n<h4>Cronjob Expansion Option<\\/h4>\\r\\n<p>The second is by running a cronjob as explained bellow the area of selection in this tab. So you do not need to manually compile and install the selected components any more, the system does all that automatically for you. The latency of the workflow is based on your <b>cronjob frequency<\\/b> and the <b>size<\\/b> of your component.<\\/p>\\r\\n<p>Expansion is pause for a component in a few ways, one by actually <b>checking out\\/opening<\\/b> the Joomla Component view of the component in JCB, or changing the state to unpublish, archive or trashed, or simply remove if from the list below.<\\/p>\\r\\n<h3>The Expansion method is there to speedup development testing.<\\/h3>\\r\\n<p>Below you should set the behaviour of a selected set of components that will be <b>auto build and installed<\\/b> when the expansion module is run.<\\/p>\\\"\\n\\theading=\\\"h2\\\"\\n\\tclass=\\\"alert alert-info\\\"\\n\\tshowon=\\\"development_method:2\\\"\\n\\/>\"', 1, '2018-04-21 14:18:53', '2018-09-20 17:14:25', 11, '', 840, '863a7cd6-48ab-4f8d-a835-7f86a30c8c84', '', '', '', '', ''),
(2004, '', '', '', '', '', '', '', '', '', '', 'CHAR', '', '', '', 'Add to Backup Folder & Sales Server ', 'NOT NULL', '', 3, '\"<field\\n\\ttype=\\\"checkbox\\\"\\n\\tname=\\\"backup\\\"\\n\\tlabel=\\\"Add to Backup Folder &amp; Sales Server <small>(if set)<\\/small>\\\"\\n\\tvalue=\\\"1\\\"\\n\\tdescription=\\\"Should the zipped package of the component be moved to the local backup and remote sales server? This is only applicable if this component has those values set.\\\"\\n\\tclass=\\\"inputbox\\\"\\n\\/>\"', 1, '2018-04-21 21:07:25', '0000-00-00 00:00:00', 1, '', 841, '6a31787f-5987-4304-9a17-d91297464a29', '', '', '', '', ''),
(2005, '', '', '', '', '', '', '', '', '', '', 'CHAR', '', '', '', 'Add to Repository Folder', 'NOT NULL', '', 3, '\"<field\\n\\ttype=\\\"checkbox\\\"\\n\\tname=\\\"repository\\\"\\n\\tlabel=\\\"Add to Repository Folder\\\"\\n\\tvalue=\\\"1\\\"\\n\\tdescription=\\\"Should the component be moved to your local repository folder?\\\"\\n\\tclass=\\\"inputbox\\\"\\n\\/>\"', 1, '2018-04-21 21:08:26', '0000-00-00 00:00:00', 1, '', 841, '3e1777fe-c941-4108-98d7-b90925afa012', '', '', '', '', ''),
(2006, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'Add Custom Code Placeholders', 'NOT NULL', '', 3, '\"<field\\n\\ttype=\\\"checkbox\\\"\\n\\tname=\\\"add_placeholders\\\"\\n\\tlabel=\\\"Add Custom Code Placeholders\\\"\\n\\tvalue=\\\"1\\\"\\n\\tdefault=\\\"\\\"\\n\\tdescription=\\\"Should JCB insert the custom code placeholders? This is only applicable if this component has custom code.\\\"\\n\\tclass=\\\"inputbox\\\"\\n\\/>\"', 1, '2018-04-21 21:31:56', '2022-08-25 21:04:45', 5, '', 841, '5dd22f66-e99b-4bf4-b572-1d7c4fcca823', '', '', '', '', ''),
(2007, '', '', '', '', '', '', '', '', '', '', '', '', '', '', 'No Database Needed', 'NOT NULL', '', 14, '\"<field\\n\\ttype=\\\"note\\\"\\n\\tname=\\\"note_no_database_settings_needed\\\"\\n\\tlabel=\\\"No Database Require\\\"\\n\\tdescription=\\\"This field does not require any database settings to function correctly.\\\"\\n\\theading=\\\"h4\\\"\\n\\tclass=\\\"alert alert-info\\\"\\n\\/>\"', 1, '2018-04-22 22:54:03', '0000-00-00 00:00:00', 1, '', 842, '4735dbb0-a0db-49ce-9577-f91a5cc1ac18', '', '', '', '', ''),
(2008, '', '', '', '', '', '', '', '', '', '', '', '', '', '', 'Database Settings Needed', 'NOT NULL', '', 14, '\"<field\\n\\ttype=\\\"note\\\"\\n\\tname=\\\"note_database_settings_needed\\\"\\n\\tlabel=\\\"Database Settings\\\"\\n\\tdescription=\\\"<p>Set the database column for this field here. The column will have the same name as the field. Please take care to select these settings in the correct relationship. The nature of this area is to give you as much freedom\\/power as you would like, but with that comes responsibility.<\\/p><p>You therefore need to insure that you know what the correct values should be. A great way to learn, is to look at the Joomla core components fields and the corresponding mySql columns.<\\/p>\\\"\\n\\theading=\\\"h4\\\"\\n\\tclass=\\\"alert alert-info\\\"\\n\\/>\"', 1, '2018-04-23 01:00:49', '2018-04-23 01:01:15', 2, '', 842, '9f5f3493-356f-4cdc-9b4e-0ab9abc6c0dd', '', '', '', '', ''),
(2009, '', '', '', '', '', '', '', '', '', '', '', '', '', '', 'Expansion JCB Components', 'NOT NULL', '', 14, '\"<field\\n\\ttype=\\\"note\\\"\\n\\tname=\\\"expansioncronjob_note\\\"\\n\\tlabel=\\\"Expansion Cronjob\\\"\\n\\tdescription=\\\"You must run a cronjob that will trigger the expansion events for JCB.<br \\/><br \\/><b>USE THE FOLLOWING:<\\/b> <span id=\'cronjob-expand\'>loading...<span class=\'loading-expand-dots\' ><\\/span><\\/span><br \\/><br \\/>Please note that if your Joomla website has a Firewall installed, it will not allow cronjob via direct URL (most of the time), you will then need to adapt the cornjob request to look like a browser. For more info please read https:\\/\\/stackoverflow.com\\/a\\/31597823\\/1429677\\r\\n<script type=\'text\\/javascript\'>\\r\\ndocument.addEventListener(\'DOMContentLoaded\', function() {\\r\\n var inputs = document.forms[0].querySelectorAll(\'input\');\\r\\n Array.prototype.forEach.call(inputs, function(elm) {\\r\\n if (elm.name.length === 32 && elm.type === \'hidden\') {\\r\\n var value = elm.value;\\r\\n if (value === \'1\') {\\r\\n token = elm.name;\\r\\n }\\r\\n }\\r\\n });\\r\\n let x = 0;\\r\\n var intervalExpand = setInterval(function() {\\r\\n let dots = \'\';\\r\\n x++;\\r\\n for (var y = 0; y < x % 11; y++) {\\r\\n dots += \'.\';\\r\\n }\\r\\n let loading_dots = document.querySelector(\'.loading-expand-dots\');\\r\\n if (loading_dots) {\\r\\n loading_dots.textContent = dots;\\r\\n } else {\\r\\n clearInterval(intervalExpand);\\r\\n }\\r\\n }, 500);\\r\\n getCronPath(\'expand\', token);\\r\\n});\\r\\n<\\/script>\\\"\\n\\theading=\\\"h4\\\"\\n\\tshowon=\\\"development_method:2\\\"\\n\\/>\"', 1, '2018-04-23 13:03:48', '2023-12-25 13:53:22', 8, '', 801, '936927f8-9687-4b77-a36b-5ce53e3ba4d4', '', '', '', '', ''),
(2010, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'Return Options for Build', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"return_options_build\\\"\\n\\tlabel=\\\"Return Options for Build\\\"\\n\\tdescription=\\\"Should the system return the build info\\/messages, or simply 1 for success and 0 for failure.\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"1|Display Message,2|Only Boolean\\\"\\n\\tdefault=\\\"2\\\"\\n\\tmessage=\\\"\\\"\\n\\tshowon=\\\"development_method:2\\\"\\n\\/>\"', 1, '2018-04-25 12:36:45', '0000-00-00 00:00:00', 1, '', 843, 'd80b99f5-f008-4e66-84f5-68816e485c73', '', '', '', '', ''),
(2011, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', 2, '', '', 'User/Organization Name', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"name\\\"\\n\\tlabel=\\\"User\\/Organization Name\\\"\\n\\tsize=\\\"150\\\"\\n\\tmaxlength=\\\"150\\\"\\n\\tdefault=\\\"\\\"\\n\\tdescription=\\\"Add the User\\/Organization Name Here!\\\"\\n\\tclass=\\\"text_area\\\"\\n\\trequired=\\\"true\\\"\\n\\tfilter=\\\"STRING\\\"\\n\\tmessage=\\\"Error! Please add user\\/organization name here.\\\"\\n\\thint=\\\"vdm-io\\\"\\n\\tautocomplete=\\\"on\\\"\\n\\/>\"', 1, '2018-04-26 13:14:47', '2018-04-26 13:17:26', 3, '', 844, '15ce535d-0f7f-43c3-adc8-2d3dcdfeca89', '', '', '', '', ''),
(2012, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', 2, '', '', 'Project Name', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"project\\\"\\n\\tlabel=\\\"Project Name\\\"\\n\\tsize=\\\"150\\\"\\n\\tmaxlength=\\\"150\\\"\\n\\tdefault=\\\"\\\"\\n\\tdescription=\\\"Add the Project Name Here!\\\"\\n\\tclass=\\\"text_area\\\"\\n\\trequired=\\\"true\\\"\\n\\tfilter=\\\"STRING\\\"\\n\\tmessage=\\\"Error! Please add project name here.\\\"\\n\\thint=\\\"Joomla-Component-Builder\\\"\\n\\tautocomplete=\\\"on\\\"\\n\\/>\"', 1, '2018-04-26 13:17:10', '2018-04-26 13:15:56', 1, '', 844, 'a8c408cc-d7bb-4130-9c2e-d90b2ac14e1f', '', '', '', '', ''),
(2013, 1, '', '', '', 'I2pmb3JtX3Byb2plY3RfY2h6biwgLmZ1bGwtd2lkdGggIHsNCndpZHRoOiAxMDAlICFpbXBvcnRhbnQ7DQp9', '', '', '', 11, '', 'INT', 2, '', '', 'Project (repo)', 'NOT NULL', '', 6, '\"<field\\n\\ttype=\\\"project\\\"\\n\\tname=\\\"project\\\"\\n\\tlabel=\\\"Project\\\"\\n\\tdescription=\\\"\\\"\\n\\tmessage=\\\"\\\"\\n\\tclass=\\\"list_class full-width\\\"\\n\\tmultiple=\\\"false\\\"\\n\\tdefault=\\\"0\\\"\\n\\trequired=\\\"true\\\"\\n\\textends=\\\"list\\\"\\n\\tbutton=\\\"true\\\"\\n\\ttable=\\\"#__###component###_project\\\"\\n\\tcomponent=\\\"com_###component###\\\"\\n\\tview=\\\"project\\\"\\n\\tviews=\\\"projects\\\"\\n\\tvalue_field=\\\"project\\\"\\n\\tkey_field=\\\"id\\\"\\n\\tprime_php=\\\"1\\\"\\n\\ttype_php_1=\\\"$db = JFactory::getDBO();\\r\\n$query = $db->getQuery(true);\\r\\n$query->select($db->quoteName(array(\'a.###ID###\',\'a.###TEXT###\',\'a.name\'),array(\'###ID###\',\'###CODE_TEXT###\',\'name\')));\\r\\n$query->from($db->quoteName(\'###TABLE###\', \'a\'));\\r\\n$query->where($db->quoteName(\'a.published\') . \' >= 1\');\\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[] = JHtml::_(\'select.option\', \'\', \'Select an option\');\\r\\n\\\\tforeach($items as $item)\\r\\n\\\\t{\\r\\n\\\\t\\\\t$options[] = JHtml::_(\'select.option\', $item->###ID###, $item->name.\'\\/\'.$item->###CODE_TEXT###);\\r\\n\\\\t}\\r\\n}\\r\\n\\r\\nreturn $options;\\\"\\n\\/>\"', 1, '2018-04-26 15:47:50', '2018-07-24 20:04:01', 6, '', 845, '3db90973-6a5c-4651-8bc9-d8752af610ce', '', '', '', '', ''),
(2014, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', 2, '', '', 'Relationship (project)', 'NOT NULL', '', 11, '\"<field\\n\\ttype=\\\"list\\\"\\n\\tname=\\\"relationship\\\"\\n\\tlabel=\\\"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-04-26 16:02:34', '2018-05-11 04:18:40', 5, '', 846, '43e953bf-1277-4d7f-8634-0f0795620a89', '', '', '', '', ''),
(2015, '', '', '', '', '', '', '', '', '', '', '', '', '', '', 'Projects & Relationships', 'NOT NULL', '', 14, '\"<field\\n\\ttype=\\\"note\\\"\\n\\tname=\\\"note_display_projects_relationships\\\"\\n\\tdescription=\\\"<div id=\'display_projects_relationships\' >Display of projects this developer has a relationship with!<\\/div>\\\"\\n\\/>\"', 1, '2018-04-26 16:04:44', '2018-04-29 23:19:23', 4, '', 847, '79370947-13e1-4282-a06c-55be1a63fa39', '', '', '', '', ''),
(2016, 1, '', '', '', 'I2pmb3JtX3Rva2VuX2Noem4sIC5mdWxsLXdpZHRoICB7DQp3aWR0aDogMTAwJSAhaW1wb3J0YW50Ow0KfQ==', '', '', '', 255, '', 'VARCHAR', 2, '', '', 'Token', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"token\\\"\\n\\tlabel=\\\"Token\\\"\\n\\tsize=\\\"128\\\"\\n\\tmaxlength=\\\"128\\\"\\n\\tdefault=\\\"\\\"\\n\\tdescription=\\\"<small>Check <a href=\'https:\\/\\/developer.github.com\\/v3\\/#authentication\' target=\'_blank\'>https:\\/\\/developer.github.com\\/v3\\/#authentication<\\/a> for more info.<\\/small>\\\"\\n\\tclass=\\\"text_area full-width\\\"\\n\\trequired=\\\"false\\\"\\n\\tfilter=\\\"STRING\\\"\\n\\tmessage=\\\"Error! Please add token here.\\\"\\n\\thint=\\\"OAUTH-TOKEN\\\"\\n\\tautocomplete=\\\"off\\\"\\n\\/>\"', 1, '2018-04-27 12:49:03', '2018-04-27 17:03:08', 7, '', 848, '98c8d20b-0001-4682-9467-aa29d82afdd8', '', '', '', '', ''),
(2017, '', '', '', '', '', '', '', '', 1, '', 'INT', 2, '', '', 'Add Github Api Token', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"add_oauth_token\\\"\\n\\tlabel=\\\"Github Api Token\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"2|Global,1|Local\\\"\\n\\tdefault=\\\"2\\\"\\n\\trequired=\\\"true\\\"\\n\\/>\"', 1, '2018-04-27 12:54:49', '2018-04-27 12:50:56', 1, '', 848, '0f52441d-4fa6-4700-8f9c-91099284bc1e', '', '', '', '', ''),
(2018, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', 2, '', '', 'Login (github)', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"login\\\"\\n\\tlabel=\\\"gitHub <small>(username)<\\/small>\\\"\\n\\tsize=\\\"120\\\"\\n\\tmaxlength=\\\"120\\\"\\n\\tdefault=\\\"\\\"\\n\\tdescription=\\\"The login name of developer\\\"\\n\\tclass=\\\"text_area\\\"\\n\\trequired=\\\"true\\\"\\n\\tfilter=\\\"CMD\\\"\\n\\thint=\\\"username\\\"\\n\\/>\"', 1, '2018-04-27 13:51:29', '2018-05-11 04:26:12', 3, '', 849, '4441d93e-3d6f-4eb5-94d0-772b332e4e36', '', '', '', '', ''),
(2019, '', '', '', '', '', '', '', '', 255, '', 'CHAR', 2, '', '', 'Company (github)', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"company\\\"\\n\\tlabel=\\\"Company\\\"\\n\\tsize=\\\"140\\\"\\n\\tmaxlength=\\\"150\\\"\\n\\tdescription=\\\"Enter Company Name Here\\\"\\n\\tclass=\\\"text_area\\\"\\n\\tfilter=\\\"STRING\\\"\\n\\tmessage=\\\"Error! Please add company name here.\\\"\\n\\thint=\\\"Company Name Here\\\"\\n\\/>\"', 1, '2018-04-27 13:52:37', '2015-08-25 21:15:22', 1, '', 159, '6dcf75ae-8dc9-4540-9e2c-ef06320cb6a3', '', '', '', '', ''),
(2020, '', '', '', '', '', '', '', '', 10, '', 'INT', 2, '', '', 'id (github)', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"github_id\\\"\\n\\tlabel=\\\"ID (github)\\\"\\n\\tsize=\\\"50\\\"\\n\\tmaxlength=\\\"50\\\"\\n\\tdescription=\\\"The github user id\\\"\\n\\tclass=\\\"text_area\\\"\\n\\tfilter=\\\"INT\\\"\\n\\treadonly=\\\"true\\\"\\n\\thint=\\\"auto set\\\"\\n\\/>\"', 1, '2018-04-27 13:55:42', '0000-00-00 00:00:00', 1, '', 850, '4ffbb599-fcb7-4ad3-819f-7bf55b61cbdf', '', '', '', '', ''),
(2021, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'bio (github)', 'NOT NULL', '', 25, '\"<field\\n\\ttype=\\\"textarea\\\"\\n\\tname=\\\"bio\\\"\\n\\tlabel=\\\"Bio\\\"\\n\\trows=\\\"10\\\"\\n\\tcols=\\\"5\\\"\\n\\tdescription=\\\"Text Area\\\"\\n\\tclass=\\\"text_area\\\"\\n\\tfilter=\\\"STRING\\\"\\n\\thint=\\\"taken from gitHub\\\"\\n\\/>\"', 1, '2018-04-27 13:57:23', '2018-04-27 14:10:05', 2, '', 851, '5fe2d86a-e6ed-45c6-b910-642ed2342163', '', '', '', '', ''),
(2022, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Hireable (github)', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"hireable\\\"\\n\\tlabel=\\\"Hireable\\\"\\n\\tdescription=\\\"is the developer hireable\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"1|Yes,0|No\\\"\\n\\tdefault=\\\"0\\\"\\n\\/>\"', 1, '2018-04-27 13:59:07', '0000-00-00 00:00:00', 1, '', 852, '22d3f00e-e4e6-41c1-825c-922fc4fec3ce', '', '', '', '', ''),
(2023, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', 2, '', '', 'location (github)', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"location\\\"\\n\\tlabel=\\\"Location\\\"\\n\\tsize=\\\"150\\\"\\n\\tmaxlength=\\\"150\\\"\\n\\tdescription=\\\"The developer\'s location\\\"\\n\\tclass=\\\"text_area\\\"\\n\\tfilter=\\\"STRING\\\"\\n\\thint=\\\"location\\\"\\n\\tautocomplete=\\\"on\\\"\\n\\/>\"', 1, '2018-04-27 14:00:21', '0000-00-00 00:00:00', 1, '', 853, 'f9fa9b1b-7e89-40de-8b71-ea7a549d68b3', '', '', '', '', ''),
(2024, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', 2, '', '', 'blog (github)', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"blog\\\"\\n\\tlabel=\\\"Blog (link)\\\"\\n\\tsize=\\\"150\\\"\\n\\tmaxlength=\\\"150\\\"\\n\\tdescription=\\\"The developer\'s blog\\\"\\n\\tclass=\\\"text_area\\\"\\n\\tfilter=\\\"STRING\\\"\\n\\thint=\\\"http:\\/\\/www.github.com\\\"\\n\\tautocomplete=\\\"on\\\"\\n\\tvalidate=\\\"url\\\"\\n\\/>\"', 1, '2018-04-27 14:02:51', '0000-00-00 00:00:00', 1, '', 853, 'eec7f75f-7142-4ee2-b722-1599352191da', '', '', '', '', ''),
(2025, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Github Api Tokens', 'NOT NULL', 5, 35, '\"<field\\n\\ttype=\\\"subform\\\"\\n\\tname=\\\"tokens\\\"\\n\\tlabel=\\\"Github Api Tokens<br \\/><small>encrypted<\\/small>\\\"\\n\\tlayout=\\\"joomla.form.field.subform.repeatable-table\\\"\\n\\tmultiple=\\\"true\\\"\\n\\tbuttons=\\\"add,remove,move\\\"\\n\\tfields=\\\"2016\\\"\\n\\tdescription=\\\"The github api tokens\\\"\\n\\ticon=\\\"list\\\"\\n\\tmax=\\\"10\\\"\\n\\tmin=\\\"1\\\"\\n\\/>\"', 1, '2018-04-27 16:58:12', '2018-04-28 13:58:41', 6, '', 854, 'ae2e2b4a-8f52-4be4-9ed2-0473cc4d77d9', '', '', '', '', ''),
(2026, '', '', '', '', '', '', '', '', '', '', '', '', '', '', 'Update gitHub Message Helper', 'NOT NULL', '', 14, '\"<field\\n\\ttype=\\\"note\\\"\\n\\tname=\\\"updatecronjob_note\\\"\\n\\tlabel=\\\"Update\\/Get gitHub Developers\\\"\\n\\tdescription=\\\"You can run a cronjob that will update\\/get all the project developers.<br \\/><br \\/><b>USE THE FOLLOWING:<\\/b> <span id=\'cronjob-update\'>loading...<span class=\'loading-dots\' ><\\/span><\\/span><br \\/><br \\/>Please note that if your Joomla website has a Firewall installed, it will not allow cronjob via direct URL (most of the time), you will then need to adapt the cornjob request to look like a browser. For more info please read https:\\/\\/stackoverflow.com\\/a\\/31597823\\/1429677\\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 Cron Path\\r\\n\\tgetCronPath(\'update\', token);\\r\\n});\\r\\nfunction getCronPath_server(getType, token){\\r\\n\\tvar getUrl = \'index.php?option=com_###component###&task=ajax.getCronPath&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 getCronPath(getType, token){\\r\\n\\t getCronPath_server(getType, token).done(function(result) {\\r\\n\\t\\tif(result.path){\\r\\n\\t\\t\\tjQuery(\'#cronjob-\'+getType).html(result.path);\\r\\n\\t\\t} else if (result.error) {\\r\\n\\t\\t\\tjQuery(\'#cronjob-\'+getType).html(result.error);\\r\\n\\t\\t} else {\\r\\n\\t\\t\\tjQuery(\'#cronjob-\'+getType).html(\'<span style=\\\\\'color: red;\\\\\'>Error loading path!<\\/span>\');\\r\\n\\t\\t}\\r\\n\\t});\\r\\n}\\r\\n<\\/script>\\\"\\n\\theading=\\\"h4\\\"\\n\\/>\"', 1, '2018-04-29 21:45:53', '2018-04-29 21:48:27', 2, '', 801, 'a61ce13d-024d-43e3-a3e1-bbe1e821d0c9', '', '', '', '', ''),
(2027, '', '', '', '', '', '', 1, '', 1, '', 'TINYINT', 2, '', '', 'Add Menu Prefix (global)', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"add_menu_prefix\\\"\\n\\tlabel=\\\"Add Menu Prefix\\\"\\n\\tdescription=\\\"Would you like to add a prefix to the Joomla menu name of your components\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"1|Yes,0|No\\\"\\n\\tdefault=\\\"1\\\"\\n\\/>\"', 1, '2018-05-02 23:43:29', '2018-09-20 19:31:37', 8, '', 855, '54efcd29-3962-4bf0-8fce-da4d4b36fe6e', '', '', '', '', ''),
(2028, '', '', '', '', '', '', '', '', 100, '', 'VARCHAR', 2, '', '', 'Menu Prefix', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"menu_prefix\\\"\\n\\tlabel=\\\"Prefix<br \\/>\\r\\n<small>Check out these lists:<br \\/>\\r\\n<a href=\'https:\\/\\/dev.w3.org\\/html5\\/html-author\\/charref\' target=\'_blank\'>Char-ref<\\/a> or \\r\\n<a href=\'https:\\/\\/unicode.org\\/emoji\\/charts\\/full-emoji-list.html\' target=\'_blank\'>Emoji<\\/a><\\/small>\\\"\\n\\tsize=\\\"30\\\"\\n\\tmaxlength=\\\"30\\\"\\n\\tdefault=\\\"\\\"\\n\\tdescription=\\\"Add the prefix you would like to use. Make sure that it is HTML Character Entities since it is being used in XML.\\\"\\n\\tclass=\\\"text_area\\\"\\n\\tfilter=\\\"SAFEHTML\\\"\\n\\tmessage=\\\"Error! Please add some text here.\\\"\\n\\thint=\\\"&#187;\\\"\\n\\tautocomplete=\\\"on\\\"\\n\\tshowon=\\\"add_menu_prefix:1\\\"\\n\\/>\"', 1, '2018-05-03 00:04:03', '2021-04-15 22:19:51', 10, '', 855, '7971c559-0867-44a8-bfea-291881bad311', '', '', '', '', ''),
(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', '', '', '', '', ''),
(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', '', '', '', '', ''),
(2036, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Hireable (subscription filter)', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"hireable\\\"\\n\\tlabel=\\\"Target Hireable\\\"\\n\\tdescription=\\\"Should we add a filter based on the developers hire status.\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"2|Both,1|Yes,0|No\\\"\\n\\tdefault=\\\"2\\\"\\n\\trequired=\\\"true\\\"\\n\\/>\"', 1, '2018-05-15 16:37:19', '2018-05-15 16:42:56', 2, '', 846, 'a3498aaf-0aca-4784-9178-87a9897df584', '', '', '', '', ''),
(2037, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Send Behaviour', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"send_behaviour\\\"\\n\\tlabel=\\\"Send Behaviour\\\"\\n\\tdescription=\\\"The type of send behaviour should be used.\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"1|Default,2|Scheduled\\\"\\n\\tdefault=\\\"1\\\"\\n\\trequired=\\\"true\\\"\\n\\/>\"', 1, '2018-05-15 16:42:02', '2018-05-15 16:42:16', 2, '', 846, 'f493c182-81fa-4eef-80a0-9fd833dd1932', '', '', '', '', ''),
(2038, '', '', '', '', '', '', 'Other', '0000-00-00 00:00:00', '', '', 'DATETIME', '', '', '', 'Countdown to Time', 'NOT NULL', '', 1, '\"<field\\n\\ttype=\\\"calendar\\\"\\n\\tname=\\\"countdown_target\\\"\\n\\tlabel=\\\"Countdown to Time\\\"\\n\\tdescription=\\\"What is the date we are counting down to.\\\"\\n\\tformat=\\\"%Y-%m-%d %H:%M:%S\\\"\\n\\tfilter=\\\"null\\\"\\n\\tshowtime=\\\"true\\\"\\n\\tminyear=\\\"0\\\"\\n\\tshowon=\\\"send_behaviour:2\\\"\\n\\/>\"', 1, '2018-05-15 16:50:48', '2018-05-15 23:10:36', 5, '', 846, 'cf6219d5-58fd-411f-83ab-1626dab058e1', '', '', '', '', ''),
(2039, '', '', '', '', '', '', '', '', 11, '', 'INT', '', '', '', 'Repeat every', 'NOT NULL', '', 15, '\"<field\\n\\ttype=\\\"number\\\"\\n\\tname=\\\"repeat_number\\\"\\n\\tlabel=\\\"Repeat every\\\"\\n\\tdefault=\\\"1\\\"\\n\\tdescription=\\\"Repeat every X times\\\"\\n\\tclass=\\\"text_area\\\"\\n\\tmin=\\\"1\\\"\\n\\tmax=\\\"1000\\\"\\n\\tstep=\\\"1\\\"\\n\\tshowon=\\\"send_behaviour:2[AND]countdown_type:2\\\"\\n\\/>\"', 1, '2018-05-15 16:52:54', '2018-05-15 23:10:58', 5, '', 846, '045b2599-fbc8-45ea-8e51-b26b5b3ee15b', '', '', '', '', ''),
(2040, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Select a time zone', 'NOT NULL', '', 26, '\"<field\\n\\ttype=\\\"timezone\\\"\\n\\tname=\\\"target_zone\\\"\\n\\tlabel=\\\"Select a time zone\\\"\\n\\tdefault=\\\"Africa\\/Windhoek\\\"\\n\\tdescription=\\\"Select the time zone the time is linked to.\\\"\\n\\tshowon=\\\"send_behaviour:2\\\"\\n\\/>\"', 1, '2018-05-15 16:59:17', '2018-05-15 23:11:25', 3, '', 846, 'cf026738-59d7-4c7a-bc7e-575ec4e40161', '', '', '', '', ''),
(2041, '', '', '', '', '', '', 1, '', 1, '', 'TINYINT', 2, '', '', 'Countdown Type', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"countdown_type\\\"\\n\\tlabel=\\\"Countdown Type\\\"\\n\\tdescription=\\\"What type of countdown should this be?\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"1|Once Off,2|Repeating\\\"\\n\\tdefault=\\\"1\\\"\\n\\tshowon=\\\"send_behaviour:2\\\"\\n\\/>\"', 1, '2018-05-15 17:03:52', '2018-05-15 23:11:51', 3, '', 846, '7652dd78-5483-4c6f-b285-f2c4ce925da3', '', '', '', '', ''),
(2042, '', '', '', '', '', '', 'Other', '0000-00-00 00:00:00', '', '', 'DATETIME', '', '', '', 'End Repeat Date', 'NOT NULL', '', 1, '\"<field\\n\\ttype=\\\"calendar\\\"\\n\\tname=\\\"repeat_date\\\"\\n\\tlabel=\\\"End Repeat Date\\\"\\n\\tdescription=\\\"Set the date the repeate should end.\\\"\\n\\tformat=\\\"%Y-%m-%d %H:%M:%S\\\"\\n\\tfilter=\\\"null\\\"\\n\\tshowon=\\\"send_behaviour:2[AND]countdown_type:2[AND]repeat_end:2\\\"\\n\\tshowtime=\\\"true\\\"\\n\\tminyear=\\\"0\\\"\\n\\/>\"', 1, '2018-05-15 17:04:40', '2018-05-15 23:12:06', 3, '', 846, '585a3fb1-fee5-4585-8a95-1a6c15075247', '', '', '', '', ''),
(2043, '', '', '', '', '', '', '', '', 11, '', 'INT', '', '', '', 'Pause Number', 'NOT NULL', '', 15, '\"<field\\n\\ttype=\\\"number\\\"\\n\\tname=\\\"pause_number\\\"\\n\\tlabel=\\\"Pause Number\\\"\\n\\tdefault=\\\"1\\\"\\n\\tdescription=\\\"Pause Number\\\"\\n\\tclass=\\\"text_area\\\"\\n\\tmin=\\\"1\\\"\\n\\tmax=\\\"1000\\\"\\n\\tstep=\\\"1\\\"\\n\\tshowon=\\\"countdown_type:2[AND]repeat_behaviour:2\\\"\\n\\/>\"', 1, '2018-05-15 20:30:09', '2018-05-15 20:34:14', 2, '', 846, '191025f8-ae06-4dfd-9057-1e6213c804c2', '', '', '', '', ''),
(2044, '', '', '', '', '', '', 1, '', 1, '', 'TINYINT', 2, '', '', 'Repeat Ends', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"repeat_end\\\"\\n\\tlabel=\\\"Repeat Ends\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"1|Never,2|On Date\\\"\\n\\tdefault=\\\"1\\\"\\n\\tshowon=\\\"send_behaviour:2[AND]countdown_type:2\\\"\\n\\/>\"', 1, '2018-05-15 20:33:55', '2018-05-15 23:13:19', 3, '', 846, 'f9ef2da0-e956-45b3-bad1-d5ceb6cf6c5c', '', '', '', '', ''),
(2045, '', '', '', '', '', '', 1, '', 1, '', 'TINYINT', 2, '', '', 'Repeat Behaviour', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"repeat_behaviour\\\"\\n\\tlabel=\\\"Repeat Behaviour\\\"\\n\\tdescription=\\\"What must the countdown do at the end, when it is about to repeat.\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"1|Just Restart,2|Pause\\\"\\n\\tdefault=\\\"1\\\"\\n\\tshowon=\\\"send_behaviour:2[AND]countdown_type:2\\\"\\n\\/>\"', 1, '2018-05-15 20:37:09', '2018-05-15 23:12:40', 2, '', 846, '76abe2ca-e121-41e1-ab9a-8a77de7c6a91', '', '', '', '', ''),
(2046, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'Repeat Type', 'NOT NULL', '', 11, '\"<field\\n\\ttype=\\\"list\\\"\\n\\tname=\\\"repeat_type\\\"\\n\\tlabel=\\\"Repeat Type\\\"\\n\\tdescription=\\\"Select the repeat type.\\\"\\n\\tclass=\\\"list_class\\\"\\n\\tmultiple=\\\"false\\\"\\n\\tfilter=\\\"INT\\\"\\n\\toption=\\\"1|Minute\\/s,2|Hour\\/s,3|Day\\/s,4|Week\\/s,5|Month\\/s,6|Year\\/s\\\"\\n\\tdefault=\\\"3\\\"\\n\\tshowon=\\\"send_behaviour:2[AND]countdown_type:2\\\"\\n\\/>\"', 1, '2018-05-15 20:44:05', '2018-05-15 23:12:50', 4, '', 858, '5b0379ab-26b1-4a26-8988-6614d204d1ff', '', '', '', '', ''),
(2047, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Repeat on', 'NOT NULL', '', 11, '\"<field\\n\\ttype=\\\"list\\\"\\n\\tname=\\\"repeat_day\\\"\\n\\tlabel=\\\"Repeat on\\\"\\n\\tdescription=\\\"Select the day of the week you want to repeat this.\\\"\\n\\tclass=\\\"list_class\\\"\\n\\tmultiple=\\\"true\\\"\\n\\tfilter=\\\"INT\\\"\\n\\toption=\\\"1|Sun,2|Mon,3|Tue,4|Wed,5|Thu,6|Fri,7|Sat\\\"\\n\\tdefault=\\\"\\\"\\n\\tshowon=\\\"send_behaviour:2[AND]countdown_type:2[AND]repeat_type:4\\\"\\n\\/>\"', 1, '2018-05-15 20:46:46', '2018-05-15 23:13:02', 3, '', 858, '3872848c-69be-4f88-afff-08df5bec5d68', '', '', '', '', ''),
(2048, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'Pause Type', 'NOT NULL', '', 11, '\"<field\\n\\ttype=\\\"list\\\"\\n\\tname=\\\"pause_type\\\"\\n\\tlabel=\\\"Pause Type\\\"\\n\\tdescription=\\\"Select the pause type.\\\"\\n\\tclass=\\\"list_class\\\"\\n\\tmultiple=\\\"false\\\"\\n\\tfilter=\\\"INT\\\"\\n\\toption=\\\"1|Minute\\/s,2|Hour\\/s,3|Day\\/s,4|Week\\/s,5|Month\\/s,6|Year\\/s\\\"\\n\\tdefault=\\\"2\\\"\\n\\tshowon=\\\"countdown_type:2[AND]repeat_behaviour:2\\\"\\n\\/>\"', 1, '2018-05-15 20:48:24', '2018-05-15 20:47:10', 1, '', 858, '02055b60-2719-42a9-86a1-cad54002cc84', '', '', '', '', ''),
(2049, '', '', '', '', '', '', '', '', 7, '', 'INT', '', '', '', 'Age (Patient)', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"age\\\"\\n\\tlabel=\\\"Age\\\"\\n\\tsize=\\\"40\\\"\\n\\tmaxlength=\\\"6\\\"\\n\\tdescription=\\\"Enter Patient Age like 25, must only be a number!\\\"\\n\\tclass=\\\"text_area\\\"\\n\\trequired=\\\"true\\\"\\n\\tfilter=\\\"INT\\\"\\n\\tvalidate=\\\"number\\\"\\n\\tmessage=\\\"Enter Patient Age like 25, must only be a number!\\\"\\n\\thint=\\\"Age Here\\\"\\n\\tautocomplete=\\\"on\\\"\\n\\tonchange=\\\"if(!jQuery(this).val().match(\\/^\\\\d+$\\/)){jQuery(this).val(\'\')};\\\"\\n\\/>\"', 1, '2018-05-16 08:15:24', '2018-08-03 10:12:44', 8, '', 859, '416641ca-db7a-4cf2-a4c5-40e6154ee53b', '', '', '', '', ''),
(2050, '', '', '', '', '', '', '', '', 7, '', 'VARCHAR', '', '', '', 'Height', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"height\\\"\\n\\tlabel=\\\"Height\\\"\\n\\tsize=\\\"40\\\"\\n\\tmaxlength=\\\"6\\\"\\n\\tdescription=\\\"Enter Patient Height in Meters like 1.85 Must only be a number!\\\"\\n\\tclass=\\\"text_area\\\"\\n\\tfilter=\\\"STRING\\\"\\n\\tvalidate=\\\"number\\\"\\n\\tmessage=\\\"Enter Patient Height in Meters like 1.85 must only be a number!\\\"\\n\\thint=\\\"Height Here\\\"\\n\\tautocomplete=\\\"on\\\"\\n\\tonchange=\\\"if(!jQuery(this).val().match(\\/^\\\\d+\\\\.\\\\d+$\\/)){if(!jQuery(this).val().match(\\/^\\\\d+$\\/)){jQuery(this).val(\'\')}};\\\"\\n\\/>\"', 1, '2018-05-16 08:24:25', '2018-08-05 22:25:12', 6, '', 859, '47e944d4-ecbd-4f04-a0d7-aa48a933fc4b', '', '', '', '', ''),
(2051, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'Gender (1|2)', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"gender\\\"\\n\\tlabel=\\\"Gender\\\"\\n\\tdescription=\\\"Choose gender\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"1|Male,2|Female\\\"\\n\\tmessage=\\\"Choose gender\\\"\\n\\trequired=\\\"true\\\"\\n\\tvalidate=\\\"number\\\"\\n\\/>\"', 1, '2018-05-16 08:27:50', '2018-08-03 09:52:18', 6, '', 859, '14a1a574-f437-4093-85d0-c4a7361b701e', '', '', '', '', ''),
(2052, '', '', '', '', '', '', '', '', 7, '', 'VARCHAR', '', '', '', 'Weight', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"weight\\\"\\n\\tlabel=\\\"Weight\\\"\\n\\tsize=\\\"40\\\"\\n\\tmaxlength=\\\"6\\\"\\n\\tdescription=\\\"Weight in Kilograms like 95.5 must only be a number!\\\"\\n\\tclass=\\\"text_area\\\"\\n\\tfilter=\\\"FLOAT\\\"\\n\\tvalidate=\\\"number\\\"\\n\\tmessage=\\\"Weight in Kilograms like 95.5 must only be a number!\\\"\\n\\thint=\\\"Weight Here\\\"\\n\\tautocomplete=\\\"on\\\"\\n\\tonchange=\\\"if(!jQuery(this).val().match(\\/^\\\\d+\\\\.\\\\d+$\\/)){if(!jQuery(this).val().match(\\/^\\\\d+$\\/)){jQuery(this).val(\'\')}};\\\"\\n\\/>\"', 1, '2018-05-16 08:41:37', '2018-08-06 11:38:04', 5, '', 859, '413a3217-98eb-4914-b7f2-8519dcc21de4', '', '', '', '', ''),
(2053, '', '', '', '', '', '', '', '', 7, '', 'VARCHAR', '', '', '', ' Circumferences Upper Arm', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"circumferences_upper_arm\\\"\\n\\tlabel=\\\"Upper Arm\\\"\\n\\tsize=\\\"40\\\"\\n\\tmaxlength=\\\"6\\\"\\n\\tdescription=\\\"Enter Patient Upper Arm Circumferences in Centimeters like 36.5 Must only be a number!\\\"\\n\\tclass=\\\"text_area\\\"\\n\\trequired=\\\"true\\\"\\n\\tfilter=\\\"STRING\\\"\\n\\tvalidate=\\\"number\\\"\\n\\tmessage=\\\"Enter Patient Upper Arm Circumferences in Centimeters like 36.5 must only be a number!\\\"\\n\\thint=\\\"Circumference in cm \\\"\\n\\tautocomplete=\\\"on\\\"\\n\\tonchange=\\\"if(!jQuery(this).val().match(\\/^\\\\d+\\\\.\\\\d+$\\/)){if(!jQuery(this).val().match(\\/^\\\\d+$\\/)){jQuery(this).val(\'\')}};\\\"\\n\\/>\"', 1, '2018-05-16 08:45:56', '2018-08-06 11:32:08', 11, '', 859, '2c74c3f5-2bfc-4916-b105-4f5d5e2bea25', '', '', '', '', ''),
(2054, '', '', '', '', '', '', '', '', 7, '', 'VARCHAR', '', '', '', 'Circumferences Chest', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"circumferences_chest\\\"\\n\\tlabel=\\\"Chest\\\"\\n\\tsize=\\\"40\\\"\\n\\tmaxlength=\\\"6\\\"\\n\\tdescription=\\\"Enter Patient Chest Circumferences in Centimeters like 119.5 Must only be a number!\\\"\\n\\tclass=\\\"text_area\\\"\\n\\trequired=\\\"true\\\"\\n\\tfilter=\\\"STRING\\\"\\n\\tvalidate=\\\"number\\\"\\n\\tmessage=\\\"Enter Patient Chest Circumferences in Centimeters like 119.5 Must only be a number!\\\"\\n\\thint=\\\"Circumference in cm \\\"\\n\\tautocomplete=\\\"on\\\"\\n\\tonchange=\\\"if(!jQuery(this).val().match(\\/^\\\\d+\\\\.\\\\d+$\\/)){if(!jQuery(this).val().match(\\/^\\\\d+$\\/)){jQuery(this).val(\'\')}};\\\"\\n\\/>\"', 1, '2018-05-16 08:52:05', '2018-08-06 11:32:17', 6, '', 859, 'e7f41347-d756-40aa-9b9c-74cefc0a9467', '', '', '', '', ''),
(2055, '', '', '', '', '', '', '', '', 7, '', 'VARCHAR', '', '', '', 'Circumferences Middle', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"circumferences_middle\\\"\\n\\tlabel=\\\"Middle\\\"\\n\\tsize=\\\"40\\\"\\n\\tmaxlength=\\\"6\\\"\\n\\tdescription=\\\"Enter Patient Middle Circumferences in Centimeters like 106.5 Must only be a number!\\\"\\n\\tclass=\\\"text_area\\\"\\n\\trequired=\\\"true\\\"\\n\\tfilter=\\\"STRING\\\"\\n\\tvalidate=\\\"number\\\"\\n\\tmessage=\\\"Enter Patient Middle Circumferences in Centimeters like 106.5 Must only be a number!\\\"\\n\\thint=\\\"Circumference in cm \\\"\\n\\tautocomplete=\\\"on\\\"\\n\\tonchange=\\\"if(!jQuery(this).val().match(\\/^\\\\d+\\\\.\\\\d+$\\/)){if(!jQuery(this).val().match(\\/^\\\\d+$\\/)){jQuery(this).val(\'\')}};\\\"\\n\\/>\"', 1, '2018-05-16 08:56:04', '2018-09-09 20:46:29', 6, '', 859, '89d7ea89-05d2-4504-8535-4703d646d8d2', '', '', '', '', ''),
(2056, '', '', '', '', '', '', '', '', 7, '', 'VARCHAR', '', '', '', 'Circumferences Navel', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"circumferences_navel\\\"\\n\\tlabel=\\\"Navel\\\"\\n\\tsize=\\\"40\\\"\\n\\tmaxlength=\\\"6\\\"\\n\\tdescription=\\\"Enter Patient Navel Circumferences in Centimeters like 106.5 Must only be a number!\\\"\\n\\tclass=\\\"text_area\\\"\\n\\trequired=\\\"true\\\"\\n\\tfilter=\\\"STRING\\\"\\n\\tvalidate=\\\"number\\\"\\n\\tmessage=\\\"Enter Patient Navel Circumferences in Centimeters like 106.5 Must only be a number!\\\"\\n\\thint=\\\"Circumference in cm \\\"\\n\\tautocomplete=\\\"on\\\"\\n\\tonchange=\\\"if(!jQuery(this).val().match(\\/^\\\\d+\\\\.\\\\d+$\\/)){if(!jQuery(this).val().match(\\/^\\\\d+$\\/)){jQuery(this).val(\'\')}};\\\"\\n\\/>\"', 1, '2018-05-16 08:58:48', '2018-08-06 11:32:58', 5, '', 859, '363162a1-b965-4d52-b304-753c5948fe80', '', '', '', '', ''),
(2057, '', '', '', '', '', '', '', '', 7, '', 'VARCHAR', '', '', '', 'Circumferences Hip', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"circumferences_hip\\\"\\n\\tlabel=\\\"Hip\\\"\\n\\tsize=\\\"40\\\"\\n\\tmaxlength=\\\"6\\\"\\n\\tdescription=\\\"Enter Patient Hip Circumferences in Centimeters like 115.5 Must only be a number!\\\"\\n\\tclass=\\\"text_area\\\"\\n\\trequired=\\\"true\\\"\\n\\tfilter=\\\"STRING\\\"\\n\\tvalidate=\\\"number\\\"\\n\\tmessage=\\\"Enter Patient Hip Circumferences in Centimeters like 115.5 Must only be a number!\\\"\\n\\thint=\\\"Circumference in cm \\\"\\n\\tautocomplete=\\\"on\\\"\\n\\tonchange=\\\"if(!jQuery(this).val().match(\\/^\\\\d+\\\\.\\\\d+$\\/)){if(!jQuery(this).val().match(\\/^\\\\d+$\\/)){jQuery(this).val(\'\')}};\\\"\\n\\/>\"', 1, '2018-05-16 09:00:47', '2018-08-06 11:33:29', 5, '', 859, 'b459d0b0-6f5b-4945-ad83-a11daba70e0a', '', '', '', '', ''),
(2058, '', '', '', '', '', '', '', '', 7, '', 'VARCHAR', '', '', '', 'Circumferences Thigh', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"circumferences_thigh\\\"\\n\\tlabel=\\\"Thigh\\\"\\n\\tsize=\\\"40\\\"\\n\\tmaxlength=\\\"6\\\"\\n\\tdescription=\\\"Enter Patient Thigh Circumferences in Centimeters like 65.4 Must only be a number!\\\"\\n\\tclass=\\\"text_area\\\"\\n\\trequired=\\\"true\\\"\\n\\tfilter=\\\"STRING\\\"\\n\\tvalidate=\\\"number\\\"\\n\\tmessage=\\\"Enter Patient Thigh Circumferences in Centimeters like 65.4 Must only be a number!\\\"\\n\\thint=\\\"Circumference in cm \\\"\\n\\tautocomplete=\\\"on\\\"\\n\\tonchange=\\\"if(!jQuery(this).val().match(\\/^\\\\d+\\\\.\\\\d+$\\/)){if(!jQuery(this).val().match(\\/^\\\\d+$\\/)){jQuery(this).val(\'\')}};\\\"\\n\\/>\"', 1, '2018-05-16 09:13:07', '2018-08-06 11:34:16', 4, '', 859, '28c1e98a-bc35-4528-99c4-a863e8aa19a6', '', '', '', '', ''),
(2059, '', '', '', '', '', '', '', '', 7, '', 'VARCHAR', '', '', '', 'Circumferences Calf', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"circumferences_calf\\\"\\n\\tlabel=\\\"Calf\\\"\\n\\tsize=\\\"40\\\"\\n\\tmaxlength=\\\"6\\\"\\n\\tdescription=\\\"Enter Patient Calf Circumferences in Centimeters like 42.5 Must only be a number!\\\"\\n\\tclass=\\\"text_area\\\"\\n\\trequired=\\\"true\\\"\\n\\tfilter=\\\"STRING\\\"\\n\\tvalidate=\\\"number\\\"\\n\\tmessage=\\\"Enter Patient Calf Circumferences in Centimeters like 42.5 Must only be a number!\\\"\\n\\thint=\\\"Circumference in cm \\\"\\n\\tautocomplete=\\\"on\\\"\\n\\tonchange=\\\"if(!jQuery(this).val().match(\\/^\\\\d+\\\\.\\\\d+$\\/)){if(!jQuery(this).val().match(\\/^\\\\d+$\\/)){jQuery(this).val(\'\')}};\\\"\\n\\/>\"', 1, '2018-05-16 09:19:52', '2018-08-06 11:34:24', 4, '', 859, 'f8d38edc-b5e1-47fc-b2ca-9b1f328c58a5', '', '', '', '', ''),
(2060, '', '', '', '', '', '', '', '', '', '', '', '', '', '', 'Header Circumferences', 'NOT NULL', '', 14, '\"<field\\n\\ttype=\\\"note\\\"\\n\\tname=\\\"circumferences_header\\\"\\n\\tlabel=\\\"Circumferences\\\"\\n\\tdescription=\\\"Measurements of the circumferences of body segments\\\"\\n\\theading=\\\"h4\\\"\\n\\tclass=\\\"alert alert-success\\\"\\n\\/>\"', 1, '2018-05-16 09:24:24', '2018-08-31 12:35:35', 7, '', 860, '9144ddd9-cae6-407d-9a9f-6ee20f8b1c0f', '', '', '', '', ''),
(2061, '', '', '', '', '', '', '', '', '', '', '', '', '', '', 'Header Skinfolds', 'NOT NULL', '', 14, '\"<field\\n\\ttype=\\\"note\\\"\\n\\tname=\\\"skinfolds_header\\\"\\n\\tlabel=\\\"Skinfolds\\\"\\n\\tdescription=\\\"Using a skinfold caliper to measure subcutaneous fat\\\"\\n\\theading=\\\"h4\\\"\\n\\tclass=\\\"alert alert-success\\\"\\n\\/>\"', 1, '2018-05-16 09:28:44', '2018-08-31 12:35:13', 5, '', 860, '7250f634-514d-469d-9d27-e191b0700b6f', '', '', '', '', ''),
(2062, '', '', '', '', '', '', '', '', 7, '', 'INT', '', '', '', 'Skinfold Tricep', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"tricep\\\"\\n\\tlabel=\\\"Tricep\\\"\\n\\tsize=\\\"40\\\"\\n\\tmaxlength=\\\"6\\\"\\n\\tdescription=\\\"Enter Patient Tricep Skinfold in Millimeters like 20 must only be a number!\\\"\\n\\tclass=\\\"text_area\\\"\\n\\trequired=\\\"true\\\"\\n\\tfilter=\\\"INT\\\"\\n\\tvalidate=\\\"number\\\"\\n\\tmessage=\\\"Enter Patient Tricep Skinfold in Millimeters like 20 Must only be a number!\\\"\\n\\thint=\\\"Skinfold in Millimeters\\\"\\n\\tautocomplete=\\\"on\\\"\\n\\tonchange=\\\"if(!jQuery(this).val().match(\\/^\\\\d+$\\/)){jQuery(this).val(\'\')};\\\"\\n\\/>\"', 1, '2018-05-16 09:33:20', '2018-08-06 11:36:04', 9, '', 859, 'f2dbf7c1-500a-48a0-bbfd-4d516ba1fc0c', '', '', '', '', ''),
(2063, '', '', '', '', '', '', '', '', 7, '', 'INT', '', '', '', 'Skinfold Subscapular', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"subscapular\\\"\\n\\tlabel=\\\"Subscapular\\\"\\n\\tsize=\\\"40\\\"\\n\\tmaxlength=\\\"6\\\"\\n\\tdescription=\\\"Enter Patient Subscapular Skinfold in Millimeters like 20 Must only be a number!\\\"\\n\\tclass=\\\"text_area\\\"\\n\\trequired=\\\"true\\\"\\n\\tfilter=\\\"INT\\\"\\n\\tvalidate=\\\"number\\\"\\n\\tmessage=\\\"Enter Patient Subscapular Skinfold in Millimeters like 20 Must only be a number!\\\"\\n\\thint=\\\"Skinfold in Millimeters\\\"\\n\\tautocomplete=\\\"on\\\"\\n\\tonchange=\\\"if(!jQuery(this).val().match(\\/^\\\\d+$\\/)){jQuery(this).val(\'\')};\\\"\\n\\/>\"', 1, '2018-05-16 09:46:23', '2018-08-06 11:36:11', 7, '', 859, '9d084622-8e23-4376-96b6-7afee3430ff5', '', '', '', '', ''),
(2064, '', '', '', '', '', '', '', '', 7, '', 'INT', '', '', '', 'Skinfold Bicep', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"bicep\\\"\\n\\tlabel=\\\"Bicep\\\"\\n\\tsize=\\\"40\\\"\\n\\tmaxlength=\\\"6\\\"\\n\\tdescription=\\\"Enter Patient Bicep Skinfold in Millimeters like 20 Must only be a number!\\\"\\n\\tclass=\\\"text_area\\\"\\n\\trequired=\\\"true\\\"\\n\\tfilter=\\\"INT\\\"\\n\\tvalidate=\\\"number\\\"\\n\\tmessage=\\\"Enter Patient Bicep Skinfold in Millimeters like 20 Must only be a number!\\\"\\n\\thint=\\\"Skinfold in Millimeters\\\"\\n\\tautocomplete=\\\"on\\\"\\n\\tonchange=\\\"if(!jQuery(this).val().match(\\/^\\\\d+$\\/)){jQuery(this).val(\'\')};\\\"\\n\\/>\"', 1, '2018-05-16 09:47:56', '2018-08-06 11:35:43', 6, '', 859, '754d549c-bbc5-494c-97f9-c120b1dbbe83', '', '', '', '', ''),
(2065, '', '', '', '', '', '', '', '', 7, '', 'INT', '', '', '', 'Skinfold Chest', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"chest\\\"\\n\\tlabel=\\\"Chest\\\"\\n\\tsize=\\\"40\\\"\\n\\tmaxlength=\\\"6\\\"\\n\\tdescription=\\\"Enter Patient Chest Skinfold in Millimeters like 20 Must only be a number!\\\"\\n\\tclass=\\\"text_area\\\"\\n\\trequired=\\\"true\\\"\\n\\tfilter=\\\"INT\\\"\\n\\tvalidate=\\\"number\\\"\\n\\tmessage=\\\"Enter Patient Chest Skinfold in Millimeters like 20 Must only be a number!\\\"\\n\\thint=\\\"Skinfold in Millimeters\\\"\\n\\tautocomplete=\\\"on\\\"\\n\\tonchange=\\\"if(!jQuery(this).val().match(\\/^\\\\d+$\\/)){jQuery(this).val(\'\')};\\\"\\n\\/>\"', 1, '2018-05-16 09:49:17', '2018-08-06 11:36:18', 7, '', 859, '18b063d7-c665-42bd-a695-5f9cbf279c7a', '', '', '', '', ''),
(2066, '', '', '', '', '', '', '', '', 7, '', 'INT', '', '', '', 'Skinfold Mid-Axilla', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"midaxilla\\\"\\n\\tlabel=\\\"Mid-Axilla\\\"\\n\\tsize=\\\"40\\\"\\n\\tmaxlength=\\\"6\\\"\\n\\tdescription=\\\"Enter Patient Mid-Axilla Skinfold in Millimeters like 20 Must only be a number!\\\"\\n\\tclass=\\\"text_area\\\"\\n\\trequired=\\\"true\\\"\\n\\tfilter=\\\"INT\\\"\\n\\tvalidate=\\\"number\\\"\\n\\tmessage=\\\"Enter Patient Mid-Axilla Skinfold in Millimeters like 20 Must only be a number!\\\"\\n\\thint=\\\"Skinfold in Millimeters\\\"\\n\\tautocomplete=\\\"on\\\"\\n\\tonchange=\\\"if(!jQuery(this).val().match(\\/^\\\\d+$\\/)){jQuery(this).val(\'\')};\\\"\\n\\/>\"', 1, '2018-05-16 09:51:02', '2018-08-06 11:36:22', 7, '', 859, '0b8bcae3-4837-419a-ae70-71e029f957ec', '', '', '', '', ''),
(2067, '', '', '', '', '', '', '', '', 7, '', 'INT', '', '', '', 'Skinfold Suprailiac', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"suprailiac\\\"\\n\\tlabel=\\\"Suprailiac\\\"\\n\\tsize=\\\"40\\\"\\n\\tmaxlength=\\\"6\\\"\\n\\tdescription=\\\"Enter Patient Suprailiac Skinfold in Millimeters like 20 Must only be a number!\\\"\\n\\tclass=\\\"text_area\\\"\\n\\trequired=\\\"true\\\"\\n\\tfilter=\\\"INT\\\"\\n\\tvalidate=\\\"number\\\"\\n\\tmessage=\\\"Enter Patient Suprailiac Skinfold in Millimeters like 20 Must only be a number!\\\"\\n\\thint=\\\"Skinfold in Millimeters\\\"\\n\\tautocomplete=\\\"on\\\"\\n\\tonchange=\\\"if(!jQuery(this).val().match(\\/^\\\\d+$\\/)){jQuery(this).val(\'\')};\\\"\\n\\/>\"', 1, '2018-05-16 09:52:18', '2018-08-06 11:36:27', 7, '', 859, '849185ba-e4e3-4af9-a703-6660d2fffbb4', '', '', '', '', ''),
(2068, '', '', '', '', '', '', '', '', 7, '', 'INT', '', '', '', 'Skinfold Abdominal', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"abdominal\\\"\\n\\tlabel=\\\"Abdominal\\\"\\n\\tsize=\\\"40\\\"\\n\\tmaxlength=\\\"6\\\"\\n\\tdescription=\\\"Enter Patient Abdominal Skinfold in Millimeters like 20 Must only be a number!\\\"\\n\\tclass=\\\"text_area\\\"\\n\\trequired=\\\"true\\\"\\n\\tfilter=\\\"INT\\\"\\n\\tvalidate=\\\"number\\\"\\n\\tmessage=\\\"Enter Patient Abdominal Skinfold in Millimeters like 20 Must only be a number!\\\"\\n\\thint=\\\"Skinfold in Millimeters\\\"\\n\\tautocomplete=\\\"on\\\"\\n\\tonchange=\\\"if(!jQuery(this).val().match(\\/^\\\\d+$\\/)){jQuery(this).val(\'\')};\\\"\\n\\/>\"', 1, '2018-05-16 09:54:28', '2018-08-06 11:36:31', 7, '', 859, '12d44f4e-5eda-4a45-a817-4fd17945d62b', '', '', '', '', ''),
(2069, '', '', '', '', '', '', '', '', 7, '', 'INT', '', '', '', 'Skinfold Illaccrest', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"illaccrest\\\"\\n\\tlabel=\\\"Illaccrest\\\"\\n\\tsize=\\\"40\\\"\\n\\tmaxlength=\\\"6\\\"\\n\\tdescription=\\\"Enter Patient Illaccrest Skinfold in Millimeters like 20 Must only be a number!\\\"\\n\\tclass=\\\"text_area\\\"\\n\\trequired=\\\"true\\\"\\n\\tfilter=\\\"INT\\\"\\n\\tvalidate=\\\"number\\\"\\n\\tmessage=\\\"Enter Patient Illaccrest Skinfold in Millimeters like 20 Must only be a number!\\\"\\n\\thint=\\\"Skinfold in Millimeters\\\"\\n\\tautocomplete=\\\"on\\\"\\n\\tonchange=\\\"if(!jQuery(this).val().match(\\/^\\\\d+$\\/)){jQuery(this).val(\'\')};\\\"\\n\\/>\"', 1, '2018-05-16 10:00:26', '2018-08-06 11:36:35', 7, '', 859, 'd00cafa8-bb4f-4355-be79-177fc64fe6d4', '', '', '', '', ''),
(2070, '', '', '', '', '', '', '', '', 7, '', 'INT', '', '', '', 'Skinfold Thigh', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"thigh\\\"\\n\\tlabel=\\\"Thigh\\\"\\n\\tsize=\\\"40\\\"\\n\\tmaxlength=\\\"6\\\"\\n\\tdescription=\\\"Enter Patient Thigh Skinfold in Millimeters like 20 Must only be a number!\\\"\\n\\tclass=\\\"text_area\\\"\\n\\trequired=\\\"true\\\"\\n\\tfilter=\\\"INT\\\"\\n\\tvalidate=\\\"number\\\"\\n\\tmessage=\\\"Enter Patient Thigh Skinfold in Millimeters like 20 Must only be a number!\\\"\\n\\thint=\\\"Skinfold in Millimeters\\\"\\n\\tautocomplete=\\\"on\\\"\\n\\tonchange=\\\"if(!jQuery(this).val().match(\\/^\\\\d+$\\/)){jQuery(this).val(\'\')};\\\"\\n\\/>\"', 1, '2018-05-16 10:02:06', '2018-08-06 11:36:40', 7, '', 859, '9a509c0f-dded-44ac-b1ec-b4d53a65b5b1', '', '', '', '', ''),
(2071, '', '', '', '', '', '', '', '', 7, '', 'INT', '', '', '', 'Skinfold Calf', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"calf\\\"\\n\\tlabel=\\\"Calf\\\"\\n\\tsize=\\\"40\\\"\\n\\tmaxlength=\\\"6\\\"\\n\\tdescription=\\\"Enter Patient Calf Skinfold in Millimeters like 20 Must only be a number!\\\"\\n\\tclass=\\\"text_area\\\"\\n\\trequired=\\\"true\\\"\\n\\tfilter=\\\"INT\\\"\\n\\tvalidate=\\\"number\\\"\\n\\tmessage=\\\"Enter Patient Calf Skinfold in Millimeters like 20 Must only be a number!\\\"\\n\\thint=\\\"Skinfold in Millimeters\\\"\\n\\tautocomplete=\\\"on\\\"\\n\\tonchange=\\\"if(!jQuery(this).val().match(\\/^\\\\d+$\\/)){jQuery(this).val(\'\')};\\\"\\n\\/>\"', 1, '2018-05-16 10:03:24', '2018-08-06 11:36:44', 6, '', 859, '8c1e649a-55f0-45a5-a50c-2456a4c51a65', '', '', '', '', ''),
(2072, '', '', '', '', '', '', '', '', 7, '', 'INT', '', '', '', 'Skinfold Tricep 7', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"tricep_seven\\\"\\n\\tlabel=\\\"Tricep\\\"\\n\\tsize=\\\"40\\\"\\n\\tmaxlength=\\\"6\\\"\\n\\tdescription=\\\"Enter Patient Tricep Skinfold in Millimeters like 20 Must only be a number!\\\"\\n\\tclass=\\\"text_area\\\"\\n\\trequired=\\\"true\\\"\\n\\tfilter=\\\"INT\\\"\\n\\tvalidate=\\\"number\\\"\\n\\tmessage=\\\"Enter Patient Tricep Skinfold in Millimeters like 20 Must only be a number!\\\"\\n\\thint=\\\"Skinfold in Millimeters\\\"\\n\\tautocomplete=\\\"on\\\"\\n\\tonchange=\\\"if(!jQuery(this).val().match(\\/^\\\\d+$\\/)){jQuery(this).val(\'\')};\\\"\\n\\/>\"', -2, '2018-05-16 10:05:21', '2018-05-16 21:21:11', 4, '', 859, 'e750923b-69b2-4e6a-8b78-89bfe0470c59', '', '', '', '', ''),
(2073, '', '', '', '', '', '', '', '', 7, '', 'INT', '', '', '', 'Skinfold Subscapular 7', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"subscapular_seven\\\"\\n\\tlabel=\\\"Subscapular\\\"\\n\\tsize=\\\"40\\\"\\n\\tmaxlength=\\\"6\\\"\\n\\tdescription=\\\"Enter Patient Subscapular Skinfold in Millimeters like 20 Must only be a number!\\\"\\n\\tclass=\\\"text_area\\\"\\n\\trequired=\\\"true\\\"\\n\\tfilter=\\\"INT\\\"\\n\\tvalidate=\\\"number\\\"\\n\\tmessage=\\\"Enter Patient Subscapular Skinfold in Millimeters like 20 Must only be a number!\\\"\\n\\thint=\\\"Skinfold in Millimeters\\\"\\n\\tautocomplete=\\\"on\\\"\\n\\tonchange=\\\"if(!jQuery(this).val().match(\\/^\\\\d+$\\/)){jQuery(this).val(\'\')};\\\"\\n\\/>\"', -2, '2018-05-16 11:04:44', '2018-05-16 21:22:51', 4, '', 859, '60069326-a6f6-4721-b1d7-b087f26409be', '', '', '', '', ''),
(2074, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Subscapular', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"subscapular_seven\\\"\\n\\tlabel=\\\"Subscapular\\\"\\n\\tsize=\\\"40\\\"\\n\\tmaxlength=\\\"\\\"\\n\\tdefault=\\\"Some text\\\"\\n\\tdescription=\\\"Enter some description\\\"\\n\\tclass=\\\"text_area\\\"\\n\\treadonly=\\\"false\\\"\\n\\tdisabled=\\\"false\\\"\\n\\trequired=\\\"true\\\"\\n\\tfilter=\\\"STRING\\\"\\n\\tvalidate=\\\"number\\\"\\n\\tfield=\\\"\\\"\\n\\tmessage=\\\"Enter Patient Subscapular Skinfold in Millimeters like 20 Must only be a number!\\\"\\n\\thint=\\\"Skinfold in Millimeters\\\"\\n\\tautocomplete=\\\"on\\\"\\n\\tshowon=\\\"\\\"\\n\\tonchange=\\\"\\\"\\n\\/>\"', -2, '2018-05-16 11:08:45', '2018-05-16 08:53:56', 1, '', 859, '55088fd4-a8f1-4ebf-89d1-a589dd420be0', '', '', '', '', ''),
(2075, '', '', '', '', '', '', '', '', 7, '', 'INT', '', '', '', 'Skinfold Chest 7', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"chest_seven\\\"\\n\\tlabel=\\\"Chest\\\"\\n\\tsize=\\\"40\\\"\\n\\tmaxlength=\\\"6\\\"\\n\\tdescription=\\\"Enter Patient Chest Skinfold in Millimeters like 20 Must only be a number!\\\"\\n\\tclass=\\\"text_area\\\"\\n\\trequired=\\\"true\\\"\\n\\tfilter=\\\"INT\\\"\\n\\tvalidate=\\\"number\\\"\\n\\tmessage=\\\"Enter Patient Chest Skinfold in Millimeters like 20 Must only be a number!\\\"\\n\\thint=\\\"Skinfold in Millimeters\\\"\\n\\tautocomplete=\\\"on\\\"\\n\\tonchange=\\\"if(!jQuery(this).val().match(\\/^\\\\d+$\\/)){jQuery(this).val(\'\')};\\\"\\n\\/>\"', -2, '2018-05-16 11:32:06', '2018-05-16 21:05:28', 2, '', 859, '91e6a125-4f43-4914-acec-d4d84e5031f4', '', '', '', '', ''),
(2076, '', '', '', '', '', '', '', '', 7, '', 'INT', '', '', '', 'Skinfold Mid-Axilla 7', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"midaxilla_seven\\\"\\n\\tlabel=\\\"Mid-Axilla\\\"\\n\\tsize=\\\"40\\\"\\n\\tmaxlength=\\\"6\\\"\\n\\tdescription=\\\"Enter Patient Mid-Axilla Skinfold in Millimeters like 20 Must only be a number!\\\"\\n\\tclass=\\\"text_area\\\"\\n\\trequired=\\\"true\\\"\\n\\tfilter=\\\"INT\\\"\\n\\tvalidate=\\\"number\\\"\\n\\tmessage=\\\"Enter Patient Mid-Axilla Skinfold in Millimeters like 20 Must only be a number!\\\"\\n\\thint=\\\"Skinfold in Millimeters\\\"\\n\\tautocomplete=\\\"on\\\"\\n\\tonchange=\\\"if(!jQuery(this).val().match(\\/^\\\\d+$\\/)){jQuery(this).val(\'\')};\\\"\\n\\/>\"', -2, '2018-05-16 11:33:42', '2018-05-16 21:06:01', 3, '', 859, '7ac54653-4e00-49c5-b25b-c446021a0c85', '', '', '', '', ''),
(2077, '', '', '', '', '', '', '', '', 7, '', 'INT', '', '', '', 'Skinfold Suprailiac 7', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"suprailiac_seven\\\"\\n\\tlabel=\\\"Suprailiac\\\"\\n\\tsize=\\\"40\\\"\\n\\tmaxlength=\\\"\\\"\\n\\tdescription=\\\"Enter Patient Suprailiac Skinfold in Millimeters like 20 Must only be a number!\\\"\\n\\tclass=\\\"text_area\\\"\\n\\trequired=\\\"true\\\"\\n\\tfilter=\\\"INT\\\"\\n\\tvalidate=\\\"number\\\"\\n\\tmessage=\\\"Enter Patient Suprailiac Skinfold in Millimeters like 20 Must only be a number!\\\"\\n\\thint=\\\"Skinfold in Millimeters\\\"\\n\\tautocomplete=\\\"on\\\"\\n\\tonchange=\\\"if(!jQuery(this).val().match(\\/^\\\\d+$\\/)){jQuery(this).val(\'\')};\\\"\\n\\/>\"', -2, '2018-05-16 11:34:59', '2018-05-16 21:06:25', 2, '', 859, '5341669c-e33b-4433-ae42-b965ddfaf1db', '', '', '', '', ''),
(2078, '', '', '', '', '', '', '', '', 7, '', 'INT', '', '', '', 'Skinfold Abdominal 7', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"abdominal_seven\\\"\\n\\tlabel=\\\"Abdominal\\\"\\n\\tsize=\\\"40\\\"\\n\\tmaxlength=\\\"6\\\"\\n\\tdescription=\\\"Enter Patient Abdominal Skinfold in Millimeters like 20 Must only be a number!\\\"\\n\\tclass=\\\"text_area\\\"\\n\\trequired=\\\"true\\\"\\n\\tfilter=\\\"INT\\\"\\n\\tvalidate=\\\"number\\\"\\n\\tmessage=\\\"Enter Patient Abdominal Skinfold in Millimeters like 20 Must only be a number!\\\"\\n\\thint=\\\"Skinfold in Millimeters\\\"\\n\\tautocomplete=\\\"on\\\"\\n\\tonchange=\\\"if(!jQuery(this).val().match(\\/^\\\\d+$\\/)){jQuery(this).val(\'\')};\\\"\\n\\/>\"', -2, '2018-05-16 11:36:58', '2018-05-16 21:06:42', 2, '', 859, '05a8f077-9b6a-449f-9e53-edaf4d5faff7', '', '', '', '', ''),
(2079, '', '', '', '', '', '', '', '', 7, '', 'INT', '', '', '', 'Skinfold Thigh 7', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"thigh_seven\\\"\\n\\tlabel=\\\"Thigh\\\"\\n\\tsize=\\\"40\\\"\\n\\tmaxlength=\\\"6\\\"\\n\\tdescription=\\\"Enter Patient Thigh Skinfold in Millimeters like 20 Must only be a number!\\\"\\n\\tclass=\\\"text_area\\\"\\n\\trequired=\\\"true\\\"\\n\\tfilter=\\\"INT\\\"\\n\\tvalidate=\\\"number\\\"\\n\\tmessage=\\\"Enter Patient Thigh Skinfold in Millimeters like 20 Must only be a number!\\\"\\n\\thint=\\\"Skinfold in Millimeters\\\"\\n\\tautocomplete=\\\"on\\\"\\n\\tonchange=\\\"if(!jQuery(this).val().match(\\/^\\\\d+$\\/)){jQuery(this).val(\'\')};\\\"\\n\\/>\"', -2, '2018-05-16 11:41:29', '2018-05-16 21:09:53', 2, '', 859, '7464e3e5-1d7e-4ee5-931c-bc959c65087b', '', '', '', '', ''),
(2080, '', '', '', '', '', '', '', '', 7, '', 'INT', '', '', '', 'Skinfold Chest 3M', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"chest_three_m\\\"\\n\\tlabel=\\\"Chest\\\"\\n\\tsize=\\\"40\\\"\\n\\tmaxlength=\\\"6\\\"\\n\\tdescription=\\\"Enter Patient Chest Skinfold in Millimeters like 20 Must only be a number!\\\"\\n\\tclass=\\\"text_area\\\"\\n\\trequired=\\\"true\\\"\\n\\tfilter=\\\"INT\\\"\\n\\tvalidate=\\\"number\\\"\\n\\tmessage=\\\"Enter Patient Chest Skinfold in Millimeters like 20 Must only be a number!\\\"\\n\\thint=\\\"Skinfold in Millimeters\\\"\\n\\tautocomplete=\\\"on\\\"\\n\\tonchange=\\\"if(!jQuery(this).val().match(\\/^\\\\d+$\\/)){jQuery(this).val(\'\')};\\\"\\n\\/>\"', -2, '2018-05-16 11:48:25', '2018-05-16 21:10:54', 3, '', 859, '88450cb9-1796-4fa3-b638-2d78e7bc606e', '', '', '', '', ''),
(2081, '', '', '', '', '', '', '', '', 7, '', 'INT', '', '', '', 'Skinfold Tricep 3M', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"tricep_three_m\\\"\\n\\tlabel=\\\"Tricep\\\"\\n\\tsize=\\\"40\\\"\\n\\tmaxlength=\\\"6\\\"\\n\\tdescription=\\\"Enter Patient Tricep Skinfold in Millimeters like 20 Must only be a number!\\\"\\n\\tclass=\\\"text_area\\\"\\n\\trequired=\\\"true\\\"\\n\\tfilter=\\\"INT\\\"\\n\\tvalidate=\\\"number\\\"\\n\\tmessage=\\\"Enter Patient Tricep Skinfold in Millimeters like 20 Must only be a number!\\\"\\n\\thint=\\\"Skinfold in Millimeters\\\"\\n\\tautocomplete=\\\"on\\\"\\n\\tonchange=\\\"if(!jQuery(this).val().match(\\/^\\\\d+$\\/)){jQuery(this).val(\'\')};\\\"\\n\\/>\"', -2, '2018-05-16 11:49:41', '2018-05-16 21:13:27', 2, '', 859, '02a144a2-1ea1-46d8-9bd9-7ba7e2e8a800', '', '', '', '', ''),
(2082, '', '', '', '', '', '', '', '', 7, '', 'INT', '', '', '', 'Skinfold Subscapular 3M', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"subscapular_three_m\\\"\\n\\tlabel=\\\"Subscapular\\\"\\n\\tsize=\\\"40\\\"\\n\\tmaxlength=\\\"6\\\"\\n\\tdescription=\\\"Enter Patient Subscapular Skinfold in Millimeters like 20 Must only be a number!\\\"\\n\\tclass=\\\"text_area\\\"\\n\\trequired=\\\"true\\\"\\n\\tfilter=\\\"INT\\\"\\n\\tvalidate=\\\"number\\\"\\n\\tmessage=\\\"Enter Patient Subscapular Skinfold in Millimeters like 20 Must only be a number!\\\"\\n\\thint=\\\"Skinfold in Millimeters\\\"\\n\\tautocomplete=\\\"on\\\"\\n\\tonchange=\\\"if(!jQuery(this).val().match(\\/^\\\\d+$\\/)){jQuery(this).val(\'\')};\\\"\\n\\/>\"', -2, '2018-05-16 11:50:56', '2018-05-16 21:15:04', 2, '', 859, 'e02adf51-0265-4306-bcf4-d9318f2b5a7f', '', '', '', '', ''),
(2083, '', '', '', '', '', '', '', '', 7, '', 'INT', '', '', '', 'Skinfold Tricep 3F', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"tricep_three_f\\\"\\n\\tlabel=\\\"Tricep\\\"\\n\\tsize=\\\"40\\\"\\n\\tmaxlength=\\\"6\\\"\\n\\tdescription=\\\"Enter Patient Tricep Skinfold in Millimeters like 20 Must only be a number!\\\"\\n\\tclass=\\\"text_area\\\"\\n\\trequired=\\\"true\\\"\\n\\tfilter=\\\"INT\\\"\\n\\tvalidate=\\\"number\\\"\\n\\tmessage=\\\"Enter Patient Tricep Skinfold in Millimeters like 20 Must only be a number!\\\"\\n\\thint=\\\"Skinfold in Millimeters\\\"\\n\\tautocomplete=\\\"on\\\"\\n\\tonchange=\\\"if(!jQuery(this).val().match(\\/^\\\\d+$\\/)){jQuery(this).val(\'\')};\\\"\\n\\/>\"', -2, '2018-05-16 11:52:38', '2018-05-16 21:17:03', 2, '', 859, 'd9d929b6-bc91-4cd7-95d0-314f7dc0cc71', '', '', '', '', ''),
(2084, '', '', '', '', '', '', '', '', 7, '', 'INT', '', '', '', 'Skinfold Suprailiac 3F', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"suprailiac_three_f\\\"\\n\\tlabel=\\\"Suprailiac\\\"\\n\\tsize=\\\"40\\\"\\n\\tmaxlength=\\\"6\\\"\\n\\tdescription=\\\"Enter Patient Suprailiac Skinfold in Millimeters like 20 Must only be a number!\\\"\\n\\tclass=\\\"text_area\\\"\\n\\trequired=\\\"true\\\"\\n\\tfilter=\\\"INT\\\"\\n\\tvalidate=\\\"number\\\"\\n\\tmessage=\\\"Enter Patient Suprailiac Skinfold in Millimeters like 20 Must only be a number!\\\"\\n\\thint=\\\"Skinfold in Millimeters\\\"\\n\\tautocomplete=\\\"on\\\"\\n\\tonchange=\\\"if(!jQuery(this).val().match(\\/^\\\\d+$\\/)){jQuery(this).val(\'\')};\\\"\\n\\/>\"', -2, '2018-05-16 11:53:58', '2018-05-16 21:18:06', 2, '', 859, '0d5f6a72-ce7d-4d8c-aa1e-2a3a85b08a99', '', '', '', '', ''),
(2085, '', '', '', '', '', '', '', '', 7, '', 'INT', '', '', '', 'Skinfold Abdominal 3F', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"abdominal_three_f\\\"\\n\\tlabel=\\\"Abdominal\\\"\\n\\tsize=\\\"40\\\"\\n\\tmaxlength=\\\"6\\\"\\n\\tdescription=\\\"Enter Patient Abdominal Skinfold in Millimeters like 20 Must only be a number!\\\"\\n\\tclass=\\\"text_area\\\"\\n\\trequired=\\\"true\\\"\\n\\tfilter=\\\"INT\\\"\\n\\tvalidate=\\\"number\\\"\\n\\tmessage=\\\"Enter Patient Abdominal Skinfold in Millimeters like 20 Must only be a number!\\\"\\n\\thint=\\\"Skinfold in Millimeters\\\"\\n\\tautocomplete=\\\"on\\\"\\n\\tonchange=\\\"if(!jQuery(this).val().match(\\/^\\\\d+$\\/)){jQuery(this).val(\'\')};\\\"\\n\\/>\"', -2, '2018-05-16 11:55:47', '2018-05-16 21:19:58', 2, '', 859, '806a32a2-c531-4fb6-bfea-7e46dc5510f0', '', '', '', '', ''),
(2086, '', '', '', '', '', '', '', '', 7, '', 'INT', '', '', '', 'Calculator Options', 'NOT NULL', '', 11, '\"<field\\n\\ttype=\\\"list\\\"\\n\\tname=\\\"calculator_selection\\\"\\n\\tlabel=\\\"Options\\\"\\n\\tdescription=\\\"Select the body fat calculator you want to use.\\\"\\n\\tmessage=\\\"\\\"\\n\\tclass=\\\"list_class\\\"\\n\\tmultiple=\\\"false\\\"\\n\\tfilter=\\\"INT\\\"\\n\\trequired=\\\"true\\\"\\n\\tvalidate=\\\"number\\\"\\n\\toption=\\\"10|10 Site Skinfolds,7|7 Site Skinfolds,6|6 Site Skinfolds,3|3 Site Skinfolds,1|US Navy\\\"\\n\\tdefault=\\\"7\\\"\\n\\/>\"', 1, '2018-05-16 12:12:04', '2020-08-10 23:36:25', 7, '', 859, 'd64df66a-a666-4e52-bfcb-e33f57f8f218', '', '', '', '', ''),
(2087, '', '', '', '', '', '', '', '', 7, '', 'INT', 2, '', '', 'Fitness Test Method', 'NOT NULL', '', 11, '\"<field\\n\\ttype=\\\"list\\\"\\n\\tname=\\\"method\\\"\\n\\tlabel=\\\"Test Method\\\"\\n\\tdescription=\\\"Choose a test method\\\"\\n\\tmessage=\\\"Invalid Input\\\"\\n\\tclass=\\\"list_class\\\"\\n\\tmultiple=\\\"false\\\"\\n\\trequired=\\\"true\\\"\\n\\toption=\\\"|Select an option,1|YMCA Cycle Ergo-meter Test,2|Bruce Protocol,3|12 Minute Cooper Treadmill Test,4|Step Test,5|Blood Glucose Test,0|Restful (none)\\\"\\n\\/>\"', 1, '2018-05-17 09:40:13', '2020-01-30 16:49:36', 6, '', 861, '5907e4d0-a449-41dd-b8cf-e3a60c08c36d', '', '', '', '', ''),
(2088, '', '', '', '', '', '', '', '', 7, '', 'INT', '', '', '', 'YMCA Stage Selection', 'NOT NULL', '', 11, '\"<field\\n\\ttype=\\\"list\\\"\\n\\tname=\\\"stage\\\"\\n\\tlabel=\\\"Stage\\\"\\n\\tdescription=\\\"Selection\\\"\\n\\tclass=\\\"list_class\\\"\\n\\trequired=\\\"true\\\"\\n\\tmultiple=\\\"false\\\"\\n\\toption=\\\"0|Rest,25|@ 25 Watt,50|@ 50 Watt,75|@ 75 Watt,100|@ 100 Watt,125|@ 125 Watt,150|@ 150 Watt,175|@ 175 Watt,200|@ 200 Watt,225|@ 225 Watt,250|@ 250 Watt,275|@ 275 Watt,300|@ 300 Watt,1|1 min rest,2|2 min rest,3|3 min rest\\\"\\n\\/>\"', 1, '2018-05-17 10:14:09', '2019-07-09 21:35:17', 7, '', 861, '203f3517-28dd-4625-b545-9f454a35eadc', '', '', '', '', ''),
(2089, '', '', '', '', '', '', '', '', 50, '', 'VARCHAR', '', '', '', 'YMCA Selection Third', 'NOT NULL', '', 11, '\"<field\\n\\ttype=\\\"list\\\"\\n\\tname=\\\"ymca_selection_third\\\"\\n\\tlabel=\\\"Next Stage\\\"\\n\\tdescription=\\\"Choose a the next stage\\\"\\n\\tmessage=\\\"Invalid Input\\\"\\n\\tclass=\\\"list_class\\\"\\n\\tmultiple=\\\"false\\\"\\n\\trequired=\\\"true\\\"\\n\\tvalidate=\\\"options\\\"\\n\\toption=\\\"0|3rd Stage @ 75 Watt,\\r\\n1|4th Stage @ 100 Watt,\\r\\n2|5th Stage @ 125 Watt,\\r\\n3|6th Stage @ 150 Watt,\\r\\n4|7th Stage @ 175 Watt,\\r\\n5|8th Stage @ 200 Watt,\\r\\n6|9th Stage @ 225 Watt,\\r\\n7|10th Stage @ 250 Watt,\\r\\n8|11th Stage @ 275 Watt,\\r\\n9|12th Stage @ 300 Watt,\\r\\n10|Final Stage (3 min rest)\\\"\\n\\tdefault=\\\"Please Select\\\"\\n\\tonchange=\\\"\\\"\\n\\/>\"', -2, '2018-05-17 10:19:44', '0000-00-00 00:00:00', 1, '', 861, 'c643817e-ea33-4c53-9035-d16e5c0d4e1e', '', '', '', '', ''),
(2090, '', '', '', '', '', '', '', '', 50, '', 'VARCHAR', '', '', '', 'YMCA Selection Fourth', 'NOT NULL', '', 11, '\"<field\\n\\ttype=\\\"list\\\"\\n\\tname=\\\"ymca_selection_fourth\\\"\\n\\tlabel=\\\"Next Stage\\\"\\n\\tdescription=\\\"Choose a the next stage\\\"\\n\\tmessage=\\\"Invalid Input\\\"\\n\\tclass=\\\"list_class\\\"\\n\\tmultiple=\\\"false\\\"\\n\\trequired=\\\"true\\\"\\n\\tvalidate=\\\"options\\\"\\n\\toption=\\\"0|4th Stage @ 100 Watt,\\r\\n1|5th Stage @ 125 Watt,\\r\\n2|6th Stage @ 150 Watt,\\r\\n3|7th Stage @ 175 Watt,\\r\\n4|8th Stage @ 200 Watt,\\r\\n5|9th Stage @ 225 Watt,\\r\\n6|10th Stage @ 250 Watt,\\r\\n7|11th Stage @ 275 Watt,\\r\\n8|12th Stage @ 300 Watt,\\r\\n9|Final Stage (3 min rest)\\\"\\n\\tdefault=\\\"Please Select\\\"\\n\\tonchange=\\\"\\\"\\n\\/>\"', -2, '2018-05-17 10:21:30', '0000-00-00 00:00:00', 1, '', 861, 'e342427d-4bc7-4dd1-93d6-4647c8ea74d3', '', '', '', '', ''),
(2091, '', '', '', '', '', '', '', '', 50, '', 'VARCHAR', '', '', '', 'YMCA Selection Fifth', 'NOT NULL', '', 11, '\"<field\\n\\ttype=\\\"list\\\"\\n\\tname=\\\"ymca_selection_fifth\\\"\\n\\tlabel=\\\"Next Stage\\\"\\n\\tdescription=\\\"Choose a the next stage\\\"\\n\\tmessage=\\\"Invalid Input\\\"\\n\\tclass=\\\"list_class\\\"\\n\\tmultiple=\\\"false\\\"\\n\\trequired=\\\"true\\\"\\n\\tvalidate=\\\"options\\\"\\n\\toption=\\\"0|5th Stage @ 125 Watt,\\r\\n1|6th Stage @ 150 Watt,\\r\\n2|7th Stage @ 175 Watt,\\r\\n3|8th Stage @ 200 Watt,\\r\\n4|9th Stage @ 225 Watt,\\r\\n5|10th Stage @ 250 Watt,\\r\\n6|11th Stage @ 275 Watt,\\r\\n7|12th Stage @ 300 Watt,\\r\\n8|Final Stage (3 min rest)\\\"\\n\\tdefault=\\\"Please Select\\\"\\n\\tonchange=\\\"\\\"\\n\\/>\"', -2, '2018-05-17 10:23:38', '0000-00-00 00:00:00', 1, '', 861, 'edf3cf81-cac5-43cd-ada7-cccc8e8de529', '', '', '', '', ''),
(2092, '', '', '', '', '', '', '', '', 50, '', 'VARCHAR', '', '', '', 'YMCA Selection Second', 'NOT NULL', '', 11, '\"<field\\n\\ttype=\\\"list\\\"\\n\\tname=\\\"ymca_selection_second\\\"\\n\\tlabel=\\\"Next Stage\\\"\\n\\tdescription=\\\"Choose a the next stage\\\"\\n\\tmessage=\\\"Invalid Input\\\"\\n\\tclass=\\\"list_class\\\"\\n\\tmultiple=\\\"false\\\"\\n\\trequired=\\\"true\\\"\\n\\tvalidate=\\\"options\\\"\\n\\toption=\\\"2|2nd Stage @ 50 Watt,3|3rd Stage @ 75 Watt,4|4th Stage @ 100 Watt,5|5th Stage @ 125 Watt,6|6th Stage @ 150 Watt,7|7th Stage @ 175 Watt,8|8th Stage @ 200 Watt,9|9th Stage @ 225 Watt,10|10th Stage @ 250 Watt,11|11th Stage @ 275 Watt,12|12th Stage @ 300 Watt,13|Final Stage (3 min rest)\\\"\\n\\tdefault=\\\"Please Select\\\"\\n\\tonchange=\\\"\\\"\\n\\/>\"', -2, '2018-05-17 10:27:23', '2018-10-09 20:37:26', 2, '', 861, '28b8ecb5-e21d-4c5a-9078-d3fa340aa2f7', '', '', '', '', ''),
(2093, '', '', '', '', '', '', '', '', 50, '', 'VARCHAR', '', '', '', 'YMCA Selection Sixth', 'NOT NULL', '', 11, '\"<field\\n\\ttype=\\\"list\\\"\\n\\tname=\\\"ymca_selection_sixth\\\"\\n\\tlabel=\\\"Next Stage\\\"\\n\\tdescription=\\\"Choose a the next stage\\\"\\n\\tmessage=\\\"Invalid Input\\\"\\n\\tclass=\\\"list_class\\\"\\n\\tmultiple=\\\"false\\\"\\n\\trequired=\\\"true\\\"\\n\\tvalidate=\\\"options\\\"\\n\\toption=\\\"0|6th Stage @ 150 Watt,\\r\\n1|7th Stage @ 175 Watt,\\r\\n2|8th Stage @ 200 Watt,\\r\\n3|9th Stage @ 225 Watt,\\r\\n4|10th Stage @ 250 Watt,\\r\\n5|11th Stage @ 275 Watt,\\r\\n6|12th Stage @ 300 Watt,\\r\\n7|Final Stage (3 min rest)\\\"\\n\\tdefault=\\\"Please Select\\\"\\n\\tonchange=\\\"\\\"\\n\\/>\"', -2, '2018-05-17 10:28:43', '0000-00-00 00:00:00', 1, '', 861, '2a574288-d82f-4c37-ad13-250c4f5f109d', '', '', '', '', ''),
(2094, '', '', '', '', '', '', '', '', 50, '', 'VARCHAR', '', '', '', 'YMCA Selection Seventh', 'NOT NULL', '', 11, '\"<field\\n\\ttype=\\\"list\\\"\\n\\tname=\\\"ymca_selection_seventh\\\"\\n\\tlabel=\\\"Next Stage\\\"\\n\\tdescription=\\\"Choose a the next stage\\\"\\n\\tmessage=\\\"Invalid Input\\\"\\n\\tclass=\\\"list_class\\\"\\n\\tmultiple=\\\"false\\\"\\n\\trequired=\\\"true\\\"\\n\\tvalidate=\\\"options\\\"\\n\\toption=\\\"0|7th Stage @ 175 Watt,\\r\\n1|8th Stage @ 200 Watt,\\r\\n2|9th Stage @ 225 Watt,\\r\\n3|10th Stage @ 250 Watt,\\r\\n4|11th Stage @ 275 Watt,\\r\\n5|12th Stage @ 300 Watt,\\r\\n6|Final Stage (3 min rest)\\\"\\n\\tdefault=\\\"Please Select\\\"\\n\\tonchange=\\\"\\\"\\n\\/>\"', -2, '2018-05-17 10:30:18', '0000-00-00 00:00:00', 1, '', 861, '943ab513-299e-4524-864f-922f0a2caa58', '', '', '', '', ''),
(2095, '', '', '', '', '', '', '', '', 50, '', 'VARCHAR', '', '', '', 'YMCA Selection Eighth', 'NOT NULL', '', 11, '\"<field\\n\\ttype=\\\"list\\\"\\n\\tname=\\\"ymca_selection_eighth\\\"\\n\\tlabel=\\\"Next Stage\\\"\\n\\tdescription=\\\"Choose a the next stage\\\"\\n\\tmessage=\\\"Invalid Input\\\"\\n\\tclass=\\\"list_class\\\"\\n\\tmultiple=\\\"false\\\"\\n\\trequired=\\\"true\\\"\\n\\tvalidate=\\\"options\\\"\\n\\toption=\\\"0|8th Stage @ 200 Watt,\\r\\n1|9th Stage @ 225 Watt,\\r\\n2|10th Stage @ 250 Watt,\\r\\n3|11th Stage @ 275 Watt,\\r\\n4|12th Stage @ 300 Watt,\\r\\n5|Final Stage (3 min rest)\\\"\\n\\tdefault=\\\"Please Select\\\"\\n\\tonchange=\\\"\\\"\\n\\/>\"', -2, '2018-05-17 10:32:23', '0000-00-00 00:00:00', 1, '', 861, '775b6bc3-9e25-42e1-87ea-17fab38a6d88', '', '', '', '', ''),
(2096, '', '', '', '', '', '', '', '', 50, '', 'VARCHAR', '', '', '', 'YMCA Selection Ninth', 'NOT NULL', '', 11, '\"<field\\n\\ttype=\\\"list\\\"\\n\\tname=\\\"ymca_selection_ninth\\\"\\n\\tlabel=\\\"Next Stage\\\"\\n\\tdescription=\\\"Choose a the next stage\\\"\\n\\tmessage=\\\"Invalid Input\\\"\\n\\tclass=\\\"list_class\\\"\\n\\tmultiple=\\\"false\\\"\\n\\trequired=\\\"true\\\"\\n\\tvalidate=\\\"options\\\"\\n\\toption=\\\"0|9th Stage @ 225 Watt,\\r\\n1|10th Stage @ 250 Watt,\\r\\n2|11th Stage @ 275 Watt,\\r\\n3|12th Stage @ 300 Watt,\\r\\n4|Final Stage (3 min rest)\\\"\\n\\tdefault=\\\"Please Select\\\"\\n\\tonchange=\\\"\\\"\\n\\/>\"', -2, '2018-05-17 10:35:45', '2018-05-17 11:34:03', 2, '', 861, '22d5a105-1e1d-4f32-925c-f295554aa7ef', '', '', '', '', ''),
(2097, '', '', '', '', '', '', '', '', 50, '', 'VARCHAR', '', '', '', 'YMCA Selection Tenth', 'NOT NULL', '', 11, '\"<field\\n\\ttype=\\\"list\\\"\\n\\tname=\\\"ymca_selection_tenth\\\"\\n\\tlabel=\\\"Next Stage\\\"\\n\\tdescription=\\\"Choose a the next stage\\\"\\n\\tmessage=\\\"Invalid Input\\\"\\n\\tclass=\\\"list_class\\\"\\n\\tmultiple=\\\"false\\\"\\n\\trequired=\\\"true\\\"\\n\\tvalidate=\\\"options\\\"\\n\\toption=\\\"0|10th Stage @ 250 Watt,\\r\\n1|11th Stage @ 275 Watt,\\r\\n2|12th Stage @ 300 Watt,\\r\\n3|Final Stage (3 min rest)\\\"\\n\\tdefault=\\\"Please Select\\\"\\n\\tonchange=\\\"\\\"\\n\\/>\"', -2, '2018-05-17 10:37:01', '0000-00-00 00:00:00', 1, '', 861, '25bd63cf-29fa-4b1f-8e44-5969e59b1be5', '', '', '', '', ''),
(2098, '', '', '', '', '', '', '', '', 50, '', 'VARCHAR', '', '', '', 'YMCA Selection Eleventh', 'NOT NULL', '', 11, '\"<field\\n\\ttype=\\\"list\\\"\\n\\tname=\\\"ymca_selection_eleventh\\\"\\n\\tlabel=\\\"Next Stage\\\"\\n\\tdescription=\\\"Choose a the next stage\\\"\\n\\tmessage=\\\"Invalid Input\\\"\\n\\tclass=\\\"list_class\\\"\\n\\tmultiple=\\\"false\\\"\\n\\trequired=\\\"true\\\"\\n\\tvalidate=\\\"options\\\"\\n\\toption=\\\"0|11th Stage @ 275 Watt,\\r\\n1|12th Stage @ 300 Watt,\\r\\n2|Final Stage (3 min rest)\\\"\\n\\tdefault=\\\"Please Select\\\"\\n\\tonchange=\\\"\\\"\\n\\/>\"', -2, '2018-05-17 10:39:08', '0000-00-00 00:00:00', 1, '', 861, 'eb032858-f876-472e-8a19-d5d1cf5c0e33', '', '', '', '', ''),
(2099, '', '', '', '', '', '', '', '', 50, '', 'VARCHAR', '', '', '', 'YMCA Selection Twelfth', 'NOT NULL', '', 11, '\"<field\\n\\ttype=\\\"list\\\"\\n\\tname=\\\"ymca_selection_twelfth\\\"\\n\\tlabel=\\\"Next Stage\\\"\\n\\tdescription=\\\"Choose a the next stage\\\"\\n\\tmessage=\\\"Invalid Input\\\"\\n\\tclass=\\\"list_class\\\"\\n\\tmultiple=\\\"false\\\"\\n\\trequired=\\\"true\\\"\\n\\tvalidate=\\\"options\\\"\\n\\toption=\\\"0|12th Stage @ 300 Watt,\\r\\n1|Final Stage (3 min rest)\\\"\\n\\tdefault=\\\"Please Select\\\"\\n\\tonchange=\\\"\\\"\\n\\/>\"', -2, '2018-05-17 10:40:33', '2018-05-17 11:34:38', 2, '', 861, 'c7d19fae-d264-4f0b-9fbd-43a16d658e07', '', '', '', '', ''),
(2100, '', '', '', '', '', '', '', '', 10, '', 'INT', '', '', '', 'Cooper Distance Covered', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"cooper_distance\\\"\\n\\tlabel=\\\"Distance Covered\\\"\\n\\tsize=\\\"40\\\"\\n\\tmaxlength=\\\"8\\\"\\n\\tdescription=\\\"Enter Distance Covered in Meter like 3600 must only be a number!\\\"\\n\\tclass=\\\"text_area\\\"\\n\\trequired=\\\"true\\\"\\n\\tfilter=\\\"INT\\\"\\n\\thint=\\\"Enter Distance Covered in Meter like 3600\\\"\\n\\tautocomplete=\\\"on\\\"\\n\\tonchange=\\\"if(!jQuery(this).val().match(\\/^\\\\d+$\\/)){jQuery(this).val(\'\')};\\\"\\n\\/>\"', 1, '2018-05-17 10:41:38', '2018-10-09 21:24:36', 2, '', 861, 'e94fe4f7-8084-4682-b5bd-9ab6a9774fbc', '', '', '', '', ''),
(2101, '', '', '', '', '', '', '', '', '', '', '', '', '', '', 'Rest', 'NOT NULL', '', 14, '\"<field\\n\\ttype=\\\"note\\\"\\n\\tname=\\\"rest\\\"\\n\\tlabel=\\\"Rest\\\"\\n\\theading=\\\"h4\\\"\\n\\tclass=\\\"alert\\\"\\n\\tshowon=\\\"\\\"\\n\\/>\"', -2, '2018-05-17 10:45:12', '0000-00-00 00:00:00', 1, '', 861, '56c14134-f9d6-43c5-8008-9ed3903dbae8', '', '', '', '', ''),
(2102, '', '', '', '', '', '', '', '', 7, '', 'INT', '', '', '', 'Time', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"time\\\"\\n\\tlabel=\\\"Time\\\"\\n\\tsize=\\\"40\\\"\\n\\tmaxlength=\\\"6\\\"\\n\\tdescription=\\\"Minutes like 54 must only be a number!\\\"\\n\\tclass=\\\"text_area\\\"\\n\\tfilter=\\\"INT\\\"\\n\\thint=\\\"Patient Time in Minutes like 54\\\"\\n\\tautocomplete=\\\"on\\\"\\n\\tonchange=\\\"if(!jQuery(this).val().match(\\/^\\\\d+$\\/)){jQuery(this).val(\'\')};\\\"\\n\\/>\"', 1, '2018-05-17 10:49:11', '2018-10-09 21:17:06', 3, '', 861, 'c40b4d3b-acf5-4032-beb1-d8c307413e3d', '', '', '', '', ''),
(2103, '', '', '', '', '', '', '', '', '', '', '', '', '', '', 'YMCA Stage 2nd', 'NOT NULL', '', 14, '\"<field\\n\\ttype=\\\"note\\\"\\n\\tname=\\\"ymca_stage_second\\\"\\n\\tlabel=\\\"2nd Stage @ 50 Watt\\\"\\n\\theading=\\\"h4\\\"\\n\\tclass=\\\"alert\\\"\\n\\tshowon=\\\"\\\"\\n\\/>\"', -2, '2018-05-17 10:50:27', '0000-00-00 00:00:00', 1, '', 861, '5be645ad-00f9-40f7-a127-a7a683929d23', '', '', '', '', ''),
(2104, '', '', '', '', '', '', '', '', '', '', '', '', '', '', 'YMCA Stage 3rd', 'NOT NULL', '', 14, '\"<field\\n\\ttype=\\\"note\\\"\\n\\tname=\\\"ymca_stage_third\\\"\\n\\tlabel=\\\"3rd Stage @ 75 Watt\\\"\\n\\theading=\\\"h4\\\"\\n\\tclass=\\\"alert\\\"\\n\\tshowon=\\\"\\\"\\n\\/>\"', -2, '2018-05-17 10:51:01', '0000-00-00 00:00:00', 1, '', 861, '6a0e038f-1692-4b64-936f-7d102346b800', '', '', '', '', ''),
(2105, '', '', '', '', '', '', '', '', '', '', '', '', '', '', 'YMCA Stage 4th', 'NOT NULL', '', 14, '\"<field\\n\\ttype=\\\"note\\\"\\n\\tname=\\\"ymca_stage_fourth\\\"\\n\\tlabel=\\\"4th Stage @ 100 Watt\\\"\\n\\theading=\\\"h4\\\"\\n\\tclass=\\\"alert\\\"\\n\\tshowon=\\\"\\\"\\n\\/>\"', -2, '2018-05-17 10:51:35', '0000-00-00 00:00:00', 1, '', 861, 'c6728d84-4474-4c76-9672-0a7937db85bb', '', '', '', '', ''),
(2106, '', '', '', '', '', '', '', '', '', '', '', '', '', '', 'YMCA Stage 5th', 'NOT NULL', '', 14, '\"<field\\n\\ttype=\\\"note\\\"\\n\\tname=\\\"ymca_stage_fifth\\\"\\n\\tlabel=\\\"5th Stage @ 125 Watt\\\"\\n\\theading=\\\"h4\\\"\\n\\tclass=\\\"alert\\\"\\n\\tshowon=\\\"\\\"\\n\\/>\"', -2, '2018-05-17 10:52:17', '0000-00-00 00:00:00', 1, '', 861, 'a5a60fe9-e159-4281-892b-74bc7c24c9a3', '', '', '', '', ''),
(2107, '', '', '', '', '', '', '', '', '', '', '', '', '', '', 'YMCA Stage 6th', 'NOT NULL', '', 14, '\"<field\\n\\ttype=\\\"note\\\"\\n\\tname=\\\"ymca_stage_sixth\\\"\\n\\tlabel=\\\"6th Stage @ 150 Watt\\\"\\n\\theading=\\\"h4\\\"\\n\\tclass=\\\"alert\\\"\\n\\tshowon=\\\"\\\"\\n\\/>\"', -2, '2018-05-17 10:53:03', '0000-00-00 00:00:00', 1, '', 861, '8aedaba0-5b97-42f8-a9d2-49c1968afda4', '', '', '', '', ''),
(2108, '', '', '', '', '', '', '', '', '', '', '', '', '', '', 'YMCA Stage 7th', 'NOT NULL', '', 14, '\"<field\\n\\ttype=\\\"note\\\"\\n\\tname=\\\"ymca_stage_seventh\\\"\\n\\tlabel=\\\"7th Stage @ 175 Watt\\\"\\n\\theading=\\\"h4\\\"\\n\\tclass=\\\"alert\\\"\\n\\tshowon=\\\"\\\"\\n\\/>\"', -2, '2018-05-17 10:53:39', '0000-00-00 00:00:00', 1, '', 861, '6e62e844-3f2e-4d45-a8ee-82535de08af8', '', '', '', '', ''),
(2109, '', '', '', '', '', '', '', '', '', '', '', '', '', '', 'YMCA Stage 8th', 'NOT NULL', '', 14, '\"<field\\n\\ttype=\\\"note\\\"\\n\\tname=\\\"ymca_stage_eighth\\\"\\n\\tlabel=\\\"8th Stage @ 200 Watt\\\"\\n\\theading=\\\"h4\\\"\\n\\tclass=\\\"alert\\\"\\n\\tshowon=\\\"\\\"\\n\\/>\"', -2, '2018-05-17 10:54:14', '0000-00-00 00:00:00', 1, '', 861, 'd3cd9214-e3f0-4e77-bddc-87ca942ef4fc', '', '', '', '', ''),
(2110, '', '', '', '', '', '', '', '', '', '', '', '', '', '', 'YMCA Stage 9th', 'NOT NULL', '', 14, '\"<field\\n\\ttype=\\\"note\\\"\\n\\tname=\\\"ymca_stage_ninth\\\"\\n\\tlabel=\\\"9th Stage @ 225 Watt\\\"\\n\\theading=\\\"h4\\\"\\n\\tclass=\\\"alert\\\"\\n\\tshowon=\\\"\\\"\\n\\/>\"', -2, '2018-05-17 10:55:48', '0000-00-00 00:00:00', 1, '', 861, 'f97af826-ce03-4cfb-a4a8-94bcd71fba6f', '', '', '', '', ''),
(2111, '', '', '', '', '', '', '', '', '', '', '', '', '', '', 'YMCA Stage 10th', 'NOT NULL', '', 14, '\"<field\\n\\ttype=\\\"note\\\"\\n\\tname=\\\"ymca_stage_tenth\\\"\\n\\tlabel=\\\"10th Stage @ 250 Watt\\\"\\n\\theading=\\\"h4\\\"\\n\\tclass=\\\"alert\\\"\\n\\tshowon=\\\"\\\"\\n\\/>\"', -2, '2018-05-17 10:56:19', '0000-00-00 00:00:00', 1, '', 861, '1ac4ff23-bf42-4967-97db-b85bd1318336', '', '', '', '', ''),
(2112, '', '', '', '', '', '', '', '', '', '', '', '', '', '', 'YMCA Stage 11th', 'NOT NULL', '', 14, '\"<field\\n\\ttype=\\\"note\\\"\\n\\tname=\\\"ymca_stage_eleventh\\\"\\n\\tlabel=\\\"11th Stage @ 275 Watt\\\"\\n\\theading=\\\"h4\\\"\\n\\tclass=\\\"alert\\\"\\n\\tshowon=\\\"\\\"\\n\\/>\"', -2, '2018-05-17 10:56:52', '0000-00-00 00:00:00', 1, '', 861, '373f677a-b0f3-43d4-bff1-e6732192dd5a', '', '', '', '', ''),
(2113, '', '', '', '', '', '', '', '', '', '', '', '', '', '', 'YMCA Stage 12th', 'NOT NULL', '', 14, '\"<field\\n\\ttype=\\\"note\\\"\\n\\tname=\\\"ymca_stage_twelfth\\\"\\n\\tlabel=\\\"12th Stage @ 300 Watt\\\"\\n\\theading=\\\"h4\\\"\\n\\tclass=\\\"alert\\\"\\n\\tshowon=\\\"\\\"\\n\\/>\"', -2, '2018-05-17 11:01:07', '0000-00-00 00:00:00', 1, '', 861, '889b59eb-a1e3-47f6-94b3-72be92a5340a', '', '', '', '', ''),
(2114, '', '', '', '', '', '', '', '', '', '', '', '', '', '', 'Rest Final', 'NOT NULL', '', 14, '\"<field\\n\\ttype=\\\"note\\\"\\n\\tname=\\\"rest_final\\\"\\n\\tlabel=\\\"Final Stage (3 min rest)\\\"\\n\\theading=\\\"h4\\\"\\n\\tclass=\\\"alert\\\"\\n\\tshowon=\\\"\\\"\\n\\/>\"', -2, '2018-05-17 11:03:19', '2018-05-17 12:08:18', 2, '', 861, 'd738c696-3fe0-4b21-be66-438daff1ab7e', '', '', '', '', ''),
(2115, '', '', '', '', '', '', '', '', 7, '', 'INT', '', '', '', 'Heart Rate', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"heart_rate\\\"\\n\\tlabel=\\\"Heart Rate\\\"\\n\\tsize=\\\"40\\\"\\n\\tmaxlength=\\\"6\\\"\\n\\tdescription=\\\"Per\\/Minute like 72 must only be a number!\\\"\\n\\tclass=\\\"text_area\\\"\\n\\trequired=\\\"true\\\"\\n\\tfilter=\\\"INT\\\"\\n\\tvalidate=\\\"number\\\"\\n\\tmessage=\\\"Enter Patient Heart Rate Per\\/Minute like 72 must only be a number!\\\"\\n\\thint=\\\"Heart Rate Per\\/Minute like 72\\\"\\n\\tautocomplete=\\\"on\\\"\\n\\tonchange=\\\"if(!jQuery(this).val().match(\\/^\\\\d+$\\/)){jQuery(this).val(\'\')};\\\"\\n\\/>\"', 1, '2018-05-17 11:14:41', '2018-10-09 20:41:58', 3, '', 861, 'd7296cb0-9d5d-46bb-bd78-38398bba2d40', '', '', '', '', ''),
(2116, '', '', '', '', '', '', '', '', 7, '', 'INT', '', '', '', 'Systolic Blood Pressure', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"systolic_blood_pressure\\\"\\n\\tlabel=\\\"Systolic Blood Pressure\\\"\\n\\tsize=\\\"40\\\"\\n\\tmaxlength=\\\"6\\\"\\n\\tdescription=\\\"Must only be a number!\\\"\\n\\tclass=\\\"text_area\\\"\\n\\trequired=\\\"true\\\"\\n\\tfilter=\\\"INT\\\"\\n\\tvalidate=\\\"number\\\"\\n\\tmessage=\\\"Enter Patient Systolic Blood Pressure must only be a number!\\\"\\n\\thint=\\\"Systolic Blood Pressure\\\"\\n\\tautocomplete=\\\"on\\\"\\n\\tonchange=\\\"if(!jQuery(this).val().match(\\/^\\\\d+$\\/)){jQuery(this).val(\'\')};\\\"\\n\\/>\"', 1, '2018-05-17 11:18:24', '2018-10-09 20:42:29', 3, '', 861, 'ff83ebf5-b7ee-4198-8957-6e4025d03615', '', '', '', '', ''),
(2117, '', '', '', '', '', '', '', '', 7, '', 'INT', '', '', '', 'Diastolic Blood Pressure', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"diastolic_blood_pressure\\\"\\n\\tlabel=\\\"Diastolic Blood Pressure\\\"\\n\\tsize=\\\"40\\\"\\n\\tmaxlength=\\\"6\\\"\\n\\tdescription=\\\"Must only be a number!\\\"\\n\\tclass=\\\"text_area\\\"\\n\\trequired=\\\"true\\\"\\n\\tfilter=\\\"INT\\\"\\n\\tvalidate=\\\"number\\\"\\n\\tmessage=\\\"Enter Patient Diastolic Blood Pressure must only be a number!\\\"\\n\\thint=\\\"Diastolic Blood Pressure\\\"\\n\\tautocomplete=\\\"on\\\"\\n\\tonchange=\\\"if(!jQuery(this).val().match(\\/^\\\\d+$\\/)){jQuery(this).val(\'\')};\\\"\\n\\/>\"', 1, '2018-05-17 11:19:58', '2018-10-09 20:42:56', 3, '', 861, '53adee25-9623-40e5-8d3e-f6b00739e03a', '', '', '', '', ''),
(2118, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Note Regarding Stage', 'NOT NULL', '', 25, '\"<field\\n\\ttype=\\\"textarea\\\"\\n\\tname=\\\"note\\\"\\n\\tlabel=\\\"Note\\\"\\n\\trows=\\\"6\\\"\\n\\tcols=\\\"16\\\"\\n\\tdescription=\\\"A Note Regarding This Stage\\\"\\n\\tclass=\\\"text_area\\\"\\n\\tfilter=\\\"raw\\\"\\n\\thint=\\\"A Note Regarding This Stage\\\"\\n\\/>\"', 1, '2018-05-17 11:30:10', '2018-10-09 23:19:06', 3, '', 861, '9360f138-7205-4824-a71e-67dc8da03993', '', '', '', '', ''),
(2119, '', '', '', '', '', '', '', '', '', '', '', '', '', '', '12 Minute Cooper Treadmill Test', 'NOT NULL', '', 14, '\"<field\\n\\ttype=\\\"note\\\"\\n\\tname=\\\"cooper_treadmill_test\\\"\\n\\tlabel=\\\"12 Minute Cooper Treadmill Test\\\"\\n\\theading=\\\"h4\\\"\\n\\tclass=\\\"alert\\\"\\n\\tshowon=\\\"\\\"\\n\\/>\"', 1, '2018-05-17 11:38:51', '0000-00-00 00:00:00', 1, '', 861, 'e0c8bb7c-5299-49c8-93dc-33c2625cb4be', '', '', '', '', ''),
(2120, '', '', '', '', '', '', '', '', '', '', '', '', '', '', 'YMCA Cycle Ergometer Test', 'NOT NULL', '', 14, '\"<field\\n\\ttype=\\\"note\\\"\\n\\tname=\\\"ymca_cycle_ergometer_test\\\"\\n\\tlabel=\\\"YMCA Cycle Ergometer Test\\\"\\n\\theading=\\\"h4\\\"\\n\\tclass=\\\"alert\\\"\\n\\tshowon=\\\"\\\"\\n\\/>\"', 1, '2018-05-17 11:39:51', '0000-00-00 00:00:00', 1, '', 861, '91713a09-d029-407f-a796-9c2c8be2a2ac', '', '', '', '', ''),
(2121, '', '', '', '', '', '', '', '', '', '', '', '', '', '', 'Bruce Protocol', 'NOT NULL', '', 14, '\"<field\\n\\ttype=\\\"note\\\"\\n\\tname=\\\"bruce_protocol\\\"\\n\\tlabel=\\\"Bruce Protocol\\\"\\n\\theading=\\\"h4\\\"\\n\\tclass=\\\"alert\\\"\\n\\tshowon=\\\"\\\"\\n\\/>\"', 1, '2018-05-17 11:42:49', '0000-00-00 00:00:00', 1, '', 861, '5fad860b-e984-4fd7-abd7-3d4379f39501', '', '', '', '', ''),
(2122, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Bruce Protocol', 'NOT NULL', '', 35, '\"<field\\n\\ttype=\\\"subform\\\"\\n\\tname=\\\"bruce\\\"\\n\\tlabel=\\\"Bruce Protocol\\\"\\n\\tlayout=\\\"joomla.form.field.subform.repeatable\\\"\\n\\tmultiple=\\\"true\\\"\\n\\tbuttons=\\\"add,remove,move\\\"\\n\\tfields=\\\"2128,2115,2116,2117,2102,2118\\\"\\n\\ticon=\\\"list\\\"\\n\\tmax=\\\"8\\\"\\n\\/>\"', 1, '2018-05-17 11:57:03', '2019-07-09 21:36:07', 5, '', 861, 'f8175fc0-e268-4b22-b95d-36edc48a5356', '', '', '', '', ''),
(2123, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'YMCA Cycle Ergometer Test', 'NOT NULL', '', 35, '\"<field\\n\\ttype=\\\"subform\\\"\\n\\tname=\\\"ymca\\\"\\n\\tlabel=\\\"YMCA Cycle Ergo-meter Test\\\"\\n\\tlayout=\\\"joomla.form.field.subform.repeatable\\\"\\n\\tmultiple=\\\"true\\\"\\n\\tbuttons=\\\"add,remove,move\\\"\\n\\tfields=\\\"2088,2115,2116,2117,2118\\\"\\n\\ticon=\\\"list\\\"\\n\\tmax=\\\"14\\\"\\n\\/>\"', 1, '2018-05-17 11:57:58', '2019-07-09 21:35:54', 7, '', 861, '18597945-dcae-4f9c-be09-8e11892780c0', '', '', '', '', ''),
(2124, '', '', '', '', '', '', '', '', '', '', '', '', '', '', 'Bruce Stage Three', 'NOT NULL', '', 14, '\"<field\\n\\ttype=\\\"note\\\"\\n\\tname=\\\"bruce_stage_three\\\"\\n\\tlabel=\\\"5.5km\\/h @ 14\\u00b0\\\"\\n\\theading=\\\"h4\\\"\\n\\tclass=\\\"alert\\\"\\n\\tshowon=\\\"\\\"\\n\\/>\"', -2, '2018-05-17 11:59:23', '2018-05-17 12:04:49', 2, '', 861, '72aef508-e4f2-4ea3-b1ea-35014e8cd0a7', '', '', '', '', ''),
(2125, '', '', '', '', '', '', '', '', '', '', '', '', '', '', 'Bruce Stage Four', 'NOT NULL', '', 14, '\"<field\\n\\ttype=\\\"note\\\"\\n\\tname=\\\"bruce_stage_four\\\"\\n\\tlabel=\\\"6.8km\\/h @ 16\\u00b0\\\"\\n\\theading=\\\"h4\\\"\\n\\tclass=\\\"alert\\\"\\n\\tshowon=\\\"\\\"\\n\\/>\"', -2, '2018-05-17 11:59:55', '2018-05-17 12:04:08', 2, '', 861, '352176c2-b2c0-4720-ad78-e2be86b252a0', '', '', '', '', ''),
(2126, '', '', '', '', '', '', '', '', '', '', '', '', '', '', 'Bruce Stage Five', 'NOT NULL', '', 14, '\"<field\\n\\ttype=\\\"note\\\"\\n\\tname=\\\"bruce_stage_five\\\"\\n\\tlabel=\\\"8.0km\\/h @ 18\\u00b0\\\"\\n\\theading=\\\"h4\\\"\\n\\tclass=\\\"alert\\\"\\n\\tshowon=\\\"\\\"\\n\\/>\"', -2, '2018-05-17 12:01:15', '2018-05-17 12:03:58', 2, '', 861, '0cc8f57d-4b11-4d48-ba04-e3d049654fc9', '', '', '', '', ''),
(2127, '', '', '', '', '', '', '', '', '', '', '', '', '', '', 'Bruce Stage Six', 'NOT NULL', '', 14, '\"<field\\n\\ttype=\\\"note\\\"\\n\\tname=\\\"bruce_stage_six\\\"\\n\\tlabel=\\\"8.9km\\/h @ 20\\u00b0\\\"\\n\\theading=\\\"h4\\\"\\n\\tclass=\\\"alert\\\"\\n\\tshowon=\\\"\\\"\\n\\/>\"', -2, '2018-05-17 12:03:05', '2018-05-17 12:08:42', 2, '', 861, '3fb46bba-fc75-4756-b2fa-2cc32ec80ded', '', '', '', '', ''),
(2128, '', '', '', '', '', '', '', '', 50, '', 'VARCHAR', '', '', '', 'Bruce Stage Selection', 'NOT NULL', '', 11, '\"<field\\n\\ttype=\\\"list\\\"\\n\\tname=\\\"stage\\\"\\n\\tlabel=\\\"Stage\\\"\\n\\tdescription=\\\"Selection\\\"\\n\\tclass=\\\"list_class\\\"\\n\\tmultiple=\\\"false\\\"\\n\\trequired=\\\"true\\\"\\n\\toption=\\\"0|Rest,10|2.7km\\/h @ 10\\u00b0,12|4.0km\\/h @ 12\\u00b0,14|5.5km\\/h @ 14\\u00b0,16|6.8km\\/h @ 16\\u00b0,18|8.0km\\/h @ 18\\u00b0,20|8.9km\\/h @ 20\\u00b0,1|1min rest,2|2min rest,3|3min rest\\\"\\n\\/>\"', 1, '2018-05-17 12:13:12', '2019-07-09 21:35:30', 6, '', 861, '6a03c307-a182-4bc6-864b-3c1634688cc4', '', '', '', '', ''),
(2129, '', '', '', '', '', '', '', '', 50, '', 'VARCHAR', '', '', '', 'Bruce Selection Second', 'NOT NULL', '', 11, '\"<field\\n\\ttype=\\\"list\\\"\\n\\tname=\\\"bruce_selection_second\\\"\\n\\tlabel=\\\"Next Stage\\\"\\n\\tdescription=\\\"Choose a the next stage\\\"\\n\\tmessage=\\\"Invalid Input\\\"\\n\\tclass=\\\"list_class\\\"\\n\\tmultiple=\\\"false\\\"\\n\\trequired=\\\"true\\\"\\n\\tvalidate=\\\"options\\\"\\n\\toption=\\\"0|4.0km\\/h @ 12\\u00b0,\\r\\n1|5.5km\\/h @ 14\\u00b0,\\r\\n2|6.8km\\/h @ 16\\u00b0,\\r\\n3|8.0km\\/h @ 18\\u00b0,\\r\\n4|8.9km\\/h @ 20\\u00b0,\\r\\n5|Final Stage (3 min rest)\\\"\\n\\tdefault=\\\"Please Select\\\"\\n\\tonchange=\\\"\\\"\\n\\/>\"', -2, '2018-05-17 12:17:27', '0000-00-00 00:00:00', 1, '', 861, '82813dfb-d2bc-4dcd-a40a-1c7a9849bb8c', '', '', '', '', ''),
(2130, '', '', '', '', '', '', '', '', 50, '', 'VARCHAR', '', '', '', 'Bruce Selection Third', 'NOT NULL', '', 11, '\"<field\\n\\ttype=\\\"list\\\"\\n\\tname=\\\"bruce_selection_third\\\"\\n\\tlabel=\\\"Next Stage\\\"\\n\\tdescription=\\\"Choose a the next stage\\\"\\n\\tmessage=\\\"Invalid Input\\\"\\n\\tclass=\\\"list_class\\\"\\n\\tmultiple=\\\"false\\\"\\n\\trequired=\\\"true\\\"\\n\\tvalidate=\\\"options\\\"\\n\\toption=\\\"0|5.5km\\/h @ 14\\u00b0,\\r\\n1|6.8km\\/h @ 16\\u00b0,\\r\\n2|8.0km\\/h @ 18\\u00b0,\\r\\n3|8.9km\\/h @ 20\\u00b0,\\r\\n4|Final Stage (3 min rest)\\\"\\n\\tdefault=\\\"Please Select\\\"\\n\\tonchange=\\\"\\\"\\n\\/>\"', -2, '2018-05-17 12:18:39', '0000-00-00 00:00:00', 1, '', 861, '738dd4c8-814f-41f2-9009-10a37006f287', '', '', '', '', ''),
(2131, '', '', '', '', '', '', '', '', 50, '', 'VARCHAR', '', '', '', 'Bruce Selection Fourth', 'NOT NULL', '', 11, '\"<field\\n\\ttype=\\\"list\\\"\\n\\tname=\\\"bruce_selection_fourth\\\"\\n\\tlabel=\\\"Next Stage\\\"\\n\\tdescription=\\\"Choose a the next stage\\\"\\n\\tmessage=\\\"Invalid Input\\\"\\n\\tclass=\\\"list_class\\\"\\n\\tmultiple=\\\"false\\\"\\n\\trequired=\\\"true\\\"\\n\\tvalidate=\\\"options\\\"\\n\\toption=\\\"0|6.8km\\/h @ 16\\u00b0,\\r\\n1|8.0km\\/h @ 18\\u00b0,\\r\\n2|8.9km\\/h @ 20\\u00b0,\\r\\n3|Final Stage (3 min rest)\\\"\\n\\tdefault=\\\"Please Select\\\"\\n\\tonchange=\\\"\\\"\\n\\/>\"', -2, '2018-05-17 12:20:35', '0000-00-00 00:00:00', 1, '', 861, 'dbe22a50-2269-489a-bc9c-75870e8c3699', '', '', '', '', ''),
(2132, '', '', '', '', '', '', '', '', 50, '', 'VARCHAR', '', '', '', 'Bruce Selection Fifth', 'NOT NULL', '', 11, '\"<field\\n\\ttype=\\\"list\\\"\\n\\tname=\\\"bruce_selection_fifth\\\"\\n\\tlabel=\\\"Next Stage\\\"\\n\\tdescription=\\\"Choose a the next stage\\\"\\n\\tmessage=\\\"Invalid Input\\\"\\n\\tclass=\\\"list_class\\\"\\n\\tmultiple=\\\"false\\\"\\n\\trequired=\\\"true\\\"\\n\\tvalidate=\\\"options\\\"\\n\\toption=\\\"0|8.0km\\/h @ 18\\u00b0,\\r\\n1|8.9km\\/h @ 20\\u00b0,\\r\\n2|Final Stage (3 min rest)\\\"\\n\\tdefault=\\\"Please Select\\\"\\n\\tonchange=\\\"\\\"\\n\\/>\"', -2, '2018-05-17 12:21:45', '0000-00-00 00:00:00', 1, '', 861, '408e6ca8-57f8-4b9f-86b0-41d359f4a03d', '', '', '', '', ''),
(2133, '', '', '', '', '', '', '', '', 50, '', 'VARCHAR', '', '', '', 'Bruce Selection Sixth', 'NOT NULL', '', 11, '\"<field\\n\\ttype=\\\"list\\\"\\n\\tname=\\\"bruce_selection_sixth\\\"\\n\\tlabel=\\\"Next Stage\\\"\\n\\tdescription=\\\"Choose a the next stage\\\"\\n\\tmessage=\\\"Invalid Input\\\"\\n\\tclass=\\\"list_class\\\"\\n\\tmultiple=\\\"false\\\"\\n\\trequired=\\\"true\\\"\\n\\tvalidate=\\\"options\\\"\\n\\toption=\\\"0|8.9km\\/h @ 20\\u00b0,\\r\\n1|Final Stage (3 min rest)\\\"\\n\\tdefault=\\\"Please Select\\\"\\n\\tonchange=\\\"\\\"\\n\\/>\"', -2, '2018-05-17 12:23:40', '0000-00-00 00:00:00', 1, '', 861, '7c5dcdd3-bda4-48f2-a7a2-abd426c5da3d', '', '', '', '', ''),
(2134, '', '', '', '', '', '', '', '', 50, '', 'TEXT', '', '', '', 'Physical Assessment Summary', 'NOT NULL', '', 25, '\"<field\\n\\ttype=\\\"textarea\\\"\\n\\tname=\\\"ecg_physical_assessment_summary\\\"\\n\\tlabel=\\\"Physical Assessment Summary\\\"\\n\\trows=\\\"16\\\"\\n\\tcols=\\\"6\\\"\\n\\tclass=\\\"text_area\\\"\\n\\tfilter=\\\"STRING\\\"\\n\\thint=\\\"ECG Comments Here!\\\"\\n\\trequired=\\\"false\\\"\\n\\/>\"', 1, '2018-05-17 12:26:04', '2019-06-27 22:04:19', 4, '', 861, 'd3f9f352-7c95-4221-b301-535493dbabea', '', '', '', '', ''),
(2135, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'Handrails', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"handrails\\\"\\n\\tlabel=\\\"Did patient hold on to handrails?\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"1|No,2|Yes\\\"\\n\\trequired=\\\"true\\\"\\n\\/>\"', 1, '2018-05-17 15:25:58', '2018-10-09 21:50:38', 2, '', 859, 'c358d70e-0fda-4c36-ad1a-6b8ba4a9705d', '', '', '', '', ''),
(2136, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'Strength Flexibility', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"strength_flexibility\\\"\\n\\tlabel=\\\"Do strength & flexibility test?\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"1|No,2|Yes\\\"\\n\\tdefault=\\\"1\\\"\\n\\trequired=\\\"true\\\"\\n\\tmessage=\\\"Please make a selection.\\\"\\n\\/>\"', 1, '2018-05-17 15:34:13', '2018-10-09 22:04:26', 3, '', 859, 'ef03bca7-2037-43dc-a9ee-2a82f1f3e7b8', '', '', '', '', ''),
(2137, '', '', '', '', '', '', 1, '', 1, '', 'TINYINT', '', '', '', 'ECG Recording', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"ecg\\\"\\n\\tlabel=\\\"Do ECG?\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"1|No,2|Yes\\\"\\n\\tdefault=\\\"1\\\"\\n\\trequired=\\\"true\\\"\\n\\/>\"', 1, '2018-05-17 15:39:03', '2020-01-30 16:47:22', 5, '', 859, '8b400575-40ef-4d96-9b51-475b9fb790ac', '', '', '', '', ''),
(2138, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'Sinus Rhythm: In Resting ECG', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"ecg_sinus_rhythm_resting\\\"\\n\\tlabel=\\\"Sinus Rhythm: In Resting ECG\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"1|Yes,0|No\\\"\\n\\tdefault=\\\"1\\\"\\n\\tmessage=\\\"Please select\\\"\\n\\/>\"', 1, '2018-05-17 19:43:28', '2019-06-28 10:42:50', 6, '', 859, 'f88f4700-95db-48db-ada3-76a83ee09bc1', '', '', '', '', ''),
(2139, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'P-wave Morphology Normal?', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"ecg_pwave_morphology_normal\\\"\\n\\tlabel=\\\"P-wave Morphology Normal?\\\"\\n\\tdescription=\\\"(V1 Biphasic; Inverted AVR; upright in I & II)\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"1|Yes,0|No\\\"\\n\\tdefault=\\\"1\\\"\\n\\tmessage=\\\"Please select\\\"\\n\\/>\"', 1, '2018-05-17 19:46:12', '2019-06-28 10:45:19', 9, '', 859, '5333654f-ea99-4134-b024-ad9d2f0bceb7', '', '', '', '', ''),
(2140, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'Are the Q-waves Significant?', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"ecg_qwaves_significant\\\"\\n\\tlabel=\\\"Are the Q-waves Significant?\\\"\\n\\tdescription=\\\"No Q-waves \\/ small Q-waves (<0.04s in width) in I, II, V2-V6<br \\/>\\r\\n(Significant Q-waves > 1\\/3 of QRS \\u2013 Previous Injury) \\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"0|Yes,1|No\\\"\\n\\tdefault=\\\"1\\\"\\n\\tmessage=\\\"Please select\\\"\\n\\/>\"', 1, '2018-05-17 19:49:39', '2019-06-28 10:45:42', 7, '', 859, 'e6035d46-551b-4dcf-a155-f50f2fd09214', '', '', '', '', ''),
(2141, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'R-wave Morphology Normal?', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"ecg_rwave_morphology_normal\\\"\\n\\tlabel=\\\"R-wave Morphology Normal?\\\"\\n\\tdescription=\\\"In pre-cordial leads grow progressively positive from V1 \\u2013 V4\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"1|Yes,0|No\\\"\\n\\tdefault=\\\"1\\\"\\n\\tmessage=\\\"Please select\\\"\\n\\/>\"', 1, '2018-05-17 19:56:12', '2019-06-28 10:46:04', 4, '', 859, 'd0e218e7-4a89-42df-bbce-1546cd9ab4b5', '', '', '', '', ''),
(2142, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'QRS Contour Deviation Noted?', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"ecg_qrs_contour_deviation\\\"\\n\\tlabel=\\\"QRS Contour Deviation Noted?\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"0|Yes,1|No\\\"\\n\\tdefault=\\\"1\\\"\\n\\tmessage=\\\"Please select\\\"\\n\\/>\"', 1, '2018-05-17 20:00:14', '2019-06-28 10:46:25', 5, '', 859, 'bea2fb2c-f14b-4675-805e-32ba409e85ab', '', '', '', '', ''),
(2143, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'T-wave Morphology Normal?', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"ecg_twave_morphology_normal\\\"\\n\\tlabel=\\\"T-wave Morphology Normal?\\\"\\n\\tdescription=\\\"T-wave is upright in I, II, V2-V6<br \\/>\\r\\nNegative in V1 & AVR\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"1|Yes,0|No\\\"\\n\\tdefault=\\\"1\\\"\\n\\tmessage=\\\"Please select\\\"\\n\\/>\"', 1, '2018-05-17 20:01:29', '2019-06-28 10:46:43', 5, '', 859, '46023ab6-a23a-4785-a6aa-3af5ba847f25', '', '', '', '', ''),
(2144, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'Resting ECG - ST Segment Elevation', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"ecg_resting_st_segment_elevation\\\"\\n\\tlabel=\\\"Resting ECG - ST Segment Elevation\\\"\\n\\tdescription=\\\"If Yes, add leads\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"0|Yes,1|No\\\"\\n\\tdefault=\\\"1\\\"\\n\\tmessage=\\\"Please select\\\"\\n\\/>\"', 1, '2018-05-17 20:02:55', '2019-06-28 10:52:07', 6, '', 859, 'a297cbfa-0001-4b37-a410-5bcf7ebb1d0a', '', '', '', '', ''),
(2145, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'PR segment', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"ecg_pr_segment\\\"\\n\\tlabel=\\\"PR segment\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"1|Normal,2|Abnormal\\\"\\n\\tmessage=\\\"Please select\\\"\\n\\trequired=\\\"true\\\"\\n\\/>\"', 1, '2018-05-17 20:04:22', '2018-10-09 21:56:03', 2, '', 859, 'a0110d88-778d-4905-8661-6dd1445d5ada', '', '', '', '', ''),
(2146, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'QRS Width Normal?', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"ecg_qrs_width_normal\\\"\\n\\tlabel=\\\"QRS Width Normal?\\\"\\n\\tdescription=\\\"< 110ms (3 blocks) \\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"1|Yes,0|No\\\"\\n\\tdefault=\\\"1\\\"\\n\\tmessage=\\\"Please select\\\"\\n\\/>\"', 1, '2018-05-17 20:06:04', '2019-06-28 10:47:03', 7, '', 859, 'b47e8f7d-a78b-4ab9-9e28-8e0d1e7b5282', '', '', '', '', ''),
(2147, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'Resting ECG - T-wave Inversion', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"ecg_resting_twave_inversion\\\"\\n\\tlabel=\\\"Resting ECG - T-wave Inversion\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"0|Yes,1|No\\\"\\n\\tdefault=\\\"1\\\"\\n\\tmessage=\\\"Please select\\\"\\n\\/>\"', 1, '2018-05-17 20:07:24', '2019-06-28 10:47:10', 5, '', 859, 'ce15f083-3948-405b-ad31-d655f917b37a', '', '', '', '', ''),
(2148, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'Arrhythmias During Stress Phase', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"ecg_arrhythmias_during_stress_phase\\\"\\n\\tlabel=\\\"Arrhythmias During Stress Phase\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"1|No,2|Yes\\\"\\n\\tdefault=\\\"1\\\"\\n\\tmessage=\\\"Please select\\\"\\n\\trequired=\\\"true\\\"\\n\\/>\"', 1, '2018-05-17 20:09:06', '2019-06-28 10:47:17', 4, '', 859, 'bd6f6171-8dca-4ec6-9839-0e4f734d4eb6', '', '', '', '', ''),
(2149, '', '', '', '', '', '', '', '', 1, '', 'TEXT', '', '', '', 'Strength Flexibility Options', 'NOT NULL', '', 4, '\"<field\\n\\ttype=\\\"checkboxes\\\"\\n\\tname=\\\"strength_flexibility_options\\\"\\n\\tlabel=\\\"Strength Flexibility Options\\\"\\n\\toption=\\\"1|Push Ups,2|Partial Curl Ups,3|Pull Ups,4|Sit & Reach,5|Bridge,6|Grip Strength,7|Back Strength,8|Sit to Stand,9|Shoulder Press\\\"\\n\\tdescription=\\\"Please make your selection\\\"\\n\\trequired=\\\"true\\\"\\n\\/>\"', 1, '2018-05-17 20:27:50', '2019-04-11 10:20:41', 4, '', 859, '170798a1-0753-47f1-b5e7-c315ab451c45', '', '', '', '', ''),
(2150, '', '', '', '', '', '', '', '', 7, '', 'INT', '', '', '', 'Push Ups', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"push_ups\\\"\\n\\tlabel=\\\"Push Ups\\\"\\n\\tsize=\\\"40\\\"\\n\\tmaxlength=\\\"6\\\"\\n\\tdescription=\\\"Amount Push Ups Done per\\/minute\\\"\\n\\tclass=\\\"text_area\\\"\\n\\trequired=\\\"true\\\"\\n\\tfilter=\\\"INT\\\"\\n\\tvalidate=\\\"Number\\\"\\n\\tmessage=\\\"Amount Push Ups Done must only be a number!\\\"\\n\\thint=\\\"Amount Push Ups Done\\\"\\n\\tonchange=\\\"if(!jQuery(this).val().match(\\/^\\\\d+$\\/)){jQuery(this).val(\'\')};\\\"\\n\\/>\"', 1, '2018-05-17 20:36:10', '2018-10-10 19:13:05', 4, '', 859, '9c0ce1ea-0a00-4473-afa3-4c38313566fb', '', '', '', '', ''),
(2151, '', '', '', '', '', '', '', '', 7, '', 'INT', '', '', '', 'Partial Curl Ups', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"partial_curl_ups\\\"\\n\\tlabel=\\\"Partial Curl Ups\\\"\\n\\tsize=\\\"40\\\"\\n\\tmaxlength=\\\"6\\\"\\n\\tdescription=\\\"Amount Partial Curl Ups Done per\\/minute\\\"\\n\\tclass=\\\"text_area\\\"\\n\\trequired=\\\"true\\\"\\n\\tfilter=\\\"INT\\\"\\n\\tvalidate=\\\"Number\\\"\\n\\tmessage=\\\"Amount Partial Curl Ups Done must only be a number!\\\"\\n\\thint=\\\"Amount Partial Curl Done\\\"\\n\\tonchange=\\\"if(!jQuery(this).val().match(\\/^\\\\d+$\\/)){jQuery(this).val(\'\')};\\\"\\n\\/>\"', 1, '2018-05-17 20:38:21', '2018-10-10 19:12:41', 5, '', 859, '00c1bf8c-9a69-4642-a2f8-7fc3d6115cc1', '', '', '', '', ''),
(2152, '', '', '', '', '', '', '', '', 7, '', 'INT', '', '', '', 'Pull Ups', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"pull_ups\\\"\\n\\tlabel=\\\"Pull Ups\\\"\\n\\tsize=\\\"40\\\"\\n\\tmaxlength=\\\"6\\\"\\n\\tdescription=\\\"Amount Pull Ups Done per\\/minute\\\"\\n\\tclass=\\\"text_area\\\"\\n\\trequired=\\\"true\\\"\\n\\tfilter=\\\"INT\\\"\\n\\tvalidate=\\\"Number\\\"\\n\\tmessage=\\\"Amount Pull Ups Done must only be a number!\\\"\\n\\thint=\\\"Amount Pull Ups Done\\\"\\n\\tonchange=\\\"if(!jQuery(this).val().match(\\/^\\\\d+$\\/)){jQuery(this).val(\'\')};\\\"\\n\\/>\"', 1, '2018-05-17 20:47:47', '2018-10-10 19:12:54', 7, '', 859, '5cd2b56d-0d30-465e-b35f-4eb8ca3b84f2', '', '', '', '', ''),
(2153, '', '', '', '', '', '', '', '', 7, '', 'INT', '', '', '', 'Sit & Reach', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"sit_reach\\\"\\n\\tlabel=\\\"Sit & Reach\\\"\\n\\tsize=\\\"40\\\"\\n\\tmaxlength=\\\"6\\\"\\n\\tdescription=\\\"Number reached on ruler in Centimeters like 52\\\"\\n\\tclass=\\\"text_area\\\"\\n\\trequired=\\\"true\\\"\\n\\tfilter=\\\"INT\\\"\\n\\tvalidate=\\\"Number\\\"\\n\\tmessage=\\\"Number reached on ruler in Centimeters like 52 must only be a number!\\\"\\n\\thint=\\\"Number reached on ruler in Centimeters like 52\\\"\\n\\tonchange=\\\"if(!jQuery(this).val().match(\\/^\\\\d+$\\/)){jQuery(this).val(\'\')};\\\"\\n\\/>\"', 1, '2018-05-17 20:50:24', '2018-10-09 22:01:41', 4, '', 859, '3ba31765-e825-41ef-be98-881f6e28242a', '', '', '', '', ''),
(2154, '', '', '', '', '', '', '', '', 7, '', 'INT', '', '', '', 'Side Bridge Left', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"bridge_side_left\\\"\\n\\tlabel=\\\"Side Bridge Left\\\"\\n\\tsize=\\\"40\\\"\\n\\tmaxlength=\\\"6\\\"\\n\\tdescription=\\\"Time Held in Seconds like 32\\\"\\n\\tclass=\\\"text_area\\\"\\n\\trequired=\\\"true\\\"\\n\\tfilter=\\\"INT\\\"\\n\\tvalidate=\\\"Number\\\"\\n\\tmessage=\\\"Time Held in Seconds like 32 must only be a number!\\\"\\n\\thint=\\\"Time Held in Seconds like 32\\\"\\n\\tonchange=\\\"if(!jQuery(this).val().match(\\/^\\\\d+$\\/)){jQuery(this).val(\'\')};\\\"\\n\\/>\"', 1, '2018-05-17 20:53:38', '2018-10-09 22:01:46', 4, '', 859, '696b88cf-a8a3-420f-b551-2c3b04e43c00', '', '', '', '', ''),
(2155, '', '', '', '', '', '', '', '', 7, '', 'INT', '', '', '', 'Side Bridge Right', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"bridge_side_right\\\"\\n\\tlabel=\\\"Side Bridge Right\\\"\\n\\tsize=\\\"40\\\"\\n\\tmaxlength=\\\"6\\\"\\n\\tdescription=\\\"Time Held in Seconds like 32\\\"\\n\\tclass=\\\"text_area\\\"\\n\\trequired=\\\"true\\\"\\n\\tfilter=\\\"INT\\\"\\n\\tvalidate=\\\"Number\\\"\\n\\tmessage=\\\"Time Held in Seconds like 32 must only be a number!\\\"\\n\\thint=\\\"Time Held in Seconds like 32\\\"\\n\\tonchange=\\\"if(!jQuery(this).val().match(\\/^\\\\d+$\\/)){jQuery(this).val(\'\')};\\\"\\n\\/>\"', 1, '2018-05-17 20:54:47', '2018-10-09 22:01:48', 4, '', 859, 'd7665ce0-e341-4fb0-b1cc-6013ac4d9d22', '', '', '', '', ''),
(2156, '', '', '', '', '', '', '', '', 7, '', 'INT', '', '', '', 'Front Bridge ', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"front_bridge\\\"\\n\\tlabel=\\\"Front Bridge\\\"\\n\\tsize=\\\"40\\\"\\n\\tmaxlength=\\\"6\\\"\\n\\tdescription=\\\"Time Held in Seconds like 32\\\"\\n\\tclass=\\\"text_area\\\"\\n\\trequired=\\\"true\\\"\\n\\tfilter=\\\"INT\\\"\\n\\tvalidate=\\\"Number\\\"\\n\\tmessage=\\\"Time Held in Seconds like 32 must only be a number!\\\"\\n\\thint=\\\"Time Held in Seconds like 32\\\"\\n\\tonchange=\\\"if(!jQuery(this).val().match(\\/^\\\\d+$\\/)){jQuery(this).val(\'\')};\\\"\\n\\/>\"', 1, '2018-05-17 20:56:22', '2018-10-09 22:00:03', 3, '', 859, 'a58300d3-75ec-4125-803b-3d3159751678', '', '', '', '', ''),
(2157, '', '', '', '', '', '', '', '', 7, '', 'INT', '', '', '', 'Grip Strength Left', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"grip_strength_left\\\"\\n\\tlabel=\\\"Grip Strength Left\\\"\\n\\tsize=\\\"40\\\"\\n\\tmaxlength=\\\"6\\\"\\n\\tdescription=\\\"Grip Strength in Kilograms like 36\\\"\\n\\tclass=\\\"text_area\\\"\\n\\trequired=\\\"true\\\"\\n\\tfilter=\\\"INT\\\"\\n\\tvalidate=\\\"Number\\\"\\n\\tmessage=\\\"Grip Strength Reading on Dynomometer in Kilograms like 36 must only be a number!\\\"\\n\\thint=\\\"Grip Strength in Kilograms like 36\\\"\\n\\tonchange=\\\"if(!jQuery(this).val().match(\\/^\\\\d+$\\/)){jQuery(this).val(\'\')};\\\"\\n\\/>\"', 1, '2018-05-17 20:58:38', '2018-10-09 22:02:00', 4, '', 859, '489fba92-d964-471d-8248-b832863aacc1', '', '', '', '', ''),
(2158, '', '', '', '', '', '', '', '', 7, '', 'INT', '', '', '', 'Grip Strength Right', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"grip_strength_right\\\"\\n\\tlabel=\\\"Grip Strength Right\\\"\\n\\tsize=\\\"40\\\"\\n\\tmaxlength=\\\"6\\\"\\n\\tdescription=\\\"Grip Strength in Kilograms like 36\\\"\\n\\tclass=\\\"text_area\\\"\\n\\trequired=\\\"true\\\"\\n\\tfilter=\\\"INT\\\"\\n\\tvalidate=\\\"Number\\\"\\n\\tmessage=\\\"Grip Strength Reading on Dynomometer in Kilograms like 36 must only be a number!\\\"\\n\\thint=\\\"Grip Strength in Kilograms like 36\\\"\\n\\tonchange=\\\"if(!jQuery(this).val().match(\\/^\\\\d+$\\/)){jQuery(this).val(\'\')};\\\"\\n\\/>\"', 1, '2018-05-17 21:00:01', '2018-10-10 19:10:59', 4, '', 859, 'bfb80a29-8027-465c-b460-50d06a6a9f4f', '', '', '', '', ''),
(2159, '', '', '', '', '', '', '', '', 7, '', 'INT', '', '', '', 'Back Strength', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"back_strength\\\"\\n\\tlabel=\\\"Back Strength\\\"\\n\\tsize=\\\"40\\\"\\n\\tmaxlength=\\\"6\\\"\\n\\tdescription=\\\"Back Strength in Kilograms like 36\\\"\\n\\tclass=\\\"text_area\\\"\\n\\trequired=\\\"true\\\"\\n\\tfilter=\\\"INT\\\"\\n\\tvalidate=\\\"Number\\\"\\n\\tmessage=\\\"Back Strength Reading on Dynomometer in Kilograms like 36 must only be a number!\\\"\\n\\thint=\\\"Back Strength in Kilograms like 36\\\"\\n\\tonchange=\\\"if(!jQuery(this).val().match(\\/^\\\\d+$\\/)){jQuery(this).val(\'\')};\\\"\\n\\/>\"', 1, '2018-05-17 21:01:46', '2018-10-09 22:09:23', 4, '', 859, 'fcea72bf-8099-420f-9368-70441f53624d', '', '', '', '', ''),
(2160, '', '', '', '', '', '', '', '', 7, '', 'INT', '', '', '', 'Step Test', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"step_test\\\"\\n\\tlabel=\\\"Step Test\\\"\\n\\tsize=\\\"40\\\"\\n\\tmaxlength=\\\"6\\\"\\n\\tdescription=\\\"Enter Heart Rate like 75\\\"\\n\\tclass=\\\"text_area\\\"\\n\\trequired=\\\"true\\\"\\n\\tfilter=\\\"INT\\\"\\n\\tvalidate=\\\"Number\\\"\\n\\tmessage=\\\"Enter Heart Rate like 75 must only be a number!\\\"\\n\\thint=\\\"Enter Heart Rate like 75\\\"\\n\\tonchange=\\\"if(!jQuery(this).val().match(\\/^\\\\d+$\\/)){jQuery(this).val(\'\')};\\\"\\n\\/>\"', 1, '2018-05-17 21:04:06', '2018-10-09 22:05:09', 3, '', 859, '0d962ac8-9d51-40b4-8fc6-caefe1e4c0e4', '', '', '', '', ''),
(2161, '', '', '', '', '', '', '', '', 11, '', 'FLOAT', '', '', '', 'Blood Glucose', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"glucose_test\\\"\\n\\tlabel=\\\"Blood Glucose\\\"\\n\\tsize=\\\"40\\\"\\n\\tmaxlength=\\\"12\\\"\\n\\tdescription=\\\"Enter Amount like 6.5\\\"\\n\\tclass=\\\"text_area\\\"\\n\\trequired=\\\"true\\\"\\n\\tfilter=\\\"Float\\\"\\n\\tvalidate=\\\"Number\\\"\\n\\tmessage=\\\"Enter Amount like 6.5 must only be a number!\\\"\\n\\thint=\\\"Enter Amount like 6.5\\\"\\n\\tonchange=\\\"if(!jQuery(this).val().match(\\/^\\\\d+\\\\.\\\\d+$\\/)){if(!jQuery(this).val().match(\\/^\\\\d+$\\/)){jQuery(this).val(\'\')}};\\\"\\n\\/>\"', 1, '2018-05-17 21:07:24', '2018-10-09 22:07:39', 3, '', 859, '17020046-3b16-4277-9135-d46010ddeedd', '', '', '', '', ''),
(2162, '', '', '', '', '', '', '', '', 7, '', 'INT', '', '', '', 'PR Interval ', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"ecg_pr_interval\\\"\\n\\tlabel=\\\"PR Interval \\\"\\n\\tsize=\\\"40\\\"\\n\\tmaxlength=\\\"6\\\"\\n\\tdescription=\\\"Add number of ms like 120\\\"\\n\\tclass=\\\"text_area\\\"\\n\\trequired=\\\"true\\\"\\n\\tfilter=\\\"INT\\\"\\n\\tvalidate=\\\"Number\\\"\\n\\tmessage=\\\"Please add number of ms like 120\\\"\\n\\thint=\\\"Add number of ms like 120\\\"\\n\\tonchange=\\\"if(!jQuery(this).val().match(\\/^\\\\d+$\\/)){jQuery(this).val(\'\')};\\\"\\n\\/>\"', 1, '2018-05-17 21:10:33', '2018-10-09 22:08:08', 5, '', 859, '375bea33-3b1f-42e4-a10c-6594c3c9ca68', '', '', '', '', ''),
(2163, '', '', '', '', '', '', '', '', '', '', '', '', '', '', 'Developer Messages', 'NOT NULL', '', 14, '\"<field\\n\\ttype=\\\"note\\\"\\n\\tname=\\\"note_display_developer_messages\\\"\\n\\tdescription=\\\"<div id=\'display_developer_messages\' >Display the messages this developer has a received!<\\/div>\\\"\\n\\/>\"', 1, '2018-05-18 04:42:26', '2018-04-29 23:19:23', 1, '', 847, 'dacc93a2-cf45-4cf7-844a-9446351e2d0a', '', '', '', '', ''),
(2164, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'Corrected QT Interval', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"ecg_corrected_qt_interval\\\"\\n\\tlabel=\\\"Corrected QT Interval\\\"\\n\\tdescription=\\\"QTc < 440ms\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"1|Yes,0|No\\\"\\n\\tdefault=\\\"1\\\"\\n\\tmessage=\\\"please select\\\"\\n\\/>\"', 1, '2018-05-18 14:01:57', '2019-06-28 10:47:24', 7, '', 859, '568de861-ffd8-4732-9a03-798e73797c77', '', '', '', '', ''),
(2165, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'All AVR Waves are Negative', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"ecg_avr_waves_negative\\\"\\n\\tlabel=\\\"All AVR Waves are Negative\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"1|Yes,0|No\\\"\\n\\tdefault=\\\"1\\\"\\n\\tmessage=\\\"please select\\\"\\n\\/>\"', 1, '2018-05-18 14:03:21', '2019-06-28 10:47:32', 5, '', 859, 'bc739fe3-5371-416f-9c0c-deefa4f4daae', '', '', '', '', ''),
(2166, '', '', '', '', '', '', '', '', '', '', '', '', '', '', 'Ankle History', 'NOT NULL', '', 14, '\"<field\\n\\ttype=\\\"note\\\"\\n\\tname=\\\"hi_header\\\"\\n\\tlabel=\\\"History\\\"\\n\\tdescription=\\\"(Chief complaint, mechanism,sounds or sensation, type and location of pain, previous injury, muscle weakness, immediate swelling\\/only later, area of swelling, what movements produce pain)\\\"\\n\\theading=\\\"h2\\\"\\n\\tclass=\\\"alert\\\"\\n\\tshowon=\\\"\\\"\\n\\/>\"', 1, '2018-05-18 14:42:33', '2018-05-17 12:08:42', 1, '', 861, '2bab60c6-d335-47ba-ba3b-35fc9425b098', '', '', '', '', ''),
(2167, '', '', '', '', '', '', '', '', '', '', '', '', '', '', 'Ankle Observation', 'NOT NULL', '', 14, '\"<field\\n\\ttype=\\\"note\\\"\\n\\tname=\\\"ob_header\\\"\\n\\tlabel=\\\"Observation\\\"\\n\\theading=\\\"h2\\\"\\n\\tclass=\\\"alert\\\"\\n\\/>\"', 1, '2018-05-18 14:44:13', '2018-05-17 12:08:42', 1, '', 861, '09d3b786-8d94-4585-8dcf-04e0b991b8b1', '', '', '', '', ''),
(2168, '', '', '', '', '', '', '', '', '', '', '', '', '', '', 'Ankle Palpation', 'NOT NULL', '', 14, '\"<field\\n\\ttype=\\\"note\\\"\\n\\tname=\\\"pa_header\\\"\\n\\tlabel=\\\"Palpation\\\"\\n\\theading=\\\"h2\\\"\\n\\tdescription=\\\"(Determine areas of swelling, obvious structural deformities, point tenderness)\\\"\\n\\tclass=\\\"alert\\\"\\n\\/>\"', 1, '2018-05-18 14:46:51', '2018-05-17 12:08:42', 1, '', 861, 'c31e07b3-14ba-4d41-a22a-83fb3985a03a', '', '', '', '', ''),
(2169, '', '', '', '', '', '', '', '', '', '', '', '', '', '', 'Ankle Bony Palpation', 'NOT NULL', '', 14, '\"<field\\n\\ttype=\\\"note\\\"\\n\\tname=\\\"pa_bo_header\\\"\\n\\tlabel=\\\"Bony Palpation\\\"\\n\\theading=\\\"h3\\\"\\n\\tclass=\\\"alert\\\"\\n\\/>\"', 1, '2018-05-18 14:48:29', '2018-05-17 12:08:42', 1, '', 861, 'dbfa2b7e-d095-4a35-8ee2-2c410303947f', '', '', '', '', ''),
(2170, '', '', '', '', '', '', '', '', '', '', '', '', '', '', 'Ankle Anterior Aspect', 'NOT NULL', '', 14, '\"<field\\n\\ttype=\\\"note\\\"\\n\\tname=\\\"pa_bo_an_header\\\"\\n\\tlabel=\\\"Anterior Aspect\\\"\\n\\theading=\\\"h5\\\"\\n\\tclass=\\\"alert\\\"\\n\\/>\"', 1, '2018-05-18 14:50:09', '2018-05-18 14:57:01', 2, '', 861, '28e48cc0-a73f-42ba-90d8-4c32756a3e7a', '', '', '', '', ''),
(2171, '', '', '', '', '', '', '', '', '', '', '', '', '', '', 'Ankle Posterior Aspect', 'NOT NULL', '', 14, '\"<field\\n\\ttype=\\\"note\\\"\\n\\tname=\\\"pa_bo_po_header\\\"\\n\\tlabel=\\\"Posterior Aspect\\\"\\n\\theading=\\\"b\\\"\\n\\tclass=\\\"alert\\\"\\n\\/>\"', 1, '2018-05-18 14:51:10', '2018-05-17 12:08:42', 1, '', 861, '2fb40019-d733-47c4-b54d-1a3a382b9e12', '', '', '', '', ''),
(2172, '', '', '', '', '', '', '', '', '', '', '', '', '', '', 'Ankle Soft-tissue Palpation', 'NOT NULL', '', 14, '\"<field\\n\\ttype=\\\"note\\\"\\n\\tname=\\\"pa_so_header\\\"\\n\\tlabel=\\\"Soft-tissue Palpation\\\"\\n\\theading=\\\"h3\\\"\\n\\tclass=\\\"alert\\\"\\n\\/>\"', 1, '2018-05-18 14:53:40', '2018-05-17 12:08:42', 1, '', 861, 'c427d7c1-8c9f-4fae-b44e-1ad15664880d', '', '', '', '', ''),
(2173, '', '', '', '', '', '', '', '', '', '', '', '', '', '', 'Ankle Lateral Aspect', 'NOT NULL', '', 14, '\"<field\\n\\ttype=\\\"note\\\"\\n\\tname=\\\"pa_so_la_header\\\"\\n\\tlabel=\\\"Lateral Aspect\\\"\\n\\theading=\\\"h5\\\"\\n\\tclass=\\\"alert\\\"\\n\\/>\"', 1, '2018-05-18 14:55:43', '2018-05-17 12:08:42', 1, '', 861, '366b4f10-1561-48c5-9e90-6e1a3cf41a32', '', '', '', '', ''),
(2174, '', '', '', '', '', '', '', '', '', '', '', '', '', '', 'Ankle Posterior Aspect', 'NOT NULL', '', 14, '\"<field\\n\\ttype=\\\"note\\\"\\n\\tname=\\\"pa_bo_po_header\\\"\\n\\tlabel=\\\"Posterior Aspect\\\"\\n\\theading=\\\"h5\\\"\\n\\tclass=\\\"alert\\\"\\n\\/>\"', 1, '2018-05-18 14:56:33', '2018-05-18 14:56:48', 2, '', 861, 'cb649a15-72bb-4f0d-983e-7bb611dd3be1', '', '', '', '', ''),
(2175, '', '', '', '', '', '', '', '', '', '', '', '', '', '', 'Ankle Medial Aspect', 'NOT NULL', '', 14, '\"<field\\n\\ttype=\\\"note\\\"\\n\\tname=\\\"pa_so_me_header\\\"\\n\\tlabel=\\\"Medial Aspect\\\"\\n\\theading=\\\"h5\\\"\\n\\tclass=\\\"alert\\\"\\n\\/>\"', 1, '2018-05-18 15:01:20', '2018-05-17 12:08:42', 1, '', 861, 'fdc54b28-358b-4098-a63c-6d5fd6605333', '', '', '', '', ''),
(2176, '', '', '', '', '', '', '', '', '', '', '', '', '', '', 'Ankle Plantar Flexion', 'NOT NULL', '', 14, '\"<field\\n\\ttype=\\\"note\\\"\\n\\tname=\\\"plantar_flexion_header\\\"\\n\\tlabel=\\\"Plantar Flexion\\\"\\n\\theading=\\\"h5\\\"\\n\\tclass=\\\"alert\\\"\\n\\/>\"', 1, '2018-05-18 15:09:10', '2018-05-17 12:08:42', 1, '', 861, 'a1d038fa-e9b9-4d8c-b8d7-2fa5b12f4f63', '', '', '', '', ''),
(2177, '', '', '', '', '', '', '', '', '', '', '', '', '', '', 'Ankle Dorsi Flexion', 'NOT NULL', '', 14, '\"<field\\n\\ttype=\\\"note\\\"\\n\\tname=\\\"dorsi_flexion_header\\\"\\n\\tlabel=\\\"Dorsi Flexion\\\"\\n\\theading=\\\"h5\\\"\\n\\tclass=\\\"alert\\\"\\n\\/>\"', 1, '2018-05-18 15:09:52', '2018-05-17 12:08:42', 1, '', 861, '37722ad7-2cd6-46b0-a210-4501f06c6a96', '', '', '', '', ''),
(2178, '', '', '', '', '', '', '', '', '', '', '', '', '', '', 'Ankle Inversion', 'NOT NULL', '', 14, '\"<field\\n\\ttype=\\\"note\\\"\\n\\tname=\\\"inversion_header\\\"\\n\\tlabel=\\\"Inversion\\\"\\n\\theading=\\\"h5\\\"\\n\\tclass=\\\"alert\\\"\\n\\/>\"', 1, '2018-05-18 15:12:30', '2018-05-17 12:08:42', 1, '', 861, '23ca7539-ade9-407b-9dc4-ab19d4ed95ab', '', '', '', '', ''),
(2179, '', '', '', '', '', '', '', '', '', '', '', '', '', '', 'Ankle Enversion', 'NOT NULL', '', 14, '\"<field\\n\\ttype=\\\"note\\\"\\n\\tname=\\\"enversion_header\\\"\\n\\tlabel=\\\"Enversion\\\"\\n\\theading=\\\"h5\\\"\\n\\tclass=\\\"alert\\\"\\n\\/>\"', 1, '2018-05-18 15:12:53', '2018-05-17 12:08:42', 1, '', 861, 'e78bf054-6440-48be-bd4c-35ed0aa050d4', '', '', '', '', ''),
(2180, '', '', '', '', '', '', '', '', '', '', '', '', '', '', 'Ankle Toe Flexion', 'NOT NULL', '', 14, '\"<field\\n\\ttype=\\\"note\\\"\\n\\tname=\\\"toe_flexion_header\\\"\\n\\tlabel=\\\"Toe Flexion\\\"\\n\\theading=\\\"h5\\\"\\n\\tclass=\\\"alert\\\"\\n\\/>\"', 1, '2018-05-18 15:14:38', '2018-05-17 12:08:42', 1, '', 861, 'bd022784-74d3-45d1-a069-cb28441aee7f', '', '', '', '', ''),
(2181, '', '', '', '', '', '', '', '', '', '', '', '', '', '', 'Ankle Toe Extension', 'NOT NULL', '', 14, '\"<field\\n\\ttype=\\\"note\\\"\\n\\tname=\\\"toe_extension_header\\\"\\n\\tlabel=\\\"Toe Extension\\\"\\n\\theading=\\\"h5\\\"\\n\\tclass=\\\"alert\\\"\\n\\/>\"', 1, '2018-05-18 15:15:21', '2018-05-17 12:08:42', 1, '', 861, '8a81f6f8-2514-4ead-a55f-e8f74273048b', '', '', '', '', ''),
(2182, '', '', '', '', '', '', '', '', '', '', '', '', '', '', 'Ankle Passive ROM', 'NOT NULL', '', 14, '\"<field\\n\\ttype=\\\"note\\\"\\n\\tname=\\\"ro_pa_header\\\"\\n\\tlabel=\\\"Passive ROM\\\"\\n\\theading=\\\"h3\\\"\\n\\tclass=\\\"alert\\\"\\n\\/>\"', 1, '2018-05-18 15:20:57', '2018-05-18 15:22:44', 2, '', 861, 'e2405ac9-e26d-4fb8-83c6-df3fcd0fc2d3', '', '', '', '', ''),
(2183, '', '', '', '', '', '', '', '', '', '', '', '', '', '', 'Ankle Active ROM', 'NOT NULL', '', 14, '\"<field\\n\\ttype=\\\"note\\\"\\n\\tname=\\\"ro_ac_header\\\"\\n\\tlabel=\\\"Active ROM\\\"\\n\\theading=\\\"h3\\\"\\n\\tclass=\\\"alert\\\"\\n\\/>\"', 1, '2018-05-18 15:22:11', '2018-05-17 12:08:42', 1, '', 861, 'ee19cc87-1357-4a57-80b9-b1ab8348d082', '', '', '', '', ''),
(2184, '', '', '', '', '', '', '', '', '', '', '', '', '', '', 'Ankle Range of Motion', 'NOT NULL', '', 14, '\"<field\\n\\ttype=\\\"note\\\"\\n\\tname=\\\"ro_header\\\"\\n\\tlabel=\\\"Range of Motion\\\"\\n\\tdescription=\\\"(Movements performed bilateral and simultaneously. Observe differences in total range of motion and pain or hesitancy with any of the movements)\\\"\\n\\theading=\\\"h2\\\"\\n\\tclass=\\\"alert\\\"\\n\\/>\"', 1, '2018-05-18 15:23:49', '2018-05-18 15:24:03', 2, '', 861, '5d3fa606-f151-4344-be90-c555d6385020', '', '', '', '', ''),
(2185, '', '', '', '', '', '', '', '', '', '', '', '', '', '', 'Ankle Manual Strength Testing', 'NOT NULL', '', 14, '\"<field\\n\\ttype=\\\"note\\\"\\n\\tname=\\\"ms_header\\\"\\n\\tlabel=\\\"Manual Strength Testing\\\"\\n\\theading=\\\"h2\\\"\\n\\tclass=\\\"alert\\\"\\n\\/>\"', 1, '2018-05-18 15:25:45', '2018-05-17 12:08:42', 1, '', 861, '893c708e-bef1-4704-818d-43b78f32feb6', '', '', '', '', ''),
(2186, '', '', '', '', '', '', '', '', '', '', '', '', '', '', 'Ankle Special Tests', 'NOT NULL', '', 14, '\"<field\\n\\ttype=\\\"note\\\"\\n\\tname=\\\"st_header\\\"\\n\\tlabel=\\\"Special Tests\\\"\\n\\theading=\\\"h2\\\"\\n\\tclass=\\\"alert\\\"\\n\\/>\"', 1, '2018-05-18 15:27:01', '2018-05-17 12:08:42', 1, '', 861, 'b3f9616b-ca7f-4618-a5bd-d818657e7a53', '', '', '', '', ''),
(2187, '', '', '', '', '', '', '', '', '', '', '', '', '', '', 'Ankle Functional Testing', 'NOT NULL', '', 14, '\"<field\\n\\ttype=\\\"note\\\"\\n\\tname=\\\"ft_header\\\"\\n\\tlabel=\\\"Functional Testing\\\"\\n\\theading=\\\"h2\\\"\\n\\tclass=\\\"alert\\\"\\n\\/>\"', 1, '2018-05-18 15:27:55', '2018-05-17 12:08:42', 1, '', 861, 'f48c81a6-7e21-4652-b248-7ca5a6db482a', '', '', '', '', ''),
(2188, '', '', '', '', '', '', '', '', '', '', '', '', '', '', 'Comment', 'NOT NULL', '', 14, '\"<field\\n\\ttype=\\\"note\\\"\\n\\tname=\\\"comment\\\"\\n\\tlabel=\\\"Comment\\\"\\n\\theading=\\\"h2\\\"\\n\\tclass=\\\"alert\\\"\\n\\/>\"', 1, '2018-05-18 15:31:11', '2018-05-17 12:08:42', 1, '', 861, 'eceac3c0-e1ec-4ef6-ba51-c9fd7680651b', '', '', '', '', ''),
(2189, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'Postural Deviations Options', 'NOT NULL', '', 4, '\"<field\\n\\ttype=\\\"checkboxes\\\"\\n\\tname=\\\"ob_postural_deviations_options\\\"\\n\\toption=\\\"0|toeing in,\\r\\n1|pronation,\\r\\n2|toeing out,\\r\\n3|genu valgum,\\r\\n4|genu varum,\\r\\n5|high arch,\\r\\n6|flat foot\\\"\\n\\tdescription=\\\"Please select an option\\\"\\n\\trequired=\\\"true\\\"\\n\\/>\"', 1, '2018-05-18 15:45:21', '2018-05-16 19:46:46', 1, '', 859, '0825c5d8-5024-4c12-8ea7-cd4c34824f3b', '', '', '', '', ''),
(2190, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'Ankle Postural Deviations', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"postural_deviations_yesno\\\"\\n\\tlabel=\\\"Postural Deviations\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"0|No,1|Yes\\\"\\n\\tmessage=\\\"Please select\\\"\\n\\trequired=\\\"true\\\"\\n\\/>\"', 1, '2018-05-18 15:49:49', '2018-05-18 20:46:55', 2, '', 859, '282ef8a4-94a1-459a-a195-5bb317bef104', '', '', '', '', ''),
(2191, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'Ankle Gait Problems and Weight Bearing', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"ob_gait_problems_weight_bearing\\\"\\n\\tlabel=\\\"Gait Problems and Weight Bearing\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"0|No,1|Yes\\\"\\n\\tmessage=\\\"Please select\\\"\\n\\trequired=\\\"true\\\"\\n\\/>\"', 1, '2018-05-18 20:40:39', '2018-05-18 20:47:17', 2, '', 859, '2c6a9050-ebcb-44d5-8b25-a786d3c3bb9c', '', '', '', '', ''),
(2192, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'Ankle Obvious Deformity/Swelling', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"ob_obvious_deformity_swelling\\\"\\n\\tlabel=\\\"Obvious Deformity\\/Swelling\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"0|No,1|Yes\\\"\\n\\tmessage=\\\"Please select\\\"\\n\\trequired=\\\"true\\\"\\n\\/>\"', 1, '2018-05-18 20:42:43', '2018-05-18 20:47:28', 2, '', 859, '247a4b46-2cbd-42c3-aa2d-6451d3295855', '', '', '', '', ''),
(2193, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'Ankle Bony Contours Abnormal and Not Symmetrical', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"ob_bony_contours_abnormal_and_not_symmetrical\\\"\\n\\tlabel=\\\"Bony Contours Abnormal and Not Symmetrical\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"0|No,1|Yes\\\"\\n\\tmessage=\\\"Please select\\\"\\n\\trequired=\\\"true\\\"\\n\\/>\"', 1, '2018-05-18 20:44:45', '2018-05-18 20:47:38', 2, '', 859, 'c1ae4763-c0c5-4f8e-acfe-a3203564b2fd', '', '', '', '', ''),
(2194, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'Ankle Colour and Texture of Skin Abnormal', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"ob_colour_and_texture_of_skin_abnormal\\\"\\n\\tlabel=\\\"Colour and Texture of Skin Abnormal\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"0|No,1|Yes\\\"\\n\\tmessage=\\\"Please select\\\"\\n\\trequired=\\\"true\\\"\\n\\/>\"', 1, '2018-05-18 20:46:11', '2018-05-16 19:46:46', 1, '', 859, '065a8642-dcaa-410a-bbb9-89e6e960e3aa', '', '', '', '', ''),
(2195, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'Ankle Crepitus', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"ob_crepitus\\\"\\n\\tlabel=\\\"Crepitus\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"0|No,1|Yes\\\"\\n\\tmessage=\\\"Please select\\\"\\n\\trequired=\\\"true\\\"\\n\\/>\"', 1, '2018-05-18 20:51:28', '2018-05-16 19:46:46', 1, '', 859, '83cd95d7-80af-4611-ab6f-7bc3a8a812f8', '', '', '', '', ''),
(2196, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'Ankle Heat and Redness Present', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"ob_heat_and_redness_present\\\"\\n\\tlabel=\\\"Heat and Redness Present\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"0|No,1|Yes\\\"\\n\\tmessage=\\\"Please select\\\"\\n\\trequired=\\\"true\\\"\\n\\/>\"', 1, '2018-05-18 20:53:19', '2018-05-16 19:46:46', 1, '', 859, '21cd9f18-4ba2-423e-a162-18dd593f287b', '', '', '', '', ''),
(2197, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'Ankle Obvious Pain', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"ob_obvious_pain\\\"\\n\\tlabel=\\\"Obvious Pain\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"0|No,1|Yes\\\"\\n\\tmessage=\\\"Please select\\\"\\n\\trequired=\\\"true\\\"\\n\\/>\"', 1, '2018-05-18 20:54:46', '2018-05-16 19:46:46', 1, '', 859, 'eb0a7ad2-4c54-4dba-9ad7-0192dbdf70f8', '', '', '', '', ''),
(2198, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'Ankle Muscle Atrophy Present', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"ob_muscle_atrophy_present\\\"\\n\\tlabel=\\\"Muscle Atrophy Present\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"0|No,1|Yes\\\"\\n\\tmessage=\\\"Please select\\\"\\n\\trequired=\\\"true\\\"\\n\\/>\"', 1, '2018-05-18 20:56:18', '2018-05-16 19:46:46', 1, '', 859, '25bc4fd0-592a-4f0f-9350-e95b656bea1a', '', '', '', '', ''),
(2199, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'Ankle Shoes Abnormal Uneven or Excessive Wear', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"ob_shoes_abnormal_uneven_or_excessive_wear\\\"\\n\\tlabel=\\\"Shoes Abnormal Uneven or Excessive Wear\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"0|No,1|Yes\\\"\\n\\tmessage=\\\"Please select\\\"\\n\\trequired=\\\"true\\\"\\n\\/>\"', 1, '2018-05-18 20:58:09', '2018-05-16 19:46:46', 1, '', 859, 'f1e2a916-00d7-4c3e-8ceb-87b5c7c38c24', '', '', '', '', ''),
(2200, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'Bilateral Comparrison', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"ob_bilateral_comparrison\\\"\\n\\tlabel=\\\"Bilateral Comparrison\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"0|No,1|Yes\\\"\\n\\tmessage=\\\"Please select\\\"\\n\\trequired=\\\"true\\\"\\n\\/>\"', 1, '2018-05-18 20:59:02', '2018-05-16 19:46:46', 1, '', 859, '4120a0eb-df5f-4687-8a58-97f8561d2ae8', '', '', '', '', ''),
(2201, '', '', '', '', '', '', '', '', '', '', '', '', '', '', 'Note - Relations Implementation', 'NOT NULL', '', 14, '\"<field\\n\\ttype=\\\"note\\\"\\n\\tname=\\\"note_on_relations\\\"\\n\\tlabel=\\\"Relations Implementation\\\"\\n\\tdescription=\\\"<p>Here you are able to combine\\/join multiple fields into one for display in the list view of the admin area.<\\/p>\\r\\n<p>You are able to add calculations, or even model the values into one result.<\\/p>\\\"\\n\\theading=\\\"h4\\\"\\n\\tclass=\\\"alert alert-info\\\"\\n\\/>\"', 1, '2018-05-21 20:31:26', '2018-05-22 22:45:23', 2, '', 33, 'd403e4da-5508-4043-b2a3-721ece6fc3fa', '', '', '', '', ''),
(2202, '', '', '', '', '', '', '', '', '', '', 'MEDIUMTEXT', '', '', '', 'Add Relations', 'NOT NULL', '', 35, '\"<field\\n\\ttype=\\\"subform\\\"\\n\\tname=\\\"addrelations\\\"\\n\\tlabel=\\\"Relations\\\"\\n\\tlayout=\\\"repeatablejcb\\\"\\n\\tmultiple=\\\"true\\\"\\n\\tfields=\\\"2203,2208,2204,2207,2205,2206\\\"\\n\\tdescription=\\\"Relations setup for the the field combination.\\\"\\n\\tdefault=\\\"\\\"\\n\\ticon=\\\"list\\\"\\n\\/>\"', 1, '2018-05-21 20:32:44', '2020-05-28 20:10:19', 10, '', 220, '4e87b302-e17f-468e-8934-e5aaf78d6765', '', '', '', '', ''),
(2203, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'List Fields', 'NOT NULL', '', 6, '\"<field\\n\\ttype=\\\"listfields\\\"\\n\\tname=\\\"listfield\\\"\\n\\tlabel=\\\"List Field\\\"\\n\\tdescription=\\\"Select the target list field.\\\"\\n\\tclass=\\\"fieldLarge\\\"\\n\\tmultiple=\\\"false\\\"\\n\\tdefault=\\\"\\\"\\n\\trequired=\\\"true\\\"\\n\\treadonly=\\\"\\\"\\n\\tdisabled=\\\"\\\"\\n\\tonchange=\\\"getCodeGlueOptions(this)\\\"\\n\\textends=\\\"list\\\"\\n\\ttable=\\\"#__###component###_field\\\"\\n\\tcomponent=\\\"com_###component###\\\"\\n\\tview=\\\"field\\\"\\n\\tviews=\\\"fields\\\"\\n\\tvalue_field=\\\"name\\\"\\n\\tkey_field=\\\"id\\\"\\n\\tprime_php=\\\"1\\\"\\n\\ttype_php_1=\\\"__.o0=base64=Oo.__Ly8gbG9hZCB0aGUgZGIgb3BiamVjdA0KCQkkZGIgPSBKRmFjdG9yeTo6Z2V0REJPKCk7CQkNCgkJLy8gZ2V0IHRoZSBpbnB1dCBmcm9tIHVybA0KCQkkamlucHV0ID0gSkZhY3Rvcnk6OmdldEFwcGxpY2F0aW9uKCktPmlucHV0Ow0KCQkvLyBnZXQgdGhlIGlkDQoJCSRJRCA9ICRqaW5wdXQtPmdldEludCgnaWQnLCAwKTsNCgkJLy8gcmVzdCB0aGUgZmllbGRzIGlkcw0KCQkkZmllbGRJZHMgPSBhcnJheSgpOw0KCQlpZiAoaXNfbnVtZXJpYygkSUQpICYmICRJRCA+PSAxKQ0KCQl7DQoJCQkvLyBnZXQgdGhlIGFkbWluIHZpZXcgSUQNCgkJCSRhZG1pblZpZXcgPSAjIyNDb21wb25lbnQjIyNIZWxwZXI6OmdldFZhcignYWRtaW5fZmllbGRzX3JlbGF0aW9ucycsIChpbnQpICRJRCwgJ2lkJywgJ2FkbWluX3ZpZXcnKTsNCgkJfQ0KCQllbHNlDQoJCXsNCgkJCS8vIGdldCB0aGUgYWRtaW4gdmlldyBJRA0KCQkJJGFkbWluVmlldyA9ICRqaW5wdXQtPmdldEludCgncmVmaWQnLCAwKTsNCgkJfQ0KCQkvLyBtYWtlIHN1cmUgd2UgaGF2ZSB0aGUgYWRtaW4gdmlldyBJRA0KCQlpZiAoaXNfbnVtZXJpYygkYWRtaW5WaWV3KSAmJiAkYWRtaW5WaWV3ID49IDEpDQoJCXsNCgkJCS8vIGdldCBhbGwgdGhlIGZpZWxkcyBsaW5rZWQgdG8gdGhlIGFkbWluIHZpZXcNCgkJCWlmICgkYWRkRmllbGRzID0gIyMjQ29tcG9uZW50IyMjSGVscGVyOjpnZXRWYXIoJ2FkbWluX2ZpZWxkcycsIChpbnQpICRhZG1pblZpZXcsICdhZG1pbl92aWV3JywgJ2FkZGZpZWxkcycpKQ0KCQkJew0KCQkJCWlmICgjIyNDb21wb25lbnQjIyNIZWxwZXI6OmNoZWNrSnNvbigkYWRkRmllbGRzKSkNCgkJCQl7DQoJCQkJCSRhZGRGaWVsZHMgPSBqc29uX2RlY29kZSgkYWRkRmllbGRzLCB0cnVlKTsNCgkJCQkJaWYgKCMjI0NvbXBvbmVudCMjI0hlbHBlcjo6Y2hlY2tBcnJheSgkYWRkRmllbGRzKSkNCgkJCQkJew0KCQkJCQkJZm9yZWFjaCgkYWRkRmllbGRzIGFzICRhZGRGaWVsZCkNCgkJCQkJCXsNCgkJCQkJCQlpZiAoaXNzZXQoJGFkZEZpZWxkWydmaWVsZCddKSAmJiBpc3NldCgkYWRkRmllbGRbJ2xpc3QnXSkgJiYgJGFkZEZpZWxkWydsaXN0J10gPT0gMSkNCgkJCQkJCQl7DQoJCQkJCQkJCSRmaWVsZElkc1tdID0gKGludCkgJGFkZEZpZWxkWydmaWVsZCddOw0KCQkJCQkJCX0NCgkJCQkJCX0NCgkJCQkJfQ0KCQkJCX0NCgkJCX0NCgkJCS8vIGZpbHRlciBieSBmaWVsZHMgbGlua2VkDQoJCQlpZiAoIyMjQ29tcG9uZW50IyMjSGVscGVyOjpjaGVja0FycmF5KCRmaWVsZElkcykpDQoJCQl7DQoJCQkJJHF1ZXJ5ID0gJGRiLT5nZXRRdWVyeSh0cnVlKTsNCgkJCQkkcXVlcnktPnNlbGVjdCgkZGItPnF1b3RlTmFtZShhcnJheSgnYS5pZCcsJ2EubmFtZScsICdhLnhtbCcsICdiLm5hbWUnKSxhcnJheSgnaWQnLCduYW1lJywgJ3htbCcsICd0eXBlJykpKTsNCgkJCQkkcXVlcnktPmZyb20oJGRiLT5xdW90ZU5hbWUoJyNfXyMjI2NvbXBvbmVudCMjI19maWVsZCcsICdhJykpOw0KCQkJCSRxdWVyeS0+am9pbignTEVGVCcsICcjX18jIyNjb21wb25lbnQjIyNfZmllbGR0eXBlIEFTIGIgT04gYi5pZCA9IGEuZmllbGR0eXBlJyk7DQoJCQkJJHF1ZXJ5LT53aGVyZSgkZGItPnF1b3RlTmFtZSgnYS5wdWJsaXNoZWQnKSAuICcgPj0gMScpOw0KCQkJCS8vIG9ubHkgbG9hZCB0aGVzZSBmaWVsZHMNCgkJCQkkcXVlcnktPndoZXJlKCRkYi0+cXVvdGVOYW1lKCdhLmlkJykgLiAnIElOICgnIC4gaW1wbG9kZSgnLCcsICRmaWVsZElkcykgLiAnKScpOw0KCQkJCSRxdWVyeS0+b3JkZXIoJ2EubmFtZSBBU0MnKTsNCgkJCQkkZGItPnNldFF1ZXJ5KChzdHJpbmcpJHF1ZXJ5KTsNCgkJCQkkaXRlbXMgPSAkZGItPmxvYWRPYmplY3RMaXN0KCk7DQoJCQkJJG9wdGlvbnMgPSBhcnJheSgpOw0KCQkJCWlmICgkaXRlbXMpDQoJCQkJew0KCQkJCQkkb3B0aW9uc1tdID0gSkh0bWw6Ol8oJ3NlbGVjdC5vcHRpb24nLCAnJywgSlRleHQ6Ol8oJ1NlbGVjdCBhbiBvcHRpb24nKSk7DQoJCQkJCWZvcmVhY2goJGl0ZW1zIGFzICRpdGVtKQ0KCQkJCQl7DQoJCQkJCQkvLyBnZXQgdGhlIGZpZWxkIG5hbWUgKFRPRE8gdGhpcyBjb3VsZCBzbG93IGRvd24gdGhlIHN5c3RlbSBzbyB3ZSB3aWxsIG5lZWQgdG8gaW1wcm92ZSBvbiB0aGlzKQ0KCQkJCQkJaWYgKGlzc2V0KCRpdGVtLT54bWwpICYmIFtbW0NvbXBvbmVudF1dXUhlbHBlcjo6Y2hlY2tKc29uKCRpdGVtLT54bWwpKQ0KCQkJCQkJew0KCQkJCQkJCSRmaWVsZF94bWwgPSBqc29uX2RlY29kZSgkaXRlbS0+eG1sKTsNCgkJCQkJCQkkZmllbGRfbmFtZSA9IFtbW0NvbXBvbmVudF1dXUhlbHBlcjo6Z2V0QmV0d2VlbigkZmllbGRfeG1sLCduYW1lPSInLCciJyk7DQoJCQkJCQkJJGZpZWxkX25hbWUgPSBbW1tDb21wb25lbnRdXV1IZWxwZXI6OnNhZmVGaWVsZE5hbWUoJGZpZWxkX25hbWUpOw0KCQkJCQkJCSRvcHRpb25zW10gPSBKSHRtbDo6Xygnc2VsZWN0Lm9wdGlvbicsICRpdGVtLT5pZCwgJGl0ZW0tPm5hbWUgLiAnIFsgJyAuICRmaWVsZF9uYW1lIC4gJyAtICcgLiAkaXRlbS0+dHlwZSAuICcgXScpOw0KCQkJCQkJfQ0KCQkJCQkJZWxzZQ0KCQkJCQkJew0KCQkJCQkJCSRvcHRpb25zW10gPSBKSHRtbDo6Xygnc2VsZWN0Lm9wdGlvbicsICRpdGVtLT5pZCwgJGl0ZW0tPm5hbWUgLiAnIFsgZW1wdHkgLSAnIC4gJGl0ZW0tPnR5cGUgLiAnIF0nKTsNCgkJCQkJCX0NCgkJCQkJfQ0KCQkJCX0NCgkJCQlyZXR1cm4gJG9wdGlvbnM7DQoJCQl9DQoJCX0NCgkJcmV0dXJuIGZhbHNlOw==\\\"\\n\\/>\"', 1, '2018-05-22 00:36:13', '2023-10-06 16:04:04', 24, '', 82, '6900c47d-eeb6-4e69-9ce1-82ed6282c712', '', '', '', '', ''),
(2204, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'Join Fields', 'NOT NULL', '', 6, '\"<field\\n\\ttype=\\\"joinfields\\\"\\n\\tname=\\\"joinfields\\\"\\n\\tlabel=\\\"Join Field\\\"\\n\\tdescription=\\\"Select the target join fields.\\\"\\n\\tclass=\\\"fieldLarge\\\"\\n\\tmultiple=\\\"true\\\"\\n\\tonchange=\\\"getCodeGlueOptions(this)\\\"\\n\\textends=\\\"list\\\"\\n\\ttable=\\\"#__###component###_field\\\"\\n\\tcomponent=\\\"com_###component###\\\"\\n\\tview=\\\"field\\\"\\n\\tviews=\\\"fields\\\"\\n\\tvalue_field=\\\"name\\\"\\n\\tkey_field=\\\"id\\\"\\n\\tprime_php=\\\"1\\\"\\n\\ttype_php_1=\\\"__.o0=base64=Oo.__Ly8gbG9hZCB0aGUgZGIgb3BiamVjdA0KCQkkZGIgPSBKRmFjdG9yeTo6Z2V0REJPKCk7CQkNCgkJLy8gZ2V0IHRoZSBpbnB1dCBmcm9tIHVybA0KCQkkamlucHV0ID0gSkZhY3Rvcnk6OmdldEFwcGxpY2F0aW9uKCktPmlucHV0Ow0KCQkvLyBnZXQgdGhlIGlkDQoJCSRJRCA9ICRqaW5wdXQtPmdldEludCgnaWQnLCAwKTsNCgkJLy8gcmVzdCB0aGUgZmllbGRzIGlkcw0KCQkkZmllbGRJZHMgPSBhcnJheSgpOw0KCQlpZiAoaXNfbnVtZXJpYygkSUQpICYmICRJRCA+PSAxKQ0KCQl7DQoJCQkvLyBnZXQgdGhlIGFkbWluIHZpZXcgSUQNCgkJCSRhZG1pblZpZXcgPSAjIyNDb21wb25lbnQjIyNIZWxwZXI6OmdldFZhcignYWRtaW5fZmllbGRzX3JlbGF0aW9ucycsIChpbnQpICRJRCwgJ2lkJywgJ2FkbWluX3ZpZXcnKTsNCgkJfQ0KCQllbHNlDQoJCXsNCgkJCS8vIGdldCB0aGUgYWRtaW4gdmlldyBJRA0KCQkJJGFkbWluVmlldyA9ICRqaW5wdXQtPmdldEludCgncmVmaWQnLCAwKTsNCgkJfQ0KCQlpZiAoaXNfbnVtZXJpYygkYWRtaW5WaWV3KSAmJiAkYWRtaW5WaWV3ID49IDEpDQoJCXsNCgkJCS8vIGdldCBhbGwgdGhlIGZpZWxkcyBsaW5rZWQgdG8gdGhlIGFkbWluIHZpZXcNCgkJCWlmICgkYWRkRmllbGRzID0gIyMjQ29tcG9uZW50IyMjSGVscGVyOjpnZXRWYXIoJ2FkbWluX2ZpZWxkcycsIChpbnQpICRhZG1pblZpZXcsICdhZG1pbl92aWV3JywgJ2FkZGZpZWxkcycpKQ0KCQkJew0KCQkJCWlmICgjIyNDb21wb25lbnQjIyNIZWxwZXI6OmNoZWNrSnNvbigkYWRkRmllbGRzKSkNCgkJCQl7DQoJCQkJCSRhZGRGaWVsZHMgPSBqc29uX2RlY29kZSgkYWRkRmllbGRzLCB0cnVlKTsNCgkJCQkJaWYgKCMjI0NvbXBvbmVudCMjI0hlbHBlcjo6Y2hlY2tBcnJheSgkYWRkRmllbGRzKSkNCgkJCQkJew0KCQkJCQkJZm9yZWFjaCgkYWRkRmllbGRzIGFzICRhZGRGaWVsZCkNCgkJCQkJCXsNCgkJCQkJCQlpZiAoaXNzZXQoJGFkZEZpZWxkWydmaWVsZCddKSAmJiAoIWlzc2V0KCRhZGRGaWVsZFsnbGlzdCddKSB8fCAoJGFkZEZpZWxkWydsaXN0J10gIT0gMSAmJiAkYWRkRmllbGRbJ2xpc3QnXSAhPSAyKSkpDQoJCQkJCQkJew0KCQkJCQkJCQkkZmllbGRJZHNbXSA9IChpbnQpICRhZGRGaWVsZFsnZmllbGQnXTsNCgkJCQkJCQl9DQoJCQkJCQl9DQoJCQkJCX0NCgkJCQl9DQoJCQl9DQoJCQkvLyBmaWx0ZXIgYnkgZmllbGRzIGxpbmtlZA0KCQkJaWYgKCMjI0NvbXBvbmVudCMjI0hlbHBlcjo6Y2hlY2tBcnJheSgkZmllbGRJZHMpKQ0KCQkJew0KCQkJCS8vIGdldCBsaXN0IG9mIGZpZWxkIHR5cGVzIHRoYXQgZG9lcyBub3Qgd29yayBpbiBsaXN0IHZpZXdzIChub3RlLCBzcGFjZXIpDQoJCQkJJHNwYWNlcnMgPSAjIyNDb21wb25lbnQjIyNIZWxwZXI6OmdldFNwYWNlcklkcygpOw0KCQkJCSRxdWVyeSA9ICRkYi0+Z2V0UXVlcnkodHJ1ZSk7DQoJCQkJJHF1ZXJ5LT5zZWxlY3QoJGRiLT5xdW90ZU5hbWUoYXJyYXkoJ2EuaWQnLCdhLm5hbWUnLCd0Lm5hbWUnKSxhcnJheSgnaWQnLCduYW1lJywndHlwZScpKSk7DQoJCQkJJHF1ZXJ5LT5mcm9tKCRkYi0+cXVvdGVOYW1lKCcjX18jIyNjb21wb25lbnQjIyNfZmllbGQnLCAnYScpKTsNCgkJCQkkcXVlcnktPmpvaW4oJ0xFRlQnLCAkZGItPnF1b3RlTmFtZSgnI19fIyMjY29tcG9uZW50IyMjX2ZpZWxkdHlwZScsICd0JykgLiAnIE9OICgnIC4gJGRiLT5xdW90ZU5hbWUoJ2EuZmllbGR0eXBlJykgLiAnID0gJyAuICRkYi0+cXVvdGVOYW1lKCd0LmlkJykgLiAnKScpOw0KCQkJCSRxdWVyeS0+d2hlcmUoJGRiLT5xdW90ZU5hbWUoJ2EucHVibGlzaGVkJykgLiAnID49IDEnKTsNCgkJCQkvLyBvbmx5IGxvYWQgdGhlc2UgZmllbGRzDQoJCQkJJHF1ZXJ5LT53aGVyZSgkZGItPnF1b3RlTmFtZSgnYS5pZCcpIC4gJyBJTiAoJyAuIGltcGxvZGUoJywnLCAkZmllbGRJZHMpIC4gJyknKTsNCgkJCQkvLyBub25lIG9mIHRoZXNlIGZpZWxkIHR5cGVzDQoJCQkJaWYgKCMjI0NvbXBvbmVudCMjI0hlbHBlcjo6Y2hlY2tBcnJheSgkc3BhY2VycykpDQoJCQkJew0KCQkJCQkkcXVlcnktPndoZXJlKCRkYi0+cXVvdGVOYW1lKCdhLmZpZWxkdHlwZScpIC4gJyBOT1QgSU4gKCcgLiBpbXBsb2RlKCcsJywgJHNwYWNlcnMpIC4gJyknKTsNCgkJCQl9DQoJCQkJJHF1ZXJ5LT5vcmRlcignYS5uYW1lIEFTQycpOw0KCQkJCSRkYi0+c2V0UXVlcnkoKHN0cmluZykkcXVlcnkpOw0KCQkJCSRpdGVtcyA9ICRkYi0+bG9hZE9iamVjdExpc3QoKTsNCgkJCQkkb3B0aW9ucyA9IGFycmF5KCk7DQoJCQkJaWYgKCRpdGVtcykNCgkJCQl7DQoJCQkJCWZvcmVhY2goJGl0ZW1zIGFzICRpdGVtKQ0KCQkJCQl7DQoJCQkJCQkkb3B0aW9uc1tdID0gSkh0bWw6Ol8oJ3NlbGVjdC5vcHRpb24nLCAkaXRlbS0+aWQsICRpdGVtLT5uYW1lIC4gJyBbJyAuICRpdGVtLT50eXBlIC4gJ10nKTsNCgkJCQkJfQ0KCQkJCX0NCgkJCQlyZXR1cm4gJG9wdGlvbnM7DQoJCQl9DQoJCX0NCgkJcmV0dXJuIGFycmF5KEpIdG1sOjpfKCdzZWxlY3Qub3B0aW9uJywgJycsIEpUZXh0OjpfKCdBZGQgbW9yZSBmaWVsZHMgdG8gdGhpcyBhZG1pbiB2aWV3JykpKTs=\\\"\\n\\/>\"', 1, '2018-05-22 00:49:56', '2020-05-20 12:00:03', 15, '', 82, '4be65a3e-74fb-470e-b0ff-e7c64d0137c8', '', '', '', '', ''),
(2205, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'Join Type', 'NOT NULL', '', 11, '\"<field\\n\\ttype=\\\"list\\\"\\n\\tname=\\\"join_type\\\"\\n\\tlabel=\\\"Join Type\\\"\\n\\tclass=\\\"list_class fieldLarge\\\"\\n\\tmultiple=\\\"false\\\"\\n\\tvalidate=\\\"INT\\\"\\n\\toption=\\\"1|Concatenate &raquo; Glue,2|Custom &raquo; Code\\\"\\n\\tdefault=\\\"1\\\"\\n\\tonchange=\\\"getCodeGlueOptions(this)\\\"\\n\\/>\"', 1, '2018-05-22 00:56:11', '2020-05-20 12:04:10', 12, '', 82, 'dc83099a-a4cf-44bd-84e8-7e620ac5ccb9', '', '', '', '', ''),
(2206, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', 2, '', '', 'Glue/Code', 'NOT NULL', '', 25, '\"<field\\n\\ttype=\\\"textarea\\\"\\n\\tname=\\\"set\\\"\\n\\tlabel=\\\"Set\\\"\\n\\trows=\\\"4\\\"\\n\\tcols=\\\"5\\\"\\n\\tdescription=\\\"Glue\\/Code\\\"\\n\\tclass=\\\"text_area codefield\\\"\\n\\tfilter=\\\"raw\\\"\\n\\thint=\\\"Glue\\/Code\\\"\\n\\/>\"', 1, '2018-05-22 00:59:13', '2018-05-23 01:42:50', 4, '', 82, '6aee0be2-b48b-4b28-873a-f51ae29562d6', '', '', '', '', ''),
(2207, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'Area (joined)', 'NOT NULL', '', 11, '\"<field\\n\\ttype=\\\"list\\\"\\n\\tname=\\\"area\\\"\\n\\tlabel=\\\"Area\\\"\\n\\tclass=\\\"list_class fieldLarge\\\"\\n\\tmultiple=\\\"false\\\"\\n\\tvalidate=\\\"INT\\\"\\n\\toption=\\\"1|Model (before modelling),3|Model (after modelling),2|View\\\"\\n\\tdefault=\\\"1\\\"\\n\\tonchange=\\\"getCodeGlueOptions(this)\\\"\\n\\/>\"', 1, '2018-05-23 01:27:22', '2020-05-20 12:01:09', 4, '', 82, '7500d8d2-8a55-4bd5-994c-8683be5af0ba', '', '', '', '', ''),
(2208, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Table Column Name', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"column_name\\\"\\n\\tlabel=\\\"Table Column Name\\\"\\n\\tsize=\\\"50\\\"\\n\\tmaxlength=\\\"50\\\"\\n\\tdefault=\\\"Default\\\"\\n\\tclass=\\\"text_area fieldLarge\\\"\\n\\tfilter=\\\"STRING\\\"\\n\\tmessage=\\\"Error! Please add some text here.\\\"\\n\\thint=\\\"Default\\\"\\n\\tautocomplete=\\\"on\\\"\\n\\/>\"', 1, '2018-05-28 04:37:48', '2020-05-20 12:03:51', 2, '', 862, 'cc8eaf15-ee7d-4884-b425-e9177f9898e4', '', '', '', '', ''),
(2209, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'User (Member)', 'NOT NULL', '', 6, '\"<field\\n\\ttype=\\\"memberuser\\\"\\n\\tname=\\\"user\\\"\\n\\tlabel=\\\"Linked User\\\"\\n\\tclass=\\\"list_class\\\"\\n\\tmultiple=\\\"false\\\"\\n\\tvalidate=\\\"number\\\"\\n\\textends=\\\"list\\\"\\n\\tbutton=\\\"false\\\"\\n\\ttable=\\\"#__users\\\"\\n\\tcomponent=\\\"com_users\\\"\\n\\tview=\\\"###view###\\\"\\n\\tviews=\\\"###views###\\\"\\n\\tvalue_field=\\\"name\\\"\\n\\tkey_field=\\\"id\\\"\\n\\tprime_php=\\\"1\\\"\\n\\ttype_php_1=\\\"__.o0=base64=Oo.__Ly8gbG9hZCB0aGUgZGIgb2JqZWN0DQoJCSRkYiA9IEpGYWN0b3J5OjpnZXREQk8oKTsNCgkJLy8gZ2V0IHRoZSBpbnB1dCBmcm9tIHVybA0KCQkkamlucHV0ID0gSkZhY3Rvcnk6OmdldEFwcGxpY2F0aW9uKCktPmlucHV0Ow0KCQkvLyBnZXQgdGhlIGlkDQoJCSRpZCA9ICRqaW5wdXQtPmdldEludCgnaWQnLCAwKTsNCgkJaWYgKCRpZCA+IDApDQoJCXsNCgkJCSR1c2VyID0gIyMjQ29tcG9uZW50IyMjSGVscGVyOjpnZXRWYXIoJyMjI3ZpZXcjIyMnLCAkaWQsICdpZCcsICd1c2VyJyk7DQoJCX0NCgkJLy8gZ2V0IGFsbCByZWFkeSB1c2VkIHVzZXJzIElEcw0KCQkkdXNlcnMgPSAjIyNDb21wb25lbnQjIyNIZWxwZXI6OmdldFZhcnMoJyMjI3ZpZXcjIyMnLCBhcnJheSgnMScsJzQnKSwgJ2FjY291bnQnLCAndXNlcicpOw0KCQlpZiAoaXNzZXQoJHVzZXIpICYmICR1c2VyID4gMCAmJiAjIyNDb21wb25lbnQjIyNIZWxwZXI6OmNoZWNrQXJyYXkoJHVzZXJzKSkNCgkJew0KCQkJLy8gcmVtb3ZlIGZyb20gdXNlcnMgYXJyYXkNCgkJCWlmICgoJGtleSA9IGFycmF5X3NlYXJjaCgkdXNlciwgJHVzZXJzKSkgIT09IGZhbHNlKQ0KCQkJew0KCQkJCXVuc2V0KCR1c2Vyc1ska2V5XSk7DQoJCQl9DQoJCX0NCgkJLy8gZnVuY3Rpb24gdG8gc2V0dXAgdGhlIGdyb3VwIGFycmF5DQoJCSRnZXRHcm91cHMgPSBmdW5jdGlvbiAoJGdyb3Vwcykgew0KCQkJLy8gY29udmVydCB0byBhcnJheQ0KCQkJaWYgKCMjI0NvbXBvbmVudCMjI0hlbHBlcjo6Y2hlY2tKc29uKCRncm91cHMpKQ0KCQkJew0KCQkJCXJldHVybiAoYXJyYXkpIGpzb25fZGVjb2RlKCRncm91cHMsIHRydWUpOw0KCQkJfQ0KCQkJZWxzZWlmIChpc19udW1lcmljKCRncm91cHMpKQ0KCQkJew0KCQkJCXJldHVybiBhcnJheSgkZ3JvdXBzKTsNCgkJCX0NCgkJCXJldHVybiBmYWxzZTsNCgkJfTsNCgkJLy8gZ2V0IHRoZSB1c2VyDQoJCSRteSA9IEpGYWN0b3J5OjpnZXRVc2VyKCk7DQoJCS8vIHN0YXJ0IHF1ZXJ5DQoJCSRxdWVyeSA9ICRkYi0+Z2V0UXVlcnkodHJ1ZSk7DQoJCSRxdWVyeS0+c2VsZWN0KCRkYi0+cXVvdGVOYW1lKGFycmF5KCdhLiMjI0lEIyMjJywnYS4jIyNURVhUIyMjJyksYXJyYXkoJyMjI0lEIyMjJywnIyMjQ09ERV9URVhUIyMjJykpKTsNCgkJJHF1ZXJ5LT5mcm9tKCRkYi0+cXVvdGVOYW1lKCcjIyNUQUJMRSMjIycsICdhJykpOw0KCQkkcXVlcnktPndoZXJlKCRkYi0+cXVvdGVOYW1lKCdhLmJsb2NrJykgLiAnID0gMCcpOw0KCQkvLyBvbmx5IGxvYWQgdXNlciBub3QgYWxyZWFkeSB1c2VkDQoJCWlmIChpc3NldCgkdXNlcnMpICYmICMjI0NvbXBvbmVudCMjI0hlbHBlcjo6Y2hlY2tBcnJheSgkdXNlcnMpKQ0KCQl7DQoJCQkkcXVlcnktPndoZXJlKCRkYi0+cXVvdGVOYW1lKCdhLmlkJykgLiAnIE5PVCBJTiAoJyAuIGltcGxvZGUoJywgJywgJHVzZXJzKSAuICcpJyk7DQoJCX0NCgkJLy8gY2hlY2sgaWYgY3VycmVudCB1c2VyIGlzIGEgc3VwcGVyIGFkbWluDQoJCWlmICghJG15LT5hdXRob3Jpc2UoJ2NvcmUuYWRtaW4nKSkNCgkJew0KCQkJLy8gZ2V0IHVzZXIgYWNjZXNzIGdyb3Vwcw0KCQkJJHVzZXJfYWNjZXNzX2dyb3VwcyA9ICAjIyNDb21wb25lbnQjIyNIZWxwZXI6OmdldEFjY2VzcygkbXksIDIpOw0KCQkJLy8gdXNlciBtdXN0IGhhdmUgYWNjZXNzDQoJCQlpZiAoaXNzZXQoJHVzZXJfYWNjZXNzX2dyb3VwcykgJiYgIyMjQ29tcG9uZW50IyMjSGVscGVyOjpjaGVja0FycmF5KCR1c2VyX2FjY2Vzc19ncm91cHMpKQ0KCQkJew0KCQkJCS8vIGZpbHRlciBteSB1c2VyIGFjY2VzcyBncm91cHMNCgkJCQkkcXVlcnktPmpvaW4oJ0xFRlQnLCAnI19fdXNlcl91c2VyZ3JvdXBfbWFwIEFTIG1hcCBPTiBtYXAudXNlcl9pZCA9IGEuaWQnKTsNCgkJCQkkcXVlcnktPndoZXJlKCdtYXAuZ3JvdXBfaWQgSU4gKCcgLiBpbXBsb2RlKCcsJywgJHVzZXJfYWNjZXNzX2dyb3VwcykgLiAnKScpOw0KCQkJfQ0KCQkJZWxzZWlmICgkaWQgPiAwKQ0KCQkJew0KCQkJCS8vIGxvYWQgdGhpcyBtZW1iZXIgb25seQ0KCQkJCSRxdWVyeS0+d2hlcmUoJGRiLT5xdW90ZU5hbWUoJ2EuaWQnKSAuICcgPSAnIC4gKGludCkgJGlkKTsNCgkJCX0NCgkJCWVsc2UNCgkJCXsNCgkJCQlyZXR1cm4gZmFsc2U7DQoJCQl9DQoJCX0NCgkJJHF1ZXJ5LT5vcmRlcignYS4jIyNURVhUIyMjIEFTQycpOw0KCQkkZGItPnNldFF1ZXJ5KChzdHJpbmcpJHF1ZXJ5KTsNCgkJJGl0ZW1zID0gJGRiLT5sb2FkT2JqZWN0TGlzdCgpOw0KCQkkb3B0aW9ucyA9IGFycmF5KCk7DQoJCWlmICgkaXRlbXMpDQoJCXsNCgkJCS8vIG9ubHkgYWRkIGlmIG1vcmUgdGhlbiBvbmUgdmFsdWUgZm91bmQgb3IgaWYgdGhpcyBpcyB0aGUgYmFjayBlbmQNCgkJCWlmIChjb3VudCggKGFycmF5KSAkaXRlbXMpID4gMSB8fCBKRmFjdG9yeTo6Z2V0QXBwbGljYXRpb24oKS0+aXNDbGllbnQoJ2FkbWluaXN0cmF0b3InKSkNCgkJCXsNCgkJCQkkb3B0aW9uc1tdID0gSkh0bWw6Ol8oJ3NlbGVjdC5vcHRpb24nLCAnJywgJ1NlbGVjdCBhIHVzZXInKTsNCgkJCX0NCgkJCS8vIGJ1aWxkIHRoZSBvcHRpb25zDQoJCQlmb3JlYWNoKCRpdGVtcyBhcyAkaXRlbSkNCgkJCXsNCgkJCQkvLyBjaGVjayBpZiB3ZSBjdXJyZW50IG1lbWJlcg0KCQkJCWlmIChpc3NldCgkdXNlcikgJiYgJHVzZXIgPT0gJGl0ZW0tPiMjI0lEIyMjKQ0KCQkJCXsNCgkJCQkJLy8gcmVtb3ZlIElEDQoJCQkJCSR1c2VyID0gMDsNCgkJCQl9DQoJCQkJJG9wdGlvbnNbXSA9IEpIdG1sOjpfKCdzZWxlY3Qub3B0aW9uJywgJGl0ZW0tPiMjI0lEIyMjLCAkaXRlbS0+IyMjQ09ERV9URVhUIyMjKTsNCgkJCX0NCgkJfQ0KCQkvLyBhZGQgdGhlIGN1cnJlbnQgdXNlciAoVE9ETyB0aGlzIGlzIG5vdCBzdXBwb3NlIHRvIGhhcHBlbikNCgkJaWYgKGlzc2V0KCR1c2VyKSAmJiAkdXNlciA+IDApDQoJCXsNCgkJCS8vIGxvYWQgdGhlIGN1cnJlbnQgbWVtYmVyIG1hbnVhbA0KCQkJJG9wdGlvbnNbXSA9IEpIdG1sOjpfKCdzZWxlY3Qub3B0aW9uJywgKGludCkgJHVzZXIsIEpGYWN0b3J5OjpnZXRVc2VyKCR1c2VyKS0+bmFtZSk7DQoJCX0NCgkJcmV0dXJuICRvcHRpb25zOw==\\\"\\n\\/>\"', 1, '2018-06-11 09:44:23', '2020-06-09 12:47:52', 30, '', 596, '719dbbeb-177b-419c-81bf-846e9ab3ab4a', '', '', '', '', ''),
(2210, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Account', 'NOT NULL', '', 11, '\"<field\\n\\ttype=\\\"list\\\"\\n\\tname=\\\"account\\\"\\n\\tlabel=\\\"Account\\\"\\n\\tdescription=\\\"What Type of Account is this.\\\"\\n\\tmessage=\\\"\\\"\\n\\tclass=\\\"list_class\\\"\\n\\tmultiple=\\\"false\\\"\\n\\trequired=\\\"true\\\"\\n\\tvalidate=\\\"number\\\"\\n\\toption=\\\"1|Main & Login,2|Main,3|Sub,4|Sub & Login\\\"\\n\\tdefault=\\\"1\\\"\\n\\/>\"', 1, '2018-06-13 12:06:14', '2018-07-16 00:35:44', 5, '', 863, 'e249916a-3eb9-4c90-a8c1-84e36ad2caeb', '', '', '', '', ''),
(2211, '', '', '', '', '', '', '', '', 255, '', 'TEXT', '', '', '', 'Types (Multiple - Member)', 'NOT NULL', '', 6, '\"<field\\n\\ttype=\\\"typesonmember\\\"\\n\\tname=\\\"type\\\"\\n\\tlabel=\\\"Type\\\"\\n\\tdescription=\\\"Select the type\\\"\\n\\tclass=\\\"list_class\\\"\\n\\tmultiple=\\\"true\\\"\\n\\trequired=\\\"false\\\"\\n\\textends=\\\"list\\\"\\n\\tbutton=\\\"true\\\"\\n\\ttable=\\\"#__###component###_type\\\"\\n\\tcomponent=\\\"com_###component###\\\"\\n\\tview=\\\"type\\\"\\n\\tviews=\\\"types\\\"\\n\\tvalue_field=\\\"name\\\"\\n\\tkey_field=\\\"id\\\"\\n\\tprime_php=\\\"1\\\"\\n\\ttype_php_1=\\\"__.o0=base64=Oo.__Ly8gbG9hZCB0aGUgZGIgb3BiamVjdA0KCQkkZGIgPSBKRmFjdG9yeTo6Z2V0REJPKCk7DQoJCS8vIGdldCB0aGUgdXNlcg0KCQkkdXNlciA9IEpGYWN0b3J5OjpnZXRVc2VyKCk7DQoJCS8vIHN0YXJ0IHF1ZXJ5DQoJCSRxdWVyeSA9ICRkYi0+Z2V0UXVlcnkodHJ1ZSk7DQoJCSRxdWVyeS0+c2VsZWN0KCRkYi0+cXVvdGVOYW1lKGFycmF5KCdhLiMjI0lEIyMjJywnYS4jIyNURVhUIyMjJyksYXJyYXkoJyMjI0lEIyMjJywnIyMjQ09ERV9URVhUIyMjJykpKTsNCgkJJHF1ZXJ5LT5mcm9tKCRkYi0+cXVvdGVOYW1lKCcjIyNUQUJMRSMjIycsICdhJykpOw0KCQkkcXVlcnktPndoZXJlKCRkYi0+cXVvdGVOYW1lKCdhLnB1Ymxpc2hlZCcpIC4gJyA+PSAxJyk7DQoJCS8vIGNoZWNrIGlmIGN1cnJlbnQgdXNlciBpcyBhbiBhZG1pbg0KCQlpZiAoISR1c2VyLT5hdXRob3Jpc2UoJ2NvcmUub3B0aW9ucycsICdjb21fIyMjY29tcG9uZW50IyMjJykpDQoJCXsNCgkJCS8vIGFjY2VzcyB0eXBlcw0KCQkJJGFjY2Vzc1R5cGVzID0gIyMjQ29tcG9uZW50IyMjSGVscGVyOjpnZXRBY2Nlc3MoJHVzZXIpOw0KCQkJLy8gZ2V0IHRoZSBpbnB1dCBmcm9tIHVybA0KCQkJJGppbnB1dCA9IEpGYWN0b3J5OjpnZXRBcHBsaWNhdGlvbigpLT5pbnB1dDsNCgkJCS8vIGdldCB0aGUgaWQNCgkJCSRpZCA9ICRqaW5wdXQtPmdldEludCgnaWQnLCAwKTsNCgkJCWlmICgkaWQgPiAwKQ0KCQkJew0KCQkJCSR0eXBlcyA9ICMjI0NvbXBvbmVudCMjI0hlbHBlcjo6Z2V0VmFyKCdtZW1iZXInLCAkaWQsICdpZCcsICd0eXBlJyk7DQoJCQkJLy8gY29udmVydCB0eXBlIGpzb24gdG8gYXJyYXkNCgkJCQlpZiAoIyMjQ29tcG9uZW50IyMjSGVscGVyOjpjaGVja0pzb24oJHR5cGVzKSkNCgkJCQl7DQoJCQkJCSR0eXBlcyA9IGpzb25fZGVjb2RlKCR0eXBlcywgdHJ1ZSk7DQoJCQkJfQ0KCQkJCS8vIGNvbnZlcnQgdHlwZSBpbnQgdG8gYXJyYXkNCgkJCQlpZiAoaXNfbnVtZXJpYygkdHlwZXMpICYmICR0eXBlcyA+IDApDQoJCQkJew0KCQkJCQkkdHlwZXMgPSBhcnJheSgkdHlwZXMpOw0KCQkJCX0NCgkJCQkvLyBtYWtlIHN1cmUgd2UgaGF2ZSBhbiBhcnJheQ0KCQkJCWlmICgjIyNDb21wb25lbnQjIyNIZWxwZXI6OmNoZWNrQXJyYXkoJHR5cGVzKSkNCgkJCQl7DQoJCQkJCWZvcmVhY2ggKCR0eXBlcyBhcyAkdHlwZSkNCgkJCQkJew0KCQkJCQkJLy8gY2hlY2sgaWYgcGFydCBvZiB1c2VyIGFjY2Vzcw0KCQkJCQkJaWYgKCEjIyNDb21wb25lbnQjIyNIZWxwZXI6OmNoZWNrQXJyYXkoJGFjY2Vzc1R5cGVzKSB8fCAhaW5fYXJyYXkoJHR5cGUsICRhY2Nlc3NUeXBlcykpDQoJCQkJCQl7DQoJCQkJCQkJJGFjY2Vzc1R5cGVzW10gPSAkdHlwZTsNCgkJCQkJCX0NCgkJCQkJfQ0KCQkJCX0NCgkJCX0NCgkJCS8vIGZpbHRlciBieSBhY2Nlc3MgdHlwZQ0KCQkJaWYgKCMjI0NvbXBvbmVudCMjI0hlbHBlcjo6Y2hlY2tBcnJheSgkYWNjZXNzVHlwZXMpKQ0KCQkJew0KCQkJCSRxdWVyeS0+d2hlcmUoJGRiLT5xdW90ZU5hbWUoJ2EuaWQnKSAuICcgaW4gKCcgLiBpbXBsb2RlKCcsJywgJGFjY2Vzc1R5cGVzKSAuICcpJyk7DQoJCQl9DQoJCQllbHNlDQoJCQl7DQoJCQkJcmV0dXJuIGZhbHNlOw0KCQkJfQ0KCQl9DQoJCSRxdWVyeS0+b3JkZXIoJ2EuIyMjVEVYVCMjIyBBU0MnKTsNCgkJJGRiLT5zZXRRdWVyeSgoc3RyaW5nKSRxdWVyeSk7DQoJCSRpdGVtcyA9ICRkYi0+bG9hZE9iamVjdExpc3QoKTsNCgkJJG9wdGlvbnMgPSBhcnJheSgpOw0KCQlpZiAoJGl0ZW1zKQ0KCQl7DQoJCQlmb3JlYWNoKCRpdGVtcyBhcyAkaXRlbSkNCgkJCXsNCgkJCQkkb3B0aW9uc1tdID0gSkh0bWw6Ol8oJ3NlbGVjdC5vcHRpb24nLCAkaXRlbS0+IyMjSUQjIyMsICRpdGVtLT4jIyNDT0RFX1RFWFQjIyMpOw0KCQkJfQ0KCQl9DQoJCXJldHVybiAkb3B0aW9uczs=\\\"\\n\\/>\"', 1, '2018-06-14 17:20:05', '2018-10-26 15:25:55', 18, '', 384, 'ace12578-2263-45a9-8574-f7a076d1543f', '', '', '', '', ''),
(2212, 1, '', '', '', 'I2pmb3JtX21haW5fbWVtYmVyX2Noem4gew0KICB3aWR0aDogMTAwJSAhaW1wb3J0YW50Ow0KfQ==', '', '', '', 11, '', 'INT', '', '', '', 'Main Members', 'NOT NULL', '', 6, '\"<field\\n\\ttype=\\\"mainmembers\\\"\\n\\tname=\\\"main_member\\\"\\n\\tlabel=\\\"Main Member\\\"\\n\\tdescription=\\\"Select the main member this sub-member belongs to.\\\"\\n\\tclass=\\\"list_class\\\"\\n\\tmultiple=\\\"false\\\"\\n\\trequired=\\\"true\\\"\\n\\textends=\\\"list\\\"\\n\\tbutton=\\\"true\\\"\\n\\ttable=\\\"#__###component###_member\\\"\\n\\tcomponent=\\\"com_###component###\\\"\\n\\tview=\\\"member\\\"\\n\\tviews=\\\"members\\\"\\n\\tvalue_field=\\\"user\\\"\\n\\tkey_field=\\\"id\\\"\\n\\ttype_php_1=\\\"__.o0=base64=Oo.__W0NVU1RPTUNPREU9Z2V0TWFpbk1lbWJlcnNd\\\"\\n\\/>\"', 1, '2018-06-14 17:38:36', '2018-10-21 23:07:28', 24, '', 384, 'a6315956-6f21-4b66-9e5b-e847824602e1', '', '', '', '', ''),
(2213, '', '', '', '', '', '', '', '', 11, '', 'INT', '', '', '', 'Developers (tester)', 'NOT NULL', '', 6, '\"<field\\n\\ttype=\\\"developers\\\"\\n\\tname=\\\"tester\\\"\\n\\tlabel=\\\"Tester\\\"\\n\\tdescription=\\\"Select the global tester account.\\\"\\n\\tclass=\\\"list_class\\\"\\n\\tmultiple=\\\"false\\\"\\n\\tdefault=\\\"0\\\"\\n\\trequired=\\\"true\\\"\\n\\textends=\\\"list\\\"\\n\\tbutton=\\\"true\\\"\\n\\ttable=\\\"#__###component###_developer\\\"\\n\\tcomponent=\\\"com_###component###\\\"\\n\\tview=\\\"developer\\\"\\n\\tviews=\\\"developers\\\"\\n\\tvalue_field=\\\"name\\\"\\n\\tkey_field=\\\"id\\\"\\n\\tprime_php=\\\"1\\\"\\n\\ttype_php_1=\\\"$db = JFactory::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->where($db->quoteName(\'a.published\') . \' >= 1\');\\r\\n$query->where($query->charLength(\'a.email\').\' > 4\');\\r\\n$query->where($query->charLength(\'a.name\').\' > 2\');\\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[] = JHtml::_(\'select.option\', \'\', \'Select an option\');\\r\\n\\\\tforeach($items as $item)\\r\\n\\\\t{\\r\\n\\\\t\\\\t$options[] = JHtml::_(\'select.option\', $item->###ID###, $item->###CODE_TEXT###);\\r\\n\\\\t}\\r\\n}\\r\\n\\r\\nreturn $options;\\\"\\n\\/>\"', 1, '2018-06-16 05:29:18', '0000-00-00 00:00:00', 1, '', 864, '44008d12-86f6-47ec-8d51-3baaa5c99508', '', '', '', '', ''),
(2214, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Text Header', 'NOT NULL', '', 25, '\"<field\\n\\ttype=\\\"textarea\\\"\\n\\tname=\\\"text_header\\\"\\n\\tlabel=\\\"Text Header<br \\/><small>no html allowed<\\/small>\\\"\\n\\trows=\\\"10\\\"\\n\\tcols=\\\"12\\\"\\n\\tdefault=\\\"\\\"\\n\\tdescription=\\\"Enter Text Header Here\\\"\\n\\tmessage=\\\"Error! Please add header here.\\\"\\n\\tclass=\\\"text_area span12\\\"\\n\\tfilter=\\\"STRING\\\"\\n\\thint=\\\"Header Here\\\"\\n\\/>\"', 1, '2018-06-21 21:55:31', '2018-06-21 22:11:21', 2, '', 4, 'd6cff47e-927a-4b4e-a169-eb7f58d2e6a7', '', '', '', '', ''),
(2215, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Text Footer', 'NOT NULL', '', 25, '\"<field\\n\\ttype=\\\"textarea\\\"\\n\\tname=\\\"text_footer\\\"\\n\\tlabel=\\\"Text Footer<br \\/><small>no html allowed<\\/small>\\\"\\n\\trows=\\\"10\\\"\\n\\tcols=\\\"12\\\"\\n\\tdefault=\\\"\\\"\\n\\tdescription=\\\"Enter Text Footer Here\\\"\\n\\tmessage=\\\"Error! Please add footer here.\\\"\\n\\tclass=\\\"text_area span12\\\"\\n\\tfilter=\\\"STRING\\\"\\n\\thint=\\\"Footer Here\\\"\\n\\/>\"', 1, '2018-06-21 21:56:07', '2018-06-21 22:11:33', 2, '', 4, '99041d1f-09fe-4294-8031-01651a4ad0d2', '', '', '', '', ''),
(2216, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', 2, '', '', 'Unsubscribe Key', 'NOT NULL', '', 16, '\"<field\\n\\ttype=\\\"password\\\"\\n\\tname=\\\"unsubscribe_key\\\"\\n\\tlabel=\\\"Unsubscribe Key\\\"\\n\\tsize=\\\"50\\\"\\n\\tdescription=\\\"This key is used to lock the unsubscribe details.\\\"\\n\\tmessage=\\\"Error! Please add key here.\\\"\\n\\tclass=\\\"text_area\\\"\\n\\trequired=\\\"true\\\"\\n\\tfilter=\\\"raw\\\"\\n\\thint=\\\"Your Key Here\\\"\\n\\/>\"', 1, '2018-06-21 22:03:57', '2018-06-21 22:07:37', 2, '', 865, '213343eb-3178-4967-8408-928a08f83107', '', '', '', '', ''),
(2217, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', 2, '', '', 'Unsubscribe URL', 'NOT NULL', '', 27, '\"<field\\n\\ttype=\\\"url\\\"\\n\\tname=\\\"unsubscribe_url\\\"\\n\\tlabel=\\\"Unsubscribe Url\\\"\\n\\tsize=\\\"50\\\"\\n\\tmaxlength=\\\"150\\\"\\n\\tdefault=\\\"\\\"\\n\\tdescription=\\\"Enter unsubscribe url\\\"\\n\\tclass=\\\"text_area\\\"\\n\\trequired=\\\"true\\\"\\n\\tfilter=\\\"url\\\"\\n\\tvalidated=\\\"url\\\"\\n\\tscheme=\\\"http,https\\\"\\n\\tmessage=\\\"Error! Please add unsubscribe url here.\\\"\\n\\thint=\\\"https:\\/\\/www.vdm.io\\/unsubscribe?me=\\\"\\n\\/>\"', 1, '2018-06-21 22:27:03', '2018-06-21 22:27:40', 2, '', 865, '9b549e96-8e25-48c2-9735-78b8755ecfd7', '', '', '', '', ''),
(2218, '', '', 1, '', '', '', '', '', '', '', '', '', 'W0NVU1RPTUNPREU9dWlraXRJbWFnZVVwbG9hZGVyK2ltYWdlLGltYWdlLHByb2ZpbGVd', '', 'Profile Image Uploader (uikit)', 'NOT NULL', '', 14, '\"<field\\n\\ttype=\\\"note\\\"\\n\\tname=\\\"profile_image_uploader\\\"\\n\\tlabel=\\\"Profile Image\\\"\\n\\tdescription=\\\"[CUSTOMCODE=uikitImageUploaderHTML+image,image,profile]\\\"\\n\\/>\"', 1, '2018-06-22 00:49:22', '2018-09-18 20:56:10', 3, '', 110, 'de46b84c-5c5c-42f6-b176-48b2d800e159', '', '', '', '', ''),
(2219, '', '', '', '', '', '', '', '', 11, '', 'INT', '', '', '', 'Profile Height (in pixels)', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"profile_height\\\"\\n\\tlabel=\\\"Profile Height (in pixels)\\\"\\n\\tsize=\\\"50\\\"\\n\\tmaxlength=\\\"150\\\"\\n\\tclass=\\\"text_area\\\"\\n\\tfilter=\\\"INT\\\"\\n\\thint=\\\"Only Numbers\\\"\\n\\tshowon=\\\"crop_profile:1\\\"\\n\\tonchange=\\\"if(!jQuery(this).val().match(\\/^\\\\d+$\\/)){jQuery(this).val(\'\')};\\\"\\n\\/>\"', 1, '2018-06-22 00:51:50', '2018-06-22 00:54:39', 2, '', 7, 'ce4aa5d8-a70e-4b57-a706-ebbf11f37f85', '', '', '', '', ''),
(2220, '', '', '', '', '', '', '', '', 11, '', 'INT', '', '', '', 'Profile Width (in pixels)', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"profile_width\\\"\\n\\tlabel=\\\"Profile Width (in pixels)\\\"\\n\\tsize=\\\"50\\\"\\n\\tmaxlength=\\\"150\\\"\\n\\tclass=\\\"text_area\\\"\\n\\tfilter=\\\"INT\\\"\\n\\thint=\\\"Only Numbers\\\"\\n\\tshowon=\\\"crop_profile:1\\\"\\n\\tonchange=\\\"if(!jQuery(this).val().match(\\/^\\\\d+$\\/)){jQuery(this).val(\'\')};\\\"\\n\\/>\"', 1, '2018-06-22 00:51:52', '2018-06-22 00:56:08', 2, '', 7, '80d950ec-dc8b-4ab7-83bf-1176e8b65e9c', '', '', '', '', ''),
(2221, '', '', '', '', '', '', '', '', 255, '', 'TEXT', '', '', '', 'Profile Image Key', 'NOT NULL', 5, 9, '\"<field\\n\\ttype=\\\"hidden\\\"\\n\\tname=\\\"profile_image\\\"\\n\\tdefault=\\\"\\\"\\n\\/>\"', 1, '2018-06-22 00:52:29', '2018-06-22 00:52:50', 2, '', 729, '0a9a96b7-b646-4f4b-a5b7-b43ce95456b8', '', '', '', '', ''),
(2222, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'Crop Profiles', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"crop_profile\\\"\\n\\tlabel=\\\"Crop Profile Images\\\"\\n\\tdescription=\\\"Set if all profile images that are added should be cropped.\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"1|Yes,0|No\\\"\\n\\tdefault=\\\"0\\\"\\n\\/>\"', 1, '2018-06-22 00:53:39', '2017-01-27 01:23:58', 1, '', 765, 'cdab84b5-5961-4308-a232-5abe647db898', '', '', '', '', ''),
(2223, '', '', 1, '', '', '', '', '', '', '', '', '', 'W0NVU1RPTUNPREU9dWlraXRJbWFnZVVwbG9hZGVyK2ltYWdlLGltYWdlLG90aGVyXQ==', '', 'Other Image Uploader (uikit)', 'NOT NULL', '', 14, '\"<field\\n\\ttype=\\\"note\\\"\\n\\tname=\\\"other_image_uploader\\\"\\n\\tlabel=\\\"Other Image\\\"\\n\\tdescription=\\\"[CUSTOMCODE=uikitImageUploaderHTML+image,image,other]\\\"\\n\\/>\"', 1, '2018-06-22 00:54:56', '2018-09-18 20:56:32', 3, '', 110, '98147974-82c8-4422-b1bd-03776e5cb1d3', '', '', '', '', ''),
(2224, '', '', '', '', '', '', '', '', 64, '', 'VARCHAR', '', '', '', 'Landline Phone', 'NOT NULL', '', 23, '\"<field\\n\\ttype=\\\"tel\\\"\\n\\tname=\\\"landline_phone\\\"\\n\\tlabel=\\\"Landline Phone\\\"\\n\\tsize=\\\"60\\\"\\n\\tmaxlength=\\\"150\\\"\\n\\tdefault=\\\"\\\"\\n\\tdescription=\\\"The landline phone number.\\\"\\n\\tclass=\\\"text_area\\\"\\n\\tfilter=\\\"STRING\\\"\\n\\tvalidated=\\\"tel\\\"\\n\\tmessage=\\\"Error! Please add landline phone number here.\\\"\\n\\thint=\\\"Landline Phone Here\\\"\\n\\/>\"', 1, '2018-06-22 21:18:14', '2018-06-22 21:19:03', 2, '', 7, '0a1aaeb9-c5cc-49a8-8c10-006ac825dcb6', '', '', '', '', ''),
(2225, '', '', '', '', '', '', '', '', 64, '', 'VARCHAR', 2, '', '', 'Select an editor (JCB)', 'NOT NULL', '', 37, '\"<field\\n\\ttype=\\\"plugins\\\"\\n\\tname=\\\"editor\\\"\\n\\tlabel=\\\"Select an editor\\\"\\n\\tdefault=\\\"none\\\"\\n\\tdescription=\\\"Select the editor you would like to use as the JCB global editor for all custom coding areas.\\\"\\n\\tfolder=\\\"editors\\\"\\n\\tfilter=\\\"cmd\\\"\\n\\/>\"', 1, '2018-07-06 02:24:39', '2018-07-06 02:30:22', 3, '', 866, '9a4f54dc-95ce-4881-8ac0-12b1b40caf8c', '', '', '', '', ''),
(2226, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Add PHP (getForm Method)', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"add_php_getform\\\"\\n\\tlabel=\\\"Add PHP (getForm Method)\\\"\\n\\tdescription=\\\"\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"1|Yes,0|No\\\"\\n\\tdefault=\\\"0\\\"\\n\\trequired=\\\"true\\\"\\n\\/>\"', 1, '2018-07-06 02:46:36', '2018-08-04 05:23:08', 2, '', 188, '562bc505-cc89-4a55-956a-b53e1a87ef46', '', '', '', '', ''),
(2227, '', '', '', '', '', '', '', '', '', '', 'MEDIUMTEXT', '', '', '', 'PHP (getForm - JModelForm)', 'NOT NULL', 2, 8, '\"<field\\n\\ttype=\\\"editor\\\"\\n\\tname=\\\"php_getform\\\"\\n\\tlabel=\\\"PHP getForm Method<br \\/><small>Target (array) $data values & (bool) $loadData & (object) $form & (int) $id (item id if found). <\\/small>\\\"\\n\\tdescription=\\\"Add PHP Here that should run in the getForm 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, '2018-07-06 02:49:35', '2019-07-08 14:20:21', 3, '', 119, '120e7c82-ff53-44ec-bfa0-a1413d100d18', '', '', '', '', ''),
(2228, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'WHMCS Buy Link', 'NOT NULL', '', 27, '\"<field\\n\\ttype=\\\"url\\\"\\n\\tname=\\\"whmcs_buy_link\\\"\\n\\tlabel=\\\"Buy Link<br \\/><small>(to get WHMCS License Key)<\\/small>\\\"\\n\\tsize=\\\"60\\\"\\n\\tmaxlength=\\\"150\\\"\\n\\tdescription=\\\"Enter link where your WHMCS License key can be bought.\\\"\\n\\tclass=\\\"text_area\\\"\\n\\tfilter=\\\"url\\\"\\n\\tvalidated=\\\"url\\\"\\n\\tscheme=\\\"http,https\\\"\\n\\tmessage=\\\"Error! Please add link here.\\\"\\n\\thint=\\\"http:\\/\\/www.example.com\\/buy-whmcs-key\\\"\\n\\/>\"', 1, '2018-07-08 00:07:14', '2018-07-08 00:12:27', 2, '', 185, 'f7042749-eda8-482e-a92b-74c51e551e73', '', '', '', '', ''),
(2229, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', 2, '', '', 'Account Token', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"token\\\"\\n\\tlabel=\\\"TOKEN\\\"\\n\\tsize=\\\"10\\\"\\n\\tmaxlength=\\\"50\\\"\\n\\tdefault=\\\"\\\"\\n\\tdescription=\\\"Will be auto generated if left empty\\\"\\n\\tclass=\\\"text_area\\\"\\n\\treadonly=\\\"false\\\"\\n\\tdisabled=\\\"false\\\"\\n\\trequired=\\\"false\\\"\\n\\tfilter=\\\"STRING\\\"\\n\\tvalidate=\\\"uniquetoken\\\"\\n\\tmessage=\\\"<b>TOKEN already used!<\\/b><br \\/>The token must be a unique value! <em>Please try another.<\\/em>\\\"\\n\\thint=\\\"uniqueValue\\\"\\n\\tautocomplete=\\\"off\\\"\\n\\/>\"', 1, '2018-07-21 06:03:09', '2020-05-02 13:30:49', 10, '', 867, '26b8495a-4e51-404a-a881-741c3ec336fe', '', '', '', '', ''),
(2230, 1, '', '', '', 'I2pmb3JtX3Byb2plY3RfY2h6biwgLmZ1bGwtd2lkdGggIHsNCndpZHRoOiAxMDAlICFpbXBvcnRhbnQ7DQp9', '', '', '', '', '', 'TEXT', '', '', '', 'Not in Projects (repo)', 'NOT NULL', '', 6, '\"<field\\n\\ttype=\\\"projects\\\"\\n\\tname=\\\"not_projects\\\"\\n\\tlabel=\\\"Not in These Projects\\\"\\n\\tdescription=\\\"\\\"\\n\\tmessage=\\\"\\\"\\n\\tclass=\\\"list_class full-width\\\"\\n\\tmultiple=\\\"true\\\"\\n\\tdefault=\\\"0\\\"\\n\\trequired=\\\"false\\\"\\n\\textends=\\\"list\\\"\\n\\tbutton=\\\"true\\\"\\n\\ttable=\\\"#__###component###_project\\\"\\n\\tcomponent=\\\"com_###component###\\\"\\n\\tview=\\\"project\\\"\\n\\tviews=\\\"projects\\\"\\n\\tvalue_field=\\\"project\\\"\\n\\tkey_field=\\\"id\\\"\\n\\tprime_php=\\\"1\\\"\\n\\ttype_php_1=\\\"$db = JFactory::getDBO();\\r\\n$query = $db->getQuery(true);\\r\\n$query->select($db->quoteName(array(\'a.###ID###\',\'a.###TEXT###\',\'a.name\'),array(\'###ID###\',\'###CODE_TEXT###\',\'name\')));\\r\\n$query->from($db->quoteName(\'###TABLE###\', \'a\'));\\r\\n$query->where($db->quoteName(\'a.published\') . \' >= 1\');\\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\\\\tforeach($items as $item)\\r\\n\\\\t{\\r\\n\\\\t\\\\t$options[] = JHtml::_(\'select.option\', $item->###ID###, $item->name.\'\\/\'.$item->###CODE_TEXT###);\\r\\n\\\\t}\\r\\n}\\r\\n\\r\\nreturn $options;\\\"\\n\\/>\"', 1, '2018-07-24 20:03:07', '2018-07-24 22:25:58', 5, '', 845, 'fe7b7c1d-2ff8-45dc-88db-edde723cf6ef', '', '', '', '', ''),
(2231, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Groups (giz -basic) (Xy)', 'NOT NULL', 1, 29, '\"<field \\r\\n\\ttype=\\\"usergroup\\\" \\r\\n\\tname=\\\"memberbasicgroup\\\" \\r\\n\\tlabel=\\\" User Member Basic Group\\\" \\r\\n\\trequired=\\\"\\\"\\r\\n\\tdescription=\\\"Select the member basic group\\/s\\\"\\r\\n\\tmultiple=\\\"true\\\"\\r\\n\\/>\"', -2, '2015-09-28 05:53:02', '2018-07-30 22:43:44', 2, '', 50, '7a8a6ea1-2f19-405e-92e0-6cb7f403ff06', '', '', '', '', ''),
(2232, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Groups (giz - advance) (Xy)', 'NOT NULL', 1, 29, '\"<field \\r\\n\\ttype=\\\"usergroup\\\" \\r\\n\\tname=\\\"advancedmembergroup\\\" \\r\\n\\tlabel=\\\" User Member Advanced Group\\\" \\r\\n\\trequired=\\\"\\\"\\r\\n\\tdescription=\\\"Select the member advanced group\\/s\\\"\\r\\n\\tmultiple=\\\"true\\\"\\r\\n\\/>\"', -2, '2015-09-28 05:53:32', '2018-07-30 22:43:44', 2, '', 50, '3f952c2e-83c5-4c89-98b8-746a9a313105', '', '', '', '', ''),
(2233, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Result Path (Xy)', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"resultpath\\\" \\r\\n\\tlabel=\\\"Result Path\\\" \\r\\n\\tsize=\\\"10\\\" \\r\\n\\tmaxlength=\\\"150\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tdescription=\\\"Please set the path where the result json files should be stored, make sure it is outside the public folder.\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\tfilter=\\\"PATH\\\" \\r\\n\\tmessage=\\\"Error! Please add the path where the result json should be sotred here.\\\" \\r\\n\\thint=\\\"\\/home\\/username\\/temp\\\" \\r\\n\\/>\"', -2, '2015-08-28 14:09:24', '2018-07-30 22:43:44', 2, '', 592, 'cee28a3f-dc5c-4723-aca7-eea274388340', '', '', '', '', ''),
(2234, '', '', '', '', '', '', '', '', 64, '', 'VARCHAR', 2, '', '', 'Information URL (CBP) (Xy)', 'NOT NULL', '', 27, '\"<field \\r\\n\\ttype=\\\"url\\\" \\r\\n\\tname=\\\"information_url\\\" \\r\\n\\tlabel=\\\"Information URL\\\" \\r\\n\\tsize=\\\"50\\\" \\r\\n\\tmaxlength=\\\"150\\\" \\r\\n\\tdescription=\\\"Enter the URL where more information is found about the CPB tool.\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\tfilter=\\\"url\\\" \\r\\n\\tvalidated=\\\"url\\\" \\r\\n\\tmessage=\\\"Error! Please add information url here.\\\" \\r\\n\\thint=\\\"http:\\/\\/www.yourwebsite.com\\/\\\" \\r\\n\\/>\"', -2, '2016-08-11 20:44:31', '2018-07-30 22:43:44', 3, '', 637, '66549ed3-0bd9-44c9-b59c-0f9d347ae482', '', '', '', '', ''),
(2235, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', 2, '', '', 'Name (Xy)', 'NOT NULL', '', 24, '\"<field\\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"name\\\" \\r\\n\\tlabel=\\\"Name\\\" \\r\\n\\tsize=\\\"40\\\" \\r\\n\\tmaxlength=\\\"150\\\" \\r\\n\\tdescription=\\\"Enter Name Here\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\treadonly=\\\"false\\\" \\r\\n\\tdisabled=\\\"false\\\" \\r\\n\\trequired=\\\"true\\\"\\r\\n\\tfilter=\\\"STRING\\\" \\r\\n\\tmessage=\\\"Error! Please add name here.\\\" \\r\\n\\thint=\\\"Name Here\\\" \\r\\n\\/>\"', -2, '2015-03-19 17:30:59', '2018-07-30 22:43:44', 8, '', 4, 'b8b54a62-099c-420f-9a06-d615784b1571', '', '', '', '', ''),
(2236, '', '', '', '', '', '', '', '', 64, '', 'CHAR', '', '', '', 'Alias (Xy)', 'NOT NULL', '', 24, '\"<field type=\\\"text\\\" name=\\\"alias\\\" label=\\\"Alias\\\" filter=\\\"STRING\\\" hint=\\\"Auto-generated from name\\\"\\/>\"', -2, '2015-04-09 13:46:04', '2018-07-30 22:43:44', 2, '', 216, 'f85a4c76-86e2-4b1d-bef4-8bffd8fec1b4', '', '', '', '', ''),
(2237, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Description (full width) (Xy)', 'NOT NULL', '', 25, '\"<field \\r\\n\\ttype=\\\"textarea\\\" \\r\\n\\tname=\\\"description\\\" \\r\\n\\tlabel=\\\"Description\\\" \\r\\n\\trows=\\\"11\\\" \\r\\n\\tcols=\\\"10\\\" \\r\\n\\tdescription=\\\"Add Description Here\\\" \\r\\n\\tclass=\\\"text_area span12\\\" \\r\\n\\tfilter=\\\"HTML\\\" \\r\\n\\thint=\\\"Add Description Here\\\" \\r\\n\\/>\"', -2, '2015-03-19 18:20:49', '2018-07-30 22:43:44', 4, '', 265, 'e7045f3a-6162-4b51-a286-20a44643c15c', '', '', '', '', ''),
(2238, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', 2, '', '', 'Import Name (Xy)', 'NOT NULL', '', 24, '\"<field\\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"importname\\\" \\r\\n\\tlabel=\\\"Import Name\\\" \\r\\n\\tsize=\\\"40\\\" \\r\\n\\tmaxlength=\\\"150\\\" \\r\\n\\tdescription=\\\"Enter Import Name Here\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\treadonly=\\\"false\\\" \\r\\n\\tdisabled=\\\"false\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\tfilter=\\\"STRING\\\" \\r\\n\\tmessage=\\\"Error! Please add import name here.\\\" \\r\\n\\thint=\\\"Import Name Here\\\" \\r\\n\\/>\"', -2, '2015-07-09 18:22:10', '2018-07-30 22:43:44', 1, '', 564, '9b6519b8-b78d-41ea-a4c7-d5d0d7cf64eb', '', '', '', '', ''),
(2239, '', '', '', '', '', '', '', '', 64, '', 'VARCHAR', 2, '', '', 'Causes/Risks (ref) (Xy)', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"ref\\\" \\r\\n\\tlabel=\\\"Ref Nr\\\" \\r\\n\\tsize=\\\"10\\\" \\r\\n\\tmaxlength=\\\"50\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tdescription=\\\"The reference number for this cause\\/risk\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\treadonly=\\\"false\\\" \\r\\n\\tdisabled=\\\"false\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\tfilter=\\\"CMD\\\" \\r\\n\\tvalidate=\\\"\\\" \\r\\n\\tmessage=\\\"Error! Please add the reference number here.\\\" \\r\\n\\thint=\\\"Ref Number Here\\\" \\r\\n\\/>\"', -2, '2015-07-16 02:01:46', '2018-07-30 22:43:44', 2, '', 576, '20c9cede-5a5e-499e-a142-8ad340ed3ee3', '', '', '', '', ''),
(2240, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'Import ID (Xy)', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"import_id\\\" \\r\\n\\tlabel=\\\"Import ID\\\" \\r\\n\\tsize=\\\"50\\\" \\r\\n\\tmaxlength=\\\"150\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tdescription=\\\"This is the id that is used during import of the health data.\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\tfilter=\\\"ID\\\" \\r\\n\\trequired=\\\"true\\\"\\r\\n\\tmessage=\\\"Error! Please add some the import ID here.\\\" \\r\\n\\/>\"', -2, '2016-05-14 02:46:55', '2018-07-30 22:43:44', 3, '', 707, '34a29040-ea38-49f4-8a98-6f462588592d', '', '', '', '', ''),
(2241, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'Country (dynamic - giz) (Xy)', 'NOT NULL', '', 6, '\"<field \\r\\n\\ttype=\\\"countries\\\" \\r\\n\\tname=\\\"country\\\" \\r\\n\\tlabel=\\\"Country\\\" \\r\\n\\tdescription=\\\"List of available countries\\\" \\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\tmultiple=\\\"false\\\" \\r\\n\\tdefault=\\\"0\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\treadonly=\\\"\\\" \\r\\n\\tdisabled=\\\"\\\" \\r\\n\\textends=\\\"list\\\" \\r\\n\\ttable=\\\"#__###component###_country\\\" \\r\\n\\tcomponent=\\\"com_###component###\\\" \\r\\n\\tview=\\\"country\\\" \\r\\n\\tviews=\\\"countries\\\" \\r\\n\\tvalue_field=\\\"name\\\" \\r\\n\\tkey_field=\\\"id\\\" \\r\\n\\ttype_php_1=\\\"\\/\\/ Get the user object.\\\\n\\\\t\\\\t$user = Factory::getUser();\\\\n\\\\t\\\\t\\/\\/ Create a new query object.\\\\n\\\\t\\\\t$db = Factory::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\');\\\\n\\\\t\\\\tif (!$user->authorise(\'core.options\', \'com_###component###\'))\\\\n\\\\t\\\\t{\\\\n\\\\t\\\\t\\\\t$countries = ###Component###Helper::hisCountries($user->id);\\\" \\r\\n\\ttype_php_6=\\\"\\\\tif (ArrayHelper::check($countries))\\\\n\\\\t\\\\t\\\\t{\\\" \\r\\n\\ttype_php_7=\\\"\\\\t\\\\t$countries = implode(\',\',$countries);\\\\n\\\\t\\\\t\\\\t\\\\t\\/\\/ only load this users companies\\\\n\\\\t\\\\t\\\\t\\\\t$query->where(\'a.id IN (\' . $countries . \')\');\\\\n\\\\t\\\\t\\\\t}\\\\n\\\\t\\\\t\\\\telse\\\\n\\\\t\\\\t\\\\t{\\\" \\r\\n\\ttype_php_8=\\\"\\\\t\\\\t\\/\\/ dont allow user to see any countries\\\" \\r\\n\\ttype_php_9=\\\"\\\\t\\\\t$query->where(\'a.id = -4\');\\\\n\\\\t\\\\t\\\\t}\\\\n\\\\t\\\\t}\\\" \\r\\n\\ttype_php_10=\\\"$query->order(\'a.###TEXT### ASC\');\\\" \\r\\n\\ttype_php_11=\\\"$db->setQuery((string)$query);\\\" \\r\\n\\ttype_php_12=\\\"$items = $db->loadObjectList();\\\" \\r\\n\\ttype_php_13=\\\"$options = array();\\\" \\r\\n\\ttype_php_14=\\\"if ($items)\\\" \\r\\n\\ttype_php_15=\\\"{\\\\n\\\\t\\\\t\\\\t$options[] = Html::_(\'select.option\', \'\', \'Select a country\');\\\"\\r\\n\\ttype_php_16=\\\"\\\\tforeach($items as $item)\\\\n\\\\t\\\\t\\\\t{\\\\n\\\\t\\\\t\\\\t\\\\t$options[] = Html::_(\'select.option\', $item->###ID###, $item->###CODE_TEXT###);\\\" \\r\\n\\ttype_php_17=\\\"\\\\t}\\\\n\\\\t\\\\t}\\\" \\r\\n\\ttype_php_18=\\\"\\\" \\r\\n\\ttype_php_19=\\\"return $options;\\\" \\r\\n\\/>\"', -2, '2015-07-15 23:44:46', '2018-07-30 22:43:44', 9, '', 567, '5eb90ee1-2434-4b73-8244-bd7939801ccc', '', '', '', '', ''),
(2242, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'Causes/Risks (dynamic) (Xy)', 'NOT NULL', '', 6, '\"<field \\r\\n\\ttype=\\\"causesrisks\\\" \\r\\n\\tname=\\\"causerisk\\\" \\r\\n\\tlabel=\\\"Cause\\/Risk\\\" \\r\\n\\tdescription=\\\"\\\" \\r\\n\\tclass=\\\"list_class span12\\\" \\r\\n\\tmultiple=\\\"false\\\" \\r\\n\\tdefault=\\\"0\\\" \\r\\n\\trequired=\\\"\\\" \\r\\n\\treadonly=\\\"\\\" \\r\\n\\tdisabled=\\\"\\\" \\r\\n\\textends=\\\"list\\\" \\r\\n\\ttable=\\\"#__###component###_causerisk\\\" \\r\\n\\tcomponent=\\\"com_###component###\\\" \\r\\n\\tview=\\\"causerisk\\\" \\r\\n\\tviews=\\\"causesrisks\\\" \\r\\n\\tvalue_field=\\\"name\\\" \\r\\n\\tkey_field=\\\"id\\\" \\r\\n\\ttype_php_1=\\\"$db = Factory::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.ref\'),array(\'###ID###\',\'###CODE_TEXT###\',\'ref\')));\\\" \\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.ref 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_13=\\\"\\\\tforeach($items as $item)\\\" \\r\\n\\ttype_php_14=\\\"\\\\t{\\\\n\\\\t\\\\t\\\\t\\\\t$ref = explode(\'.\',$item->ref);\\\\n\\\\t\\\\t\\\\t\\\\t$key = explode(\'.0\',$item->ref);\\\\n\\\\t\\\\t\\\\t\\\\t$key = implode(\'.\',$key);\\\\n\\\\t\\\\t\\\\t\\\\t$spacer = array();\\\" \\r\\n\\ttype_php_15=\\\"\\\\t\\\\tforeach ($ref as $nr => $space)\\\\n\\\\t\\\\t\\\\t\\\\t{\\\\n\\\\t\\\\t\\\\t\\\\t\\\\tif ($nr > 1)\\\\n\\\\t\\\\t\\\\t\\\\t\\\\t{\\\\n\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t$spacer[] = \'|&mdash;\';\\\\n\\\\t\\\\t\\\\t\\\\t\\\\t}\\\\n\\\\t\\\\t\\\\t\\\\t}\\\\n\\\\t\\\\t\\\\t\\\\tif (ArrayHelper::check($spacer))\\\\n\\\\t\\\\t\\\\t\\\\t{\\\\n\\\\t\\\\t\\\\t\\\\t\\\\t$options[] = Html::_(\'select.option\', $item->###ID###, implode(\'\',$spacer).\' \'.$item->###CODE_TEXT###.\'&nbsp;(\'.$key.\')\');\\\\n\\\\t\\\\t\\\\t\\\\t}\\\\n\\\\t\\\\t\\\\t\\\\telse\\\\n\\\\t\\\\t\\\\t\\\\t{\\\\n\\\\t\\\\t\\\\t\\\\t\\\\t$options[] = Html::_(\'select.option\', $item->###ID###, $item->###CODE_TEXT###.\'&nbsp;(\'.$key.\')\');\\\\n\\\\t\\\\t\\\\t\\\\t}\\\" \\r\\n\\ttype_php_16=\\\"\\\\t}\\\" \\r\\n\\ttype_php_17=\\\"}\\\" \\r\\n\\ttype_php_19=\\\"return $options;\\\" \\r\\n\\/>\"', -2, '2015-07-16 00:44:33', '2018-07-30 22:43:44', 12, '', 571, 'cd0dd3a1-0f4a-4968-b3d2-91bff3f87e80', '', '', '', '', ''),
(2243, '', '', '', '', '', '', 1, '', 7, '', 'CHAR', '', '', '', 'Absenteeism scaling factor Males (Xy)', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"yld_scaling_factor_Males\\\" \\r\\n\\tlabel=\\\"Absenteeism Scaling Male\\\" \\r\\n\\tsize=\\\"10\\\" \\r\\n\\tmaxlength=\\\"10\\\" \\r\\n\\tdefault=\\\"1\\\" \\r\\n\\tdescription=\\\"Absenteeism scaling factor for males\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\treadonly=\\\"false\\\" \\r\\n\\tdisabled=\\\"false\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\tfilter=\\\"CMD\\\" \\r\\n\\tvalidate=\\\"\\\" \\r\\n\\tmessage=\\\"Error! Please add scaling factor for males here.\\\" \\r\\n\\thint=\\\"Number Here\\\"\\r\\n\\/>\"', -2, '2015-07-16 01:27:03', '2018-07-30 22:43:44', 5, '', 574, 'ae486eba-0264-4252-bed7-a7d71de69d70', '', '', '', '', ''),
(2244, '', '', '', '', '', '', 1, '', 7, '', 'CHAR', '', '', '', 'Absenteeism scaling factor Females (Xy)', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"yld_scaling_factor_Females\\\" \\r\\n\\tlabel=\\\"Absenteeism Scaling Female\\\" \\r\\n\\tsize=\\\"10\\\" \\r\\n\\tmaxlength=\\\"10\\\" \\r\\n\\tdefault=\\\"1\\\" \\r\\n\\tdescription=\\\"Absenteeism scaling factor for females\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\treadonly=\\\"false\\\" \\r\\n\\tdisabled=\\\"false\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\tfilter=\\\"CMD\\\" \\r\\n\\tvalidate=\\\"\\\" \\r\\n\\tmessage=\\\"Error! Please add scaling factor for females here.\\\" \\r\\n\\thint=\\\"Number Here\\\"\\r\\n\\/>\"', -2, '2015-07-16 01:27:52', '2018-07-30 22:43:44', 4, '', 574, 'cf6c2525-b2d8-46ef-b6c1-ba1c75924de0', '', '', '', '', ''),
(2245, '', '', '', '', '', '', 1, '', 7, '', 'CHAR', '', '', '', 'mortality scaling factor Males (Xy)', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"mortality_scaling_factor_Males\\\" \\r\\n\\tlabel=\\\"Mortality Scaling Male\\\" \\r\\n\\tsize=\\\"10\\\" \\r\\n\\tmaxlength=\\\"10\\\" \\r\\n\\tdefault=\\\"1\\\" \\r\\n\\tdescription=\\\"Mortality scaling factor for males\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\treadonly=\\\"false\\\" \\r\\n\\tdisabled=\\\"false\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\tfilter=\\\"CMD\\\" \\r\\n\\tvalidate=\\\"\\\" \\r\\n\\tmessage=\\\"Error! Please add scaling factor for males here.\\\" \\r\\n\\thint=\\\"Number Here\\\"\\r\\n\\/>\"', -2, '2015-07-16 01:29:40', '2018-07-30 22:43:44', 3, '', 574, 'c6eb3794-0f7c-4736-9b8e-f59d91e03664', '', '', '', '', ''),
(2246, '', '', '', '', '', '', 1, '', 7, '', 'CHAR', '', '', '', 'mortality scaling factor Females (Xy)', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"mortality_scaling_factor_Females\\\" \\r\\n\\tlabel=\\\"Mortality Scaling Female\\\" \\r\\n\\tsize=\\\"10\\\" \\r\\n\\tmaxlength=\\\"10\\\" \\r\\n\\tdefault=\\\"1\\\" \\r\\n\\tdescription=\\\"Mortality scaling factor for females\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\treadonly=\\\"false\\\" \\r\\n\\tdisabled=\\\"false\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\tfilter=\\\"CMD\\\" \\r\\n\\tvalidate=\\\"\\\" \\r\\n\\tmessage=\\\"Error! Please add scaling factor for females here.\\\" \\r\\n\\thint=\\\"Number Here\\\"\\r\\n\\/>\"', -2, '2015-07-16 01:30:20', '2018-07-30 22:43:44', 3, '', 574, 'ff8e64d3-1018-4154-a9a8-ba3d843ba80b', '', '', '', '', ''),
(2247, '', '', '', '', '', '', 1, '', 7, '', 'CHAR', '', '', '', 'presenteeism scaling factor Females (Xy)', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"presenteeism_scaling_factor_Females\\\" \\r\\n\\tlabel=\\\"Presenteeism Scaling Female\\\" \\r\\n\\tsize=\\\"10\\\" \\r\\n\\tmaxlength=\\\"10\\\" \\r\\n\\tdefault=\\\"1\\\" \\r\\n\\tdescription=\\\"Presenteeism scaling factor for females\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\treadonly=\\\"false\\\" \\r\\n\\tdisabled=\\\"false\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\tfilter=\\\"CMD\\\" \\r\\n\\tvalidate=\\\"\\\" \\r\\n\\tmessage=\\\"Error! Please add scaling factor for females here.\\\" \\r\\n\\thint=\\\"Number Here\\\"\\r\\n\\/>\"', -2, '2015-07-16 01:31:17', '2018-07-30 22:43:44', 3, '', 574, '835cb29e-18c8-4767-ac27-c7cd93f45136', '', '', '', '', ''),
(2248, '', '', '', '', '', '', 1, '', 7, '', 'CHAR', '', '', '', 'presenteeism scaling factor Males (Xy)', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"presenteeism_scaling_factor_Males\\\" \\r\\n\\tlabel=\\\"Presenteeism Scaling Male\\\" \\r\\n\\tsize=\\\"10\\\" \\r\\n\\tmaxlength=\\\"10\\\" \\r\\n\\tdefault=\\\"1\\\" \\r\\n\\tdescription=\\\"Presenteeism scaling factor for Males\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\treadonly=\\\"false\\\" \\r\\n\\tdisabled=\\\"false\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\tfilter=\\\"CMD\\\" \\r\\n\\tvalidate=\\\"\\\" \\r\\n\\tmessage=\\\"Error! Please add scaling factor for males here.\\\" \\r\\n\\thint=\\\"Number Here\\\"\\r\\n\\/>\"', -2, '2015-07-16 01:31:58', '2018-07-30 22:43:44', 3, '', 574, '192e92d6-fb24-421c-8a0e-ed3738e46e30', '', '', '', '', ''),
(2249, '', '', '', '', '', '', 1, '', 7, '', 'CHAR', '', '', '', 'Health scaling factor (Xy)', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"health_scaling_factor\\\" \\r\\n\\tlabel=\\\"Health Scaling\\\" \\r\\n\\tsize=\\\"10\\\" \\r\\n\\tmaxlength=\\\"10\\\" \\r\\n\\tdefault=\\\"1\\\" \\r\\n\\tdescription=\\\"Health scaling factor\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\treadonly=\\\"false\\\" \\r\\n\\tdisabled=\\\"false\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\tfilter=\\\"CMD\\\" \\r\\n\\tvalidate=\\\"\\\" \\r\\n\\tmessage=\\\"Error! Please add scaling factor for health here.\\\" \\r\\n\\thint=\\\"Number Here\\\"\\r\\n\\/>\"', -2, '2015-10-01 20:18:27', '2018-07-30 22:43:44', 2, '', 574, 'e1f18ccf-6702-4e2b-8e8d-93c14a033c27', '', '', '', '', ''),
(2250, 1, '', 1, '', 'LnRleHRfYXJlYXsNCgloZWlnaHQ6IDIwMHB4Ow0KCXdpZHRoOiAxMDAlOw0KfQ==', '', '', '', 255, '', 'VARCHAR', '', 'Ly8gYWRkIHRoZSBjYWxjdWxhdG9yIGJ1dHRvbg0KdmFyIGNhbF9idXR0b24gPSAnPGJyIC8+PGJyIC8+PGEgY2xhc3M9ImJ0biBidG4tc21hbGwgYnRuLXN1Y2Nlc3MiIGhyZWY9Imh0dHBzOi8vd3d3LnN0YWZmaGVhbHRoY2JwLmNvbS9kb3dubG9hZC9TY2FsaW5nX0ZhY3Rvcl9DYWxjdWxhdG9yX0NCUFRfM18wLnhsc3giPiA8c3BhbiBjbGFzcz0iaWNvbi1kb3dubG9hZCBpY29uLXdoaXRlIj48L3NwYW4+IENhbGN1bGF0b3IgPC9hPic7DQpqUXVlcnkoJyNqZm9ybV9jYXVzZXJpc2snKS5jbG9zZXN0KCcuY29udHJvbHMnKS5hcHBlbmQoY2FsX2J1dHRvbik7', '', 'Reference (scaling factors) (Xy)', 'NOT NULL', '', 25, '\"<field \\r\\n\\ttype=\\\"textarea\\\" \\r\\n\\tname=\\\"reference\\\" \\r\\n\\tlabel=\\\"Reference\\\" \\r\\n\\trows=\\\"10\\\" \\r\\n\\tcols=\\\"5\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tdescription=\\\"Please give reference to the source of your data used in the scaling factors.\\\" \\r\\n\\tclass=\\\"text_area span12\\\" \\r\\n\\tfilter=\\\"HTML\\\" \\r\\n\\thint=\\\"\\/\\/ Source of your data\\\" \\r\\n\\trequired=\\\"\\\" \\r\\n\\/>\"', -2, '2015-07-16 01:46:08', '2018-07-30 22:43:44', 5, '', 575, '72962c75-dcc1-4b11-97eb-c8795dbc0dd0', '', '', '', '', ''),
(2251, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'Company (dynamic) (Xy)', 'NOT NULL', '', 6, '\"<field \\r\\n\\ttype=\\\"company\\\" \\r\\n\\tname=\\\"company\\\" \\r\\n\\tlabel=\\\"Company\\\" \\r\\n\\tdescription=\\\"\\\" \\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\tmultiple=\\\"false\\\" \\r\\n\\tdefault=\\\"0\\\" \\r\\n\\trequired=\\\"\\\" \\r\\n\\treadonly=\\\"\\\" \\r\\n\\tdisabled=\\\"\\\" \\r\\n\\textends=\\\"list\\\" \\r\\n\\tbutton=\\\"true\\\"\\r\\n\\ttable=\\\"#__###component###_company\\\" \\r\\n\\tcomponent=\\\"com_###component###\\\" \\r\\n\\tview=\\\"company\\\" \\r\\n\\tviews=\\\"companies\\\" \\r\\n\\tvalue_field=\\\"name\\\" \\r\\n\\tkey_field=\\\"id\\\" \\r\\n\\ttype_php_1=\\\"\\/\\/ Get the user object.\\\\n\\\\t\\\\t$user = Factory::getUser();\\\\n\\\\t\\\\t\\/\\/ Create a new query object.\\\" \\r\\n\\ttype_php_2=\\\"$db = Factory::getDBO();\\\\n\\\\t\\\\t$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=\\\"if (!$user->authorise(\'core.options\', \'com_###component###\'))\\\\n\\\\t\\\\t{\\\\n\\\\t\\\\t\\\\t$companies = ###Component###Helper::hisCompanies($user->id);\\\" \\r\\n\\ttype_php_7=\\\"\\\\tif (ArrayHelper::check($companies))\\\\n\\\\t\\\\t\\\\t{\\\" \\r\\n\\ttype_php_8=\\\"\\\\t\\\\t$companies = implode(\',\',$companies);\\\\n\\\\t\\\\t\\\\t\\\\t\\/\\/ only load this users companies\\\" \\r\\n\\ttype_php_9=\\\"\\\\t\\\\t$query->where(\'a.id IN (\' . $companies . \')\');\\\" \\r\\n\\ttype_php_10=\\\"\\\\t}\\\\n\\\\t\\\\t\\\\telse\\\\n\\\\t\\\\t\\\\t{\\\" \\r\\n\\ttype_php_11=\\\"\\\\t\\\\t\\/\\/ dont allow user to see any companies\\\\n\\\\t\\\\t\\\\t\\\\t$query->where(\'a.id = -4\');\\\" \\r\\n\\ttype_php_12=\\\"\\\\t}\\\\n\\\\t\\\\t}\\\" \\r\\n\\ttype_php_13=\\\"$query->order(\'a.###TEXT### ASC\');\\\\n\\\\t\\\\t$db->setQuery((string)$query);\\\" \\r\\n\\ttype_php_14=\\\"$items = $db->loadObjectList();\\\" \\r\\n\\ttype_php_15=\\\"$options = array();\\\\n\\\\t\\\\tif ($items)\\\\n\\\\t\\\\t{\\\\n\\\\t\\\\t\\\\t$userIs = ###Component###Helper::userIs($user->id);\\\\n\\\\t\\\\t\\\\tif (3 == $userIs || $user->authorise(\'core.options\', \'com_###component###\'))\\\" \\r\\n\\ttype_php_16=\\\"\\\\t{\\\\n\\\\t\\\\t\\\\t\\\\t$options[] = Html::_(\'select.option\', 0, \'-- \'.Text::_(\'A Country\').\' --\');\\\\n\\\\t\\\\t\\\\t}\\\" \\r\\n\\ttype_php_17=\\\"\\\\tforeach($items as $item)\\\" \\r\\n\\ttype_php_18=\\\"\\\\t{\\\\n\\\\t\\\\t\\\\t\\\\t$options[] = Html::_(\'select.option\', $item->###ID###, $item->###CODE_TEXT###);\\\" \\r\\n\\ttype_php_19=\\\"\\\\t}\\\\n\\\\t\\\\t}\\\\n\\\\t\\\\treturn $options;\\\" \\r\\n\\/>\"', -2, '2015-07-18 12:39:27', '2018-07-30 22:43:44', 14, '', 578, 'f9eb0b38-e758-4045-adbc-5d8d98034386', '', '', '', '', ''),
(2252, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', 2, '', '', 'Name (intervention) (Xy)', 'NOT NULL', '', 24, '\"<field\\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"name\\\" \\r\\n\\tlabel=\\\"Name\\\" \\r\\n\\tsize=\\\"40\\\" \\r\\n\\tmaxlength=\\\"150\\\" \\r\\n\\tdescription=\\\"Enter Intervention Name Here\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\treadonly=\\\"false\\\" \\r\\n\\tdisabled=\\\"false\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\tfilter=\\\"STRING\\\" \\r\\n\\tmessage=\\\"Error! Please add intervention name here.\\\" \\r\\n\\thint=\\\"Name Here\\\" \\r\\n\\/>\"', -2, '2015-08-22 15:38:42', '2018-07-30 22:43:44', 1, '', 4, '076b2dba-17dc-4c27-bc6f-4b54833261cf', '', '', '', '', ''),
(2253, '', '', '', '', '', '', '', '', 1, '', 'INT', '', '', '', 'Not Required (Xy)', 'NOT NULL', '', 9, '\"<field \\r\\n\\ttype=\\\"hidden\\\" \\r\\n\\tname=\\\"not_required\\\" \\r\\n\\tdefault=\\\"[]\\\" \\r\\n\\/>\"', -2, '2015-05-08 16:19:16', '2018-07-30 22:43:44', 1, '', 19, '18335186-c367-4bdd-8d7f-c74aa5bc0e97', '', '', '', '', ''),
(2254, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Type (Intervention) (Xy)', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"type\\\" \\r\\n\\tlabel=\\\"Type\\\" \\r\\n\\tdescription=\\\"Select the intervention type.\\\" \\r\\n\\tclass=\\\"btn-group\\\" \\r\\n\\toption=\\\"1|Single,2|Cluster\\\" \\r\\n\\tdefault=\\\"1\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\/>\"', -2, '2015-07-28 22:22:15', '2018-07-30 22:43:44', 3, '', 521, 'd308af55-c3a6-430f-9b8a-69ed6b9f2ff4', '', '', '', '', ''),
(2255, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Intervention (Xy)', 'NOT NULL', '', 19, '\"<field \\r\\n\\ttype=\\\"repeatable\\\" \\r\\n\\tname=\\\"intervention\\\" \\r\\n\\tlabel=\\\"Set Intervention\\\" \\r\\n\\tdescription=\\\"Here you can add & edit interventions.\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tid=\\\"intervention\\\" \\r\\n\\tclass=\\\"interventions\\\" \\r\\n\\tselect=\\\"Edit\\/Add\\\" \\r\\n\\ticon=\\\"list\\\" \\r\\n\\tmaximum=\\\"100\\\" \\r\\n\\tfields=\\\"2256,2257,2258,2259\\\" \\r\\n\\/>\"', -2, '2015-09-03 01:53:49', '2018-07-30 22:43:44', 4, '', 533, 'd79c5df2-2ded-408d-8053-776fbb7e06ad', '', '', '', '', ''),
(2256, 1, '', '', '', 'LmNhdXNld2lkdGggew0KCXdpZHRoOiAxMDAlOw0KfQ==', '', '', '', 11, '', 'INT', 2, '', '', 'Causes/Risks (dynamic intervention) (Xy)', 'NOT NULL', '', 6, '\"<field \\r\\n\\ttype=\\\"causesrisks\\\" \\r\\n\\tname=\\\"causerisk\\\" \\r\\n\\tlabel=\\\"Cause\\/Risk\\\" \\r\\n\\tdescription=\\\"\\\" \\r\\n\\tclass=\\\"list_class causewidth\\\" \\r\\n\\tmultiple=\\\"false\\\" \\r\\n\\tdefault=\\\"0\\\" \\r\\n\\trequired=\\\"\\\" \\r\\n\\treadonly=\\\"\\\" \\r\\n\\tdisabled=\\\"\\\" \\r\\n\\textends=\\\"list\\\" \\r\\n\\ttable=\\\"#__###component###_causerisk\\\" \\r\\n\\tcomponent=\\\"com_###component###\\\" \\r\\n\\tview=\\\"causerisk\\\" \\r\\n\\tviews=\\\"causesrisks\\\" \\r\\n\\tvalue_field=\\\"name\\\" \\r\\n\\tkey_field=\\\"id\\\" \\r\\n\\ttype_php_1=\\\"$db = Factory::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.ref\'),array(\'###ID###\',\'###CODE_TEXT###\',\'ref\')));\\\" \\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.ref 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_13=\\\"\\\\tforeach($items as $item)\\\" \\r\\n\\ttype_php_14=\\\"\\\\t{\\\\n\\\\t\\\\t\\\\t\\\\t$ref = explode(\'.\',$item->ref);\\\\n\\\\t\\\\t\\\\t\\\\t$key = explode(\'.0\',$item->ref);\\\\n\\\\t\\\\t\\\\t\\\\t$key = implode(\'.\',$key);\\\\n\\\\t\\\\t\\\\t\\\\t$spacer = array();\\\" \\r\\n\\ttype_php_15=\\\"\\\\t\\\\tforeach ($ref as $nr => $space)\\\\n\\\\t\\\\t\\\\t\\\\t{\\\\n\\\\t\\\\t\\\\t\\\\t\\\\tif ($nr > 1)\\\\n\\\\t\\\\t\\\\t\\\\t\\\\t{\\\\n\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t$spacer[] = \'|&mdash;\';\\\\n\\\\t\\\\t\\\\t\\\\t\\\\t}\\\\n\\\\t\\\\t\\\\t\\\\t}\\\\n\\\\t\\\\t\\\\t\\\\tif (ArrayHelper::check($spacer))\\\\n\\\\t\\\\t\\\\t\\\\t{\\\\n\\\\t\\\\t\\\\t\\\\t\\\\t$options[] = Html::_(\'select.option\', $item->###ID###, implode(\'\',$spacer).\' \'.$item->###CODE_TEXT###.\'&nbsp;(\'.$key.\')\');\\\\n\\\\t\\\\t\\\\t\\\\t}\\\\n\\\\t\\\\t\\\\t\\\\telse\\\\n\\\\t\\\\t\\\\t\\\\t{\\\\n\\\\t\\\\t\\\\t\\\\t\\\\t$options[] = Html::_(\'select.option\', $item->###ID###, $item->###CODE_TEXT###.\'&nbsp;(\'.$key.\')\');\\\\n\\\\t\\\\t\\\\t\\\\t}\\\" \\r\\n\\ttype_php_16=\\\"\\\\t}\\\" \\r\\n\\ttype_php_17=\\\"}\\\" \\r\\n\\ttype_php_19=\\\"return $options;\\\" \\r\\n\\/>\"', -2, '2015-09-03 02:08:12', '2018-07-30 22:43:44', 4, '', 571, 'eb14dacc-3f05-4a6c-9f75-30cc2a5ddaea', '', '', '', '', ''),
(2257, '', '', '', '', '', '', '', '', '', '', 'CHAR', '', '', '', 'Cost Per Employee (Xy)', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"cpe\\\" \\r\\n\\tlabel=\\\"Cost Per Employee\\\" \\r\\n\\tsize=\\\"10\\\" \\r\\n\\tmaxlength=\\\"50\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tdescription=\\\"Estimate cost per employee\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\tfilter=\\\"INT\\\" \\r\\n\\/>\"', -2, '2015-09-03 01:44:20', '2018-07-30 22:43:44', 1, '', 594, '52b940da-f670-4eb2-9034-29fc805b7509', '', '', '', '', ''),
(2258, '', '', '', '', '', '', '', '', '', '', 'CHAR', '', '', '', 'Morbidity Reduction (Xy)', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"mbr\\\" \\r\\n\\tlabel=\\\"Morbidity Reduction\\\" \\r\\n\\tsize=\\\"10\\\" \\r\\n\\tmaxlength=\\\"50\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tdescription=\\\"Percentage estimate\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\tfilter=\\\"INT\\\" \\r\\n\\/>\"', -2, '2015-09-03 01:45:20', '2018-07-30 22:43:44', 2, '', 594, 'e79ae02a-caf6-4159-894f-83b54b4a62aa', '', '', '', '', ''),
(2259, '', '', '', '', '', '', '', '', '', '', 'CHAR', '', '', '', 'Mortality Reduction (Xy)', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"mtr\\\" \\r\\n\\tlabel=\\\"Mortality Reduction\\\" \\r\\n\\tsize=\\\"10\\\" \\r\\n\\tmaxlength=\\\"50\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tdescription=\\\"Percentage estimate\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\tfilter=\\\"INT\\\" \\r\\n\\/>\"', -2, '2015-09-03 01:46:13', '2018-07-30 22:43:44', 1, '', 594, '8c164747-d603-4d7f-8e5c-a7fc7693780e', '', '', '', '', ''),
(2260, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Sharing Options (Xy)', 'NOT NULL', '', 11, '\"<field \\r\\n\\ttype=\\\"list\\\" \\r\\n\\tname=\\\"share\\\" \\r\\n\\tlabel=\\\"Sharing Options\\\" \\r\\n\\tdescription=\\\"Select a sharing option\\\" \\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\tmultiple=\\\"false\\\" \\r\\n\\tfilter=\\\"INT\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\toption=\\\"3|All Service Providers and Admin,2|Only My Service Provider,1|Only Me\\\" \\r\\n\\tdefault=\\\"3\\\" \\r\\n\\/>\"', -2, '2015-07-28 22:39:07', '2018-07-30 22:43:44', 2, '', 569, '36b6d380-5bfd-489a-93dc-e451ef13895f', '', '', '', '', ''),
(2261, '', '', '', '', '', '', '', '', 64, '', 'VARCHAR', '', '', '', 'Interventions (dynamic) (Xy)', 'NOT NULL', 1, 6, '\"<field \\r\\n\\ttype=\\\"interventions\\\" \\r\\n\\tname=\\\"interventions\\\" \\r\\n\\tlabel=\\\"Interventions\\\" \\r\\n\\tdescription=\\\"\\\" \\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\tmultiple=\\\"true\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\treadonly=\\\"\\\" \\r\\n\\tdisabled=\\\"\\\"\\r\\n\\tbutton=\\\"false\\\" \\r\\n\\textends=\\\"list\\\" \\r\\n\\ttable=\\\"#__###component###_intervention\\\" \\r\\n\\tcomponent=\\\"com_###component###\\\" \\r\\n\\tview=\\\"intervention\\\" \\r\\n\\tviews=\\\"interventions\\\" \\r\\n\\tvalue_field=\\\"name\\\" \\r\\n\\tkey_field=\\\"id\\\" \\r\\n\\ttype_php_1=\\\"\\/\\/ get the input from url\\\\n\\\\t\\\\t$jinput = JFactory::getApplication()->input;\\\\n\\\\t\\\\t\\/\\/ get the view name & id\\\\n\\\\t\\\\t$interId = $jinput->getInt(\'id\', 0);\\\\n\\\\t\\\\t\\/\\/ Get the user object.\\\\n\\\\t\\\\t$user = JFactory::getUser();\\\\n\\\\t\\\\t$userIs = CostbenefitprojectionHelper::userIs($user->id);\\\\n\\\\t\\\\t$db = JFactory::getDBO();\\\\n\\\\t\\\\t$query = $db->getQuery(true);\\\\n\\\\t\\\\t$query->select($db->quoteName(array(\'a.id\',\'a.name\',\'a.company\',\'a.share\'),array(\'id\',\'interventions_name\',\'company\',\'share\')));\\\\n\\\\t\\\\t$query->from($db->quoteName(\'#__costbenefitprojection_intervention\', \'a\'));\\\\n\\\\t\\\\t$query->where($db->quoteName(\'a.published\') . \' = 1\');\\\\n\\\\t\\\\t$query->where($db->quoteName(\'a.id\') . \' != \' . $interId);\\\\n\\\\t\\\\tif (!$user->authorise(\'core.admin\'))\\\\n\\\\t\\\\t{\\\\n\\\\t\\\\t\\\\t$companies = CostbenefitprojectionHelper::hisCompanies($user->id);\\\\n\\\\t\\\\t\\\\tif (CostbenefitprojectionHelper::checkArray($companies))\\\\n\\\\t\\\\t\\\\t{\\\\n\\\\t\\\\t\\\\t\\\\t$companies = implode(\',\',$companies);\\\\n\\\\t\\\\t\\\\t\\\\t\\/\\/ only load this users companies\\\\n\\\\t\\\\t\\\\t\\\\t$query->where(\'a.company IN (\' . $companies . \')\');\\\\n\\\\t\\\\t\\\\t}\\\\n\\\\t\\\\t\\\\telse\\\\n\\\\t\\\\t\\\\t{\\\\n\\\\t\\\\t\\\\t\\\\t\\/\\/ dont allow user to see any companies\\\\n\\\\t\\\\t\\\\t\\\\t$query->where(\'a.company = -4\');\\\\n\\\\t\\\\t\\\\t}\\\\n\\\\t\\\\t}\\\\n\\\\t\\\\t$query->order(\'a.name ASC\');\\\\n\\\\t\\\\t$db->setQuery((string)$query);\\\\n\\\\t\\\\t$items = $db->loadObjectList();\\\\n\\\\t\\\\t$options = array();\\\\n\\\\t\\\\tif ($items)\\\\n\\\\t\\\\t{\\\\n\\\\t\\\\t\\\\tforeach($items as $item)\\\\n\\\\t\\\\t\\\\t{\\\\n\\\\t\\\\t\\\\t\\\\tif (!CostbenefitprojectionHelper::checkIntervetionAccess($item->id,$item->share,$item->company))\\\\n\\\\t\\\\t\\\\t\\\\t{\\\\n\\\\t\\\\t\\\\t\\\\t\\\\tcontinue;\\\\n\\\\t\\\\t\\\\t\\\\t}\\\\n\\\\t\\\\t\\\\t\\\\tif (1 == $userIs)\\\\n\\\\t\\\\t\\\\t\\\\t{\\\\n\\\\t\\\\t\\\\t\\\\t\\\\t$options[] = JHtml::_(\'select.option\', $item->id, $item->interventions_name);\\\\n\\\\t\\\\t\\\\t\\\\t}\\\\n\\\\t\\\\t\\\\t\\\\telse\\\\n\\\\t\\\\t\\\\t\\\\t{\\\\n\\\\t\\\\t\\\\t\\\\t\\\\t$compName = CostbenefitprojectionHelper::getId(\'company\', $item->company, \'id\', \'name\');\\\\n\\\\t\\\\t\\\\t\\\\t\\\\t$options[] = JHtml::_(\'select.option\', $item->id, $item->interventions_name . \' (\'.$compName.\')\');\\\\n\\\\t\\\\t\\\\t\\\\t}\\\\n\\\\t\\\\t\\\\t}\\\\n\\\\t\\\\t}\\\\n\\\\t\\\\treturn $options;\\\" \\r\\n\\/>\"', -2, '2015-09-04 00:58:00', '2018-07-30 22:43:44', 6, '', 571, 'e47e4577-e68d-4154-84ef-623d1f121964', '', '', '', '', ''),
(2262, 1, '', '', '', 'LnRleHRfYXJlYXsNCgloZWlnaHQ6IDIwMHB4Ow0KCXdpZHRoOiAxMDAlOw0KfQ==', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Reference (intervention) (Xy)', 'NOT NULL', '', 25, '\"<field \\r\\n\\ttype=\\\"textarea\\\" \\r\\n\\tname=\\\"reference\\\" \\r\\n\\tlabel=\\\"Reference\\\" \\r\\n\\trows=\\\"10\\\" \\r\\n\\tcols=\\\"5\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tdescription=\\\"Please give reference to the source of your data used in the intervention.\\\" \\r\\n\\tclass=\\\"text_area span12\\\" \\r\\n\\tfilter=\\\"HTML\\\" \\r\\n\\thint=\\\"\\/\\/ Source of your data\\\" \\r\\n\\trequired=\\\"\\\" \\r\\n\\/>\"', -2, '2015-07-28 22:27:03', '2018-07-30 22:43:44', 3, '', 575, 'a395dff6-0a3b-4fc1-9108-06b629d3264d', '', '', '', '', ''),
(2263, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'Coverage (Xy)', 'NOT NULL', '', 10, '\"<field \\r\\n\\ttype=\\\"integer\\\" \\r\\n\\tname=\\\"coverage\\\" \\r\\n\\tlabel=\\\"Coverage\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tdescription=\\\"Proportion of employees covered\\\" \\r\\n\\tclass=\\\"\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\tfirst=\\\"10\\\" \\r\\n\\tlast=\\\"100\\\" \\r\\n\\tstep=\\\"10\\\" \\r\\n\\/>\"', -2, '2015-07-28 22:25:59', '2018-07-30 22:43:44', 2, '', 586, '0a6ae2c2-a48d-4eaf-b71d-63f9a1d9b6b4', '', '', '', '', ''),
(2264, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'Duration (Xy)', 'NOT NULL', '', 10, '\"<field \\r\\n\\ttype=\\\"integer\\\" \\r\\n\\tname=\\\"duration\\\" \\r\\n\\tlabel=\\\"Duration (years)\\\" \\r\\n\\tdefault=\\\"1\\\" \\r\\n\\tdescription=\\\"Set in number of years\\\" \\r\\n\\tclass=\\\"\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\tfirst=\\\"1\\\" \\r\\n\\tlast=\\\"30\\\" \\r\\n\\tstep=\\\"1\\\"\\r\\n\\/>\"', -2, '2015-10-01 20:14:56', '2018-07-30 22:43:44', 6, '', 609, '5883f034-f438-4517-b264-411fb005c49c', '', '', '', '', ''),
(2265, '', '', '', '', '', '', '', '', 7, '', 'INT', '', '', '', 'Decimalplace (currency) (Xy)', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\"\\r\\n\\tname=\\\"decimalplace\\\"\\r\\n\\tlabel=\\\"Decimal place\\\"\\r\\n\\tsize=\\\"40\\\"\\r\\n\\tmaxlength=\\\"2\\\" \\r\\n\\tdefault=\\\"2\\\"\\r\\n\\tdescription=\\\" The position of a digit to the right of a decimal point, usually identified by successive ascending ordinal numbers with the digit immediately to the right of the decimal point being first: a figure accurate to the third decimal place.\\\"\\r\\n\\tclass=\\\"text_area\\\"\\r\\n\\tfilter=\\\"INT\\\"\\r\\n\\trequired=\\\"true\\\"\\r\\n\\tmessage=\\\"Error! Please add currency decimal place here.\\\"\\r\\n\\thint=\\\"2\\\"\\r\\n\\/>\"', -2, '2015-07-09 14:48:07', '2018-07-30 22:43:44', 2, '', 551, '382ac6da-c609-45b5-820d-e81702ef6b11', '', '', '', '', ''),
(2266, '', '', '', '', '', '', '', '', 7, '', 'CHAR', '', '', '', 'Decimalsymbol (currency) (Xy)', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\"\\r\\n\\tname=\\\"decimalsymbol\\\"\\r\\n\\tlabel=\\\"Decimal symbol\\\"\\r\\n\\tsize=\\\"40\\\"\\r\\n\\tmaxlength=\\\"2\\\" \\r\\n\\tdefault=\\\".\\\"\\r\\n\\tdescription=\\\" The symbol used to separate the integer part of a decimal number from its fractional part is called the decimal point.\\\"\\r\\n\\tclass=\\\"text_area\\\"\\r\\n\\tfilter=\\\"STRING\\\"\\r\\n\\trequired=\\\"true\\\"\\r\\n\\tmessage=\\\"Error! Please add currency decimal symbol here.\\\"\\r\\n\\thint=\\\".\\\"\\r\\n\\/>\"', -2, '2015-07-09 14:50:01', '2018-07-30 22:43:44', 1, '', 552, 'c627e684-28e4-44e5-820f-d35452c32559', '', '', '', '', ''),
(2267, '', '', '', '', '', '', '', '', 7, '', 'CHAR', '', '', '', 'Thousands (currency) (Xy)', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\"\\r\\n\\tname=\\\"thousands\\\"\\r\\n\\tlabel=\\\"Thousands separator\\\"\\r\\n\\tsize=\\\"40\\\"\\r\\n\\tmaxlength=\\\"\\\" \\r\\n\\tdefault=\\\"\\\"\\r\\n\\tdescription=\\\"\\\"\\r\\n\\tclass=\\\"text_area\\\"\\r\\n\\tfilter=\\\"STRING\\\"\\r\\n\\trequired=\\\"true\\\"\\r\\n\\tmessage=\\\"Error! Please add currency thousands separator here.\\\"\\r\\n\\thint=\\\" \\\"\\r\\n\\/>\"', -2, '2015-07-09 14:53:46', '2018-07-30 22:43:44', 1, '', 553, 'a9a01c3d-ab04-4364-b877-becfd77ca925', '', '', '', '', ''),
(2268, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Positivestyle (currency) (Xy)', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\"\\r\\n\\tname=\\\"positivestyle\\\"\\r\\n\\tlabel=\\\"Positive style\\\"\\r\\n\\tsize=\\\"40\\\"\\r\\n\\tmaxlength=\\\"\\\" \\r\\n\\tdefault=\\\"\\\"\\r\\n\\tdescription=\\\"Please use the following placeholders {number} {symbol} to build the currency positive style.\\\"\\r\\n\\tclass=\\\"text_area\\\"\\r\\n\\tfilter=\\\"STRING\\\"\\r\\n\\trequired=\\\"true\\\"\\r\\n\\tmessage=\\\"Error! Please add currency positive style here.\\\"\\r\\n\\thint=\\\"{number} {symbol}\\\"\\r\\n\\/>\"', -2, '2015-07-09 14:59:38', '2018-07-30 22:43:44', 2, '', 554, '64c7c1dd-cc08-423e-9943-10f322ca9e4e', '', '', '', '', ''),
(2269, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Negativestyle (currency) (Xy)', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\"\\r\\n\\tname=\\\"negativestyle\\\"\\r\\n\\tlabel=\\\"Negative style\\\"\\r\\n\\tsize=\\\"40\\\"\\r\\n\\tmaxlength=\\\"\\\" \\r\\n\\tdefault=\\\"\\\"\\r\\n\\tdescription=\\\"Please use the following placeholders {sign}{number} {symbol} to build the currency negative style.\\\"\\r\\n\\tclass=\\\"text_area\\\"\\r\\n\\tfilter=\\\"STRING\\\"\\r\\n\\trequired=\\\"true\\\"\\r\\n\\tmessage=\\\"Error! Please add currency negative style here.\\\"\\r\\n\\thint=\\\"{sign}{number} {symbol}\\\"\\r\\n\\/>\"', -2, '2015-07-09 15:01:22', '2018-07-30 22:43:44', 1, '', 555, 'cc9c3278-ab7c-4575-841a-86cf89a0fba9', '', '', '', '', ''),
(2270, '', '', '', '', '', '', '', '', 11, '', 'CHAR', '', '', '', 'Symbol (currency) (Xy)', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\"\\r\\n\\tname=\\\"symbol\\\"\\r\\n\\tlabel=\\\"Symbol\\\"\\r\\n\\tsize=\\\"40\\\"\\r\\n\\tmaxlength=\\\"7\\\" \\r\\n\\tdefault=\\\"\\\"\\r\\n\\tdescription=\\\"A currency symbol is a graphic symbol used as a shorthand for a currency\'s name, especially in reference to amounts of money.\\\"\\r\\n\\tclass=\\\"text_area\\\"\\r\\n\\tfilter=\\\"STRING\\\"\\r\\n\\trequired=\\\"true\\\"\\r\\n\\tmessage=\\\"Error! Please add currency symbol here.\\\"\\r\\n\\thint=\\\"N$\\\"\\r\\n\\/>\"', -2, '2015-07-09 14:44:24', '2018-07-30 22:43:44', 1, '', 556, '5bc778d0-79ea-4e5e-ba4a-1bd8a7e520b1', '', '', '', '', ''),
(2271, '', '', '', '', '', '', '', '', 10, '', 'INT', 2, '', '', 'Numeric Code (currency) (Xy)', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\"\\r\\n\\tname=\\\"numericcode\\\"\\r\\n\\tlabel=\\\"Numeric Code\\\"\\r\\n\\tsize=\\\"40\\\"\\r\\n\\tmaxlength=\\\"5\\\" \\r\\n\\tdefault=\\\"\\\"\\r\\n\\tdescription=\\\"There is also a three-digit code number assigned to each currency, in the same manner as there is also a three-digit code number assigned to each country as part of ISO 3166. This numeric code is usually the same as the ISO 3166-1 numeric code. For example, USD (United States dollar) has code 840 which is also the numeric code for the US (United States).\\\"\\r\\n\\tclass=\\\"text_area\\\"\\r\\n\\tfilter=\\\"INT\\\"\\r\\n\\trequired=\\\"true\\\"\\r\\n\\tmessage=\\\"Error! Please add numeric code here.\\\"\\r\\n\\thint=\\\"516\\\"\\r\\n\\/>\"', -2, '2015-07-09 14:40:52', '2018-07-30 22:43:44', 3, '', 557, 'b7fdf1c7-4594-4e1f-a686-020f3d66d186', '', '', '', '', ''),
(2272, '', '', '', '', '', '', '', '', 7, '', 'CHAR', 1, '', '', 'Code Three (currency) (Xy)', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\"\\r\\n\\tname=\\\"codethree\\\"\\r\\n\\tlabel=\\\"Code Three\\\"\\r\\n\\tsize=\\\"40\\\"\\r\\n\\tmaxlength=\\\"3\\\" \\r\\n\\tdefault=\\\"\\\"\\r\\n\\tdescription=\\\"The following is a list of active codes of official ISO 4217 currency names.\\\"\\r\\n\\tclass=\\\"text_area\\\"\\r\\n\\tfilter=\\\"WORD\\\"\\r\\n\\trequired=\\\"true\\\"\\r\\n\\tmessage=\\\"Error! Please add three-letter currency code here.\\\"\\r\\n\\thint=\\\"NAD\\\"\\r\\n\\/>\"', -2, '2015-07-09 14:33:44', '2018-07-30 22:43:44', 1, '', 558, '85f9635b-c154-4946-8795-100c69baa8c7', '', '', '', '', ''),
(2273, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Groups (multi) (Xy)', 'NOT NULL', 1, 29, '\"<field \\r\\n\\ttype=\\\"usergroup\\\" \\r\\n\\tname=\\\"groups\\\" \\r\\n\\tlabel=\\\"Group\\/s\\\" \\r\\n\\trequired=\\\"true\\\"\\r\\n\\tdescription=\\\"Select a group\\/s\\\"\\r\\n\\tmultiple=\\\"true\\\"\\r\\n\\/>\"', -2, '2015-07-13 23:10:19', '2018-07-30 22:43:44', 5, '', 50, 'fa6212c7-31b1-46f8-afd7-19b71a487a32', '', '', '', '', ''),
(2274, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Target Options (Xy)', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"target\\\" \\r\\n\\tlabel=\\\"Target Groups\\\" \\r\\n\\tdescription=\\\"Select the target option in relation to groups.\\\" \\r\\n\\toption=\\\"1|Some,2|All\\\" \\r\\n\\tclass=\\\"btn-group\\\"\\r\\n\\tdefault=\\\"\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\/>\"', -2, '2015-07-14 20:16:12', '2018-07-30 22:43:44', 2, '', 70, '1108471f-cef1-428f-9426-daaac9fe65bc', '', '', '', '', ''),
(2275, '', '', '', '', '', '', '', '', 64, '', 'CHAR', '', '', '', 'Title (Xy)', 'NOT NULL', '', 24, '\"<field\\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"title\\\" \\r\\n\\tlabel=\\\"Title\\\" \\r\\n\\tsize=\\\"40\\\" \\r\\n\\tmaxlength=\\\"150\\\" \\r\\n\\tdescription=\\\"Enter Title Here\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\treadonly=\\\"false\\\" \\r\\n\\tdisabled=\\\"false\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\tfilter=\\\"STRING\\\" \\r\\n\\tmessage=\\\"Error! Please add title here.\\\" \\r\\n\\thint=\\\"Title Here\\\" \\r\\n\\/>\"', -2, '2015-03-19 17:30:59', '2018-07-30 22:43:44', 1, '', 76, '4cadc30f-2c28-49f5-82a8-0c307aa8d3e0', '', '', '', '', ''),
(2276, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Help Content (Xy)', 'NOT NULL', '', 8, '\"<field \\r\\n\\ttype=\\\"editor\\\" \\r\\n\\tname=\\\"content\\\" \\r\\n\\tlabel=\\\"Content\\\" \\r\\n\\twidth=\\\"100%\\\" \\r\\n\\theight=\\\"300 px\\\" \\r\\n\\tbuttons=\\\"false\\\" \\r\\n\\thide=\\\"\\\" \\r\\n\\teditor=\\\"\\\" \\r\\n\\tfilter=\\\"safehtml\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\/>\"', -2, '2015-07-13 23:06:24', '2018-07-30 22:43:44', 1, '', 122, '45f8aee4-bd93-4bdd-80a4-d77ca8b4d57c', '', '', '', '', ''),
(2277, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Help Type (Xy)', 'NOT NULL', '', 11, '\"<field \\r\\n\\ttype=\\\"list\\\" \\r\\n\\tname=\\\"type\\\" \\r\\n\\tlabel=\\\"Type\\\" \\r\\n\\tdescription=\\\"Select the help type.\\\" \\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\trequired=\\\"true\\\"\\r\\n\\tmultiple=\\\"false\\\" \\r\\n\\toption=\\\"|Select an option,1|Joomla Article,2|Text,3|URL\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\/>\"', -2, '2015-07-13 23:24:51', '2018-07-30 22:43:44', 3, '', 244, '5a026e81-afed-4765-8379-85ba30e0183e', '', '', '', '', ''),
(2278, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Location (site,admin) (Xy)', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"location\\\" \\r\\n\\tlabel=\\\"Location\\\" \\r\\n\\tdescription=\\\"Select the help target location.\\\" \\r\\n\\tclass=\\\"btn-group\\\" \\r\\n\\toption=\\\"1|Admin,2|Site\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\/>\"', -2, '2015-07-13 23:34:24', '2018-07-30 22:43:44', 3, '', 244, 'd802b84c-b944-4205-b1b6-633d4fb2ab9f', '', '', '', '', ''),
(2279, '', '', '', '', '', '', '', '', 255, '', 'CHAR', '', '', '', 'Views (admin) (Xy)', '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\\tmultiple=\\\"false\\\"\\n\\tdefault=\\\"\\\"\\n\\trequired=\\\"true\\\"\\n\\treadonly=\\\"\\\"\\n\\tdisabled=\\\"\\\"\\n\\textends=\\\"list\\\"\\n\\tbutton=\\\"false\\\"\\n\\ttype_php_1=\\\"\\/\\/ get custom folder files\\r\\n\\t\\t$localfolder = JPATH_COMPONENT_ADMINISTRATOR.\'\\/views\';\\r\\n\\t\\t\\/\\/ set the default\\r\\n\\t\\t$options = array();\\r\\n\\t\\t\\/\\/ import all needed classes\\r\\n\\t\\tjimport(\'joomla.filesystem.folder\');\\r\\n\\t\\t\\/\\/ now check if there are files in the folder\\r\\n\\t\\tif (JFolder::exists($localfolder) && $folders = JFolder::folders($localfolder))\\r\\n\\t\\t{\\r\\n\\t\\t\\tforeach ($folders as $folder)\\r\\n\\t\\t\\t{\\r\\n\\t\\t\\t\\t$options[] = JHtml::_(\'select.option\', $folder, ###Component###Helper::safeString($folder, \'W\'));\\r\\n\\t\\t\\t}\\r\\n\\t\\t}\\r\\n\\t\\treturn $options;\\\"\\n\\/>\"', -2, '2016-10-17 23:28:49', '2018-07-30 22:43:44', 9, '', 300, '42e2ebfe-9c4f-47d2-9660-e63e9bafbaf8', '', '', '', '', ''),
(2280, '', '', '', '', '', '', '', '', 255, '', 'CHAR', '', '', '', 'Views (site) (Xy)', '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\\tmultiple=\\\"false\\\"\\n\\tdefault=\\\"\\\"\\n\\trequired=\\\"true\\\"\\n\\treadonly=\\\"\\\"\\n\\tdisabled=\\\"\\\"\\n\\textends=\\\"list\\\"\\n\\tbutton=\\\"false\\\"\\n\\ttype_php_1=\\\"\\/\\/ get custom folder files\\r\\n\\t\\t$localfolder = JPATH_COMPONENT_SITE.\'\\/views\';\\r\\n\\t\\t\\/\\/ set the default\\r\\n\\t\\t$options = array();\\r\\n\\t\\t\\/\\/ import all needed classes\\r\\n\\t\\tjimport(\'joomla.filesystem.folder\');\\r\\n\\t\\t\\/\\/ now check if there are files in the folder\\r\\n\\t\\tif (JFolder::exists($localfolder) && $folders = JFolder::folders($localfolder))\\r\\n\\t\\t{\\r\\n\\t\\t\\tforeach ($folders as $folder)\\r\\n\\t\\t\\t{\\r\\n\\t\\t\\t\\t$options[] = JHtml::_(\'select.option\', $folder, ###Component###Helper::safeString($folder, \'W\'));\\r\\n\\t\\t\\t}\\r\\n\\t\\t}\\r\\n\\t\\treturn $options;\\\"\\n\\/>\"', -2, '2016-10-17 23:38:27', '2018-07-30 22:43:44', 8, '', 300, 'fe98f331-f21e-4b43-80ff-30db12e1ca0e', '', '', '', '', ''),
(2281, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'URL (Xy)', 'NOT NULL', '', 27, '\"<field \\r\\n\\ttype=\\\"url\\\" \\r\\n\\tname=\\\"url\\\" \\r\\n\\tlabel=\\\"URL\\\" \\r\\n\\tsize=\\\"60\\\" \\r\\n\\tmaxlength=\\\"150\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tdescription=\\\"Enter url\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\treadonly=\\\"\\\" \\r\\n\\tdisabled=\\\"\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\tfilter=\\\"url\\\" \\r\\n\\tscheme=\\\"http,https\\\"\\r\\n\\tvalidated=\\\"url\\\" \\r\\n\\tmessage=\\\"Error! Please add url here.\\\" \\r\\n\\thint=\\\"http:\\/\\/www.example.com\\\" \\r\\n\\/>\"', -2, '2015-05-19 16:08:22', '2018-07-30 22:43:44', 3, '', 378, '69e50753-1b23-4d25-ae43-1ca51a4f0814', '', '', '', '', ''),
(2282, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Articles (joomla) (Xy)', 'NOT NULL', '', 6, '\"<field \\r\\n\\ttype=\\\"articles\\\" \\r\\n\\tname=\\\"article\\\" \\r\\n\\tlabel=\\\"Article\\\" \\r\\n\\tdescription=\\\"\\\" \\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\tmultiple=\\\"false\\\" \\r\\n\\tdefault=\\\"0\\\" \\r\\n\\trequired=\\\"true\\\"\\r\\n\\treadonly=\\\"\\\" \\r\\n\\tdisabled=\\\"\\\" \\r\\n\\textends=\\\"list\\\" \\r\\n\\ttable=\\\"#__content\\\" \\r\\n\\tcomponent=\\\"com_content\\\" \\r\\n\\tview=\\\"article\\\" \\r\\n\\tviews=\\\"articles\\\" \\r\\n\\tvalue_field=\\\"title\\\" \\r\\n\\tkey_field=\\\"id\\\" \\r\\n\\ttype_php_1=\\\"$db = Factory::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.alias\'),array(\'###ID###\',\'###CODE_TEXT###\',\'alias\')));\\\" \\r\\n\\ttype_php_4=\\\"$query->from($db->quoteName(\'###TABLE###\', \'a\'));\\\" \\r\\n\\ttype_php_5=\\\"$query->where($db->quoteName(\'a.state\') . \' = 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[] = Html::_(\'select.option\', \'\', \'Select an Article\');\\\" \\r\\n\\ttype_php_13=\\\"\\\\tforeach($items as $item)\\\" \\r\\n\\ttype_php_14=\\\"\\\\t{\\\" \\r\\n\\ttype_php_15=\\\"\\\\t\\\\t$options[] = Html::_(\'select.option\', $item->###ID###, $item->###CODE_TEXT### . \' (\' . $item->alias . \')\');\\\" \\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\\/>\"', -2, '2015-07-13 22:43:55', '2018-07-30 22:43:44', 5, '', 565, 'f85fcd9b-dcc4-4e36-8bb1-a55c42ae5362', '', '', '', '', ''),
(2283, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Males Death (Xy)', 'NOT NULL', '', 19, '\"<field \\r\\n\\ttype=\\\"repeatable\\\" \\r\\n\\tname=\\\"maledeath\\\" \\r\\n\\tlabel=\\\"Set Males Death\\\" \\r\\n\\tdescription=\\\"Here you can add males death data.\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tid=\\\"maledeath\\\" \\r\\n\\tclass=\\\"malesdeath\\\" \\r\\n\\tselect=\\\"Edit\\/Add\\\" \\r\\n\\ticon=\\\"list\\\" \\r\\n\\tmaximum=\\\"10\\\" \\r\\n\\tfields=\\\"2284,2285\\\" \\r\\n\\/>\"', -2, '2015-07-16 01:02:03', '2018-07-30 22:43:44', 3, '', 533, '17e8b66d-1731-468e-a317-8208804423dd', '', '', '', '', ''),
(2284, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Age Group (list) (Xy)', 'NOT NULL', '', 11, '\"<field \\r\\n\\ttype=\\\"list\\\" \\r\\n\\tname=\\\"age\\\" \\r\\n\\tlabel=\\\"Age Group\\\" \\r\\n\\tdescription=\\\"\\\" \\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\tmultiple=\\\"false\\\" \\r\\n\\tfilter=\\\"CMD\\\" \\r\\n\\trequired=\\\"\\\" \\r\\n\\toption=\\\"15-19,20-24,25-29,30-34,35-39,40-44,45-49,50-54,55-59,60-64\\\"\\r\\n\\tdefault=\\\"\\\" \\r\\n\\/>\"', -2, '2015-07-16 00:50:00', '2018-07-30 22:43:44', 2, '', 572, 'c71643ef-24f3-477a-86dd-b3d3aad50318', '', '', '', '', ''),
(2285, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Number (Xy)', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"number\\\" \\r\\n\\tlabel=\\\"Number\\\" \\r\\n\\tsize=\\\"10\\\" \\r\\n\\tmaxlength=\\\"50\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tdescription=\\\"\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\treadonly=\\\"false\\\" \\r\\n\\tdisabled=\\\"false\\\" \\r\\n\\trequired=\\\"false\\\" \\r\\n\\tfilter=\\\"FLOAT\\\" \\r\\n\\tmessage=\\\"Error! Please add number here.\\\" \\r\\n\\thint=\\\"Number Here\\\" \\r\\n\\/>\"', -2, '2015-07-16 00:58:20', '2018-07-30 22:43:44', 1, '', 573, '73718df7-6890-4996-b52b-c377386fcd2c', '', '', '', '', ''),
(2286, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Females Death (Xy)', 'NOT NULL', '', 19, '\"<field \\r\\n\\ttype=\\\"repeatable\\\" \\r\\n\\tname=\\\"femaledeath\\\" \\r\\n\\tlabel=\\\"Set Females Death\\\" \\r\\n\\tdescription=\\\"Here you can add females death data.\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tid=\\\"femaledeath\\\" \\r\\n\\tclass=\\\"femalesdeath\\\" \\r\\n\\tselect=\\\"Edit\\/Add\\\" \\r\\n\\ticon=\\\"list\\\" \\r\\n\\tmaximum=\\\"10\\\" \\r\\n\\tfields=\\\"2284,2285\\\" \\r\\n\\/>\"', -2, '2015-07-16 01:03:00', '2018-07-30 22:43:44', 2, '', 533, '3426c2ad-c14a-4b8e-a9fa-94d84a035254', '', '', '', '', ''),
(2287, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Females YLD (Xy)', 'NOT NULL', '', 19, '\"<field \\r\\n\\ttype=\\\"repeatable\\\" \\r\\n\\tname=\\\"femaleyld\\\" \\r\\n\\tlabel=\\\"Set Females YLD\\\" \\r\\n\\tdescription=\\\"Here you can add females YLD data.\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tid=\\\"femaleyld\\\" \\r\\n\\tclass=\\\"femalesyld\\\" \\r\\n\\tselect=\\\"Edit\\/Add\\\" \\r\\n\\ticon=\\\"list\\\" \\r\\n\\tmaximum=\\\"10\\\" \\r\\n\\tfields=\\\"2284,2285\\\" \\r\\n\\/>\"', -2, '2015-07-16 01:03:43', '2018-07-30 22:43:44', 2, '', 533, '2f471e27-74ff-4801-8b40-097aff3a4c15', '', '', '', '', ''),
(2288, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Males YLD (Xy)', 'NOT NULL', '', 19, '\"<field \\r\\n\\ttype=\\\"repeatable\\\" \\r\\n\\tname=\\\"maleyld\\\" \\r\\n\\tlabel=\\\"Set Males YLD\\\" \\r\\n\\tdescription=\\\"Here you can add males YLD data.\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tid=\\\"maleyld\\\" \\r\\n\\tclass=\\\"malesyld\\\" \\r\\n\\tselect=\\\"Edit\\/Add\\\" \\r\\n\\ticon=\\\"list\\\" \\r\\n\\tmaximum=\\\"10\\\" \\r\\n\\tfields=\\\"2284,2285\\\" \\r\\n\\/>\"', -2, '2015-07-16 01:04:38', '2018-07-30 22:43:44', 2, '', 533, '85dc71ef-3e54-42fb-a76f-e6d0305203d9', '', '', '', '', ''),
(2289, '', '', '', '', '', '', '', '', 7, '', 'CHAR', 2, '', '', 'Data Year (list 2010-2024) (Xy)', 'NOT NULL', '', 11, '\"<field \\r\\n\\ttype=\\\"list\\\" \\r\\n\\tname=\\\"year\\\" \\r\\n\\tlabel=\\\"Data Year\\\" \\r\\n\\tdescription=\\\"\\\" \\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\tmultiple=\\\"false\\\"\\r\\n\\tfilter=\\\"INT\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\toption=\\\"|Select a year,2010,2011,2012,2013,2014,2015,2016,2017,2018,2019,2020,2021,2022,2023,2024\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\/>\"', -2, '2015-07-16 00:38:15', '2018-07-30 22:43:44', 2, '', 570, '665c39f5-619d-44b6-b6d5-c097ad28585f', '', '', '', '', ''),
(2290, '', '', '', '', '', '', '', '', '', '', 'CHAR', '', '', '', 'Note - Cause/Risk only Advanced (Xy)', 'NOT NULL', '', 14, '\"<field \\r\\n\\ttype=\\\"note\\\" \\r\\n\\tname=\\\"cause_risk_selection_note\\\"\\r\\nlabel=\\\"Cause\\/Risk Selection\\\"\\r\\n\\tdescription=\\\"This feature is only available to the advanced department.\\\" \\r\\n\\tclass=\\\"alert alert-info\\\" \\r\\n\\/>\"', -2, '2015-07-20 16:59:34', '2018-07-30 22:43:44', 2, '', 35, 'f7493315-831f-40cb-95c8-1950acd5f409', '', '', '', '', ''),
(2291, '', '', '', '', '', '', '', '', '', '', 'CHAR', '', '', '', 'Note - Age Groups only Advanced (Xy)', 'NOT NULL', '', 14, '\"<field \\r\\n\\ttype=\\\"note\\\" \\r\\n\\tname=\\\"age_groups_note\\\"\\r\\nlabel=\\\"Age Groups Percentages\\\"\\r\\n\\tdescription=\\\"This feature is only available to the advanced department.\\\" \\r\\n\\tclass=\\\"alert alert-info\\\"\\r\\n\\/>\"', -2, '2015-07-25 14:56:29', '2018-07-30 22:43:44', 2, '', 35, '50929e46-947b-4bc9-9de4-dc930c9bc169', '', '', '', '', ''),
(2292, '', '', '', '', '', '', '', '', 64, '', 'CHAR', '', '', '', 'Company Name (name) (Xy)', 'NOT NULL', '', 24, '\"<field\\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"name\\\" \\r\\n\\tlabel=\\\"Company Name\\\" \\r\\n\\tsize=\\\"40\\\" \\r\\n\\tmaxlength=\\\"150\\\" \\r\\n\\tdescription=\\\"Enter Company Name Here\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\treadonly=\\\"false\\\" \\r\\n\\tdisabled=\\\"false\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\tfilter=\\\"STRING\\\" \\r\\n\\tmessage=\\\"Error! Please add company name here.\\\" \\r\\n\\thint=\\\"Company Name Here\\\" \\r\\n\\/>\"', -2, '2015-03-19 17:30:59', '2018-07-30 22:43:44', 4, '', 159, '0bd890a6-594a-490b-8943-2c85485348ba', '', '', '', '', ''),
(2293, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Email (required) (Xy)', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"email\\\" \\r\\n\\tlabel=\\\"Email\\\" \\r\\n\\tsize=\\\"10\\\" \\r\\n\\tmaxlength=\\\"50\\\" \\r\\n\\tdescription=\\\"Enter Email\\\" \\r\\n\\tclass=\\\"text_area\\\"\\r\\n\\tfilter=\\\"STRING\\\" \\r\\n\\tvalidate=\\\"email\\\" \\r\\n\\trequired=\\\"true\\\"\\r\\n\\tmessage=\\\"Error! Please add email address here.\\\" \\r\\n\\thint=\\\"demo@example.com\\\" \\r\\n\\/>\"', -2, '2015-05-05 23:44:32', '2018-07-30 22:43:44', 4, '', 285, '7d556fa8-d803-4b47-ba21-5df346bddc75', '', '', '', '', ''),
(2294, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Female Age Groups Percent (Xy)', 'NOT NULL', '', 19, '\"<field \\r\\n\\ttype=\\\"repeatable\\\" \\r\\n\\tname=\\\"percentfemale\\\" \\r\\n\\tlabel=\\\"Set Females Age Groups Percent\\\" \\r\\n\\tdescription=\\\"Here you can add females age groups percent.\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tid=\\\"percentfemale\\\" \\r\\n\\tclass=\\\"percentfemales\\\" \\r\\n\\tselect=\\\"Edit\\/Add\\\" \\r\\n\\ticon=\\\"list\\\" \\r\\n\\tmaximum=\\\"10\\\" \\r\\n\\tfields=\\\"2284,2295\\\" \\r\\n\\/>\"', -2, '2015-07-20 11:50:47', '2018-07-30 22:43:44', 2, '', 533, 'cd201a98-713e-45df-9ab6-99abc90da8c2', '', '', '', '', ''),
(2295, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Percent (Xy)', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"percent\\\" \\r\\n\\tlabel=\\\"Percent\\\" \\r\\n\\tsize=\\\"10\\\" \\r\\n\\tmaxlength=\\\"50\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tdescription=\\\"\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\treadonly=\\\"false\\\" \\r\\n\\tdisabled=\\\"false\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\tfilter=\\\"FLOAT\\\" \\r\\n\\tmessage=\\\"Error! Please add percent here.\\\" \\r\\n\\thint=\\\"Percent Here\\\" \\r\\n\\/>\"', -2, '2015-07-25 11:39:46', '2018-07-30 22:43:44', 1, '', 573, '4cea3a95-c6f7-4589-875d-ce8d1d69a427', '', '', '', '', ''),
(2296, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Male Age Groups Percent (Xy)', 'NOT NULL', '', 19, '\"<field \\r\\n\\ttype=\\\"repeatable\\\" \\r\\n\\tname=\\\"percentmale\\\" \\r\\n\\tlabel=\\\"Set Males Age Groups Percent\\\" \\r\\n\\tdescription=\\\"Here you can add males age groups percent.\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tid=\\\"percentmale\\\" \\r\\n\\tclass=\\\"percentmales\\\" \\r\\n\\tselect=\\\"Edit\\/Add\\\" \\r\\n\\ticon=\\\"list\\\" \\r\\n\\tmaximum=\\\"10\\\" \\r\\n\\tfields=\\\"2284,2295\\\" \\r\\n\\/>\"', -2, '2015-07-20 11:52:36', '2018-07-30 22:43:44', 2, '', 533, 'bf6d3996-56bc-4cbd-b0d0-32389ad01adf', '', '', '', '', ''),
(2297, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Profile Status (Xy)', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"per\\\" \\r\\n\\tlabel=\\\"Profile Status\\\" \\r\\n\\tdescription=\\\"Select your profile access status\\\" \\r\\n\\tclass=\\\"btn-group btn-group-yesno\\\" \\r\\n\\toption=\\\"1|Open,0|Locked\\\"\\r\\n\\tdefault=\\\"1\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\/>\"', -2, '2015-07-16 00:16:20', '2018-07-30 22:43:44', 3, '', 569, '331cd256-a684-4710-8039-abcdc551488d', '', '', '', '', ''),
(2298, '', '', '', '', '', '', '', '', 64, '', 'CHAR', 2, '', '', 'Member Data Year (dynamic) (Xy)', 'NOT NULL', '', 6, '\"<field \\r\\n\\ttype=\\\"datayear\\\" \\r\\n\\tname=\\\"datayear\\\" \\r\\n\\tlabel=\\\"Data Year\\\" \\r\\n\\tdescription=\\\"Select which year\'s data should be used in calculations.\\\" \\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\tmultiple=\\\"false\\\" \\r\\n\\tdefault=\\\"0\\\" \\r\\n\\trequired=\\\"\\\" \\r\\n\\treadonly=\\\"\\\" \\r\\n\\tdisabled=\\\"\\\" \\r\\n\\textends=\\\"list\\\" \\r\\n\\ttable=\\\"#__###component###_health_data\\\" \\r\\n\\tcomponent=\\\"com_###component###\\\" \\r\\n\\tview=\\\"health_data\\\" \\r\\n\\tviews=\\\"health_data_sets\\\" \\r\\n\\tvalue_field=\\\"country\\\" \\r\\n\\tkey_field=\\\"year\\\" \\r\\n\\ttype_php_1=\\\"$jinput = JFactory::getApplication()->input;\\\\n\\\\t\\\\t$client = $jinput->get(\'id\', 0, \'INT\');\\\\n\\\\t\\\\t$countries = ###Component###Helper::hisCountries(null,$client,\'company\');\\\\n\\\\t\\\\t$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###\',\'###TEXT###\')));\\\" \\r\\n\\ttype_php_4=\\\"$query->from($db->quoteName(\'###TABLE###\', \'a\'));\\\" \\r\\n\\ttype_php_5=\\\"$query->where($db->quoteName(\'a.published\') . \' = 1\');\\\\n\\\\t\\\\tif (###Component###Helper::checkArray($countries)) \\\\n\\\\t\\\\t{\\\\n\\\\t\\\\t\\\\t$query->where($db->quoteName(\'a.country\') . \' IN (\' . implode(\',\',$countries) . \')\');\\\\n\\\\t\\\\t}\\\" \\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$years = array();\\\" \\r\\n\\ttype_php_13=\\\"\\\\tforeach($items as $item)\\\" \\r\\n\\ttype_php_14=\\\"\\\\t{\\\\n\\\\t\\\\t\\\\t\\\\tif (!###Component###Helper::checkArray($years) || !in_array($item->###ID###.\'_\'.$item->###TEXT###,$years))\\\\n\\\\t\\\\t\\\\t\\\\t{\\\\n\\\\t\\\\t\\\\t\\\\t\\\\tif (!###Component###Helper::checkArray($countries) || $client == 0)\\\\n\\\\t\\\\t\\\\t\\\\t\\\\t{\\\\n\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t$countryName = \' (\'. ###Component###Helper::getCountryName($item->###TEXT###).\')\';\\\\n\\\\t\\\\t\\\\t\\\\t\\\\t}\\\\n\\\\t\\\\t\\\\t\\\\t\\\\telse\\\\n\\\\t\\\\t\\\\t\\\\t\\\\t{\\\\n\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t$countryName = \'\';\\\\n\\\\t\\\\t\\\\t\\\\t\\\\t}\\\" \\r\\n\\ttype_php_15=\\\"\\\\t\\\\t\\\\t$options[] = JHtml::_(\'select.option\', $item->###ID###, $item->###ID### .$countryName);\\\\n\\\\t\\\\t\\\\t\\\\t\\\\t$years[$item->###ID###] = $item->###ID###.\'_\'.$item->###TEXT###;\\\\n\\\\t\\\\t\\\\t\\\\t}\\\" \\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\\/>\"', -2, '2015-07-16 12:45:29', '2018-07-30 22:43:44', 21, '', 577, 'f1f40d22-4350-42ad-8fba-3787690a7779', '', '', '', '', ''),
(2299, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'Users (Member) (Xy)', 'NOT NULL', '', 7, '\"\\ttype=\\\"memberuser\\\" \\r\\n\\tname=\\\"user\\\" \\r\\n\\tlabel=\\\"User (Member)\\\" \\r\\n\\tdescription=\\\"\\\" \\r\\n\\tclass=\\\"\\\" \\r\\n\\trequired=\\\"false\\\" \\r\\n\\treadonly=\\\"\\\" \\r\\n\\tdisabled=\\\"\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\thint=\\\"select a member\\\" \\r\\n\\textends=\\\"user\\\" \\r\\n\\ttable=\\\"#__users\\\" \\r\\n\\tcomponent=\\\"com_users\\\" \\r\\n\\tview=\\\"###view###\\\" \\r\\n\\tviews=\\\"###views###\\\" \\r\\n\\tvalue_field=\\\"name\\\" \\r\\n\\tkey_field=\\\"id\\\" \\r\\n\\ttype_php_1=\\\"\\/\\/ set the groups array\\\" \\r\\n\\ttype_php_2=\\\"$groups = JComponentHelper::getParams(\'com_###component###\')->get(\'###type###\');\\\" \\r\\n\\ttype_php_3=\\\"return $groups;\\\"\\r\\n\\/>\"', -2, '2015-07-16 16:58:35', '2018-07-30 22:43:44', 15, '', 578, '650600fc-7975-42ae-9fe8-bdb5272b8923', '', '', '', '', ''),
(2300, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'Service Provider (dynamic) (Xy)', 'NOT NULL', '', 6, '\"<field \\r\\n\\ttype=\\\"serviceprovider\\\" \\r\\n\\tname=\\\"service_provider\\\" \\r\\n\\tlabel=\\\"Service Provider\\\" \\r\\n\\tdescription=\\\"\\\" \\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\tmultiple=\\\"false\\\" \\r\\n\\tdefault=\\\"0\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\treadonly=\\\"\\\" \\r\\n\\tdisabled=\\\"\\\" \\r\\n\\textends=\\\"list\\\" \\r\\n\\tbutton=\\\"true\\\"\\r\\n\\ttable=\\\"#__###component###_service_provider\\\" \\r\\n\\tcomponent=\\\"com_###component###\\\" \\r\\n\\tview=\\\"service_provider\\\" \\r\\n\\tviews=\\\"service_providers\\\" \\r\\n\\tvalue_field=\\\"user\\\" \\r\\n\\tkey_field=\\\"id\\\" \\r\\n\\ttype_php_1=\\\"\\/\\/ Get the user object.\\\\n\\\\t\\\\t$user = JFactory::getUser();\\\\n\\\\t\\\\t\\/\\/ Create a new query object.\\\" \\r\\n\\ttype_php_2=\\\"$db = JFactory::getDBO();\\\\n\\\\t\\\\t$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=\\\"if (!$user->authorise(\'core.options\', \'com_###component###\'))\\\\n\\\\t\\\\t{\\\\n\\\\t\\\\t\\\\t$serviceProviders = ###Component###Helper::hisServiceProviders($user->id);\\\" \\r\\n\\ttype_php_7=\\\"\\\\tif (###Component###Helper::checkArray($serviceProviders))\\\\n\\\\t\\\\t\\\\t{\\\" \\r\\n\\ttype_php_8=\\\"\\\\t\\\\t$serviceProviders = implode(\',\',$serviceProviders);\\\\n\\\\t\\\\t\\\\t\\\\t\\/\\/ only load this users service providers\\\" \\r\\n\\ttype_php_9=\\\"\\\\t\\\\t$query->where(\'a.id IN (\' . $serviceProviders . \')\');\\\" \\r\\n\\ttype_php_10=\\\"\\\\t}\\\\n\\\\t\\\\t\\\\telse\\\\n\\\\t\\\\t\\\\t{\\\" \\r\\n\\ttype_php_11=\\\"\\\\t\\\\t\\/\\/ don\'t allow user to see any service providers\\\\n\\\\t\\\\t\\\\t\\\\t$query->where(\'a.id = -4\');\\\" \\r\\n\\ttype_php_12=\\\"\\\\t}\\\\n\\\\t\\\\t}\\\" \\r\\n\\ttype_php_13=\\\"$query->order(\'a.###TEXT### ASC\');\\\\n\\\\t\\\\t$db->setQuery((string)$query);\\\" \\r\\n\\ttype_php_14=\\\"$items = $db->loadObjectList();\\\" \\r\\n\\ttype_php_15=\\\"$options = array();\\\\n\\\\t\\\\tif ($items)\\\" \\r\\n\\ttype_php_16=\\\"{\\\" \\r\\n\\ttype_php_17=\\\"\\\\tforeach($items as $item)\\\" \\r\\n\\ttype_php_18=\\\"\\\\t{\\\\n\\\\t\\\\t\\\\t\\\\t$options[] = JHtml::_(\'select.option\', $item->###ID###, JFactory::getUser($item->###CODE_TEXT###)->name);\\\" \\r\\n\\ttype_php_19=\\\"\\\\t}\\\\n\\\\t\\\\t}\\\\n\\\\t\\\\treturn $options;\\\" \\r\\n\\/>\"', -2, '2015-07-18 12:35:41', '2018-07-30 22:43:44', 14, '', 578, '16f7fafa-274d-42a5-930c-61d824c88420', '', '', '', '', ''),
(2301, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'Departments (company) (Xy)', 'NOT NULL', '', 17, '\"<field \\r\\n\\ttype=\\\"radio\\\" \\r\\n\\tname=\\\"department\\\" \\r\\n\\tlabel=\\\"Department\\\" \\r\\n\\tdescription=\\\"\\\" \\r\\n\\tclass=\\\"btn-group\\\" \\r\\n\\toption=\\\"1|Basic,2|Advanced\\\" \\r\\n\\tdefault=\\\"1\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\/>\"', -2, '2015-07-16 17:43:22', '2018-07-30 22:43:44', 3, '', 579, 'cd1de2f0-2d34-4c5b-b7c4-5ba0eeefbb9a', '', '', '', '', ''),
(2302, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'Work Days per/year (Xy)', 'NOT NULL', '', 10, '\"<field \\r\\n\\ttype=\\\"integer\\\" \\r\\n\\tname=\\\"working_days\\\" \\r\\n\\tlabel=\\\"Work Days\\\" \\r\\n\\tdefault=\\\"225\\\" \\r\\n\\tdescription=\\\"Number of working days per\\/year\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\tfirst=\\\"200\\\" \\r\\n\\tlast=\\\"365\\\" \\r\\n\\tstep=\\\"1\\\" \\r\\n\\/>\"', -2, '2015-07-20 11:02:48', '2018-07-30 22:43:44', 2, '', 583, '4d2ac7ae-5cc4-4abc-bce7-6f8b6a8d4504', '', '', '', '', ''),
(2303, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Total Salary (Xy)', 'NOT NULL', 4, 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"total_salary\\\" \\r\\n\\tlabel=\\\"Total Salary\\\" \\r\\n\\tsize=\\\"20\\\" \\r\\n\\tmaxlength=\\\"50\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tdescription=\\\"The total salary payed per\\/year\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\treadonly=\\\"false\\\" \\r\\n\\tdisabled=\\\"false\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\tfilter=\\\"integer\\\" \\r\\n\\tvalidate=\\\"\\\" \\r\\n\\tmessage=\\\"Error! Please add total salary here.\\\" \\r\\n\\thint=\\\"per\\/year\\\" \\r\\n\\/>\"', -2, '2015-07-20 11:05:25', '2018-07-30 22:43:44', 5, '', 584, '018df15b-ac46-47f6-a9d3-f9c66c8d654d', '', '', '', '', ''),
(2304, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Total Healthcare (Xy)', 'NOT NULL', 4, 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"total_healthcare\\\" \\r\\n\\tlabel=\\\"Total Healthcare Costs\\\" \\r\\n\\tsize=\\\"20\\\" \\r\\n\\tmaxlength=\\\"50\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tdescription=\\\"The total healthcare payed per\\/year\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\treadonly=\\\"false\\\" \\r\\n\\tdisabled=\\\"false\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\tfilter=\\\"integer\\\" \\r\\n\\tvalidate=\\\"\\\" \\r\\n\\tmessage=\\\"Error! Please add total healthcare costs here.\\\" \\r\\n\\thint=\\\"per\\/year\\\" \\r\\n\\/>\"', -2, '2015-07-20 11:08:51', '2018-07-30 22:43:44', 3, '', 584, '79ade1c0-1ab5-4919-b36b-5d57f3f6a7a4', '', '', '', '', ''),
(2305, '', '', 1, '', '', '', '', '', 64, '', 'VARCHAR', 2, 'Ly8gYWRkIHRoZSBjYWxjdWxhdG9yIGJ1dHRvbg0KdmFyIGNhbF9idXR0b24gPSAnIDxhIGNsYXNzPSJidG4gYnRuLXNtYWxsIGJ0bi1zdWNjZXNzIiBocmVmPSJodHRwczovL3d3dy5zdGFmZmhlYWx0aGNicC5jb20vZG93bmxvYWQvUHJvZHVjdGl2aXR5X0xvc3Nlc19DYWxjdWxhdG9yX1YxLnhsc3giPiA8c3BhbiBjbGFzcz0iaWNvbi1kb3dubG9hZCBpY29uLXdoaXRlIj48L3NwYW4+IENhbGN1bGF0b3IgPC9hPic7DQpqUXVlcnkoJyNqZm9ybV9wcm9kdWN0aXZpdHlfbG9zc2VzJykuY2xvc2VzdCgnLmNvbnRyb2xzJykuYXBwZW5kKGNhbF9idXR0b24pOw==', '', 'Medical Turnover Cost Factor (Xy)', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"productivity_losses\\\" \\r\\n\\tlabel=\\\"Medical Turnover Cost Factor\\\" \\r\\n\\tsize=\\\"20\\\" \\r\\n\\tmaxlength=\\\"50\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tdescription=\\\"The proportion of annual salary that it costs to replace an employee for medical reasons.\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\treadonly=\\\"false\\\" \\r\\n\\tdisabled=\\\"false\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\tfilter=\\\"CMD\\\" \\r\\n\\tvalidate=\\\"\\\" \\r\\n\\tmessage=\\\"Error! Please add medical turnover cost factor here.\\\" \\r\\n\\thint=\\\"0.05\\\" \\r\\n\\/>\"', -2, '2015-07-20 11:13:52', '2018-07-30 22:43:44', 6, '', 584, '27f1c45e-cdc4-4739-94ad-75659f9b800b', '', '', '', '', ''),
(2306, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Males (Xy)', 'NOT NULL', 4, 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"Males\\\" \\r\\n\\tlabel=\\\"Total Male Employees\\\" \\r\\n\\tsize=\\\"20\\\" \\r\\n\\tmaxlength=\\\"50\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tdescription=\\\"The Total Number of Male Employees.\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\treadonly=\\\"false\\\" \\r\\n\\tdisabled=\\\"false\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\tfilter=\\\"INT\\\" \\r\\n\\tvalidate=\\\"\\\" \\r\\n\\tmessage=\\\"Error! Please add total male employees here.\\\" \\r\\n\\thint=\\\"Just A Number\\\" \\r\\n\\/>\"', -2, '2015-07-20 11:16:54', '2018-07-30 22:43:44', 2, '', 584, '84eddf00-65c0-4770-a630-f3261404e2e7', '', '', '', '', ''),
(2307, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Females (Xy)', 'NOT NULL', 4, 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"Females\\\" \\r\\n\\tlabel=\\\"Total Female Employees\\\" \\r\\n\\tsize=\\\"20\\\" \\r\\n\\tmaxlength=\\\"50\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tdescription=\\\"The Total Number of Female Employees.\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\treadonly=\\\"false\\\" \\r\\n\\tdisabled=\\\"false\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\tfilter=\\\"INT\\\" \\r\\n\\tvalidate=\\\"\\\" \\r\\n\\tmessage=\\\"Error! Please add total female employees here.\\\" \\r\\n\\thint=\\\"Just A Number\\\" \\r\\n\\/>\"', -2, '2015-07-20 11:18:25', '2018-07-30 22:43:44', 2, '', 584, '6337f738-09a3-405b-bb4e-f469ae3c6f96', '', '', '', '', ''),
(2308, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Medical Turnovers Male (Xy)', 'NOT NULL', 4, 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"medical_turnovers_Males\\\" \\r\\n\\tlabel=\\\"Total Number Medical Turnovers Male\\\" \\r\\n\\tsize=\\\"20\\\" \\r\\n\\tmaxlength=\\\"50\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tdescription=\\\"The total number of medical turnovers for males per\\/year.\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\treadonly=\\\"false\\\" \\r\\n\\tdisabled=\\\"false\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\tfilter=\\\"FLOAT\\\" \\r\\n\\tvalidate=\\\"\\\" \\r\\n\\tmessage=\\\"Error! Please add total number of medical turnovers for males here.\\\" \\r\\n\\thint=\\\"per\\/year\\\" \\r\\n\\/>\"', -2, '2015-07-20 11:22:11', '2018-07-30 22:43:44', 4, '', 584, '70fcfed9-c702-4d4a-8531-e1bfeeda42ec', '', '', '', '', ''),
(2309, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Medical Turnovers Female (Xy)', 'NOT NULL', 4, 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"medical_turnovers_Females\\\" \\r\\n\\tlabel=\\\"Total Number Medical Turnovers Female\\\" \\r\\n\\tsize=\\\"20\\\" \\r\\n\\tmaxlength=\\\"50\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tdescription=\\\"The total number of medical turnovers for females per\\/year.\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\treadonly=\\\"false\\\" \\r\\n\\tdisabled=\\\"false\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\tfilter=\\\"FLOAT\\\" \\r\\n\\tvalidate=\\\"\\\" \\r\\n\\tmessage=\\\"Error! Please add total number of medical turnovers for females here.\\\" \\r\\n\\thint=\\\"per\\/year\\\" \\r\\n\\/>\"', -2, '2015-07-20 11:22:47', '2018-07-30 22:43:44', 4, '', 584, '5f6bb820-7a45-440d-b74f-90bfcd01ccb9', '', '', '', '', ''),
(2310, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Sick Leave Days Males (Xy)', 'NOT NULL', 4, 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"sick_leave_Males\\\" \\r\\n\\tlabel=\\\"Total Number Sick Leave Days Males\\\" \\r\\n\\tsize=\\\"20\\\" \\r\\n\\tmaxlength=\\\"50\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tdescription=\\\"The total number of sick leave days for males per\\/year.\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\treadonly=\\\"false\\\" \\r\\n\\tdisabled=\\\"false\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\tfilter=\\\"INT\\\" \\r\\n\\tvalidate=\\\"\\\" \\r\\n\\tmessage=\\\"Error! Please add total number of sick leave days for males here.\\\" \\r\\n\\thint=\\\"per\\/year\\\" \\r\\n\\/>\"', -2, '2015-07-20 11:24:48', '2018-07-30 22:43:44', 2, '', 584, '6cb251af-0785-41a2-94ec-87c8f826ca8e', '', '', '', '', ''),
(2311, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Sick Leave Days Females (Xy)', 'NOT NULL', 4, 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"sick_leave_Females\\\" \\r\\n\\tlabel=\\\"Total Number Sick Leave Days Females\\\" \\r\\n\\tsize=\\\"20\\\" \\r\\n\\tmaxlength=\\\"50\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tdescription=\\\"The total number of sick leave days for females per\\/year.\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\treadonly=\\\"false\\\" \\r\\n\\tdisabled=\\\"false\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\tfilter=\\\"INT\\\" \\r\\n\\tvalidate=\\\"\\\" \\r\\n\\tmessage=\\\"Error! Please add total number of sick leave days for females here.\\\" \\r\\n\\thint=\\\"per\\/year\\\" \\r\\n\\/>\"', -2, '2015-07-20 11:25:31', '2018-07-30 22:43:44', 2, '', 584, 'af568355-7fdf-42a2-8293-c7dbb5fbca5a', '', '', '', '', ''),
(2312, 1, '', 1, '', 'aW5wdXRbdHlwZT0iY2hlY2tib3giXSB7DQogICAgbWFyZ2luOiAgMCAhaW1wb3J0YW50Ow0KfQ==', '', '', '', '', '', 'TEXT', '', 'alF1ZXJ5KCcjYWRtaW5Gb3JtJykub24oJ2NoYW5nZScsICcjamZvcm1fY2F1c2Vzcmlza3MnLGZ1bmN0aW9uIChlKQ0Kew0KCS8vIGZpcnN0IHdlIGJ1aWxkIHRoZSBjaGVja2VkIGFycmF5DQoJY2hlY2tlZEFycmF5ID0gW107DQoJalF1ZXJ5KCcjamZvcm1fY2F1c2Vzcmlza3MgaW5wdXRbdHlwZT1jaGVja2JveF0nKS5lYWNoKGZ1bmN0aW9uKCkNCgl7DQoJCWlmIChqUXVlcnkodGhpcykuaXMoJzpjaGVja2VkJykpDQoJCXsNCgkJCWNoZWNrZWRBcnJheS5wdXNoKGpRdWVyeSgibGFiZWxbZm9yPSciK2pRdWVyeSh0aGlzKS5wcm9wKCdpZCcpKyInXSA+IHNwYW4iKS5wcm9wKCdpZCcpKTsNCgkJfQ0KCX0pOw0KCS8vIG5vdyB3ZSBjaGVjayBpZiBjaGlsZCBpcyBjaGVja2VkIGFuZCB1bmNoZWNrIHBlcmFudA0KCWpRdWVyeSgnI2pmb3JtX2NhdXNlc3Jpc2tzIGlucHV0W3R5cGU9Y2hlY2tib3hdJykuZWFjaChmdW5jdGlvbigpDQoJew0KCQlpZiAoalF1ZXJ5KHRoaXMpLmlzKCc6Y2hlY2tlZCcpKQ0KCQl7DQoJCQl2YXIgY2hlY2luZyA9IGpRdWVyeSgibGFiZWxbZm9yPSciK2pRdWVyeSh0aGlzKS5wcm9wKCdpZCcpKyInXSA+IHNwYW4iKS5wcm9wKCdpZCcpOw0KCQkJLy8gZmlyc3QgcmVtb3ZlIHRoaXMgY2hlY2tkIGl0ZW0gZnJvbSBhcnJheQ0KCQkJY2hlY2tlZEFycmF5Q2hlY2tlciA9IGpRdWVyeS5ncmVwKGNoZWNrZWRBcnJheSwgZnVuY3Rpb24odmFsdWUpIHsNCgkJCQlyZXR1cm4gdmFsdWUgIT0gY2hlY2luZzsNCgkJCX0pOw0KCQkJDQoJCQkvLyBub3cgdW5jaGVjayB0aGUgcGVyYW50IGNoZWNrYm94ZXMNCgkJCWpRdWVyeS5lYWNoKCBjaGVja2VkQXJyYXlDaGVja2VyLGZ1bmN0aW9uKGluZGV4LHZhbHVlKQ0KCQkJew0KCQkJCWlmIChjaGVjaW5nLmluZGV4T2YodmFsdWUpID49IDApDQoJCQkJew0KCQkJCQl2YXIgYmxvY2sgPSBqUXVlcnkoJyMnK3ZhbHVlKS5jbG9zZXN0KCdsYWJlbCcpLmZpbmQoJ2lucHV0JykucHJvcCgnaWQnKTsNCgkJCQkJalF1ZXJ5KCcjJytibG9jaykucHJvcCgnY2hlY2tlZCcsIGZhbHNlKTsNCgkJCQl9DQoJCQl9KTsNCgkJfQ0KCX0pOw0KfSk7', '', 'Causes/Risks (CheckBoxes) (Xy)', 'NOT NULL', 1, 6, '\"<field \\r\\n\\ttype=\\\"causesriskscheck\\\" \\r\\n\\tname=\\\"causesrisks\\\" \\r\\n\\tlabel=\\\"Causes\\/Risks\\\" \\r\\n\\tdescription=\\\"\\\" \\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\treadonly=\\\"\\\" \\r\\n\\tdisabled=\\\"\\\" \\r\\n\\textends=\\\"checkboxes\\\" \\r\\n\\ttable=\\\"#__###component###_causerisk\\\" \\r\\n\\tcomponent=\\\"com_###component###\\\" \\r\\n\\tview=\\\"causerisk\\\" \\r\\n\\tviews=\\\"causesrisks\\\" \\r\\n\\tvalue_field=\\\"name\\\" \\r\\n\\tkey_field=\\\"id\\\" \\r\\n\\ttype_php_1=\\\"$db = Factory::getDBO();\\r\\n\\\\t\\\\t$query = $db->getQuery(true);\\r\\n\\\\t\\\\t$query->select($db->quoteName(array(\'a.###ID###\',\'a.###TEXT###\',\'a.ref\'),array(\'###ID###\',\'###CODE_TEXT###\',\'ref\')));\\r\\n\\\\t\\\\t$query->from($db->quoteName(\'###TABLE###\', \'a\'));\\r\\n\\\\t\\\\t$query->where($db->quoteName(\'a.published\') . \' = 1\');\\r\\n\\\\t\\\\t$query->order(\'a.ref ASC\');\\r\\n\\\\t\\\\t$db->setQuery((string)$query);\\r\\n\\\\t\\\\t$items = $db->loadObjectList();\\r\\n\\\\t\\\\t$options = array(); $counter = 0;\\r\\n\\\\t\\\\tif ($items)\\r\\n\\\\t\\\\t{\\r\\n\\\\t\\\\t\\\\tforeach($items as $item)\\r\\n\\\\t\\\\t\\\\t{\\r\\n\\\\t\\\\t\\\\t\\\\t$ref\\\\t= explode(\'.\',$item->ref);\\r\\n\\\\t\\\\t\\\\t\\\\t$target_id\\\\t= implode(\'-\',$ref);\\r\\n\\\\t\\\\t\\\\t\\\\t$key\\\\t= explode(\'.0\',$item->ref);\\r\\n\\\\t\\\\t\\\\t\\\\t$key\\\\t= implode(\'.\',$key);\\r\\n\\\\t\\\\t\\\\t\\\\t$spacer\\\\t= array();\\r\\n\\\\t\\\\t\\\\t\\\\t$sub\\\\t= \'\';\\r\\n\\\\t\\\\t\\\\t\\\\t$sub_\\\\t= \'\';\\r\\n\\\\t\\\\t\\\\t\\\\tforeach ($ref as $nr => $space)\\r\\n\\\\t\\\\t\\\\t\\\\t{\\r\\n\\\\t\\\\t\\\\t\\\\t\\\\tif ($nr > 1)\\r\\n\\\\t\\\\t\\\\t\\\\t\\\\t{\\r\\n\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t$spacer[] = \'<span class=\\\\\'gi\\\\\'>|&mdash;<\\/span>\';\\r\\n\\\\t\\\\t\\\\t\\\\t\\\\t}\\r\\n\\\\t\\\\t\\\\t\\\\t\\\\tif ($nr > 2)\\r\\n\\\\t\\\\t\\\\t\\\\t\\\\t{\\r\\n\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t$sub = \'<em>\';\\r\\n\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t$sub_ = \'<\\/em>\';\\r\\n\\\\t\\\\t\\\\t\\\\t\\\\t}\\r\\n\\\\t\\\\t\\\\t\\\\t}\\r\\n\\\\t\\\\t\\\\t\\\\tif (ArrayHelper::check($spacer))\\r\\n\\\\t\\\\t\\\\t\\\\t{\\r\\n\\\\t\\\\t\\\\t\\\\t\\\\t$tmp = array(\\r\\n\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\'value\' => $item->###ID###,\\r\\n\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\'text\' => \'<span id=\'.$target_id.\' style=\\\\\'color:\'.$color.\';\\\\\'>&nbsp;&nbsp;\'.implode(\'\',$spacer).\'&nbsp;\'.$sub.$item->###CODE_TEXT###.$sub_.\'&nbsp;<small>(\'.$key.\')<\\/small><\\/span>\',\\r\\n\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\'checked\' => false\\r\\n\\\\t\\\\t\\\\t\\\\t\\\\t);\\r\\n\\\\t\\\\t\\\\t\\\\t\\\\t$options[] = (object) $tmp;\\r\\n\\\\t\\\\t\\\\t\\\\t}\\r\\n\\\\t\\\\t\\\\t\\\\telse\\r\\n\\\\t\\\\t\\\\t\\\\t{\\r\\n\\\\t\\\\t\\\\t\\\\t\\\\tif ( $counter & 1 )\\r\\n\\\\t\\\\t\\\\t\\\\t\\\\t{\\r\\n\\\\t\\\\t\\\\t\\\\t\\\\t$color = \'#0C5B00\';\\r\\n\\\\t\\\\t\\\\t\\\\t\\\\t}\\r\\n\\\\t\\\\t\\\\t\\\\t\\\\telse\\r\\n\\\\t\\\\t\\\\t\\\\t\\\\t{\\r\\n\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t$color = \'#1A3867\';\\r\\n\\\\t\\\\t\\\\t\\\\t\\\\t}\\r\\n\\\\t\\\\t\\\\t\\\\t\\\\t$tmp = array(\\r\\n\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\'value\' => $item->###ID###,\\r\\n\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\'text\' => \'<span id=\'.$target_id.\' style=\\\\\'color:\'.$color.\';\\\\\'>&nbsp;&nbsp;<strong>\'.strtoupper($item->###CODE_TEXT###).\'<\\/strong>&nbsp;<small>(\'.$key.\')<\\/small><\\/span>\',\\r\\n\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\'checked\' => false\\r\\n\\\\t\\\\t\\\\t\\\\t\\\\t);\\r\\n\\\\t\\\\t\\\\t\\\\t\\\\t$options[] = (object) $tmp;\\r\\n\\\\t\\\\t\\\\t\\\\t\\\\t$counter++;\\r\\n\\\\t\\\\t\\\\t\\\\t}\\r\\n\\\\t\\\\t\\\\t}\\r\\n\\\\t\\\\t}\\r\\n\\\\t\\\\treturn $options;\\\" \\r\\n\\/>\"', -2, '2015-07-24 01:36:37', '2018-07-30 22:43:44', 23, '', 585, '21ea1859-035c-43c1-8f34-4b493b383642', '', '', '', '', ''),
(2313, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Turnover Comment (Xy)', 'NOT NULL', '', 25, '\"<field \\r\\n\\ttype=\\\"textarea\\\" \\r\\n\\tname=\\\"turnover_comment\\\" \\r\\n\\tlabel=\\\"Turnover Comment\\\" \\r\\n\\trows=\\\"8\\\" \\r\\n\\tcols=\\\"5\\\" \\r\\n\\tdescription=\\\"Here you can explain how many deaths your company has had over any given period. This will help us understand how you came to the numbers used above in the male and female medical turnovers.\\\" \\r\\n\\tclass=\\\"text_area span12\\\" \\r\\n\\tfilter=\\\"HTML\\\" \\r\\n\\thint=\\\"You can make a comment here to indicate how you arrived at the given numbers above for male and female medical turnovers.\\\" \\r\\n\\/>\"', -2, '2016-02-28 21:08:26', '2018-07-30 22:43:44', 2, '', 666, '1907549d-9885-41b9-9976-cccc528d7a78', '', '', '', '', ''),
(2314, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', 2, '', '', 'Public Name (Xy)', 'NOT NULL', '', 24, '\"<field\\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"publicName\\\" \\r\\n\\tlabel=\\\"Public Name\\\"\\r\\n\\tsize=\\\"60\\\" \\r\\n\\tmaxlength=\\\"150\\\" \\r\\n\\tdescription=\\\"The name we may use publicly\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\treadonly=\\\"false\\\" \\r\\n\\tdisabled=\\\"false\\\" \\r\\n\\trequired=\\\"\\\" \\r\\n\\tfilter=\\\"STRING\\\" \\r\\n\\tmessage=\\\"Error! Please add public name here.\\\" \\r\\n\\thint=\\\"Public Name Here\\\" \\r\\n\\/>\"', -2, '2015-07-15 23:52:33', '2018-07-30 22:43:44', 2, '', 4, 'eaa52dd7-3e38-448b-8541-3113fbf93d16', '', '', '', '', ''),
(2315, '', '', '', '', '', '', '', '', 64, '', 'VARCHAR', '', '', '', 'Public Phone (Xy)', 'NOT NULL', '', 23, '\"<field\\n\\ttype=\\\"tel\\\"\\n\\tname=\\\"publicnumber\\\"\\n\\tlabel=\\\"Public Phone\\\"\\n\\tsize=\\\"60\\\"\\n\\tmaxlength=\\\"150\\\"\\n\\tdefault=\\\"\\\"\\n\\tdescription=\\\"The phone number we may use publicly\\\"\\n\\tclass=\\\"text_area\\\"\\n\\tfilter=\\\"STRING\\\"\\n\\tvalidated=\\\"tel\\\"\\n\\tmessage=\\\"Error! Please add public phone number here.\\\"\\n\\thint=\\\"Public Phone Here\\\"\\n\\/>\"', -2, '2015-07-15 23:59:29', '2018-07-30 22:43:44', 4, '', 7, 'c9deb7b5-798d-43ae-9a62-abe003b23e3b', '', '', '', '', ''),
(2316, '', '', '', '', '', '', '', '', '', '', 'CHAR', '', '', '', 'Note - Public Contact Details (Xy)', 'NOT NULL', '', 14, '\"<field \\r\\n\\ttype=\\\"note\\\" \\r\\n\\tname=\\\"public_details_note\\\"\\r\\n\\tdescription=\\\"Your Public Contact Details\\\" \\r\\n\\tclass=\\\"alert alert-info,\\\" \\r\\n\\/>\"', -2, '2015-07-16 00:04:50', '2018-07-30 22:43:44', 1, '', 35, 'ab3ccee4-4974-46bf-a871-aeb273b852de', '', '', '', '', ''),
(2317, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Public Email (Xy)', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"publicEmail\\\" \\r\\n\\tlabel=\\\"Public Email\\\" \\r\\n\\tsize=\\\"60\\\" \\r\\n\\tmaxlength=\\\"150\\\" \\r\\n\\tdescription=\\\"The email we may use publicly\\\" \\r\\n\\tclass=\\\"text_area\\\"\\r\\n\\tfilter=\\\"STRING\\\" \\r\\n\\tvalidate=\\\"email\\\" \\r\\n\\trequired=\\\"\\\"\\r\\n\\tmessage=\\\"Error! Please public email address here.\\\" \\r\\n\\thint=\\\"Public Email Here\\\"\\r\\n\\/>\"', -2, '2015-07-15 23:56:49', '2018-07-30 22:43:44', 1, '', 204, 'fcfd392a-1576-48ea-80b9-0884b4ae1f7d', '', '', '', '', ''),
(2318, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Public Address (Xy)', 'NOT NULL', '', 8, '\"<field \\r\\n\\ttype=\\\"editor\\\" \\r\\n\\tname=\\\"publicAddress\\\" \\r\\n\\tlabel=\\\"Public Address\\\" \\r\\n\\twidth=\\\"100%\\\" \\r\\n\\theight=\\\"50px\\\" \\r\\n\\tcols=\\\"\\\" \\r\\n\\trows=\\\"\\\" \\r\\n\\tbuttons=\\\"false\\\" \\r\\n\\thide=\\\"\\\" \\r\\n\\teditor=\\\"\\\" \\r\\n\\tfilter=\\\"safehtml\\\" \\r\\n\\trequired=\\\"\\\" \\r\\n\\/>\"', -2, '2015-07-16 00:02:01', '2018-07-30 22:43:44', 1, '', 568, '6f584048-f1b8-46b9-8307-27358dbb7186', '', '', '', '', ''),
(2319, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'User (Service Provider) (Xy)', 'NOT NULL', '', 7, '\"<field \\r\\n\\ttype=\\\"serviceprovideruser\\\" \\r\\n\\tname=\\\"user\\\" \\r\\n\\tlabel=\\\"User (Service Provider)\\\" \\r\\n\\tdescription=\\\"\\\" \\r\\n\\tclass=\\\"\\\" \\r\\n\\treadonly=\\\"\\\" \\r\\n\\tdisabled=\\\"\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\thint=\\\"select a service provider\\\" \\r\\n\\textends=\\\"user\\\" \\r\\n\\ttable=\\\"#__users\\\" \\r\\n\\tcomponent=\\\"com_users\\\" \\r\\n\\tview=\\\"###view###\\\" \\r\\n\\tviews=\\\"###views###\\\" \\r\\n\\tvalue_field=\\\"name\\\" \\r\\n\\tkey_field=\\\"id\\\" \\r\\n\\ttype_php_1=\\\"\\/\\/ set the groups array\\\" \\r\\n\\ttype_php_2=\\\"$groups = JComponentHelper::getParams(\'com_###component###\')->get(\'###type###\');\\\" \\r\\n\\ttype_php_3=\\\"return $groups;\\\" \\r\\n\\ttype_phpx_1=\\\"\\/\\/ To ensure that there is only one record per user\\\" \\r\\n\\ttype_phpx_2=\\\"\\/\\/ Get a db connection.\\\" \\r\\n\\ttype_phpx_3=\\\"$db = JFactory::getDbo();\\\" \\r\\n\\ttype_phpx_4=\\\"\\/\\/ Create a new query object.\\\" \\r\\n\\ttype_phpx_5=\\\"$query = $db->getQuery(true);\\\" \\r\\n\\ttype_phpx_6=\\\"\\/\\/ Select all records from the #__###component###_###view### table from ###CODE### column\\\".\\\" \\r\\n\\ttype_phpx_7=\\\"$query->select($db->quoteName(\'###CODE###\'));\\\" \\r\\n\\ttype_phpx_8=\\\"$query->from($db->quoteName(\'#__###component###_###view###\'));\\\" \\r\\n\\ttype_phpx_9=\\\"$db->setQuery($query);\\\" \\r\\n\\ttype_phpx_10=\\\"$db->execute();\\\" \\r\\n\\ttype_phpx_11=\\\"$found = $db->getNumRows();\\\" \\r\\n\\ttype_phpx_12=\\\"if ($found)\\\" \\r\\n\\ttype_phpx_13=\\\"{\\\" \\r\\n\\ttype_phpx_14=\\\"\\\\t\\/\\/ return all users already used\\\" \\r\\n\\ttype_phpx_15=\\\"\\\\treturn array_unique($db->loadColumn());\\\" \\r\\n\\ttype_phpx_16=\\\"}\\\" \\r\\n\\ttype_phpx_17=\\\"return null;\\\" \\r\\n\\/>\"', -2, '2015-07-16 17:03:34', '2018-07-30 22:43:44', 10, '', 578, '5ab55c8d-1e02-47a8-b8e5-4d96843c0961', '', '', '', '', ''),
(2320, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Company (checkboxes) (Xy)', 'NOT NULL', 1, 6, '\"<field \\r\\n\\ttype=\\\"companycheck\\\" \\r\\n\\tname=\\\"testcompanies\\\" \\r\\n\\tlabel=\\\"Set Testing Companies\\\" \\r\\n\\tdescription=\\\"Select companies that are not real companies or only used for testing purposes.\\\" \\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\tdisabled=\\\"\\\" \\r\\n\\textends=\\\"checkboxes\\\" \\r\\n\\tbutton=\\\"false\\\"\\r\\n\\ttable=\\\"#__###component###_company\\\" \\r\\n\\tcomponent=\\\"com_###component###\\\" \\r\\n\\tview=\\\"company\\\" \\r\\n\\tviews=\\\"companies\\\" \\r\\n\\tvalue_field=\\\"name\\\" \\r\\n\\tkey_field=\\\"id\\\" \\r\\n\\ttype_php_1=\\\"\\/\\/ Get the user object.\\\\n\\\\t\\\\t$user = Factory::getUser();\\\\n\\\\t\\\\t\\/\\/ Create a new query object.\\\" \\r\\n\\ttype_php_2=\\\"$db = Factory::getDBO();\\\\n\\\\t\\\\t$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=\\\"if (!$user->authorise(\'core.options\', \'com_###component###\'))\\\\n\\\\t\\\\t{\\\\n\\\\t\\\\t\\\\t$companies = ###Component###Helper::hisCompanies($user->id);\\\" \\r\\n\\ttype_php_7=\\\"\\\\tif (ArrayHelper::check($companies))\\\\n\\\\t\\\\t\\\\t{\\\" \\r\\n\\ttype_php_8=\\\"\\\\t\\\\t$companies = implode(\',\',$companies);\\\\n\\\\t\\\\t\\\\t\\\\t\\/\\/ only load this users companies\\\" \\r\\n\\ttype_php_9=\\\"\\\\t\\\\t$query->where(\'a.id IN (\' . $companies . \')\');\\\" \\r\\n\\ttype_php_10=\\\"\\\\t}\\\\n\\\\t\\\\t\\\\telse\\\\n\\\\t\\\\t\\\\t{\\\" \\r\\n\\ttype_php_11=\\\"\\\\t\\\\t\\/\\/ dont allow user to see any companies\\\\n\\\\t\\\\t\\\\t\\\\t$query->where(\'a.id = -4\');\\\" \\r\\n\\ttype_php_12=\\\"\\\\t}\\\\n\\\\t\\\\t}\\\" \\r\\n\\ttype_php_13=\\\"$query->order(\'a.###TEXT### ASC\');\\\\n\\\\t\\\\t$db->setQuery((string)$query);\\\" \\r\\n\\ttype_php_14=\\\"$items = $db->loadObjectList();\\\" \\r\\n\\ttype_php_15=\\\"$options = array();\\\" \\r\\n\\ttype_php_16=\\\"if ($items)\\\\n\\\\t\\\\t{\\\" \\r\\n\\ttype_php_17=\\\"\\\\tforeach($items as $item)\\\" \\r\\n\\ttype_php_18=\\\"\\\\t{\\r\\n\\\\t\\\\t\\\\t\\\\t\\\\t$tmp = array(\\r\\n\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\'value\' => $item->###ID###,\\r\\n\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\'text\' => \'&nbsp;<strong>\'.$item->###CODE_TEXT###.\'<\\/strong>\',\\r\\n\\\\t\\\\t\\\\t\\\\t\\\\t\\\\t\'checked\' => false\\r\\n\\\\t\\\\t\\\\t\\\\t\\\\t);\\r\\n\\\\t\\\\t\\\\t\\\\t\\\\t$options[] = (object) $tmp;\\\"\\r\\n\\ttype_php_19=\\\"\\\\t}\\\\n\\\\t\\\\t}\\\\n\\\\t\\\\treturn $options;\\\" \\r\\n\\/>\"', -2, '2016-03-22 10:28:20', '2018-07-30 22:43:44', 4, '', 578, 'fc4364e4-f64b-493b-a88b-0fa021b8b1fb', '', '', '', '', ''),
(2321, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Males Death (year) (Xy)', 'NOT NULL', '', 19, '\"<field \\r\\n\\ttype=\\\"repeatable\\\" \\r\\n\\tname=\\\"maledeath\\\" \\r\\n\\tlabel=\\\"Set Males Total Deaths\\\" \\r\\n\\tdescription=\\\"Here you can add males total death data.\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tid=\\\"maledeath\\\" \\r\\n\\tclass=\\\"malesdeath\\\" \\r\\n\\tselect=\\\"Edit\\/Add\\\" \\r\\n\\ticon=\\\"list\\\" \\r\\n\\tmaximum=\\\"\\\" \\r\\n\\tfields=\\\"2284,2285,2289\\\" \\r\\n\\/>\"', -2, '2015-07-28 20:31:39', '2018-07-30 22:43:44', 4, '', 533, '4e17fe44-d2fe-44f8-b325-aa35547f8300', '', '', '', '', ''),
(2322, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Females Death (year) (Xy)', 'NOT NULL', '', 19, '\"<field \\r\\n\\ttype=\\\"repeatable\\\" \\r\\n\\tname=\\\"femaledeath\\\" \\r\\n\\tlabel=\\\"Set Females Total Deaths\\\" \\r\\n\\tdescription=\\\"Here you can add total females death data.\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tid=\\\"femaledeath\\\" \\r\\n\\tclass=\\\"femalesdeath\\\" \\r\\n\\tselect=\\\"Edit\\/Add\\\" \\r\\n\\ticon=\\\"list\\\" \\r\\n\\tmaximum=\\\"\\\" \\r\\n\\tfields=\\\"2284,2285,2289\\\" \\r\\n\\/>\"', -2, '2015-07-28 20:32:25', '2018-07-30 22:43:44', 2, '', 533, 'b0620ade-377e-4342-97f3-67e5af7c9131', '', '', '', '', ''),
(2323, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Females YLD (year) (Xy)', 'NOT NULL', '', 19, '\"<field \\r\\n\\ttype=\\\"repeatable\\\" \\r\\n\\tname=\\\"femaleyld\\\" \\r\\n\\tlabel=\\\"Set Females Total YLDs\\\" \\r\\n\\tdescription=\\\"Here you can add females total YLD data.\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tid=\\\"femaleyld\\\" \\r\\n\\tclass=\\\"femalesyld\\\" \\r\\n\\tselect=\\\"Edit\\/Add\\\" \\r\\n\\ticon=\\\"list\\\" \\r\\n\\tmaximum=\\\"10\\\" \\r\\n\\tfields=\\\"2284,2285,2289\\\" \\r\\n\\/>\"', -2, '2015-07-28 20:33:18', '2018-07-30 22:43:44', 2, '', 533, 'c98bf553-5577-477f-b6b8-7f4c8d082c98', '', '', '', '', ''),
(2324, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Males YLD (year) (Xy)', 'NOT NULL', '', 19, '\"<field \\r\\n\\ttype=\\\"repeatable\\\" \\r\\n\\tname=\\\"maleyld\\\" \\r\\n\\tlabel=\\\"Set Males Total YLDs\\\" \\r\\n\\tdescription=\\\"Here you can add males total YLD data.\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tid=\\\"maleyld\\\" \\r\\n\\tclass=\\\"malesyld\\\" \\r\\n\\tselect=\\\"Edit\\/Add\\\" \\r\\n\\ticon=\\\"list\\\" \\r\\n\\tmaximum=\\\"\\\" \\r\\n\\tfields=\\\"2284,2285,2289\\\" \\r\\n\\/>\"', -2, '2015-07-28 20:34:00', '2018-07-30 22:43:44', 2, '', 533, '9ab580fd-cb51-40ac-93a0-18149b499fc3', '', '', '', '', ''),
(2325, '', '', '', '', '', '', '', '', 7, '', 'CHAR', 2, '', '', 'Currency (dynamic) (Xy)', 'NOT NULL', '', 6, '\"<field \\r\\n\\ttype=\\\"currency\\\" \\r\\n\\tname=\\\"currency\\\" \\r\\n\\tlabel=\\\"Currency\\\" \\r\\n\\tdescription=\\\"List of available currencies\\\" \\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\tmultiple=\\\"false\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\treadonly=\\\"\\\" \\r\\n\\tdisabled=\\\"\\\" \\r\\n\\textends=\\\"list\\\" \\r\\n\\ttable=\\\"#__###component###_currency\\\" \\r\\n\\tcomponent=\\\"com_###component###\\\" \\r\\n\\tview=\\\"currency\\\" \\r\\n\\tviews=\\\"currencies\\\" \\r\\n\\tvalue_field=\\\"name\\\" \\r\\n\\tkey_field=\\\"codethree\\\" \\r\\n\\ttype_php_1=\\\"$db = Factory::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_13=\\\"\\\\tforeach($items as $item)\\\" \\r\\n\\ttype_php_14=\\\"\\\\t{\\\" \\r\\n\\ttype_php_15=\\\"\\\\t\\\\t$options[] = Html::_(\'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\\/>\"', -2, '2015-07-09 14:15:44', '2018-07-30 22:43:44', 4, '', 559, 'eaa161e7-a4d2-40da-b6a4-84bd4d337a12', '', '', '', '', ''),
(2326, '', '', '', '', '', '', '', '', 7, '', 'CHAR', 2, '', '', 'Code Two (country) (Xy)', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\"\\r\\n\\tname=\\\"codetwo\\\"\\r\\n\\tlabel=\\\"Code Two\\\"\\r\\n\\tsize=\\\"40\\\"\\r\\n\\tmaxlength=\\\"2\\\" \\r\\n\\tdefault=\\\"\\\"\\r\\n\\tdescription=\\\"ISO 3166-1 alpha-2 codes are two-letter country codes defined in ISO 3166-1, part of the ISO 3166 standard published by the International Organization for Standardization (ISO), to represent countries, dependent territories, and special areas of geographical interest.\\\"\\r\\n\\tclass=\\\"text_area\\\"\\r\\n\\tfilter=\\\"WORD\\\"\\r\\n\\trequired=\\\"true\\\"\\r\\n\\tmessage=\\\"Error! Please add two-letter country code here.\\\"\\r\\n\\thint=\\\"NA\\\"\\r\\n\\/>\"', -2, '2015-07-09 14:05:40', '2018-07-30 22:43:44', 4, '', 560, '29d19dd5-3ce6-49ae-b9fe-1d408f32cd59', '', '', '', '', ''),
(2327, '', '', '', '', '', '', '', '', 7, '', 'CHAR', 2, '', '', 'Code Three (country) (Xy)', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\"\\r\\n\\tname=\\\"codethree\\\"\\r\\n\\tlabel=\\\"Code Three\\\"\\r\\n\\tsize=\\\"40\\\"\\r\\n\\tmaxlength=\\\"3\\\" \\r\\n\\tdefault=\\\"\\\"\\r\\n\\tdescription=\\\"ISO 3166-1 alpha-3 codes are three-letter country codes defined in ISO 3166-1, part of the ISO 3166 standard published by the International Organization for Standardization (ISO), to represent countries, dependent territories, and special areas of geographical interest.\\\"\\r\\n\\tclass=\\\"text_area\\\"\\r\\n\\tfilter=\\\"WORD\\\"\\r\\n\\trequired=\\\"true\\\"\\r\\n\\tmessage=\\\"Error! Please add three-letter country code here.\\\"\\r\\n\\thint=\\\"NAM\\\"\\r\\n\\/>\"', -2, '2015-07-09 14:03:26', '2018-07-30 22:43:44', 5, '', 561, '1cdbe1de-3dcf-49bc-9a18-d2a958f0a124', '', '', '', '', ''),
(2328, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', 2, '', '', 'Worldzone (Xy)', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\"\\r\\n\\tname=\\\"worldzone\\\"\\r\\n\\tlabel=\\\"Worldzone\\\"\\r\\n\\tsize=\\\"40\\\"\\r\\n\\tmaxlength=\\\"50\\\" \\r\\n\\tdefault=\\\"\\\"\\r\\n\\tdescription=\\\"The zone this country belongs to\\\"\\r\\n\\tclass=\\\"text_area\\\"\\r\\n\\tfilter=\\\"INT\\\"\\r\\n\\trequired=\\\"false\\\"\\r\\n\\tmessage=\\\"Error! Please add zone code here.\\\"\\r\\n\\thint=\\\"only number\\\"\\r\\n\\/>\"', -2, '2015-07-09 13:59:48', '2018-07-30 22:43:44', 1, '', 562, 'c2b3baff-bba3-4b43-88ab-9fa9f6137661', '', '', '', '', ''),
(2329, '', '', '', '', '', '', '', '', 7, '', 'CHAR', '', '', '', 'Presenteeism Constant (Xy)', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"presenteeism\\\" \\r\\n\\tlabel=\\\"Presenteeism Constant\\\" \\r\\n\\tsize=\\\"10\\\" \\r\\n\\tmaxlength=\\\"10\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tdescription=\\\"The presenteeism constant.\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\treadonly=\\\"false\\\" \\r\\n\\tdisabled=\\\"false\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\tfilter=\\\"CMD\\\" \\r\\n\\tvalidate=\\\"\\\" \\r\\n\\tmessage=\\\"Error! Please add presenteeism constant here.\\\" \\r\\n\\thint=\\\"0.25\\\"\\r\\n\\/>\"', -2, '2015-07-25 12:58:36', '2018-07-30 22:43:44', 2, '', 574, '4e227d10-8b85-48c9-a4a6-9cc280a0cbc6', '', '', '', '', ''),
(2330, '', '', '', '', '', '', '', '', 7, '', 'CHAR', '', '', '', 'Default Healthcare Costs (Xy)', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"healthcare\\\" \\r\\n\\tlabel=\\\"Default Healthcare Costs\\\" \\r\\n\\tsize=\\\"10\\\" \\r\\n\\tmaxlength=\\\"10\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tdescription=\\\"The healthcare costs as a % of total salary costs. This figure is used for the calculations as default.\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\treadonly=\\\"false\\\" \\r\\n\\tdisabled=\\\"false\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\tfilter=\\\"CMD\\\" \\r\\n\\tvalidate=\\\"\\\" \\r\\n\\tmessage=\\\"Error! Please add healthcare cost here.\\\" \\r\\n\\thint=\\\"10\\\"\\r\\n\\/>\"', -2, '2015-07-25 13:03:48', '2018-07-30 22:43:44', 2, '', 574, '8257f877-0c1e-4b39-a592-da67e27c23ce', '', '', '', '', ''),
(2331, '', '', '', '', '', '', '', '', 7, '', 'CHAR', '', '', '', 'Ave. Medical Turnover (Xy)', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"medical_turnovers\\\" \\r\\n\\tlabel=\\\"Default Ave. Medical Turnover\\\" \\r\\n\\tsize=\\\"10\\\" \\r\\n\\tmaxlength=\\\"10\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tdescription=\\\"The average medical turnover per\\/100,000.\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\treadonly=\\\"false\\\" \\r\\n\\tdisabled=\\\"false\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\tfilter=\\\"CMD\\\" \\r\\n\\tvalidate=\\\"\\\" \\r\\n\\tmessage=\\\"Error! Please add ave. medical turnover here.\\\" \\r\\n\\thint=\\\"12\\\"\\r\\n\\/>\"', -2, '2015-07-25 13:05:05', '2018-07-30 22:43:44', 2, '', 574, '2f2ba48f-e376-4b3a-83b4-3978877c86be', '', '', '', '', ''),
(2332, '', '', '', '', '', '', '', '', 7, '', 'CHAR', '', '', '', 'Ave. Sick Leave (Xy)', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"sick_leave\\\" \\r\\n\\tlabel=\\\"Default Ave. Sick Leave\\\" \\r\\n\\tsize=\\\"10\\\" \\r\\n\\tmaxlength=\\\"10\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tdescription=\\\"The average sick leave days per\\/person.\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\treadonly=\\\"false\\\" \\r\\n\\tdisabled=\\\"false\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\tfilter=\\\"CMD\\\" \\r\\n\\tvalidate=\\\"\\\" \\r\\n\\tmessage=\\\"Error! Please add ave. sick leave here.\\\" \\r\\n\\thint=\\\"12\\\"\\r\\n\\/>\"', -2, '2015-07-25 13:06:22', '2018-07-30 22:43:44', 2, '', 574, 'b60f7370-1536-403c-860d-8d2c8060eab7', '', '', '', '', ''),
(2333, '', '', '', '', '', '', '', '', 7, '', 'CHAR', '', '', '', 'Default Productivity Losses (Xy)', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"productivity_losses\\\" \\r\\n\\tlabel=\\\"Default Productivity Losses\\\" \\r\\n\\tsize=\\\"10\\\" \\r\\n\\tmaxlength=\\\"10\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tdescription=\\\"The interim number between 0 and 1 reflecting the amount of a year in lost productivity due to medical retirement\\/death of an employee. This figure is used for the default.\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\treadonly=\\\"false\\\" \\r\\n\\tdisabled=\\\"false\\\" \\r\\n\\trequired=\\\"true\\\" \\r\\n\\tfilter=\\\"CMD\\\" \\r\\n\\tvalidate=\\\"\\\" \\r\\n\\tmessage=\\\"Error! Please add productivity losses here.\\\" \\r\\n\\thint=\\\"0.5\\\"\\r\\n\\/>\"', -2, '2015-07-25 13:07:38', '2018-07-30 22:43:44', 2, '', 574, '68a25ae4-588b-4c12-85e8-8416c8a10e66', '', '', '', '', ''),
(2334, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'User (County) (Xy)', 'NOT NULL', '', 7, '\"<field \\r\\n\\ttype=\\\"countryuser\\\" \\r\\n\\tname=\\\"user\\\" \\r\\n\\tlabel=\\\"User (Country)\\\"\\r\\n\\tdescription=\\\"\\\"\\r\\n\\tclass=\\\"\\\"\\r\\n\\treadonly=\\\"\\\"\\r\\n\\tdisabled=\\\"\\\"\\r\\n\\tdefault=\\\"\\\"\\r\\n\\thint=\\\"select a country user\\\" \\r\\n\\textends=\\\"user\\\" \\r\\n\\ttable=\\\"#__users\\\" \\r\\n\\tcomponent=\\\"com_users\\\" \\r\\n\\tview=\\\"###view###\\\" \\r\\n\\tviews=\\\"###views###\\\" \\r\\n\\tvalue_field=\\\"name\\\" \\r\\n\\tkey_field=\\\"id\\\" \\r\\n\\ttype_php_1=\\\"\\/\\/ set the groups array\\\" \\r\\n\\ttype_php_2=\\\"$groups = JComponentHelper::getParams(\'com_###component###\')->get(\'###type###\');\\\" \\r\\n\\ttype_php_3=\\\"return $groups;\\\" \\r\\n\\ttype_phpx_1=\\\"\\/\\/ To ensure that there is only one record per user\\\" \\r\\n\\ttype_phpx_2=\\\"\\/\\/ Get a db connection.\\\" \\r\\n\\ttype_phpx_3=\\\"$db = JFactory::getDbo();\\\" \\r\\n\\ttype_phpx_4=\\\"\\/\\/ Create a new query object.\\\" \\r\\n\\ttype_phpx_5=\\\"$query = $db->getQuery(true);\\\" \\r\\n\\ttype_phpx_6=\\\"\\/\\/ Select all records from the #__###component###_###view### table from ###CODE### column\\\".\\\" \\r\\n\\ttype_phpx_7=\\\"$query->select($db->quoteName(\'###CODE###\'));\\\" \\r\\n\\ttype_phpx_8=\\\"$query->from($db->quoteName(\'#__###component###_###view###\'));\\\" \\r\\n\\ttype_phpx_9=\\\"$db->setQuery($query);\\\" \\r\\n\\ttype_phpx_10=\\\"$db->execute();\\\" \\r\\n\\ttype_phpx_11=\\\"$found = $db->getNumRows();\\\" \\r\\n\\ttype_phpx_12=\\\"if ($found)\\\" \\r\\n\\ttype_phpx_13=\\\"{\\\" \\r\\n\\ttype_phpx_14=\\\"\\\\t\\/\\/ return all users already used\\\" \\r\\n\\ttype_phpx_15=\\\"\\\\treturn array_unique($db->loadColumn());\\\" \\r\\n\\ttype_phpx_16=\\\"}\\\" \\r\\n\\ttype_phpx_17=\\\"return null;\\\" \\r\\n\\/>\"', -2, '2015-07-16 17:02:05', '2018-07-30 22:43:44', 8, '', 578, 'd82f7d6e-0de6-4250-9134-1d403401a161', '', '', '', '', ''),
(2335, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Target Groups (multi)', 'NOT NULL', 1, 29, '\"<field\\n\\ttype=\\\"usergroup\\\"\\n\\tname=\\\"groups_target\\\"\\n\\tlabel=\\\"Target Group\\/s\\\"\\n\\tdescription=\\\"Select target group\\/s\\\"\\n\\trequired=\\\"true\\\"\\n\\tmultiple=\\\"true\\\"\\n\\/>\"', 1, '2018-07-31 07:18:02', '2018-07-31 07:18:57', 2, '', 50, '40f2c03f-7977-4136-9bb9-2c09acf37eac', '', '', '', '', ''),
(2336, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Access Groups (multi)', 'NOT NULL', 1, 29, '\"<field\\n\\ttype=\\\"usergroup\\\"\\n\\tname=\\\"groups_access\\\"\\n\\tlabel=\\\"Access Group\\/s\\\"\\n\\tdescription=\\\"Select access group\\/s\\\"\\n\\trequired=\\\"true\\\"\\n\\tmultiple=\\\"true\\\"\\n\\/>\"', 1, '2018-07-31 07:18:41', '2015-09-25 17:03:00', 1, '', 50, 'da308369-c29e-4b4b-86b8-902a36d0f423', '', '', '', '', ''),
(2337, '', '', '', '', '', '', '', '', '', '', '', '', '', '', 'Header Measurements', 'NOT NULL', '', 14, '\"<field\\n\\ttype=\\\"note\\\"\\n\\tname=\\\"measurements_header\\\"\\n\\tdescription=\\\"Measurements regarding body composition\\\"\\n\\tclass=\\\"alert alert-success\\\"\\n\\/>\"', 1, '2018-08-03 10:03:15', '2018-09-08 17:03:33', 2, '', 860, '7037ae0a-afd3-4c85-b795-d1eb07694a45', '', '', '', '', ''),
(2338, '', '', '', '', '', '', '', '', 7, '', 'VARCHAR', '', '', '', 'Age (member)', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"age\\\"\\n\\tlabel=\\\"Age\\\"\\n\\tsize=\\\"40\\\"\\n\\tmaxlength=\\\"6\\\"\\n\\tdescription=\\\"Enter Member Age in Years like 34 Must only be a number!\\\"\\n\\tclass=\\\"text_area\\\"\\n\\tfilter=\\\"STRING\\\"\\n\\tvalidate=\\\"number\\\"\\n\\tmessage=\\\"Enter Member Age in Years like 34 Must only be a number!\\\"\\n\\thint=\\\"Age Here\\\"\\n\\tautocomplete=\\\"on\\\"\\n\\tonchange=\\\"if(!jQuery(this).val().match(\\/^\\\\d+$\\/)){jQuery(this).val(\'\')};\\\"\\n\\/>\"', 1, '2018-08-03 10:05:48', '2018-08-03 10:12:00', 2, '', 859, 'efecf6da-14fe-4775-a868-4c32deb1df3a', '', '', '', '', ''),
(2339, '', '', '', '', '', '', '', '', 11, '', 'INT', '', '', '', 'Member (external)', 'NOT NULL', '', 6, '\"<field\\n\\ttype=\\\"member\\\"\\n\\tname=\\\"member\\\"\\n\\tlabel=\\\"Member\\\"\\n\\tclass=\\\"list_class\\\"\\n\\tmultiple=\\\"false\\\"\\n\\trequired=\\\"true\\\"\\n\\textends=\\\"list\\\"\\n\\ttable=\\\"#__[[[core]]]_member\\\"\\n\\tcomponent=\\\"com_[[[core]]]\\\"\\n\\tview=\\\"member\\\"\\n\\tviews=\\\"members\\\"\\n\\tvalue_field=\\\"token\\\"\\n\\tkey_field=\\\"id\\\"\\n\\tprime_php=\\\"1\\\"\\n\\ttype_php_1=\\\"__.o0=base64=Oo.__W0NVU1RPTUNPREU9Z2V0RXh0ZXJuYWxNZW1iZXJzK21lbWJlcixNZW1iZXJd\\\"\\n\\/>\"', 1, '2018-08-03 10:23:15', '2020-06-06 01:51:10', 23, '', 384, '1216f70d-5330-46d8-822e-c9054ef1f398', '', '', '', '', ''),
(2340, '', '', '', '', '', '', '', '', 7, '', 'VARCHAR', '', '', '', 'Height (required)', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"height\\\"\\n\\tlabel=\\\"Height\\\"\\n\\tsize=\\\"40\\\"\\n\\tmaxlength=\\\"6\\\"\\n\\tdescription=\\\"Enter Patient Height in Meters like 1.85 Must only be a number!\\\"\\n\\tclass=\\\"text_area\\\"\\n\\trequired=\\\"true\\\"\\n\\tfilter=\\\"STRING\\\"\\n\\tvalidate=\\\"number\\\"\\n\\tmessage=\\\"Enter Patient Height in Meters like 1.85 must only be a number!\\\"\\n\\thint=\\\"Height Here\\\"\\n\\tautocomplete=\\\"on\\\"\\n\\tonchange=\\\"if(!jQuery(this).val().match(\\/^\\\\d+\\\\.\\\\d+$\\/)){if(!jQuery(this).val().match(\\/^\\\\d+$\\/)){jQuery(this).val(\'\')}};\\\"\\n\\/>\"', 1, '2018-08-04 04:42:24', '2018-08-06 11:38:37', 3, '', 859, '94f37f00-b060-4ea1-9857-7afd0c928b6b', '', '', '', '', ''),
(2341, '', '', '', '', '', '', '', '', 7, '', 'VARCHAR', '', '', '', 'Weight (required)', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"weight\\\"\\n\\tlabel=\\\"Weight\\\"\\n\\tsize=\\\"40\\\"\\n\\tmaxlength=\\\"6\\\"\\n\\tdescription=\\\"Weight in Kilograms like 95.5 must only be a number!\\\"\\n\\tclass=\\\"text_area\\\"\\n\\trequired=\\\"true\\\"\\n\\tfilter=\\\"FLOAT\\\"\\n\\tvalidate=\\\"number\\\"\\n\\tmessage=\\\"Weight in Kilograms like 95.5 must only be a number!\\\"\\n\\thint=\\\"Weight Here\\\"\\n\\tautocomplete=\\\"on\\\"\\n\\tonchange=\\\"if(!jQuery(this).val().match(\\/^\\\\d+\\\\.\\\\d+$\\/)){if(!jQuery(this).val().match(\\/^\\\\d+$\\/)){jQuery(this).val(\'\')}};\\\"\\n\\/>\"', 1, '2018-08-04 04:42:58', '2018-08-05 22:27:08', 2, '', 859, '35f723d3-6ab4-4e72-a249-45efde96abaa', '', '', '', '', ''),
(2342, '', '', '', '', '', '', '', '', '', '', 'INT', '', '', '', 'CORE Assessment (Link)', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"activate_[[[core]]]_assessment\\\"\\n\\tlabel=\\\"Activate Assessment\\\"\\n\\tdescription=\\\"Should this ###component### assessment be active in member manager?\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"1|Yes,0|No\\\"\\n\\tdefault=\\\"0\\\"\\n\\/>\"', 1, '2018-08-07 19:19:45', '2019-02-14 23:47:29', 7, '', 868, '5fff5588-a002-4a85-b6f1-72194edf22a3', '', '', '', '', ''),
(2343, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Target Member Types - assessment (multiple)', 'NOT NULL', '', 6, '\"<field\\n\\ttype=\\\"targettypes\\\"\\n\\tname=\\\"[[[core]]]_target_type\\\"\\n\\tlabel=\\\"Target Member Types\\\"\\n\\tdescription=\\\"Select the types of members you would like to target with this assessment.\\\"\\n\\tclass=\\\"list_class\\\"\\n\\tmultiple=\\\"true\\\"\\n\\trequired=\\\"false\\\"\\n\\tshowon=\\\"activate_[[[core]]]_assessment:1\\\"\\n\\textends=\\\"list\\\"\\n\\ttable=\\\"#__[[[core]]]_type\\\"\\n\\tcomponent=\\\"com_[[[core]]]\\\"\\n\\tview=\\\"type\\\"\\n\\tviews=\\\"types\\\"\\n\\tvalue_field=\\\"name\\\"\\n\\tkey_field=\\\"id\\\"\\n\\tprime_php=\\\"1\\\"\\n\\ttype_php_1=\\\"__.o0=base64=Oo.__CQkvLyBsb2FkIHRoZSBkYiBvcGJqZWN0DQoJCSRkYiA9IEpGYWN0b3J5OjpnZXREQk8oKTsNCgkJLy8gc3RhcnQgcXVlcnkNCgkJJHF1ZXJ5ID0gJGRiLT5nZXRRdWVyeSh0cnVlKTsNCgkJJHF1ZXJ5LT5zZWxlY3QoJGRiLT5xdW90ZU5hbWUoYXJyYXkoJ2EuIyMjSUQjIyMnLCdhLiMjI1RFWFQjIyMnKSxhcnJheSgnIyMjSUQjIyMnLCcjIyNDT0RFX1RFWFQjIyMnKSkpOw0KCQkkcXVlcnktPmZyb20oJGRiLT5xdW90ZU5hbWUoJyMjI1RBQkxFIyMjJywgJ2EnKSk7DQoJCSRxdWVyeS0+d2hlcmUoJGRiLT5xdW90ZU5hbWUoJ2EucHVibGlzaGVkJykgLiAnID49IDEnKTsNCgkJJHF1ZXJ5LT5vcmRlcignYS4jIyNURVhUIyMjIEFTQycpOw0KCQkkZGItPnNldFF1ZXJ5KChzdHJpbmcpJHF1ZXJ5KTsNCgkJJGl0ZW1zID0gJGRiLT5sb2FkT2JqZWN0TGlzdCgpOw0KCQkkb3B0aW9ucyA9IGFycmF5KCk7DQoJCWlmICgkaXRlbXMpDQoJCXsNCgkJCWZvcmVhY2goJGl0ZW1zIGFzICRpdGVtKQ0KCQkJew0KCQkJCSRvcHRpb25zW10gPSBKSHRtbDo6Xygnc2VsZWN0Lm9wdGlvbicsICRpdGVtLT4jIyNJRCMjIywgJGl0ZW0tPiMjI0NPREVfVEVYVCMjIyk7DQoJCQl9DQoJCX0NCgkJcmV0dXJuICRvcHRpb25zOw==\\\"\\n\\/>\"', 1, '2018-08-09 08:28:35', '2019-02-14 23:46:31', 12, '', 384, '0f4fbeb3-c164-4c5b-afc8-55074eb05f33', '', '', '', '', ''),
(2344, '', '', '', '', '', '', '', '', '', '', 'MEDIUMTEXT', '', '', '', 'PHP (allowAdd)', 'NOT NULL', 2, 8, '\"<field\\n\\ttype=\\\"editor\\\"\\n\\tname=\\\"php_allowadd\\\"\\n\\tlabel=\\\"PHP allowAdd Method<br \\/><small>An array of input data. => ($data) and the user object => ($user) are already set.<\\/small>\\\"\\n\\tdescription=\\\"Add PHP Here that should run in the allowAdd Method to add custom access control. 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, '2018-08-09 13:47:40', '2019-07-08 14:20:26', 2, '', 118, '2f0432b4-e601-474e-9edb-4b438517039b', '', '', '', '', ''),
(2345, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Add PHP (allowAdd Method)', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"add_php_allowadd\\\"\\n\\tlabel=\\\"Add PHP (allowAdd Method)\\\"\\n\\tdescription=\\\"\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"1|Yes,0|No\\\"\\n\\tdefault=\\\"0\\\"\\n\\trequired=\\\"true\\\"\\n\\/>\"', 1, '2018-08-09 13:48:17', '2015-08-25 21:15:22', 1, '', 187, '4550b372-974e-432c-8221-69b6fb65fdfd', '', '', '', '', ''),
(2346, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Assessment Type Name (LANG)', 'NOT NULL', '', 11, '\"<field\\n\\ttype=\\\"list\\\"\\n\\tname=\\\"assessment_type_name\\\"\\n\\tlabel=\\\"Assessment Type Name\\\"\\n\\tdescription=\\\"Select the type of assessment this is to you.\\\"\\n\\tclass=\\\"list_class\\\"\\n\\tmultiple=\\\"false\\\"\\n\\tfilter=\\\"WORD\\\"\\n\\toption=\\\"ANALYSIS|Analysis,APPRAISALS|Appraisals,ASSESSMENTS|Assessments,EVALUATIONS|Evaluations,EXAMINATIONS|Examinations,LISTING|Listing,PROJECT_DETAILS|Project Details,RATINGS|Ratings,RESULTS|Results,SCREENINGS|Screenings,SURVEYS|Surveys,TESTS|Tests\\\"\\n\\tdefault=\\\"ASSESSMENTS\\\"\\n\\tshowon=\\\"activate_[[[core]]]_assessment:1\\\"\\n\\/>\"', 1, '2018-08-10 09:22:10', '2020-06-02 01:22:11', 10, '', 384, '3b4ccb04-9617-41f3-ae37-9387576cede8', '', '', '', '', ''),
(2347, '', '', '', '', '', '', '', '', '', '', 'INT', '', '', '', 'CORE Info (Link)', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"activate_[[[core]]]_info\\\"\\n\\tlabel=\\\"Activate Information Option\\\"\\n\\tdescription=\\\"Should this ###component### information option be active in member manager?\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"1|Yes,0|No\\\"\\n\\tdefault=\\\"0\\\"\\n\\/>\"', 1, '2018-08-10 13:17:52', '2019-02-14 23:47:35', 4, '', 868, '96269a73-bbbc-42bc-ab65-1ccee1c9dc2a', '', '', '', '', ''),
(2348, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Target Member Types - info (multiple)', 'NOT NULL', '', 6, '\"<field\\n\\ttype=\\\"targettypes\\\"\\n\\tname=\\\"[[[core]]]_target_type\\\"\\n\\tlabel=\\\"Target Member Types\\\"\\n\\tdescription=\\\"Select the types of members you would like to target with this added information option.\\\"\\n\\tclass=\\\"list_class\\\"\\n\\tmultiple=\\\"true\\\"\\n\\trequired=\\\"false\\\"\\n\\tshowon=\\\"activate_[[[core]]]_info:1\\\"\\n\\textends=\\\"list\\\"\\n\\ttable=\\\"#__[[[core]]]_type\\\"\\n\\tcomponent=\\\"com_[[[core]]]\\\"\\n\\tview=\\\"type\\\"\\n\\tviews=\\\"types\\\"\\n\\tvalue_field=\\\"name\\\"\\n\\tkey_field=\\\"id\\\"\\n\\ttype_php_1=\\\"__.o0=base64=Oo.__CQkvLyBsb2FkIHRoZSBkYiBvcGJqZWN0DQoJCSRkYiA9IEpGYWN0b3J5OjpnZXREQk8oKTsNCgkJLy8gc3RhcnQgcXVlcnkNCgkJJHF1ZXJ5ID0gJGRiLT5nZXRRdWVyeSh0cnVlKTsNCgkJJHF1ZXJ5LT5zZWxlY3QoJGRiLT5xdW90ZU5hbWUoYXJyYXkoJ2EuIyMjSUQjIyMnLCdhLiMjI1RFWFQjIyMnKSxhcnJheSgnIyMjSUQjIyMnLCcjIyNDT0RFX1RFWFQjIyMnKSkpOw0KCQkkcXVlcnktPmZyb20oJGRiLT5xdW90ZU5hbWUoJyMjI1RBQkxFIyMjJywgJ2EnKSk7DQoJCSRxdWVyeS0+d2hlcmUoJGRiLT5xdW90ZU5hbWUoJ2EucHVibGlzaGVkJykgLiAnID49IDEnKTsNCgkJJHF1ZXJ5LT5vcmRlcignYS4jIyNURVhUIyMjIEFTQycpOw0KCQkkZGItPnNldFF1ZXJ5KChzdHJpbmcpJHF1ZXJ5KTsNCgkJJGl0ZW1zID0gJGRiLT5sb2FkT2JqZWN0TGlzdCgpOw0KCQkkb3B0aW9ucyA9IGFycmF5KCk7DQoJCWlmICgkaXRlbXMpDQoJCXsNCgkJCWZvcmVhY2goJGl0ZW1zIGFzICRpdGVtKQ0KCQkJew0KCQkJCSRvcHRpb25zW10gPSBKSHRtbDo6Xygnc2VsZWN0Lm9wdGlvbicsICRpdGVtLT4jIyNJRCMjIywgJGl0ZW0tPiMjI0NPREVfVEVYVCMjIyk7DQoJCQl9DQoJCX0NCgkJcmV0dXJuICRvcHRpb25zOw==\\\"\\n\\/>\"', 1, '2018-08-10 13:20:06', '2019-02-14 23:44:12', 6, '', 384, 'b49eb06b-3756-415e-9d22-1082ff5c4d19', '', '', '', '', ''),
(2349, '', '', '', '', '', '', '', '', 64, '', 'VARCHAR', '', '', '', 'Targeted Accounts - assessment (multiple)', 'NOT NULL', 1, 11, '\"<field\\n\\ttype=\\\"list\\\"\\n\\tname=\\\"[[[core]]]_target_account\\\"\\n\\tlabel=\\\"Targeted Accounts\\\"\\n\\tdescription=\\\"What type of Accounts should we target.\\\"\\n\\tmessage=\\\"\\\"\\n\\tclass=\\\"list_class\\\"\\n\\tmultiple=\\\"true\\\"\\n\\toption=\\\"1|Main & Login,2|Main,3|Sub,4|Sub & Login\\\"\\n\\tshowon=\\\"activate_[[[core]]]_assessment:1\\\"\\n\\/>\"', 1, '2018-08-10 13:21:20', '2019-02-14 23:44:20', 6, '', 868, 'abdafd26-45f7-4b9f-9575-7f715429a774', '', '', '', '', ''),
(2350, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Account (multiple)', 'NOT NULL', '', 11, '\"<field\\n\\ttype=\\\"list\\\"\\n\\tname=\\\"account\\\"\\n\\tlabel=\\\"Account\\\"\\n\\tdescription=\\\"What Type of Account is this.\\\"\\n\\tmessage=\\\"\\\"\\n\\tclass=\\\"list_class\\\"\\n\\tmultiple=\\\"true\\\"\\n\\trequired=\\\"true\\\"\\n\\tvalidate=\\\"number\\\"\\n\\toption=\\\"1|Main & Login,2|Main,3|Sub,4|Sub & Login\\\"\\n\\tdefault=\\\"1\\\"\\n\\/>\"', 1, '2018-08-10 13:23:55', '2018-07-16 00:35:44', 1, '', 863, '635bc35f-c905-4498-89b7-cfec74724f8e', '', '', '', '', ''),
(2351, '', '', '', '', '', '', '', '', 64, '', 'VARCHAR', '', '', '', 'Targeted Accounts - info (multiple)', 'NOT NULL', 1, 11, '\"<field\\n\\ttype=\\\"list\\\"\\n\\tname=\\\"[[[core]]]_target_account\\\"\\n\\tlabel=\\\"Targeted Accounts\\\"\\n\\tdescription=\\\"What type of Accounts should we target.\\\"\\n\\tclass=\\\"list_class\\\"\\n\\tmultiple=\\\"true\\\"\\n\\toption=\\\"1|Main & Login,2|Main,3|Sub,4|Sub & Login\\\"\\n\\tshowon=\\\"activate_[[[core]]]_info:1\\\"\\n\\/>\"', 1, '2018-08-10 13:26:12', '2019-02-14 23:45:12', 7, '', 863, 'f9e0523d-93f0-4214-81d8-33f05f8036dd', '', '', '', '', ''),
(2352, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'Relations Type (assessment)', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"[[[core]]]_relation_type\\\"\\n\\tlabel=\\\"Relation Type\\\"\\n\\tdescription=\\\"What type of relationship does this form have towards a member.\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"1|One to One,2|One to Many\\\"\\n\\tdefault=\\\"2\\\"\\n\\tshowon=\\\"activate_[[[core]]]_assessment:1\\\"\\n\\/>\"', 1, '2018-08-17 07:30:41', '2019-02-14 23:45:21', 4, '', 869, 'ebc4c98b-32c8-4a0c-b0ca-5fd23f55d841', '', '', '', '', ''),
(2353, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'Relations Type (info)', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"[[[core]]]_relation_type\\\"\\n\\tlabel=\\\"Relation Type\\\"\\n\\tdescription=\\\"What type of relationship does this form have towards a member.\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"1|One to One,2|One to Many\\\"\\n\\tdefault=\\\"1\\\"\\n\\tshowon=\\\"activate_[[[core]]]_info:1\\\"\\n\\/>\"', 1, '2018-08-17 07:30:58', '2019-02-14 23:45:29', 5, '', 869, 'c9308aa6-0638-4a11-806a-33e58aca32fa', '', '', '', '', ''),
(2354, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', 2, '', '', 'Name of Medical Aid', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"name\\\"\\n\\tlabel=\\\"Name of Medical Aid\\\"\\n\\tsize=\\\"10\\\"\\n\\tmaxlength=\\\"50\\\"\\n\\tdescription=\\\"Enter name of medical aid.\\\"\\n\\tclass=\\\"text_area\\\"\\n\\tfilter=\\\"STRING\\\"\\n\\tmessage=\\\"Error! Please enter name of medical aid here.\\\"\\n\\thint=\\\"Medical Aid Name\\\"\\n\\tautocomplete=\\\"on\\\"\\n\\/>\"', 1, '2018-08-17 20:47:03', '2019-03-25 21:29:33', 4, '', 870, '30df6d1b-09a1-4a09-ba6e-6d2a6bea9254', '', '', '', '', ''),
(2355, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', 2, '', '', 'Scheme', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"scheme\\\"\\n\\tlabel=\\\"Scheme\\\"\\n\\tsize=\\\"10\\\"\\n\\tmaxlength=\\\"50\\\"\\n\\tdescription=\\\"Enter Name of Scheme.\\\"\\n\\tclass=\\\"text_area\\\"\\n\\tfilter=\\\"STRING\\\"\\n\\tmessage=\\\"Error! Please enter scheme here.\\\"\\n\\thint=\\\"Scheme\\\"\\n\\tautocomplete=\\\"on\\\"\\n\\/>\"', 1, '2018-08-17 20:48:12', '2018-08-17 20:49:56', 2, '', 870, '171a4ff6-741e-46fd-a705-792bf485f640', '', '', '', '', ''),
(2356, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', 2, '', '', 'Medical Aid Number', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"number\\\"\\n\\tlabel=\\\"Medical Aid Number\\\"\\n\\tsize=\\\"50\\\"\\n\\tmaxlength=\\\"150\\\"\\n\\tdescription=\\\"Enter Medical Aid Number.\\\"\\n\\tclass=\\\"text_area\\\"\\n\\tfilter=\\\"STRING\\\"\\n\\tmessage=\\\"Error! Please enter medical aid number here.\\\"\\n\\thint=\\\"Medical Aid Number\\\"\\n\\tautocomplete=\\\"on\\\"\\n\\/>\"', 1, '2018-08-17 20:49:36', '2019-03-25 21:30:01', 2, '', 870, '7404c482-db57-4eab-b07d-0067b14dae24', '', '', '', '', ''),
(2357, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', 2, '', '', 'Dependent Number', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"dependent_number\\\"\\n\\tlabel=\\\"Dependent Number\\\"\\n\\tsize=\\\"50\\\"\\n\\tmaxlength=\\\"150\\\"\\n\\tdescription=\\\"Enter Dependent Number.\\\"\\n\\tclass=\\\"text_area\\\"\\n\\tfilter=\\\"STRING\\\"\\n\\tmessage=\\\"Error! Please enter dependent number here.\\\"\\n\\thint=\\\"Dependent Number\\\"\\n\\tautocomplete=\\\"on\\\"\\n\\/>\"', 1, '2018-08-17 21:18:58', '2019-03-25 21:30:16', 2, '', 870, '3111d0e8-fa49-478d-ba7d-81f37041e0da', '', '', '', '', ''),
(2358, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', 2, '', '', 'Psemas Employee Number', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"psemas_number\\\"\\n\\tlabel=\\\"Psemas Employee Number\\\"\\n\\tsize=\\\"50\\\"\\n\\tmaxlength=\\\"150\\\"\\n\\tdescription=\\\"Enter Psemas Employee Number.\\\"\\n\\tclass=\\\"text_area\\\"\\n\\tfilter=\\\"STRING\\\"\\n\\tmessage=\\\"Error! Please enter psemas employee number here.\\\"\\n\\thint=\\\"Psemas Employee Number\\\"\\n\\tautocomplete=\\\"on\\\"\\n\\/>\"', 1, '2018-08-17 21:20:50', '2019-03-25 21:30:28', 3, '', 870, '74d08c8a-36f6-4692-b130-decc470caf9b', '', '', '', '', ''),
(2359, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'ProfileFields (form)', 'NOT NULL', '', 6, '\"<field\\n\\ttype=\\\"profilefields\\\"\\n\\tname=\\\"field\\\"\\n\\tlabel=\\\"Field\\\"\\n\\tclass=\\\"list_class\\\"\\n\\tmultiple=\\\"false\\\"\\n\\textends=\\\"list\\\"\\n\\tprime_php=\\\"1\\\"\\n\\ttype_php_1=\\\"__.o0=base64=Oo.__CQkJJGRiID0gSkZhY3Rvcnk6OmdldERCTygpOw0KCQkJLy8gZ2V0IHRoZSBkYXRhYmFzZSBjb2x1bW5zIG9mIHRoaXMgdGFibGUNCgkJCSRjb2x1bW5zID0gJGRiLT5nZXRUYWJsZUNvbHVtbnMoJyNfXyMjI2NvbXBvbmVudCMjI19mb3JtJywgZmFsc2UpOw0KCQkJLy8gYWx3YXlzIHJlbW92ZSB0aGVzZSAobm90IHB1YmxpYykNCgkJCSRyZW1vdmUgPSBhcnJheSgnaWQnLCAnbWVtYmVyJywgJ2Fzc2V0X2lkJywgJ2NoZWNrZWRfb3V0JywgJ2NoZWNrZWRfb3V0X3RpbWUnLCAnY3JlYXRlZCcsICdjcmVhdGVkX2J5JywgJ3BhcmFtcycsICdtb2RpZmllZCcsICdtb2RpZmllZF9ieScsICdoaXRzJywgJ3ZlcnNpb24nLCAnYWNjZXNzJywgJ29yZGVyaW5nJywgJ3B1Ymxpc2hlZCcpOw0KCQkJLy8gcmVtb3ZlDQoJCQlmb3JlYWNoICgkcmVtb3ZlIGFzICRrZXkpDQoJCQl7DQoJCQkJdW5zZXQoJGNvbHVtbnNbJGtleV0pOw0KCQkJfQ0KCQkJLy8gYWRkIGVtYWlsIGlmIGNvbXBvbmVudCBpcyBjb250YWN0ZGV0YWlscyA6KQ0KCQkJaWYgKCcjIyNjb21wb25lbnQjIyMnID09PSAnW1tbY29udGFjdGRldGFpbHNdXV0nKQ0KCQkJew0KCQkJCSRjb2x1bW5zWydlbWFpbCddID0gJ2VtYWlsJzsNCgkJCX0NCgkJCS8vIGFkZCBhZ2UgaWYgY29tcG9uZW50IGlzIHBlcnNvbmFsZGV0YWlscyA6KQ0KCQkJZWxzZWlmICgnIyMjY29tcG9uZW50IyMjJyA9PT0gJ1tbW3BlcnNvbmFsZGV0YWlsc11dXScpDQoJCQl7DQoJCQkJJGNvbHVtbnNbJ2FnZSddID0gJ2FnZSc7DQoJCQl9DQoJCQkvLyBwcmVwIHRoZSBjb2x1bW5zDQoJCQkkaXRlbXMgPSBhcnJheV9rZXlzKCRjb2x1bW5zKTsNCgkJCWlmICgkaXRlbXMpDQoJCQl7DQoJCQkJZm9yZWFjaCgkaXRlbXMgYXMgJGl0ZW0pDQoJCQkJew0KCQkJCQkkb3B0aW9uc1tdID0gSkh0bWw6Ol8oJ3NlbGVjdC5vcHRpb24nLCAkaXRlbSwgJGl0ZW0pOw0KCQkJCX0NCgkJCX0NCgkJCXJldHVybiAkb3B0aW9uczs=\\\"\\n\\/>\"', 1, '2018-08-20 21:58:07', '2020-06-02 11:20:50', 11, '', 871, '7301d309-14b6-44c4-87c0-ac922d3fa06f', '', '', '', '', ''),
(2360, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Profile Fields (info)', 'NOT NULL', '', 35, '\"<field\\n\\ttype=\\\"subform\\\"\\n\\tname=\\\"profile_fields\\\"\\n\\tlabel=\\\"Profile Fields\\\"\\n\\tlayout=\\\"joomla.form.field.subform.repeatable-table\\\"\\n\\tmultiple=\\\"true\\\"\\n\\tbuttons=\\\"add,remove,move\\\"\\n\\tfields=\\\"2359\\\"\\n\\tdescription=\\\"Select the fields you would like to show in the profile\\\"\\n\\ticon=\\\"list\\\"\\n\\tmax=\\\"20\\\"\\n\\tmin=\\\"1\\\"\\n\\tshowon=\\\"activate_[[[core]]]_info:1\\\"\\n\\/>\"', 1, '2018-08-20 22:30:17', '2019-02-14 23:45:39', 3, '', 872, '5f8c26b0-9f60-43db-8abf-11d1239ad60b', '', '', '', '', ''),
(2361, '', '', '', '', '', '', '', '', 64, '', 'VARCHAR', 2, '', '', 'Placeholder Prefix (info)', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"placeholder_prefix\\\"\\n\\tlabel=\\\"Placeholder Prefix\\\"\\n\\tsize=\\\"50\\\"\\n\\tmaxlength=\\\"150\\\"\\n\\tdefault=\\\"member\\\"\\n\\tdescription=\\\"What would like to use as the prefix of the values when used in templates.\\\"\\n\\tclass=\\\"text_area\\\"\\n\\tfilter=\\\"WORD\\\"\\n\\tmessage=\\\"Error! Please add some placeholder prefix here.\\\"\\n\\thint=\\\"member\\\"\\n\\tautocomplete=\\\"on\\\"\\n\\tshowon=\\\"activate_[[[core]]]_info:1\\\"\\n\\/>\"', 1, '2018-08-21 15:02:32', '2019-02-14 22:43:19', 2, '', 873, 'd70e69b0-a30c-42e7-a618-c541f758306c', '', '', '', '', ''),
(2362, '', '', '', '', '', '', '', '', 64, '', 'VARCHAR', 2, '', '', 'Placeholder Prefix (assessment)', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"placeholder_prefix\\\"\\n\\tlabel=\\\"Placeholder Prefix\\\"\\n\\tsize=\\\"50\\\"\\n\\tmaxlength=\\\"150\\\"\\n\\tdefault=\\\"member\\\"\\n\\tdescription=\\\"What would like to use as the prefix of the values when used in templates.\\\"\\n\\tclass=\\\"text_area\\\"\\n\\tfilter=\\\"WORD\\\"\\n\\tmessage=\\\"Error! Please add some placeholder prefix here.\\\"\\n\\thint=\\\"member\\\"\\n\\tautocomplete=\\\"on\\\"\\n\\tshowon=\\\"activate_[[[core]]]_assessment:1\\\"\\n\\/>\"', 1, '2018-08-21 15:02:59', '2019-02-14 22:43:30', 2, '', 873, 'fd817c8e-7f2d-4ff1-bb58-d39951a7ad33', '', '', '', '', ''),
(2363, '', '', '', '', '', '', '', '', 1, '', 'INT', 2, '', '', 'Add Custom Tabs', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"add_custom_tab\\\"\\n\\tlabel=\\\"Add Custom Tabs\\\"\\n\\tdescription=\\\"\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"1|Yes,0|No\\\"\\n\\tdefault=\\\"0\\\"\\n\\trequired=\\\"true\\\"\\n\\/>\"', 1, '2018-08-22 12:09:46', '2018-08-22 12:09:29', 1, '', 587, '1a858c48-3446-44cc-b359-9a4553271ed1', '', '', '', '', ''),
(2364, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'Joomla Fields', 'NOT NULL', '', 3, '\"<field\\n\\ttype=\\\"checkbox\\\"\\n\\tname=\\\"joomla_fields\\\"\\n\\tlabel=\\\"Joomla Fields\\\"\\n\\tvalue=\\\"1\\\"\\n\\tdefault=\\\"1\\\"\\n\\tdescription=\\\"Select if the option to add Joomla fields should be added to the view.\\\"\\n\\tclass=\\\"inputbox\\\"\\n\\/>\"', 1, '2018-08-22 13:31:13', '2019-06-11 12:20:08', 2, '', 70, '78401d2b-939a-4f05-a647-aef21dcda5ce', '', '', '', '', ''),
(2365, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Content Plugin Events', 'NOT NULL', 1, 11, '\"<field\\n\\ttype=\\\"list\\\"\\n\\tname=\\\"plugin_events\\\"\\n\\tlabel=\\\"Content Plugin Events<br \\/><small>All events added here can<br \\/>be accessed in the <b>$this->item->event<\\/b> object.<\\/small>\\\"\\n\\tdescription=\\\"Select the content plugin events you would like to add to the page that uses this dynamic get. Please note that the onContentPrepare event is added to all textarea and editor field types by default, so no need to add it again.\\\"\\n\\tclass=\\\"list_class\\\"\\n\\tmultiple=\\\"true\\\"\\n\\toption=\\\"onContentAfterTitle,onContentBeforeDisplay,onContentAfterDisplay\\\"\\n\\tshowon=\\\"\\\"\\n\\/>\"', 1, '2018-08-22 21:20:36', '2018-08-23 00:46:08', 5, '', 587, '13637273-b286-42f5-b092-90e507484751', '', '', '', '', ''),
(2366, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', 2, '', '', 'Context', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"context\\\"\\n\\tlabel=\\\"Context\\\"\\n\\tsize=\\\"40\\\"\\n\\tmaxlength=\\\"50\\\"\\n\\tdescription=\\\"Do not add the component name, just the context\\/view code name that should be used during event triggers, if this view has events. Leaving this blank will default to the Name in Code.\\\"\\n\\tclass=\\\"text_area\\\"\\n\\tfilter=\\\"WORD\\\"\\n\\tmessage=\\\"Error! Please add context code name here.\\\"\\n\\thint=\\\"article\\\"\\n\\/>\"', 1, '2018-08-23 00:52:05', '2018-08-23 01:00:07', 3, '', 536, 'c7b20fcd-0849-49cc-84c2-0dbb73a19fda', '', '', '', '', ''),
(2367, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', 2, '', '', 'Docter', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"doctor\\\"\\n\\tlabel=\\\"Doctor Name\\\"\\n\\tsize=\\\"50\\\"\\n\\tmaxlength=\\\"150\\\"\\n\\tdescription=\\\"Your doctor name\\\"\\n\\tclass=\\\"text_area\\\"\\n\\treadonly=\\\"false\\\"\\n\\tdisabled=\\\"false\\\"\\n\\tfilter=\\\"STRING\\\"\\n\\thint=\\\"Dr. James Cook\\\"\\n\\tautocomplete=\\\"on\\\"\\n\\/>\"', 1, '2018-08-23 13:52:16', '0000-00-00 00:00:00', 1, '', 874, '4439fff7-3175-4b68-a06e-203d782c6e6e', '', '', '', '', ''),
(2368, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Position (before or after)', 'NOT NULL', '', 11, '\"<field\\n\\ttype=\\\"list\\\"\\n\\tname=\\\"position\\\"\\n\\tlabel=\\\"Target\\\"\\n\\tdescription=\\\"position of custom tab\\\"\\n\\tclass=\\\"list_class\\\"\\n\\tmultiple=\\\"false\\\"\\n\\toption=\\\"1|Before selected tab,2|After selected tab\\\"\\n\\tdefault=\\\"1\\\"\\n\\/>\"', 1, '2018-08-23 21:04:27', '2018-08-23 22:52:55', 3, '', 875, 'a26a424f-02bb-4089-aada-735c23260780', '', '', '', '', ''),
(2369, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Custom Tabs', 'NOT NULL', '', 35, '\"<field\\n\\ttype=\\\"subform\\\"\\n\\tname=\\\"tabs\\\"\\n\\tlabel=\\\"Tabs\\\"\\n\\tlayout=\\\"joomla.form.field.subform.repeatable\\\"\\n\\tmultiple=\\\"true\\\"\\n\\tbuttons=\\\"add,remove,move\\\"\\n\\tfields=\\\"1829,2368,199,2371,1090\\\"\\n\\tdescription=\\\"Set your custom tabs here in relation to your other tabs.\\\"\\n\\ticon=\\\"list\\\"\\n\\tmax=\\\"5\\\"\\n\\/>\"', 1, '2018-08-23 21:15:01', '2020-05-26 01:52:50', 5, '', 876, '4b794f1a-1be4-4804-92e6-bda624f444b4', '', '', '', '', ''),
(2370, '', '', '', '', '', '', '', '', '', '', '', '', '', '', 'Custom Tabs Note', 'NOT NULL', '', 14, '\"<field\\n\\ttype=\\\"note\\\"\\n\\tname=\\\"note_custom_tabs_note\\\"\\n\\tdescription=\\\"You can add more custom tabs to this admin view, these tabs are generally used for static HTML content or Ajax generated fields\\/content. You can not have an admin view with only custom tabs, they can only be used as an add-on, not a stand alone.\\\"\\n\\theading=\\\"h5\\\"\\n\\tclass=\\\"alert alert-success\\\"\\n\\/>\"', 1, '2018-08-23 22:18:35', '2018-08-23 22:49:15', 6, '', 877, 'd5b20c71-8466-46fa-a74f-0dc3026f1692', '', '', '', '', ''),
(2371, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Tab Permmision', 'NOT NULL', '', 3, '\"<field\\n\\ttype=\\\"checkbox\\\"\\n\\tname=\\\"permission\\\"\\n\\tlabel=\\\"Permission\\\"\\n\\tvalue=\\\"1\\\"\\n\\tdescription=\\\"control \\\"\\n\\tclass=\\\"inputbox\\\"\\n\\/>\"', 1, '2018-08-24 15:51:32', '0000-00-00 00:00:00', 1, '', 878, '8fb93298-554a-41f4-8df2-aab3e1f169ea', '', '', '', '', ''),
(2372, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'FormFields (form)', 'NOT NULL', '', 6, '\"<field\\n\\ttype=\\\"formfields\\\"\\n\\tname=\\\"field\\\"\\n\\tlabel=\\\"Field\\\"\\n\\tclass=\\\"list_class\\\"\\n\\tmultiple=\\\"false\\\"\\n\\textends=\\\"list\\\"\\n\\tprime_php=\\\"1\\\"\\n\\ttype_php_1=\\\"\\t\\t\\t$db = JFactory::getDBO();\\r\\n\\t\\t\\t\\/\\/ get the database columns of this table\\r\\n\\t\\t\\t$columns = $db->getTableColumns(\'#__###component###_form\', false);\\r\\n\\t\\t\\t\\/\\/ always remove these (not public)\\r\\n\\t\\t\\t$remove = array(\'id\', \'member\', \'asset_id\', \'checked_out\', \'checked_out_time\', \'created\', \'created_by\', \'modified\', \'modified_by\', \'hits\', \'version\', \'access\', \'ordering\', \'published\', \'params\');\\r\\n\\t\\t\\t\\/\\/ remove\\r\\n\\t\\t\\tforeach ($remove as $key)\\r\\n\\t\\t\\t{\\r\\n\\t\\t\\t\\tunset($columns[$key]);\\r\\n\\t\\t\\t}\\r\\n\\t\\t\\t\\/\\/ prep the columns\\r\\n\\t\\t\\t$items = array_keys($columns);\\r\\n\\t\\t\\tif ($items)\\r\\n\\t\\t\\t{\\r\\n\\t\\t\\t\\tforeach($items as $item)\\r\\n\\t\\t\\t\\t{\\r\\n\\t\\t\\t\\t\\t$options[] = JHtml::_(\'select.option\', $item, $item);\\r\\n\\t\\t\\t\\t}\\r\\n\\t\\t\\t}\\r\\n\\t\\t\\treturn $options;\\\"\\n\\/>\"', 1, '2018-08-27 08:37:49', '2018-08-27 09:08:25', 3, '', 871, 'd040318a-21e8-4b04-a933-1c173813ff30', '', '', '', '', ''),
(2373, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Editable Fields (info)', 'NOT NULL', '', 35, '\"<field\\n\\ttype=\\\"subform\\\"\\n\\tname=\\\"edit_fields\\\"\\n\\tlabel=\\\"Editable Fields\\\"\\n\\tlayout=\\\"joomla.form.field.subform.repeatable-table\\\"\\n\\tmultiple=\\\"true\\\"\\n\\tbuttons=\\\"add,remove,move\\\"\\n\\tfields=\\\"2372\\\"\\n\\tdescription=\\\"Select the fields you would like to add to the members edit area.\\\"\\n\\ticon=\\\"list\\\"\\n\\tmax=\\\"20\\\"\\n\\tmin=\\\"1\\\"\\n\\tshowon=\\\"activate_[[[core]]]_info:1[AND][[[core]]]_relation_type:1\\\"\\n\\/>\"', 1, '2018-08-27 08:42:10', '2019-02-14 22:43:52', 3, '', 872, '8eb4be97-487f-4405-94b2-7ce137ac5368', '', '', '', '', ''),
(2374, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Editable Fields (assessment)', 'NOT NULL', '', 35, '\"<field\\n\\ttype=\\\"subform\\\"\\n\\tname=\\\"edit_fields\\\"\\n\\tlabel=\\\"Editable Fields\\\"\\n\\tlayout=\\\"joomla.form.field.subform.repeatable-table\\\"\\n\\tmultiple=\\\"true\\\"\\n\\tbuttons=\\\"add,remove,move\\\"\\n\\tfields=\\\"2372\\\"\\n\\tdescription=\\\"Select the fields you would like to add to the members edit area.\\\"\\n\\ticon=\\\"list\\\"\\n\\tmax=\\\"20\\\"\\n\\tmin=\\\"1\\\"\\n\\tshowon=\\\"activate_[[[core]]]_assessment:1[AND][[[core]]]_relation_type:1\\\"\\n\\/>\"', 1, '2018-08-28 21:25:11', '2019-02-14 22:44:09', 2, '', 872, 'adab9b95-7357-449e-a577-ddc65ccea41c', '', '', '', '', ''),
(2375, '', '', '', '', '', '', '', '', '', '', '', '', '', '', 'Header Calculators', 'NOT NULL', '', 14, '\"<field\\n\\ttype=\\\"note\\\"\\n\\tname=\\\"calculators_header\\\"\\n\\tlabel=\\\"Body fat calculators\\\"\\n\\tdescription=\\\"Use one of the following to calculate body fat %\\\"\\n\\theading=\\\"h4\\\"\\n\\tclass=\\\"alert alert-success\\\"\\n\\/>\"', 1, '2018-08-31 12:34:26', '2018-08-31 12:34:06', 1, '', 860, '820662e8-030f-442c-8137-1bd50189a894', '', '', '', '', ''),
(2376, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Report Template', 'NOT NULL', '', 25, '\"<field\\n\\ttype=\\\"textarea\\\"\\n\\tname=\\\"report_template\\\"\\n\\tlabel=\\\"Report Template<br \\/><small>html allowed<\\/small>\\\"\\n\\trows=\\\"30\\\"\\n\\tcols=\\\"50\\\"\\n\\tdefault=\\\"\\\"\\n\\tdescription=\\\"Here you can change the global report template that is to display the report for componentbuilder.\\\"\\n\\tclass=\\\"text_area span12\\\"\\n\\tfilter=\\\"SAFEHTML\\\"\\n\\thint=\\\"\\/\\/ add the report template here.\\\"\\n\\/>\"', 1, '2018-09-05 19:22:12', '2018-09-20 01:21:52', 2, '', 741, 'a6cdff41-5113-4bb9-935f-709d3eb36e71', '', '', '', '', ''),
(2377, '', '', '', '', '', '', '', '', '', '', '', '', '', '', 'Report Placeholders', 'NOT NULL', '', 14, '\"<field\\n\\ttype=\\\"note\\\"\\n\\tname=\\\"note_report_placeholders\\\"\\n\\tlabel=\\\"Placeholders\\\"\\n\\tdescription=\\\"[CUSTOMCODE=getPlaceholdersHTMLNote+report]\\\"\\n\\theading=\\\"h3\\\"\\n\\/>\"', 1, '2018-09-05 19:42:40', '2018-12-15 21:28:03', 5, '', 742, 'b8acc58f-1ae8-4213-ad2d-71a0ca06a060', '', '', '', '', ''),
(2378, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', 2, '', '', 'getSelection (Target Field)', 'NOT NULL', '', 6, '\"<field\\n\\ttype=\\\"getselection\\\"\\n\\tname=\\\"selection\\\"\\n\\tlabel=\\\"Target Field\\\"\\n\\tdescription=\\\"Select the field you want to target.\\\"\\n\\tclass=\\\"list_class\\\"\\n\\tmultiple=\\\"false\\\"\\n\\trequired=\\\"true\\\"\\n\\textends=\\\"list\\\"\\n\\tprime_php=\\\"1\\\"\\n\\ttype_php_1=\\\"__.o0=base64=Oo.__W0NVU1RPTUNPREU9Z2V0U2VsZWN0aW9uRmllbGRd\\\"\\n\\/>\"', 1, '2018-09-07 13:25:04', '2018-09-28 13:03:50', 9, '', 879, '0bddda7f-4e09-4de2-9886-041b7cfb883c', '', '', '', '', ''),
(2379, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Rating Table Template', 'NOT NULL', '', 25, '\"<field\\n\\ttype=\\\"textarea\\\"\\n\\tname=\\\"table\\\"\\n\\tlabel=\\\"Rating Table Template\\\"\\n\\tdescription=\\\"html allowed\\\"\\n\\trows=\\\"30\\\"\\n\\tcols=\\\"50\\\"\\n\\tdefault=\\\"\\\"\\n\\tclass=\\\"text_area span12\\\"\\n\\tfilter=\\\"SAFEHTML\\\"\\n\\thint=\\\"\\/\\/ add the rating table template here.\\\"\\n\\/>\"', 1, '2018-09-07 14:20:39', '2018-09-07 14:34:52', 2, '', 741, '484f7abe-44a9-482e-b9d6-f80ab1a00bd4', '', '', '', '', ''),
(2380, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Rating Scale Template', 'NOT NULL', '', 25, '\"<field\\n\\ttype=\\\"textarea\\\"\\n\\tname=\\\"scale\\\"\\n\\tlabel=\\\"Rating Scale Template\\\"\\n\\tdescription=\\\"html allowed\\\"\\n\\trows=\\\"30\\\"\\n\\tcols=\\\"50\\\"\\n\\tdefault=\\\"\\\"\\n\\tclass=\\\"text_area span12\\\"\\n\\tfilter=\\\"SAFEHTML\\\"\\n\\thint=\\\"\\/\\/ add the rating scale template here.\\\"\\n\\/>\"', 1, '2018-09-07 14:21:39', '2018-09-07 14:35:06', 2, '', 741, '92c7e5ba-09da-4e15-b5e3-edb20e8f556a', '', '', '', '', ''),
(2381, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', 2, '', '', 'Rating Word', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"word\\\"\\n\\tlabel=\\\"Rating Word\\\"\\n\\tsize=\\\"50\\\"\\n\\tmaxlength=\\\"150\\\"\\n\\tclass=\\\"text_area\\\"\\n\\tfilter=\\\"STRING\\\"\\n\\tmessage=\\\"Error! Please add some rating word here.\\\"\\n\\thint=\\\"add rating word here\\\"\\n\\tautocomplete=\\\"on\\\"\\n\\/>\"', 1, '2018-09-07 14:24:12', '2018-09-07 14:24:50', 2, '', 741, 'b4ee0e1e-5dc1-41a8-b661-1a5a8711c715', '', '', '', '', ''),
(2382, '', '', '', '', '', '', '', '', 255, '', 'TEXT', '', '', '', 'Rating Norm Templates', 'NOT NULL', '', 35, '\"<field\\n\\ttype=\\\"subform\\\"\\n\\tname=\\\"templates\\\"\\n\\tlabel=\\\"Templates\\\"\\n\\tlayout=\\\"joomla.form.field.subform.repeatable-table\\\"\\n\\tmultiple=\\\"true\\\"\\n\\tbuttons=\\\"add,remove,move\\\"\\n\\tfields=\\\"2383,2381,2379,2380\\\"\\n\\tdescription=\\\"Set the rating norm templates\\\"\\n\\ticon=\\\"list\\\"\\n\\tmax=\\\"20\\\"\\n\\tmin=\\\"1\\\"\\n\\/>\"', 1, '2018-09-07 14:27:59', '2018-09-07 19:15:20', 4, '', 741, 'b0fd7597-17c3-45ca-bafb-2efedec0caa2', '', '', '', '', ''),
(2383, '', '', '', '', '', '', '', '', 10, '', 'TINYINT', '', '', '', 'Target', 'NOT NULL', '', 10, '\"<field\\n\\ttype=\\\"integer\\\"\\n\\tname=\\\"target\\\"\\n\\tlabel=\\\"Target\\\"\\n\\tclass=\\\"fieldSmall\\\"\\n\\tfirst=\\\"0\\\"\\n\\tlast=\\\"20\\\"\\n\\tstep=\\\"1\\\"\\n\\/>\"', 1, '2018-09-07 14:39:05', '2018-09-07 16:59:30', 3, '', 146, 'd68a7205-6f11-4b3b-9c08-86a8d2256475', '', '', '', '', ''),
(2384, '', '', '', '', '', '', '', '', 7, '', 'VARCHAR', '', '', '', 'Age Start', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"age_start\\\"\\n\\tlabel=\\\"Age Start\\\"\\n\\tsize=\\\"40\\\"\\n\\tmaxlength=\\\"6\\\"\\n\\tclass=\\\"text_area\\\"\\n\\tfilter=\\\"STRING\\\"\\n\\tvalidate=\\\"number\\\"\\n\\tmessage=\\\"Enter Member Age in Years like 34 Must only be a number!\\\"\\n\\thint=\\\"Age Here\\\"\\n\\tautocomplete=\\\"on\\\"\\n\\tonchange=\\\"if(!jQuery(this).val().match(\\/^\\\\d+$\\/)){jQuery(this).val(\'\')};\\\"\\n\\/>\"', 1, '2018-09-07 16:42:43', '2018-08-03 10:12:00', 1, '', 859, '24dfabc3-7731-41f5-b20f-b1e9c4bfa639', '', '', '', '', ''),
(2385, '', '', '', '', '', '', '', '', 7, '', 'VARCHAR', '', '', '', 'Age End', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"age_end\\\"\\n\\tlabel=\\\"Age End\\\"\\n\\tsize=\\\"40\\\"\\n\\tmaxlength=\\\"6\\\"\\n\\tclass=\\\"text_area\\\"\\n\\tfilter=\\\"STRING\\\"\\n\\tvalidate=\\\"number\\\"\\n\\tmessage=\\\"Enter Member Age in Years like 34 Must only be a number!\\\"\\n\\thint=\\\"Age Here\\\"\\n\\tautocomplete=\\\"on\\\"\\n\\tonchange=\\\"if(!jQuery(this).val().match(\\/^\\\\d+$\\/)){jQuery(this).val(\'\')};\\\"\\n\\/>\"', 1, '2018-09-07 16:43:19', '2018-08-03 10:12:00', 1, '', 859, 'f5c8b311-7e26-42ba-8039-292321859dc1', '', '', '', '', ''),
(2386, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Ages Norms', 'NOT NULL', '', 35, '\"<field\\n\\ttype=\\\"subform\\\"\\n\\tname=\\\"ages_norms\\\"\\n\\tlabel=\\\"Ages Norms\\\"\\n\\tlayout=\\\"joomla.form.field.subform.repeatable-table\\\"\\n\\tmultiple=\\\"true\\\"\\n\\tbuttons=\\\"add,remove,move\\\"\\n\\tfields=\\\"2383,2384,2385\\\"\\n\\tdescription=\\\"Set the age norms here.\\\"\\n\\ticon=\\\"list\\\"\\n\\tmax=\\\"10\\\"\\n\\/>\"', 1, '2018-09-07 16:47:00', '2018-09-07 17:13:10', 2, '', 880, '1ef62ff0-61e7-4110-a1ae-5057d9632dd0', '', '', '', '', ''),
(2387, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', 2, '', '', 'Age Norms', 'NOT NULL', '', 6, '\"<field\\n\\ttype=\\\"agesnorms\\\"\\n\\tname=\\\"age_norm\\\"\\n\\tlabel=\\\"Age Norms\\\"\\n\\tclass=\\\"list_class\\\"\\n\\tmultiple=\\\"false\\\"\\n\\textends=\\\"list\\\"\\n\\tprime_php=\\\"1\\\"\\n\\ttype_php_1=\\\"__.o0=base64=Oo.__CQkvLyB0aGUgb3B0aW9ucw0KCQkkb3B0aW9ucyA9IGFycmF5KCk7DQoJCS8vIGdldCB0aGUgaXRlbXMNCgkJaWYgKCgkaXRlbXMgPSBKQ29tcG9uZW50SGVscGVyOjpnZXRQYXJhbXMoJ2NvbV8jIyNjb21wb25lbnQjIyMnKS0+Z2V0KCdhZ2VzX25vcm1zJywgZmFsc2UpKSAhPT0gZmFsc2UgJiYgIyMjQ29tcG9uZW50IyMjSGVscGVyOjpjaGVja09iamVjdCgkaXRlbXMpKQ0KCQl7DQoJCQkkb3B0aW9uc1tdID0gSkh0bWw6Ol8oJ3NlbGVjdC5vcHRpb24nLCAnJywgJ0FsbCBBZ2VzJyk7DQoJCQlmb3JlYWNoKCRpdGVtcyBhcyAkaXRlbSkNCgkJCXsNCgkJCQkkb3B0aW9uc1tdID0gSkh0bWw6Ol8oJ3NlbGVjdC5vcHRpb24nLCAkaXRlbS0+dGFyZ2V0LCAkaXRlbS0+YWdlX3N0YXJ0IC4gJyAtICcgLiAkaXRlbS0+YWdlX2VuZCk7DQoJCQl9DQoJCX0NCgkJZWxzZQ0KCQl7DQoJCQkkb3B0aW9uc1tdID0gSkh0bWw6Ol8oJ3NlbGVjdC5vcHRpb24nLCAnJywgJ1NldCB0aGUgYWdlIG5vcm0gaW4gZ2xvYmFsIG9wdGlvbnMuJyk7DQoJCX0NCg0KCQlyZXR1cm4gJG9wdGlvbnM7\\\"\\n\\/>\"', 1, '2018-09-07 17:09:46', '2019-07-30 21:07:24', 9, '', 879, '51528316-b712-4d30-9aca-f25a3944e734', '', '', '', '', ''),
(2388, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Number (comma separated)', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"number\\\"\\n\\tlabel=\\\"Number\\\"\\n\\tsize=\\\"50\\\"\\n\\tmaxlength=\\\"150\\\"\\n\\tclass=\\\"text_area\\\"\\n\\tmessage=\\\"Error! Please add numbers here.\\\"\\n\\thint=\\\"Numbers Here (comma separated)\\\"\\n\\/>\"', 1, '2018-09-07 17:22:36', '2019-07-09 22:34:46', 2, '', 573, '982a1f9e-64d3-48b1-bfbc-5436c69dbdbe', '', '', '', '', ''),
(2389, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Calculation Type', 'NOT NULL', '', 11, '\"<field\\n\\ttype=\\\"list\\\"\\n\\tname=\\\"calculation_type\\\"\\n\\tlabel=\\\"Calculation Type\\\"\\n\\tdescription=\\\"What calculation type should be used?\\\"\\n\\tclass=\\\"list_class\\\"\\n\\tmultiple=\\\"false\\\"\\n\\tfilter=\\\"INT\\\"\\n\\trequired=\\\"true\\\"\\n\\tvalidate=\\\"number\\\"\\n\\toption=\\\"|Select an option,1|getClosest,2|getInRange\\\"\\n\\tdefault=\\\"\\\"\\n\\/>\"', 1, '2018-09-07 17:25:50', '2018-09-07 17:26:18', 2, '', 573, '51295c9a-fb3b-4ace-b6b5-78134cc2a55d', '', '', '', '', ''),
(2390, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Calculation Numbers', 'NOT NULL', '', 35, '\"<field\\n\\ttype=\\\"subform\\\"\\n\\tname=\\\"calculations\\\"\\n\\tlabel=\\\"Calculation Numbers\\\"\\n\\tlayout=\\\"joomla.form.field.subform.repeatable-table\\\"\\n\\tmultiple=\\\"true\\\"\\n\\tbuttons=\\\"add,remove,move\\\"\\n\\tfields=\\\"2383, 2391, 2387, 2388\\\"\\n\\tdescription=\\\"Set the number needed to do the calculations.\\\"\\n\\ticon=\\\"list\\\"\\n\\tmax=\\\"100\\\"\\n\\tmin=\\\"1\\\"\\n\\/>\"', 1, '2018-09-07 17:30:23', '2019-07-09 22:34:22', 5, '', 881, 'dfac3ca1-7544-4f3e-be96-ab9184468d2e', '', '', '', '', ''),
(2391, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Gender (0|1|2)', 'NOT NULL', '', 11, '\"<field\\n\\ttype=\\\"list\\\"\\n\\tname=\\\"gender\\\"\\n\\tlabel=\\\"Gender\\\"\\n\\tclass=\\\"list_class\\\"\\n\\tmultiple=\\\"false\\\"\\n\\tfilter=\\\"INT\\\"\\n\\tvalidate=\\\"number\\\"\\n\\toption=\\\"0|Both,1|Male,2|Female\\\"\\n\\tdefault=\\\"0\\\"\\n\\/>\"', 1, '2018-09-07 17:35:31', '2018-09-07 17:38:05', 3, '', 882, '1ce81751-1559-49a6-8691-686f9aa06a53', '', '', '', '', ''),
(2392, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', 2, '', '', 'Country (not-required)', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"country\\\"\\n\\tlabel=\\\"Country\\\"\\n\\tdefault=\\\"Namibia\\\"\\n\\tsize=\\\"50\\\"\\n\\tmaxlength=\\\"150\\\"\\n\\tdescription=\\\"Country Name\\\"\\n\\tclass=\\\"text_area\\\"\\n\\tfilter=\\\"STRING\\\"\\n\\tmessage=\\\"Error! Please add country name here.\\\"\\n\\thint=\\\"Namibia\\\"\\n\\tautocomplete=\\\"on\\\"\\n\\/>\"', 1, '2018-09-08 10:20:00', '2018-06-12 21:27:23', 1, '', 242, 'f7ebeeb0-240c-42d6-bb8b-e9a70d139991', '', '', '', '', ''),
(2393, '', '', '', '', '', '', '', '', 7, '', 'VARCHAR', '', '', '', 'Circumferences Neck', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"circumferences_neck\\\"\\n\\tlabel=\\\"Neck\\\"\\n\\tsize=\\\"40\\\"\\n\\tmaxlength=\\\"6\\\"\\n\\tdescription=\\\"Enter Patient Neck Circumferences in Centimeters like 115.5 Must only be a number!\\\"\\n\\tclass=\\\"text_area\\\"\\n\\trequired=\\\"true\\\"\\n\\tfilter=\\\"STRING\\\"\\n\\tvalidate=\\\"number\\\"\\n\\tmessage=\\\"Enter Patient Neck Circumferences in Centimeters like 115.5 Must only be a number!\\\"\\n\\thint=\\\"Circumference in cm \\\"\\n\\tautocomplete=\\\"on\\\"\\n\\tonchange=\\\"if(!jQuery(this).val().match(\\/^\\\\d+\\\\.\\\\d+$\\/)){if(!jQuery(this).val().match(\\/^\\\\d+$\\/)){jQuery(this).val(\'\')}};\\\"\\n\\/>\"', 1, '2018-09-08 17:08:10', '2018-09-08 17:08:23', 2, '', 859, '5fadbcbb-f244-4f3e-819e-8c1d3b2f97ea', '', '', '', '', ''),
(2394, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Login Name', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"username\\\"\\n\\tlabel=\\\"Login Name\\\"\\n\\tsize=\\\"50\\\"\\n\\tmaxlength=\\\"150\\\"\\n\\tdescription=\\\"Enter the login name (Username) for the member.\\\"\\n\\tclass=\\\"text_area\\\"\\n\\trequired=\\\"true\\\"\\n\\tfilter=\\\"WORD\\\"\\n\\tvalidate=\\\"memberloginname\\\"\\n\\tmessage=\\\"Error! Login Name in use, try another.\\\"\\n\\tautocomplete=\\\"off\\\"\\n\\/>\"', 1, '2018-09-15 22:12:17', '2018-09-16 00:44:55', 4, '', 883, '3e39a641-84f6-4a8f-8074-b6b034b4b895', '', '', '', '', ''),
(2395, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Password', 'NOT NULL', '', 16, '\"<field\\n\\ttype=\\\"password\\\"\\n\\tname=\\\"password\\\"\\n\\tlabel=\\\"Password\\\"\\n\\tsize=\\\"50\\\"\\n\\tdescription=\\\"Enter the password for the member.\\\"\\n\\tmessage=\\\"Error! Please add password here.\\\"\\n\\tclass=\\\"text_area\\\"\\n\\tvalidate=\\\"password\\\"\\n\\tfilter=\\\"raw\\\"\\n\\tautocomplete=\\\"off\\\"\\n\\/>\"', 1, '2018-09-15 22:15:07', '2018-09-15 23:28:41', 5, '', 884, 'b9097198-705f-4a6b-bd10-676d55cd6517', '', '', '', '', ''),
(2396, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Confirm Password', 'NOT NULL', '', 16, '\"<field\\n\\ttype=\\\"password\\\"\\n\\tname=\\\"password_check\\\"\\n\\tlabel=\\\"Confirm Password\\\"\\n\\tsize=\\\"50\\\"\\n\\tdescription=\\\"Confirm the member\'s password.\\\"\\n\\tmessage=\\\"Error! The passwords you entered do not match. Please enter your desired password in the password field and confirm your entry by entering it in the confirm password field.\\\"\\n\\tclass=\\\"text_area\\\"\\n\\tvalidate=\\\"equals\\\"\\n\\tfield=\\\"password\\\"\\n\\tfilter=\\\"raw\\\"\\n\\tautocomplete=\\\"off\\\"\\n\\/>\"', 1, '2018-09-15 22:18:25', '2018-09-15 23:28:27', 6, '', 884, 'cf1b5d92-eae9-4f52-8745-11fcbbed977c', '', '', '', '', ''),
(2397, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Email (unique user email)', 'NOT NULL', '', 36, '\"<field\\n\\ttype=\\\"email\\\"\\n\\tname=\\\"useremail\\\"\\n\\tlabel=\\\"Email\\\"\\n\\tsize=\\\"50\\\"\\n\\tmaxlength=\\\"150\\\"\\n\\tdescription=\\\"Enter and email address\\\"\\n\\trequired=\\\"true\\\"\\n\\tfilter=\\\"STRING\\\"\\n\\tvalidate=\\\"memberuseremail\\\"\\n\\tunique=\\\"true\\\"\\n\\tmessage=\\\"Error! This email address is already registered.\\\"\\n\\thint=\\\"your@email.com\\\"\\n\\tautocomplete=\\\"off\\\"\\n\\/>\"', 1, '2018-09-15 23:03:40', '2020-06-24 18:30:39', 8, '', 285, '74882357-3877-4dab-b965-a541da6832cf', '', '', '', '', ''),
(2398, '', '', '', '', '', '', '', '', 1, '', 'CHAR', 2, '', '', 'Add Menu Prefix (component)', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"add_menu_prefix\\\"\\n\\tlabel=\\\"Add Menu Prefix\\\"\\n\\tdescription=\\\"Would you like to add a prefix to the Joomla menu name of this component\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"|Use Global,1|Yes,0|No\\\"\\n\\tdefault=\\\"\\\"\\n\\/>\"', 1, '2018-09-20 19:33:55', '2018-09-20 20:00:06', 5, '', 855, '0e5f211c-d6d7-417a-af92-f3e956687f56', '', '', '', '', ''),
(2399, 1, '', '', '', 'LmJlc3R2aWV3IHsNCndpZHRoOiAxMDAlOw0KfQ==', '', 1, '', 64, '', 'VARCHAR', 2, '', '', 'mySql Table Engines', 'NOT NULL', '', 11, '\"<field\\n\\ttype=\\\"list\\\"\\n\\tname=\\\"mysql_table_engine\\\"\\n\\tlabel=\\\"mySql Table Engines\\\"\\n\\tdescription=\\\"Select the mySql Table Engine you would like to use for this admin view\'s table.\\\"\\n\\tclass=\\\"list_class bestview\\\"\\n\\tmultiple=\\\"false\\\"\\n\\tfilter=\\\"CMD\\\"\\n\\trequired=\\\"true\\\"\\n\\toption=\\\"MyISAM|MyISAM,InnoDB|InnoDB,MEMORY|MEMORY,ARCHIVE|ARCHIVE,PERFORMANCE_SCHEMA|PERFORMANCE_SCHEMA\\\"\\n\\tdefault=\\\"InnoDB\\\"\\n\\/>\"', 1, '2018-09-24 20:06:10', '2019-05-16 22:04:01', 8, '', 885, '025cfab0-7736-4036-9eec-8f70e53f681b', '', '', '', '', ''),
(2400, '', '', '', '', '', '', 1, '', 64, '', 'VARCHAR', 2, '', '', 'mySql Table Charset', 'NOT NULL', '', 11, '\"<field\\n\\ttype=\\\"list\\\"\\n\\tname=\\\"mysql_table_charset\\\"\\n\\tlabel=\\\"mySql Table Charset\\\"\\n\\tdescription=\\\"Select the mySql Table Charset you would like to use for this admin view\'s table.\\\"\\n\\tclass=\\\"list_class bestview\\\"\\n\\tmultiple=\\\"false\\\"\\n\\tfilter=\\\"CMD\\\"\\n\\trequired=\\\"true\\\"\\n\\toption=\\\"big5|big5 - Big5 Traditional Chinese (most suitable collation = big5_chinese_ci),dec8|dec8 - DEC West European (most suitable collation = dec8_swedish_ci),cp850|cp850 - DOS West European (most suitable collation = cp850_general_ci),hp8|hp8 - HP West European (most suitable collation = hp8_english_ci),koi8r|koi8r - KOI8-R Relcom Russian (most suitable collation = koi8r_general_ci),latin1|latin1 - cp1252 West European (most suitable collation = latin1_swedish_ci),latin2|latin2 - ISO 8859-2 Central European (most suitable collation = latin2_general_ci),swe7|swe7 - 7bit Swedish (most suitable collation = swe7_swedish_ci),ascii|ascii - US ASCII (most suitable collation = ascii_general_ci),ujis|ujis - EUC-JP Japanese (most suitable collation = ujis_japanese_ci),sjis|sjis - Shift-JIS Japanese (most suitable collation = sjis_japanese_ci),hebrew|hebrew - ISO 8859-8 Hebrew (most suitable collation = hebrew_general_ci),tis620|tis620 - TIS620 Thai (most suitable collation = tis620_thai_ci),euckr|euckr - EUC-KR Korean (most suitable collation = euckr_korean_ci),koi8u|koi8u - KOI8-U Ukrainian (most suitable collation = koi8u_general_ci),gb2312|gb2312 - GB2312 Simplified Chinese (most suitable collation = gb2312_chinese_ci),greek|greek - ISO 8859-7 Greek (most suitable collation = greek_general_ci),cp1250|cp1250 - Windows Central European (most suitable collation = cp1250_general_ci),gbk|gbk - GBK Simplified Chinese (most suitable collation = gbk_chinese_ci),latin5|latin5 - ISO 8859-9 Turkish (most suitable collation = latin5_turkish_ci),armscii8|armscii8 - ARMSCII-8 Armenian (most suitable collation = armscii8_general_ci),utf8|utf8 - UTF-8 Unicode (most suitable collation = utf8_general_ci),ucs2|ucs2 - UCS-2 Unicode (most suitable collation = ucs2_general_ci),cp866|cp866 - DOS Russian (most suitable collation = cp866_general_ci),keybcs2|keybcs2 - DOS Kamenicky Czech-Slovak (most suitable collation = keybcs2_general_ci),macce|macce - Mac Central European (most suitable collation = macce_general_ci),macroman|macroman - Mac West European (most suitable collation = macroman_general_ci),cp852|cp852 - DOS Central European (most suitable collation = cp852_general_ci),latin7|latin7 - ISO 8859-13 Baltic (most suitable collation = latin7_general_ci),utf8mb4|utf8mb4 - UTF-8 Unicode (most suitable collation = utf8mb4_general_ci),cp1251|cp1251 - Windows Cyrillic (most suitable collation = cp1251_general_ci),utf16|utf16 - UTF-16 Unicode (most suitable collation = utf16_general_ci),utf16le|utf16le - UTF-16LE Unicode (most suitable collation = utf16le_general_ci),cp1256|cp1256 - Windows Arabic (most suitable collation = cp1256_general_ci),cp1257|cp1257 - Windows Baltic (most suitable collation = cp1257_general_ci),utf32|utf32 - UTF-32 Unicode (most suitable collation = utf32_general_ci),binary|binary - Binary pseudo charset (most suitable collation = binary),geostd8|geostd8 - GEOSTD8 Georgian (most suitable collation = geostd8_general_ci),cp932|cp932 - SJIS for Windows Japanese (most suitable collation = cp932_japanese_ci),eucjpms|eucjpms - UJIS for Windows Japanese (most suitable collation = eucjpms_japanese_ci),gb18030|gb18030 - China National Standard GB18030 (most suitable collation = gb18030_chinese_ci)\\\"\\n\\tdefault=\\\"utf8mb4\\\"\\n\\/>\"', 1, '2018-09-25 14:33:02', '2019-05-16 22:05:44', 6, '', 885, '916b0b6e-b5dc-469e-bc9c-c809471903b4', '', '', '', '', ''),
(2401, '', '', '', '', '', '', 1, '', 64, '', 'VARCHAR', 2, '', '', 'mySql Table Collation', 'NOT NULL', '', 11, '\"<field\\n\\ttype=\\\"list\\\"\\n\\tname=\\\"mysql_table_collate\\\"\\n\\tlabel=\\\"mySql Table Collation\\\"\\n\\tdescription=\\\"Select the mySql Table Collation you would like to use for this admin view\'s table.\\\"\\n\\tclass=\\\"list_class bestview\\\"\\n\\tmultiple=\\\"false\\\"\\n\\tfilter=\\\"CMD\\\"\\n\\trequired=\\\"true\\\"\\n\\toption=\\\"big5_chinese_ci|big5_chinese_ci (charset = big5),big5_bin|big5_bin (charset = big5),dec8_swedish_ci|dec8_swedish_ci (charset = dec8),dec8_bin|dec8_bin (charset = dec8),cp850_general_ci|cp850_general_ci (charset = cp850),cp850_bin|cp850_bin (charset = cp850),hp8_english_ci|hp8_english_ci (charset = hp8),hp8_bin|hp8_bin (charset = hp8),koi8r_general_ci|koi8r_general_ci (charset = koi8r),koi8r_bin|koi8r_bin (charset = koi8r),latin1_german1_ci|latin1_german1_ci (charset = latin1),latin1_swedish_ci|latin1_swedish_ci (charset = latin1),latin1_danish_ci|latin1_danish_ci (charset = latin1),latin1_german2_ci|latin1_german2_ci (charset = latin1),latin1_bin|latin1_bin (charset = latin1),latin1_general_ci|latin1_general_ci (charset = latin1),latin1_general_cs|latin1_general_cs (charset = latin1),latin1_spanish_ci|latin1_spanish_ci (charset = latin1),latin2_czech_cs|latin2_czech_cs (charset = latin2),latin2_general_ci|latin2_general_ci (charset = latin2),latin2_hungarian_ci|latin2_hungarian_ci (charset = latin2),latin2_croatian_ci|latin2_croatian_ci (charset = latin2),latin2_bin|latin2_bin (charset = latin2),swe7_swedish_ci|swe7_swedish_ci (charset = swe7),swe7_bin|swe7_bin (charset = swe7),ascii_general_ci|ascii_general_ci (charset = ascii),ascii_bin|ascii_bin (charset = ascii),ujis_japanese_ci|ujis_japanese_ci (charset = ujis),ujis_bin|ujis_bin (charset = ujis),sjis_japanese_ci|sjis_japanese_ci (charset = sjis),sjis_bin|sjis_bin (charset = sjis),hebrew_general_ci|hebrew_general_ci (charset = hebrew),hebrew_bin|hebrew_bin (charset = hebrew),tis620_thai_ci|tis620_thai_ci (charset = tis620),tis620_bin|tis620_bin (charset = tis620),euckr_korean_ci|euckr_korean_ci (charset = euckr),euckr_bin|euckr_bin (charset = euckr),koi8u_general_ci|koi8u_general_ci (charset = koi8u),koi8u_bin|koi8u_bin (charset = koi8u),gb2312_chinese_ci|gb2312_chinese_ci (charset = gb2312),gb2312_bin|gb2312_bin (charset = gb2312),greek_general_ci|greek_general_ci (charset = greek),greek_bin|greek_bin (charset = greek),cp1250_general_ci|cp1250_general_ci (charset = cp1250),cp1250_czech_cs|cp1250_czech_cs (charset = cp1250),cp1250_croatian_ci|cp1250_croatian_ci (charset = cp1250),cp1250_bin|cp1250_bin (charset = cp1250),cp1250_polish_ci|cp1250_polish_ci (charset = cp1250),gbk_chinese_ci|gbk_chinese_ci (charset = gbk),gbk_bin|gbk_bin (charset = gbk),latin5_turkish_ci|latin5_turkish_ci (charset = latin5),latin5_bin|latin5_bin (charset = latin5),armscii8_general_ci|armscii8_general_ci (charset = armscii8),armscii8_bin|armscii8_bin (charset = armscii8),utf8_general_ci|utf8_general_ci (charset = utf8),utf8_bin|utf8_bin (charset = utf8),utf8_unicode_ci|utf8_unicode_ci (charset = utf8),utf8_icelandic_ci|utf8_icelandic_ci (charset = utf8),utf8_latvian_ci|utf8_latvian_ci (charset = utf8),utf8_romanian_ci|utf8_romanian_ci (charset = utf8),utf8_slovenian_ci|utf8_slovenian_ci (charset = utf8),utf8_polish_ci|utf8_polish_ci (charset = utf8),utf8_estonian_ci|utf8_estonian_ci (charset = utf8),utf8_spanish_ci|utf8_spanish_ci (charset = utf8),utf8_swedish_ci|utf8_swedish_ci (charset = utf8),utf8_turkish_ci|utf8_turkish_ci (charset = utf8),utf8_czech_ci|utf8_czech_ci (charset = utf8),utf8_danish_ci|utf8_danish_ci (charset = utf8),utf8_lithuanian_ci|utf8_lithuanian_ci (charset = utf8),utf8_slovak_ci|utf8_slovak_ci (charset = utf8),utf8_spanish2_ci|utf8_spanish2_ci (charset = utf8),utf8_roman_ci|utf8_roman_ci (charset = utf8),utf8_persian_ci|utf8_persian_ci (charset = utf8),utf8_esperanto_ci|utf8_esperanto_ci (charset = utf8),utf8_hungarian_ci|utf8_hungarian_ci (charset = utf8),utf8_sinhala_ci|utf8_sinhala_ci (charset = utf8),utf8_german2_ci|utf8_german2_ci (charset = utf8),utf8_croatian_ci|utf8_croatian_ci (charset = utf8),utf8_unicode_520_ci|utf8_unicode_520_ci (charset = utf8),utf8_vietnamese_ci|utf8_vietnamese_ci (charset = utf8),utf8_general_mysql500_ci|utf8_general_mysql500_ci (charset = utf8),ucs2_general_ci|ucs2_general_ci (charset = ucs2),ucs2_bin|ucs2_bin (charset = ucs2),ucs2_unicode_ci|ucs2_unicode_ci (charset = ucs2),ucs2_icelandic_ci|ucs2_icelandic_ci (charset = ucs2),ucs2_latvian_ci|ucs2_latvian_ci (charset = ucs2),ucs2_romanian_ci|ucs2_romanian_ci (charset = ucs2),ucs2_slovenian_ci|ucs2_slovenian_ci (charset = ucs2),ucs2_polish_ci|ucs2_polish_ci (charset = ucs2),ucs2_estonian_ci|ucs2_estonian_ci (charset = ucs2),ucs2_spanish_ci|ucs2_spanish_ci (charset = ucs2),ucs2_swedish_ci|ucs2_swedish_ci (charset = ucs2),ucs2_turkish_ci|ucs2_turkish_ci (charset = ucs2),ucs2_czech_ci|ucs2_czech_ci (charset = ucs2),ucs2_danish_ci|ucs2_danish_ci (charset = ucs2),ucs2_lithuanian_ci|ucs2_lithuanian_ci (charset = ucs2),ucs2_slovak_ci|ucs2_slovak_ci (charset = ucs2),ucs2_spanish2_ci|ucs2_spanish2_ci (charset = ucs2),ucs2_roman_ci|ucs2_roman_ci (charset = ucs2),ucs2_persian_ci|ucs2_persian_ci (charset = ucs2),ucs2_esperanto_ci|ucs2_esperanto_ci (charset = ucs2),ucs2_hungarian_ci|ucs2_hungarian_ci (charset = ucs2),ucs2_sinhala_ci|ucs2_sinhala_ci (charset = ucs2),ucs2_german2_ci|ucs2_german2_ci (charset = ucs2),ucs2_croatian_ci|ucs2_croatian_ci (charset = ucs2),ucs2_unicode_520_ci|ucs2_unicode_520_ci (charset = ucs2),ucs2_vietnamese_ci|ucs2_vietnamese_ci (charset = ucs2),ucs2_general_mysql500_ci|ucs2_general_mysql500_ci (charset = ucs2),cp866_general_ci|cp866_general_ci (charset = cp866),cp866_bin|cp866_bin (charset = cp866),keybcs2_general_ci|keybcs2_general_ci (charset = keybcs2),keybcs2_bin|keybcs2_bin (charset = keybcs2),macce_general_ci|macce_general_ci (charset = macce),macce_bin|macce_bin (charset = macce),macroman_general_ci|macroman_general_ci (charset = macroman),macroman_bin|macroman_bin (charset = macroman),cp852_general_ci|cp852_general_ci (charset = cp852),cp852_bin|cp852_bin (charset = cp852),latin7_estonian_cs|latin7_estonian_cs (charset = latin7),latin7_general_ci|latin7_general_ci (charset = latin7),latin7_general_cs|latin7_general_cs (charset = latin7),latin7_bin|latin7_bin (charset = latin7),utf8mb4_general_ci|utf8mb4_general_ci (charset = utf8mb4),utf8mb4_bin|utf8mb4_bin (charset = utf8mb4),utf8mb4_unicode_ci|utf8mb4_unicode_ci (charset = utf8mb4),utf8mb4_icelandic_ci|utf8mb4_icelandic_ci (charset = utf8mb4),utf8mb4_latvian_ci|utf8mb4_latvian_ci (charset = utf8mb4),utf8mb4_romanian_ci|utf8mb4_romanian_ci (charset = utf8mb4),utf8mb4_slovenian_ci|utf8mb4_slovenian_ci (charset = utf8mb4),utf8mb4_polish_ci|utf8mb4_polish_ci (charset = utf8mb4),utf8mb4_estonian_ci|utf8mb4_estonian_ci (charset = utf8mb4),utf8mb4_spanish_ci|utf8mb4_spanish_ci (charset = utf8mb4),utf8mb4_swedish_ci|utf8mb4_swedish_ci (charset = utf8mb4),utf8mb4_turkish_ci|utf8mb4_turkish_ci (charset = utf8mb4),utf8mb4_czech_ci|utf8mb4_czech_ci (charset = utf8mb4),utf8mb4_danish_ci|utf8mb4_danish_ci (charset = utf8mb4),utf8mb4_lithuanian_ci|utf8mb4_lithuanian_ci (charset = utf8mb4),utf8mb4_slovak_ci|utf8mb4_slovak_ci (charset = utf8mb4),utf8mb4_spanish2_ci|utf8mb4_spanish2_ci (charset = utf8mb4),utf8mb4_roman_ci|utf8mb4_roman_ci (charset = utf8mb4),utf8mb4_persian_ci|utf8mb4_persian_ci (charset = utf8mb4),utf8mb4_esperanto_ci|utf8mb4_esperanto_ci (charset = utf8mb4),utf8mb4_hungarian_ci|utf8mb4_hungarian_ci (charset = utf8mb4),utf8mb4_sinhala_ci|utf8mb4_sinhala_ci (charset = utf8mb4),utf8mb4_german2_ci|utf8mb4_german2_ci (charset = utf8mb4),utf8mb4_croatian_ci|utf8mb4_croatian_ci (charset = utf8mb4),utf8mb4_unicode_520_ci|utf8mb4_unicode_520_ci (charset = utf8mb4),utf8mb4_vietnamese_ci|utf8mb4_vietnamese_ci (charset = utf8mb4),cp1251_bulgarian_ci|cp1251_bulgarian_ci (charset = cp1251),cp1251_ukrainian_ci|cp1251_ukrainian_ci (charset = cp1251),cp1251_bin|cp1251_bin (charset = cp1251),cp1251_general_ci|cp1251_general_ci (charset = cp1251),cp1251_general_cs|cp1251_general_cs (charset = cp1251),utf16_general_ci|utf16_general_ci (charset = utf16),utf16_bin|utf16_bin (charset = utf16),utf16_unicode_ci|utf16_unicode_ci (charset = utf16),utf16_icelandic_ci|utf16_icelandic_ci (charset = utf16),utf16_latvian_ci|utf16_latvian_ci (charset = utf16),utf16_romanian_ci|utf16_romanian_ci (charset = utf16),utf16_slovenian_ci|utf16_slovenian_ci (charset = utf16),utf16_polish_ci|utf16_polish_ci (charset = utf16),utf16_estonian_ci|utf16_estonian_ci (charset = utf16),utf16_spanish_ci|utf16_spanish_ci (charset = utf16),utf16_swedish_ci|utf16_swedish_ci (charset = utf16),utf16_turkish_ci|utf16_turkish_ci (charset = utf16),utf16_czech_ci|utf16_czech_ci (charset = utf16),utf16_danish_ci|utf16_danish_ci (charset = utf16),utf16_lithuanian_ci|utf16_lithuanian_ci (charset = utf16),utf16_slovak_ci|utf16_slovak_ci (charset = utf16),utf16_spanish2_ci|utf16_spanish2_ci (charset = utf16),utf16_roman_ci|utf16_roman_ci (charset = utf16),utf16_persian_ci|utf16_persian_ci (charset = utf16),utf16_esperanto_ci|utf16_esperanto_ci (charset = utf16),utf16_hungarian_ci|utf16_hungarian_ci (charset = utf16),utf16_sinhala_ci|utf16_sinhala_ci (charset = utf16),utf16_german2_ci|utf16_german2_ci (charset = utf16),utf16_croatian_ci|utf16_croatian_ci (charset = utf16),utf16_unicode_520_ci|utf16_unicode_520_ci (charset = utf16),utf16_vietnamese_ci|utf16_vietnamese_ci (charset = utf16),utf16le_general_ci|utf16le_general_ci (charset = utf16le),utf16le_bin|utf16le_bin (charset = utf16le),cp1256_general_ci|cp1256_general_ci (charset = cp1256),cp1256_bin|cp1256_bin (charset = cp1256),cp1257_lithuanian_ci|cp1257_lithuanian_ci (charset = cp1257),cp1257_bin|cp1257_bin (charset = cp1257),cp1257_general_ci|cp1257_general_ci (charset = cp1257),utf32_general_ci|utf32_general_ci (charset = utf32),utf32_bin|utf32_bin (charset = utf32),utf32_unicode_ci|utf32_unicode_ci (charset = utf32),utf32_icelandic_ci|utf32_icelandic_ci (charset = utf32),utf32_latvian_ci|utf32_latvian_ci (charset = utf32),utf32_romanian_ci|utf32_romanian_ci (charset = utf32),utf32_slovenian_ci|utf32_slovenian_ci (charset = utf32),utf32_polish_ci|utf32_polish_ci (charset = utf32),utf32_estonian_ci|utf32_estonian_ci (charset = utf32),utf32_spanish_ci|utf32_spanish_ci (charset = utf32),utf32_swedish_ci|utf32_swedish_ci (charset = utf32),utf32_turkish_ci|utf32_turkish_ci (charset = utf32),utf32_czech_ci|utf32_czech_ci (charset = utf32),utf32_danish_ci|utf32_danish_ci (charset = utf32),utf32_lithuanian_ci|utf32_lithuanian_ci (charset = utf32),utf32_slovak_ci|utf32_slovak_ci (charset = utf32),utf32_spanish2_ci|utf32_spanish2_ci (charset = utf32),utf32_roman_ci|utf32_roman_ci (charset = utf32),utf32_persian_ci|utf32_persian_ci (charset = utf32),utf32_esperanto_ci|utf32_esperanto_ci (charset = utf32),utf32_hungarian_ci|utf32_hungarian_ci (charset = utf32),utf32_sinhala_ci|utf32_sinhala_ci (charset = utf32),utf32_german2_ci|utf32_german2_ci (charset = utf32),utf32_croatian_ci|utf32_croatian_ci (charset = utf32),utf32_unicode_520_ci|utf32_unicode_520_ci (charset = utf32),utf32_vietnamese_ci|utf32_vietnamese_ci (charset = utf32),binary|binary (charset = binary),geostd8_general_ci|geostd8_general_ci (charset = geostd8),geostd8_bin|geostd8_bin (charset = geostd8),cp932_japanese_ci|cp932_japanese_ci (charset = cp932),cp932_bin|cp932_bin (charset = cp932),eucjpms_japanese_ci|eucjpms_japanese_ci (charset = eucjpms),eucjpms_bin|eucjpms_bin (charset = eucjpms),gb18030_chinese_ci|gb18030_chinese_ci (charset = gb18030),gb18030_bin|gb18030_bin (charset = gb18030),gb18030_unicode_520_ci|gb18030_unicode_520_ci (charset = gb18030)\\\"\\n\\tdefault=\\\"utf8mb4_general_ci\\\"\\n\\/>\"', 1, '2018-09-25 14:47:50', '2019-05-16 22:05:35', 6, '', 885, '29e8af00-5d33-4ddc-8643-9f331da7684e', '', '', '', '', ''),
(2402, '', '', '', '', '', '', '', '', 64, '', 'VARCHAR', 2, '', '', 'Google Chart Type', 'NOT NULL', '', 11, '\"<field\\n\\ttype=\\\"list\\\"\\n\\tname=\\\"type\\\"\\n\\tlabel=\\\"Type\\\"\\n\\tdescription=\\\"Select the type of chart you would like to build\\\"\\n\\tclass=\\\"list_class\\\"\\n\\tmultiple=\\\"false\\\"\\n\\tfilter=\\\"WORD\\\"\\n\\trequired=\\\"true\\\"\\n\\toption=\\\"|Select an option,AreaChart|Area Chart,BarChart|Bar Charts,BubbleChart|Bubble Chart,CandlestickChart|Candlestick Charts,ColumnChart|Column Chart,ComboChart|Combo Chart,Gauge|Gauge,GeoChart|Geographic,Histogram|Histogram,LineChart|Line Chart,OrgChart|Organization Chart,PieChart|Pie Chart,ScatterChart|Scatter Chart,SteppedAreaChart|Stepped Area Chart,Table|Table,TreeMap|Treemaps\\\"\\n\\tdefault=\\\"ColumnChart\\\"\\n\\tonchange=\\\"getJsTableExample();\\\"\\n\\/>\"', 1, '2018-09-26 18:39:38', '2018-09-28 23:30:44', 4, '', 886, 'f3ec86f9-ecd9-4c4f-8159-e8018d21a0e3', '', '', '', '', ''),
(2403, '', '', '', '', '', '', '', '', '', '', '', '', '', '', 'Google Chart DIV', 'NOT NULL', '', 14, '\"<field\\n\\ttype=\\\"note\\\"\\n\\tname=\\\"note_google_chart_div\\\"\\n\\tdescription=\\\"<div class=\'btn-group\'>\\r\\n<a id=\'buildChartButton\' href=\'#\' onclick=\'getJsTableUpdatedValues(drawChart);\' class=\'btn btn-small\'> <span class=\'icon-loop\'><\\/span> Redraw Chart<\\/a>\\r\\n<a id=\'loadEditorButton\' href=\'#\' onclick=\'getJsTableUpdatedValues(loadEditor);\' class=\'btn btn-small\'> <span class=\'icon-edit\'><\\/span> Edit Chart<\\/a>\\r\\n<\\/div><br \\/><br \\/>\\r\\n<div id=\'google_chart_div\' style=\'height: 400px; width: 600px;\'><\\/div>\\\"\\n\\/>\"', 1, '2018-09-27 00:16:19', '2018-09-28 21:07:03', 15, '', 887, 'a9dd8c0f-84da-4380-966b-f3d42838d937', '', '', '', '', ''),
(2404, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Google Chart Details', 'NOT NULL', '', 9, '\"<field\\n\\ttype=\\\"hidden\\\"\\n\\tname=\\\"details\\\"\\n\\tdefault=\\\"{}\\\"\\n\\tfilter=\\\"STRING\\\"\\n\\/>\"', 1, '2018-09-27 00:18:10', '0000-00-00 00:00:00', 1, '', 888, 'a54b856a-d737-45ec-8ba9-934d7d0f1f56', '', '', '', '', ''),
(2405, '', '', '', '', '', '', 1, '', 1, '', 'TINYINT', 2, '', '', 'Target Retrieval', 'NOT NULL', '', 11, '\"<field\\n\\ttype=\\\"list\\\"\\n\\tname=\\\"target\\\"\\n\\tlabel=\\\"Target Retrieval Qty\\\"\\n\\tdescription=\\\"Select the target values retrieval relationship.\\\"\\n\\tclass=\\\"list_class\\\"\\n\\tmultiple=\\\"false\\\"\\n\\trequired=\\\"true\\\"\\n\\toption=\\\"1|One,2|Multiple,3|All\\\"\\n\\tdefault=\\\"1\\\"\\n\\tonchange=\\\"getJsTableExample();\\\"\\n\\/>\"', 1, '2018-09-27 15:52:47', '2018-12-22 02:53:49', 6, '', 889, 'dd12a0d3-3ab2-486f-968f-4f490b3d2a5d', '', '', '', '', ''),
(2406, '', '', '', '', '', '', '', '', 7, '', 'INT', 2, '', '', 'Number of Last Assessments', 'NOT NULL', '', 15, '\"<field\\n\\ttype=\\\"number\\\"\\n\\tname=\\\"number\\\"\\n\\tlabel=\\\"Number of Last Assessments\\\"\\n\\tdefault=\\\"3\\\"\\n\\tdescription=\\\"Select the number of last assessments to retrieve\\\"\\n\\tclass=\\\"text_area\\\"\\n\\trequired=\\\"true\\\"\\n\\tmin=\\\"1\\\"\\n\\tmax=\\\"40\\\"\\n\\tstep=\\\"1\\\"\\n\\tonchange=\\\"getJsTableExample();\\\"\\n\\/>\"', 1, '2018-09-27 15:56:02', '2018-09-28 23:31:09', 3, '', 889, '500c5ddf-c676-418b-8f91-c3109d137591', '', '', '', '', ''),
(2407, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Select the Target Fields', 'NOT NULL', '', 35, '\"<field\\n\\ttype=\\\"subform\\\"\\n\\tname=\\\"target_fields\\\"\\n\\tlabel=\\\"Select the Target Fields\\\"\\n\\tlayout=\\\"joomla.form.field.subform.repeatable-table\\\"\\n\\tmultiple=\\\"true\\\"\\n\\tbuttons=\\\"add,remove,move\\\"\\n\\tfields=\\\"2411\\\"\\n\\ticon=\\\"list\\\"\\n\\tmax=\\\"50\\\"\\n\\tmin=\\\"1\\\"\\n\\/>\"', 1, '2018-09-27 16:24:10', '2018-09-29 17:17:51', 4, '', 890, 'e1200415-911f-4e4a-be47-f991880f1356', '', '', '', '', ''),
(2408, '', '', '', '', '', '', '', '', '', '', '', '', '', '', 'JS Table Example', 'NOT NULL', '', 14, '\"<field\\n\\ttype=\\\"note\\\"\\n\\tname=\\\"note_example_chart_table\\\"\\n\\tlabel=\\\"Example\\\"\\n\\tdescription=\\\"<div id=\'table_example\'>Loading examples.<span class=\'loading-dots\' ><\\/span><\\/div>\\\"\\n\\theading=\\\"h4\\\"\\n\\/>\"', 1, '2018-09-27 17:29:46', '2018-09-30 21:02:16', 8, '', 891, '89f5e085-8db7-4218-a11f-82145eae5102', '', '', '', '', ''),
(2409, '', '', 1, '', '', '', '', '', '', '', '', '', 'alF1ZXJ5KGRvY3VtZW50KS5yZWFkeShmdW5jdGlvbigkKSB7DQoJLy8gbm93IGdldCB0aGUgcGxhY2Vob2xkZXJzDQoJZ2V0UGxhY2VIb2xkZXJzKCdjaGFydCcsIHRva2VuKTsNCn0pOw0KZnVuY3Rpb24gZ2V0UGxhY2VIb2xkZXJzX3NlcnZlcihnZXRUeXBlLCB0b2tlbil7DQoJdmFyIGdldFVybCA9ICdpbmRleC5waHA/b3B0aW9uPWNvbV8jIyNjb21wb25lbnQjIyMmdGFzaz1hamF4LmdldFBsYWNlSG9sZGVycyZmb3JtYXQ9anNvbic7DQoJaWYodG9rZW4ubGVuZ3RoID4gMCAmJiBnZXRUeXBlLmxlbmd0aCA+IDApew0KCQl2YXIgcmVxdWVzdCA9ICd0b2tlbj0nK3Rva2VuKycmZ2V0VHlwZT0nK2dldFR5cGU7DQoJfQ0KCXJldHVybiBqUXVlcnkuYWpheCh7DQoJCXR5cGU6ICdHRVQnLA0KCQl1cmw6IGdldFVybCwNCgkJZGF0YVR5cGU6ICdqc29ucCcsDQoJCWRhdGE6IHJlcXVlc3QsDQoJCWpzb25wOiAnY2FsbGJhY2snDQoJfSk7DQp9DQpmdW5jdGlvbiBnZXRQbGFjZUhvbGRlcnMoZ2V0VHlwZSwgdG9rZW4pew0KCWdldFBsYWNlSG9sZGVyc19zZXJ2ZXIoZ2V0VHlwZSwgdG9rZW4pLmRvbmUoZnVuY3Rpb24ocmVzdWx0KSB7DQoJCWlmKHJlc3VsdCl7DQoJCQlqUXVlcnkoJyMnK2dldFR5cGUrJ19wbGFjZWhvbGRlcnMnKS5odG1sKHJlc3VsdCk7DQoJCX0gZWxzZSB7DQoJCQlqUXVlcnkoJyMnK2dldFR5cGUrJ19wbGFjZWhvbGRlcnMnKS5odG1sKCc8ZGl2IGNsYXNzPVwnYWxlcnQgYWxlcnQtZXJyb3JcJz48aDQgY2xhc3M9XCdhbGVydC1oZWFkaW5nXCc+UGxhY2Vob2xkZXJzIG5vdCBmb3VuZCE8L2g0PjxkaXYgY2xhc3M9XCdhbGVydC1tZXNzYWdlXCc+VGhlcmUgd2FzIGFuIGVycm9yLCBwbGVhc2UgdHJ5IGFnYWluIGxhdGVyLiBJZiB0aGlzIGVycm9yIGNvbnRpbnVlcywgY29udGFjdCB5b3VyIHN5c3RlbSBhZG1pbmlzdHJhdG9yLjwvZGl2PjwvZGl2PicpOw0KCQl9DQoJfSkNCn0=', '', 'Chart Placeholders', 'NOT NULL', '', 14, '\"<field\\n\\ttype=\\\"note\\\"\\n\\tname=\\\"note_chart_placeholders\\\"\\n\\tlabel=\\\"Placeholders\\\"\\n\\tdescription=\\\"<div id=\'chart_placeholders\'>Loading placeholders.<span class=\'loading-dots\' ><\\/span><\\/div>\\\"\\n\\theading=\\\"h3\\\"\\n\\/>\"', 1, '2018-09-28 17:06:53', '2018-09-28 17:09:58', 2, '', 742, 'bd98eead-1648-46b3-8333-74f247937851', '', '', '', '', ''),
(2410, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Javascript Table', 'NOT NULL', '', 25, '\"<field\\n\\ttype=\\\"textarea\\\"\\n\\tname=\\\"javascript_table\\\"\\n\\tlabel=\\\"Placeholder Table\\\"\\n\\trows=\\\"10\\\"\\n\\tcols=\\\"15\\\"\\n\\tdescription=\\\"You you must enter the Placeholder Table values needed to build the chart, Please give attention to the examples below, they are based on the type of chart you selection.\\\"\\n\\tmessage=\\\"\\\"\\n\\tclass=\\\"text_area span12\\\"\\n\\tfilter=\\\"STRING\\\"\\n\\thint=\\\"\\/\\/ Check the examples below\\\"\\n\\trequired=\\\"true\\\"\\n\\tonchange=\\\"getJsTableUpdatedValues(drawChart);\\\"\\n\\/>\"', 1, '2018-09-29 14:35:14', '2018-10-06 17:32:24', 3, '', 890, '586088c2-2f79-4147-bdd9-8d3cd32db058', '', '', '', '', ''),
(2411, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', 2, '', '', 'Target Field (onchange)', 'NOT NULL', '', 6, '\"<field\\n\\ttype=\\\"getselection\\\"\\n\\tname=\\\"selection\\\"\\n\\tlabel=\\\"Target Field\\\"\\n\\tdescription=\\\"Select the field you want to target.\\\"\\n\\tclass=\\\"list_class target_fields\\\"\\n\\tmultiple=\\\"false\\\"\\n\\trequired=\\\"true\\\"\\n\\tonchange=\\\"getJsTableExample();\\\"\\n\\textends=\\\"list\\\"\\n\\ttype_php_1=\\\"__.o0=base64=Oo.__W0NVU1RPTUNPREU9Z2V0U2VsZWN0aW9uRmllbGRd\\\"\\n\\/>\"', 1, '2018-09-29 14:40:19', '2018-10-01 11:17:19', 4, '', 879, '5e9d5619-0cd8-4710-9178-f7b8658c6147', '', '', '', '', ''),
(2412, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'Select a form', 'NOT NULL', '', 6, '\"<field\\n\\ttype=\\\"targetform\\\"\\n\\tname=\\\"form\\\"\\n\\tlabel=\\\"Select a form\\r\\n<br \\/><small>as demo data<\\/small>\\\"\\n\\tdescription=\\\"Select the form that you would like to use as the demo data to base this chart on.\\\"\\n\\tmessage=\\\"\\\"\\n\\tclass=\\\"list_class\\\"\\n\\tmultiple=\\\"false\\\"\\n\\tdefault=\\\"1\\\"\\n\\trequired=\\\"true\\\"\\n\\tonchange=\\\"getJsTableUpdatedValues(drawChart);\\\"\\n\\textends=\\\"list\\\"\\n\\tbutton=\\\"true\\\"\\n\\ttable=\\\"#__###component###_form\\\"\\n\\tcomponent=\\\"com_###component###\\\"\\n\\tview=\\\"form\\\"\\n\\tviews=\\\"forms\\\"\\n\\tvalue_field=\\\"id\\\"\\n\\tkey_field=\\\"id\\\"\\n\\tprime_php=\\\"1\\\"\\n\\ttype_php_1=\\\"__.o0=base64=Oo.__Ly8gR2V0IHRoZSB1c2VyIG9iamVjdC4NCgkJJHVzZXIgPSBKRmFjdG9yeTo6Z2V0VXNlcigpOw0KCQkvLyBHZXQgdGhlIGRhdGFic2Ugb2JqZWN0Lg0KCQkkZGIgPSBKRmFjdG9yeTo6Z2V0REJPKCk7DQoJCSRxdWVyeSA9ICRkYi0+Z2V0UXVlcnkodHJ1ZSk7DQoJCSRxdWVyeS0+c2VsZWN0KCRkYi0+cXVvdGVOYW1lKGFycmF5KCdhLiMjI0lEIyMjJywnYS4jIyNURVhUIyMjJyksYXJyYXkoJyMjI0lEIyMjJywnIyMjQ09ERV9URVhUIyMjJykpKTsNCgkJJHF1ZXJ5LT5mcm9tKCRkYi0+cXVvdGVOYW1lKCcjIyNUQUJMRSMjIycsICdhJykpOw0KCQkkcXVlcnktPndoZXJlKCRkYi0+cXVvdGVOYW1lKCdhLnB1Ymxpc2hlZCcpIC4gJyA+PSAxJyk7DQoJCSRxdWVyeS0+b3JkZXIoJ2EuIyMjVEVYVCMjIyBBU0MnKTsNCgkJLy8gSW1wbGVtZW50IFZpZXcgTGV2ZWwgQWNjZXNzIChpZiBzZXQgaW4gdGFibGUpDQoJCWlmICghJHVzZXItPmF1dGhvcmlzZSgnY29yZS5vcHRpb25zJywgJ1tbW2NvbV9jb21wb25lbnRdXV0nKSkNCgkJew0KCQkJJGNvbHVtbnMgPSAkZGItPmdldFRhYmxlQ29sdW1ucygnIyMjVEFCTEUjIyMnKTsNCgkJCWlmKGlzc2V0KCRjb2x1bW5zWydhY2Nlc3MnXSkpDQoJCQl7DQoJCQkJJGdyb3VwcyA9IGltcGxvZGUoJywnLCAkdXNlci0+Z2V0QXV0aG9yaXNlZFZpZXdMZXZlbHMoKSk7DQoJCQkJJHF1ZXJ5LT53aGVyZSgnYS5hY2Nlc3MgSU4gKCcgLiAkZ3JvdXBzIC4gJyknKTsNCgkJCX0NCgkJfQ0KCQkkZGItPnNldFF1ZXJ5KChzdHJpbmcpJHF1ZXJ5KTsNCgkJJGl0ZW1zID0gJGRiLT5sb2FkT2JqZWN0TGlzdCgpOw0KCQkkb3B0aW9ucyA9IGFycmF5KCk7DQoJCWlmICgkaXRlbXMpDQoJCXsNCgkJCSRvcHRpb25zW10gPSBKSHRtbDo6Xygnc2VsZWN0Lm9wdGlvbicsICcnLCAnU2VsZWN0IGFuIG9wdGlvbicpOw0KCQkJZm9yZWFjaCgkaXRlbXMgYXMgJGl0ZW0pDQoJCQl7DQoJCQkJJG9wdGlvbnNbXSA9IEpIdG1sOjpfKCdzZWxlY3Qub3B0aW9uJywgJGl0ZW0tPiMjI0lEIyMjLCAkaXRlbS0+IyMjQ09ERV9URVhUIyMjKTsNCgkJCX0NCgkJfQ0KCQlyZXR1cm4gJG9wdGlvbnM7\\\"\\n\\/>\"', 1, '2018-10-12 21:55:00', '2018-10-21 14:43:56', 3, '', 892, '02106d71-b0ea-43b5-b2d8-1868bde525be', '', '', '', '', ''),
(2413, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'Type (Required)', 'NOT NULL', '', 6, '\"<field\\n\\ttype=\\\"types\\\"\\n\\tname=\\\"type\\\"\\n\\tlabel=\\\"Type\\\"\\n\\tdescription=\\\"Select the type\\\"\\n\\tclass=\\\"list_class medium\\\"\\n\\tmultiple=\\\"false\\\"\\n\\trequired=\\\"true\\\"\\n\\textends=\\\"list\\\"\\n\\tbutton=\\\"true\\\"\\n\\ttable=\\\"#__###component###_type\\\"\\n\\tcomponent=\\\"com_###component###\\\"\\n\\tview=\\\"type\\\"\\n\\tviews=\\\"types\\\"\\n\\tvalue_field=\\\"name\\\"\\n\\tkey_field=\\\"id\\\"\\n\\tprime_php=\\\"1\\\"\\n\\ttype_php_1=\\\"__.o0=base64=Oo.__Ly8gR2V0IHRoZSB1c2VyIG9iamVjdC4NCgkJJHVzZXIgPSBKRmFjdG9yeTo6Z2V0VXNlcigpOw0KCQkvLyBHZXQgdGhlIGRhdGFic2Ugb2JqZWN0Lg0KCQkkZGIgPSBKRmFjdG9yeTo6Z2V0REJPKCk7DQoJCSRxdWVyeSA9ICRkYi0+Z2V0UXVlcnkodHJ1ZSk7DQoJCSRxdWVyeS0+c2VsZWN0KCRkYi0+cXVvdGVOYW1lKGFycmF5KCdhLiMjI0lEIyMjJywnYS4jIyNURVhUIyMjJyksYXJyYXkoJyMjI0lEIyMjJywnIyMjQ09ERV9URVhUIyMjJykpKTsNCgkJJHF1ZXJ5LT5mcm9tKCRkYi0+cXVvdGVOYW1lKCcjIyNUQUJMRSMjIycsICdhJykpOw0KCQkkcXVlcnktPndoZXJlKCRkYi0+cXVvdGVOYW1lKCdhLnB1Ymxpc2hlZCcpIC4gJyA+PSAxJyk7DQoJCSRxdWVyeS0+b3JkZXIoJ2EuIyMjVEVYVCMjIyBBU0MnKTsNCgkJLy8gSW1wbGVtZW50IFZpZXcgTGV2ZWwgQWNjZXNzIChpZiBzZXQgaW4gdGFibGUpDQoJCWlmICghJHVzZXItPmF1dGhvcmlzZSgnY29yZS5vcHRpb25zJywgJ1tbW2NvbV9jb21wb25lbnRdXV0nKSkNCgkJew0KCQkJJGNvbHVtbnMgPSAkZGItPmdldFRhYmxlQ29sdW1ucygnIyMjVEFCTEUjIyMnKTsNCgkJCWlmKGlzc2V0KCRjb2x1bW5zWydhY2Nlc3MnXSkpDQoJCQl7DQoJCQkJJGdyb3VwcyA9IGltcGxvZGUoJywnLCAkdXNlci0+Z2V0QXV0aG9yaXNlZFZpZXdMZXZlbHMoKSk7DQoJCQkJJHF1ZXJ5LT53aGVyZSgnYS5hY2Nlc3MgSU4gKCcgLiAkZ3JvdXBzIC4gJyknKTsNCgkJCX0NCgkJfQ0KCQkkZGItPnNldFF1ZXJ5KChzdHJpbmcpJHF1ZXJ5KTsNCgkJJGl0ZW1zID0gJGRiLT5sb2FkT2JqZWN0TGlzdCgpOw0KCQkkb3B0aW9ucyA9IGFycmF5KCk7DQoJCWlmICgkaXRlbXMpDQoJCXsNCgkJCSRvcHRpb25zW10gPSBKSHRtbDo6Xygnc2VsZWN0Lm9wdGlvbicsICcnLCAnU2VsZWN0IGFuIG9wdGlvbicpOw0KCQkJZm9yZWFjaCgkaXRlbXMgYXMgJGl0ZW0pDQoJCQl7DQoJCQkJJG9wdGlvbnNbXSA9IEpIdG1sOjpfKCdzZWxlY3Qub3B0aW9uJywgJGl0ZW0tPiMjI0lEIyMjLCAkaXRlbS0+IyMjQ09ERV9URVhUIyMjKTsNCgkJCX0NCgkJfQ0KCQlyZXR1cm4gJG9wdGlvbnM7\\\"\\n\\/>\"', 1, '2018-10-14 01:10:59', '2019-12-30 05:16:36', 11, '', 384, '6a26ad32-cb98-49ed-9de5-7f749057be2a', '', '', '', '', ''),
(2414, '', '', '', '', '', '', '', '', 64, '', 'VARCHAR', 2, '', '', 'Partner State', 'NOT NULL', '', 11, '\"<field\\n\\ttype=\\\"list\\\"\\n\\tname=\\\"partner_state\\\"\\n\\tlabel=\\\"Partner State\\\"\\n\\tdescription=\\\"This highlights the location of the Project in the region\\\"\\n\\tclass=\\\"list_class\\\"\\n\\tmultiple=\\\"false\\\"\\n\\trequired=\\\"true\\\"\\n\\toption=\\\"|Select an option,Burundi,Kenya,Rwanda,South Sudan,Tanzania,Uganda\\\"\\n\\tdefault=\\\"\\\"\\n\\/>\"', 1, '2018-10-15 15:35:53', '2018-10-18 13:11:19', 2, '', 893, '36e4cd30-2a9e-4440-a33d-fd48113ba87a', '', '', '', '', ''),
(2415, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'Promoter (member-external)', 'NOT NULL', '', 6, '\"<field\\n\\ttype=\\\"member\\\"\\n\\tname=\\\"member\\\"\\n\\tlabel=\\\"Promoter\\\"\\n\\tclass=\\\"list_class\\\"\\n\\tmultiple=\\\"false\\\"\\n\\trequired=\\\"true\\\"\\n\\textends=\\\"list\\\"\\n\\ttable=\\\"#__[[[core]]]_member\\\"\\n\\tcomponent=\\\"com_[[[core]]]\\\"\\n\\tview=\\\"member\\\"\\n\\tviews=\\\"members\\\"\\n\\tvalue_field=\\\"token\\\"\\n\\tkey_field=\\\"id\\\"\\n\\tprime_php=\\\"1\\\"\\n\\ttype_php_1=\\\"__.o0=base64=Oo.__W0NVU1RPTUNPREU9Z2V0RXh0ZXJuYWxNZW1iZXJzK21lbWJlcixNZW1iZXJd\\\"\\n\\/>\"', 1, '2018-10-15 15:38:05', '2019-02-14 22:28:17', 7, '', 384, '01fb3891-ec29-41af-a06d-7d7d5ca37ed1', '', '', '', '', ''),
(2416, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'Default Access Level', 'NOT NULL', '', 34, '\"<field\\n\\ttype=\\\"accesslevel\\\"\\n\\tname=\\\"default_accesslevel\\\"\\n\\tlabel=\\\"Default Access Level\\\"\\n\\tdescription=\\\"Select the default access level.\\\"\\n\\trequired=\\\"true\\\"\\n\\tmultiple=\\\"false\\\"\\n\\/>\"', 1, '2018-10-15 15:45:11', '0000-00-00 00:00:00', 1, '', 894, 'd25f066c-4282-460a-a0ba-c2dfc018798f', '', '', '', '', ''),
(2417, '', '', '', '', '', '', '', '', 64, '', 'VARCHAR', 2, '', '', 'Lead Time/Status', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"status_name\\\"\\n\\tlabel=\\\"Lead Time\\/Status\\\"\\n\\tsize=\\\"10\\\"\\n\\tmaxlength=\\\"50\\\"\\n\\tdefault=\\\"\\\"\\n\\tdescription=\\\"Enter investment lead time\\/status\\\"\\n\\tclass=\\\"text_area\\\"\\n\\trequired=\\\"true\\\"\\n\\tfilter=\\\"STRING\\\"\\n\\thint=\\\"Lead Time\\/Status\\\"\\n\\tautocomplete=\\\"on\\\"\\n\\/>\"', 1, '2018-10-19 03:41:14', '0000-00-00 00:00:00', 1, '', 895, '6eab2ef2-0615-4894-9f80-104ef5987453', '', '', '', '', ''),
(2418, '', '', '', '', '', '', '', '', 64, '', 'CHAR', 2, '', '', 'Estimated Project Cost', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"cost\\\"\\n\\tlabel=\\\"Estimated Project Cost\\\"\\n\\tsize=\\\"50\\\"\\n\\tmaxlength=\\\"150\\\"\\n\\tdescription=\\\"Estimated Project Cost\\\"\\n\\tclass=\\\"text_area\\\"\\n\\trequired=\\\"true\\\"\\n\\tfilter=\\\"CMD\\\"\\n\\tmessage=\\\"Error! Please add estimated cost here.\\\"\\n\\thint=\\\"Just a number.\\\"\\n\\/>\"', 1, '2018-10-19 03:43:52', '2015-08-25 21:15:22', 1, '', 574, 'fd88ff3a-bb15-4944-a3b2-70c4fe67bc4c', '', '', '', '', ''),
(2419, '', '', '', '', '', '', '', '', 11, '', 'INT', '', '', '', 'Template Types (Dynamic)', 'NOT NULL', '', 6, '\"<field\\n\\ttype=\\\"templatetypes\\\"\\n\\tname=\\\"template\\\"\\n\\tlabel=\\\"Template Type\\\"\\n\\tdescription=\\\"Select the template type\\\"\\n\\tclass=\\\"list_class\\\"\\n\\tmultiple=\\\"false\\\"\\n\\trequired=\\\"true\\\"\\n\\textends=\\\"list\\\"\\n\\tbutton=\\\"true\\\"\\n\\ttable=\\\"#__###component###_template\\\"\\n\\tcomponent=\\\"com_###component###\\\"\\n\\tview=\\\"template\\\"\\n\\tviews=\\\"templates\\\"\\n\\tvalue_field=\\\"name\\\"\\n\\tkey_field=\\\"id\\\"\\n\\tprime_php=\\\"1\\\"\\n\\ttype_php_1=\\\"__.o0=base64=Oo.__Ly8gR2V0IHRoZSB1c2VyIG9iamVjdC4NCgkJJHVzZXIgPSBKRmFjdG9yeTo6Z2V0VXNlcigpOw0KCQkkZGIgPSBKRmFjdG9yeTo6Z2V0REJPKCk7DQoJCSRxdWVyeSA9ICRkYi0+Z2V0UXVlcnkodHJ1ZSk7DQoJCSRxdWVyeS0+c2VsZWN0KCRkYi0+cXVvdGVOYW1lKGFycmF5KCdhLiMjI0lEIyMjJywnYS4jIyNURVhUIyMjJywndC5uYW1lJyksYXJyYXkoJyMjI0lEIyMjJywnIyMjQ09ERV9URVhUIyMjJywndHlwZV9uYW1lJykpKTsNCgkJJHF1ZXJ5LT5mcm9tKCRkYi0+cXVvdGVOYW1lKCcjIyNUQUJMRSMjIycsICdhJykpOw0KCQkkcXVlcnktPmpvaW4oJ0xFRlQnLCAkZGItPnF1b3RlTmFtZSgnI19fW1tbY29tcG9uZW50XV1dX3R5cGUnLCAndCcpIC4gJyBPTiAoJyAuICRkYi0+cXVvdGVOYW1lKCdhLnR5cGUnKSAuICcgPSAnIC4gJGRiLT5xdW90ZU5hbWUoJ3QuaWQnKSAuICcpJyk7DQoJCSRxdWVyeS0+d2hlcmUoJGRiLT5xdW90ZU5hbWUoJ2EucHVibGlzaGVkJykgLiAnID49IDEnKTsNCgkJJHF1ZXJ5LT5vcmRlcignYS4jIyNURVhUIyMjIEFTQycpOw0KCQkvLyBJbXBsZW1lbnQgVmlldyBMZXZlbCBBY2Nlc3MNCgkJaWYgKCEkdXNlci0+YXV0aG9yaXNlKCdjb3JlLm9wdGlvbnMnLCAnW1tbY29tX2NvbXBvbmVudF1dXScpKQ0KCQl7DQoJCQkkZ3JvdXBzID0gaW1wbG9kZSgnLCcsICR1c2VyLT5nZXRBdXRob3Jpc2VkVmlld0xldmVscygpKTsNCgkJCSRxdWVyeS0+d2hlcmUoJ2EuYWNjZXNzIElOICgnIC4gJGdyb3VwcyAuICcpJyk7DQoJCQkkcXVlcnktPndoZXJlKCd0LmFjY2VzcyBJTiAoJyAuICRncm91cHMgLiAnKScpOw0KCQl9DQoJCSRkYi0+c2V0UXVlcnkoKHN0cmluZykkcXVlcnkpOw0KCQkkaXRlbXMgPSAkZGItPmxvYWRPYmplY3RMaXN0KCk7DQoJCSRvcHRpb25zID0gYXJyYXkoKTsNCgkJaWYgKCRpdGVtcykNCgkJew0KCQkJJG9wdGlvbnNbXSA9IEpIdG1sOjpfKCdzZWxlY3Qub3B0aW9uJywgJycsICdTZWxlY3QgYW4gb3B0aW9uJyk7DQoJCQlmb3JlYWNoKCRpdGVtcyBhcyAkaXRlbSkNCgkJCXsNCgkJCQkkb3B0aW9uc1tdID0gSkh0bWw6Ol8oJ3NlbGVjdC5vcHRpb24nLCAkaXRlbS0+IyMjSUQjIyMsICRpdGVtLT4jIyNDT0RFX1RFWFQjIyMgLiAnICgnIC4gJGl0ZW0tPnR5cGVfbmFtZSAuICcpJyk7DQoJCQl9DQoJCX0NCgkJcmV0dXJuICRvcHRpb25zOw==\\\"\\n\\/>\"', 1, '2018-10-19 20:10:32', '2018-10-21 14:46:59', 8, '', 384, 'ec1e24b5-b126-4efd-b1cf-685b8e936e8e', '', '', '', '', ''),
(2420, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Email Recipients', 'NOT NULL', '', 35, '\"<field\\n\\ttype=\\\"subform\\\"\\n\\tname=\\\"email\\\"\\n\\tlabel=\\\"Email Recipients\\\"\\n\\tlayout=\\\"joomla.form.field.subform.repeatable-table\\\"\\n\\tmultiple=\\\"true\\\"\\n\\tbuttons=\\\"add,remove,move\\\"\\n\\tfields=\\\"1,2,3\\\"\\n\\tdescription=\\\"Set the email recipients for this message.\\\"\\n\\ticon=\\\"list\\\"\\n\\tmax=\\\"10\\\"\\n\\tmin=\\\"1\\\"\\n\\/>\"', '', '2018-10-20 17:36:56', '0000-00-00 00:00:00', 1, '', 896, 'e7b08631-cca0-4ceb-a712-244921f33669', '', '', '', '', ''),
(2421, '', '', '', '', '', '', '', '', 64, '', 'CHAR', 2, '', '', 'Name (emails related to memeber)', 'NOT NULL', '', 6, '\"<field\\n\\ttype=\\\"relatedemails\\\"\\n\\tname=\\\"name\\\"\\n\\tlabel=\\\"Name\\\"\\n\\tclass=\\\"list_class\\\"\\n\\tmultiple=\\\"false\\\"\\n\\tonchange=\\\"\\\"\\n\\textends=\\\"list\\\"\\n\\tprime_php=\\\"1\\\"\\n\\ttype_php_1=\\\"__.o0=base64=Oo.__CQkvLyBnZXQgYXBwbGljYXRpb24gaW5wdXQNCgkJJGppbnB1dCA9IEpGYWN0b3J5OjpnZXRBcHBsaWNhdGlvbigpLT5pbnB1dDsNCgkJLy8gU2V0IHJlZGlyZWN0ZWQgdmlldyBuYW1lDQoJCSRyZWRpcmVjdGVkVmlldyA9ICRqaW5wdXQtPmdldCgncmVmJywgbnVsbCwgJ1NUUklORycpOw0KCQkvLyBTZXQgZmllbGQgbmFtZSAob3IgZmFsbCBiYWNrIHRvIHZpZXcgbmFtZSkNCgkJJHJlZGlyZWN0ZWRGaWVsZCA9ICRqaW5wdXQtPmdldCgnZmllbGQnLCAkcmVkaXJlY3RlZFZpZXcsICdTVFJJTkcnKTsNCgkJLy8gU2V0IHJlZGlyZWN0ZWQgdmlldyBpZA0KCQkkcmVkaXJlY3RlZElkID0gJGppbnB1dC0+Z2V0KCdyZWZpZCcsIDAsICdJTlQnKTsNCgkJLy8gU2V0IGZpZWxkIGlkIChvciBmYWxsIGJhY2sgdG8gcmVkaXJlY3RlZCB2aWV3IGlkKQ0KCQkkcmVkaXJlY3RlZFZhbHVlID0gJGppbnB1dC0+Z2V0KCdmaWVsZF9pZCcsICRyZWRpcmVjdGVkSWQsICdJTlQnKTsNCgkJLy8gR2V0IHRoZSBhbGwgcmVsYXRlZCBlbWFpbA0KCQkkaXRlbXMgPSBbW1tDb21wb25lbnRdXV1IZWxwZXI6OmdldFJlbGF0ZWRFbWFpbCgkcmVkaXJlY3RlZEZpZWxkLCAkcmVkaXJlY3RlZFZhbHVlKTsNCgkJJG9wdGlvbnMgPSBhcnJheSgpOw0KCQlpZiAoJGl0ZW1zKQ0KCQl7DQoJCQkkb3B0aW9uc1tdID0gSkh0bWw6Ol8oJ3NlbGVjdC5vcHRpb24nLCAnJywgJ1NlbGVjdCBhbiBvcHRpb24nKTsNCgkJCWZvcmVhY2goJGl0ZW1zIGFzICRpdGVtKQ0KCQkJew0KCQkJCSRvcHRpb25zW10gPSBKSHRtbDo6Xygnc2VsZWN0Lm9wdGlvbicsICRpdGVtLT4jIyNJRCMjIywgJGl0ZW0tPiMjI0NPREVfVEVYVCMjIyk7DQoJCQl9DQoJCX0NCgkJJG9wdGlvbnNbXSA9IEpIdG1sOjpfKCdzZWxlY3Qub3B0aW9uJywgJycsICdTZWxlY3QgYW4gb3B0aW9uJyk7DQoJCXJldHVybiAkb3B0aW9uczs=\\\"\\n\\/>\"', '', '2018-10-20 17:37:20', '0000-00-00 00:00:00', 1, '', 897, '3bb2baa5-270c-4431-9c17-f827c39ac5f5', '', '', '', '', ''),
(2422, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Allow Relationships', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"add_relationship\\\"\\n\\tlabel=\\\"Allow Relationships\\\"\\n\\tdescription=\\\"Allow relationships to be created across members.\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"1|Yes,0|No\\\"\\n\\tdefault=\\\"0\\\"\\n\\trequired=\\\"true\\\"\\n\\/>\"', 1, '2018-10-22 02:43:21', '2018-10-22 02:46:52', 2, '', 898, '6896d64d-25b1-479c-9cdd-d6239ce48cf1', '', '', '', '', ''),
(2423, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Communication (type - behavior)', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"communicate\\\"\\n\\tlabel=\\\"Communication\\\"\\n\\tdescription=\\\"Set the type of behavior this member type has towards the communication component if available. None - do not show in communication, Only Selected - show only the selected by the member in profile, All - show all to all members.\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"0|None,1|Only Selected,2|All\\\"\\n\\tdefault=\\\"0\\\"\\n\\/>\"', 1, '2018-10-24 20:03:40', '0000-00-00 00:00:00', 1, '', 899, '7aa6e1c4-8958-4962-aac6-f6632b3ca74c', '', '', '', '', ''),
(2424, '', '', '', '', '', '', 1, '', 1, '', 'TINYINT', 2, '', '', 'Selection Field Type', 'NOT NULL', '', 11, '\"<field\\n\\ttype=\\\"list\\\"\\n\\tname=\\\"field_type\\\"\\n\\tlabel=\\\"Selection Field Type\\\"\\n\\tdescription=\\\"Select the type of field to use when a member selects the relationship. Checkboxes are ideal when there are not many of these particular type of members, otherwise use the list type.\\\"\\n\\tclass=\\\"list_class\\\"\\n\\tmultiple=\\\"false\\\"\\n\\trequired=\\\"true\\\"\\n\\toption=\\\"1|Checkboxes,2|List\\\"\\n\\tdefault=\\\"1\\\"\\n\\/>\"', 1, '2018-10-24 20:14:00', '0000-00-00 00:00:00', 1, '', 900, '08b52fd6-65f0-4b5c-ac24-520cfa9d8a3e', '', '', '', '', ''),
(2425, '', '', '', '', '', '', '', '', 11, '', 'TEXT', '', '', '', 'Types (Multiple)', 'NOT NULL', '', 6, '\"<field\\n\\ttype=\\\"types\\\"\\n\\tname=\\\"type\\\"\\n\\tlabel=\\\"Type\\\"\\n\\tdescription=\\\"Select the type\\/s\\\"\\n\\tclass=\\\"list_class\\\"\\n\\tmultiple=\\\"true\\\"\\n\\trequired=\\\"false\\\"\\n\\textends=\\\"list\\\"\\n\\tbutton=\\\"true\\\"\\n\\ttable=\\\"#__###component###_type\\\"\\n\\tcomponent=\\\"com_###component###\\\"\\n\\tview=\\\"type\\\"\\n\\tviews=\\\"types\\\"\\n\\tvalue_field=\\\"name\\\"\\n\\tkey_field=\\\"id\\\"\\n\\tprime_php=\\\"1\\\"\\n\\ttype_php_1=\\\"__.o0=base64=Oo.__Ly8gR2V0IHRoZSB1c2VyIG9iamVjdC4NCgkJJHVzZXIgPSBKRmFjdG9yeTo6Z2V0VXNlcigpOw0KCQkvLyBHZXQgdGhlIGRhdGFic2Ugb2JqZWN0Lg0KCQkkZGIgPSBKRmFjdG9yeTo6Z2V0REJPKCk7DQoJCSRxdWVyeSA9ICRkYi0+Z2V0UXVlcnkodHJ1ZSk7DQoJCSRxdWVyeS0+c2VsZWN0KCRkYi0+cXVvdGVOYW1lKGFycmF5KCdhLiMjI0lEIyMjJywnYS4jIyNURVhUIyMjJyksYXJyYXkoJyMjI0lEIyMjJywnIyMjQ09ERV9URVhUIyMjJykpKTsNCgkJJHF1ZXJ5LT5mcm9tKCRkYi0+cXVvdGVOYW1lKCcjIyNUQUJMRSMjIycsICdhJykpOw0KCQkkcXVlcnktPndoZXJlKCRkYi0+cXVvdGVOYW1lKCdhLnB1Ymxpc2hlZCcpIC4gJyA+PSAxJyk7DQoJCSRxdWVyeS0+b3JkZXIoJ2EuIyMjVEVYVCMjIyBBU0MnKTsNCgkJJGRiLT5zZXRRdWVyeSgoc3RyaW5nKSRxdWVyeSk7DQoJCSRpdGVtcyA9ICRkYi0+bG9hZE9iamVjdExpc3QoKTsNCgkJJG9wdGlvbnMgPSBhcnJheSgpOw0KCQlpZiAoJGl0ZW1zKQ0KCQl7DQoJCQlmb3JlYWNoKCRpdGVtcyBhcyAkaXRlbSkNCgkJCXsNCgkJCQkkb3B0aW9uc1tdID0gSkh0bWw6Ol8oJ3NlbGVjdC5vcHRpb24nLCAkaXRlbS0+IyMjSUQjIyMsICRpdGVtLT4jIyNDT0RFX1RFWFQjIyMpOw0KCQkJfQ0KCQl9DQoJCXJldHVybiAkb3B0aW9uczs=\\\"\\n\\/>\"', 1, '2018-10-26 15:24:07', '2018-12-18 02:14:33', 6, '', 384, 'f2ac7b44-2e87-452f-8ed2-fe04aa686409', '', '', '', '', ''),
(2426, '', '', '', '', '', '', '', '', 11, '', 'TEXT', '', '', '', 'Types (Multiple - Edit)', 'NOT NULL', '', 6, '\"<field\\n\\ttype=\\\"types\\\"\\n\\tname=\\\"edit_relationship\\\"\\n\\tlabel=\\\"can Edit\\\"\\n\\tdescription=\\\"Select the type\\/s that can edit the relationships.\\\"\\n\\tclass=\\\"list_class\\\"\\n\\tmultiple=\\\"true\\\"\\n\\trequired=\\\"false\\\"\\n\\textends=\\\"list\\\"\\n\\tbutton=\\\"true\\\"\\n\\ttable=\\\"#__###component###_type\\\"\\n\\tcomponent=\\\"com_###component###\\\"\\n\\tview=\\\"type\\\"\\n\\tviews=\\\"types\\\"\\n\\tvalue_field=\\\"name\\\"\\n\\tkey_field=\\\"id\\\"\\n\\ttype_php_1=\\\"__.o0=base64=Oo.__Ly8gR2V0IHRoZSB1c2VyIG9iamVjdC4NCgkJJHVzZXIgPSBKRmFjdG9yeTo6Z2V0VXNlcigpOw0KCQkvLyBHZXQgdGhlIGRhdGFic2Ugb2JqZWN0Lg0KCQkkZGIgPSBKRmFjdG9yeTo6Z2V0REJPKCk7DQoJCSRxdWVyeSA9ICRkYi0+Z2V0UXVlcnkodHJ1ZSk7DQoJCSRxdWVyeS0+c2VsZWN0KCRkYi0+cXVvdGVOYW1lKGFycmF5KCdhLiMjI0lEIyMjJywnYS4jIyNURVhUIyMjJyksYXJyYXkoJyMjI0lEIyMjJywnIyMjQ09ERV9URVhUIyMjJykpKTsNCgkJJHF1ZXJ5LT5mcm9tKCRkYi0+cXVvdGVOYW1lKCcjIyNUQUJMRSMjIycsICdhJykpOw0KCQkkcXVlcnktPndoZXJlKCRkYi0+cXVvdGVOYW1lKCdhLnB1Ymxpc2hlZCcpIC4gJyA+PSAxJyk7DQoJCSRxdWVyeS0+b3JkZXIoJ2EuIyMjVEVYVCMjIyBBU0MnKTsNCgkJJGRiLT5zZXRRdWVyeSgoc3RyaW5nKSRxdWVyeSk7DQoJCSRpdGVtcyA9ICRkYi0+bG9hZE9iamVjdExpc3QoKTsNCgkJJG9wdGlvbnMgPSBhcnJheSgpOw0KCQlpZiAoJGl0ZW1zKQ0KCQl7DQoJCQlmb3JlYWNoKCRpdGVtcyBhcyAkaXRlbSkNCgkJCXsNCgkJCQkkb3B0aW9uc1tdID0gSkh0bWw6Ol8oJ3NlbGVjdC5vcHRpb24nLCAkaXRlbS0+IyMjSUQjIyMsICRpdGVtLT4jIyNDT0RFX1RFWFQjIyMpOw0KCQkJfQ0KCQl9DQoJCXJldHVybiAkb3B0aW9uczs=\\\"\\n\\/>\"', 1, '2018-10-26 15:30:02', '2018-10-26 15:30:19', 2, '', 384, 'c1dc2ab3-3cf9-41bf-b334-23885ec17ce3', '', '', '', '', ''),
(2427, '', '', '', '', '', '', '', '', 11, '', 'TEXT', '', '', '', 'Types (Multiple - View)', 'NOT NULL', '', 6, '\"<field\\n\\ttype=\\\"types\\\"\\n\\tname=\\\"view_relationship\\\"\\n\\tlabel=\\\"can View\\\"\\n\\tdescription=\\\"Select the type\\/s that can view the relationships.\\\"\\n\\tclass=\\\"list_class\\\"\\n\\tmultiple=\\\"true\\\"\\n\\trequired=\\\"false\\\"\\n\\textends=\\\"list\\\"\\n\\tbutton=\\\"true\\\"\\n\\ttable=\\\"#__###component###_type\\\"\\n\\tcomponent=\\\"com_###component###\\\"\\n\\tview=\\\"type\\\"\\n\\tviews=\\\"types\\\"\\n\\tvalue_field=\\\"name\\\"\\n\\tkey_field=\\\"id\\\"\\n\\ttype_php_1=\\\"__.o0=base64=Oo.__Ly8gR2V0IHRoZSB1c2VyIG9iamVjdC4NCgkJJHVzZXIgPSBKRmFjdG9yeTo6Z2V0VXNlcigpOw0KCQkvLyBHZXQgdGhlIGRhdGFic2Ugb2JqZWN0Lg0KCQkkZGIgPSBKRmFjdG9yeTo6Z2V0REJPKCk7DQoJCSRxdWVyeSA9ICRkYi0+Z2V0UXVlcnkodHJ1ZSk7DQoJCSRxdWVyeS0+c2VsZWN0KCRkYi0+cXVvdGVOYW1lKGFycmF5KCdhLiMjI0lEIyMjJywnYS4jIyNURVhUIyMjJyksYXJyYXkoJyMjI0lEIyMjJywnIyMjQ09ERV9URVhUIyMjJykpKTsNCgkJJHF1ZXJ5LT5mcm9tKCRkYi0+cXVvdGVOYW1lKCcjIyNUQUJMRSMjIycsICdhJykpOw0KCQkkcXVlcnktPndoZXJlKCRkYi0+cXVvdGVOYW1lKCdhLnB1Ymxpc2hlZCcpIC4gJyA+PSAxJyk7DQoJCSRxdWVyeS0+b3JkZXIoJ2EuIyMjVEVYVCMjIyBBU0MnKTsNCgkJJGRiLT5zZXRRdWVyeSgoc3RyaW5nKSRxdWVyeSk7DQoJCSRpdGVtcyA9ICRkYi0+bG9hZE9iamVjdExpc3QoKTsNCgkJJG9wdGlvbnMgPSBhcnJheSgpOw0KCQlpZiAoJGl0ZW1zKQ0KCQl7DQoJCQlmb3JlYWNoKCRpdGVtcyBhcyAkaXRlbSkNCgkJCXsNCgkJCQkkb3B0aW9uc1tdID0gSkh0bWw6Ol8oJ3NlbGVjdC5vcHRpb24nLCAkaXRlbS0+IyMjSUQjIyMsICRpdGVtLT4jIyNDT0RFX1RFWFQjIyMpOw0KCQkJfQ0KCQl9DQoJCXJldHVybiAkb3B0aW9uczs=\\\"\\n\\/>\"', 1, '2018-10-26 15:31:54', '2018-10-26 15:30:19', 1, '', 384, '9fcf7e0e-a2d8-46de-8181-e8ba7ed9221e', '', '', '', '', ''),
(2428, '', '', '', '', '', '', '', '', 11, '', 'TEXT', '', '', '', 'Types (Multiple - Link)', 'NOT NULL', '', 6, '\"<field\\n\\ttype=\\\"types\\\"\\n\\tname=\\\"type\\\"\\n\\tlabel=\\\"can Link\\\"\\n\\tdescription=\\\"Select the type\\/s\\\"\\n\\tclass=\\\"list_class\\\"\\n\\tmultiple=\\\"true\\\"\\n\\trequired=\\\"false\\\"\\n\\textends=\\\"list\\\"\\n\\tbutton=\\\"true\\\"\\n\\ttable=\\\"#__###component###_type\\\"\\n\\tcomponent=\\\"com_###component###\\\"\\n\\tview=\\\"type\\\"\\n\\tviews=\\\"types\\\"\\n\\tvalue_field=\\\"name\\\"\\n\\tkey_field=\\\"id\\\"\\n\\tprime_php=\\\"1\\\"\\n\\ttype_php_1=\\\"__.o0=base64=Oo.__Ly8gR2V0IHRoZSB1c2VyIG9iamVjdC4NCgkJJHVzZXIgPSBKRmFjdG9yeTo6Z2V0VXNlcigpOw0KCQkvLyBHZXQgdGhlIGRhdGFic2Ugb2JqZWN0Lg0KCQkkZGIgPSBKRmFjdG9yeTo6Z2V0REJPKCk7DQoJCSRxdWVyeSA9ICRkYi0+Z2V0UXVlcnkodHJ1ZSk7DQoJCSRxdWVyeS0+c2VsZWN0KCRkYi0+cXVvdGVOYW1lKGFycmF5KCdhLiMjI0lEIyMjJywnYS4jIyNURVhUIyMjJyksYXJyYXkoJyMjI0lEIyMjJywnIyMjQ09ERV9URVhUIyMjJykpKTsNCgkJJHF1ZXJ5LT5mcm9tKCRkYi0+cXVvdGVOYW1lKCcjIyNUQUJMRSMjIycsICdhJykpOw0KCQkkcXVlcnktPndoZXJlKCRkYi0+cXVvdGVOYW1lKCdhLnB1Ymxpc2hlZCcpIC4gJyA+PSAxJyk7DQoJCSRxdWVyeS0+b3JkZXIoJ2EuIyMjVEVYVCMjIyBBU0MnKTsNCgkJJGRiLT5zZXRRdWVyeSgoc3RyaW5nKSRxdWVyeSk7DQoJCSRpdGVtcyA9ICRkYi0+bG9hZE9iamVjdExpc3QoKTsNCgkJJG9wdGlvbnMgPSBhcnJheSgpOw0KCQlpZiAoJGl0ZW1zKQ0KCQl7DQoJCQlmb3JlYWNoKCRpdGVtcyBhcyAkaXRlbSkNCgkJCXsNCgkJCQkkb3B0aW9uc1tdID0gSkh0bWw6Ol8oJ3NlbGVjdC5vcHRpb24nLCAkaXRlbS0+IyMjSUQjIyMsICRpdGVtLT4jIyNDT0RFX1RFWFQjIyMpOw0KCQkJfQ0KCQl9DQoJCXJldHVybiAkb3B0aW9uczs=\\\"\\n\\/>\"', 1, '2018-10-26 15:37:32', '2018-10-26 15:30:32', 1, '', 384, 'e981f421-299c-42e7-9a6b-9225c0920a24', '', '', '', '', ''),
(2429, '', '', '', '', '', '', '', '', 11, '', 'INT', '', '', '', 'Member (relationship)', 'NOT NULL', '', 6, '\"<field\\n\\ttype=\\\"memberrelationship\\\"\\n\\tname=\\\"member\\\"\\n\\tlabel=\\\"Member\\\"\\n\\tclass=\\\"list_class\\\"\\n\\tmultiple=\\\"false\\\"\\n\\tonchange=\\\"setMemberEmail(this);\\\"\\n\\textends=\\\"list\\\"\\n\\tprime_php=\\\"1\\\"\\n\\ttype_php_1=\\\"__.o0=base64=Oo.__W0NVU1RPTUNPREU9Z2V0UmVsYXRpb25zaGlwTWVtYmVycyttZW1iZXJd\\\"\\n\\/>\"', 1, '2018-11-01 17:09:22', '2019-02-27 07:08:37', 5, '', 384, '30c701e4-a3b5-446c-b5aa-5564f80be9fa', '', '', '', '', ''),
(2430, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Recipients Emails', 'NOT NULL', '', 35, '\"<field\\n\\ttype=\\\"subform\\\"\\n\\tname=\\\"email\\\"\\n\\tlabel=\\\"Recipients Emails\\\"\\n\\tlayout=\\\"joomla.form.field.subform.repeatable-table\\\"\\n\\tmultiple=\\\"true\\\"\\n\\tbuttons=\\\"add,remove,move\\\"\\n\\tfields=\\\"2429,150\\\"\\n\\ticon=\\\"list\\\"\\n\\tmax=\\\"20\\\"\\n\\tmin=\\\"1\\\"\\n\\/>\"', 1, '2018-11-01 17:13:29', '2019-03-14 21:32:34', 4, '', 901, '7b1c27b7-4cde-49bb-9816-013212210c7e', '', '', '', '', ''),
(2431, '', '', '', '', '', '', '', '', 255, '', 'TEXT', '', '', '', 'Components (all linked to JMM - multi)', 'NOT NULL', '', 6, '\"<field\\n\\ttype=\\\"allcomponents\\\"\\n\\tname=\\\"components\\\"\\n\\tlabel=\\\"Components\\\"\\n\\tdescription=\\\"Select the related components\\\"\\n\\tclass=\\\"list_class\\\"\\n\\tmultiple=\\\"true\\\"\\n\\trequired=\\\"true\\\"\\n\\textends=\\\"list\\\"\\n\\tprime_php=\\\"1\\\"\\n\\tdisplay=\\\"menu\\\"\\n\\ttype_php_1=\\\"__.o0=base64=Oo.__W0NVU1RPTUNPREU9ZmllbGRHZXRDb21wb25lbnRzTGlua2VkSkpNK251bGxd\\\"\\n\\/>\"', 1, '2018-11-13 22:22:52', '2018-12-08 03:11:01', 10, '', 902, '1a440677-6e3a-42c1-ae51-68c8e5cc17fe', '', '', '', '', ''),
(2432, '', '', '', '', '', '', '', '', 64, '', 'VARCHAR', '', '', '', 'Targeted Accounts', 'NOT NULL', 1, 11, '\"<field\\n\\ttype=\\\"list\\\"\\n\\tname=\\\"target_account\\\"\\n\\tlabel=\\\"Targeted Accounts\\\"\\n\\tdescription=\\\"What type of Accounts should we get.\\\"\\n\\trequired=\\\"true\\\"\\n\\tclass=\\\"list_class\\\"\\n\\tmultiple=\\\"true\\\"\\n\\toption=\\\"1|Main & Login,2|Main,3|Sub,4|Sub & Login\\\"\\n\\tdisplay=\\\"menu\\\"\\n\\/>\"', 1, '2018-11-27 00:42:56', '2018-08-17 07:38:13', 1, '', 868, '4a9cca3f-8361-4b56-8361-74987f91ebdb', '', '', '', '', ''),
(2433, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Target Member Types', 'NOT NULL', '', 6, '\"<field\\n\\ttype=\\\"targettypes\\\"\\n\\tname=\\\"target_type\\\"\\n\\tlabel=\\\"Target Member Types\\\"\\n\\tdescription=\\\"Select the types of members you would like to load.\\\"\\n\\tclass=\\\"list_class\\\"\\n\\tmultiple=\\\"true\\\"\\n\\trequired=\\\"true\\\"\\n\\textends=\\\"list\\\"\\n\\ttable=\\\"#__[[[core]]]_type\\\"\\n\\tcomponent=\\\"com_[[[core]]]\\\"\\n\\tview=\\\"type\\\"\\n\\tviews=\\\"types\\\"\\n\\tvalue_field=\\\"name\\\"\\n\\tkey_field=\\\"id\\\"\\n\\tdisplay=\\\"menu\\\"\\n\\ttype_php_1=\\\"__.o0=base64=Oo.__CQkvLyBsb2FkIHRoZSBkYiBvcGJqZWN0DQoJCSRkYiA9IEpGYWN0b3J5OjpnZXREQk8oKTsNCgkJLy8gc3RhcnQgcXVlcnkNCgkJJHF1ZXJ5ID0gJGRiLT5nZXRRdWVyeSh0cnVlKTsNCgkJJHF1ZXJ5LT5zZWxlY3QoJGRiLT5xdW90ZU5hbWUoYXJyYXkoJ2EuIyMjSUQjIyMnLCdhLiMjI1RFWFQjIyMnKSxhcnJheSgnIyMjSUQjIyMnLCcjIyNDT0RFX1RFWFQjIyMnKSkpOw0KCQkkcXVlcnktPmZyb20oJGRiLT5xdW90ZU5hbWUoJyMjI1RBQkxFIyMjJywgJ2EnKSk7DQoJCSRxdWVyeS0+d2hlcmUoJGRiLT5xdW90ZU5hbWUoJ2EucHVibGlzaGVkJykgLiAnID49IDEnKTsNCgkJJHF1ZXJ5LT5vcmRlcignYS4jIyNURVhUIyMjIEFTQycpOw0KCQkkZGItPnNldFF1ZXJ5KChzdHJpbmcpJHF1ZXJ5KTsNCgkJJGl0ZW1zID0gJGRiLT5sb2FkT2JqZWN0TGlzdCgpOw0KCQkkb3B0aW9ucyA9IGFycmF5KCk7DQoJCWlmICgkaXRlbXMpDQoJCXsNCgkJCWZvcmVhY2goJGl0ZW1zIGFzICRpdGVtKQ0KCQkJew0KCQkJCSRvcHRpb25zW10gPSBKSHRtbDo6Xygnc2VsZWN0Lm9wdGlvbicsICRpdGVtLT4jIyNJRCMjIywgJGl0ZW0tPiMjI0NPREVfVEVYVCMjIyk7DQoJCQl9DQoJCX0NCgkJcmV0dXJuICRvcHRpb25zOw==\\\"\\n\\/>\"', 1, '2018-11-27 00:44:55', '2019-02-14 22:35:48', 3, '', 384, '4613ddc0-ba5e-4fd9-a2d9-bb796344ecea', '', '', '', '', ''),
(2434, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Members Display Type', 'NOT NULL', '', 11, '\"<field\\n\\ttype=\\\"list\\\"\\n\\tname=\\\"members_display_type\\\"\\n\\tlabel=\\\"Members Display Type\\\"\\n\\tdescription=\\\"Set the display type for the members\\\"\\n\\tmultiple=\\\"false\\\"\\n\\trequired=\\\"true\\\"\\n\\toption=\\\"1|Panels,2|Table,3|List\\\"\\n\\tdefault=\\\"1\\\"\\n\\/>\"', 1, '2018-12-05 00:48:25', '2018-12-05 01:44:03', 2, '', 903, '3922dce1-0d45-4c26-b68b-4a4c9855c069', '', '', '', '', ''),
(2435, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Panels Template', 'NOT NULL', '', 25, '\"<field\\n\\ttype=\\\"textarea\\\"\\n\\tname=\\\"panels_template\\\"\\n\\tlabel=\\\"Panels Template\\\"\\n\\trows=\\\"10\\\"\\n\\tcols=\\\"5\\\"\\n\\tdefault=\\\"\\\"\\n\\tdescription=\\\"Set the HTML for the body (surrounding the panels) - to add items (all panels) use [load_items] placeholder\\\"\\n\\tclass=\\\"text_area span12\\\"\\n\\tfilter=\\\"RAW\\\"\\n\\thint=\\\"\\/\\/ html for the body surrounding the panels (items)\\r\\n<div>\\r\\n\\t[load_items]\\r\\n<\\/div>\\\"\\n\\tshowon=\\\"members_display_type:1\\\"\\n\\/>\"', 1, '2018-12-05 20:19:23', '2018-12-19 05:35:41', 16, '', 904, '80f1d8f8-c404-467b-88f2-dc0f93437474', '', '', '', '', ''),
(2436, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Panel Template', 'NOT NULL', '', 25, '\"<field\\n\\ttype=\\\"textarea\\\"\\n\\tname=\\\"panel_template\\\"\\n\\tlabel=\\\"Panel Template\\\"\\n\\trows=\\\"10\\\"\\n\\tcols=\\\"5\\\"\\n\\tdescription=\\\"Set the HTML for a single panel\\\"\\n\\tclass=\\\"text_area span12\\\"\\n\\tfilter=\\\"RAW\\\"\\n\\thint=\\\"\\/\\/ html for a single panel\\r\\n<div> [member_name] <\\/div>\\\"\\n\\tshowon=\\\"members_display_type:1\\\"\\n\\/>\"', 1, '2018-12-05 20:20:07', '2018-12-19 05:35:49', 11, '', 904, 'd8ec35fc-249b-4c49-8e58-7cb21184baa3', '', '', '', '', ''),
(2437, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Table Template', 'NOT NULL', '', 25, '\"<field\\n\\ttype=\\\"textarea\\\"\\n\\tname=\\\"table_template\\\"\\n\\tlabel=\\\"Table Template\\\"\\n\\trows=\\\"10\\\"\\n\\tcols=\\\"5\\\"\\n\\tdefault=\\\"\\\"\\n\\tdescription=\\\"Set the HTML for the table surrounding the rows - to add items (all rows) use [load_items] placeholder\\\"\\n\\tclass=\\\"text_area span12\\\"\\n\\tfilter=\\\"RAW\\\"\\n\\thint=\\\"\\/\\/ html for the table surrounding the rows (items)\\r\\n<table>\\r\\n\\t<tbody>\\r\\n\\t\\t[load_items]\\r\\n\\t<\\/tbody>\\r\\n<\\/table>\\\"\\n\\tshowon=\\\"members_display_type:2\\\"\\n\\/>\"', 1, '2018-12-05 20:22:49', '2018-12-19 05:34:54', 13, '', 904, '792ad8d5-2574-4fc1-80ea-f8fbc54b9794', '', '', '', '', ''),
(2438, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Table Row Template', 'NOT NULL', '', 25, '\"<field\\n\\ttype=\\\"textarea\\\"\\n\\tname=\\\"table_row_template\\\"\\n\\tlabel=\\\"Table Row Template\\\"\\n\\trows=\\\"10\\\"\\n\\tcols=\\\"5\\\"\\n\\tdefault=\\\"\\\"\\n\\tdescription=\\\"Set the HTML for a single row\\\"\\n\\tclass=\\\"text_area span12\\\"\\n\\tfilter=\\\"RAW\\\"\\n\\thint=\\\"\\/\\/ html for a single row\\r\\n<tr>\\r\\n<td>[member_name]<\\/td>\\r\\n<td>[member_email]<\\/td>\\r\\n<\\/tr>\\r\\n\\\"\\n\\tshowon=\\\"members_display_type:2\\\"\\n\\/>\"', 1, '2018-12-05 20:26:24', '2018-12-19 05:34:21', 9, '', 904, '44e0eaef-873d-4dba-8468-830fa8ac15f8', '', '', '', '', ''),
(2439, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'List Template', 'NOT NULL', '', 25, '\"<field\\n\\ttype=\\\"textarea\\\"\\n\\tname=\\\"list_template\\\"\\n\\tlabel=\\\"List Template\\\"\\n\\trows=\\\"10\\\"\\n\\tcols=\\\"5\\\"\\n\\tdefault=\\\"\\\"\\n\\tdescription=\\\"Set the HTML for the list surrounding the list items - to add items (all list items) use [load_items] placeholder\\\"\\n\\tclass=\\\"text_area span12\\\"\\n\\tfilter=\\\"RAW\\\"\\n\\thint=\\\"\\/\\/ html for the body surrounding the items\\r\\n<ul>\\r\\n\\t[load_items]\\r\\n<\\/ul>\\\"\\n\\tshowon=\\\"members_display_type:3\\\"\\n\\/>\"', 1, '2018-12-05 20:27:05', '2018-12-19 05:35:04', 12, '', 904, '16c05b9d-625e-465b-8f1b-8bd417169b15', '', '', '', '', ''),
(2440, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'List Item Template', 'NOT NULL', '', 25, '\"<field\\n\\ttype=\\\"textarea\\\"\\n\\tname=\\\"list_item_template\\\"\\n\\tlabel=\\\"List Item Template\\\"\\n\\trows=\\\"10\\\"\\n\\tcols=\\\"5\\\"\\n\\tdefault=\\\"\\\"\\n\\tdescription=\\\"Set the HTML for a single list item\\\"\\n\\tclass=\\\"text_area span12\\\"\\n\\tfilter=\\\"RAW\\\"\\n\\thint=\\\"\\/\\/ html for single list item\\r\\n<li> [member_name] <\\/li>\\\"\\n\\tshowon=\\\"members_display_type:3\\\"\\n\\/>\"', 1, '2018-12-05 20:27:53', '2018-12-19 05:35:12', 8, '', 904, '701b276d-7aab-479a-8ac3-c8bdb623d41b', '', '', '', '', ''),
(2441, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Main Template', 'NOT NULL', '', 25, '\"<field\\n\\ttype=\\\"textarea\\\"\\n\\tname=\\\"main_template\\\"\\n\\tlabel=\\\"Main Template\\\"\\n\\trows=\\\"10\\\"\\n\\tcols=\\\"5\\\"\\n\\tdefault=\\\"\\\"\\n\\tdescription=\\\"Set the HTML for the main template\\\"\\n\\tclass=\\\"text_area span12\\\"\\n\\tfilter=\\\"RAW\\\"\\n\\thint=\\\"html for the main template - items placeholder is [load_items]\\\"\\n\\/>\"', 1, '2018-12-08 01:42:04', '2018-12-19 05:35:27', 6, '', 904, '00dd4886-deea-40e2-a594-441d8d6109cb', '', '', '', '', ''),
(2442, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Item Template', 'NOT NULL', '', 25, '\"<field\\n\\ttype=\\\"textarea\\\"\\n\\tname=\\\"item_template\\\"\\n\\tlabel=\\\"Item Template\\\"\\n\\trows=\\\"10\\\"\\n\\tcols=\\\"5\\\"\\n\\tdescription=\\\"Set the HTML for each item\\\"\\n\\tclass=\\\"text_area span12\\\"\\n\\tfilter=\\\"RAW\\\"\\n\\thint=\\\"html for an item\\\"\\n\\/>\"', 1, '2018-12-08 01:45:49', '2018-12-19 05:35:35', 4, '', 904, '9c8d4709-21b4-405c-b1a7-7f283a27df51', '', '', '', '', ''),
(2443, '', '', '', '', '', '', '', '', 255, '', 'TEXT', '', '', '', 'Components (1to1 linked to JMM - multi)', 'NOT NULL', '', 6, '\"<field\\n\\ttype=\\\"onetoonecomponents\\\"\\n\\tname=\\\"components\\\"\\n\\tlabel=\\\"Components (one to one)\\\"\\n\\tdescription=\\\"Select the related components\\\"\\n\\tclass=\\\"list_class\\\"\\n\\tonchange=\\\"getOnlySelectedComponents();\\\"\\n\\tmultiple=\\\"true\\\"\\n\\trequired=\\\"false\\\"\\n\\textends=\\\"list\\\"\\n\\tprime_php=\\\"1\\\"\\n\\tdisplay=\\\"menu\\\"\\n\\ttype_php_1=\\\"__.o0=base64=Oo.__W0NVU1RPTUNPREU9ZmllbGRHZXRDb21wb25lbnRzTGlua2VkSkpNKzFd\\\"\\n\\/>\"', 1, '2018-12-08 03:08:30', '2018-12-14 04:26:16', 3, '', 902, '1b97b878-be58-457c-a5f6-7f3bf7524b9b', '', '', '', '', ''),
(2444, '', '', '', '', '', '', '', '', 255, '', 'TEXT', '', '', '', 'Components (1 to many linked to JMM)', 'NOT NULL', '', 6, '\"<field\\n\\ttype=\\\"onetomanycomponents\\\"\\n\\tname=\\\"component\\\"\\n\\tlabel=\\\"Component\\\"\\n\\tdescription=\\\"Select the related component\\\"\\n\\tclass=\\\"list_class one_to_many_94829\\\"\\n\\tmultiple=\\\"false\\\"\\n\\tonchange=\\\"getOnlySelectedComponents();\\\"\\n\\textends=\\\"list\\\"\\n\\tprime_php=\\\"1\\\"\\n\\ttype_php_1=\\\"__.o0=base64=Oo.__W0NVU1RPTUNPREU9ZmllbGRHZXRDb21wb25lbnRzTGlua2VkSkpNKzJd\\\"\\n\\/>\"', 1, '2018-12-08 03:10:25', '2018-12-14 06:14:58', 3, '', 902, '81ada4bf-56f7-442e-ab7c-06370434efa4', '', '', '', '', ''),
(2445, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Components (one to many)', 'NOT NULL', '', 35, '\"<field\\n\\ttype=\\\"subform\\\"\\n\\tname=\\\"many_components\\\"\\n\\tlabel=\\\"Components (one to many)\\\"\\n\\tlayout=\\\"joomla.form.field.subform.repeatable\\\"\\n\\tmultiple=\\\"true\\\"\\n\\tbuttons=\\\"add,remove,move\\\"\\n\\tfields=\\\"2444, 2450, 2448, 2441, 2442\\\"\\n\\tdescription=\\\"Select the components that has a one to many relationship with these members.\\\"\\n\\ticon=\\\"list\\\"\\n\\tmax=\\\"100\\\"\\n\\tdisplay=\\\"menu\\\"\\n\\/>\"', 1, '2018-12-08 03:16:58', '2019-11-19 20:53:34', 8, '', 905, 'f7dd083a-f0e1-4632-a450-8030a83543dc', '', '', '', '', ''),
(2446, '', '', '', '', '', '', '', '', 64, '', 'VARCHAR', 2, '', '', 'Placeholder Prefix (member)', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"placeholder_prefix\\\"\\n\\tlabel=\\\"Placeholder Prefix\\\"\\n\\tsize=\\\"50\\\"\\n\\tmaxlength=\\\"150\\\"\\n\\tdefault=\\\"member\\\"\\n\\tdescription=\\\"What would like to use as the prefix of the values when used in templates.\\\"\\n\\tclass=\\\"text_area\\\"\\n\\tfilter=\\\"WORD\\\"\\n\\tmessage=\\\"Error! Please add some placeholder prefix here.\\\"\\n\\thint=\\\"member\\\"\\n\\tautocomplete=\\\"on\\\"\\n\\/>\"', 1, '2018-12-09 22:51:57', '0000-00-00 00:00:00', 1, '', 873, '674ebd9c-0f73-4092-9ca6-4c99c45e6c05', '', '', '', '', ''),
(2447, '', '', '', '', '', '', '', '', '', '', 'INT', '', '', '', 'Qty Type', 'NOT NULL', '', 11, '\"<field\\n\\ttype=\\\"list\\\"\\n\\tname=\\\"qty_type\\\"\\n\\tlabel=\\\"Qty Type\\\"\\n\\tclass=\\\"list_class\\\"\\n\\tmultiple=\\\"false\\\"\\n\\tfilter=\\\"INT\\\"\\n\\trequired=\\\"true\\\"\\n\\toption=\\\"0|All,1|Last One,2|Last Nr\\\"\\n\\tdefault=\\\"0\\\"\\n\\tdisplay=\\\"menu\\\"\\n\\/>\"', 1, '2018-12-10 02:30:44', '0000-00-00 00:00:00', 1, '', 906, 'd7bb3780-d873-42f2-93a6-2bb8b1e0632b', '', '', '', '', ''),
(2448, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'Qty ', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"qty\\\"\\n\\tlabel=\\\"Qty\\\"\\n\\tdescription=\\\"0 is all\\\"\\n\\tsize=\\\"10\\\"\\n\\tmaxlength=\\\"50\\\"\\n\\tdefault=\\\"0\\\"\\n\\tclass=\\\"wmed wqty\\\"\\n\\tfilter=\\\"INT\\\"\\n\\thint=\\\"qty\\\"\\n\\tonchange=\\\"if(!jQuery(this).val().match(\\/^\\\\d+$\\/)){jQuery(this).val(\'\')};\\\"\\n\\tdisplay=\\\"menu\\\"\\n\\/>\"', 1, '2018-12-10 02:33:30', '2018-12-10 03:31:01', 5, '', 7, 'c42fa19c-c44d-4b15-992c-77bb8d4ced23', '', '', '', '', ''),
(2449, '', '', '', '', '', '', '', '', '', '', '', '', '', '', 'Core Member Placeholders', 'NOT NULL', '', 14, '\"<field\\n\\ttype=\\\"note\\\"\\n\\tname=\\\"note_core_member_placeholders\\\"\\n\\tlabel=\\\"Core Member Placeholders\\\"\\n\\tdescription=\\\"[CUSTOMCODE=getAnyPlaceholdersHTMLNote]\\\"\\n\\theading=\\\"h3\\\"\\n\\tdisplay=\\\"menu\\\"\\n\\/>\"', 1, '2018-12-14 04:15:21', '2018-12-15 21:26:32', 17, '', 742, '65fffd7d-9d76-41ff-83b7-f7a6f438e2a2', '', '', '', '', ''),
(2450, '', '', '', '', '', '', '', '', 64, '', 'VARCHAR', '', '', '', 'Unique Placeholder', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"placeholder\\\"\\n\\tlabel=\\\"Unique Placeholder\\\"\\n\\tsize=\\\"10\\\"\\n\\tmaxlength=\\\"50\\\"\\n\\tdescription=\\\"to use in main template \\\"\\n\\tclass=\\\"text_area\\\"\\n\\trequired=\\\"true\\\"\\n\\tfilter=\\\"WORD\\\"\\n\\thint=\\\"component_name_1\\\"\\n\\tautocomplete=\\\"off\\\"\\n\\/>\"', 1, '2018-12-15 22:43:02', '0000-00-00 00:00:00', 1, '', 907, 'd9e9184a-a7ef-4a9c-ac85-d710210f773d', '', '', '', '', ''),
(2451, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'Joint (Main)', 'NOT NULL', '', 6, '\"<field\\n\\ttype=\\\"joints\\\"\\n\\tname=\\\"joint\\\"\\n\\tlabel=\\\"Joint\\\"\\n\\tdescription=\\\"Select the joint\\\"\\n\\tclass=\\\"list_class\\\"\\n\\tmultiple=\\\"false\\\"\\n\\trequired=\\\"true\\\"\\n\\tonchange=\\\"setOrthopedicValues(this)\\\"\\n\\textends=\\\"list\\\"\\n\\tbutton=\\\"true\\\"\\n\\ttable=\\\"#__###component###_joint\\\"\\n\\tcomponent=\\\"com_###component###\\\"\\n\\tview=\\\"joint\\\"\\n\\tviews=\\\"joints\\\"\\n\\tvalue_field=\\\"name\\\"\\n\\tkey_field=\\\"id\\\"\\n\\tprime_php=\\\"1\\\"\\n\\ttype_php_1=\\\"__.o0=base64=Oo.__Ly8gR2V0IHRoZSB1c2VyIG9iamVjdC4NCgkJJHVzZXIgPSBKRmFjdG9yeTo6Z2V0VXNlcigpOw0KCQkvLyBHZXQgdGhlIGRhdGFic2Ugb2JqZWN0Lg0KCQkkZGIgPSBKRmFjdG9yeTo6Z2V0REJPKCk7DQoJCSRxdWVyeSA9ICRkYi0+Z2V0UXVlcnkodHJ1ZSk7DQoJCSRxdWVyeS0+c2VsZWN0KCRkYi0+cXVvdGVOYW1lKGFycmF5KCdhLiMjI0lEIyMjJywnYS4jIyNURVhUIyMjJyksYXJyYXkoJyMjI0lEIyMjJywnIyMjQ09ERV9URVhUIyMjJykpKTsNCgkJJHF1ZXJ5LT5mcm9tKCRkYi0+cXVvdGVOYW1lKCcjIyNUQUJMRSMjIycsICdhJykpOw0KCQkkcXVlcnktPndoZXJlKCRkYi0+cXVvdGVOYW1lKCdhLnB1Ymxpc2hlZCcpIC4gJyA+PSAxJyk7DQoJCSRxdWVyeS0+d2hlcmUoJGRiLT5xdW90ZU5hbWUoJ2EudHlwZScpIC4gJyA9IDEnKTsNCgkJJHF1ZXJ5LT5vcmRlcignYS4jIyNURVhUIyMjIEFTQycpOw0KCQkvLyBJbXBsZW1lbnQgVmlldyBMZXZlbCBBY2Nlc3MgKGlmIHNldCBpbiB0YWJsZSkNCgkJaWYgKCEkdXNlci0+YXV0aG9yaXNlKCdjb3JlLm9wdGlvbnMnLCAnW1tbY29tX2NvbXBvbmVudF1dXScpKQ0KCQl7DQoJCQkkY29sdW1ucyA9ICRkYi0+Z2V0VGFibGVDb2x1bW5zKCcjIyNUQUJMRSMjIycpOw0KCQkJaWYoaXNzZXQoJGNvbHVtbnNbJ2FjY2VzcyddKSkNCgkJCXsNCgkJCQkkZ3JvdXBzID0gaW1wbG9kZSgnLCcsICR1c2VyLT5nZXRBdXRob3Jpc2VkVmlld0xldmVscygpKTsNCgkJCQkkcXVlcnktPndoZXJlKCdhLmFjY2VzcyBJTiAoJyAuICRncm91cHMgLiAnKScpOw0KCQkJfQ0KCQl9DQoJCSRkYi0+c2V0UXVlcnkoKHN0cmluZykkcXVlcnkpOw0KCQkkaXRlbXMgPSAkZGItPmxvYWRPYmplY3RMaXN0KCk7DQoJCSRvcHRpb25zID0gYXJyYXkoKTsNCgkJaWYgKCRpdGVtcykNCgkJew0KCQkJJG9wdGlvbnNbXSA9IEpIdG1sOjpfKCdzZWxlY3Qub3B0aW9uJywgJycsICdTZWxlY3QgYW4gb3B0aW9uJyk7DQoJCQlmb3JlYWNoKCRpdGVtcyBhcyAkaXRlbSkNCgkJCXsNCgkJCQkkb3B0aW9uc1tdID0gSkh0bWw6Ol8oJ3NlbGVjdC5vcHRpb24nLCAkaXRlbS0+IyMjSUQjIyMsICRpdGVtLT4jIyNDT0RFX1RFWFQjIyMpOw0KCQkJfQ0KCQl9DQoJCXJldHVybiAkb3B0aW9uczs=\\\"\\n\\/>\"', 1, '2018-12-17 15:15:44', '2019-04-10 22:05:32', 7, '', 384, 'a06009ad-c3c9-4027-ac0f-8f29d364fd26', '', '', '', '', ''),
(2452, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'Joint (Sub)', 'NOT NULL', '', 6, '\"<field\\n\\ttype=\\\"subjoints\\\"\\n\\tname=\\\"subjoint\\\"\\n\\tlabel=\\\"Sub Joint\\\"\\n\\tdescription=\\\"Select the sub joint\\\"\\n\\tclass=\\\"list_class\\\"\\n\\tmultiple=\\\"false\\\"\\n\\trequired=\\\"false\\\"\\n\\tonchange=\\\"setOrthopedicValues(this)\\\"\\n\\textends=\\\"list\\\"\\n\\tbutton=\\\"true\\\"\\n\\ttable=\\\"#__###component###_joint\\\"\\n\\tcomponent=\\\"com_###component###\\\"\\n\\tview=\\\"joint\\\"\\n\\tviews=\\\"joints\\\"\\n\\tvalue_field=\\\"name\\\"\\n\\tkey_field=\\\"id\\\"\\n\\tprime_php=\\\"1\\\"\\n\\ttype_php_1=\\\"__.o0=base64=Oo.__Ly8gR2V0IHRoZSB1c2VyIG9iamVjdC4NCgkJJHVzZXIgPSBKRmFjdG9yeTo6Z2V0VXNlcigpOw0KCQkvLyBHZXQgdGhlIGRhdGFic2Ugb2JqZWN0Lg0KCQkkZGIgPSBKRmFjdG9yeTo6Z2V0REJPKCk7DQoJCSRxdWVyeSA9ICRkYi0+Z2V0UXVlcnkodHJ1ZSk7DQoJCSRxdWVyeS0+c2VsZWN0KCRkYi0+cXVvdGVOYW1lKGFycmF5KCdhLiMjI0lEIyMjJywnYS4jIyNURVhUIyMjJyksYXJyYXkoJyMjI0lEIyMjJywnIyMjQ09ERV9URVhUIyMjJykpKTsNCgkJJHF1ZXJ5LT5mcm9tKCRkYi0+cXVvdGVOYW1lKCcjIyNUQUJMRSMjIycsICdhJykpOw0KCQkkcXVlcnktPndoZXJlKCRkYi0+cXVvdGVOYW1lKCdhLnB1Ymxpc2hlZCcpIC4gJyA+PSAxJyk7DQoJCSRxdWVyeS0+d2hlcmUoJGRiLT5xdW90ZU5hbWUoJ2EudHlwZScpIC4gJyA9IDInKTsNCgkJJHF1ZXJ5LT5vcmRlcignYS4jIyNURVhUIyMjIEFTQycpOw0KCQkvLyBJbXBsZW1lbnQgVmlldyBMZXZlbCBBY2Nlc3MgKGlmIHNldCBpbiB0YWJsZSkNCgkJaWYgKCEkdXNlci0+YXV0aG9yaXNlKCdjb3JlLm9wdGlvbnMnLCAnW1tbY29tX2NvbXBvbmVudF1dXScpKQ0KCQl7DQoJCQkkY29sdW1ucyA9ICRkYi0+Z2V0VGFibGVDb2x1bW5zKCcjIyNUQUJMRSMjIycpOw0KCQkJaWYoaXNzZXQoJGNvbHVtbnNbJ2FjY2VzcyddKSkNCgkJCXsNCgkJCQkkZ3JvdXBzID0gaW1wbG9kZSgnLCcsICR1c2VyLT5nZXRBdXRob3Jpc2VkVmlld0xldmVscygpKTsNCgkJCQkkcXVlcnktPndoZXJlKCdhLmFjY2VzcyBJTiAoJyAuICRncm91cHMgLiAnKScpOw0KCQkJfQ0KCQl9DQoJCSRkYi0+c2V0UXVlcnkoKHN0cmluZykkcXVlcnkpOw0KCQkkaXRlbXMgPSAkZGItPmxvYWRPYmplY3RMaXN0KCk7DQoJCSRvcHRpb25zID0gYXJyYXkoKTsNCgkJaWYgKCRpdGVtcykNCgkJew0KCQkJJG9wdGlvbnNbXSA9IEpIdG1sOjpfKCdzZWxlY3Qub3B0aW9uJywgJycsICdTZWxlY3QgYW4gb3B0aW9uJyk7DQoJCQlmb3JlYWNoKCRpdGVtcyBhcyAkaXRlbSkNCgkJCXsNCgkJCQkkb3B0aW9uc1tdID0gSkh0bWw6Ol8oJ3NlbGVjdC5vcHRpb24nLCAkaXRlbS0+IyMjSUQjIyMsICRpdGVtLT4jIyNDT0RFX1RFWFQjIyMpOw0KCQkJfQ0KCQl9DQoJCXJldHVybiAkb3B0aW9uczs=\\\"\\n\\/>\"', 1, '2018-12-17 15:18:13', '2019-04-10 22:05:41', 6, '', 384, '56c12e69-381b-4f63-a28e-ca5365d40bb2', '', '', '', '', ''),
(2453, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'Test', 'NOT NULL', '', 6, '\"<field\\n\\ttype=\\\"tests\\\"\\n\\tname=\\\"test\\\"\\n\\tlabel=\\\"Test\\\"\\n\\tdescription=\\\"Select the test name\\\"\\n\\tclass=\\\"list_class\\\"\\n\\tmultiple=\\\"false\\\"\\n\\trequired=\\\"false\\\"\\n\\tonchange=\\\"setOrthopedicValues(this)\\\"\\n\\textends=\\\"list\\\"\\n\\tbutton=\\\"true\\\"\\n\\ttable=\\\"#__###component###_test\\\"\\n\\tcomponent=\\\"com_###component###\\\"\\n\\tview=\\\"test\\\"\\n\\tviews=\\\"tests\\\"\\n\\tvalue_field=\\\"name\\\"\\n\\tkey_field=\\\"id\\\"\\n\\tprime_php=\\\"1\\\"\\n\\ttype_php_1=\\\"__.o0=base64=Oo.__Ly8gR2V0IHRoZSB1c2VyIG9iamVjdC4NCgkJJHVzZXIgPSBKRmFjdG9yeTo6Z2V0VXNlcigpOw0KCQkvLyBHZXQgdGhlIGRhdGFic2Ugb2JqZWN0Lg0KCQkkZGIgPSBKRmFjdG9yeTo6Z2V0REJPKCk7DQoJCSRxdWVyeSA9ICRkYi0+Z2V0UXVlcnkodHJ1ZSk7DQoJCSRxdWVyeS0+c2VsZWN0KCRkYi0+cXVvdGVOYW1lKGFycmF5KCdhLiMjI0lEIyMjJywnYS4jIyNURVhUIyMjJyksYXJyYXkoJyMjI0lEIyMjJywnIyMjQ09ERV9URVhUIyMjJykpKTsNCgkJJHF1ZXJ5LT5mcm9tKCRkYi0+cXVvdGVOYW1lKCcjIyNUQUJMRSMjIycsICdhJykpOw0KCQkkcXVlcnktPndoZXJlKCRkYi0+cXVvdGVOYW1lKCdhLnB1Ymxpc2hlZCcpIC4gJyA+PSAxJyk7DQoJCSRxdWVyeS0+b3JkZXIoJ2EuIyMjVEVYVCMjIyBBU0MnKTsNCgkJLy8gSW1wbGVtZW50IFZpZXcgTGV2ZWwgQWNjZXNzIChpZiBzZXQgaW4gdGFibGUpDQoJCWlmICghJHVzZXItPmF1dGhvcmlzZSgnY29yZS5vcHRpb25zJywgJ1tbW2NvbV9jb21wb25lbnRdXV0nKSkNCgkJew0KCQkJJGNvbHVtbnMgPSAkZGItPmdldFRhYmxlQ29sdW1ucygnIyMjVEFCTEUjIyMnKTsNCgkJCWlmKGlzc2V0KCRjb2x1bW5zWydhY2Nlc3MnXSkpDQoJCQl7DQoJCQkJJGdyb3VwcyA9IGltcGxvZGUoJywnLCAkdXNlci0+Z2V0QXV0aG9yaXNlZFZpZXdMZXZlbHMoKSk7DQoJCQkJJHF1ZXJ5LT53aGVyZSgnYS5hY2Nlc3MgSU4gKCcgLiAkZ3JvdXBzIC4gJyknKTsNCgkJCX0NCgkJfQ0KCQkkZGItPnNldFF1ZXJ5KChzdHJpbmcpJHF1ZXJ5KTsNCgkJJGl0ZW1zID0gJGRiLT5sb2FkT2JqZWN0TGlzdCgpOw0KCQkkb3B0aW9ucyA9IGFycmF5KCk7DQoJCWlmICgkaXRlbXMpDQoJCXsNCgkJCSRvcHRpb25zW10gPSBKSHRtbDo6Xygnc2VsZWN0Lm9wdGlvbicsICcnLCAnU2VsZWN0IGFuIG9wdGlvbicpOw0KCQkJZm9yZWFjaCgkaXRlbXMgYXMgJGl0ZW0pDQoJCQl7DQoJCQkJJG9wdGlvbnNbXSA9IEpIdG1sOjpfKCdzZWxlY3Qub3B0aW9uJywgJGl0ZW0tPiMjI0lEIyMjLCAkaXRlbS0+IyMjQ09ERV9URVhUIyMjKTsNCgkJCX0NCgkJfQ0KCQlyZXR1cm4gJG9wdGlvbnM7\\\"\\n\\/>\"', 1, '2018-12-17 15:19:51', '2019-01-21 16:37:14', 8, '', 384, '8197b453-de14-4f1a-b7b8-f205160b47fc', '', '', '', '', ''),
(2454, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'Position', 'NOT NULL', '', 6, '\"<field\\n\\ttype=\\\"positions\\\"\\n\\tname=\\\"position\\\"\\n\\tlabel=\\\"Position\\\"\\n\\tdescription=\\\"Select the position\\\"\\n\\tclass=\\\"list_class\\\"\\n\\tmultiple=\\\"false\\\"\\n\\trequired=\\\"false\\\"\\n\\tonchange=\\\"setOrthopedicValues(this)\\\"\\n\\textends=\\\"list\\\"\\n\\tbutton=\\\"true\\\"\\n\\ttable=\\\"#__###component###_position\\\"\\n\\tcomponent=\\\"com_###component###\\\"\\n\\tview=\\\"position\\\"\\n\\tviews=\\\"positions\\\"\\n\\tvalue_field=\\\"name\\\"\\n\\tkey_field=\\\"id\\\"\\n\\tprime_php=\\\"1\\\"\\n\\ttype_php_1=\\\"__.o0=base64=Oo.__Ly8gR2V0IHRoZSB1c2VyIG9iamVjdC4NCgkJJHVzZXIgPSBKRmFjdG9yeTo6Z2V0VXNlcigpOw0KCQkvLyBHZXQgdGhlIGRhdGFic2Ugb2JqZWN0Lg0KCQkkZGIgPSBKRmFjdG9yeTo6Z2V0REJPKCk7DQoJCSRxdWVyeSA9ICRkYi0+Z2V0UXVlcnkodHJ1ZSk7DQoJCSRxdWVyeS0+c2VsZWN0KCRkYi0+cXVvdGVOYW1lKGFycmF5KCdhLiMjI0lEIyMjJywnYS4jIyNURVhUIyMjJyksYXJyYXkoJyMjI0lEIyMjJywnIyMjQ09ERV9URVhUIyMjJykpKTsNCgkJJHF1ZXJ5LT5mcm9tKCRkYi0+cXVvdGVOYW1lKCcjIyNUQUJMRSMjIycsICdhJykpOw0KCQkkcXVlcnktPndoZXJlKCRkYi0+cXVvdGVOYW1lKCdhLnB1Ymxpc2hlZCcpIC4gJyA+PSAxJyk7DQoJCSRxdWVyeS0+b3JkZXIoJ2EuIyMjVEVYVCMjIyBBU0MnKTsNCgkJLy8gSW1wbGVtZW50IFZpZXcgTGV2ZWwgQWNjZXNzIChpZiBzZXQgaW4gdGFibGUpDQoJCWlmICghJHVzZXItPmF1dGhvcmlzZSgnY29yZS5vcHRpb25zJywgJ1tbW2NvbV9jb21wb25lbnRdXV0nKSkNCgkJew0KCQkJJGNvbHVtbnMgPSAkZGItPmdldFRhYmxlQ29sdW1ucygnIyMjVEFCTEUjIyMnKTsNCgkJCWlmKGlzc2V0KCRjb2x1bW5zWydhY2Nlc3MnXSkpDQoJCQl7DQoJCQkJJGdyb3VwcyA9IGltcGxvZGUoJywnLCAkdXNlci0+Z2V0QXV0aG9yaXNlZFZpZXdMZXZlbHMoKSk7DQoJCQkJJHF1ZXJ5LT53aGVyZSgnYS5hY2Nlc3MgSU4gKCcgLiAkZ3JvdXBzIC4gJyknKTsNCgkJCX0NCgkJfQ0KCQkkZGItPnNldFF1ZXJ5KChzdHJpbmcpJHF1ZXJ5KTsNCgkJJGl0ZW1zID0gJGRiLT5sb2FkT2JqZWN0TGlzdCgpOw0KCQkkb3B0aW9ucyA9IGFycmF5KCk7DQoJCWlmICgkaXRlbXMpDQoJCXsNCgkJCSRvcHRpb25zW10gPSBKSHRtbDo6Xygnc2VsZWN0Lm9wdGlvbicsICcnLCAnU2VsZWN0IGFuIG9wdGlvbicpOw0KCQkJZm9yZWFjaCgkaXRlbXMgYXMgJGl0ZW0pDQoJCQl7DQoJCQkJJG9wdGlvbnNbXSA9IEpIdG1sOjpfKCdzZWxlY3Qub3B0aW9uJywgJGl0ZW0tPiMjI0lEIyMjLCAkaXRlbS0+IyMjQ09ERV9URVhUIyMjKTsNCgkJCX0NCgkJfQ0KCQlyZXR1cm4gJG9wdGlvbnM7\\\"\\n\\/>\"', 1, '2018-12-17 15:23:17', '2019-04-10 22:06:41', 7, '', 384, '185b39b5-d3bb-4a12-a80c-16b158cb597a', '', '', '', '', ''),
(2455, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'Side', 'NOT NULL', '', 6, '\"<field\\n\\ttype=\\\"sides\\\"\\n\\tname=\\\"side\\\"\\n\\tlabel=\\\"Side\\\"\\n\\tdescription=\\\"Select the side\\\"\\n\\tclass=\\\"list_class\\\"\\n\\tmultiple=\\\"false\\\"\\n\\trequired=\\\"false\\\"\\n\\tonchange=\\\"setOrthopedicValues(this)\\\"\\n\\textends=\\\"list\\\"\\n\\tbutton=\\\"true\\\"\\n\\ttable=\\\"#__###component###_side\\\"\\n\\tcomponent=\\\"com_###component###\\\"\\n\\tview=\\\"side\\\"\\n\\tviews=\\\"sides\\\"\\n\\tvalue_field=\\\"name\\\"\\n\\tkey_field=\\\"id\\\"\\n\\tprime_php=\\\"1\\\"\\n\\ttype_php_1=\\\"__.o0=base64=Oo.__Ly8gR2V0IHRoZSB1c2VyIG9iamVjdC4NCgkJJHVzZXIgPSBKRmFjdG9yeTo6Z2V0VXNlcigpOw0KCQkvLyBHZXQgdGhlIGRhdGFic2Ugb2JqZWN0Lg0KCQkkZGIgPSBKRmFjdG9yeTo6Z2V0REJPKCk7DQoJCSRxdWVyeSA9ICRkYi0+Z2V0UXVlcnkodHJ1ZSk7DQoJCSRxdWVyeS0+c2VsZWN0KCRkYi0+cXVvdGVOYW1lKGFycmF5KCdhLiMjI0lEIyMjJywnYS4jIyNURVhUIyMjJyksYXJyYXkoJyMjI0lEIyMjJywnIyMjQ09ERV9URVhUIyMjJykpKTsNCgkJJHF1ZXJ5LT5mcm9tKCRkYi0+cXVvdGVOYW1lKCcjIyNUQUJMRSMjIycsICdhJykpOw0KCQkkcXVlcnktPndoZXJlKCRkYi0+cXVvdGVOYW1lKCdhLnB1Ymxpc2hlZCcpIC4gJyA+PSAxJyk7DQoJCSRxdWVyeS0+b3JkZXIoJ2EuIyMjVEVYVCMjIyBBU0MnKTsNCgkJLy8gSW1wbGVtZW50IFZpZXcgTGV2ZWwgQWNjZXNzIChpZiBzZXQgaW4gdGFibGUpDQoJCWlmICghJHVzZXItPmF1dGhvcmlzZSgnY29yZS5vcHRpb25zJywgJ1tbW2NvbV9jb21wb25lbnRdXV0nKSkNCgkJew0KCQkJJGNvbHVtbnMgPSAkZGItPmdldFRhYmxlQ29sdW1ucygnIyMjVEFCTEUjIyMnKTsNCgkJCWlmKGlzc2V0KCRjb2x1bW5zWydhY2Nlc3MnXSkpDQoJCQl7DQoJCQkJJGdyb3VwcyA9IGltcGxvZGUoJywnLCAkdXNlci0+Z2V0QXV0aG9yaXNlZFZpZXdMZXZlbHMoKSk7DQoJCQkJJHF1ZXJ5LT53aGVyZSgnYS5hY2Nlc3MgSU4gKCcgLiAkZ3JvdXBzIC4gJyknKTsNCgkJCX0NCgkJfQ0KCQkkZGItPnNldFF1ZXJ5KChzdHJpbmcpJHF1ZXJ5KTsNCgkJJGl0ZW1zID0gJGRiLT5sb2FkT2JqZWN0TGlzdCgpOw0KCQkkb3B0aW9ucyA9IGFycmF5KCk7DQoJCWlmICgkaXRlbXMpDQoJCXsNCgkJCSRvcHRpb25zW10gPSBKSHRtbDo6Xygnc2VsZWN0Lm9wdGlvbicsICcnLCAnU2VsZWN0IGFuIG9wdGlvbicpOw0KCQkJZm9yZWFjaCgkaXRlbXMgYXMgJGl0ZW0pDQoJCQl7DQoJCQkJJG9wdGlvbnNbXSA9IEpIdG1sOjpfKCdzZWxlY3Qub3B0aW9uJywgJGl0ZW0tPiMjI0lEIyMjLCAkaXRlbS0+IyMjQ09ERV9URVhUIyMjKTsNCgkJCX0NCgkJfQ0KCQlyZXR1cm4gJG9wdGlvbnM7\\\"\\n\\/>\"', 1, '2018-12-17 15:24:19', '2019-04-10 22:06:54', 7, '', 384, '565230c3-1d12-4dc7-82ec-08e8e54a2f3e', '', '', '', '', ''),
(2456, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'Result', 'NOT NULL', '', 6, '\"<field\\n\\ttype=\\\"results\\\"\\n\\tname=\\\"result\\\"\\n\\tlabel=\\\"Result\\\"\\n\\tdescription=\\\"Select the result\\\"\\n\\tclass=\\\"list_class\\\"\\n\\tmultiple=\\\"false\\\"\\n\\trequired=\\\"false\\\"\\n\\tonchange=\\\"setOrthopedicValues(this)\\\"\\n\\textends=\\\"list\\\"\\n\\tbutton=\\\"true\\\"\\n\\ttable=\\\"#__###component###_result\\\"\\n\\tcomponent=\\\"com_###component###\\\"\\n\\tview=\\\"result\\\"\\n\\tviews=\\\"results\\\"\\n\\tvalue_field=\\\"name\\\"\\n\\tkey_field=\\\"id\\\"\\n\\tprime_php=\\\"1\\\"\\n\\ttype_php_1=\\\"__.o0=base64=Oo.__Ly8gR2V0IHRoZSB1c2VyIG9iamVjdC4NCgkJJHVzZXIgPSBKRmFjdG9yeTo6Z2V0VXNlcigpOw0KCQkvLyBHZXQgdGhlIGRhdGFic2Ugb2JqZWN0Lg0KCQkkZGIgPSBKRmFjdG9yeTo6Z2V0REJPKCk7DQoJCSRxdWVyeSA9ICRkYi0+Z2V0UXVlcnkodHJ1ZSk7DQoJCSRxdWVyeS0+c2VsZWN0KCRkYi0+cXVvdGVOYW1lKGFycmF5KCdhLiMjI0lEIyMjJywnYS4jIyNURVhUIyMjJyksYXJyYXkoJyMjI0lEIyMjJywnIyMjQ09ERV9URVhUIyMjJykpKTsNCgkJJHF1ZXJ5LT5mcm9tKCRkYi0+cXVvdGVOYW1lKCcjIyNUQUJMRSMjIycsICdhJykpOw0KCQkkcXVlcnktPndoZXJlKCRkYi0+cXVvdGVOYW1lKCdhLnB1Ymxpc2hlZCcpIC4gJyA+PSAxJyk7DQoJCSRxdWVyeS0+b3JkZXIoJ2EuIyMjVEVYVCMjIyBBU0MnKTsNCgkJLy8gSW1wbGVtZW50IFZpZXcgTGV2ZWwgQWNjZXNzIChpZiBzZXQgaW4gdGFibGUpDQoJCWlmICghJHVzZXItPmF1dGhvcmlzZSgnY29yZS5vcHRpb25zJywgJ1tbW2NvbV9jb21wb25lbnRdXV0nKSkNCgkJew0KCQkJJGNvbHVtbnMgPSAkZGItPmdldFRhYmxlQ29sdW1ucygnIyMjVEFCTEUjIyMnKTsNCgkJCWlmKGlzc2V0KCRjb2x1bW5zWydhY2Nlc3MnXSkpDQoJCQl7DQoJCQkJJGdyb3VwcyA9IGltcGxvZGUoJywnLCAkdXNlci0+Z2V0QXV0aG9yaXNlZFZpZXdMZXZlbHMoKSk7DQoJCQkJJHF1ZXJ5LT53aGVyZSgnYS5hY2Nlc3MgSU4gKCcgLiAkZ3JvdXBzIC4gJyknKTsNCgkJCX0NCgkJfQ0KCQkkZGItPnNldFF1ZXJ5KChzdHJpbmcpJHF1ZXJ5KTsNCgkJJGl0ZW1zID0gJGRiLT5sb2FkT2JqZWN0TGlzdCgpOw0KCQkkb3B0aW9ucyA9IGFycmF5KCk7DQoJCWlmICgkaXRlbXMpDQoJCXsNCgkJCSRvcHRpb25zW10gPSBKSHRtbDo6Xygnc2VsZWN0Lm9wdGlvbicsICcnLCAnU2VsZWN0IGFuIG9wdGlvbicpOw0KCQkJZm9yZWFjaCgkaXRlbXMgYXMgJGl0ZW0pDQoJCQl7DQoJCQkJJG9wdGlvbnNbXSA9IEpIdG1sOjpfKCdzZWxlY3Qub3B0aW9uJywgJGl0ZW0tPiMjI0lEIyMjLCAkaXRlbS0+IyMjQ09ERV9URVhUIyMjKTsNCgkJCX0NCgkJfQ0KCQlyZXR1cm4gJG9wdGlvbnM7\\\"\\n\\/>\"', 1, '2018-12-17 15:26:06', '2019-04-10 22:07:14', 8, '', 384, '747e9148-cebf-4e3b-a6ac-a4815f55c623', '', '', '', '', ''),
(2457, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'Type (joint)', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tonchange=\\\"setOrthopedicValues(this)\\\"\\n\\tname=\\\"type\\\"\\n\\tlabel=\\\"Type\\\"\\n\\tdescription=\\\"select the type of join\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"1|Main,2|Sub\\\"\\n\\tdefault=\\\"1\\\"\\n\\trequired=\\\"true\\\"\\n\\tvalidate=\\\"number\\\"\\n\\/>\"', 1, '2018-12-17 15:59:27', '2019-01-21 16:33:53', 2, '', 908, '1f449bef-970d-4aaa-a6d5-df5963dd35b6', '', '', '', '', ''),
(2458, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Possible outcome', 'NOT NULL', '', 25, '\"<field\\n\\ttype=\\\"textarea\\\"\\n\\tname=\\\"outcome\\\"\\n\\tlabel=\\\"Possible\\\"\\n\\trows=\\\"10\\\"\\n\\tcols=\\\"5\\\"\\n\\tdescription=\\\"outcome\\\"\\n\\tclass=\\\"text_area\\\"\\n\\tfilter=\\\"STRING\\\"\\n\\thint=\\\"Possible outcome\\\"\\n\\trequired=\\\"false\\\"\\n\\/>\"', 1, '2018-12-17 19:00:57', '2020-01-30 15:06:37', 2, '', 909, '04697207-087b-4d1e-8978-412c682b325f', '', '', '', '', ''),
(2459, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Comment', 'NOT NULL', '', 25, '\"<field\\n\\ttype=\\\"textarea\\\"\\n\\tname=\\\"comment\\\"\\n\\tlabel=\\\"Comment\\\"\\n\\trows=\\\"10\\\"\\n\\tcols=\\\"5\\\"\\n\\tdescription=\\\"\\\"\\n\\tclass=\\\"text_area\\\"\\n\\tfilter=\\\"STRING\\\"\\n\\thint=\\\"Comment\\\"\\n\\/>\"', 1, '2018-12-17 19:02:08', '2019-06-26 10:36:39', 2, '', 909, 'f0bbb0d8-d976-4f41-9b23-80656205f593', '', '', '', '', ''),
(2460, 1, '', '', '', 'LnNtYWxsIHsNCgl3aWR0aDogODBweDsNCn0NCi5tZWRpdW0gew0KCXdpZHRoOiAxMjBweDsNCn0=', '', '', '', '', '', 'TEXT', '', '', '', 'Orthopedic (tests)', 'NOT NULL', '', 35, '\"<field\\n\\ttype=\\\"subform\\\"\\n\\tname=\\\"tests\\\"\\n\\tlabel=\\\"Orthopedic\\\"\\n\\tlayout=\\\"joomla.form.field.subform.repeatable\\\"\\n\\tmultiple=\\\"true\\\"\\n\\tbuttons=\\\"add,remove,move\\\"\\n\\tfields=\\\"2451, 2475, 2452, 2453, 2454, 2455, 2456, 2458, 2511, 2459\\\"\\n\\tdescription=\\\"Log the orthopedic test\\\"\\n\\ticon=\\\"list\\\"\\n\\tmax=\\\"20\\\"\\n\\tmin=\\\"1\\\"\\n\\/>\"', 1, '2018-12-17 19:05:06', '2019-04-30 21:29:30', 14, '', 910, 'a721a5e8-7527-4351-bf0f-ab86febe6609', '', '', '', '', ''),
(2461, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'Development Partner (member-external)', 'NOT NULL', '', 6, '\"<field\\n\\ttype=\\\"member\\\"\\n\\tname=\\\"member\\\"\\n\\tlabel=\\\"Development Partner\\\"\\n\\tclass=\\\"list_class\\\"\\n\\tmultiple=\\\"false\\\"\\n\\trequired=\\\"true\\\"\\n\\textends=\\\"list\\\"\\n\\ttable=\\\"#__[[[core]]]_member\\\"\\n\\tcomponent=\\\"com_[[[core]]]\\\"\\n\\tview=\\\"member\\\"\\n\\tviews=\\\"members\\\"\\n\\tvalue_field=\\\"token\\\"\\n\\tkey_field=\\\"id\\\"\\n\\tprime_php=\\\"1\\\"\\n\\ttype_php_1=\\\"__.o0=base64=Oo.__W0NVU1RPTUNPREU9Z2V0RXh0ZXJuYWxNZW1iZXJzK21lbWJlcixNZW1iZXJd\\\"\\n\\/>\"', 1, '2018-12-21 17:51:00', '2019-02-14 22:28:33', 3, '', 384, 'a2b54a87-731f-4bf9-90ea-281f621648db', '', '', '', '', ''),
(2462, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'Sector', 'NOT NULL', '', 6, '\"<field\\n\\ttype=\\\"sectors\\\"\\n\\tname=\\\"sector\\\"\\n\\tlabel=\\\"Sector\\\"\\n\\tdescription=\\\"Select the sector the project falls under\\\"\\n\\tclass=\\\"list_class\\\"\\n\\tmultiple=\\\"false\\\"\\n\\trequired=\\\"false\\\"\\n\\textends=\\\"list\\\"\\n\\tbutton=\\\"true\\\"\\n\\ttable=\\\"#__###component###_sector\\\"\\n\\tcomponent=\\\"com_###component###\\\"\\n\\tview=\\\"sector\\\"\\n\\tviews=\\\"sectors\\\"\\n\\tvalue_field=\\\"name\\\"\\n\\tkey_field=\\\"id\\\"\\n\\tprime_php=\\\"1\\\"\\n\\ttype_php_1=\\\"__.o0=base64=Oo.__Ly8gR2V0IHRoZSB1c2VyIG9iamVjdC4NCgkJJHVzZXIgPSBKRmFjdG9yeTo6Z2V0VXNlcigpOw0KCQkvLyBHZXQgdGhlIGRhdGFic2Ugb2JqZWN0Lg0KCQkkZGIgPSBKRmFjdG9yeTo6Z2V0REJPKCk7DQoJCSRxdWVyeSA9ICRkYi0+Z2V0UXVlcnkodHJ1ZSk7DQoJCSRxdWVyeS0+c2VsZWN0KCRkYi0+cXVvdGVOYW1lKGFycmF5KCdhLiMjI0lEIyMjJywnYS4jIyNURVhUIyMjJyksYXJyYXkoJyMjI0lEIyMjJywnIyMjQ09ERV9URVhUIyMjJykpKTsNCgkJJHF1ZXJ5LT5mcm9tKCRkYi0+cXVvdGVOYW1lKCcjIyNUQUJMRSMjIycsICdhJykpOw0KCQkkcXVlcnktPndoZXJlKCRkYi0+cXVvdGVOYW1lKCdhLnB1Ymxpc2hlZCcpIC4gJyA+PSAxJyk7DQoJCSRxdWVyeS0+b3JkZXIoJ2EuIyMjVEVYVCMjIyBBU0MnKTsNCgkJLy8gSW1wbGVtZW50IFZpZXcgTGV2ZWwgQWNjZXNzIChpZiBzZXQgaW4gdGFibGUpDQoJCWlmICghJHVzZXItPmF1dGhvcmlzZSgnY29yZS5vcHRpb25zJywgJ1tbW2NvbV9jb21wb25lbnRdXV0nKSkNCgkJew0KCQkJJGNvbHVtbnMgPSAkZGItPmdldFRhYmxlQ29sdW1ucygnIyMjVEFCTEUjIyMnKTsNCgkJCWlmKGlzc2V0KCRjb2x1bW5zWydhY2Nlc3MnXSkpDQoJCQl7DQoJCQkJJGdyb3VwcyA9IGltcGxvZGUoJywnLCAkdXNlci0+Z2V0QXV0aG9yaXNlZFZpZXdMZXZlbHMoKSk7DQoJCQkJJHF1ZXJ5LT53aGVyZSgnYS5hY2Nlc3MgSU4gKCcgLiAkZ3JvdXBzIC4gJyknKTsNCgkJCX0NCgkJfQ0KCQkkZGItPnNldFF1ZXJ5KChzdHJpbmcpJHF1ZXJ5KTsNCgkJJGl0ZW1zID0gJGRiLT5sb2FkT2JqZWN0TGlzdCgpOw0KCQkkb3B0aW9ucyA9IGFycmF5KCk7DQoJCWlmICgkaXRlbXMpDQoJCXsNCgkJCSRvcHRpb25zW10gPSBKSHRtbDo6Xygnc2VsZWN0Lm9wdGlvbicsICcnLCAnU2VsZWN0IGFuIG9wdGlvbicpOw0KCQkJZm9yZWFjaCgkaXRlbXMgYXMgJGl0ZW0pDQoJCQl7DQoJCQkJJG9wdGlvbnNbXSA9IEpIdG1sOjpfKCdzZWxlY3Qub3B0aW9uJywgJGl0ZW0tPiMjI0lEIyMjLCAkaXRlbS0+IyMjQ09ERV9URVhUIyMjKTsNCgkJCX0NCgkJfQ0KCQlyZXR1cm4gJG9wdGlvbnM7\\\"\\n\\/>\"', 1, '2018-12-21 17:59:44', '2018-12-18 23:12:20', 1, '', 384, '9830fcdb-c276-4e72-9354-5dff711e79b6', '', '', '', '', ''),
(2463, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'Department', 'NOT NULL', '', 6, '\"<field\\n\\ttype=\\\"departments\\\"\\n\\tname=\\\"department\\\"\\n\\tlabel=\\\"Department\\\"\\n\\tdescription=\\\"Select which specific department is implementing the Project\\\"\\n\\tclass=\\\"list_class\\\"\\n\\tmultiple=\\\"false\\\"\\n\\trequired=\\\"false\\\"\\n\\textends=\\\"list\\\"\\n\\tbutton=\\\"true\\\"\\n\\ttable=\\\"#__###component###_department\\\"\\n\\tcomponent=\\\"com_###component###\\\"\\n\\tview=\\\"department\\\"\\n\\tviews=\\\"departments\\\"\\n\\tvalue_field=\\\"name\\\"\\n\\tkey_field=\\\"id\\\"\\n\\tprime_php=\\\"1\\\"\\n\\ttype_php_1=\\\"__.o0=base64=Oo.__Ly8gR2V0IHRoZSB1c2VyIG9iamVjdC4NCgkJJHVzZXIgPSBKRmFjdG9yeTo6Z2V0VXNlcigpOw0KCQkvLyBHZXQgdGhlIGRhdGFic2Ugb2JqZWN0Lg0KCQkkZGIgPSBKRmFjdG9yeTo6Z2V0REJPKCk7DQoJCSRxdWVyeSA9ICRkYi0+Z2V0UXVlcnkodHJ1ZSk7DQoJCSRxdWVyeS0+c2VsZWN0KCRkYi0+cXVvdGVOYW1lKGFycmF5KCdhLiMjI0lEIyMjJywnYS4jIyNURVhUIyMjJyksYXJyYXkoJyMjI0lEIyMjJywnIyMjQ09ERV9URVhUIyMjJykpKTsNCgkJJHF1ZXJ5LT5mcm9tKCRkYi0+cXVvdGVOYW1lKCcjIyNUQUJMRSMjIycsICdhJykpOw0KCQkkcXVlcnktPndoZXJlKCRkYi0+cXVvdGVOYW1lKCdhLnB1Ymxpc2hlZCcpIC4gJyA+PSAxJyk7DQoJCSRxdWVyeS0+b3JkZXIoJ2EuIyMjVEVYVCMjIyBBU0MnKTsNCgkJLy8gSW1wbGVtZW50IFZpZXcgTGV2ZWwgQWNjZXNzIChpZiBzZXQgaW4gdGFibGUpDQoJCWlmICghJHVzZXItPmF1dGhvcmlzZSgnY29yZS5vcHRpb25zJywgJ1tbW2NvbV9jb21wb25lbnRdXV0nKSkNCgkJew0KCQkJJGNvbHVtbnMgPSAkZGItPmdldFRhYmxlQ29sdW1ucygnIyMjVEFCTEUjIyMnKTsNCgkJCWlmKGlzc2V0KCRjb2x1bW5zWydhY2Nlc3MnXSkpDQoJCQl7DQoJCQkJJGdyb3VwcyA9IGltcGxvZGUoJywnLCAkdXNlci0+Z2V0QXV0aG9yaXNlZFZpZXdMZXZlbHMoKSk7DQoJCQkJJHF1ZXJ5LT53aGVyZSgnYS5hY2Nlc3MgSU4gKCcgLiAkZ3JvdXBzIC4gJyknKTsNCgkJCX0NCgkJfQ0KCQkkZGItPnNldFF1ZXJ5KChzdHJpbmcpJHF1ZXJ5KTsNCgkJJGl0ZW1zID0gJGRiLT5sb2FkT2JqZWN0TGlzdCgpOw0KCQkkb3B0aW9ucyA9IGFycmF5KCk7DQoJCWlmICgkaXRlbXMpDQoJCXsNCgkJCSRvcHRpb25zW10gPSBKSHRtbDo6Xygnc2VsZWN0Lm9wdGlvbicsICcnLCAnU2VsZWN0IGFuIG9wdGlvbicpOw0KCQkJZm9yZWFjaCgkaXRlbXMgYXMgJGl0ZW0pDQoJCQl7DQoJCQkJJG9wdGlvbnNbXSA9IEpIdG1sOjpfKCdzZWxlY3Qub3B0aW9uJywgJGl0ZW0tPiMjI0lEIyMjLCAkaXRlbS0+IyMjQ09ERV9URVhUIyMjKTsNCgkJCX0NCgkJfQ0KCQlyZXR1cm4gJG9wdGlvbnM7\\\"\\n\\/>\"', 1, '2018-12-21 18:01:52', '2018-12-21 18:02:00', 2, '', 384, 'afdf91eb-8f15-45c9-9923-f59ebe609155', '', '', '', '', ''),
(2464, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Duration of Project', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"duration\\\"\\n\\tlabel=\\\"Duration\\\"\\n\\tsize=\\\"10\\\"\\n\\tmaxlength=\\\"50\\\"\\n\\tdescription=\\\"set how long the project will run\\\"\\n\\tclass=\\\"text_area\\\"\\n\\trequired=\\\"false\\\"\\n\\tfilter=\\\"STRING\\\"\\n\\tmessage=\\\"Error! Please add some text here.\\\"\\n\\thint=\\\"3 years\\\"\\n\\tautocomplete=\\\"on\\\"\\n\\/>\"', 1, '2018-12-21 18:07:44', '0000-00-00 00:00:00', 1, '', 911, 'd727d121-0113-4cef-9e84-ea8f39b830c3', '', '', '', '', ''),
(2465, '', '', '', '', '', '', '', '', 64, '', 'INT', '', '', '', 'Project Lifetime Budge', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"budge\\\"\\n\\tlabel=\\\"Project Lifetime Budge\\\"\\n\\tsize=\\\"10\\\"\\n\\tmaxlength=\\\"50\\\"\\n\\tdescription=\\\"set the Total budget for the project (only number)\\\"\\n\\tclass=\\\"text_area\\\"\\n\\trequired=\\\"true\\\"\\n\\tfilter=\\\"INT\\\"\\n\\tvalidate=\\\"number\\\"\\n\\tmessage=\\\"Error! Please add only a number here.\\\"\\n\\thint=\\\"10000000\\\"\\n\\tautocomplete=\\\"on\\\"\\n\\tonchange=\\\"if(!jQuery(this).val().match(\\/^\\\\d+$\\/)){jQuery(this).val(\'\')};\\\"\\n\\/>\"', 1, '2018-12-21 18:12:33', '0000-00-00 00:00:00', 1, '', 911, 'dbaa4c48-ca01-4373-8d47-7f3dafc997e1', '', '', '', '', ''),
(2466, '', '', '', '', '', '', '', '', 64, '', 'INT', '', '', '', 'Total Amount Disbursed', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"disbursed\\\"\\n\\tlabel=\\\"Total Amount Disbursed\\\"\\n\\tsize=\\\"10\\\"\\n\\tmaxlength=\\\"50\\\"\\n\\tdescription=\\\"set how much money has been received (only number)\\\"\\n\\tclass=\\\"text_area\\\"\\n\\trequired=\\\"true\\\"\\n\\tfilter=\\\"INT\\\"\\n\\tvalidate=\\\"number\\\"\\n\\tmessage=\\\"Error! Please add only a number here.\\\"\\n\\thint=\\\"10000000\\\"\\n\\tautocomplete=\\\"on\\\"\\n\\tonchange=\\\"if(!jQuery(this).val().match(\\/^\\\\d+$\\/)){jQuery(this).val(\'\')};\\\"\\n\\/>\"', 1, '2018-12-21 18:13:37', '0000-00-00 00:00:00', 1, '', 911, 'dac15cdb-e6cb-40b9-9d9b-7183e14b0674', '', '', '', '', ''),
(2467, '', '', '', '', '', '', 'Other', '0000-00-00 00:00:00', '', '', 'DATETIME', '', '', '', 'Start Date', 'NOT NULL', '', 1, '\"<field\\n\\ttype=\\\"calendar\\\"\\n\\tname=\\\"start_date\\\"\\n\\tlabel=\\\"Start Date\\\"\\n\\tdescription=\\\"set the start date\\\"\\n\\tformat=\\\"%Y-%m-%d\\\"\\n\\tfilter=\\\"user_utc\\\"\\n\\tsize=\\\"22\\\"\\n\\/>\"', 1, '2018-12-21 22:39:29', '2018-02-21 08:25:28', 1, '', 167, 'ec61d67c-09b4-4f7b-a8ac-7beb8dbb3d12', '', '', '', '', ''),
(2468, '', '', '', '', '', '', 'Other', '0000-00-00 00:00:00', '', '', 'DATETIME', '', '', '', 'End Date', 'NOT NULL', '', 1, '\"<field\\n\\ttype=\\\"calendar\\\"\\n\\tname=\\\"end_date\\\"\\n\\tlabel=\\\"End Date\\\"\\n\\tdescription=\\\"set the end date\\\"\\n\\tformat=\\\"%Y-%m-%d\\\"\\n\\tfilter=\\\"user_utc\\\"\\n\\tsize=\\\"22\\\"\\n\\/>\"', 1, '2018-12-21 22:39:53', '2018-02-21 08:25:28', 1, '', 167, 'bd1957bb-f608-4dde-adea-0d91270bec2b', '', '', '', '', ''),
(2469, '', '', '', '', '', '', 1, '', 11, '', 'INT', '', '', '', 'Member Target Type (Chart)', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"member_target\\\"\\n\\tlabel=\\\"Member Target Type\\\"\\n\\tdescription=\\\"Select if this chart is build with one members data, or with multiple.\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"1|One Member,2|All Members\\\"\\n\\tdefault=\\\"1\\\"\\n\\trequired=\\\"true\\\"\\n\\tvalidate=\\\"number\\\"\\n\\tonchange=\\\"getJsTableExample();\\\"\\n\\/>\"', 1, '2018-12-22 02:01:29', '2018-12-22 02:56:21', 5, '', 912, 'b6d1522f-5fc5-4939-94c5-be8c9e4737eb', '', '', '', '', ''),
(2470, '', '', '', '', '', '', '', '', 64, '', 'VARCHAR', 2, '', '', 'Report Button Name (member)', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"button_report_name\\\"\\n\\tlabel=\\\"Report Button Name\\\"\\n\\tsize=\\\"50\\\"\\n\\tmaxlength=\\\"150\\\"\\n\\tdescription=\\\"What would like to name the report button.\\\"\\n\\tclass=\\\"text_area\\\"\\n\\tfilter=\\\"STRING\\\"\\n\\tmessage=\\\"Error! Please add some report button name here.\\\"\\n\\thint=\\\"Report\\\"\\n\\tautocomplete=\\\"on\\\"\\n\\/>\"', 1, '2018-12-22 04:07:20', '0000-00-00 00:00:00', 1, '', 873, '91f28814-9ab1-4159-a654-946c29b1045b', '', '', '', '', ''),
(2471, '', '', '', '', '', '', '', '', 64, '', 'VARCHAR', 2, '', '', 'Forms Button Name (member)', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"button_forms_name\\\"\\n\\tlabel=\\\"Forms Button Name\\\"\\n\\tsize=\\\"50\\\"\\n\\tmaxlength=\\\"150\\\"\\n\\tdescription=\\\"What would like to name the forms button.\\\"\\n\\tclass=\\\"text_area\\\"\\n\\tfilter=\\\"STRING\\\"\\n\\tmessage=\\\"Error! Please add some forms button name here.\\\"\\n\\thint=\\\"Forms\\\"\\n\\tautocomplete=\\\"on\\\"\\n\\/>\"', 1, '2018-12-22 04:07:53', '0000-00-00 00:00:00', 1, '', 873, '4e14586a-7092-40ff-9ab7-13d5e735b510', '', '', '', '', ''),
(2472, '', '', '', '', '', '', '', '', 64, '', 'VARCHAR', '', '', '', 'Send Form Name', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"form_name\\\"\\n\\tlabel=\\\"Send Form Name\\\"\\n\\tsize=\\\"10\\\"\\n\\tmaxlength=\\\"150\\\"\\n\\tdescription=\\\"Enter a global send form name.\\\"\\n\\tclass=\\\"text_area\\\"\\n\\trequired=\\\"false\\\"\\n\\tfilter=\\\"STRING\\\"\\n\\tmessage=\\\"Error! Please add some text here.\\\"\\n\\thint=\\\"Send Report\\\"\\n\\tautocomplete=\\\"on\\\"\\n\\/>\"', 1, '2018-12-25 16:56:10', '2018-12-25 16:56:43', 2, '', 913, '19f6c828-366c-44d0-ae4a-8992ca6efc14', '', '', '', '', ''),
(2473, '', '', '', '', '', '', '', '', 11, '', 'INT', '', '', '', 'Recipient (external)', 'NOT NULL', '', 6, '\"<field\\n\\ttype=\\\"member\\\"\\n\\tname=\\\"recipient\\\"\\n\\tlabel=\\\"Recipient\\\"\\n\\tclass=\\\"list_class\\\"\\n\\tmultiple=\\\"false\\\"\\n\\textends=\\\"list\\\"\\n\\ttable=\\\"#__[[[core]]]_member\\\"\\n\\tcomponent=\\\"com_[[[core]]]\\\"\\n\\tview=\\\"member\\\"\\n\\tviews=\\\"members\\\"\\n\\tvalue_field=\\\"token\\\"\\n\\tkey_field=\\\"id\\\"\\n\\ttype_php_1=\\\"__.o0=base64=Oo.__W0NVU1RPTUNPREU9Z2V0RXh0ZXJuYWxNZW1iZXJzK21lbWJlcixNZW1iZXJd\\\"\\n\\/>\"', 1, '2019-01-11 20:47:25', '2019-02-14 22:28:48', 4, '', 384, '56fcf7fe-2abb-480e-b039-c2d05549db3f', '', '', '', '', ''),
(2474, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'Login Required', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"login_required\\\"\\n\\tlabel=\\\"Login Required\\\"\\n\\tdescription=\\\"Is it required to login before viewing a profile\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"1|Yes,2|No\\\"\\n\\tdefault=\\\"1\\\"\\n\\trequired=\\\"true\\\"\\n\\/>\"', 1, '2019-01-18 20:36:49', '2019-01-18 20:42:44', 2, '', 914, '1559e4a2-e75c-41ba-bfba-8246aa7a8338', '', '', '', '', ''),
(2475, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'Types (Orthopedic)', 'NOT NULL', '', 6, '\"<field\\n\\ttype=\\\"types\\\"\\n\\tname=\\\"type\\\"\\n\\tlabel=\\\"Type\\\"\\n\\tdescription=\\\"Select the type\\\"\\n\\tclass=\\\"list_class\\\"\\n\\tmultiple=\\\"false\\\"\\n\\trequired=\\\"true\\\"\\n\\tonchange=\\\"setOrthopedicValues(this)\\\"\\n\\textends=\\\"list\\\"\\n\\tbutton=\\\"true\\\"\\n\\ttable=\\\"#__###component###_type\\\"\\n\\tcomponent=\\\"com_###component###\\\"\\n\\tview=\\\"type\\\"\\n\\tviews=\\\"types\\\"\\n\\tvalue_field=\\\"name\\\"\\n\\tkey_field=\\\"id\\\"\\n\\tprime_php=\\\"1\\\"\\n\\ttype_php_1=\\\"__.o0=base64=Oo.__Ly8gR2V0IHRoZSB1c2VyIG9iamVjdC4NCgkJJHVzZXIgPSBKRmFjdG9yeTo6Z2V0VXNlcigpOw0KCQkvLyBHZXQgdGhlIGRhdGFic2Ugb2JqZWN0Lg0KCQkkZGIgPSBKRmFjdG9yeTo6Z2V0REJPKCk7DQoJCSRxdWVyeSA9ICRkYi0+Z2V0UXVlcnkodHJ1ZSk7DQoJCSRxdWVyeS0+c2VsZWN0KCRkYi0+cXVvdGVOYW1lKGFycmF5KCdhLiMjI0lEIyMjJywnYS4jIyNURVhUIyMjJyksYXJyYXkoJyMjI0lEIyMjJywnIyMjQ09ERV9URVhUIyMjJykpKTsNCgkJJHF1ZXJ5LT5mcm9tKCRkYi0+cXVvdGVOYW1lKCcjIyNUQUJMRSMjIycsICdhJykpOw0KCQkkcXVlcnktPndoZXJlKCRkYi0+cXVvdGVOYW1lKCdhLnB1Ymxpc2hlZCcpIC4gJyA+PSAxJyk7DQoJCSRxdWVyeS0+b3JkZXIoJ2EuIyMjVEVYVCMjIyBBU0MnKTsNCgkJLy8gSW1wbGVtZW50IFZpZXcgTGV2ZWwgQWNjZXNzIChpZiBzZXQgaW4gdGFibGUpDQoJCWlmICghJHVzZXItPmF1dGhvcmlzZSgnY29yZS5vcHRpb25zJywgJ1tbW2NvbV9jb21wb25lbnRdXV0nKSkNCgkJew0KCQkJJGNvbHVtbnMgPSAkZGItPmdldFRhYmxlQ29sdW1ucygnIyMjVEFCTEUjIyMnKTsNCgkJCWlmKGlzc2V0KCRjb2x1bW5zWydhY2Nlc3MnXSkpDQoJCQl7DQoJCQkJJGdyb3VwcyA9IGltcGxvZGUoJywnLCAkdXNlci0+Z2V0QXV0aG9yaXNlZFZpZXdMZXZlbHMoKSk7DQoJCQkJJHF1ZXJ5LT53aGVyZSgnYS5hY2Nlc3MgSU4gKCcgLiAkZ3JvdXBzIC4gJyknKTsNCgkJCX0NCgkJfQ0KCQkkZGItPnNldFF1ZXJ5KChzdHJpbmcpJHF1ZXJ5KTsNCgkJJGl0ZW1zID0gJGRiLT5sb2FkT2JqZWN0TGlzdCgpOw0KCQkkb3B0aW9ucyA9IGFycmF5KCk7DQoJCWlmICgkaXRlbXMpDQoJCXsNCgkJCSRvcHRpb25zW10gPSBKSHRtbDo6Xygnc2VsZWN0Lm9wdGlvbicsICcnLCAnU2VsZWN0IGFuIG9wdGlvbicpOw0KCQkJZm9yZWFjaCgkaXRlbXMgYXMgJGl0ZW0pDQoJCQl7DQoJCQkJJG9wdGlvbnNbXSA9IEpIdG1sOjpfKCdzZWxlY3Qub3B0aW9uJywgJGl0ZW0tPiMjI0lEIyMjLCAkaXRlbS0+IyMjQ09ERV9URVhUIyMjKTsNCgkJCX0NCgkJfQ0KCQlyZXR1cm4gJG9wdGlvbnM7\\\"\\n\\/>\"', 1, '2019-01-21 16:40:18', '2019-04-10 22:16:50', 3, '', 384, 'ca5bf969-fa60-47e0-bb5f-ab0e7e7280e9', '', '', '', '', ''),
(2476, '', '', '', '', '', '', '', '', 64, '', 'VARCHAR', 2, '', '', 'mySql Table Row Format', 'NOT NULL', '', 11, '\"<field\\n\\ttype=\\\"list\\\"\\n\\tname=\\\"mysql_table_row_format\\\"\\n\\tlabel=\\\"mySql Table Row Format\\\"\\n\\tdescription=\\\"The row format of a table determines how its rows are physically stored, which in turn can affect the performance of queries and DML operations.\\\"\\n\\tclass=\\\"list_class\\\"\\n\\tmultiple=\\\"false\\\"\\n\\trequired=\\\"true\\\"\\n\\toption=\\\"0|Omit,REDUNDANT,COMPACT,DYNAMIC,COMPRESSED\\\"\\n\\tdefault=\\\"DYNAMIC\\\"\\n\\/>\"', 1, '2019-01-25 23:09:22', '2019-05-16 22:35:47', 6, '', 915, '6336be5a-77e0-46e2-8d1f-9278a4b10080', '', '', '', '', ''),
(2477, '', '', '', '', '', '', '', '', 255, '', 'MEDIUMTEXT', '', '', '', 'Front Images Key', 'NOT NULL', 3, 9, '\"<field\\n\\ttype=\\\"hidden\\\"\\n\\tname=\\\"front_images\\\"\\n\\tdefault=\\\"\\\"\\n\\/>\"', 1, '2019-01-26 19:21:46', '2019-01-26 20:40:05', 3, '', 729, '07cec684-fcf8-4e1a-b440-481675f948d0', '', '', '', '', ''),
(2478, '', '', 1, '', '', '', '', '', '', '', '', '', 'W0NVU1RPTUNPREU9dWlraXRJbWFnZVVwbG9hZGVyK2ltYWdlLGltYWdlcyxmcm9udF0=', '', 'Front images Uploader (uikit)', 'NOT NULL', '', 14, '\"<field\\n\\ttype=\\\"note\\\"\\n\\tname=\\\"front_images_uploader\\\"\\n\\tlabel=\\\"Front Images\\\"\\n\\tdescription=\\\"[CUSTOMCODE=uikitImageUploaderHTML+image,images,front]\\\"\\n\\/>\"', 1, '2019-01-26 19:22:24', '2019-01-26 20:38:37', 3, '', 110, '3c57f102-a0c8-45b1-9081-b324f4de22ad', '', '', '', '', ''),
(2479, '', '', '', '', '', '', '', '', 255, '', 'MEDIUMTEXT', '', '', '', 'Side Images Key', 'NOT NULL', 3, 9, '\"<field\\n\\ttype=\\\"hidden\\\"\\n\\tname=\\\"side_images\\\"\\n\\tdefault=\\\"\\\"\\n\\/>\"', 1, '2019-01-26 19:49:02', '2019-01-26 20:40:28', 2, '', 729, '2b4df07d-1372-4a20-a60f-f99303adbd17', '', '', '', '', ''),
(2480, '', '', 1, '', '', '', '', '', '', '', '', '', 'W0NVU1RPTUNPREU9dWlraXRJbWFnZVVwbG9hZGVyK2ltYWdlLGltYWdlcyxzaWRlXQ==', '', 'Side images Uploader (uikit)', 'NOT NULL', '', 14, '\"<field\\n\\ttype=\\\"note\\\"\\n\\tname=\\\"side_images_uploader\\\"\\n\\tlabel=\\\"Side Images\\\"\\n\\tdescription=\\\"[CUSTOMCODE=uikitImageUploaderHTML+image,images,side]\\\"\\n\\/>\"', 1, '2019-01-26 19:49:45', '2019-01-26 20:39:21', 4, '', 110, 'dcc42197-c841-45a9-921e-e22a422f8c96', '', '', '', '', ''),
(2481, '', '', '', '', '', '', '', '', 255, '', 'MEDIUMTEXT', '', '', '', 'Back Images Key', 'NOT NULL', 3, 9, '\"<field\\n\\ttype=\\\"hidden\\\"\\n\\tname=\\\"back_images\\\"\\n\\tdefault=\\\"\\\"\\n\\/>\"', 1, '2019-01-26 19:50:06', '2019-01-26 20:40:44', 2, '', 729, '4f8031a8-8ad6-46d6-8620-6829a8d16498', '', '', '', '', ''),
(2482, '', '', 1, '', '', '', '', '', '', '', '', '', 'W0NVU1RPTUNPREU9dWlraXRJbWFnZVVwbG9hZGVyK2ltYWdlLGltYWdlcyxiYWNrXQ==', '', 'Back images Uploader (uikit)', 'NOT NULL', '', 14, '\"<field\\n\\ttype=\\\"note\\\"\\n\\tname=\\\"back_images_uploader\\\"\\n\\tlabel=\\\"Back Images\\\"\\n\\tdescription=\\\"[CUSTOMCODE=uikitImageUploaderHTML+image,images,back]\\\"\\n\\/>\"', 1, '2019-01-26 19:50:52', '2019-01-26 20:39:48', 2, '', 110, '649d8b6e-b8d2-4f11-8bd7-337ef0cec30d', '', '', '', '', ''),
(2483, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'History', 'NOT NULL', '', 25, '\"<field\\n\\ttype=\\\"textarea\\\"\\n\\tname=\\\"history\\\"\\n\\tlabel=\\\"History\\\"\\n\\trows=\\\"4\\\"\\n\\tcols=\\\"5\\\"\\n\\tclass=\\\"text_area span12\\\"\\n\\tfilter=\\\"STRING\\\"\\n\\thint=\\\"add history comments here.\\\"\\n\\trequired=\\\"false\\\"\\n\\/>\"', 1, '2019-01-26 20:02:59', '0000-00-00 00:00:00', 1, '', 916, '1b11710d-7f10-464a-aaa8-29a36de9b4a0', '', '', '', '', ''),
(2484, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Palpation', 'NOT NULL', '', 25, '\"<field\\n\\ttype=\\\"textarea\\\"\\n\\tname=\\\"palpation\\\"\\n\\tlabel=\\\"Palpation\\\"\\n\\trows=\\\"4\\\"\\n\\tcols=\\\"5\\\"\\n\\tclass=\\\"text_area span12\\\"\\n\\tfilter=\\\"STRING\\\"\\n\\thint=\\\"add palpation comments here.\\\"\\n\\trequired=\\\"false\\\"\\n\\/>\"', 1, '2019-01-26 20:03:35', '0000-00-00 00:00:00', 1, '', 916, '615e24d7-b67f-4f2a-9bf6-4f45fce5fcf9', '', '', '', '', ''),
(2485, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'Crop Front Images', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"crop_front\\\"\\n\\tlabel=\\\"Crop Front Images\\\"\\n\\tdescription=\\\"Set if all front images that are added should be cropped.\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"1|Yes,0|No\\\"\\n\\tdefault=\\\"0\\\"\\n\\/>\"', 1, '2019-01-26 20:12:04', '2019-01-26 20:43:26', 2, '', 765, 'efa72fac-802a-4c7d-81ad-cf918acd5f42', '', '', '', '', ''),
(2486, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'Crop Side Images', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"crop_side\\\"\\n\\tlabel=\\\"Crop Side Images\\\"\\n\\tdescription=\\\"Set if all side images that are added should be cropped.\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"1|Yes,0|No\\\"\\n\\tdefault=\\\"0\\\"\\n\\/>\"', 1, '2019-01-26 20:12:46', '2019-01-26 20:43:46', 2, '', 765, '34d7d0cc-99e7-4d79-8f59-4a8d3a4898aa', '', '', '', '', ''),
(2487, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'Crop Back Images', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"crop_back\\\"\\n\\tlabel=\\\"Crop Back Images\\\"\\n\\tdescription=\\\"Set if all back images that are added should be cropped.\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"1|Yes,0|No\\\"\\n\\tdefault=\\\"0\\\"\\n\\/>\"', 1, '2019-01-26 20:13:11', '2019-01-26 20:44:00', 2, '', 765, '079bdfc1-72bf-4274-b390-43753994601b', '', '', '', '', ''),
(2488, '', '', '', '', '', '', '', '', 11, '', 'INT', '', '', '', 'Front Image Height (in pixels)', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"front_height\\\"\\n\\tlabel=\\\"Front Image Height (in pixels)\\\"\\n\\tsize=\\\"50\\\"\\n\\tmaxlength=\\\"150\\\"\\n\\tclass=\\\"text_area\\\"\\n\\tfilter=\\\"INT\\\"\\n\\thint=\\\"Only Numbers\\\"\\n\\tshowon=\\\"crop_front:1\\\"\\n\\tonchange=\\\"if(!jQuery(this).val().match(\\/^\\\\d+$\\/)){jQuery(this).val(\'\')};\\\"\\n\\/>\"', 1, '2019-01-26 20:14:27', '2019-01-26 20:44:28', 2, '', 7, 'dc863ee4-ffc2-4b39-ae5d-5e75675f1485', '', '', '', '', ''),
(2489, '', '', '', '', '', '', '', '', 11, '', 'INT', '', '', '', 'Side Image Height (in pixels)', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"side_height\\\"\\n\\tlabel=\\\"Side Image Height (in pixels)\\\"\\n\\tsize=\\\"50\\\"\\n\\tmaxlength=\\\"150\\\"\\n\\tclass=\\\"text_area\\\"\\n\\tfilter=\\\"INT\\\"\\n\\thint=\\\"Only Numbers\\\"\\n\\tshowon=\\\"crop_side:1\\\"\\n\\tonchange=\\\"if(!jQuery(this).val().match(\\/^\\\\d+$\\/)){jQuery(this).val(\'\')};\\\"\\n\\/>\"', 1, '2019-01-26 20:14:52', '2019-01-26 20:44:54', 2, '', 7, 'df94b632-2684-4f41-9bb1-ab8feac91789', '', '', '', '', ''),
(2490, '', '', '', '', '', '', '', '', 11, '', 'INT', '', '', '', 'Back Image Height (in pixels)', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"back_height\\\"\\n\\tlabel=\\\"Back Image Height (in pixels)\\\"\\n\\tsize=\\\"50\\\"\\n\\tmaxlength=\\\"150\\\"\\n\\tclass=\\\"text_area\\\"\\n\\tfilter=\\\"INT\\\"\\n\\thint=\\\"Only Numbers\\\"\\n\\tshowon=\\\"crop_back:1\\\"\\n\\tonchange=\\\"if(!jQuery(this).val().match(\\/^\\\\d+$\\/)){jQuery(this).val(\'\')};\\\"\\n\\/>\"', 1, '2019-01-26 20:15:16', '2019-01-26 20:45:18', 2, '', 7, '2d9ca0b1-5d6b-4537-8ba6-0c83692297e9', '', '', '', '', ''),
(2491, '', '', '', '', '', '', '', '', 11, '', 'INT', '', '', '', 'Front Image Width (in pixels)', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"front_width\\\"\\n\\tlabel=\\\"Front Image Width (in pixels)\\\"\\n\\tsize=\\\"50\\\"\\n\\tmaxlength=\\\"150\\\"\\n\\tclass=\\\"text_area\\\"\\n\\tfilter=\\\"INT\\\"\\n\\thint=\\\"Only Numbers\\\"\\n\\tshowon=\\\"crop_front:1\\\"\\n\\tonchange=\\\"if(!jQuery(this).val().match(\\/^\\\\d+$\\/)){jQuery(this).val(\'\')};\\\"\\n\\/>\"', 1, '2019-01-26 20:16:01', '2019-01-26 20:45:41', 2, '', 7, '08385d1c-f627-4f6c-9c5c-046adb3c8098', '', '', '', '', ''),
(2492, '', '', '', '', '', '', '', '', 11, '', 'INT', '', '', '', 'Side Image Width (in pixels)', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"side_width\\\"\\n\\tlabel=\\\"Side Image Width (in pixels)\\\"\\n\\tsize=\\\"50\\\"\\n\\tmaxlength=\\\"150\\\"\\n\\tclass=\\\"text_area\\\"\\n\\tfilter=\\\"INT\\\"\\n\\thint=\\\"Only Numbers\\\"\\n\\tshowon=\\\"crop_side:1\\\"\\n\\tonchange=\\\"if(!jQuery(this).val().match(\\/^\\\\d+$\\/)){jQuery(this).val(\'\')};\\\"\\n\\/>\"', 1, '2019-01-26 20:16:29', '2019-01-26 20:46:06', 2, '', 7, '4265acc5-6299-4ae8-b78b-5a9779d82209', '', '', '', '', ''),
(2493, '', '', '', '', '', '', '', '', 11, '', 'INT', '', '', '', 'Back Image Width (in pixels)', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"back_width\\\"\\n\\tlabel=\\\"Back Image Width (in pixels)\\\"\\n\\tsize=\\\"50\\\"\\n\\tmaxlength=\\\"150\\\"\\n\\tclass=\\\"text_area\\\"\\n\\tfilter=\\\"INT\\\"\\n\\thint=\\\"Only Numbers\\\"\\n\\tshowon=\\\"crop_back:1\\\"\\n\\tonchange=\\\"if(!jQuery(this).val().match(\\/^\\\\d+$\\/)){jQuery(this).val(\'\')};\\\"\\n\\/>\"', 1, '2019-01-26 20:16:55', '2019-01-26 20:46:41', 2, '', 7, 'd634d603-0136-495a-b1cf-1cb00fc723ab', '', '', '', '', ''),
(2494, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Select All', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"select_all\\\"\\n\\tlabel=\\\"Select All\\\"\\n\\tdescription=\\\"Should all the fields be selected, even those newly added at a later stage.\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"1|Yes,0|No\\\"\\n\\tdefault=\\\"0\\\"\\n\\/>\"', 1, '2019-01-27 20:40:44', '2019-01-29 01:09:24', 7, '', 917, 'fbb918ff-70bf-41ee-b1fd-110e38cbdba0', '', '', '', '', ''),
(2495, '', '', '', '', '', '', '', '', 1, '', 'INT', 2, '', '', 'Auto Sync', 'NOT NULL', '', 3, '\"<field\\n\\ttype=\\\"checkbox\\\"\\n\\tname=\\\"auto_sync\\\"\\n\\tlabel=\\\"Auto Sync\\\"\\n\\tvalue=\\\"1\\\"\\n\\tdescription=\\\"Selection\\\"\\n\\tclass=\\\"inputbox\\\"\\n\\/>\"', 1, '2019-01-27 20:42:43', '0000-00-00 00:00:00', 1, '', 918, '63c3d394-c553-426c-a95f-d712e17056d3', '', '', '', '', ''),
(2496, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Auto Sync Linked', 'NOT NULL', '', 9, '\"<field\\n\\ttype=\\\"hidden\\\"\\n\\tname=\\\"auto_sync_linked\\\"\\n\\tdefault=\\\"0\\\"\\n\\tfilter=\\\"INT\\\"\\n\\/>\"', 1, '2019-01-28 16:17:59', '0000-00-00 00:00:00', 1, '', 919, '9dcad6b9-367a-4db6-9606-a183b299275e', '', '', '', '', ''),
(2497, '', '', '', '', '', '', '', '', 64, '', 'CHAR', '', '', '', 'Version (Joomla)', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"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-02-01 10:05:20', '2019-02-01 10:05:28', 2, '', 155, '52aafde2-5289-4327-92b3-1d80b6e11f38', '', '', '', '', ''),
(2498, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', 2, '', '', 'Target String Placeholder (uniqueplaceholder)', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"target\\\"\\n\\tlabel=\\\"Target String Placeholder\\\"\\n\\tsize=\\\"50\\\"\\n\\tmaxlength=\\\"150\\\"\\n\\tdescription=\\\"Set the text you would like to target as a placeholder\\\"\\n\\tclass=\\\"text_area\\\"\\n\\trequired=\\\"true\\\"\\n\\tfilter=\\\"STRING\\\"\\n\\tvalidate=\\\"uniqueplaceholder\\\"\\n\\tmessage=\\\"Error! That target placeholder text already exist. Please add an unique placeholder target.\\\"\\n\\thint=\\\"[[[core]]]\\\"\\n\\tautocomplete=\\\"off\\\"\\n\\/>\"', 1, '2019-02-14 19:14:43', '2019-02-15 20:29:25', 6, '', 873, '65b533a8-0d70-44af-a9d1-785983eb4ef3', '', '', '', '', ''),
(2499, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Set String Value', 'NOT NULL', 2, 25, '\"<field\\n\\ttype=\\\"textarea\\\"\\n\\tname=\\\"value\\\"\\n\\tlabel=\\\"Set String Value\\\"\\n\\trows=\\\"1\\\"\\n\\tcols=\\\"5\\\"\\n\\tdefault=\\\"default text\\\"\\n\\tdescription=\\\"Set the text you would like to set as the replacement value for the targeted placeholder.\\\"\\n\\tmessage=\\\"Error! Please add some set target value here.\\\"\\n\\tclass=\\\"text_area span12\\\"\\n\\tfilter=\\\"RAW\\\"\\n\\thint=\\\"membersmanager\\\"\\n\\trequired=\\\"true\\\"\\n\\/>\"', 1, '2019-02-14 19:17:12', '2024-03-20 13:27:54', 8, '', 873, 'b14c6496-2aaf-4198-8fc1-cf034525fb91', '', '', '', '', ''),
(2500, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Add Placeholders', 'NOT NULL', '', 35, '\"<field\\n\\ttype=\\\"repeatable\\\"\\n\\tname=\\\"addplaceholders\\\"\\n\\tlabel=\\\"Placeholders\\\"\\n\\tlayout=\\\"joomla.form.field.subform.repeatable-table\\\"\\n\\tfields=\\\"2501,2499\\\"\\n\\tdescription=\\\"Set dnamic placeholders for this component.\\\"\\n\\tdefault=\\\"\\\"\\n\\ticon=\\\"list\\\"\\n\\/>\"', 1, '2019-02-14 20:48:17', '2019-02-15 20:30:22', 4, '', 359, 'fb4e322b-46c0-47e5-b9eb-70c39456d80d', '', '', '', '', ''),
(2501, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', 2, '', '', 'Target String Placeholder', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"target\\\"\\n\\tlabel=\\\"Target String Placeholder\\\"\\n\\tsize=\\\"50\\\"\\n\\tmaxlength=\\\"150\\\"\\n\\tdescription=\\\"Set the text you would like to target as a placeholder\\\"\\n\\tclass=\\\"text_area\\\"\\n\\trequired=\\\"true\\\"\\n\\tfilter=\\\"STRING\\\"\\n\\tmessage=\\\"Error! That target placeholder text already exist. Please add an unique placeholder target.\\\"\\n\\thint=\\\"[[[core]]]\\\"\\n\\tautocomplete=\\\"off\\\"\\n\\/>\"', 1, '2019-02-15 20:29:39', '2019-02-15 20:30:06', 2, '', 873, '73cc6e9d-58a5-409b-8762-fa1388a2c945', '', '', '', '', ''),
(2502, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'Profile Menu Item', 'NOT NULL', '', 33, '\"<field\\n\\ttype=\\\"menuitem\\\"\\n\\tname=\\\"profile_menu\\\"\\n\\tlabel=\\\"Profile Menu Item\\\"\\n\\tdescription=\\\"Select the menu item you would like your profile view to be linked to.\\\"\\n\\tpublished=\\\"1\\\"\\n\\tfilter=\\\"int\\\"\\n\\/>\"', 1, '2019-02-16 14:04:36', '2015-11-14 15:15:03', 1, '', 637, 'b0e43500-2a05-44b1-bf61-31f4745a87b7', '', '', '', '', ''),
(2503, '', '', '', '', '', '', '', '', '', '', '', '', '', '', 'Placedin', 'NOT NULL', '', 14, '\"<field\\n\\ttype=\\\"note\\\"\\n\\tname=\\\"note_placeholders_placedin\\\"\\n\\tdescription=\\\"<div class=\'span12\' id=\'placedin\' style=\'display: none;\'>\\r\\n\\t\\t[CUSTOMCODE=codeUsedInHtmlNote+PLACED IN,placedin,placeholder]\\r\\n<\\/div>\\\"\\n\\/>\"', 1, '2019-02-22 22:38:21', '0000-00-00 00:00:00', 1, '', 920, '07cf3558-3d4f-429f-9f46-9a9b98338a1c', '', '', '', '', ''),
(2504, '', '', '', '', '', '', 1, '', 1, '', 'TINYINT', 2, '', '', 'Add ISIS Template', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"add_isis_template\\\"\\n\\tlabel=\\\"Add ISIS Template<br \\/><small>styles & script on front-end<\\/small>\\\"\\n\\tdescription=\\\"Toggle the isis template styles and scripts for front-end edit views.\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"1|Yes,0|No\\\"\\n\\tdefault=\\\"1\\\"\\n\\/>\"', 1, '2019-03-25 20:27:56', '0000-00-00 00:00:00', 1, '', 921, '9ddd6a0d-5fdc-4438-9fd3-e95b2178ea4b', '', '', '', '', ''),
(2505, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Add Group Query', 'NOT NULL', '', 35, '\"<field\\n\\ttype=\\\"subform\\\"\\n\\tname=\\\"group\\\"\\n\\tlabel=\\\"Grouping\\\"\\n\\tlayout=\\\"joomla.form.field.subform.repeatable-table\\\"\\n\\tmultiple=\\\"true\\\"\\n\\tfields=\\\"536\\\"\\n\\tdescription=\\\"Here you can set the grouping per data set.\\\"\\n\\ticon=\\\"list\\\"\\n\\/>\"', 1, '2019-04-06 17:21:13', '2019-04-06 17:34:27', 3, '', 531, 'f37d69ac-ba75-4b2f-8793-91b77b86751f', '', '', '', '', ''),
(2506, '', '', '', '', '', '', '', '', 7, '', 'INT', '', '', '', 'Sit to Stand', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"sit_to_stand\\\"\\n\\tlabel=\\\"Sit to Stand\\\"\\n\\tsize=\\\"40\\\"\\n\\tmaxlength=\\\"6\\\"\\n\\tdescription=\\\"Amount Sit to Stands Done per\\/30 seconds\\\"\\n\\tclass=\\\"text_area\\\"\\n\\trequired=\\\"true\\\"\\n\\tfilter=\\\"INT\\\"\\n\\tvalidate=\\\"Number\\\"\\n\\tmessage=\\\"Amount Sit to Stands Done must only be a number!\\\"\\n\\thint=\\\"Amount Sit to Stands Done\\\"\\n\\tonchange=\\\"if(!jQuery(this).val().match(\\/^\\\\d+$\\/)){jQuery(this).val(\'\')};\\\"\\n\\/>\"', 1, '2019-04-11 10:18:50', '2019-06-26 10:32:09', 2, '', 859, '2a9a94ce-303b-496b-a016-f65f09da9689', '', '', '', '', ''),
(2507, '', '', '', '', '', '', '', '', 7, '', 'INT', '', '', '', 'Shoulder Press', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"shoulder_press\\\"\\n\\tlabel=\\\"Shoulder Press\\\"\\n\\tsize=\\\"40\\\"\\n\\tmaxlength=\\\"6\\\"\\n\\tdescription=\\\"Amount Shoulder Press Done per\\/minute\\\"\\n\\tclass=\\\"text_area\\\"\\n\\trequired=\\\"true\\\"\\n\\tfilter=\\\"INT\\\"\\n\\tvalidate=\\\"Number\\\"\\n\\tmessage=\\\"Amount Shoulder Press Done must only be a number!\\\"\\n\\thint=\\\"Amount Shoulder Press Done\\\"\\n\\tonchange=\\\"if(!jQuery(this).val().match(\\/^\\\\d+$\\/)){jQuery(this).val(\'\')};\\\"\\n\\/>\"', 1, '2019-04-11 10:20:24', '2018-10-10 19:13:05', 1, '', 859, 'bbc41e95-fbdf-4359-a879-bd3fbbfafd3b', '', '', '', '', ''),
(2508, '', '', '', '', '', '', 1, '', '', '', 'CHAR', '', '', '', 'Allow Null (ajax)', 'NOT NULL', '', 3, '\"<field\\n\\ttype=\\\"checkbox\\\"\\n\\tname=\\\"allow_zero\\\"\\n\\tlabel=\\\"Allow\\\"\\n\\tvalue=\\\"1\\\"\\n\\trequired=\\\"\\\"\\n\\tdescription=\\\"null & zero values\\\"\\n\\tclass=\\\"inputbox\\\"\\n\\/>\"', 1, '2019-04-27 21:26:24', '2019-04-27 21:42:32', 5, '', 636, '583c59b4-0b1c-409d-b0d6-315fc06b0e0f', '', '', '', '', ''),
(2509, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Condition (Orthopedic)', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"condition\\\"\\n\\tlabel=\\\"Condition\\\"\\n\\tsize=\\\"10\\\"\\n\\tmaxlength=\\\"50\\\"\\n\\tdescription=\\\"The Diagnosed Condition of the Member\\\"\\n\\tclass=\\\"text_area\\\"\\n\\trequired=\\\"true\\\"\\n\\tfilter=\\\"STRING\\\"\\n\\tmessage=\\\"Error! Please add some condition here.\\\"\\n\\thint=\\\"Add the diagnosis as per assessment\\\"\\n\\tautocomplete=\\\"on\\\"\\n\\/>\"', 1, '2019-04-28 23:26:48', '0000-00-00 00:00:00', 1, '', 922, '1afe70fc-6394-4604-a335-6537078bd8a1', '', '', '', '', ''),
(2510, '', '', '', '', '', '', '', '', 7, '', 'INT', '', '', '', 'Perceived Pain Scale', 'NOT NULL', '', 15, '\"<field\\n\\ttype=\\\"number\\\"\\n\\tname=\\\"perceived_pain_scale\\\"\\n\\tlabel=\\\"Perceived Pain Scale\\\"\\n\\tdescription=\\\"The Perceived Pain scale of the patient during movement (min 1 - 10 max)\\\"\\n\\tclass=\\\"text_area\\\"\\n\\tmin=\\\"1\\\"\\n\\tmax=\\\"10\\\"\\n\\tstep=\\\"1\\\"\\n\\/>\"', 1, '2019-04-28 23:29:24', '0000-00-00 00:00:00', 1, '', 923, 'c007327d-5e3c-449d-85f4-a3d85a51e144', '', '', '', '', ''),
(2511, '', '', '', '', '', '', '', '', 7, '', 'VARCHAR', '', '', '', 'Isokinetic Values', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"isokinetic_values\\\"\\n\\tlabel=\\\"Isokinetic Values\\\"\\n\\tsize=\\\"40\\\"\\n\\tmaxlength=\\\"6\\\"\\n\\tdescription=\\\"Isokinetic values as measured on Isokinetic Equipment. Must only be a number!\\\"\\n\\tclass=\\\"text_area\\\"\\n\\tfilter=\\\"STRING\\\"\\n\\tvalidate=\\\"number\\\"\\n\\thint=\\\"Add the values as measured on Isokinetic Equipment\\\"\\n\\tautocomplete=\\\"on\\\"\\n\\tonchange=\\\"if(!jQuery(this).val().match(\\/^\\\\d+\\\\.\\\\d+$\\/)){if(!jQuery(this).val().match(\\/^\\\\d+$\\/)){jQuery(this).val(\'\')}};\\\"\\n\\/>\"', 1, '2019-04-28 23:32:50', '2019-06-26 10:36:08', 2, '', 859, 'c8eae326-fa5f-4962-821b-58aaac4d8365', '', '', '', '', ''),
(2512, '', '', '', '', '', '', '', '', 7, '', 'VARCHAR', '', '', '', 'Upperbody Functional Score', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"upperbody_functional_score\\\"\\n\\tlabel=\\\"Upperbody Functional Score\\\"\\n\\tsize=\\\"40\\\"\\n\\tmaxlength=\\\"6\\\"\\n\\tdescription=\\\"The Functional Score as measured by the Functional Questionnaire. Must only be a number!\\\"\\n\\tclass=\\\"text_area\\\"\\n\\tfilter=\\\"STRING\\\"\\n\\tvalidate=\\\"number\\\"\\n\\thint=\\\"Add Functional Questionnaire Score\\\"\\n\\tautocomplete=\\\"on\\\"\\n\\tonchange=\\\"if(!jQuery(this).val().match(\\/^\\\\d+\\\\.\\\\d+$\\/)){if(!jQuery(this).val().match(\\/^\\\\d+$\\/)){jQuery(this).val(\'\')}};\\\"\\n\\/>\"', 1, '2019-04-28 23:33:45', '2019-04-30 22:48:55', 2, '', 859, '6a0ae8b1-db2c-4b19-9808-90552a8ca231', '', '', '', '', ''),
(2513, '', '', '', '', '', '', '', '', 7, '', 'VARCHAR', '', '', '', 'Lowerbody Functional Score', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"lowerbody_functional_score\\\"\\n\\tlabel=\\\"Lowerbody Functional Score\\\"\\n\\tsize=\\\"40\\\"\\n\\tmaxlength=\\\"6\\\"\\n\\tdescription=\\\"The Functional Score as measured by the Functional Questionnaire. Must only be a number!\\\"\\n\\tclass=\\\"text_area\\\"\\n\\tfilter=\\\"STRING\\\"\\n\\tvalidate=\\\"number\\\"\\n\\thint=\\\"Add Functional Questionnaire Score\\\"\\n\\tautocomplete=\\\"on\\\"\\n\\tonchange=\\\"if(!jQuery(this).val().match(\\/^\\\\d+\\\\.\\\\d+$\\/)){if(!jQuery(this).val().match(\\/^\\\\d+$\\/)){jQuery(this).val(\'\')}};\\\"\\n\\/>\"', 1, '2019-04-28 23:34:22', '2019-04-30 22:49:04', 2, '', 859, 'f2c5ede4-e77b-4c1e-b2e3-e26ad3ac459d', '', '', '', '', ''),
(2514, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Set Database Defaults', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"has_defaults\\\"\\n\\tlabel=\\\"Set Database Defaults\\\"\\n\\tdescription=\\\"set the database defaults for this field type\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"1|Yes,0|No\\\"\\n\\tdefault=\\\"0\\\"\\n\\/>\"', 1, '2019-05-02 21:05:57', '0000-00-00 00:00:00', 1, '', 924, 'ec2ec4a2-a32f-4407-b318-46b5780774e2', '', '', '', '', ''),
(2515, '', '', '', '', '', '', '', '', 255, '', 'TEXT', '', '', '', 'Crowdin Account API (Key)', 'NOT NULL', 3, 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"crowdin_account_api_key\\\"\\n\\tlabel=\\\"Crowdin Account API (Key)<br \\/><small>(encrypted field)<\\/small>\\\"\\n\\tsize=\\\"50\\\"\\n\\tmaxlength=\\\"150\\\"\\n\\tdescription=\\\"Your crowdin API key will be used to interact with your account in relation to global API methods.\\\"\\n\\tclass=\\\"text_area\\\"\\n\\tfilter=\\\"ALNUM\\\"\\n\\tmessage=\\\"Error! Please add api key here.\\\"\\n\\tautocomplete=\\\"off\\\"\\n\\/>\"', 1, '2019-05-07 07:02:39', '2019-05-13 08:37:50', 5, '', 925, '0708c9c5-d918-43f9-8383-f3d4c7459cf9', '', '', '', '', ''),
(2516, '', '', '', '', '', '', '', '', 255, '', 'TEXT', '', '', '', 'Crowdin Project API (Key)', 'NOT NULL', 3, 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"crowdin_project_api_key\\\"\\n\\tlabel=\\\"Crowdin Project API (Key)<br \\/><small>(encrypted field)<\\/small>\\\"\\n\\tsize=\\\"50\\\"\\n\\tmaxlength=\\\"150\\\"\\n\\tdescription=\\\"The crowdin project API key will be used to interact with this project\'s API methods.\\\"\\n\\tclass=\\\"text_area\\\"\\n\\trequired=\\\"true\\\"\\n\\tfilter=\\\"ALNUM\\\"\\n\\tmessage=\\\"Error! Please add api key here.\\\"\\n\\tautocomplete=\\\"off\\\"\\n\\tonchange=\\\"getTranslationToolDetails()\\\"\\n\\/>\"', 1, '2019-05-07 07:04:48', '2019-05-13 08:32:05', 6, '', 925, '81cd22bd-ee49-470e-afa1-1f61b302734b', '', '', '', '', ''),
(2517, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Crowdin Project Identifier', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"crowdin_project_identifier\\\"\\n\\tlabel=\\\"Crowdin Project Identifier\\\"\\n\\tsize=\\\"50\\\"\\n\\tmaxlength=\\\"150\\\"\\n\\tdescription=\\\"Add the crowdin project identifier here.\\\"\\n\\tclass=\\\"text_area\\\"\\n\\trequired=\\\"true\\\"\\n\\tfilter=\\\"CMD\\\"\\n\\tmessage=\\\"Error! Please add identifier here.\\\"\\n\\tautocomplete=\\\"off\\\"\\n\\tonchange=\\\"getTranslationToolDetails()\\\"\\n\\/>\"', 1, '2019-05-07 07:07:39', '2019-05-13 08:32:16', 5, '', 925, '9e7c209f-68df-411a-a6a3-591393bc9d62', '', '', '', '', ''),
(2518, '', '', '', '', '', '', '', '', 255, '', 'TEXT', '', '', '', 'Crowdin Username', 'NOT NULL', 3, 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"crowdin_username\\\"\\n\\tlabel=\\\"Crowdin Username<br \\/><small>(encrypted field)<\\/small>\\\"\\n\\tsize=\\\"50\\\"\\n\\tmaxlength=\\\"150\\\"\\n\\tdescription=\\\"Add the crowdin username here.\\\"\\n\\tclass=\\\"text_area\\\"\\n\\trequired=\\\"true\\\"\\n\\tfilter=\\\"CMD\\\"\\n\\tmessage=\\\"Error! Please add username here.\\\"\\n\\tautocomplete=\\\"off\\\"\\n\\/>\"', 1, '2019-05-07 07:09:02', '2019-05-10 21:22:22', 4, '', 925, '441646d1-27c5-4ea9-80d9-a1931de48b26', '', '', '', '', ''),
(2519, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'items', 'NOT NULL', '', 35, '\"<field\\n\\ttype=\\\"subform\\\"\\n\\tname=\\\"items\\\"\\n\\tlabel=\\\"Items\\\"\\n\\tlayout=\\\"joomla.form.field.subform.repeatable-table\\\"\\n\\tmultiple=\\\"true\\\"\\n\\tbuttons=\\\"add,remove,move\\\"\\n\\tfields=\\\"2526,2531,85,1351,1293\\\"\\n\\ticon=\\\"list\\\"\\n\\tmin=\\\"1\\\"\\n\\/>\"', 1, '2019-05-07 08:24:10', '2019-05-25 11:18:48', 4, '', 926, 'c88b7033-3ab5-4c67-a51b-28dc1e92f18b', '', '', '', '', ''),
(2520, '', '', '', '', '', '', 'Other', '0000-00-00 00:00:00', '', '', 'DATETIME', '', '', '', 'Date (payment)', 'NOT NULL', '', 1, '\"<field\\n\\ttype=\\\"calendar\\\"\\n\\tname=\\\"payment_date\\\"\\n\\tlabel=\\\"Date\\\"\\n\\tdefault=\\\"now\\\"\\n\\tformat=\\\"%Y-%m-%d\\\"\\n\\tfilter=\\\"user_utc\\\"\\n\\tsize=\\\"22\\\"\\n\\/>\"', 1, '2019-05-07 10:01:51', '2017-09-21 22:26:50', 1, '', 167, '74bab787-24e8-465d-8d1f-905bc3e530c5', '', '', '', '', ''),
(2521, '', '', '', '', '', '', 'Other', '0000-00-00 00:00:00', '', '', 'DATETIME', '', '', '', 'Date (invoice)', 'NOT NULL', '', 1, '\"<field\\n\\ttype=\\\"calendar\\\"\\n\\tname=\\\"invoice_date\\\"\\n\\tlabel=\\\"Date\\\"\\n\\tdefault=\\\"now\\\"\\n\\tformat=\\\"%Y-%m-%d\\\"\\n\\tfilter=\\\"user_utc\\\"\\n\\tsize=\\\"22\\\"\\n\\/>\"', 1, '2019-05-07 10:05:23', '2017-09-21 22:26:50', 1, '', 167, '2f6ba834-d0c0-429a-8afa-bc2821384534', '', '', '', '', ''),
(2522, '', '', '', '', '', '', 'Other', '0000-00-00 00:00:00', '', '', 'DATETIME', '', '', '', 'Date (Due)', 'NOT NULL', '', 1, '\"<field\\n\\ttype=\\\"calendar\\\"\\n\\tname=\\\"due_date\\\"\\n\\tlabel=\\\"Date\\\"\\n\\tdefault=\\\"now\\\"\\n\\tformat=\\\"%Y-%m-%d\\\"\\n\\tfilter=\\\"user_utc\\\"\\n\\tsize=\\\"22\\\"\\n\\/>\"', 1, '2019-05-07 10:05:45', '2017-09-21 22:26:50', 1, '', 167, 'a6b6fff2-012c-4cd4-893d-b37d81d2ea49', '', '', '', '', ''),
(2523, '', '', '', '', '', '', '', '', 100, '', 'VARCHAR', '', '', '', 'Amount (payment)', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"payment_amount\\\"\\n\\tlabel=\\\"Amount\\\"\\n\\tsize=\\\"10\\\"\\n\\tmaxlength=\\\"50\\\"\\n\\tdescription=\\\"The amount paid.\\\"\\n\\tclass=\\\"text_area\\\"\\n\\tfilter=\\\"FLOAT\\\"\\n\\tmessage=\\\"Error! Please add amount paid here.\\\"\\n\\thint=\\\"Only Numbers & dot\\\"\\n\\tonchange=\\\"if(!jQuery(this).val().match(\\/^\\\\d+\\\\.\\\\d+$\\/)){jQuery(this).val(\'\')};\\\"\\n\\/>\"', 1, '2019-05-07 20:08:30', '2019-05-07 20:09:39', 2, '', 7, 'cc4fe402-abdf-47f6-a156-eda553a4c6b1', '', '', '', '', ''),
(2524, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Translation Tool', 'NOT NULL', '', 11, '\"<field\\n\\ttype=\\\"list\\\"\\n\\tname=\\\"translation_tool\\\"\\n\\tlabel=\\\"Translation Tool\\\"\\n\\tclass=\\\"list_class\\\"\\n\\tmultiple=\\\"false\\\"\\n\\toption=\\\"0|None,1|Crowdin\\\"\\n\\tdefault=\\\"0\\\"\\n\\/>\"', 1, '2019-05-10 21:03:55', '0000-00-00 00:00:00', 1, '', 927, '43d7329c-c5f7-4bde-ab6e-a9a743879b51', '', '', '', '', ''),
(2525, '', '', '', '', '', '', '', '', '', '', '', '', '', '', 'Crowdin Note', 'NOT NULL', '', 14, '\"<field\\n\\ttype=\\\"note\\\"\\n\\tname=\\\"note_crowdin\\\"\\n\\tlabel=\\\"Crowdin\\\"\\n\\tdescription=\\\"[CUSTOMCODE=crowdinInformationBox]\\\"\\n\\theading=\\\"h2\\\"\\n\\/>\"', 1, '2019-05-12 14:17:18', '2019-05-13 08:17:19', 2, '', 928, 'e481162d-0eb2-473a-ac28-180cb87cda01', '', '', '', '', ''),
(2526, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Hash', 'NOT NULL', '', 9, '\"<field\\n\\ttype=\\\"hidden\\\"\\n\\tname=\\\"hash\\\"\\n\\tfilter=\\\"STRING\\\"\\n\\/>\"', 1, '2019-05-20 19:38:59', '0000-00-00 00:00:00', 1, '', 929, '2955c1b6-b15d-4e45-9cee-e90718806712', '', '', '', '', ''),
(2527, '', '', '', '', '', '', '', '', 11, '', 'INT', '', '', '', 'Invoice (form)', 'NOT NULL', '', 6, '\"<field\\n\\ttype=\\\"invoice\\\"\\n\\tname=\\\"invoice\\\"\\n\\tlabel=\\\"Invoice\\\"\\n\\tdescription=\\\"The invoice this belongs to.\\\"\\n\\tclass=\\\"list_class\\\"\\n\\tmultiple=\\\"false\\\"\\n\\tdefault=\\\"0\\\"\\n\\textends=\\\"list\\\"\\n\\tbutton=\\\"false\\\"\\n\\ttable=\\\"#__###component###_form\\\"\\n\\tcomponent=\\\"com_###component###\\\"\\n\\tview=\\\"form\\\"\\n\\tviews=\\\"forms\\\"\\n\\tvalue_field=\\\"number\\\"\\n\\tkey_field=\\\"id\\\"\\n\\ttype_php_1=\\\"__.o0=base64=Oo.__CSRkYiA9IEpGYWN0b3J5OjpnZXREQk8oKTsNCgkkcXVlcnkgPSAkZGItPmdldFF1ZXJ5KHRydWUpOw0KCSRxdWVyeS0+c2VsZWN0KCRkYi0+cXVvdGVOYW1lKGFycmF5KCdhLiMjI0lEIyMjJywnYi5uYW1lJyksYXJyYXkoJyMjI0lEIyMjJywnIyMjQ09ERV9URVhUIyMjJykpKTsNCgkkcXVlcnktPmZyb20oJGRiLT5xdW90ZU5hbWUoJyMjI1RBQkxFIyMjJywgJ2EnKSk7DQoJJHF1ZXJ5LT53aGVyZSgkZGItPnF1b3RlTmFtZSgnYS5wdWJsaXNoZWQnKSAuICcgPj0gMScpOw0KCSRxdWVyeS0+b3JkZXIoJ2IubmFtZSBBU0MnKTsNCgkkZGItPnNldFF1ZXJ5KChzdHJpbmcpJHF1ZXJ5KTsNCgkkaXRlbXMgPSAkZGItPmxvYWRPYmplY3RMaXN0KCk7DQoJJG9wdGlvbnMgPSBhcnJheSgpOw0KCWlmICgkaXRlbXMpDQoJew0KCQlmb3JlYWNoKCRpdGVtcyBhcyAkaXRlbSkNCgkJew0KCQkJJG9wdGlvbnNbXSA9IEpIdG1sOjpfKCdzZWxlY3Qub3B0aW9uJywgJGl0ZW0tPiMjI0lEIyMjLCAkaXRlbS0+IyMjQ09ERV9URVhUIyMjKTsNCgkJfQ0KCX0NCglyZXR1cm4gJG9wdGlvbnM7DQo=\\\"\\n\\/>\"', 1, '2019-05-22 08:41:53', '2016-05-02 18:23:58', 1, '', 698, 'f2788168-91a9-4a75-805e-9950c11e948a', '', '', '', '', ''),
(2528, '', '', '', '', '', '', '', '', 7, '', 'CHAR', 2, '', '', 'Currency (coral)', 'NOT NULL', '', 6, '\"<field\\n\\ttype=\\\"currency\\\"\\n\\tname=\\\"currency\\\"\\n\\tlabel=\\\"Currency\\\"\\n\\tdescription=\\\"List of available currencies\\\"\\n\\tclass=\\\"list_class\\\"\\n\\tmultiple=\\\"false\\\"\\n\\tdefault=\\\"\\\"\\n\\trequired=\\\"true\\\"\\n\\treadonly=\\\"\\\"\\n\\tdisabled=\\\"\\\"\\n\\textends=\\\"list\\\"\\n\\ttable=\\\"#__[[[core_company]]]_currency\\\"\\n\\tcomponent=\\\"com_[[[core_company]]]\\\"\\n\\tview=\\\"currency\\\"\\n\\tviews=\\\"currencies\\\"\\n\\tvalue_field=\\\"name\\\"\\n\\tkey_field=\\\"codethree\\\"\\n\\ttype_php_1=\\\"__.o0=base64=Oo.__CQkkZGIgPSBKRmFjdG9yeTo6Z2V0REJPKCk7DQoJCSRxdWVyeSA9ICRkYi0+Z2V0UXVlcnkodHJ1ZSk7DQoJCSRxdWVyeS0+c2VsZWN0KCRkYi0+cXVvdGVOYW1lKGFycmF5KCdhLiMjI0lEIyMjJywnYS4jIyNURVhUIyMjJyksYXJyYXkoJyMjI0lEIyMjJywnIyMjQ09ERV9URVhUIyMjJykpKTsNCgkJJHF1ZXJ5LT5mcm9tKCRkYi0+cXVvdGVOYW1lKCcjIyNUQUJMRSMjIycsICdhJykpOw0KCQkkcXVlcnktPndoZXJlKCRkYi0+cXVvdGVOYW1lKCdhLnB1Ymxpc2hlZCcpIC4gJyA9IDEnKTsNCgkJJHF1ZXJ5LT5vcmRlcignYS4jIyNURVhUIyMjIEFTQycpOw0KCQkkZGItPnNldFF1ZXJ5KChzdHJpbmcpJHF1ZXJ5KTsNCgkJJGl0ZW1zID0gJGRiLT5sb2FkT2JqZWN0TGlzdCgpOw0KCQkkb3B0aW9ucyA9IGFycmF5KCk7DQoJCWlmICgkaXRlbXMpDQoJCXsNCgkJCWZvcmVhY2goJGl0ZW1zIGFzICRpdGVtKQ0KCQkJew0KCQkJCSRvcHRpb25zW10gPSBKSHRtbDo6Xygnc2VsZWN0Lm9wdGlvbicsICRpdGVtLT4jIyNJRCMjIywgJGl0ZW0tPiMjI0NPREVfVEVYVCMjIyk7DQoJCQl9DQoJCX0NCgkJcmV0dXJuICRvcHRpb25zOw==\\\"\\n\\/>\"', 1, '2019-05-22 08:49:25', '2019-05-22 08:52:03', 2, '', 559, '8deaabd2-193c-447c-976f-a93f7cb163f2', '', '', '', '', ''),
(2529, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'Company (external)', 'NOT NULL', '', 6, '\"<field\\n\\ttype=\\\"member\\\"\\n\\tname=\\\"company\\\"\\n\\tlabel=\\\"Company\\\"\\n\\tclass=\\\"list_class\\\"\\n\\tmultiple=\\\"false\\\"\\n\\trequired=\\\"true\\\"\\n\\textends=\\\"list\\\"\\n\\ttable=\\\"#__[[[core]]]_member\\\"\\n\\tcomponent=\\\"com_[[[core]]]\\\"\\n\\tview=\\\"member\\\"\\n\\tviews=\\\"members\\\"\\n\\tvalue_field=\\\"token\\\"\\n\\tkey_field=\\\"id\\\"\\n\\tprime_php=\\\"1\\\"\\n\\ttype_php_1=\\\"__.o0=base64=Oo.__W0NVU1RPTUNPREU9Z2V0RXh0ZXJuYWxNZW1iZXJzK21lbWJlcixNZW1iZXJd\\\"\\n\\/>\"', 1, '2019-05-25 07:21:37', '2019-05-25 08:39:21', 4, '', 384, 'bb86b922-8681-48a3-a2c2-4a28213775e9', '', '', '', '', ''),
(2530, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'Form (invoice)', 'NOT NULL', '', 6, '\"<field\\n\\ttype=\\\"forminvoice\\\"\\n\\tname=\\\"form\\\"\\n\\tlabel=\\\"Invoice\\\"\\n\\tdescription=\\\"The invoice this item is linked to.\\\"\\n\\tclass=\\\"list_class\\\"\\n\\tmultiple=\\\"false\\\"\\n\\tdefault=\\\"0\\\"\\n\\trequired=\\\"true\\\"\\n\\tvalidate=\\\"number\\\"\\n\\textends=\\\"list\\\"\\n\\ttable=\\\"#__###component###_form\\\"\\n\\tcomponent=\\\"com_###component###\\\"\\n\\tview=\\\"form\\\"\\n\\tviews=\\\"forms\\\"\\n\\tvalue_field=\\\"number\\\"\\n\\tkey_field=\\\"id\\\"\\n\\tprime_php=\\\"1\\\"\\n\\ttype_php_1=\\\"__.o0=base64=Oo.__CQkvLyBHZXQgdGhlIHVzZXIgb2JqZWN0Lg0KCQkkdXNlciA9IEpGYWN0b3J5OjpnZXRVc2VyKCk7DQoJCS8vIEdldCB0aGUgZGF0YWJzZSBvYmplY3QuDQoJCSRkYiA9IEpGYWN0b3J5OjpnZXREQk8oKTsNCgkJJHF1ZXJ5ID0gJGRiLT5nZXRRdWVyeSh0cnVlKTsNCgkJJHF1ZXJ5LT5zZWxlY3QoJGRiLT5xdW90ZU5hbWUoYXJyYXkoJ2EuIyMjSUQjIyMnLCdhLiMjI1RFWFQjIyMnKSwgYXJyYXkoJyMjI0lEIyMjJywnIyMjQ09ERV9URVhUIyMjJykpKTsNCgkJJHF1ZXJ5LT5mcm9tKCRkYi0+cXVvdGVOYW1lKCcjIyNUQUJMRSMjIycsICdhJykpOw0KCQkkcXVlcnktPndoZXJlKCRkYi0+cXVvdGVOYW1lKCdhLnB1Ymxpc2hlZCcpIC4gJyA+PSAxJyk7DQoJCSRxdWVyeS0+b3JkZXIoJ2EuIyMjVEVYVCMjIyBBU0MnKTsNCgkJLy8gSW1wbGVtZW50IFZpZXcgTGV2ZWwgQWNjZXNzIChpZiBzZXQgaW4gdGFibGUpDQoJCWlmICghJHVzZXItPmF1dGhvcmlzZSgnY29yZS5vcHRpb25zJywgJ1tbW2NvbV9jb21wb25lbnRdXV0nKSkNCgkJew0KCQkJJGNvbHVtbnMgPSAkZGItPmdldFRhYmxlQ29sdW1ucygnIyMjVEFCTEUjIyMnKTsNCgkJCWlmKGlzc2V0KCRjb2x1bW5zWydhY2Nlc3MnXSkpDQoJCQl7DQoJCQkJJGdyb3VwcyA9IGltcGxvZGUoJywnLCAkdXNlci0+Z2V0QXV0aG9yaXNlZFZpZXdMZXZlbHMoKSk7DQoJCQkJJHF1ZXJ5LT53aGVyZSgnYS5hY2Nlc3MgSU4gKCcgLiAkZ3JvdXBzIC4gJyknKTsNCgkJCX0NCgkJfQ0KCQkkZGItPnNldFF1ZXJ5KChzdHJpbmcpJHF1ZXJ5KTsNCgkJJGl0ZW1zID0gJGRiLT5sb2FkT2JqZWN0TGlzdCgpOw0KCQkkb3B0aW9ucyA9IGFycmF5KCk7DQoJCWlmICgkaXRlbXMpDQoJCXsNCgkJCSRvcHRpb25zW10gPSBKSHRtbDo6Xygnc2VsZWN0Lm9wdGlvbicsICcnLCAnU2VsZWN0IGFuIG9wdGlvbicpOw0KCQkJZm9yZWFjaCgkaXRlbXMgYXMgJGl0ZW0pDQoJCQl7DQoJCQkJJG9wdGlvbnNbXSA9IEpIdG1sOjpfKCdzZWxlY3Qub3B0aW9uJywgJGl0ZW0tPiMjI0lEIyMjLCAkaXRlbS0+IyMjQ09ERV9URVhUIyMjKTsNCgkJCX0NCgkJfQ0KCQlyZXR1cm4gJG9wdGlvbnM7\\\"\\n\\/>\"', 1, '2019-05-25 08:32:14', '2019-05-25 08:34:15', 2, '', 930, '06f82ff5-62f6-4892-a44f-0f11a0244add', '', '', '', '', ''),
(2531, '', '', '', '', '', '', '', '', 100, '', 'VARCHAR', 2, '', '', 'Product Code (coral)', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"product_code\\\"\\n\\tlabel=\\\"Product Code\\\"\\n\\tsize=\\\"50\\\"\\n\\tmaxlength=\\\"150\\\"\\n\\tclass=\\\"text_area\\\"\\n\\tfilter=\\\"CMD\\\"\\n\\thint=\\\"product_code\\\"\\n\\/>\"', 1, '2019-05-25 11:17:46', '2019-06-07 14:57:18', 4, '', 7, '904cf722-1c0f-4f18-91d9-c760858a7ea6', '', '', '', '', ''),
(2532, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Add PHP (script - before cancel)', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"add_php_before_cancel\\\"\\n\\tlabel=\\\"Add PHP (script - before cancel)\\\"\\n\\tdescription=\\\"\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"1|Yes,0|No\\\"\\n\\tdefault=\\\"0\\\"\\n\\trequired=\\\"true\\\"\\n\\/>\"', 1, '2019-06-12 19:29:54', '2019-06-12 19:29:12', 1, '', 187, '5b8bfcb4-a2b0-4ee9-931e-474ae9742e76', '', '', '', '', ''),
(2533, '', '', '', '', '', '', '', '', '', '', 'MEDIUMTEXT', '', '', '', 'PHP (script - before cancel)', 'NOT NULL', 2, 8, '\"<field\\n\\ttype=\\\"editor\\\"\\n\\tname=\\\"php_before_cancel\\\"\\n\\tlabel=\\\"PHP Cancel Method before<br \\/><small>(string) $key is the name of the primary key of the URL variable.<\\/small>\\\"\\n\\tdescription=\\\"Add PHP Here that should run in the Cancel Method before cancel. 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, '2019-06-12 19:33:43', '2019-07-08 14:20:31', 3, '', 119, '0523633b-2f83-4205-ad7a-f4a77dff3dd0', '', '', '', '', ''),
(2534, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Add PHP (script - after cancel)', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"add_php_after_cancel\\\"\\n\\tlabel=\\\"Add PHP (script - after cancel)\\\"\\n\\tdescription=\\\"\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"1|Yes,0|No\\\"\\n\\tdefault=\\\"0\\\"\\n\\trequired=\\\"true\\\"\\n\\/>\"', 1, '2019-06-12 20:23:25', '2019-06-12 19:29:12', 1, '', 187, '1e5269aa-e342-4b63-830e-f0a7acb2dab4', '', '', '', '', ''),
(2535, '', '', '', '', '', '', '', '', '', '', 'MEDIUMTEXT', '', '', '', 'PHP (script - after cancel)', 'NOT NULL', 2, 8, '\"<field\\n\\ttype=\\\"editor\\\"\\n\\tname=\\\"php_after_cancel\\\"\\n\\tlabel=\\\"PHP Cancel Method after<br \\/><small>(string) $key is the name of the primary key of the URL variable.<\\/small>\\\"\\n\\tdescription=\\\"Add PHP Here that should run in the Cancel Method after cancel. 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, '2019-06-12 20:23:49', '2019-07-08 14:20:36', 2, '', 119, '5637623b-c82f-4ce2-be82-e262e9596fa2', '', '', '', '', ''),
(2536, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'Component (JCB)', 'NOT NULL', '', 6, '\"<field\\n\\ttype=\\\"joomlacomponent\\\"\\n\\tname=\\\"component_id\\\"\\n\\tlabel=\\\"Component\\\"\\n\\tdescription=\\\"\\\"\\n\\tclass=\\\"list_class\\\"\\n\\tmultiple=\\\"false\\\"\\n\\tdefault=\\\"0\\\"\\n\\textends=\\\"list\\\"\\n\\tbutton=\\\"true\\\"\\n\\ttable=\\\"#__###component###_joomla_component\\\"\\n\\tcomponent=\\\"com_###component###\\\"\\n\\tview=\\\"joomla_component\\\"\\n\\tviews=\\\"joomla_components\\\"\\n\\tvalue_field=\\\"system_name\\\"\\n\\tkey_field=\\\"id\\\"\\n\\ttype_php_1=\\\"__.o0=base64=Oo.__JGRiID0gSkZhY3Rvcnk6OmdldERCTygpOw0KCQkkcXVlcnkgPSAkZGItPmdldFF1ZXJ5KHRydWUpOw0KCQkkcXVlcnktPnNlbGVjdCgkZGItPnF1b3RlTmFtZShhcnJheSgnYS4jIyNJRCMjIycsJ2EuIyMjVEVYVCMjIycpLGFycmF5KCcjIyNJRCMjIycsJyMjI0NPREVfVEVYVCMjIycpKSk7DQoJCSRxdWVyeS0+ZnJvbSgkZGItPnF1b3RlTmFtZSgnIyMjVEFCTEUjIyMnLCAnYScpKTsNCgkJJHF1ZXJ5LT53aGVyZSgkZGItPnF1b3RlTmFtZSgnYS5wdWJsaXNoZWQnKSAuICcgPj0gMScpOw0KCQkkcXVlcnktPm9yZGVyKCdhLiMjI1RFWFQjIyMgQVNDJyk7DQoJCSRkYi0+c2V0UXVlcnkoKHN0cmluZykkcXVlcnkpOw0KCQkkaXRlbXMgPSAkZGItPmxvYWRPYmplY3RMaXN0KCk7DQoJCSRvcHRpb25zID0gYXJyYXkoKTsNCgkJaWYgKCRpdGVtcykNCgkJew0KCQkJJG9wdGlvbnNbXSA9IEpIdG1sOjpfKCdzZWxlY3Qub3B0aW9uJywgJycsICdTZWxlY3QgYW4gb3B0aW9uJyk7DQoJCQlmb3JlYWNoKCRpdGVtcyBhcyAkaXRlbSkNCgkJCXsNCgkJCQkkb3B0aW9uc1tdID0gSkh0bWw6Ol8oJ3NlbGVjdC5vcHRpb24nLCAkaXRlbS0+IyMjSUQjIyMsICRpdGVtLT4jIyNDT0RFX1RFWFQjIyMpOw0KCQkJfQ0KCQl9DQoNCgkJcmV0dXJuICRvcHRpb25zOw==\\\"\\n\\/>\"', 1, '2019-06-13 16:24:46', '2022-08-25 20:26:04', 3, '', 733, '57f11fad-7541-485f-bd0d-dfd97c406524', '', '', '', '', ''),
(2537, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'Install Local', 'NOT NULL', '', 11, '\"<field\\n\\ttype=\\\"list\\\"\\n\\tname=\\\"install\\\"\\n\\tlabel=\\\"Install\\\"\\n\\tdescription=\\\"Component locally\\\"\\n\\tclass=\\\"list_class\\\"\\n\\tmultiple=\\\"false\\\"\\n\\tvalidate=\\\"\\\"\\n\\toption=\\\"1|True,2|False\\\"\\n\\tdefault=\\\"1\\\"\\n\\/>\"', 1, '2019-06-17 09:40:20', '2019-06-17 09:57:53', 3, '', 931, '873e29f6-3b13-45b6-aa1e-ac6fac756664', '', '', '', '', ''),
(2538, '', '', '', '', '', '', '', '', 64, '', 'VARCHAR', 2, '', '', 'Activate Compiler Plugins (JCB)', 'NOT NULL', '', 37, '\"<field\\n\\ttype=\\\"plugins\\\"\\n\\tname=\\\"compiler_plugin\\\"\\n\\tlabel=\\\"Activate Compiler Plugins\\\"\\n\\tdescription=\\\"Select the plugin you would like to use in JCB\'s compiler\\\"\\n\\tfolder=\\\"extension\\\"\\n\\tfilter=\\\"cmd\\\"\\n\\tmultiple=\\\"true\\\"\\n\\/>\"', 1, '2019-06-19 23:04:42', '2019-06-19 23:06:38', 2, '', 866, '0c231aa3-5e51-4736-bc8c-77dc3ce44fa1', '', '', '', '', ''),
(2539, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Value (not required)', 'NOT NULL', '', 25, '\"<field\\n\\ttype=\\\"textarea\\\"\\n\\tname=\\\"value\\\"\\n\\tlabel=\\\"Value\\\"\\n\\trows=\\\"10\\\"\\n\\tcols=\\\"5\\\"\\n\\tdefault=\\\"\\\"\\n\\tdescription=\\\"\\\"\\n\\tclass=\\\"text_area span12\\\"\\n\\tfilter=\\\"STRING\\\"\\n\\/>\"', 1, '2019-06-24 12:43:43', '2015-10-20 17:36:29', 1, '', 129, 'e3500901-96d1-4c3f-9807-23c1ad916f4d', '', '', '', '', ''),
(2540, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'Sinus Rhythm : In Stress ECG', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"ecg_sinus_rhythm_stress\\\"\\n\\tlabel=\\\"Sinus Rhythm : In Stress ECG\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"1|Yes,0|No\\\"\\n\\tdefault=\\\"1\\\"\\n\\tmessage=\\\"Please select\\\"\\n\\/>\"', 1, '2019-06-27 21:35:20', '2019-06-28 10:47:38', 3, '', 859, '2f3b0f05-e6a0-4745-a687-2883642020eb', '', '', '', '', ''),
(2541, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'P-wave Interval Normal?', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"ecg_pwave_interval_normal\\\"\\n\\tlabel=\\\"P-wave Interval Normal?\\\"\\n\\tdescription=\\\"120 - 200ms (3 - 5 Blocks)\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"1|Yes,0|No\\\"\\n\\tdefault=\\\"1\\\"\\n\\tmessage=\\\"Please select\\\"\\n\\/>\"', 1, '2019-06-27 21:38:21', '2019-06-28 10:47:47', 5, '', 859, '692cbc23-42d9-4638-821b-a85ff5849f93', '', '', '', '', ''),
(2542, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'QRS Upright in I & II', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"ecg_qrs_upright_i_and_ii\\\"\\n\\tlabel=\\\"QRS Upright in I & II\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"1|Yes,0|No\\\"\\n\\tdefault=\\\"1\\\"\\n\\tmessage=\\\"Please select\\\"\\n\\/>\"', 1, '2019-06-27 21:48:55', '2019-06-28 10:47:54', 3, '', 859, 'c569e11a-66e3-4867-b3da-3c00ea3ddbfd', '', '', '', '', ''),
(2543, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'QRS & T Wave', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"ecg_qrs_twave\\\"\\n\\tlabel=\\\"QRS & T Wave - limb leads has same general direction\\\"\\n\\tdescription=\\\"Both + or Both -\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"1|Yes,0|No\\\"\\n\\tdefault=\\\"1\\\"\\n\\tmessage=\\\"Please select\\\"\\n\\/>\"', 1, '2019-06-27 21:51:39', '2019-06-28 10:48:01', 4, '', 859, 'd212fbff-25cd-4b39-a759-01294ed1c674', '', '', '', '', ''),
(2544, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'ST Segment is Isoelectric', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"ecg_st_segment_isoelectric\\\"\\n\\tlabel=\\\"ST Segment is Isoelectric<br \\/>\\r\\n<small>(except in V1 & V2 where it is elevated)<\\/small>\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"1|Yes,0|No\\\"\\n\\tdefault=\\\"1\\\"\\n\\tmessage=\\\"please select\\\"\\n\\/>\"', 1, '2019-06-28 00:17:02', '2019-06-28 10:48:09', 2, '', 859, '5b1033b2-1bcc-48f2-ac52-dd394a36f065', '', '', '', '', ''),
(2545, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'Osborn Waves noted?', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"ecg_osborn_waves_noted\\\"\\n\\tlabel=\\\"Osborn Waves noted?\\\"\\n\\tdescription=\\\"Hypercalcemia\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"0|Yes,1|No\\\"\\n\\tdefault=\\\"1\\\"\\n\\tmessage=\\\"please select\\\"\\n\\/>\"', 1, '2019-06-28 00:18:13', '2019-06-28 10:48:17', 2, '', 859, 'ba296636-5567-42f8-8ea9-f8db8946d884', '', '', '', '', ''),
(2546, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'Wellen\'s Syndrome?', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"ecg_wellens_syndrome\\\"\\n\\tlabel=\\\"Wellen\'s Syndrome?\\\"\\n\\tdescription=\\\"Deeply inverted T-waves in V2 & V3\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"0|Yes,1|No\\\"\\n\\tdefault=\\\"1\\\"\\n\\tmessage=\\\"please select\\\"\\n\\/>\"', 1, '2019-06-28 00:23:16', '2019-06-28 10:48:27', 2, '', 859, '08100e5b-af2e-4a1b-ab97-e0e98429f0e5', '', '', '', '', ''),
(2547, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'De Winter T-waves', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"ecg_winter_twaves\\\"\\n\\tlabel=\\\"De Winter T-waves\\\"\\n\\tdescription=\\\"Tall Symmetrical T-waves, Upsloping ST Segment<br \\/>\\r\\nDepression of >1mm, NO ST Segment elevation in V1-V3\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"0|Yes,1|No\\\"\\n\\tdefault=\\\"1\\\"\\n\\tmessage=\\\"please select\\\"\\n\\/>\"', 1, '2019-06-28 00:24:12', '2019-06-28 10:48:36', 2, '', 859, 'db12e7c3-853b-4404-825c-9edfb09aa8b7', '', '', '', '', ''),
(2548, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'Peaked T-waves Noted?', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"ecg_peaked_twaves_noted\\\"\\n\\tlabel=\\\"Peaked T-waves Noted?\\\"\\n\\tdescription=\\\"Hyperkalemia\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"0|Yes,1|No\\\"\\n\\tdefault=\\\"1\\\"\\n\\tmessage=\\\"please select\\\"\\n\\/>\"', 1, '2019-06-28 00:25:15', '2019-06-28 10:48:44', 2, '', 859, 'e79f592b-0eaf-411a-80d5-70df4ae25b65', '', '', '', '', ''),
(2549, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'U-waves Noted?', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"ecg_uwaves_noted\\\"\\n\\tlabel=\\\"U-waves Noted?\\\"\\n\\tdescription=\\\"Hypokalemia\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"0|Yes,1|No\\\"\\n\\tdefault=\\\"1\\\"\\n\\tmessage=\\\"please select\\\"\\n\\/>\"', 1, '2019-06-28 00:25:45', '2019-06-28 10:48:52', 3, '', 859, '10b09d7f-54cf-4f0a-83cf-e4bc88340268', '', '', '', '', ''),
(2550, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'Wolf Parkinson White', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"ecg_wolf_parkinson_white\\\"\\n\\tlabel=\\\"Wolf Parkinson White\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"0|Yes,1|No\\\"\\n\\tdefault=\\\"1\\\"\\n\\tmessage=\\\"please select\\\"\\n\\/>\"', 1, '2019-06-28 00:26:48', '2019-06-28 10:48:59', 2, '', 859, '52649ab5-886c-46b4-82be-4132e775d34c', '', '', '', '', ''),
(2551, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'LGL', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"ecg_lgl\\\"\\n\\tlabel=\\\"LGL\\\"\\n\\tdescription=\\\"No Pause between P and R, i.e No PR segment\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"0|Yes,1|No\\\"\\n\\tdefault=\\\"1\\\"\\n\\tmessage=\\\"please select\\\"\\n\\/>\"', 1, '2019-06-28 00:27:22', '2019-06-28 10:49:08', 2, '', 859, '60d9081f-f107-454a-80b4-b40786437b94', '', '', '', '', ''),
(2552, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'Brugada Syndrome', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"ecg_brugada_syndrome\\\"\\n\\tlabel=\\\"Brugada Syndrome\\\"\\n\\tdescription=\\\"ST Elevation in V1 - V3 + Right Bundle Branch Block\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"0|Yes,1|No\\\"\\n\\tdefault=\\\"1\\\"\\n\\tmessage=\\\"please select\\\"\\n\\/>\"', 1, '2019-06-28 00:27:50', '2019-06-28 10:49:16', 2, '', 859, 'c1e9584d-a3b2-43f2-a349-33ecb3cd09bd', '', '', '', '', ''),
(2553, '', '', '', '', '', '', '', '', '', '', '', '', '', '', 'RHYTHM', 'NOT NULL', '', 14, '\"<field\\n\\ttype=\\\"note\\\"\\n\\tname=\\\"ecg_rhythm_note\\\"\\n\\tlabel=\\\"RHYTHM\\\"\\n\\theading=\\\"h4\\\"\\n\\/>\"', 1, '2019-06-28 00:28:45', '2019-06-28 00:26:06', 1, '', 859, '296b9c89-09fa-4c06-8c37-568eb2a17d30', '', '', '', '', ''),
(2554, '', '', '', '', '', '', '', '', '', '', '', '', '', '', 'GENERAL ', 'NOT NULL', '', 14, '\"<field\\n\\ttype=\\\"note\\\"\\n\\tname=\\\"ecg_general_note\\\"\\n\\tlabel=\\\"GENERAL \\\"\\n\\theading=\\\"h4\\\"\\n\\/>\"', 1, '2019-06-28 00:29:04', '2019-06-28 00:26:06', 1, '', 859, '3e1676c2-5eaa-41ca-9e42-e55386a2bdf1', '', '', '', '', ''),
(2555, '', '', '', '', '', '', '', '', '', '', '', '', '', '', 'AXIS', 'NOT NULL', '', 14, '\"<field\\n\\ttype=\\\"note\\\"\\n\\tname=\\\"ecg_axis_note\\\"\\n\\tlabel=\\\"AXIS\\\"\\n\\theading=\\\"h4\\\"\\n\\/>\"', 1, '2019-06-28 09:54:35', '2019-06-28 00:26:06', 1, '', 859, 'b36abb0d-4001-4f22-bc87-86f518398722', '', '', '', '', ''),
(2556, '', '', '', '', '', '', '', '', '', '', '', '', '', '', 'HYPERTROPHY', 'NOT NULL', '', 14, '\"<field\\n\\ttype=\\\"note\\\"\\n\\tname=\\\"ecg_hypertrophy_note\\\"\\n\\tlabel=\\\"HYPERTROPHY\\\"\\n\\theading=\\\"h4\\\"\\n\\/>\"', 1, '2019-06-28 09:54:51', '2019-06-28 00:26:06', 1, '', 859, 'a4b848d8-93f7-4b44-be59-8d326ee69950', '', '', '', '', ''),
(2557, '', '', '', '', '', '', '', '', '', '', '', '', '', '', 'T-WAVES & ST SEGMENTS', 'NOT NULL', '', 14, '\"<field\\n\\ttype=\\\"note\\\"\\n\\tname=\\\"ecg_twaves_st_segments_note\\\"\\n\\tlabel=\\\"T-WAVES & ST SEGMENTS\\\"\\n\\theading=\\\"h4\\\"\\n\\/>\"', 1, '2019-06-28 09:55:05', '2019-06-28 09:56:23', 3, '', 859, 'aa5838db-1fe4-4be2-aca3-fddd5792a1d4', '', '', '', '', ''),
(2558, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'Electrical Axis ', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"ecg_electrical_axis\\\"\\n\\tlabel=\\\"Electrical Axis\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"1|Normal,0|Abnormal\\\"\\n\\tdefault=\\\"1\\\"\\n\\tmessage=\\\"please select\\\"\\n\\/>\"', 1, '2019-06-28 09:57:22', '2019-06-28 10:49:26', 2, '', 859, '1d32eef9-a4fd-4319-9401-8777aa546b8b', '', '', '', '', ''),
(2559, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'Left Atrial', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"ecg_left_atrial\\\"\\n\\tlabel=\\\"Left Atrial\\\"\\n\\tdescription=\\\"Large Diphasic P-wave with wide,<br \\/>\\r\\nnegative terminal component\\/Bifid 2 humped P-wave\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"0|Yes,1|No\\\"\\n\\tdefault=\\\"1\\\"\\n\\tmessage=\\\"please select\\\"\\n\\/>\"', 1, '2019-06-28 09:58:22', '2019-06-28 10:49:35', 2, '', 859, '00e6808d-0fb5-4f69-ae02-770c71592011', '', '', '', '', ''),
(2560, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'Right Atrial', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"ecg_right_atrial\\\"\\n\\tlabel=\\\"Right Atrial\\\"\\n\\tdescription=\\\"Large Diphasic P-wave with tall, spiked initial component\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"0|Yes,1|No\\\"\\n\\tdefault=\\\"1\\\"\\n\\tmessage=\\\"please select\\\"\\n\\/>\"', 1, '2019-06-28 09:58:50', '2019-06-28 10:49:42', 2, '', 859, '46a9f184-6963-4e20-b654-4f2ee153c5fc', '', '', '', '', ''),
(2561, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'Left Ventricular', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"ecg_left_ventricular\\\"\\n\\tlabel=\\\"Left Ventricular\\\"\\n\\tdescription=\\\"mm of S-wave in V1 + mm of R-wave in V5>35mm:<br \\/>\\r\\nT-wave inversion in left chest leads - slow decline - rapid rise\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"0|Yes,1|No\\\"\\n\\tdefault=\\\"1\\\"\\n\\tmessage=\\\"please select\\\"\\n\\/>\"', 1, '2019-06-28 10:17:00', '2019-06-28 10:49:49', 2, '', 859, 'aea8d527-0b92-4e94-be68-6a4999e8c0a8', '', '', '', '', ''),
(2562, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'Right Ventricular', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"ecg_right_ventricular\\\"\\n\\tlabel=\\\"Right Ventricular\\\"\\n\\tdescription=\\\"Dominant R-wave in V1, decrease to V4 - NEEDS CONFIRMATION\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"0|Yes,1|No\\\"\\n\\tdefault=\\\"1\\\"\\n\\tmessage=\\\"please select\\\"\\n\\/>\"', 1, '2019-06-28 10:17:20', '2019-06-28 10:49:57', 2, '', 859, '84d10fb1-d51a-41b4-bf1f-ffc8ae48472f', '', '', '', '', ''),
(2563, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'Resting ECG - ST Segment Depression', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"ecg_resting_st_segment_depression\\\"\\n\\tlabel=\\\"Resting ECG - ST Segment Depression\\\"\\n\\tdescription=\\\"If Yes, add leads\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"0|Yes,1|No\\\"\\n\\tdefault=\\\"1\\\"\\n\\tmessage=\\\"Please select\\\"\\n\\/>\"', 1, '2019-06-28 10:19:33', '2019-06-28 10:51:22', 3, '', 859, '7a93a6e2-289f-44d6-82b0-fa29b25b7900', '', '', '', '', ''),
(2564, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'Stress ECG - ST Segment Elevation', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"ecg_stress_st_segment_elevation\\\"\\n\\tlabel=\\\"Stress ECG - ST Segment Elevation\\\"\\n\\tdescription=\\\"If Yes, add leads\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"0|Yes,1|No\\\"\\n\\tdefault=\\\"1\\\"\\n\\tmessage=\\\"Please select\\\"\\n\\/>\"', 1, '2019-06-28 10:25:23', '2019-06-28 10:51:34', 3, '', 859, '8ed7b8e8-b635-4722-bd11-8fc5049e99f8', '', '', '', '', ''),
(2565, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'Stress ECG - ST Segment Depression', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"ecg_stress_st_segment_depression\\\"\\n\\tlabel=\\\"Stress ECG - ST Segment Depression\\\"\\n\\tdescription=\\\"If Yes, add leads\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"0|Yes,1|No\\\"\\n\\tdefault=\\\"1\\\"\\n\\tmessage=\\\"Please select\\\"\\n\\/>\"', 1, '2019-06-28 10:25:50', '2019-06-28 10:51:44', 3, '', 859, 'cb936e2f-a76e-4715-bc78-50f90c46850a', '', '', '', '', ''),
(2566, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'Stress ECG - T-wave Inversion', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"ecg_stress_twave_inversion\\\"\\n\\tlabel=\\\"Stress ECG - T-wave Inversion\\\"\\n\\tdescription=\\\"If Yes, add leads\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"0|Yes,1|No\\\"\\n\\tdefault=\\\"1\\\"\\n\\tmessage=\\\"Please select\\\"\\n\\/>\"', 1, '2019-06-28 10:27:08', '2019-06-28 10:51:54', 3, '', 859, '54b805f6-1908-4c81-acaf-80101783b1fa', '', '', '', '', ''),
(2567, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'Field Name Builder', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"field_name_builder\\\"\\n\\tlabel=\\\"Field Name Builder<br \\/><small>(in compiler)<\\/small>\\\"\\n\\tdescription=\\\"The default option only uses alphabetical characters and converts all numbers in field names to the English equivalent like <em>1<\\/em> becomes <b>one<\\/b>.<br \\/>Alphanumeric keeps the numbers unconverted unless it is at the beginning of the field name.<br \\/>Should you change this it will cause a database updates <i>(during your next compilation)<\\/i> for all fields that has numbers in the name of the field. So it is really not a good idea to change this option every so often, you should rather select what you would like to use and keep it like that.<br \\/>All VDM\\/JCB components work on the <b>Default<\\/b> option.\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"1|Default,2|Alphanumeric\\\"\\n\\tdefault=\\\"1\\\"\\n\\/>\"', 1, '2019-07-04 23:42:38', '2019-07-04 23:46:18', 2, '', 932, 'a37f364d-e982-4744-9942-85e8d7783028', '', '', '', '', ''),
(2568, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Extends', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"extends\\\"\\n\\tlabel=\\\"Extends\\\"\\n\\tsize=\\\"50\\\"\\n\\tmaxlength=\\\"150\\\"\\n\\tdescription=\\\"What plugin class does your plugin extend.\\\"\\n\\tclass=\\\"text_area\\\"\\n\\trequired=\\\"true\\\"\\n\\tfilter=\\\"WORD\\\"\\n\\tmessage=\\\"Error! Please add some class name here.\\\"\\n\\thint=\\\"JPlugin\\\"\\n\\tautocomplete=\\\"on\\\"\\n\\/>\"', 1, '2019-07-06 15:23:19', '2019-07-13 19:44:55', 2, '', 933, '1312f256-1598-4a6f-8585-6e28fb3eb4a9', '', '', '', '', ''),
(2569, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Method/Property DocBlock', 'NOT NULL', 2, 25, '\"<field\\n\\ttype=\\\"textarea\\\"\\n\\tname=\\\"comment\\\"\\n\\tlabel=\\\"DocBlock\\\"\\n\\trows=\\\"10\\\"\\n\\tcols=\\\"5\\\"\\n\\tdescription=\\\"The comment\\\"\\n\\tclass=\\\"text_area\\\"\\n\\tfilter=\\\"string\\\"\\n\\thint=\\\"\\/**\\r\\n * [NAME]\\r\\n *\\r\\n * [PARAMS]\\r\\n *\\r\\n *\\/\\\"\\n\\trequired=\\\"false\\\"\\n\\/>\"', 1, '2019-07-06 15:35:08', '2019-07-23 11:49:57', 10, '', 934, 'dd400eb4-8762-4ab5-bc4e-fa1feacc4dfd', '', '', '', '', ''),
(2570, '', '', '', '', '', '', '', '', 255, '', 'TEXT', '', '', '', 'Param (Method Arguments)', 'NOT NULL', 2, 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"arguments\\\"\\n\\tlabel=\\\"Params<br \\/><small>Method Arguments<\\/small>\\\"\\n\\tsize=\\\"150\\\"\\n\\tmaxlength=\\\"350\\\"\\n\\tdescription=\\\"You can add as many as you need, with comma separation.\\\"\\n\\tclass=\\\"text_area\\\"\\n\\tfilter=\\\"STRING\\\"\\n\\thint=\\\"$context, &$value\\\"\\n\\tautocomplete=\\\"on\\\"\\n\\/>\"', 1, '2019-07-06 16:22:42', '2019-07-12 20:02:41', 8, '', 935, 'd2a2f6cf-1689-438b-b2c2-b244b8cbf078', '', '', '', '', ''),
(2571, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', 2, '', '', 'Method/Property Visibility', 'NOT NULL', '', 11, '\"<field\\n\\ttype=\\\"list\\\"\\n\\tname=\\\"visibility\\\"\\n\\tlabel=\\\"Visibility\\\"\\n\\tdescription=\\\"The visibility of a function\\/method or property can be defined by prefixing the declaration with the keywords public, protected or private. You also have the option to make function\\/method or property static.\\\"\\n\\tclass=\\\"list_class\\\"\\n\\tmultiple=\\\"false\\\"\\n\\tfilter=\\\"STRING\\\"\\n\\trequired=\\\"true\\\"\\n\\toption=\\\"public,protected,private,public static,protected static,private static\\\"\\n\\/>\"', 1, '2019-07-06 16:38:27', '2021-08-10 10:50:16', 6, '', 936, '7222c742-0092-439c-84de-1973e4e2b180', '', '', '', '', ''),
(2572, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Class Comment', 'NOT NULL', 2, 25, '\"<field\\n\\ttype=\\\"textarea\\\"\\n\\tname=\\\"comment\\\"\\n\\tlabel=\\\"Class Comment\\\"\\n\\trows=\\\"10\\\"\\n\\tcols=\\\"5\\\"\\n\\tdescription=\\\"The class comment\\\"\\n\\tclass=\\\"text_area\\\"\\n\\tfilter=\\\"string\\\"\\n\\thint=\\\"\\/**\\r\\n * [NAME]\\r\\n *\\r\\n * @package [COMPONENT_NAME]\\r\\n *\\/\\\"\\n\\trequired=\\\"false\\\"\\n\\/>\"', 1, '2019-07-06 20:30:28', '2019-07-10 19:20:54', 5, '', 934, '3d80f045-6262-43c8-9b43-658093f6a057', '', '', '', '', ''),
(2573, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Class Header', 'NULL', 2, 8, '\"<field\\n\\ttype=\\\"editor\\\"\\n\\tname=\\\"head\\\"\\n\\tlabel=\\\"Class Header\\\"\\n\\tdescription=\\\"The class header to add any header values can be added.\\\"\\n\\twidth=\\\"100%\\\"\\n\\theight=\\\"100px\\\"\\n\\tcols=\\\"15\\\"\\n\\trows=\\\"10\\\"\\n\\tbuttons=\\\"no\\\"\\n\\tsyntax=\\\"php\\\"\\n\\teditor=\\\"codemirror|none\\\"\\n\\tfilter=\\\"raw\\\"\\n\\trequired=\\\"false\\\"\\n\\tvalidate=\\\"code\\\"\\n\\/>\"', 1, '2019-07-06 20:37:34', '2024-03-06 15:53:30', 5, '', 934, 'e4a3ccf7-e259-4b72-ad4c-216b15d6d4f7', '', '', '', '', ''),
(2574, '', '', '', '', '', '', '', '', '', '', 'MEDIUMTEXT', '', '', '', 'Code (area)', 'NOT NULL', 2, 8, '\"<field\\n\\ttype=\\\"editor\\\"\\n\\tname=\\\"code\\\"\\n\\tlabel=\\\"Code\\\"\\n\\tdescription=\\\"Add the code here.\\\"\\n\\twidth=\\\"100%\\\"\\n\\theight=\\\"600px\\\"\\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-07-07 23:38:59', '2019-07-10 13:52:40', 4, '', 366, 'abaff633-2a9f-4be1-b057-241f657953a1', '', '', '', '', ''),
(2575, '', '', '', '', '', '', '', '', '', '', 'MEDIUMTEXT', '', '', '', 'Main Class Code', 'NOT NULL', 2, 8, '\"<field\\n\\ttype=\\\"editor\\\"\\n\\tname=\\\"main_class_code\\\"\\n\\tlabel=\\\"Properties & Methods\\\"\\n\\tdescription=\\\"Add the properties & methods here.\\\"\\n\\twidth=\\\"100%\\\"\\n\\theight=\\\"800px\\\"\\n\\tcols=\\\"40\\\"\\n\\trows=\\\"300\\\"\\n\\tbuttons=\\\"no\\\"\\n\\tsyntax=\\\"php\\\"\\n\\teditor=\\\"codemirror|none\\\"\\n\\tfilter=\\\"raw\\\"\\n\\tvalidate=\\\"code\\\"\\n\\/>\"', 1, '2019-07-08 00:02:30', '2021-09-10 07:18:51', 5, '', 366, '145966d2-32bf-42a7-8a7b-cc44aa93490d', '', '', '', '', ''),
(2576, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Related Forms (plugin)', 'NOT NULL', '', 35, '\"<field\\n\\ttype=\\\"subform\\\"\\n\\tname=\\\"fields\\\"\\n\\tlabel=\\\"Related Forms\\\"\\n\\tlayout=\\\"joomla.form.field.subform.repeatable\\\"\\n\\tmultiple=\\\"true\\\"\\n\\tbuttons=\\\"add,remove,move\\\"\\n\\tfields=\\\"2622,2620,2617,2618,2619,2601,3038,3037,2621\\\"\\n\\ticon=\\\"list\\\"\\n\\tmax=\\\"10\\\"\\n\\/>\"', 1, '2019-07-08 00:04:33', '2022-02-04 16:26:27', 13, '', 366, '6013de6f-f99d-4fa5-b75c-b1973a901e04', '', '', '', '', ''),
(2577, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'Class Method (plugins)', 'NOT NULL', '', 6, '\"<field\\n\\ttype=\\\"pluginsclassmethods\\\"\\n\\tname=\\\"method\\\"\\n\\tlabel=\\\"Methods\\\"\\n\\tclass=\\\"list_class span12 method_selection_list\\\"\\n\\tmultiple=\\\"false\\\"\\n\\tdefault=\\\"0\\\"\\n\\tonchange=\\\"getClassCode(this, \'method\');\\\"\\n\\textends=\\\"list\\\"\\n\\tbutton=\\\"true\\\"\\n\\ttable=\\\"#__###component###_class_method\\\"\\n\\tcomponent=\\\"com_###component###\\\"\\n\\tview=\\\"class_method\\\"\\n\\tviews=\\\"class_methods\\\"\\n\\tvalue_field=\\\"name\\\"\\n\\tkey_field=\\\"id\\\"\\n\\tprime_php=\\\"1\\\"\\n\\ttype_php_1=\\\"__.o0=base64=Oo.__W0NVU1RPTUNPREU9Y2xhc3NQcm9wZXJ0eU1ldGhvZEZpZWxkK3BsdWdpbnMsbWV0aG9kXQ==\\\"\\n\\/>\"', 1, '2019-07-08 00:20:10', '2019-07-15 00:26:13', 14, '', 937, '04f5a7b0-fd76-45af-9deb-2a76099b386a', '', '', '', '', ''),
(2578, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Method Selection', 'NOT NULL', '', 35, '\"<field\\n\\ttype=\\\"subform\\\"\\n\\tname=\\\"method_selection\\\"\\n\\tlabel=\\\"Method Selection\\\"\\n\\tlayout=\\\"joomla.form.field.subform.repeatable-table\\\"\\n\\tmultiple=\\\"true\\\"\\n\\tbuttons=\\\"add,remove,move\\\"\\n\\tfields=\\\"2577\\\"\\n\\tdescription=\\\"Select methods you want to use in your field.\\\"\\n\\ticon=\\\"list\\\"\\n\\tmax=\\\"150\\\"\\n\\tmin=\\\"0\\\"\\n\\/>\"', 1, '2019-07-08 00:25:29', '2021-09-05 09:45:16', 5, '', 938, 'e260d101-177f-4722-9b95-417f650f578e', '', '', '', '', ''),
(2579, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'Class Extends (in-pluigin)', 'NOT NULL', '', 6, '\"<field\\n\\ttype=\\\"classextends\\\"\\n\\tname=\\\"class_extends\\\"\\n\\tlabel=\\\"Extends\\\"\\n\\tclass=\\\"list_class\\\"\\n\\tmultiple=\\\"false\\\"\\n\\tdefault=\\\"0\\\"\\n\\trequired=\\\"true\\\"\\n\\textends=\\\"list\\\"\\n\\tbutton=\\\"true\\\"\\n\\ttable=\\\"#__###component###_class_extends\\\"\\n\\tcomponent=\\\"com_###component###\\\"\\n\\tview=\\\"class_extends\\\"\\n\\tviews=\\\"class_extendings\\\"\\n\\tvalue_field=\\\"name\\\"\\n\\tkey_field=\\\"id\\\"\\n\\tprime_php=\\\"1\\\"\\n\\ttype_php_1=\\\"__.o0=base64=Oo.__Ly8gR2V0IHRoZSB1c2VyIG9iamVjdC4NCgkJJHVzZXIgPSBKRmFjdG9yeTo6Z2V0VXNlcigpOw0KCQkvLyBHZXQgdGhlIGRhdGFic2Ugb2JqZWN0Lg0KCQkkZGIgPSBKRmFjdG9yeTo6Z2V0REJPKCk7DQoJCSRxdWVyeSA9ICRkYi0+Z2V0UXVlcnkodHJ1ZSk7DQoJCSRxdWVyeS0+c2VsZWN0KCRkYi0+cXVvdGVOYW1lKGFycmF5KCdhLiMjI0lEIyMjJywnYS4jIyNURVhUIyMjJyksYXJyYXkoJyMjI0lEIyMjJywnIyMjQ09ERV9URVhUIyMjJykpKTsNCgkJJHF1ZXJ5LT5mcm9tKCRkYi0+cXVvdGVOYW1lKCcjIyNUQUJMRSMjIycsICdhJykpOw0KCQkkcXVlcnktPndoZXJlKCRkYi0+cXVvdGVOYW1lKCdhLnB1Ymxpc2hlZCcpIC4gJyA+PSAxJyk7DQoJCSRxdWVyeS0+b3JkZXIoJ2EuIyMjVEVYVCMjIyBBU0MnKTsNCgkJLy8gSW1wbGVtZW50IFZpZXcgTGV2ZWwgQWNjZXNzIChpZiBzZXQgaW4gdGFibGUpDQoJCWlmICghJHVzZXItPmF1dGhvcmlzZSgnY29yZS5vcHRpb25zJywgJ1tbW2NvbV9jb21wb25lbnRdXV0nKSkNCgkJew0KCQkJJGNvbHVtbnMgPSAkZGItPmdldFRhYmxlQ29sdW1ucygnIyMjVEFCTEUjIyMnKTsNCgkJCWlmKGlzc2V0KCRjb2x1bW5zWydhY2Nlc3MnXSkpDQoJCQl7DQoJCQkJJGdyb3VwcyA9IGltcGxvZGUoJywnLCAkdXNlci0+Z2V0QXV0aG9yaXNlZFZpZXdMZXZlbHMoKSk7DQoJCQkJJHF1ZXJ5LT53aGVyZSgnYS5hY2Nlc3MgSU4gKCcgLiAkZ3JvdXBzIC4gJyknKTsNCgkJCX0NCgkJfQ0KCQkkZGItPnNldFF1ZXJ5KChzdHJpbmcpJHF1ZXJ5KTsNCgkJJGl0ZW1zID0gJGRiLT5sb2FkT2JqZWN0TGlzdCgpOw0KCQkkb3B0aW9ucyA9IGFycmF5KCk7DQoJCWlmICgkaXRlbXMpDQoJCXsNCgkJCSRvcHRpb25zW10gPSBKSHRtbDo6Xygnc2VsZWN0Lm9wdGlvbicsICcnLCAnU2VsZWN0IGEgY2xhc3MnKTsNCgkJCWZvcmVhY2goJGl0ZW1zIGFzICRpdGVtKQ0KCQkJew0KCQkJCSRvcHRpb25zW10gPSBKSHRtbDo6Xygnc2VsZWN0Lm9wdGlvbicsICRpdGVtLT4jIyNJRCMjIywgJGl0ZW0tPiMjI0NPREVfVEVYVCMjIyk7DQoJCQl9DQoJCX0NCgkJcmV0dXJuICRvcHRpb25zOw==\\\"\\n\\/>\"', 1, '2019-07-08 00:41:35', '2019-07-18 21:37:52', 6, '', 937, 'f73b86df-6954-4689-bb74-9af8c9fc0c79', '', '', '', '', ''),
(2580, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'Plugin Groups', 'NOT NULL', '', 6, '\"<field\\n\\ttype=\\\"joomlaplugingroups\\\"\\n\\tname=\\\"joomla_plugin_group\\\"\\n\\tlabel=\\\"Joomla Plugin Group\\\"\\n\\tclass=\\\"list_class\\\"\\n\\tmultiple=\\\"false\\\"\\n\\tdefault=\\\"0\\\"\\n\\trequired=\\\"true\\\"\\n\\textends=\\\"list\\\"\\n\\tbutton=\\\"true\\\"\\n\\ttable=\\\"#__###component###_joomla_plugin_group\\\"\\n\\tcomponent=\\\"com_###component###\\\"\\n\\tview=\\\"joomla_plugin_group\\\"\\n\\tviews=\\\"joomla_plugin_groups\\\"\\n\\tvalue_field=\\\"name\\\"\\n\\tkey_field=\\\"id\\\"\\n\\tprime_php=\\\"1\\\"\\n\\ttype_php_1=\\\"__.o0=base64=Oo.__Ly8gR2V0IHRoZSB1c2VyIG9iamVjdC4NCgkJJHVzZXIgPSBKRmFjdG9yeTo6Z2V0VXNlcigpOw0KCQkvLyBHZXQgdGhlIGRhdGFic2Ugb2JqZWN0Lg0KCQkkZGIgPSBKRmFjdG9yeTo6Z2V0REJPKCk7DQoJCSRxdWVyeSA9ICRkYi0+Z2V0UXVlcnkodHJ1ZSk7DQoJCSRxdWVyeS0+c2VsZWN0KCRkYi0+cXVvdGVOYW1lKGFycmF5KCdhLiMjI0lEIyMjJywnYS4jIyNURVhUIyMjJyksYXJyYXkoJyMjI0lEIyMjJywnIyMjQ09ERV9URVhUIyMjJykpKTsNCgkJJHF1ZXJ5LT5mcm9tKCRkYi0+cXVvdGVOYW1lKCcjIyNUQUJMRSMjIycsICdhJykpOw0KCQkkcXVlcnktPndoZXJlKCRkYi0+cXVvdGVOYW1lKCdhLnB1Ymxpc2hlZCcpIC4gJyA+PSAxJyk7DQoJCSRxdWVyeS0+b3JkZXIoJ2EuIyMjVEVYVCMjIyBBU0MnKTsNCgkJLy8gSW1wbGVtZW50IFZpZXcgTGV2ZWwgQWNjZXNzIChpZiBzZXQgaW4gdGFibGUpDQoJCWlmICghJHVzZXItPmF1dGhvcmlzZSgnY29yZS5vcHRpb25zJywgJ1tbW2NvbV9jb21wb25lbnRdXV0nKSkNCgkJew0KCQkJJGNvbHVtbnMgPSAkZGItPmdldFRhYmxlQ29sdW1ucygnIyMjVEFCTEUjIyMnKTsNCgkJCWlmKGlzc2V0KCRjb2x1bW5zWydhY2Nlc3MnXSkpDQoJCQl7DQoJCQkJJGdyb3VwcyA9IGltcGxvZGUoJywnLCAkdXNlci0+Z2V0QXV0aG9yaXNlZFZpZXdMZXZlbHMoKSk7DQoJCQkJJHF1ZXJ5LT53aGVyZSgnYS5hY2Nlc3MgSU4gKCcgLiAkZ3JvdXBzIC4gJyknKTsNCgkJCX0NCgkJfQ0KCQkkZGItPnNldFF1ZXJ5KChzdHJpbmcpJHF1ZXJ5KTsNCgkJJGl0ZW1zID0gJGRiLT5sb2FkT2JqZWN0TGlzdCgpOw0KCQkkb3B0aW9ucyA9IGFycmF5KCk7DQoJCWlmICgkaXRlbXMpDQoJCXsNCgkJCSRvcHRpb25zW10gPSBKSHRtbDo6Xygnc2VsZWN0Lm9wdGlvbicsICcnLCAnU2VsZWN0IGEgZ3JvdXAnKTsNCgkJCWZvcmVhY2goJGl0ZW1zIGFzICRpdGVtKQ0KCQkJew0KCQkJCSRvcHRpb25zW10gPSBKSHRtbDo6Xygnc2VsZWN0Lm9wdGlvbicsICRpdGVtLT4jIyNJRCMjIywgJGl0ZW0tPiMjI0NPREVfVEVYVCMjIyk7DQoJCQl9DQoJCX0NCgkJcmV0dXJuICRvcHRpb25zOw==\\\"\\n\\/>\"', 1, '2019-07-08 01:29:01', '2019-07-13 20:21:23', 5, '', 937, 'd23a041c-6897-4cef-8941-a26a2114a865', '', '', '', '', ''),
(2581, '', '', '', '', '', '', '', '', '', '', '', '', '', '', 'PHP Dashboard Note', 'NOT NULL', '', 14, '\"<field\\n\\ttype=\\\"note\\\"\\n\\tname=\\\"note_php_dashboard_note\\\"\\n\\tdescription=\\\"Adding custom PHP method to the dashboard model<br \\/>use the <b>public function getMethodName()<\\/b> to insure the data is set to the view,<br \\/>Note the convention <b>public function get...()<\\/b> replace the ... with the unique method name.\\\"\\n\\/>\"', 1, '2019-07-09 15:37:53', '2019-07-09 15:40:26', 2, '', 939, 'ac1e8e4e-74f5-4e5d-9d26-de73e2b4dd85', '', '', '', '', ''),
(2582, '', '', '', '', '', '', '', '', '', '', '', '', '', '', 'Plugin Note', 'NOT NULL', '', 14, '\"<field\\n\\ttype=\\\"note\\\"\\n\\tname=\\\"note_plugin\\\"\\n\\tlabel=\\\"Easy Plugin Build Options\\\"\\n\\tdescription=\\\"<p>So over here you are able to manually code your plugin methods which usually will be the event name you are targeting.<\\/p><p>We have also added some methods via the <a href=\'https:\\/\\/github.com\\/vdm-io\\/boilerplate\' title=\'look at the boilerplate repo\' target=\'_blank\'>boilerplate repo<\\/a> that can serve as a starting point, simple select them and it will be added to your code.<\\/p><p><p>If you have added any fields in the Config\\/Params tab, these fields will be available to you in the <code>$this->params<\\/code> object, and can be accessed via the field name <code>$this->params->get(\'fieldname\');<\\/code> with the get method.<\\/p>\\\"\\n\\theading=\\\"h4\\\"\\n\\tclass=\\\"alert alert-info\\\"\\n\\/>\"', 1, '2019-07-10 10:45:56', '2019-07-10 11:04:59', 3, '', 940, '9f50213b-07b5-4147-a24c-f3d390498c6c', '', '', '', '', ''),
(2583, '', '', '', '', '', '', '', '', 64, '', 'VARCHAR', '', '', '', 'Extension Type', 'NOT NULL', '', 11, '\"<field\\n\\ttype=\\\"list\\\"\\n\\tname=\\\"extension_type\\\"\\n\\tlabel=\\\"Type\\\"\\n\\tdescription=\\\"The type this field belongs to. \\\"\\n\\tclass=\\\"list_class\\\"\\n\\tmultiple=\\\"false\\\"\\n\\trequired=\\\"true\\\"\\n\\toption=\\\"|Select an option,powers,components,plugins,modules\\\"\\n\\/>\"', 1, '2019-07-10 19:45:26', '2021-08-10 11:54:35', 4, '', 856, '7e059ab7-d79b-4218-9488-6f38d85d17a0', '', '', '', '', ''),
(2584, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'Class Property (plugins)', 'NOT NULL', '', 6, '\"<field\\n\\ttype=\\\"pluginsclassproperties\\\"\\n\\tname=\\\"property\\\"\\n\\tlabel=\\\"Properties\\\"\\n\\tclass=\\\"list_class span12 property_selection_list\\\"\\n\\tmultiple=\\\"false\\\"\\n\\tdefault=\\\"0\\\"\\n\\tonchange=\\\"getClassCode(this, \'property\');\\\"\\n\\textends=\\\"list\\\"\\n\\tbutton=\\\"true\\\"\\n\\ttable=\\\"#__###component###_class_property\\\"\\n\\tcomponent=\\\"com_###component###\\\"\\n\\tview=\\\"class_property\\\"\\n\\tviews=\\\"class_properties\\\"\\n\\tvalue_field=\\\"name\\\"\\n\\tkey_field=\\\"id\\\"\\n\\tprime_php=\\\"1\\\"\\n\\ttype_php_1=\\\"__.o0=base64=Oo.__W0NVU1RPTUNPREU9Y2xhc3NQcm9wZXJ0eU1ldGhvZEZpZWxkK3BsdWdpbnMscHJvcGVydHld\\\"\\n\\/>\"', 1, '2019-07-10 19:59:30', '2019-07-15 00:26:37', 9, '', 937, '9fff86dc-3fbb-4001-9dc0-c2b89164b00c', '', '', '', '', ''),
(2585, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Property Selection', 'NOT NULL', '', 35, '\"<field\\n\\ttype=\\\"subform\\\"\\n\\tname=\\\"property_selection\\\"\\n\\tlabel=\\\"Property Selection\\\"\\n\\tlayout=\\\"joomla.form.field.subform.repeatable-table\\\"\\n\\tmultiple=\\\"true\\\"\\n\\tbuttons=\\\"add,remove,move\\\"\\n\\tfields=\\\"2584\\\"\\n\\tdescription=\\\"Select properties you want to use in your field.\\\"\\n\\ticon=\\\"list\\\"\\n\\tmax=\\\"150\\\"\\n\\tmin=\\\"0\\\"\\n\\/>\"', 1, '2019-07-10 22:18:17', '2021-09-05 09:44:54', 4, '', 938, 'cc01a6b1-7f18-4452-bfa6-4d64fc595a49', '', '', '', '', ''),
(2586, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Default (property value)', 'NOT NULL', 2, 25, '\"<field\\n\\ttype=\\\"textarea\\\"\\n\\tname=\\\"default\\\"\\n\\tlabel=\\\"default\\\"\\n\\trows=\\\"1\\\"\\n\\tcols=\\\"5\\\"\\n\\tdescription=\\\"Enter default value\\\"\\n\\tmessage=\\\"Error! Please add default value here.\\\"\\n\\tclass=\\\"text_area span12\\\"\\n\\tfilter=\\\"STRING\\\"\\n\\thint=\\\"Default Value Here\\\"\\n\\/>\"', 1, '2019-07-12 23:05:12', '2021-08-10 12:05:06', 6, '', 390, '73ef5c00-c8c5-4cb7-9f69-6aed98346818', '', '', '', '', ''),
(2587, '', '', '', '', '', '', '', '', '', '', '', '', '', '', 'Beta Stage', 'NOT NULL', '', 14, '\"<field\\n\\ttype=\\\"note\\\"\\n\\tname=\\\"note_beta_stage\\\"\\n\\tlabel=\\\"Beta Stage\\\"\\n\\tdescription=\\\"This area is still in beta, and is not ready for use. Things may work, but they are not wired up to the back-end\\/compiler. You are already seeing it since JCB is being developed in a reverse motion of front-end\\/GUI to back-end\\/Compiler approach. We first build the GUI... and then the Back-end, which is not normally how it is done, or so I was told.... But anyway that is how JCB is being build, we get the idea, look at all the relationships and build the tables, and columns, which then map to views and fields (GUI), we then build the functions in the compiler to act upon these new data-sets, and whammm the full functionality\\/idea becomes stable and ready. So in due time this area will become available for your use, and then this message will go away! (or the whole area will just disappear if it does not work out :)\\\"\\n\\theading=\\\"h4\\\"\\n\\tclass=\\\"alert alert-warning \\\"\\n\\/>\"', 1, '2019-07-13 23:26:13', '0000-00-00 00:00:00', 1, '', 941, 'c352c5af-833a-4368-bd13-0ccb3a2f3e88', '', '', '', '', ''),
(2588, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'Joomla Plugins (JCB)', 'NOT NULL', '', 6, '\"<field\\n\\ttype=\\\"joomlaplugins\\\"\\n\\tname=\\\"plugin\\\"\\n\\tlabel=\\\"Plugins\\\"\\n\\tclass=\\\"list_class span12\\\"\\n\\tmultiple=\\\"false\\\"\\n\\tdefault=\\\"0\\\"\\n\\textends=\\\"list\\\"\\n\\tbutton=\\\"true\\\"\\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\\tprime_php=\\\"1\\\"\\n\\ttype_php_1=\\\"__.o0=base64=Oo.__Ly8gR2V0IHRoZSB1c2VyIG9iamVjdC4NCgkJJHVzZXIgPSBGYWN0b3J5OjpnZXRVc2VyKCk7DQoJCS8vIEdldCB0aGUgZGF0YWJzZSBvYmplY3QuDQoJCSRkYiA9IEZhY3Rvcnk6OmdldERCTygpOw0KCQkkcXVlcnkgPSAkZGItPmdldFF1ZXJ5KHRydWUpOw0KCQkkcXVlcnktPnNlbGVjdCgkZGItPnF1b3RlTmFtZShhcnJheSgnYS4jIyNJRCMjIycsJ2EuIyMjVEVYVCMjIycsJ2EubmFtZScsJ2IubmFtZScsJ2MubmFtZScpLGFycmF5KCcjIyNJRCMjIycsJyMjI0NPREVfVEVYVCMjIycsJ25hbWUnLCdjbGFzc19leHRlbmRzX25hbWUnLCdqb29tbGFfcGx1Z2luX2dyb3VwX25hbWUnKSkpOw0KCQkkcXVlcnktPmZyb20oJGRiLT5xdW90ZU5hbWUoJyMjI1RBQkxFIyMjJywgJ2EnKSk7DQoJCSRxdWVyeS0+am9pbignTEVGVCcsICRkYi0+cXVvdGVOYW1lKCcjX19bW1tjb21wb25lbnRdXV1fY2xhc3NfZXh0ZW5kcycsICdiJykgLiAnIE9OICgnIC4gJGRiLT5xdW90ZU5hbWUoJ2EuY2xhc3NfZXh0ZW5kcycpIC4gJyA9ICcgLiAkZGItPnF1b3RlTmFtZSgnYi5pZCcpIC4gJyknKTsNCgkJJHF1ZXJ5LT5qb2luKCdMRUZUJywgJGRiLT5xdW90ZU5hbWUoJyNfX1tbW2NvbXBvbmVudF1dXV9qb29tbGFfcGx1Z2luX2dyb3VwJywgJ2MnKSAuICcgT04gKCcgLiAkZGItPnF1b3RlTmFtZSgnYS5qb29tbGFfcGx1Z2luX2dyb3VwJykgLiAnID0gJyAuICRkYi0+cXVvdGVOYW1lKCdjLmlkJykgLiAnKScpOw0KCQkkcXVlcnktPndoZXJlKCRkYi0+cXVvdGVOYW1lKCdhLnB1Ymxpc2hlZCcpIC4gJyA+PSAxJyk7DQoJCSRxdWVyeS0+b3JkZXIoJ2EuIyMjVEVYVCMjIyBBU0MnKTsNCgkJLy8gSW1wbGVtZW50IFZpZXcgTGV2ZWwgQWNjZXNzIChpZiBzZXQgaW4gdGFibGUpDQoJCWlmICghJHVzZXItPmF1dGhvcmlzZSgnY29yZS5vcHRpb25zJywgJ1tbW2NvbV9jb21wb25lbnRdXV0nKSkNCgkJew0KCQkJJGNvbHVtbnMgPSAkZGItPmdldFRhYmxlQ29sdW1ucygnIyMjVEFCTEUjIyMnKTsNCgkJCWlmKGlzc2V0KCRjb2x1bW5zWydhY2Nlc3MnXSkpDQoJCQl7DQoJCQkJJGdyb3VwcyA9IGltcGxvZGUoJywnLCAkdXNlci0+Z2V0QXV0aG9yaXNlZFZpZXdMZXZlbHMoKSk7DQoJCQkJJHF1ZXJ5LT53aGVyZSgnYS5hY2Nlc3MgSU4gKCcgLiAkZ3JvdXBzIC4gJyknKTsNCgkJCX0NCgkJfQ0KCQkkZGItPnNldFF1ZXJ5KChzdHJpbmcpJHF1ZXJ5KTsNCgkJJGl0ZW1zID0gJGRiLT5sb2FkT2JqZWN0TGlzdCgpOw0KCQkkb3B0aW9ucyA9IGFycmF5KCk7DQoJCWlmICgkaXRlbXMpDQoJCXsNCgkJCSRvcHRpb25zW10gPSBIdG1sOjpfKCdzZWxlY3Qub3B0aW9uJywgJycsICdTZWxlY3QgYSBwbHVnaW4nKTsNCgkJCWZvcmVhY2goJGl0ZW1zIGFzICRpdGVtKQ0KCQkJew0KCQkJCS8vIHNldCBhIGZ1bGwgY2xhc3MgbmFtZQ0KCQkJCSRncm91cF9uYW1lID0gJGl0ZW0tPmpvb21sYV9wbHVnaW5fZ3JvdXBfbmFtZSA\\/PyAnJzsNCgkJCQkkbmFtZSA9ICRpdGVtLT5uYW1lID8\\/ICcnOw0KCQkJCSRvcHRpb25zW10gPSBIdG1sOjpfKCdzZWxlY3Qub3B0aW9uJywgJGl0ZW0tPiMjI0lEIyMjLCAnKCAnIC4gJGl0ZW0tPiMjI0NPREVfVEVYVCMjIyAuICcgKSBjbGFzcyBQbGcnIC4gJGdyb3VwX25hbWUgLiAkbmFtZSAuICcgZXh0ZW5kcyAnIC4gJGl0ZW0tPmNsYXNzX2V4dGVuZHNfbmFtZSk7DQoJCQl9DQoJCX0NCgkJcmV0dXJuICRvcHRpb25zOw==\\\"\\n\\/>\"', 1, '2019-07-17 01:49:58', '2024-03-12 13:27:06', 9, '', 937, 'c61b5017-01e2-4396-b64e-284400aa829a', '', '', '', '', ''),
(2589, '', '', 1, '', '', '', '', '', '', '', 'TEXT', '', 'alF1ZXJ5KGRvY3VtZW50KS5yZWFkeShmdW5jdGlvbigpew0KCWpRdWVyeShkb2N1bWVudCkub24oJ3N1YmZvcm0tcm93LWFkZCcsIGZ1bmN0aW9uKGV2ZW50LCByb3cpew0KCQl2YXIgZ3JvdXBfa2V5ID0galF1ZXJ5KHJvdykuY29udGV4dC5kYXRhc2V0Lmdyb3VwOw0KCQlqUXVlcnkocm93KS5maW5kKCcjamZvcm1fYWRkYWRtaW5fdmlld3NfXycgKyBncm91cF9rZXkgKyAnX19zdWJtZW51JykucHJvcCgnY2hlY2tlZCcsIHRydWUpOw0KCQlqUXVlcnkocm93KS5maW5kKCcjamZvcm1fYWRkYWRtaW5fdmlld3NfXycgKyBncm91cF9rZXkgKyAnX19jaGVja2luJykucHJvcCgnY2hlY2tlZCcsIHRydWUpOw0KCQlqUXVlcnkocm93KS5maW5kKCcjamZvcm1fYWRkYWRtaW5fdmlld3NfXycgKyBncm91cF9rZXkgKyAnX19oaXN0b3J5JykucHJvcCgnY2hlY2tlZCcsIHRydWUpOw0KCQlqUXVlcnkocm93KS5maW5kKCcjamZvcm1fYWRkYWRtaW5fdmlld3NfXycgKyBncm91cF9rZXkgKyAnX19hY2Nlc3MnKS5wcm9wKCdjaGVja2VkJywgdHJ1ZSk7DQoJCWpRdWVyeShyb3cpLmZpbmQoJyNqZm9ybV9hZGRhZG1pbl92aWV3c19fJyArIGdyb3VwX2tleSArICdfX3BvcnQnKS5wcm9wKCdjaGVja2VkJywgdHJ1ZSk7DQoJfSkNCn0pOw==', '', 'Add Joomla Plugins', 'NOT NULL', '', 35, '\"<field\\n\\ttype=\\\"subform\\\"\\n\\tname=\\\"addjoomla_plugins\\\"\\n\\tlabel=\\\"Joomla Plugins\\\"\\n\\tlayout=\\\"joomla.form.field.subform.repeatable-table\\\"\\n\\tmultiple=\\\"true\\\"\\n\\tfields=\\\"2588,2623\\\"\\n\\tdescription=\\\"Setup the Joomla plugins for this component.\\\"\\n\\tdefault=\\\"\\\"\\n\\ticon=\\\"list\\\"\\n\\tmin=\\\"1\\\"\\n\\/>\"', 1, '2019-07-17 02:01:28', '2019-09-10 01:34:27', 4, '', 201, '9c787541-ed54-4516-bc21-9b6fe2e2e516', '', '', '', '', ''),
(2590, '', '', '', '', '', '', '', '', '', '', '', '', '', '', 'Note - Setting Joomla Plugins', 'NOT NULL', '', 14, '\"<field\\n\\ttype=\\\"note\\\"\\n\\tname=\\\"note_on_joomla_plugins\\\"\\n\\tlabel=\\\"Setting Joomla Plugins\\\"\\n\\tdescription=\\\"Do not add the same Joomla plugins twice it will not work.\\\"\\n\\theading=\\\"h4\\\"\\n\\tclass=\\\"alert alert-info\\\"\\n\\/>\"', 1, '2019-07-17 02:03:15', '2019-07-17 02:04:44', 2, '', 25, '7e345b34-bfef-4db7-b287-82389cbd6123', '', '', '', '', ''),
(2591, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'Add Custom Class Header', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"add_head\\\"\\n\\tlabel=\\\"Add Custom Class Header\\\"\\n\\tdescription=\\\"You can add your own custom header script, combined with the default header script that make the extended class work.\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"1|Yes,0|No\\\"\\n\\tdefault=\\\"0\\\"\\n\\/>\"', 1, '2019-07-17 21:36:58', '2019-07-18 23:16:09', 3, '', 942, '65341477-33f1-4d58-9b3c-c371168809da', '', '', '', '', ''),
(2592, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'Class Extends', 'NOT NULL', '', 6, '\"<field\\n\\ttype=\\\"classextends\\\"\\n\\tname=\\\"class_extends\\\"\\n\\tlabel=\\\"Extends\\\"\\n\\tclass=\\\"list_class\\\"\\n\\tmultiple=\\\"false\\\"\\n\\tdefault=\\\"0\\\"\\n\\trequired=\\\"true\\\"\\n\\textends=\\\"list\\\"\\n\\tbutton=\\\"true\\\"\\n\\ttable=\\\"#__###component###_class_extends\\\"\\n\\tcomponent=\\\"com_###component###\\\"\\n\\tview=\\\"class_extends\\\"\\n\\tviews=\\\"class_extendings\\\"\\n\\tvalue_field=\\\"name\\\"\\n\\tkey_field=\\\"id\\\"\\n\\ttype_php_1=\\\"__.o0=base64=Oo.__Ly8gR2V0IHRoZSB1c2VyIG9iamVjdC4NCgkJJHVzZXIgPSBKRmFjdG9yeTo6Z2V0VXNlcigpOw0KCQkvLyBHZXQgdGhlIGRhdGFic2Ugb2JqZWN0Lg0KCQkkZGIgPSBKRmFjdG9yeTo6Z2V0REJPKCk7DQoJCSRxdWVyeSA9ICRkYi0+Z2V0UXVlcnkodHJ1ZSk7DQoJCSRxdWVyeS0+c2VsZWN0KCRkYi0+cXVvdGVOYW1lKGFycmF5KCdhLiMjI0lEIyMjJywnYS4jIyNURVhUIyMjJyksYXJyYXkoJyMjI0lEIyMjJywnIyMjQ09ERV9URVhUIyMjJykpKTsNCgkJJHF1ZXJ5LT5mcm9tKCRkYi0+cXVvdGVOYW1lKCcjIyNUQUJMRSMjIycsICdhJykpOw0KCQkkcXVlcnktPndoZXJlKCRkYi0+cXVvdGVOYW1lKCdhLnB1Ymxpc2hlZCcpIC4gJyA+PSAxJyk7DQoJCSRxdWVyeS0+b3JkZXIoJ2EuIyMjVEVYVCMjIyBBU0MnKTsNCgkJLy8gSW1wbGVtZW50IFZpZXcgTGV2ZWwgQWNjZXNzIChpZiBzZXQgaW4gdGFibGUpDQoJCWlmICghJHVzZXItPmF1dGhvcmlzZSgnY29yZS5vcHRpb25zJywgJ1tbW2NvbV9jb21wb25lbnRdXV0nKSkNCgkJew0KCQkJJGNvbHVtbnMgPSAkZGItPmdldFRhYmxlQ29sdW1ucygnIyMjVEFCTEUjIyMnKTsNCgkJCWlmKGlzc2V0KCRjb2x1bW5zWydhY2Nlc3MnXSkpDQoJCQl7DQoJCQkJJGdyb3VwcyA9IGltcGxvZGUoJywnLCAkdXNlci0+Z2V0QXV0aG9yaXNlZFZpZXdMZXZlbHMoKSk7DQoJCQkJJHF1ZXJ5LT53aGVyZSgnYS5hY2Nlc3MgSU4gKCcgLiAkZ3JvdXBzIC4gJyknKTsNCgkJCX0NCgkJfQ0KCQkkZGItPnNldFF1ZXJ5KChzdHJpbmcpJHF1ZXJ5KTsNCgkJJGl0ZW1zID0gJGRiLT5sb2FkT2JqZWN0TGlzdCgpOw0KCQkkb3B0aW9ucyA9IGFycmF5KCk7DQoJCWlmICgkaXRlbXMpDQoJCXsNCgkJCSRvcHRpb25zW10gPSBKSHRtbDo6Xygnc2VsZWN0Lm9wdGlvbicsICcnLCAnU2VsZWN0IGEgY2xhc3MnKTsNCgkJCWZvcmVhY2goJGl0ZW1zIGFzICRpdGVtKQ0KCQkJew0KCQkJCSRvcHRpb25zW10gPSBKSHRtbDo6Xygnc2VsZWN0Lm9wdGlvbicsICRpdGVtLT4jIyNJRCMjIywgJGl0ZW0tPiMjI0NPREVfVEVYVCMjIyk7DQoJCQl9DQoJCX0NCgkJcmV0dXJuICRvcHRpb25zOw==\\\"\\n\\/>\"', 1, '2019-07-18 21:09:56', '2019-07-18 21:10:16', 2, '', 937, 'b1edf3cc-3473-41c7-9825-372333299846', '', '', '', '', ''),
(2593, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'Type Name Builder', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"type_name_builder\\\"\\n\\tlabel=\\\"Field Type Name Builder<br \\/><small>(in compiler)<\\/small>\\\"\\n\\tdescription=\\\"The default option only uses alphabetical characters and converts all numbers in field names to the English equivalent like <em>1<\\/em> becomes <b>one<\\/b>.<br \\/>Alphanumeric+dot keeps the numbers unconverted unless it is at the beginning of the field name, and allows for a dot (.) to be used in the type name for namespacing.\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"1|Default,2|Alphanumeric+dot\\\"\\n\\tdefault=\\\"1\\\"\\n\\/>\"', 1, '2019-07-19 00:46:30', '2019-07-04 23:46:18', 1, '', 932, 'f68290a7-f118-474e-842c-047d3eff7643', '', '', '', '', ''),
(2594, '', '', '', '', '', '', '', '', '', '', 'MEDIUMTEXT', '', '', '', 'XML', 'NOT NULL', 2, 8, '\"<field\\n\\ttype=\\\"editor\\\"\\n\\tname=\\\"xml\\\"\\n\\tlabel=\\\"XML\\\"\\n\\twidth=\\\"100%\\\"\\n\\theight=\\\"800px\\\"\\n\\tcols=\\\"40\\\"\\n\\trows=\\\"300\\\"\\n\\tbuttons=\\\"no\\\"\\n\\tsyntax=\\\"xml\\\"\\n\\teditor=\\\"codemirror|none\\\"\\n\\tfilter=\\\"raw\\\"\\n\\tvalidate=\\\"code\\\"\\n\\/>\"', 1, '2019-07-22 01:11:56', '2019-07-13 23:05:01', 1, '', 366, 'b9f32a6f-c005-4a31-9205-ddad4580b051', '', '', '', '', ''),
(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', '', '', '', '', ''),
(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', '', '', '', '', ''),
(2603, '', '', '', '', '', '', '', '', '', '', '', '', '', '', 'Plugin Actions (privacy)', 'NOT NULL', '', 14, '\"<field\\n\\ttype=\\\"note\\\"\\n\\tname=\\\"note_plugin_actions\\\"\\n\\tlabel=\\\"Does the values stored in this admin view have a direct relationship with any user in Joomla?\\\"\\n\\tdescription=\\\"The Joomla Privacy Suite helps you comply with the privacy requirements of your component. So should this admin view in you component have any personal data related to any user in Joomla where your component is eventually installed by Joomla website owners\\/developers, then you should activate this integration with Joomla Privacy Suite.\\\"\\n\\theading=\\\"h3\\\"\\n\\tclass=\\\"alert alert-info\\\"\\n\\/>\"', 1, '2019-08-20 13:25:24', '0000-00-00 00:00:00', 1, '', 947, '782ffacb-9996-4131-9db2-e15d6e989c9d', '', '', '', '', ''),
(2604, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'Activate (plugin)', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"activate\\\"\\n\\tlabel=\\\"Activate\\\"\\n\\tdescription=\\\"Turn on the integration.\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"1|Yes,0|No\\\"\\n\\tdefault=\\\"0\\\"\\n\\trequired=\\\"true\\\"\\n\\/>\"', 1, '2019-08-20 13:26:35', '2020-03-19 23:49:41', 6, '', 948, 'f2201640-84b5-4d12-a94f-fa4c7153de04', '', '', '', '', ''),
(2605, '', '', '', '', '', '', '', '', '', '', '', '', '', '', 'Plugin Permission (privacy)', 'NOT NULL', '', 14, '\"<field\\n\\ttype=\\\"note\\\"\\n\\tname=\\\"note_plugin_permission\\\"\\n\\tlabel=\\\"Should we use permissions (where available) to determine the users access to data?\\\"\\n\\tdescription=\\\"When you add permission control to view\\/edit\\/access a field value we can add that layer of security when a privacy event is taken.\\\"\\n\\theading=\\\"h4\\\"\\n\\tclass=\\\"alert alert-info\\\"\\n\\tshowon=\\\"activate:1\\\"\\n\\/>\"', 1, '2019-08-20 13:28:04', '2019-09-13 20:52:58', 6, '', 947, '1af91df3-c2d0-4827-8871-1197c389b2aa', '', '', '', '', ''),
(2606, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'Permissions (privacy)', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"permissions\\\"\\n\\tlabel=\\\"Permissions\\\"\\n\\tdescription=\\\"As an extra layer of security you add permission control.\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"1|Yes,0|No\\\"\\n\\tdefault=\\\"1\\\"\\n\\trequired=\\\"true\\\"\\n\\tshowon=\\\"activate:1\\\"\\n\\/>\"', 1, '2019-08-20 13:29:39', '2019-09-13 20:53:11', 4, '', 948, '775bfd07-1f7c-43b5-9728-41dbe50bd84b', '', '', '', '', ''),
(2607, '', '', '', '', '', '', '', '', '', '', '', '', '', '', 'Plugin Anonymize (privacy)', 'NOT NULL', '', 14, '\"<field\\n\\ttype=\\\"note\\\"\\n\\tname=\\\"note_plugin_anonymize\\\"\\n\\tlabel=\\\"When a user makes a request to remove their data from the Joomla website, should we instead allow it to be anonymized?\\\"\\n\\tdescription=\\\"At times you may want to give website owners the option to anonymize data instead of deleting. This switch adds that option to the privacy integration.\\\"\\n\\theading=\\\"h4\\\"\\n\\tclass=\\\"alert alert-info\\\"\\n\\tshowon=\\\"activate:1\\\"\\n\\/>\"', 1, '2019-08-20 13:30:58', '2019-09-13 20:51:16', 5, '', 947, '385494dc-025e-40bc-bead-6549069dbc78', '', '', '', '', ''),
(2608, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'Anonymize (privacy)', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"anonymize\\\"\\n\\tlabel=\\\"Anonymize\\\"\\n\\tdescription=\\\"When deletion request is made, allow it to be anonymized instead.\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"1|Yes,0|No\\\"\\n\\tdefault=\\\"0\\\"\\n\\trequired=\\\"true\\\"\\n\\tshowon=\\\"activate:1\\\"\\n\\/>\"', 1, '2019-08-20 13:31:57', '2019-09-13 20:51:27', 5, '', 948, 'c05a08a4-05b0-48f9-a355-8e6c4cf4d0f7', '', '', '', '', ''),
(2609, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'Field (Anonymize)', 'NOT NULL', '', 6, '\"<field\\n\\ttype=\\\"targetfields\\\"\\n\\tname=\\\"field\\\"\\n\\tlabel=\\\"Field\\\"\\n\\textends=\\\"list\\\"\\n\\ttable=\\\"#__###component###_field\\\"\\n\\tcomponent=\\\"com_###component###\\\"\\n\\tview=\\\"field\\\"\\n\\tviews=\\\"fields\\\"\\n\\tvalue_field=\\\"name\\\"\\n\\tkey_field=\\\"id\\\"\\n\\ttype_php_1=\\\"__.o0=base64=Oo.__Ly8gbG9hZCB0aGUgZGIgb3BiamVjdA0KCQkkZGIgPSBKRmFjdG9yeTo6Z2V0REJPKCk7CQkNCgkJLy8gZ2V0IHRoZSBpbnB1dCBmcm9tIHVybA0KCQkkamlucHV0ID0gSkZhY3Rvcnk6OmdldEFwcGxpY2F0aW9uKCktPmlucHV0Ow0KCQkvLyBnZXQgdGhlIGlkDQoJCSRJRCA9ICRqaW5wdXQtPmdldEludCgnaWQnLCAwKTsNCgkJLy8gZ2V0IHRoZSB2aWV3IG5hbWUNCgkJJFZJRVcgPSAkamlucHV0LT5nZXQoJ3ZpZXcnLCBudWxsLCAnV09SRCcpOw0KCQkvLyByZXN0IHRoZSBmaWVsZHMgaWRzDQoJCSRmaWVsZElkcyA9IGFycmF5KCk7DQoJCS8vIGlmIHRoaXMgaXMgYW4gYWN0dWFsIGFkbWluIHZpZXcgdGhlbiB3ZSBhcmUgZG9uZQ0KCQlpZiAoJ2FkbWluX3ZpZXcnICA9PT0gJFZJRVcgJiYgaXNfbnVtZXJpYygkSUQpICYmICRJRCA+PSAxKQ0KCQl7DQoJCQkkYWRtaW5WaWV3ID0gJElEOw0KCQl9DQoJCWVsc2VpZiAoaXNfbnVtZXJpYygkSUQpICYmICRJRCA+PSAxKQ0KCQl7DQoJCQkvLyBnZXQgdGhlIGFkbWluIHZpZXcgSUQNCgkJCSRhZG1pblZpZXcgPSAjIyNDb21wb25lbnQjIyNIZWxwZXI6OmdldFZhcignYWRtaW5fZmllbGRzX2NvbmRpdGlvbnMnLCAoaW50KSAkSUQsICdpZCcsICdhZG1pbl92aWV3Jyk7DQoJCX0NCgkJZWxzZWlmICgnYWRtaW5fdmlldycgICE9PSAkVklFVykNCgkJew0KCQkJLy8gZ2V0IHRoZSBhZG1pbiB2aWV3IElEDQoJCQkkYWRtaW5WaWV3ID0gJGppbnB1dC0+Z2V0SW50KCdyZWZpZCcsIDApOw0KCQl9DQoJCWlmIChpc3NldCgkYWRtaW5WaWV3KSAmJiBpc19udW1lcmljKCRhZG1pblZpZXcpICYmICRhZG1pblZpZXcgPj0gMSkNCgkJew0KCQkJLy8gZ2V0IGFsbCB0aGUgZmllbGRzIGxpbmtlZCB0byB0aGUgYWRtaW4gdmlldw0KCQkJaWYgKCRhZGRGaWVsZHMgPSAjIyNDb21wb25lbnQjIyNIZWxwZXI6OmdldFZhcignYWRtaW5fZmllbGRzJywgKGludCkgJGFkbWluVmlldywgJ2FkbWluX3ZpZXcnLCAnYWRkZmllbGRzJykpDQoJCQl7DQoJCQkJaWYgKCMjI0NvbXBvbmVudCMjI0hlbHBlcjo6Y2hlY2tKc29uKCRhZGRGaWVsZHMpKQ0KCQkJCXsNCgkJCQkJJGFkZEZpZWxkcyA9IGpzb25fZGVjb2RlKCRhZGRGaWVsZHMsIHRydWUpOw0KCQkJCQlpZiAoIyMjQ29tcG9uZW50IyMjSGVscGVyOjpjaGVja0FycmF5KCRhZGRGaWVsZHMpKQ0KCQkJCQl7DQoJCQkJCQlmb3JlYWNoKCRhZGRGaWVsZHMgYXMgJGFkZEZpZWxkKQ0KCQkJCQkJew0KCQkJCQkJCWlmIChpc3NldCgkYWRkRmllbGRbJ2ZpZWxkJ10pKQ0KCQkJCQkJCXsNCgkJCQkJCQkJJGZpZWxkSWRzW10gPSAoaW50KSAkYWRkRmllbGRbJ2ZpZWxkJ107DQoJCQkJCQkJfQ0KCQkJCQkJfQ0KCQkJCQl9DQoJCQkJfQ0KCQkJfQ0KCQl9DQoJCSRxdWVyeSA9ICRkYi0+Z2V0UXVlcnkodHJ1ZSk7DQoJCSRxdWVyeS0+c2VsZWN0KCRkYi0+cXVvdGVOYW1lKGFycmF5KCdhLmlkJywnYS5uYW1lJyksYXJyYXkoJ2lkJywnbmFtZScpKSk7DQoJCSRxdWVyeS0+ZnJvbSgkZGItPnF1b3RlTmFtZSgnI19fIyMjY29tcG9uZW50IyMjX2ZpZWxkJywgJ2EnKSk7DQoJCSRxdWVyeS0+d2hlcmUoJGRiLT5xdW90ZU5hbWUoJ2EucHVibGlzaGVkJykgLiAnID49IDEnKTsNCgkJLy8gZmlsdGVyIGJ5IGZpZWxkcyBsaW5rZWQNCgkJaWYgKCMjI0NvbXBvbmVudCMjI0hlbHBlcjo6Y2hlY2tBcnJheSgkZmllbGRJZHMpKQ0KCQl7DQoJCQkvLyBvbmx5IGxvYWQgdGhlc2UgZmllbGRzDQoJCQkkcXVlcnktPndoZXJlKCRkYi0+cXVvdGVOYW1lKCdhLmlkJykgLiAnIElOICgnIC4gaW1wbG9kZSgnLCcsICRmaWVsZElkcykgLiAnKScpOw0KCQl9DQoJCSRxdWVyeS0+b3JkZXIoJ2EubmFtZSBBU0MnKTsNCgkJJGRiLT5zZXRRdWVyeSgoc3RyaW5nKSRxdWVyeSk7DQoJCSRpdGVtcyA9ICRkYi0+bG9hZE9iamVjdExpc3QoKTsNCgkJJG9wdGlvbnMgPSBhcnJheSgpOw0KCQlpZiAoJGl0ZW1zKQ0KCQl7DQoJCQlmb3JlYWNoKCRpdGVtcyBhcyAkaXRlbSkNCgkJCXsNCgkJCQkkb3B0aW9uc1tdID0gSkh0bWw6Ol8oJ3NlbGVjdC5vcHRpb24nLCAkaXRlbS0+aWQsICRpdGVtLT5uYW1lKTsNCgkJCX0NCgkJfQ0KCQkNCgkJcmV0dXJuICRvcHRpb25zOw==\\\"\\n\\/>\"', 1, '2019-08-20 13:36:07', '2019-08-20 13:36:55', 2, '', 82, 'b906e55d-15aa-4f5c-9468-3e7247b00101', '', '', '', '', ''),
(2610, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Anonymize Value', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"value\\\"\\n\\tlabel=\\\"Anonymize Value\\\"\\n\\tsize=\\\"10\\\"\\n\\tmaxlength=\\\"50\\\"\\n\\tdescription=\\\"RANDOM gives a random 8 digit value\\\"\\n\\tclass=\\\"text_area\\\"\\n\\tfilter=\\\"STRING\\\"\\n\\tautocomplete=\\\"on\\\"\\n\\/>\"', 1, '2019-08-20 13:39:21', '0000-00-00 00:00:00', 1, '', 949, '7102c16a-88a6-434d-9d57-3345e9993177', '', '', '', '', ''),
(2611, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Anonymize Fields', 'NOT NULL', '', 35, '\"<field\\n\\ttype=\\\"subform\\\"\\n\\tname=\\\"anonymize_fields\\\"\\n\\tlabel=\\\"Select all fields that must be anonymized?\\\"\\n\\tlayout=\\\"joomla.form.field.subform.repeatable-table\\\"\\n\\tmultiple=\\\"true\\\"\\n\\tbuttons=\\\"add,remove,move\\\"\\n\\tfields=\\\"2609, 2610\\\"\\n\\ticon=\\\"list\\\"\\n\\tmax=\\\"50\\\"\\n\\tshowon=\\\"activate:1[AND]anonymize:1\\\"\\n\\/>\"', 1, '2019-08-20 13:41:35', '2019-09-13 20:51:42', 6, '', 949, '0d2ec465-2371-4da8-b951-9f30d64599b3', '', '', '', '', ''),
(2612, '', '', '', '', '', '', '', '', '', '', '', '', '', '', 'Plugin User Link (privacy)', 'NOT NULL', '', 14, '\"<field\\n\\ttype=\\\"note\\\"\\n\\tname=\\\"note_plugin_user_link\\\"\\n\\tlabel=\\\"How is the user linked to this admin view?\\\"\\n\\tdescription=\\\"The privacy plugin needs to be able to get all rows that belongs to the user. Most of the time it is the rows that the user created, but it could also be via another user field or some custom relationship.\\\"\\n\\theading=\\\"h4\\\"\\n\\tclass=\\\"alert alert-info\\\"\\n\\tshowon=\\\"activate:1\\\"\\n\\/>\"', 1, '2019-08-20 13:43:20', '2019-09-13 20:54:00', 4, '', 947, 'be156743-fe15-4218-8793-01b2ec2e602a', '', '', '', '', ''),
(2613, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'User Link (privacy)', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"user_link\\\"\\n\\tlabel=\\\"User Link\\\"\\n\\tdescription=\\\"Here you can setup the way we can link a user to their data in this admin view.\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"1|Created By,2|Other User Field,3|Custom\\\"\\n\\tdefault=\\\"1\\\"\\n\\trequired=\\\"true\\\"\\n\\tshowon=\\\"activate:1\\\"\\n\\/>\"', 1, '2019-08-20 13:45:07', '2019-09-13 20:54:10', 5, '', 948, '487069e7-ad09-42bb-bff1-e6abbbe65173', '', '', '', '', ''),
(2614, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'PHP Custom Code', 'NOT NULL', '', 8, '\"<field\\n\\ttype=\\\"editor\\\"\\n\\tname=\\\"custom_link\\\"\\n\\tlabel=\\\"PHP Custom Code\\\"\\n\\tdefault=\\\"$query->where($db->quoteName(\'created_by\') . \' = \' . $db->quote($user->id));\\\"\\n\\tdescription=\\\"Only the lines of code to like this $user->id to a field in the table, see the code in the editor for an example.\\\"\\n\\twidth=\\\"100%\\\"\\n\\theight=\\\"80px\\\"\\n\\tcols=\\\"15\\\"\\n\\trows=\\\"30\\\"\\n\\tbuttons=\\\"no\\\"\\n\\tsyntax=\\\"php\\\"\\n\\teditor=\\\"codemirror|none\\\"\\n\\tfilter=\\\"raw\\\"\\n\\tvalidate=\\\"code\\\"\\n\\tshowon=\\\"activate:1[AND]user_link:3\\\"\\n\\/>\"', 1, '2019-08-20 13:52:12', '2019-09-13 20:54:26', 13, '', 950, '29a5c4be-14b9-4ce9-ba93-d5297df45d6d', '', '', '', '', ''),
(2615, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'Select other User Field', 'NOT NULL', '', 6, '\"<field\\n\\ttype=\\\"targetfields\\\"\\n\\tname=\\\"other_user_field\\\"\\n\\tlabel=\\\"Select other User Field\\\"\\n\\tdescription=\\\"Select the other field that is the user-id field you would like to use to link the data to the user.\\\"\\n\\tshowon=\\\"activate:1[AND]user_link:2\\\"\\n\\textends=\\\"list\\\"\\n\\ttable=\\\"#__###component###_field\\\"\\n\\tcomponent=\\\"com_###component###\\\"\\n\\tview=\\\"field\\\"\\n\\tviews=\\\"fields\\\"\\n\\tvalue_field=\\\"name\\\"\\n\\tkey_field=\\\"id\\\"\\n\\ttype_php_1=\\\"__.o0=base64=Oo.__Ly8gbG9hZCB0aGUgZGIgb3BiamVjdA0KCQkkZGIgPSBKRmFjdG9yeTo6Z2V0REJPKCk7CQkNCgkJLy8gZ2V0IHRoZSBpbnB1dCBmcm9tIHVybA0KCQkkamlucHV0ID0gSkZhY3Rvcnk6OmdldEFwcGxpY2F0aW9uKCktPmlucHV0Ow0KCQkvLyBnZXQgdGhlIGlkDQoJCSRJRCA9ICRqaW5wdXQtPmdldEludCgnaWQnLCAwKTsNCgkJLy8gZ2V0IHRoZSB2aWV3IG5hbWUNCgkJJFZJRVcgPSAkamlucHV0LT5nZXQoJ3ZpZXcnLCBudWxsLCAnV09SRCcpOw0KCQkvLyByZXN0IHRoZSBmaWVsZHMgaWRzDQoJCSRmaWVsZElkcyA9IGFycmF5KCk7DQoJCS8vIGlmIHRoaXMgaXMgYW4gYWN0dWFsIGFkbWluIHZpZXcgdGhlbiB3ZSBhcmUgZG9uZQ0KCQlpZiAoJ2FkbWluX3ZpZXcnICA9PT0gJFZJRVcgJiYgaXNfbnVtZXJpYygkSUQpICYmICRJRCA+PSAxKQ0KCQl7DQoJCQkkYWRtaW5WaWV3ID0gJElEOw0KCQl9DQoJCWVsc2VpZiAoaXNfbnVtZXJpYygkSUQpICYmICRJRCA+PSAxKQ0KCQl7DQoJCQkvLyBnZXQgdGhlIGFkbWluIHZpZXcgSUQNCgkJCSRhZG1pblZpZXcgPSAjIyNDb21wb25lbnQjIyNIZWxwZXI6OmdldFZhcignYWRtaW5fZmllbGRzX2NvbmRpdGlvbnMnLCAoaW50KSAkSUQsICdpZCcsICdhZG1pbl92aWV3Jyk7DQoJCX0NCgkJZWxzZWlmICgnYWRtaW5fdmlldycgICE9PSAkVklFVykNCgkJew0KCQkJLy8gZ2V0IHRoZSBhZG1pbiB2aWV3IElEDQoJCQkkYWRtaW5WaWV3ID0gJGppbnB1dC0+Z2V0SW50KCdyZWZpZCcsIDApOw0KCQl9DQoJCWlmIChpc3NldCgkYWRtaW5WaWV3KSAmJiBpc19udW1lcmljKCRhZG1pblZpZXcpICYmICRhZG1pblZpZXcgPj0gMSkNCgkJew0KCQkJLy8gZ2V0IGFsbCB0aGUgZmllbGRzIGxpbmtlZCB0byB0aGUgYWRtaW4gdmlldw0KCQkJaWYgKCRhZGRGaWVsZHMgPSAjIyNDb21wb25lbnQjIyNIZWxwZXI6OmdldFZhcignYWRtaW5fZmllbGRzJywgKGludCkgJGFkbWluVmlldywgJ2FkbWluX3ZpZXcnLCAnYWRkZmllbGRzJykpDQoJCQl7DQoJCQkJaWYgKCMjI0NvbXBvbmVudCMjI0hlbHBlcjo6Y2hlY2tKc29uKCRhZGRGaWVsZHMpKQ0KCQkJCXsNCgkJCQkJJGFkZEZpZWxkcyA9IGpzb25fZGVjb2RlKCRhZGRGaWVsZHMsIHRydWUpOw0KCQkJCQlpZiAoIyMjQ29tcG9uZW50IyMjSGVscGVyOjpjaGVja0FycmF5KCRhZGRGaWVsZHMpKQ0KCQkJCQl7DQoJCQkJCQlmb3JlYWNoKCRhZGRGaWVsZHMgYXMgJGFkZEZpZWxkKQ0KCQkJCQkJew0KCQkJCQkJCWlmIChpc3NldCgkYWRkRmllbGRbJ2ZpZWxkJ10pKQ0KCQkJCQkJCXsNCgkJCQkJCQkJJGZpZWxkSWRzW10gPSAoaW50KSAkYWRkRmllbGRbJ2ZpZWxkJ107DQoJCQkJCQkJfQ0KCQkJCQkJfQ0KCQkJCQl9DQoJCQkJfQ0KCQkJfQ0KCQl9DQoJCSRxdWVyeSA9ICRkYi0+Z2V0UXVlcnkodHJ1ZSk7DQoJCSRxdWVyeS0+c2VsZWN0KCRkYi0+cXVvdGVOYW1lKGFycmF5KCdhLmlkJywnYS5uYW1lJyksYXJyYXkoJ2lkJywnbmFtZScpKSk7DQoJCSRxdWVyeS0+ZnJvbSgkZGItPnF1b3RlTmFtZSgnI19fIyMjY29tcG9uZW50IyMjX2ZpZWxkJywgJ2EnKSk7DQoJCSRxdWVyeS0+d2hlcmUoJGRiLT5xdW90ZU5hbWUoJ2EucHVibGlzaGVkJykgLiAnID49IDEnKTsNCgkJLy8gZmlsdGVyIGJ5IGZpZWxkcyBsaW5rZWQNCgkJaWYgKCMjI0NvbXBvbmVudCMjI0hlbHBlcjo6Y2hlY2tBcnJheSgkZmllbGRJZHMpKQ0KCQl7DQoJCQkvLyBvbmx5IGxvYWQgdGhlc2UgZmllbGRzDQoJCQkkcXVlcnktPndoZXJlKCRkYi0+cXVvdGVOYW1lKCdhLmlkJykgLiAnIElOICgnIC4gaW1wbG9kZSgnLCcsICRmaWVsZElkcykgLiAnKScpOw0KCQl9DQoJCSRxdWVyeS0+b3JkZXIoJ2EubmFtZSBBU0MnKTsNCgkJJGRiLT5zZXRRdWVyeSgoc3RyaW5nKSRxdWVyeSk7DQoJCSRpdGVtcyA9ICRkYi0+bG9hZE9iamVjdExpc3QoKTsNCgkJJG9wdGlvbnMgPSBhcnJheSgpOw0KCQlpZiAoJGl0ZW1zKQ0KCQl7DQoJCQlmb3JlYWNoKCRpdGVtcyBhcyAkaXRlbSkNCgkJCXsNCgkJCQkkb3B0aW9uc1tdID0gSkh0bWw6Ol8oJ3NlbGVjdC5vcHRpb24nLCAkaXRlbS0+aWQsICRpdGVtLT5uYW1lKTsNCgkJCX0NCgkJfQ0KCQkNCgkJcmV0dXJuICRvcHRpb25zOw==\\\"\\n\\/>\"', 1, '2019-08-20 19:17:23', '2019-09-13 20:54:42', 5, '', 82, '9a80d807-eed8-436e-892d-39381e768071', '', '', '', '', ''),
(2616, '', '', '', '', '', '', '', '', '', '', '', '', '', '', 'Plugin Actions (privacy-oops)', 'NOT NULL', '', 14, '\"<field\\n\\ttype=\\\"note\\\"\\n\\tname=\\\"note_plugin_actions\\\"\\n\\tlabel=\\\"Does the values stored in this admin view have a direct relationship with any user in Joomla?\\\"\\n\\tdescription=\\\"The Joomla Privacy Suite helps you comply with the privacy requirements of your component. So should this admin view in you component have any personal data related to any user in Joomla where your component is eventually installed by Joomla website owners\\/developers, then you should activate this integration with Joomla Privacy Suite.\\\"\\n\\theading=\\\"h3\\\"\\n\\tclass=\\\"alert alert-info\\\"\\n\\/>\"', 1, '2019-08-20 19:29:24', '2019-08-20 19:33:34', 2, '', 947, '7e6647fb-1fee-4ab0-875c-090a67a64125', '', '', '', '', ''),
(2617, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Fields Name (params)', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"fields_name\\\"\\n\\tlabel=\\\"Fields Name\\\"\\n\\tsize=\\\"10\\\"\\n\\tmaxlength=\\\"50\\\"\\n\\tdefault=\\\"params\\\"\\n\\tdescription=\\\"Leave default if you don\'t know what this should be.\\\"\\n\\tclass=\\\"text_area\\\"\\n\\tfilter=\\\"CMD\\\"\\n\\thint=\\\"params\\\"\\n\\tautocomplete=\\\"on\\\"\\n\\/>\"', 1, '2019-08-20 19:45:28', '2019-09-13 21:09:53', 6, '', 951, '6e2c17ee-f5d4-499f-8146-101b68f532b7', '', '', '', '', ''),
(2618, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Fieldset Name (basic)', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"fieldset\\\"\\n\\tlabel=\\\"Fieldset Name\\\"\\n\\tdescription=\\\"Leave default if you don\'t know what this should be\\\"\\n\\tsize=\\\"10\\\"\\n\\tmaxlength=\\\"50\\\"\\n\\tdefault=\\\"basic\\\"\\n\\tclass=\\\"text_area\\\"\\n\\tfilter=\\\"WORD\\\"\\n\\thint=\\\"basic\\\"\\n\\tautocomplete=\\\"on\\\"\\n\\/>\"', 1, '2019-08-20 19:48:49', '2019-08-20 20:27:44', 2, '', 951, '44c318f5-f3f1-4c2d-a71b-93a7de04aa80', '', '', '', '', ''),
(2619, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Label (fieldset)', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"label\\\"\\n\\tlabel=\\\"Label\\\"\\n\\tdescription=\\\"Not mandatory, used to Label the Fieldset\\\"\\n\\tsize=\\\"10\\\"\\n\\tmaxlength=\\\"50\\\"\\n\\tclass=\\\"text_area\\\"\\n\\tfilter=\\\"String\\\"\\n\\thint=\\\"Name\\\"\\n\\tautocomplete=\\\"on\\\"\\n\\/>\"', 1, '2019-08-20 19:51:15', '2019-08-20 20:30:52', 3, '', 951, '83367cc8-7623-44c9-81ca-760315fcd73b', '', '', '', '', ''),
(2620, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'File Name', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"file\\\"\\n\\tlabel=\\\"File Name\\\"\\n\\tdescription=\\\"Leave default if you don\'t know what this should be. This field is ignored if this form belongs to the plugin config area.\\\"\\n\\tsize=\\\"10\\\"\\n\\tmaxlength=\\\"50\\\"\\n\\tdefault=\\\"config\\\"\\n\\tclass=\\\"text_area\\\"\\n\\tfilter=\\\"WORD\\\"\\n\\thint=\\\"config\\\"\\n\\tautocomplete=\\\"on\\\"\\n\\/>\"', 1, '2019-08-20 19:52:22', '2019-08-20 20:29:49', 2, '', 951, 'a363ac35-287e-43fa-8922-37a0a8d00670', '', '', '', '', ''),
(2621, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Fields (plugin)', 'NOT NULL', '', 35, '\"<field\\n\\ttype=\\\"subform\\\"\\n\\tname=\\\"fields\\\"\\n\\tlabel=\\\"Fields\\\"\\n\\tlayout=\\\"joomla.form.field.subform.repeatable-table\\\"\\n\\tmultiple=\\\"true\\\"\\n\\tbuttons=\\\"add,remove,move\\\"\\n\\tfields=\\\"143,317\\\"\\n\\tdescription=\\\"All the field that belong to this form.\\\"\\n\\ticon=\\\"list\\\"\\n\\tmax=\\\"100\\\"\\n\\/>\"', 1, '2019-08-20 19:57:32', '2022-01-10 12:45:37', 7, '', 952, '792b9e3c-9dd1-4f16-bf08-1f3d2a3c7ac3', '', '', '', '', ''),
(2622, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'Plugin Config Field', 'NOT NULL', '', 3, '\"<field\\n\\ttype=\\\"checkbox\\\"\\n\\tname=\\\"plugin\\\"\\n\\tlabel=\\\"Add to Plugin Config\\\"\\n\\tvalue=\\\"1\\\"\\n\\tdescription=\\\"Add this form the the Plugin Config area.\\\"\\n\\tdefault=\\\"1\\\"\\n\\tclass=\\\"inputbox\\\"\\n\\/>\"', 1, '2019-08-20 20:05:05', '2019-08-20 20:31:57', 2, '', 953, 'd61e792c-0257-4fe9-a7e7-43a93c7fb064', '', '', '', '', ''),
(2623, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'Target Association', 'NOT NULL', '', 11, '\"<field\\n\\ttype=\\\"list\\\"\\n\\tname=\\\"target\\\"\\n\\tlabel=\\\"Target\\\"\\n\\tdescription=\\\"Association \\\"\\n\\tclass=\\\"list_class\\\"\\n\\tmultiple=\\\"false\\\"\\n\\toption=\\\"1|Compile (only),2|Export (only),0|Compile &amp; Export\\\"\\n\\tdefault=\\\"0\\\"\\n\\/>\"', 1, '2019-09-10 01:32:28', '2019-09-10 01:33:21', 2, '', 954, '788c474f-b136-481d-a87f-e22f87e27db4', '', '', '', '', ''),
(2624, 1, '', '', '', 'I2pmb3JtX3Rva2VuX2Noem4sIC5mdWxsLXdpZHRoICB7DQp3aWR0aDogMTAwJSAhaW1wb3J0YW50Ow0KfQ==', '', '', '', 100, '', 'VARCHAR', '', '', '', 'gitHub Access Token', 'NOT NULL', 5, 16, '\"<field\\n\\ttype=\\\"password\\\"\\n\\tname=\\\"github_access_token\\\"\\n\\tlabel=\\\"gitHub Access Token<br \\/><small>Check <a href=\'https:\\/\\/developer.github.com\\/v3\\/#authentication\' target=\'_blank\'>https:\\/\\/developer.github.com\\/v3\\/#authentication<\\/a> for more info.<\\/small>\\\"\\n\\tsize=\\\"128\\\"\\n\\tdescription=\\\"This is only needed when you are on a shared IP or\\/and have reached the public free limit of API queries to gitHub. So unless you have seen some kind of error that directed you here to add an <b>access token<\\/b> you can just ignore this field.\\\"\\n\\tmessage=\\\"Error! Please add token here.\\\"\\n\\tclass=\\\"text_area\\\"\\n\\tfilter=\\\"STRING\\\"\\n\\thint=\\\"OAUTH-TOKEN\\\"\\n\\tautocomplete=\\\"off\\\"\\n\\/>\"', 1, '2019-09-10 16:37:36', '2022-06-09 19:53:04', 4, '', 848, '2c58fa7a-7e71-46e2-9beb-0d2ce0cf07ad', '', '', '', '', ''),
(2625, '', '', 1, '', '', '', '', '', '', '', '', '', 'W0NVU1RPTUNPREU9dWlraXRGaWxlVXBsb2FkZXIrZmlsZSxmaWxlLG1haW5d', '', 'Main File Uploader (uikit)', 'NOT NULL', '', 14, '\"<field\\n\\ttype=\\\"note\\\"\\n\\tname=\\\"main_file_uploader\\\"\\n\\tlabel=\\\"File\\\"\\n\\tdescription=\\\"[CUSTOMCODE=uikitFileUploaderHTML+file,file,main]\\\"\\n\\/>\"', 1, '2019-09-30 01:18:28', '2019-10-06 16:15:13', 4, '', 110, '17de6b8c-5122-43f4-a7a7-a8cfa93f0731', '', '', '', '', ''),
(2626, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Main File Key', 'NOT NULL', 6, 9, '\"<field\\n\\ttype=\\\"hidden\\\"\\n\\tname=\\\"main_file\\\"\\n\\tdefault=\\\"\\\"\\n\\/>\"', 1, '2019-09-30 01:19:29', '2019-10-19 19:54:58', 7, '', 729, '15e93e49-f192-4d89-b9d8-ef0c42fb96ed', 'W0NVU1RPTUNPREU9dW5sb2NrRGVjcnlwdEZpZWxkXQ==', 'W0NVU1RPTUNPREU9bG9ja0VuY3J5cHRGaWVsZF0=', '', '', ''),
(2627, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Allowed File Formats', 'NOT NULL', '', 6, '\"<field\\n\\ttype=\\\"allowedfileformats\\\"\\n\\tname=\\\"file_formats\\\"\\n\\tlabel=\\\"Allowed File Formats\\\"\\n\\tdescription=\\\"Select all the file formats allowed\\\"\\n\\tclass=\\\"list_class\\\"\\n\\tmultiple=\\\"true\\\"\\n\\textends=\\\"list\\\"\\n\\tprime_php=\\\"1\\\"\\n\\ttype_php_1=\\\"__.o0=base64=Oo.__W0NVU1RPTUNPREU9Z2V0RmlsZUV4dGVuc2lvbnNGb3VyRmllbGRzK2ZpbGVd\\\"\\n\\/>\"', 1, '2019-09-30 01:34:01', '2019-10-01 10:59:38', 7, '', 766, 'cfdfd67c-6090-4278-a371-024f748a4440', '', '', '', '', ''),
(2628, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'File Image Key', 'NOT NULL', 5, 9, '\"<field\\n\\ttype=\\\"hidden\\\"\\n\\tname=\\\"file_image\\\"\\n\\tdefault=\\\"\\\"\\n\\/>\"', 1, '2019-09-30 10:42:41', '2019-09-30 10:58:01', 2, '', 729, '9057d4d4-fdd9-49a8-9b44-bd85ffedfe48', '', '', '', '', ''),
(2629, '', '', 1, '', '', '', '', '', '', '', '', '', 'W0NVU1RPTUNPREU9dWlraXRJbWFnZVVwbG9hZGVyK2ltYWdlLGltYWdlLGZpbGVd', '', 'File Image Uploader (uikit)', 'NOT NULL', '', 14, '\"<field\\n\\ttype=\\\"note\\\"\\n\\tname=\\\"file_image_uploader\\\"\\n\\tlabel=\\\"Image\\\"\\n\\tdescription=\\\"[CUSTOMCODE=uikitImageUploaderHTML+image,image,file]\\\"\\n\\/>\"', 1, '2019-09-30 10:43:26', '2018-09-18 20:55:54', 1, '', 110, '72f52795-fc9a-4565-b05e-7991bdab5f23', '', '', '', '', ''),
(2630, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'Crop File Images', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"crop_file\\\"\\n\\tlabel=\\\"Crop All File Images\\\"\\n\\tdescription=\\\"Set if all file images that are added should be cropped.\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"1|Yes,0|No\\\"\\n\\tdefault=\\\"0\\\"\\n\\/>\"', 1, '2019-09-30 10:43:57', '2017-04-07 19:59:52', 1, '', 765, '865cdd95-bc57-4b05-b957-5743a15ea3a2', '', '', '', '', ''),
(2631, '', '', '', '', '', '', '', '', 11, '', 'INT', '', '', '', 'File Image Width (in pixels)', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"file_width\\\"\\n\\tlabel=\\\"File Image Width (in pixels)\\\"\\n\\tsize=\\\"50\\\"\\n\\tmaxlength=\\\"150\\\"\\n\\tclass=\\\"text_area\\\"\\n\\tfilter=\\\"INT\\\"\\n\\thint=\\\"Only Numbers\\\"\\n\\tshowon=\\\"crop_file:1\\\"\\n\\tonchange=\\\"if(!jQuery(this).val().match(\\/^\\\\d+$\\/)){jQuery(this).val(\'\')};\\\"\\n\\/>\"', 1, '2019-09-30 10:45:27', '2017-04-07 10:44:09', 1, '', 7, '3a6df2ff-6195-4621-9999-9bb2e33ccdb9', '', '', '', '', ''),
(2632, '', '', '', '', '', '', '', '', 11, '', 'INT', '', '', '', 'File Image Height (in pixels)', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"file_height\\\"\\n\\tlabel=\\\"File Image Height (in pixels)\\\"\\n\\tsize=\\\"50\\\"\\n\\tmaxlength=\\\"150\\\"\\n\\tclass=\\\"text_area\\\"\\n\\tfilter=\\\"INT\\\"\\n\\thint=\\\"Only Numbers\\\"\\n\\tshowon=\\\"crop_file:1\\\"\\n\\tonchange=\\\"if(!jQuery(this).val().match(\\/^\\\\d+$\\/)){jQuery(this).val(\'\')};\\\"\\n\\/>\"', 1, '2019-09-30 10:45:52', '2019-09-30 10:45:03', 1, '', 7, '8569899f-4b79-4b1a-8862-9824d6afdf04', '', '', '', '', ''),
(2633, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'Folders (category)', 'NOT NULL', '', 2, '\"<field\\n\\ttype=\\\"category\\\"\\n\\tname=\\\"catid\\\"\\n\\tlabel=\\\"Folders\\\"\\n\\textension=\\\"com_###component###.files\\\"\\n\\tdescription=\\\"Select any of the following folders. We use the categories as folders.\\\"\\n\\tclass=\\\"inputbox\\\"\\n\\/>\"', 1, '2019-10-01 16:17:31', '2019-10-01 23:13:35', 5, '', 147, '6c91e77e-3dde-497f-b2a7-d5d6cbfb0071', '', '', '', '', ''),
(2634, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Folder (request_id)', 'NOT NULL', 1, 2, '\"<field\\n\\ttype=\\\"category\\\"\\n\\tname=\\\"folders_request_id\\\"\\n\\tlabel=\\\"Folder\\\"\\n\\textension=\\\"com_###component###.files\\\"\\n\\trequired=\\\"true\\\"\\n\\tdescription=\\\"Select any of the following folders\\\"\\n\\tclass=\\\"inputbox\\\"\\n\\/>\"', 1, '2019-10-02 00:52:55', '2019-10-03 20:44:53', 5, '', 147, '28d758e4-5606-4ef7-9900-ddaf1df0323d', '', '', '', '', ''),
(2635, '', '', '', '', '', '', '', '', '', '', 'VARCHAR', 2, '', '', 'File Vector Style', 'NOT NULL', '', 11, '\"<field\\n\\ttype=\\\"list\\\"\\n\\tname=\\\"file_vector_style\\\"\\n\\tlabel=\\\"Vector Style\\\"\\n\\tdescription=\\\"Select the icon vector style you would like to use for files.\\\"\\n\\tmessage=\\\"\\\"\\n\\tclass=\\\"list_class\\\"\\n\\tmultiple=\\\"false\\\"\\n\\toption=\\\"classic|Classic,square-o|Square,vivid|Vivid,high-contrast|High Contrast\\\"\\n\\tdefault=\\\"high-contrast\\\"\\n\\/>\"', 1, '2019-10-03 09:37:11', '0000-00-00 00:00:00', 1, '', 955, '13b56bf9-0b12-4a6d-b24d-e40fd6ccfa3b', '', '', '', '', ''),
(2636, '', '', '', '', '', '', '', '', '', '', '', '', '', '', 'File Vector Style (Classic)', 'NOT NULL', '', 14, '\"<field\\n\\ttype=\\\"note\\\"\\n\\tname=\\\"file_vector_style_classic_note\\\"\\n\\tlabel=\\\"Classic\\\"\\n\\tdescription=\\\"<link href=\'\\/media\\/com_componentbuilder\\/vector\\/file-icon-classic.min.css\' rel=\'stylesheet\'>\\r\\n<span class=\'fiv-cla fiv-icon-ods fiv-size-xl\'><\\/span>\\r\\n<span class=\'fiv-cla fiv-icon-pdf fiv-size-xl\'><\\/span>\\r\\n<span class=\'fiv-cla fiv-icon-mp3 fiv-size-xl\'><\\/span>\\r\\n<span class=\'fiv-cla fiv-icon-odt fiv-size-xl\'><\\/span>\\r\\n<span class=\'fiv-cla fiv-icon-doc fiv-size-xl\'><\\/span>\\\"\\n\\theading=\\\"h4\\\"\\n\\tshowon=\\\"file_vector_style:classic\\\"\\n\\/>\"', 1, '2019-10-03 09:47:02', '2019-10-03 18:50:12', 8, '', 955, '4f4f340d-4fa9-4ee2-853d-a28f772a7063', '', '', '', '', ''),
(2637, '', '', '', '', '', '', '', '', '', '', '', '', '', '', 'File Vector Style (Square)', 'NOT NULL', '', 14, '\"<field\\n\\ttype=\\\"note\\\"\\n\\tname=\\\"file_vector_style_square_note\\\"\\n\\tlabel=\\\"Square\\\"\\n\\tdescription=\\\"<link href=\'\\/media\\/com_componentbuilder\\/vector\\/file-icon-square-o.min.css\' rel=\'stylesheet\'>\\r\\n<span class=\'fiv-sqo fiv-icon-ods fiv-size-xl\'><\\/span>\\r\\n<span class=\'fiv-sqo fiv-icon-pdf fiv-size-xl\'><\\/span>\\r\\n<span class=\'fiv-sqo fiv-icon-mp3 fiv-size-xl\'><\\/span>\\r\\n<span class=\'fiv-sqo fiv-icon-odt fiv-size-xl\'><\\/span>\\r\\n<span class=\'fiv-sqo fiv-icon-doc fiv-size-xl\'><\\/span>\\\"\\n\\theading=\\\"h4\\\"\\n\\tshowon=\\\"file_vector_style:square-o\\\"\\n\\/>\"', 1, '2019-10-03 09:51:11', '2019-10-03 18:50:30', 6, '', 955, 'b7e62697-4090-49dd-ac27-f00707261e2f', '', '', '', '', ''),
(2638, '', '', '', '', '', '', '', '', '', '', '', '', '', '', 'File Vector Style (Vivid)', 'NOT NULL', '', 14, '\"<field\\n\\ttype=\\\"note\\\"\\n\\tname=\\\"file_vector_style_vivid_note\\\"\\n\\tlabel=\\\"Vivid\\\"\\n\\tdescription=\\\"<link href=\'\\/media\\/com_componentbuilder\\/vector\\/file-icon-vivid.min.css\' rel=\'stylesheet\'>\\r\\n<span class=\'fiv-viv fiv-icon-ods fiv-size-xl\'><\\/span>\\r\\n<span class=\'fiv-viv fiv-icon-pdf fiv-size-xl\'><\\/span>\\r\\n<span class=\'fiv-viv fiv-icon-mp3 fiv-size-xl\'><\\/span>\\r\\n<span class=\'fiv-viv fiv-icon-odt fiv-size-xl\'><\\/span>\\r\\n<span class=\'fiv-viv fiv-icon-doc fiv-size-xl\'><\\/span>\\\"\\n\\theading=\\\"h4\\\"\\n\\tshowon=\\\"file_vector_style:vivid\\\"\\n\\/>\"', 1, '2019-10-03 09:52:22', '2019-10-03 18:50:46', 5, '', 955, '34e3d752-b87b-4705-805c-3a04c76b6c50', '', '', '', '', ''),
(2639, '', '', '', '', '', '', '', '', '', '', '', '', '', '', 'File Vector Style (High Contrast)', 'NOT NULL', '', 14, '\"<field\\n\\ttype=\\\"note\\\"\\n\\tname=\\\"file_vector_style_high_contrast_note\\\"\\n\\tlabel=\\\"High Contrast\\\"\\n\\tdescription=\\\"<link href=\'\\/media\\/com_componentbuilder\\/vector\\/file-icon-high-contrast.min.css\' rel=\'stylesheet\'>\\r\\n<span class=\'fiv-hct fiv-icon-ods fiv-size-xl\'><\\/span>\\r\\n<span class=\'fiv-hct fiv-icon-pdf fiv-size-xl\'><\\/span>\\r\\n<span class=\'fiv-hct fiv-icon-mp3 fiv-size-xl\'><\\/span>\\r\\n<span class=\'fiv-hct fiv-icon-odt fiv-size-xl\'><\\/span>\\r\\n<span class=\'fiv-hct fiv-icon-doc fiv-size-xl\'><\\/span>\\\"\\n\\theading=\\\"h4\\\"\\n\\tshowon=\\\"file_vector_style:high-contrast\\\"\\n\\/>\"', 1, '2019-10-03 09:54:03', '2019-10-03 18:51:03', 6, '', 955, '23c3a0ba-3591-4f47-b3ad-58d54e6ee069', '', '', '', '', ''),
(2640, '', '', '', '', '', '', '', '', 11, '', 'VARCHAR', '', '', '', 'File Vector Size (Medium)', 'NOT NULL', '', 18, '\"<field\\n\\ttype=\\\"range\\\"\\n\\tname=\\\"file_vector_size_medium\\\"\\n\\tlabel=\\\"File Vector Size (Medium)\\\"\\n\\tdefault=\\\"2.25\\\"\\n\\tdescription=\\\"Set the size of the medium file vectors.\\\"\\n\\tmin=\\\"0.25\\\"\\n\\tmax=\\\"6\\\"\\n\\tstep=\\\"0.25\\\"\\n\\trequired=\\\"false\\\"\\n\\tonchange=\\\"jQuery(\'#jform_file_vector_size_medium\').closest(\'.controls\').find(\'span\').remove();var value = jQuery(\'#jform_file_vector_size_medium\').val();jQuery(\'#jform_file_vector_size_medium\').closest(\'.controls\').append(\'&lt;span class=\\\\&apos;fiv-viv fiv-icon-odt\\\\&apos; style=\\\\&apos;font-size:\'+value+\'em\\\\&apos;&gt;&lt;\\/span&gt;\');\\\"\\n\\/>\"', 1, '2019-10-03 16:37:01', '2019-10-03 18:42:02', 12, '', 955, '7df99106-cd47-4678-ae19-137380b7f673', '', '', '', '', ''),
(2641, '', '', '', '', '', '', '', '', 11, '', 'VARCHAR', '', '', '', 'File Vector Size (Large)', 'NOT NULL', '', 18, '\"<field\\n\\ttype=\\\"range\\\"\\n\\tname=\\\"file_vector_size_large\\\"\\n\\tlabel=\\\"File Vector Size (Large)\\\"\\n\\tdefault=\\\"3.5\\\"\\n\\tdescription=\\\"Set the size of the large file vectors.\\\"\\n\\tmin=\\\"2\\\"\\n\\tmax=\\\"10\\\"\\n\\tstep=\\\"0.25\\\"\\n\\trequired=\\\"false\\\"\\n\\tonchange=\\\"jQuery(\'#jform_file_vector_size_large\').closest(\'.controls\').find(\'span\').remove();var value = jQuery(\'#jform_file_vector_size_large\').val();jQuery(\'#jform_file_vector_size_large\').closest(\'.controls\').append(\'&lt;span class=\\\\&apos;fiv-viv fiv-icon-odt\\\\&apos; style=\\\\&apos;font-size:\'+value+\'em\\\\&apos;&gt;&lt;\\/span&gt;\');\\\"\\n\\/>\"', 1, '2019-10-03 16:38:09', '2019-10-03 18:41:51', 5, '', 955, '75230f01-40f5-4af1-a113-b3da7cbd0081', '', '', '', '', ''),
(2642, '', '', '', '', '', '', '', '', 11, '', 'VARCHAR', '', '', '', 'File Vector Size (Extra-Large)', 'NOT NULL', '', 18, '\"<field\\n\\ttype=\\\"range\\\"\\n\\tname=\\\"file_vector_size_xlarge\\\"\\n\\tlabel=\\\"File Vector Size (XLarge)\\\"\\n\\tdefault=\\\"4.75\\\"\\n\\tdescription=\\\"Set the size of the large file vectors.\\\"\\n\\tmin=\\\"2\\\"\\n\\tmax=\\\"30\\\"\\n\\tstep=\\\"0.25\\\"\\n\\trequired=\\\"false\\\"\\n\\tonchange=\\\"jQuery(\'#jform_file_vector_size_xlarge\').closest(\'.controls\').find(\'span\').remove();var value = jQuery(\'#jform_file_vector_size_xlarge\').val();jQuery(\'#jform_file_vector_size_xlarge\').closest(\'.controls\').append(\'&lt;span class=\\\\&apos;fiv-viv fiv-icon-odt\\\\&apos; style=\\\\&apos;font-size:\'+value+\'em\\\\&apos;&gt;&lt;\\/span&gt;\');\\\"\\n\\/>\"', 1, '2019-10-03 16:39:47', '2019-10-03 18:42:13', 7, '', 955, 'c094ddfa-c34b-4bfa-9df4-d9bd9f7fc3c9', '', '', '', '', ''),
(2643, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'Access (download)', 'NOT NULL', '', 34, '\"<field\\n\\ttype=\\\"accesslevel\\\"\\n\\tname=\\\"access\\\"\\n\\tlabel=\\\"Access\\\"\\n\\tdescription=\\\"Select the access level that is allowed to download this file.\\\"\\n\\trequired=\\\"true\\\"\\n\\tmultiple=\\\"false\\\"\\n\\/>\"', 1, '2019-10-04 01:52:24', '0000-00-00 00:00:00', 1, '', 894, 'f42d002c-86c7-4465-ac76-444f13a863b0', '', '', '', '', ''),
(2644, '', '', '', '', '', '', '', '', '', '', 'TINYINT', '', '', '', 'add CSS (file vector)', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"add_css\\\"\\n\\tlabel=\\\"Add CSS<br \\/><small>when icon vector option is used<\\/small>\\\"\\n\\tdescription=\\\"Activate the css for the file vector style to be added.\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"1|Yes,0|No\\\"\\n\\tdefault=\\\"1\\\"\\n\\/>\"', 1, '2019-10-08 16:37:17', '0000-00-00 00:00:00', 1, '', 956, '979938f2-f648-4084-99e1-48ceffcc7360', '', '', '', '', ''),
(2645, '', '', '', '', '', '', '', '', '', '', 'CHAR', '', '', '', 'Icon Default Size', 'NOT NULL', '', 11, '\"<field\\n\\ttype=\\\"list\\\"\\n\\tname=\\\"icon_size\\\"\\n\\tlabel=\\\"Icon Default Size\\\"\\n\\tdescription=\\\"Set the icon default size to be used.\\\"\\n\\tclass=\\\"list_class\\\"\\n\\toption=\\\"md|medium,lg|large,xl|x-large\\\"\\n\\tdefault=\\\"md\\\"\\n\\/>\"', 1, '2019-10-08 16:39:35', '0000-00-00 00:00:00', 1, '', 957, '501d1982-fdf5-4a04-a1a2-c46c2d28ffce', '', '', '', '', ''),
(2646, '', '', '', '', '', '', '', '', '', '', '', '', '', '', 'Placeholders (file download)', 'NOT NULL', '', 14, '\"<field\\n\\ttype=\\\"note\\\"\\n\\tname=\\\"placeholders_note\\\"\\n\\tlabel=\\\"Placeholder Options\\\"\\n\\tdescription=\\\"You have many variations of placeholders available to you:<br \\/><br \\/>\\r\\n<code>[[[[SECUREFILE]]]=icon_id]<\\/code> = Default Icon<br \\/>\\r\\n<code>[[[[SECUREFILE]]]=icon-md_id]<\\/code> = Medium Icon<br \\/>\\r\\n<code>[[[[SECUREFILE]]]=icon-lg_id]<\\/code> = Large Icon<br \\/>\\r\\n<code>[[[[SECUREFILE]]]=icon-xl_id]<\\/code> = X-large Icon<br \\/><br \\/>\\r\\n<code>[[[[SECUREFILE]]]=icon+name_id]<\\/code> = Default Icon with name under<br \\/>\\r\\n<code>[[[[SECUREFILE]]]=icon-md+name_id]<\\/code> = Medium Icon with name under<br \\/>\\r\\n<code>[[[[SECUREFILE]]]=icon-lg+name_id]<\\/code> = Large Icon with name under<br \\/>\\r\\n<code>[[[[SECUREFILE]]]=icon-xl+name_id]<\\/code> = X-large Icon with name under<br \\/><br \\/>\\r\\n<code>[[[[SECUREFILE]]]=icon-name_id]<\\/code> = Default Icon with name next to icon<br \\/>\\r\\n<code>[[[[SECUREFILE]]]=icon-md-name_id]<\\/code> = Medium Icon with name next to icon<br \\/>\\r\\n<code>[[[[SECUREFILE]]]=icon-lg-name_id]<\\/code> = Large Icon with name next to icon<br \\/>\\r\\n<code>[[[[SECUREFILE]]]=icon-xl-name_id]<\\/code> = X-large Icon with name next to icon<br \\/><br \\/>\\r\\n<code>[[[[SECUREFILE]]]=name_id]<\\/code> = File name<br \\/>\\r\\n<code>[[[[SECUREFILE]]]=description_id]<\\/code> = File description<br \\/>\\r\\n<code>[[[[SECUREFILE]]]=url_id]<\\/code> = File url<br \\/>\\r\\n<code>[[[[SECUREFILE]]]=link_id]<\\/code> = File link<br \\/>\\r\\n<br \\/>\\r\\n<small> The id value is the file\'s actual ID integer value<\\/small>\\\"\\n\\theading=\\\"h4\\\"\\n\\/>\"', 1, '2019-10-08 16:53:26', '2019-10-08 16:57:34', 3, '', 958, '74b01415-f67f-4936-b1fc-7a6018533fcc', '', '', '', '', ''),
(2647, '', '', '', '', '', '', '', '', 'Other', 36, 'VARCHAR', 2, '', '', 'Resource (belongs to)', 'NOT NULL', '', 6, '\"<field\\n\\ttype=\\\"resource\\\"\\n\\tname=\\\"resource\\\"\\n\\tlabel=\\\" Resource\\\"\\n\\tdescription=\\\"Resource this [[[View]]] belongs to.\\\"\\n\\tclass=\\\"list_class\\\"\\n\\tmultiple=\\\"false\\\"\\n\\tdefault=\\\"0\\\"\\n\\trequired=\\\"true\\\"\\n\\textends=\\\"list\\\"\\n\\ttable=\\\"#__###component###_resource\\\"\\n\\tcomponent=\\\"com_###component###\\\"\\n\\tview=\\\"resource\\\"\\n\\tviews=\\\"resources\\\"\\n\\tvalue_field=\\\"name\\\"\\n\\tkey_field=\\\"guid\\\"\\n\\tprime_php=\\\"1\\\"\\n\\ttype_php_1=\\\"__.o0=base64=Oo.__Ly8gR2V0IHRoZSB1c2VyIG9iamVjdC4NCgkJJHVzZXIgPSBKRmFjdG9yeTo6Z2V0VXNlcigpOw0KCQkvLyBHZXQgdGhlIGRhdGFic2Ugb2JqZWN0Lg0KCQkkZGIgPSBKRmFjdG9yeTo6Z2V0REJPKCk7DQoJCSRxdWVyeSA9ICRkYi0+Z2V0UXVlcnkodHJ1ZSk7DQoJCSRxdWVyeS0+c2VsZWN0KCRkYi0+cXVvdGVOYW1lKGFycmF5KCdhLiMjI0lEIyMjJywnYS4jIyNURVhUIyMjJyksYXJyYXkoJyMjI0lEIyMjJywnIyMjQ09ERV9URVhUIyMjJykpKTsNCgkJJHF1ZXJ5LT5mcm9tKCRkYi0+cXVvdGVOYW1lKCcjIyNUQUJMRSMjIycsICdhJykpOw0KCQkkcXVlcnktPm9yZGVyKCdhLiMjI1RFWFQjIyMgQVNDJyk7DQoJCS8vIEltcGxlbWVudCBWaWV3IExldmVsIEFjY2VzcyAoaWYgc2V0IGluIHRhYmxlKQ0KCQlpZiAoISR1c2VyLT5hdXRob3Jpc2UoJ2NvcmUub3B0aW9ucycsICdbW1tjb21fY29tcG9uZW50XV1dJykpDQoJCXsNCgkJCSRjb2x1bW5zID0gJGRiLT5nZXRUYWJsZUNvbHVtbnMoJyMjI1RBQkxFIyMjJyk7DQoJCQlpZihpc3NldCgkY29sdW1uc1snYWNjZXNzJ10pKQ0KCQkJew0KCQkJCSRncm91cHMgPSBpbXBsb2RlKCcsJywgJHVzZXItPmdldEF1dGhvcmlzZWRWaWV3TGV2ZWxzKCkpOw0KCQkJCSRxdWVyeS0+d2hlcmUoJ2EuYWNjZXNzIElOICgnIC4gJGdyb3VwcyAuICcpJyk7DQoJCQl9DQoJCX0NCgkJJGRiLT5zZXRRdWVyeSgoc3RyaW5nKSRxdWVyeSk7DQoJCSRpdGVtcyA9ICRkYi0+bG9hZE9iamVjdExpc3QoKTsNCgkJJG9wdGlvbnMgPSBhcnJheSgpOw0KCQlpZiAoJGl0ZW1zKQ0KCQl7DQoJCQkkb3B0aW9uc1tdID0gSkh0bWw6Ol8oJ3NlbGVjdC5vcHRpb24nLCAnJywgJ1NlbGVjdCBhIHJlc291cmNlJyk7DQoJCQlmb3JlYWNoKCRpdGVtcyBhcyAkaXRlbSkNCgkJCXsNCgkJCQkkb3B0aW9uc1tdID0gSkh0bWw6Ol8oJ3NlbGVjdC5vcHRpb24nLCAkaXRlbS0+IyMjSUQjIyMsICRpdGVtLT4jIyNDT0RFX1RFWFQjIyMpOw0KCQkJfQ0KCQl9DQoJCXJldHVybiAkb3B0aW9uczs=\\\"\\n\\/>\"', 1, '2019-10-10 15:29:45', '2019-10-31 12:28:36', 11, '', 959, 'f1cf4abd-39c7-4b1b-924c-31f9b2054144', '', '', '', '', ''),
(2648, '', '', '', '', '', '', '', '', '', '', 'MEDIUMTEXT', '', '', '', 'Content (Special Encryption)', 'NOT NULL', 6, 8, '\"<field\\n\\ttype=\\\"editor\\\"\\n\\tname=\\\"content\\\"\\n\\tlabel=\\\"Content\\\"\\n\\tdescription=\\\"Add the content for field\\\"\\n\\twidth=\\\"100%\\\"\\n\\theight=\\\"800px\\\"\\n\\tcols=\\\"40\\\"\\n\\trows=\\\"300\\\"\\n\\tbuttons=\\\"no\\\"\\n\\tsyntax=\\\"html\\\"\\n\\teditor=\\\"jce|tinymce\\\"\\n\\tfilter=\\\"safehtml\\\"\\n\\tvalidate=\\\"code\\\"\\n\\/>\"', 1, '2019-10-10 15:39:23', '2019-10-17 00:59:45', 7, '', 366, 'aa6ffa3d-3be6-439e-8c58-89fd8037cfd7', 'W0NVU1RPTUNPREU9dW5sb2NrRGVjcnlwdEZpZWxkXQ==', 'W0NVU1RPTUNPREU9bG9ja0VuY3J5cHRGaWVsZF0=', '', '', ''),
(2649, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'CSS (field - add_css:1)', 'NOT NULL', 2, 8, '\"<field\\n\\ttype=\\\"editor\\\"\\n\\tname=\\\"css\\\"\\n\\tlabel=\\\"CSS\\\"\\n\\tdescription=\\\"Add CSS for the field.\\\"\\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:1\\\"\\n\\/>\"', 1, '2019-10-10 15:42:32', '2019-10-10 15:43:38', 2, '', 299, 'd48c52c3-f387-4695-8ad0-afa81a8ff9a3', '', '', '', '', ''),
(2650, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'JavaScript (field - add_javascript:1)', 'NOT NULL', 2, 8, '\"<field\\n\\ttype=\\\"editor\\\"\\n\\tname=\\\"javascript\\\"\\n\\tlabel=\\\"JavaScript\\\"\\n\\tdescription=\\\"Add JavaScript for the field.\\\"\\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_javascript:1\\\"\\n\\/>\"', 1, '2019-10-10 15:44:22', '2019-10-10 15:43:38', 1, '', 299, 'b04f8479-2168-46c8-af2c-fc6215608878', '', '', '', '', ''),
(2651, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'add CSS (field)', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"add_css\\\"\\n\\tlabel=\\\"Add CSS<br \\/><small>to this field<\\/small>\\\"\\n\\tdescription=\\\"Activate the CSS for this field.\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"1|Yes,0|No\\\"\\n\\tdefault=\\\"0\\\"\\n\\/>\"', 1, '2019-10-10 15:47:55', '2019-10-10 15:49:11', 2, '', 956, '96eaafcc-5a62-4d9b-b77d-4fdcb55157ff', '', '', '', '', ''),
(2652, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'add JavaScript (field)', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"add_javascript\\\"\\n\\tlabel=\\\"Add JavaScript<br \\/><small>to this field<\\/small>\\\"\\n\\tdescription=\\\"Activate the JavaScript for this field.\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"1|Yes,0|No\\\"\\n\\tdefault=\\\"0\\\"\\n\\/>\"', 1, '2019-10-10 15:48:31', '0000-00-00 00:00:00', 1, '', 956, '215fbcfd-c9bf-411f-8560-b72447c94f80', '', '', '', '', ''),
(2653, '', '', '', '', '', '', '', '', '', '', '', '', '', '', 'Content Input Builder', 'NOT NULL', '', 14, '\"<field\\n\\ttype=\\\"note\\\"\\n\\tname=\\\"content_input_builder\\\"\\n\\tlabel=\\\"Input Builder\\\"\\n\\tdescription=\\\"<div id=\'content-input\'>The builder will show here soon as you have your content set in the content editor.<\\/div>\\\"\\n\\theading=\\\"h4\\\"\\n\\/>\"', 1, '2019-10-10 16:09:32', '2019-10-08 16:57:34', 1, '', 958, 'c58d53b5-a072-42e5-aaf2-89cb14202c0b', '', '', '', '', ''),
(2654, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'Page Number', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"number\\\"\\n\\tlabel=\\\"Page Number\\\"\\n\\tsize=\\\"10\\\"\\n\\tmaxlength=\\\"50\\\"\\n\\tdescription=\\\"The page number.\\\"\\n\\tclass=\\\"text_area\\\"\\n\\tfilter=\\\"INT\\\"\\n\\tmessage=\\\"Error! Please add page number here.\\\"\\n\\thint=\\\"Only Numbers\\\"\\n\\tonchange=\\\"if(!jQuery(this).val().match(\\/^\\\\d+$\\/)){jQuery(this).val(\'\')};\\\"\\n\\/>\"', 1, '2019-10-10 17:05:19', '2016-03-06 02:22:30', 1, '', 7, '8150f708-ca26-4bbc-999c-0a9ca972534b', '', '', '', '', ''),
(2655, 1, '', '', '', 'LnRhYl9odG1sIHsgd2lkdGg6IDEwMjdweDsgaGVpZ2h0OiAzMzhweDsgfQ==', '', '', '', '', '', 'TEXT', '', '', '', 'Dashboard Tab HTML', 'NOT NULL', 2, 25, '\"<field\\n\\ttype=\\\"textarea\\\"\\n\\tname=\\\"html\\\"\\n\\tlabel=\\\"HTML\\\"\\n\\trows=\\\"20\\\"\\n\\tcols=\\\"30\\\"\\n\\tdefault=\\\"\\\"\\n\\tclass=\\\"text_area tab_html\\\"\\n\\tfilter=\\\"raw\\\"\\n\\thint=\\\"\\/\\/ Add the tab HTML here.\\r\\n\\/\\/ To access php values <?php echo $this->methodname->value; ?>\\r\\n\\/\\/ Note the convention, if in the PHP area above you added a method called getMethodName()\\r\\n\\/\\/ Then [MethodName] becomes a class variable called $this->methodname\\r\\n\\/\\/ Which will hold the value\\/s your method returned.\\\"\\n\\trequired=\\\"true\\\"\\n\\/>\"', 1, '2019-10-10 20:38:52', '2019-10-06 17:17:57', 1, '', 368, '8bee8e3b-9575-4a5d-a3c2-03281c9257d4', '', '', '', '', ''),
(2656, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'Placement (category)', 'NOT NULL', '', 2, '\"<field\\n\\ttype=\\\"category\\\"\\n\\tname=\\\"catid\\\"\\n\\tlabel=\\\"Placement\\\"\\n\\textension=\\\"com_###component###.syllabus\\\"\\n\\tdescription=\\\"Select any of the following category placements.\\\"\\n\\tclass=\\\"inputbox\\\"\\n\\/>\"', 1, '2019-10-10 21:09:15', '2019-10-10 21:11:11', 2, '', 147, '8954d367-4831-45b6-b62d-765660ab92d9', '', '', '', '', ''),
(2657, '', '', '', '', '', '', '', '', 'Other', 36, 'VARCHAR', 2, '', '', 'GUID', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"guid\\\"\\n\\tlabel=\\\"GUID\\\"\\n\\tsize=\\\"40\\\"\\n\\tmaxlength=\\\"40\\\"\\n\\tdescription=\\\"Globally Unique Identifier\\\"\\n\\tclass=\\\"text_area\\\"\\n\\treadonly=\\\"true\\\"\\n\\tfilter=\\\"CMD\\\"\\n\\tvalidate=\\\"guid\\\"\\n\\thint=\\\"Auto Generated\\\"\\n\\/>\"', 1, '2019-10-10 23:08:59', '2020-05-25 00:16:16', 5, '', 960, '5aa57bbe-7b19-4db9-915c-561863458d2b', '', '', '', '', ''),
(2658, '', '', '', '', '', '', '', '', '', '', 'TINYINT', '', '', '', 'Add Transliteration', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"activate_transliteration\\\"\\n\\tlabel=\\\"Add Transliteration\\\"\\n\\tdescription=\\\"Does this language require transliteration?\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"1|Yes,0|No\\\"\\n\\tdefault=\\\"0\\\"\\n\\/>\"', 1, '2019-10-11 11:12:48', '0000-00-00 00:00:00', 1, '', 961, '2dc1e4a3-15af-4adb-a1ce-0dcfd2071039', '', '', '', '', ''),
(2659, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Special Character', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"special\\\"\\n\\tlabel=\\\"Special\\\"\\n\\tsize=\\\"10\\\"\\n\\tmaxlength=\\\"50\\\"\\n\\tdescription=\\\"Character\\\"\\n\\tclass=\\\"text_area\\\"\\n\\tfilter=\\\"STRING\\\"\\n\\thint=\\\"\\u0451\\\"\\n\\tautocomplete=\\\"on\\\"\\n\\/>\"', 1, '2019-10-11 11:17:05', '2019-10-11 11:19:03', 2, '', 962, 'be5ebcb9-4c96-4a71-8578-100e4230d99f', '', '', '', '', ''),
(2660, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Latin Character', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"special\\\"\\n\\tlabel=\\\"Latin\\\"\\n\\tsize=\\\"10\\\"\\n\\tmaxlength=\\\"50\\\"\\n\\tdescription=\\\"Character\\\"\\n\\tclass=\\\"text_area\\\"\\n\\tfilter=\\\"STRING\\\"\\n\\thint=\\\"e\\\"\\n\\tautocomplete=\\\"on\\\"\\n\\/>\"', 1, '2019-10-11 11:17:57', '0000-00-00 00:00:00', 1, '', 962, '49409f12-4fa5-4374-94e2-153159f83c27', '', '', '', '', ''),
(2661, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Transliteration', 'NOT NULL', '', 35, '\"<field\\n\\ttype=\\\"subform\\\"\\n\\tname=\\\"transliteration\\\"\\n\\tlabel=\\\"Transliteration\\\"\\n\\tlayout=\\\"joomla.form.field.subform.repeatable-table\\\"\\n\\tmultiple=\\\"true\\\"\\n\\tbuttons=\\\"add,remove,move\\\"\\n\\tfields=\\\"2659,2660\\\"\\n\\ticon=\\\"list\\\"\\n\\tmax=\\\"100\\\"\\n\\tshowon=\\\"activate_transliteration:1\\\"\\n\\/>\"', 1, '2019-10-11 11:21:51', '2019-10-11 11:25:00', 3, '', 963, '9708a470-3652-4831-b865-2cf266fad4cc', '', '', '', '', ''),
(2662, '', '', '', '', '', '', 1, '', 1, '', 'TINYINT', '', '', '', 'Target Folder (Library)', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"target\\\"\\n\\tlabel=\\\"Target Folder\\\"\\n\\tdescription=\\\"Select what target folder this library belongs to. <b>Media<\\/b> is used mostly for CSS and JavaScript type libraries, and <b>Libraries<\\/b> are for PHP libraries.\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"1|Media,2|Libraries\\\"\\n\\tdefault=\\\"1\\\"\\n\\trequired=\\\"true\\\"\\n\\/>\"', 1, '2019-10-14 16:40:48', '2019-10-14 19:53:48', 2, '', 815, '07c71471-04cd-4217-a63e-4ca97d880950', '', '', '', '', ''),
(2663, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'PHP Libraries (excluding)', 'NOT NULL', '', 6, '\"<field\\n\\ttype=\\\"phplibrariesx\\\"\\n\\tname=\\\"phplibraries\\\"\\n\\tlabel=\\\"PHP Libraries\\\"\\n\\tdescription=\\\"Select the libraries you want to bundle here.\\\"\\n\\tclass=\\\"list_class\\\"\\n\\tmultiple=\\\"true\\\"\\n\\tdefault=\\\"0\\\"\\n\\trequired=\\\"false\\\"\\n\\textends=\\\"list\\\"\\n\\tbutton=\\\"true\\\"\\n\\ttable=\\\"#__###component###_library\\\"\\n\\tcomponent=\\\"com_###component###\\\"\\n\\tview=\\\"library\\\"\\n\\tviews=\\\"libraries\\\"\\n\\tvalue_field=\\\"name\\\"\\n\\tkey_field=\\\"id\\\"\\n\\ttype_php_1=\\\"__.o0=base64=Oo.__Ly8gZ2V0IHRoZSBpbnB1dCBmcm9tIHVybA0KCQkkamlucHV0ID0gSkZhY3Rvcnk6OmdldEFwcGxpY2F0aW9uKCktPmlucHV0Ow0KCQkvLyBnZXQgdGhlIGxpYnJhcnkgaWQNCgkJJGxpYklEID0gJGppbnB1dC0+Z2V0SW50KCdpZCcsIDApOw0KCQkkZGIgPSBKRmFjdG9yeTo6Z2V0REJPKCk7DQoJCSRxdWVyeSA9ICRkYi0+Z2V0UXVlcnkodHJ1ZSk7DQoJCSRxdWVyeS0+c2VsZWN0KCRkYi0+cXVvdGVOYW1lKGFycmF5KCdhLiMjI0lEIyMjJywnYS4jIyNURVhUIyMjJyksYXJyYXkoJyMjI0lEIyMjJywnIyMjQ09ERV9URVhUIyMjJykpKTsNCgkJJHF1ZXJ5LT5mcm9tKCRkYi0+cXVvdGVOYW1lKCcjIyNUQUJMRSMjIycsICdhJykpOw0KCQkkcXVlcnktPndoZXJlKCRkYi0+cXVvdGVOYW1lKCdhLnB1Ymxpc2hlZCcpIC4gJyA+PSAxJyk7DQoJCSRxdWVyeS0+d2hlcmUoJGRiLT5xdW90ZU5hbWUoJ2EudGFyZ2V0JykgLiAnID0gMicpOw0KCQlpZiAoJGxpYklEID4gMCkNCgkJew0KCQkJJHF1ZXJ5LT53aGVyZSgkZGItPnF1b3RlTmFtZSgnYS5pZCcpIC4gJyAhPSAnIC4gKGludCkgJGxpYklEKTsNCgkJfQ0KCQkkcXVlcnktPm9yZGVyKCdhLiMjI1RFWFQjIyMgQVNDJyk7DQoJCSRkYi0+c2V0UXVlcnkoKHN0cmluZykkcXVlcnkpOw0KCQkkaXRlbXMgPSAkZGItPmxvYWRPYmplY3RMaXN0KCk7DQoJCSRvcHRpb25zID0gYXJyYXkoKTsNCgkJaWYgKCRpdGVtcykNCgkJew0KCQkJZm9yZWFjaCgkaXRlbXMgYXMgJGl0ZW0pDQoJCQl7DQoJCQkJJG9wdGlvbnNbXSA9IEpIdG1sOjpfKCdzZWxlY3Qub3B0aW9uJywgJGl0ZW0tPiMjI0lEIyMjLCAkaXRlbS0+IyMjQ09ERV9URVhUIyMjKTsNCgkJCX0NCgkJfQ0KDQoJCXJldHVybiAkb3B0aW9uczs=\\\"\\n\\/>\"', 1, '2019-10-14 20:10:46', '2019-10-14 20:09:04', 1, '', 379, 'cbc55047-3f86-45de-88de-6b8b59751c60', '', '', '', '', ''),
(2664, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'PHP Libraries', 'NOT NULL', '', 6, '\"<field\\n\\ttype=\\\"libraries\\\"\\n\\tname=\\\"libraries\\\"\\n\\tlabel=\\\"PHP Libraries\\\"\\n\\tdescription=\\\"Select the PHP libraries you want to use.\\\"\\n\\tclass=\\\"list_class\\\"\\n\\tmultiple=\\\"true\\\"\\n\\tdefault=\\\"0\\\"\\n\\trequired=\\\"false\\\"\\n\\textends=\\\"list\\\"\\n\\tbutton=\\\"true\\\"\\n\\ttable=\\\"#__###component###_library\\\"\\n\\tcomponent=\\\"com_###component###\\\"\\n\\tview=\\\"library\\\"\\n\\tviews=\\\"libraries\\\"\\n\\tvalue_field=\\\"name\\\"\\n\\tkey_field=\\\"id\\\"\\n\\ttype_php_1=\\\"__.o0=base64=Oo.__JGRiID0gSkZhY3Rvcnk6OmdldERCTygpOw0KCQkkcXVlcnkgPSAkZGItPmdldFF1ZXJ5KHRydWUpOw0KCQkkcXVlcnktPnNlbGVjdCgkZGItPnF1b3RlTmFtZShhcnJheSgnYS4jIyNJRCMjIycsJ2EuIyMjVEVYVCMjIycpLGFycmF5KCcjIyNJRCMjIycsJyMjI0NPREVfVEVYVCMjIycpKSk7DQoJCSRxdWVyeS0+ZnJvbSgkZGItPnF1b3RlTmFtZSgnIyMjVEFCTEUjIyMnLCAnYScpKTsNCgkJJHF1ZXJ5LT53aGVyZSgkZGItPnF1b3RlTmFtZSgnYS5wdWJsaXNoZWQnKSAuICcgPj0gMScpOw0KCQkkcXVlcnktPndoZXJlKCRkYi0+cXVvdGVOYW1lKCdhLnRhcmdldCcpIC4gJyA9IDInKTsNCgkJJHF1ZXJ5LT5vcmRlcignYS4jIyNURVhUIyMjIEFTQycpOw0KCQkkZGItPnNldFF1ZXJ5KChzdHJpbmcpJHF1ZXJ5KTsNCgkJJGl0ZW1zID0gJGRiLT5sb2FkT2JqZWN0TGlzdCgpOw0KCQkkb3B0aW9ucyA9IGFycmF5KCk7DQoJCWlmICgkaXRlbXMpDQoJCXsNCgkJCWZvcmVhY2goJGl0ZW1zIGFzICRpdGVtKQ0KCQkJew0KCQkJCSRvcHRpb25zW10gPSBKSHRtbDo6Xygnc2VsZWN0Lm9wdGlvbicsICRpdGVtLT4jIyNJRCMjIywgJGl0ZW0tPiMjI0NPREVfVEVYVCMjIyk7DQoJCQl9DQoJCX0NCg0KCQlyZXR1cm4gJG9wdGlvbnM7\\\"\\n\\/>\"', 1, '2019-10-14 20:15:17', '2019-10-14 20:14:36', 1, '', 379, '60cf1e61-a573-420a-bf7f-927280d652ea', '', '', '', '', ''),
(2665, '', '', '', '', '', '', '', '', '', '', '', '', '', '', 'Note - Expert Mode', 'NOT NULL', '', 14, '\"<field\\n\\ttype=\\\"note\\\"\\n\\tname=\\\"note_expert_field_save_mode\\\"\\n\\tlabel=\\\"The Expert Mode\\\"\\n\\tdescription=\\\"<p>When using the EXPERT mode you need to be that expert.<\\/p>\\r\\n<p>Bellow you must add the required code to <b>on save model<\\/b> and <b>on get model<\\/b> the set value. Usually if we start modeling values, we first load the needed classes, so for that purpose you have the <b>initiator<\\/b> input areas.<\\/p>\\\"\\n\\theading=\\\"h4\\\"\\n\\tclass=\\\"alert alert-success note_expert_encryption\\\"\\n\\/>\"', 1, '2019-10-14 23:13:39', '2019-10-16 15:22:30', 5, '', 23, '39494ebe-c9b6-4e92-912a-2248b75494e5', '', '', '', '', ''),
(2666, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'On Save Model Field', 'NOT NULL', 2, 25, '\"<field\\n\\ttype=\\\"textarea\\\"\\n\\tname=\\\"on_save_model_field\\\"\\n\\tlabel=\\\"On Save Model\\\"\\n\\trows=\\\"3\\\"\\n\\tcols=\\\"10\\\"\\n\\tdescription=\\\"To on save model the field value\\\"\\n\\tclass=\\\"text_area span12\\\"\\n\\tfilter=\\\"raw\\\"\\n\\thint=\\\"[[[field]]] = $medium->encryptString([[[field]]]);\\\"\\n\\trequired=\\\"true\\\"\\n\\/>\"', 1, '2019-10-14 23:30:29', '2019-10-16 15:23:35', 7, '', 756, '0f0ef89c-e305-408d-ac95-6a86efe28c5a', '', '', '', '', ''),
(2667, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'On Get Model Field', 'NOT NULL', 2, 25, '\"<field\\n\\ttype=\\\"textarea\\\"\\n\\tname=\\\"on_get_model_field\\\"\\n\\tlabel=\\\"On Get Model\\\"\\n\\trows=\\\"5\\\"\\n\\tcols=\\\"10\\\"\\n\\tdescription=\\\"To on get model the field value\\\"\\n\\tclass=\\\"text_area span12\\\"\\n\\tfilter=\\\"raw\\\"\\n\\thint=\\\"if (!empty([[[field]]]) && $mediumkey && !is_numeric([[[field]]]) && [[[field]]] === base64_encode(base64_decode([[[field]]], true)))\\r\\n{\\r\\n\\t\\t\\/\\/ medium decrypt field\\r\\n\\t\\t[[[field]]] = rtrim($medium->decryptString([[[field]]]), &quot;\\\\0&quot;);\\r\\n}\\\"\\n\\trequired=\\\"true\\\"\\n\\/>\"', 1, '2019-10-14 23:31:20', '2019-10-16 15:26:32', 6, '', 756, 'dc69b6d4-2e6f-4f2d-86d9-0fb6534164ca', '', '', '', '', ''),
(2668, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Initiator on save model', 'NOT NULL', 2, 25, '\"<field\\n\\ttype=\\\"textarea\\\"\\n\\tname=\\\"initiator_on_save_model\\\"\\n\\tlabel=\\\"Initiator<br \\/><small>on save model<\\/small>\\\"\\n\\trows=\\\"5\\\"\\n\\tcols=\\\"10\\\"\\n\\tdescription=\\\"The initiator to on save model this field. If JCB finds that there is more then one field with the same initiator code in one view it will only load it once. You could also leave this blank if you already have the on save model initiator set in another field of the same admin_view.\\\"\\n\\tclass=\\\"text_area span12\\\"\\n\\tfilter=\\\"raw\\\"\\n\\thint=\\\"\\/\\/ Get the medium encryption.\\r\\n$mediumkey = [[[Component]]]Helper::getCryptKey(\'medium\');\\r\\n\\/\\/ Get the encryption object.\\r\\n$medium = new FOFEncryptAes($mediumkey);\\\"\\n\\trequired=\\\"false\\\"\\n\\/>\"', 1, '2019-10-14 23:52:44', '2019-10-19 00:57:12', 10, '', 756, '49a285a3-2c16-4846-9dbf-94c9cc6496c1', '', '', '', '', ''),
(2669, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Encryption Key Path', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"encryption_key_path\\\"\\n\\tlabel=\\\"Encryption Key Path<br \\/><small>Try to place outside of user area (so it does not get added to your system backup), make special arrange with your hosting provider.<br \\/>Once the key has been set, make a secure backup, and never change the key.<br \\/>Should you need to change the key you will need the original key to set the new key.<br \\/>Without the key file all data will remain encrypted and can not be accessed at all with current technology (2019).<\\/small>\\\"\\n\\tsize=\\\"50\\\"\\n\\tmaxlength=\\\"150\\\"\\n\\tdescription=\\\"Set the path to the encryption key. Don\'t add the key file name it is auto generated.\\\"\\n\\tclass=\\\"text_area\\\"\\n\\trequired=\\\"true\\\"\\n\\tfilter=\\\"PATH\\\"\\n\\thint=\\\"\\/path\\/to\\/secure\\/location\\/\\\"\\n\\/>\"', 1, '2019-10-16 10:37:14', '2019-10-16 10:43:23', 4, '', 303, '8836532e-46c9-488c-aaa4-905c4b3758da', '', '', '', '', ''),
(2670, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Initiator on get model', 'NOT NULL', 2, 25, '\"<field\\n\\ttype=\\\"textarea\\\"\\n\\tname=\\\"initiator_on_get_model\\\"\\n\\tlabel=\\\"Initiator<br \\/><small>on get model<\\/small>\\\"\\n\\trows=\\\"5\\\"\\n\\tcols=\\\"10\\\"\\n\\tdescription=\\\"The initiator to on get model this field. If JCB finds that there is more then one field with the same initiator code in one view it will only load it once. You could also leave this blank if you already have the on get model initiator set in another field of the same admin_view.\\\"\\n\\tclass=\\\"text_area span12\\\"\\n\\tfilter=\\\"raw\\\"\\n\\thint=\\\"\\/\\/ Get the medium decryption.\\r\\n$mediumkey = [[[Component]]]Helper::getCryptKey(\'medium\');\\r\\n\\/\\/ Get the encryption object.\\r\\n$medium = new FOFEncryptAes($mediumkey);\\\"\\n\\trequired=\\\"false\\\"\\n\\/>\"', 1, '2019-10-16 13:58:48', '2019-10-19 00:56:47', 5, '', 756, '9d32c0a5-e010-44f2-8b53-3372c87da08d', '', '', '', '', ''),
(2671, '', '', '', '', '', '', '', '', '', '', '', '', '', '', 'Course Resources Note', 'NOT NULL', '', 14, '\"<field\\n\\ttype=\\\"note\\\"\\n\\tname=\\\"course_resources_note\\\"\\n\\tlabel=\\\"Here you can add the resources that should be available in this course.\\\"\\n\\tdescription=\\\"More info to follow...\\\"\\n\\theading=\\\"h4\\\"\\n\\tclass=\\\"alert alert-info\\\"\\n\\/>\"', 1, '2019-10-20 21:04:51', '2019-10-20 21:07:59', 3, '', 964, 'f5c446ef-87af-477b-b2a6-db2901d7bb78', '', '', '', '', ''),
(2672, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Resources', 'NOT NULL', '', 35, '\"<field\\n\\ttype=\\\"subform\\\"\\n\\tname=\\\"resources\\\"\\n\\tlabel=\\\"add Resources\\\"\\n\\tlayout=\\\"joomla.form.field.subform.repeatable-table\\\"\\n\\tmultiple=\\\"true\\\"\\n\\tbuttons=\\\"add,remove,move\\\"\\n\\tfields=\\\"2673\\\"\\n\\ticon=\\\"list\\\"\\n\\tmin=\\\"1\\\"\\n\\/>\"', 1, '2019-10-20 21:07:37', '2019-10-20 21:22:25', 2, '', 964, '1883c7d2-3532-4f6f-8ffe-c2ce76d03a44', '', '', '', '', ''),
(2673, '', '', '', '', '', '', '', '', 'Other', 36, 'VARCHAR', 2, '', '', 'Resource (course)', 'NOT NULL', '', 6, '\"<field\\n\\ttype=\\\"resource\\\"\\n\\tname=\\\"resource\\\"\\n\\tlabel=\\\" Resource\\\"\\n\\tdescription=\\\"<small>linked to this course<\\/small>\\\"\\n\\tclass=\\\"list_class\\\"\\n\\tmultiple=\\\"false\\\"\\n\\tdefault=\\\"0\\\"\\n\\textends=\\\"list\\\"\\n\\ttable=\\\"#__###component###_resource\\\"\\n\\tcomponent=\\\"com_###component###\\\"\\n\\tview=\\\"resource\\\"\\n\\tviews=\\\"resources\\\"\\n\\tvalue_field=\\\"name\\\"\\n\\tkey_field=\\\"guid\\\"\\n\\ttype_php_1=\\\"__.o0=base64=Oo.__Ly8gR2V0IHRoZSB1c2VyIG9iamVjdC4NCgkJJHVzZXIgPSBKRmFjdG9yeTo6Z2V0VXNlcigpOw0KCQkvLyBHZXQgdGhlIGRhdGFic2Ugb2JqZWN0Lg0KCQkkZGIgPSBKRmFjdG9yeTo6Z2V0REJPKCk7DQoJCSRxdWVyeSA9ICRkYi0+Z2V0UXVlcnkodHJ1ZSk7DQoJCSRxdWVyeS0+c2VsZWN0KCRkYi0+cXVvdGVOYW1lKGFycmF5KCdhLiMjI0lEIyMjJywnYS4jIyNURVhUIyMjJyksYXJyYXkoJyMjI0lEIyMjJywnIyMjQ09ERV9URVhUIyMjJykpKTsNCgkJJHF1ZXJ5LT5mcm9tKCRkYi0+cXVvdGVOYW1lKCcjIyNUQUJMRSMjIycsICdhJykpOw0KCQkkcXVlcnktPndoZXJlKCRkYi0+cXVvdGVOYW1lKCdhLnB1Ymxpc2hlZCcpIC4gJyA+PSAxJyk7DQoJCSRxdWVyeS0+b3JkZXIoJ2EuIyMjVEVYVCMjIyBBU0MnKTsNCgkJLy8gSW1wbGVtZW50IFZpZXcgTGV2ZWwgQWNjZXNzIChpZiBzZXQgaW4gdGFibGUpDQoJCWlmICghJHVzZXItPmF1dGhvcmlzZSgnY29yZS5vcHRpb25zJywgJ1tbW2NvbV9jb21wb25lbnRdXV0nKSkNCgkJew0KCQkJJGNvbHVtbnMgPSAkZGItPmdldFRhYmxlQ29sdW1ucygnIyMjVEFCTEUjIyMnKTsNCgkJCWlmKGlzc2V0KCRjb2x1bW5zWydhY2Nlc3MnXSkpDQoJCQl7DQoJCQkJJGdyb3VwcyA9IGltcGxvZGUoJywnLCAkdXNlci0+Z2V0QXV0aG9yaXNlZFZpZXdMZXZlbHMoKSk7DQoJCQkJJHF1ZXJ5LT53aGVyZSgnYS5hY2Nlc3MgSU4gKCcgLiAkZ3JvdXBzIC4gJyknKTsNCgkJCX0NCgkJfQ0KCQkkZGItPnNldFF1ZXJ5KChzdHJpbmcpJHF1ZXJ5KTsNCgkJJGl0ZW1zID0gJGRiLT5sb2FkT2JqZWN0TGlzdCgpOw0KCQkkb3B0aW9ucyA9IGFycmF5KCk7DQoJCWlmICgkaXRlbXMpDQoJCXsNCgkJCSRvcHRpb25zW10gPSBKSHRtbDo6Xygnc2VsZWN0Lm9wdGlvbicsICcnLCAnU2VsZWN0IGEgcmVzb3VyY2UnKTsNCgkJCWZvcmVhY2goJGl0ZW1zIGFzICRpdGVtKQ0KCQkJew0KCQkJCSRvcHRpb25zW10gPSBKSHRtbDo6Xygnc2VsZWN0Lm9wdGlvbicsICRpdGVtLT4jIyNJRCMjIywgJGl0ZW0tPiMjI0NPREVfVEVYVCMjIyk7DQoJCQl9DQoJCX0NCgkJcmV0dXJuICRvcHRpb25zOw==\\\"\\n\\/>\"', 1, '2019-10-20 21:13:44', '2019-10-20 21:17:43', 4, '', 959, '1e79117e-4e37-4a08-b7e5-d5d13a048152', '', '', '', '', ''),
(2674, '', '', '', '', '', '', '', '', 'Other', 36, 'VARCHAR', 2, '', '', 'Course (read-only)', 'NOT NULL', '', 6, '\"<field\\n\\ttype=\\\"syllabus\\\"\\n\\tname=\\\"course\\\"\\n\\tlabel=\\\"Course\\\"\\n\\tdescription=\\\"Linked to this course\\\"\\n\\tclass=\\\"list_class\\\"\\n\\tmultiple=\\\"false\\\"\\n\\tdefault=\\\"0\\\"\\n\\treadonly=\\\"true\\\"\\n\\textends=\\\"list\\\"\\n\\ttable=\\\"#__###component###_course\\\"\\n\\tcomponent=\\\"com_###component###\\\"\\n\\tview=\\\"course\\\"\\n\\tviews=\\\"syllabus\\\"\\n\\tvalue_field=\\\"name\\\"\\n\\tkey_field=\\\"guid\\\"\\n\\ttype_php_1=\\\"__.o0=base64=Oo.__Ly8gR2V0IHRoZSB1c2VyIG9iamVjdC4NCgkJJHVzZXIgPSBKRmFjdG9yeTo6Z2V0VXNlcigpOw0KCQkvLyBHZXQgdGhlIGRhdGFic2Ugb2JqZWN0Lg0KCQkkZGIgPSBKRmFjdG9yeTo6Z2V0REJPKCk7DQoJCSRxdWVyeSA9ICRkYi0+Z2V0UXVlcnkodHJ1ZSk7DQoJCSRxdWVyeS0+c2VsZWN0KCRkYi0+cXVvdGVOYW1lKGFycmF5KCdhLiMjI0lEIyMjJywnYS4jIyNURVhUIyMjJyksYXJyYXkoJyMjI0lEIyMjJywnIyMjQ09ERV9URVhUIyMjJykpKTsNCgkJJHF1ZXJ5LT5mcm9tKCRkYi0+cXVvdGVOYW1lKCcjIyNUQUJMRSMjIycsICdhJykpOw0KCQkkcXVlcnktPndoZXJlKCRkYi0+cXVvdGVOYW1lKCdhLnB1Ymxpc2hlZCcpIC4gJyA+PSAxJyk7DQoJCSRxdWVyeS0+b3JkZXIoJ2EuIyMjVEVYVCMjIyBBU0MnKTsNCgkJLy8gSW1wbGVtZW50IFZpZXcgTGV2ZWwgQWNjZXNzIChpZiBzZXQgaW4gdGFibGUpDQoJCWlmICghJHVzZXItPmF1dGhvcmlzZSgnY29yZS5vcHRpb25zJywgJ1tbW2NvbV9jb21wb25lbnRdXV0nKSkNCgkJew0KCQkJJGNvbHVtbnMgPSAkZGItPmdldFRhYmxlQ29sdW1ucygnIyMjVEFCTEUjIyMnKTsNCgkJCWlmKGlzc2V0KCRjb2x1bW5zWydhY2Nlc3MnXSkpDQoJCQl7DQoJCQkJJGdyb3VwcyA9IGltcGxvZGUoJywnLCAkdXNlci0+Z2V0QXV0aG9yaXNlZFZpZXdMZXZlbHMoKSk7DQoJCQkJJHF1ZXJ5LT53aGVyZSgnYS5hY2Nlc3MgSU4gKCcgLiAkZ3JvdXBzIC4gJyknKTsNCgkJCX0NCgkJfQ0KCQkkZGItPnNldFF1ZXJ5KChzdHJpbmcpJHF1ZXJ5KTsNCgkJJGl0ZW1zID0gJGRiLT5sb2FkT2JqZWN0TGlzdCgpOw0KCQkkb3B0aW9ucyA9IGFycmF5KCk7DQoJCWlmICgkaXRlbXMpDQoJCXsNCgkJCSRvcHRpb25zW10gPSBKSHRtbDo6Xygnc2VsZWN0Lm9wdGlvbicsICcnLCAnU2VsZWN0IGEgY291cnNlJyk7DQoJCQlmb3JlYWNoKCRpdGVtcyBhcyAkaXRlbSkNCgkJCXsNCgkJCQkkb3B0aW9uc1tdID0gSkh0bWw6Ol8oJ3NlbGVjdC5vcHRpb24nLCAkaXRlbS0+IyMjSUQjIyMsICRpdGVtLT4jIyNDT0RFX1RFWFQjIyMpOw0KCQkJfQ0KCQl9DQoJCXJldHVybiAkb3B0aW9uczs=\\\"\\n\\/>\"', 1, '2019-10-20 21:20:34', '2019-10-20 21:21:27', 3, '', 959, '9cc6aeb9-90ef-434a-8152-e1a42a659017', '', '', '', '', ''),
(2675, '', '', '', '', '', '', '', '', '', '', '', '', '', '', 'Create Edit Display (Course)', 'NOT NULL', '', 14, '\"<field\\n\\ttype=\\\"note\\\"\\n\\tname=\\\"note_create_edit_display\\\"\\n\\tdescription=\\\"<h4>Linked Courses <span id=\'header_course_resources_buttons\'><\\/span><\\/h4>\\r\\n<div id=\'display_course_resources\'>Display of the course resources will load here!<\\/div>\\\"\\n\\/>\"', 1, '2019-10-21 10:46:41', '2019-10-21 10:47:53', 2, '', 808, 'fdc71b04-0b55-4f7b-ba98-8b2bdc3e5e07', '', '', '', '', ''),
(2676, '', '', '', '', '', '', '', '', '', '', '', '', '', '', 'Yes Behaviour (library)', 'NOT NULL', '', 14, '\"<field\\n\\ttype=\\\"note\\\"\\n\\tname=\\\"note_yes_behaviour_library\\\"\\n\\tlabel=\\\"Set Behaviour\\\"\\n\\tdescription=\\\"We are working on this feature it is not yet ready, but soon enough you will be able to build real Joomla library integration here.\\\"\\n\\theading=\\\"h4\\\"\\n\\tclass=\\\"alert alert-success\\\"\\n\\/>\"', 1, '2019-11-09 12:39:54', '2017-11-25 14:23:51', 1, '', 814, '3461d951-9805-402e-ae27-a0f28705a1af', '', '', '', '', ''),
(2677, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Password (required)', 'NOT NULL', '', 16, '\"<field\\n\\ttype=\\\"password\\\"\\n\\tname=\\\"password\\\"\\n\\tlabel=\\\"Password\\\"\\n\\tsize=\\\"50\\\"\\n\\tdescription=\\\"Enter the password.\\\"\\n\\tmessage=\\\"Error! Please add password here.\\\"\\n\\tclass=\\\"text_area\\\"\\n\\trequired=\\\"true\\\"\\n\\tvalidate=\\\"password\\\"\\n\\tfilter=\\\"raw\\\"\\n\\tautocomplete=\\\"off\\\"\\n\\/>\"', 1, '2019-11-17 01:34:43', '2019-11-17 01:35:18', 2, '', 884, 'aa8780c6-113c-4850-97ba-a3906d1d75bc', '', '', '', '', ''),
(2678, '', '', '', '', '', '', '', '', '', '', 'VARCHAR', '', '', '', 'Username (required)', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"username\\\"\\n\\tlabel=\\\"Username\\\"\\n\\tsize=\\\"60\\\"\\n\\tmaxlength=\\\"150\\\"\\n\\tdefault=\\\"\\\"\\n\\tdescription=\\\"Enter the username.\\\"\\n\\tclass=\\\"text_area\\\"\\n\\trequired=\\\"true\\\"\\n\\tfilter=\\\"STRING\\\"\\n\\tvalidate=\\\"\\\"\\n\\tmessage=\\\"Error! Please add the username here.\\\"\\n\\/>\"', 1, '2019-11-17 01:36:06', '2019-11-17 01:36:36', 2, '', 663, 'b7edbefd-d8ee-4765-9a09-ab1922e70e68', '', '', '', '', ''),
(2679, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'Activate Options (plugin)', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"activate_option\\\"\\n\\tlabel=\\\"Activate Options\\\"\\n\\tdescription=\\\"You can select the kind of activation control you would like to use. <b>All<\\/b> will target all components, and <b>Selected<\\/b> will let you select only those you want to be active.\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"1|All,2|Selected\\\"\\n\\tdefault=\\\"1\\\"\\n\\trequired=\\\"true\\\"\\n\\/>\"', 1, '2019-11-29 00:59:06', '2019-11-29 02:08:20', 7, '', 965, 'd033cb35-f2d5-4d57-8713-371517742757', '', '', '', '', ''),
(2680, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Components (active - plugin)', 'NOT NULL', 1, 6, '\"<field\\n\\ttype=\\\"joomlacomponents\\\"\\n\\tname=\\\"components\\\"\\n\\tlabel=\\\"Components\\\"\\n\\tdescription=\\\"Select the components you would like to be targeted.\\\"\\n\\tclass=\\\"list_class\\\"\\n\\tmultiple=\\\"true\\\"\\n\\tdefault=\\\"0\\\"\\n\\tshowon=\\\"activate_option:2\\\"\\n\\textends=\\\"list\\\"\\n\\tbutton=\\\"false\\\"\\n\\ttable=\\\"#__###component###_joomla_component\\\"\\n\\tcomponent=\\\"com_###component###\\\"\\n\\tview=\\\"joomla_component\\\"\\n\\tviews=\\\"joomla_components\\\"\\n\\tvalue_field=\\\"system_name\\\"\\n\\tkey_field=\\\"id\\\"\\n\\tprime_php=\\\"1\\\"\\n\\ttype_php_1=\\\"__.o0=base64=Oo.__CQkkZGIgPSBKRmFjdG9yeTo6Z2V0REJPKCk7DQoJCSRxdWVyeSA9ICRkYi0+Z2V0UXVlcnkodHJ1ZSk7DQoJCSRxdWVyeS0+c2VsZWN0KCRkYi0+cXVvdGVOYW1lKGFycmF5KCdhLiMjI0lEIyMjJywnYS4jIyNURVhUIyMjJyksYXJyYXkoJyMjI0lEIyMjJywnIyMjQ09ERV9URVhUIyMjJykpKTsNCgkJJHF1ZXJ5LT5mcm9tKCRkYi0+cXVvdGVOYW1lKCcjIyNUQUJMRSMjIycsICdhJykpOw0KCQkkcXVlcnktPndoZXJlKCRkYi0+cXVvdGVOYW1lKCdhLnB1Ymxpc2hlZCcpIC4gJyA+PSAxJyk7DQoJCSRxdWVyeS0+b3JkZXIoJ2EuIyMjVEVYVCMjIyBBU0MnKTsNCgkJJGRiLT5zZXRRdWVyeSgoc3RyaW5nKSRxdWVyeSk7DQoJCSRpdGVtcyA9ICRkYi0+bG9hZE9iamVjdExpc3QoKTsNCgkJJG9wdGlvbnMgPSBhcnJheSgpOw0KCQlpZiAoJGl0ZW1zKQ0KCQl7DQoJCQlmb3JlYWNoKCRpdGVtcyBhcyAkaXRlbSkNCgkJCXsNCgkJCQkkb3B0aW9uc1tdID0gSkh0bWw6Ol8oJ3NlbGVjdC5vcHRpb24nLCAkaXRlbS0+IyMjSUQjIyMsICRpdGVtLT4jIyNDT0RFX1RFWFQjIyMpOw0KCQkJfQ0KCQl9DQoNCgkJcmV0dXJuICRvcHRpb25zOw==\\\"\\n\\/>\"', 1, '2019-11-29 01:08:55', '2021-01-08 06:04:13', 5, '', 733, '4731a1b7-a2d8-4cb4-816d-5154d593c30c', '', '', '', '', ''),
(2681, '', '', '', '', '', '', 1, '', 1, '', 'TINYINT', '', '', '', 'Add Strict Permission per/field (plugin)', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"strict_permission_per_field\\\"\\n\\tlabel=\\\"Add Strict Permission per\\/field\\\"\\n\\tdescription=\\\"You can add strict permissions per\\/field in the export method where there is field permissions in a view. \\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"0|No,1|Yes\\\"\\n\\tdefault=\\\"1\\\"\\n\\/>\"', 1, '2019-11-30 03:17:35', '2019-11-30 03:18:22', 4, '', 965, '6a4e23e7-4ae4-4541-a2c5-0c8ced98d536', '', '', '', '', ''),
(2682, '', '', '', '', '', '', '', '', '', '', '', '', '', '', 'Note - Setting Joomla Modules', 'NOT NULL', '', 14, '\"<field\\n\\ttype=\\\"note\\\"\\n\\tname=\\\"note_on_joomla_modules\\\"\\n\\tlabel=\\\"Setting Joomla Modules\\\"\\n\\tdescription=\\\"Do not add the same Joomla modules twice it will not work.\\\"\\n\\theading=\\\"h4\\\"\\n\\tclass=\\\"alert alert-info\\\"\\n\\/>\"', 1, '2019-12-01 17:07:32', '2019-07-17 02:04:44', 1, '', 25, 'c30bd15a-7adc-4575-a8b5-86fb153418f1', '', '', '', '', ''),
(2683, '', '', 1, '', '', '', '', '', '', '', 'TEXT', '', 'alF1ZXJ5KGRvY3VtZW50KS5yZWFkeShmdW5jdGlvbigpew0KCWpRdWVyeShkb2N1bWVudCkub24oJ3N1YmZvcm0tcm93LWFkZCcsIGZ1bmN0aW9uKGV2ZW50LCByb3cpew0KCQl2YXIgZ3JvdXBfa2V5ID0galF1ZXJ5KHJvdykuY29udGV4dC5kYXRhc2V0Lmdyb3VwOw0KCQlqUXVlcnkocm93KS5maW5kKCcjamZvcm1fYWRkYWRtaW5fdmlld3NfXycgKyBncm91cF9rZXkgKyAnX19zdWJtZW51JykucHJvcCgnY2hlY2tlZCcsIHRydWUpOw0KCQlqUXVlcnkocm93KS5maW5kKCcjamZvcm1fYWRkYWRtaW5fdmlld3NfXycgKyBncm91cF9rZXkgKyAnX19jaGVja2luJykucHJvcCgnY2hlY2tlZCcsIHRydWUpOw0KCQlqUXVlcnkocm93KS5maW5kKCcjamZvcm1fYWRkYWRtaW5fdmlld3NfXycgKyBncm91cF9rZXkgKyAnX19oaXN0b3J5JykucHJvcCgnY2hlY2tlZCcsIHRydWUpOw0KCQlqUXVlcnkocm93KS5maW5kKCcjamZvcm1fYWRkYWRtaW5fdmlld3NfXycgKyBncm91cF9rZXkgKyAnX19hY2Nlc3MnKS5wcm9wKCdjaGVja2VkJywgdHJ1ZSk7DQoJCWpRdWVyeShyb3cpLmZpbmQoJyNqZm9ybV9hZGRhZG1pbl92aWV3c19fJyArIGdyb3VwX2tleSArICdfX3BvcnQnKS5wcm9wKCdjaGVja2VkJywgdHJ1ZSk7DQoJfSkNCn0pOw==', '', 'Add Joomla Modules', 'NOT NULL', '', 35, '\"<field\\n\\ttype=\\\"subform\\\"\\n\\tname=\\\"addjoomla_modules\\\"\\n\\tlabel=\\\"Joomla Modules\\\"\\n\\tlayout=\\\"joomla.form.field.subform.repeatable-table\\\"\\n\\tmultiple=\\\"true\\\"\\n\\tfields=\\\"2696,2623\\\"\\n\\tdescription=\\\"Setup the Joomla modules for this component.\\\"\\n\\tdefault=\\\"\\\"\\n\\ticon=\\\"list\\\"\\n\\tmin=\\\"1\\\"\\n\\/>\"', 1, '2019-12-01 17:08:58', '2019-12-05 14:25:53', 2, '', 201, '5985271b-0795-4204-8739-ffa3d898bae8', '', '', '', '', ''),
(2684, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'Joomla Modules (readonly - JCB)', 'NOT NULL', '', 6, '\"<field\\n\\ttype=\\\"joomlamodules\\\"\\n\\tname=\\\"joomla_module\\\"\\n\\tlabel=\\\"Joomla Modules\\\"\\n\\tclass=\\\"list_class span12\\\"\\n\\tmultiple=\\\"false\\\"\\n\\tdefault=\\\"0\\\"\\n\\treadonly=\\\"true\\\"\\n\\textends=\\\"list\\\"\\n\\ttable=\\\"#__###component###_joomla_module\\\"\\n\\tcomponent=\\\"com_###component###\\\"\\n\\tview=\\\"joomla_module\\\"\\n\\tviews=\\\"joomla_modules\\\"\\n\\tvalue_field=\\\"system_name\\\"\\n\\tkey_field=\\\"id\\\"\\n\\tprime_php=\\\"1\\\"\\n\\ttype_php_1=\\\"__.o0=base64=Oo.__Ly8gR2V0IHRoZSB1c2VyIG9iamVjdC4NCgkJJHVzZXIgPSBKRmFjdG9yeTo6Z2V0VXNlcigpOw0KCQkvLyBHZXQgdGhlIGRhdGFic2Ugb2JqZWN0Lg0KCQkkZGIgPSBKRmFjdG9yeTo6Z2V0REJPKCk7DQoJCSRxdWVyeSA9ICRkYi0+Z2V0UXVlcnkodHJ1ZSk7DQoJCSRxdWVyeS0+c2VsZWN0KCRkYi0+cXVvdGVOYW1lKGFycmF5KCdhLiMjI0lEIyMjJywnYS4jIyNURVhUIyMjJyksYXJyYXkoJyMjI0lEIyMjJywnIyMjQ09ERV9URVhUIyMjJykpKTsNCgkJJHF1ZXJ5LT5mcm9tKCRkYi0+cXVvdGVOYW1lKCcjIyNUQUJMRSMjIycsICdhJykpOw0KCQkkcXVlcnktPndoZXJlKCRkYi0+cXVvdGVOYW1lKCdhLnB1Ymxpc2hlZCcpIC4gJyA+PSAxJyk7DQoJCSRxdWVyeS0+b3JkZXIoJ2EuIyMjVEVYVCMjIyBBU0MnKTsNCgkJLy8gSW1wbGVtZW50IFZpZXcgTGV2ZWwgQWNjZXNzIChpZiBzZXQgaW4gdGFibGUpDQoJCWlmICghJHVzZXItPmF1dGhvcmlzZSgnY29yZS5vcHRpb25zJywgJ1tbW2NvbV9jb21wb25lbnRdXV0nKSkNCgkJew0KCQkJJGNvbHVtbnMgPSAkZGItPmdldFRhYmxlQ29sdW1ucygnIyMjVEFCTEUjIyMnKTsNCgkJCWlmKGlzc2V0KCRjb2x1bW5zWydhY2Nlc3MnXSkpDQoJCQl7DQoJCQkJJGdyb3VwcyA9IGltcGxvZGUoJywnLCAkdXNlci0+Z2V0QXV0aG9yaXNlZFZpZXdMZXZlbHMoKSk7DQoJCQkJJHF1ZXJ5LT53aGVyZSgnYS5hY2Nlc3MgSU4gKCcgLiAkZ3JvdXBzIC4gJyknKTsNCgkJCX0NCgkJfQ0KCQkkZGItPnNldFF1ZXJ5KChzdHJpbmcpJHF1ZXJ5KTsNCgkJJGl0ZW1zID0gJGRiLT5sb2FkT2JqZWN0TGlzdCgpOw0KCQkkb3B0aW9ucyA9IGFycmF5KCk7DQoJCWlmICgkaXRlbXMpDQoJCXsNCgkJCSRvcHRpb25zW10gPSBKSHRtbDo6Xygnc2VsZWN0Lm9wdGlvbicsICcnLCAnU2VsZWN0IGEgbW9kdWxlJyk7DQoJCQlmb3JlYWNoKCRpdGVtcyBhcyAkaXRlbSkNCgkJCXsNCgkJCQkvLyBzZXQgYSBmdWxsIGNsYXNzIG5hbWUNCgkJCQkkb3B0aW9uc1tdID0gSkh0bWw6Ol8oJ3NlbGVjdC5vcHRpb24nLCAkaXRlbS0+IyMjSUQjIyMsICRpdGVtLT4jIyNDT0RFX1RFWFQjIyMpOw0KCQkJfQ0KCQl9DQoJCXJldHVybiAkb3B0aW9uczs=\\\"\\n\\/>\"', 1, '2019-12-01 17:15:30', '2019-08-21 02:14:21', 1, '', 937, '79251a06-b217-4b3a-8485-b7286cb15bf6', '', '', '', '', ''),
(2685, '', '', '', '', '', '', '', '', '', '', '', '', '', '', 'Module Libraries Options Note', 'NOT NULL', '', 14, '\"<field\\n\\ttype=\\\"note\\\"\\n\\tname=\\\"note_libraries_options\\\"\\n\\tlabel=\\\"Libraries Options\\\"\\n\\tdescription=\\\"<p>All libraries added to modules are added to the component media folder for now<\\/p>\\r\\n<p>So over here you are able to manually add HTML code to your model default tmpl.<\\/p>\\\"\\n\\theading=\\\"h4\\\"\\n\\tclass=\\\"alert alert-info\\\"\\n\\/>\"', 1, '2019-12-01 19:33:14', '2019-12-05 01:07:05', 3, '', 940, 'abfd613e-cfe9-4e2a-b41b-e12ff0f0daa3', '', '', '', '', ''),
(2686, '', '', '', '', '', '', '', '', 64, '', 'CHAR', '', '', '', 'Module Version', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"module_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-12-01 19:33:42', '2015-08-25 21:15:22', 1, '', 155, 'dfb4e6cd-5fb6-4476-9772-f2c8e2143bb6', '', '', '', '', ''),
(2687, '', '', '', '', '', '', '', '', '', '', 'MEDIUMTEXT', '', '', '', 'Class Helper Code', 'NOT NULL', 2, 8, '\"<field\\n\\ttype=\\\"editor\\\"\\n\\tname=\\\"class_helper_code\\\"\\n\\tlabel=\\\"Class Helper Properties & Methods\\\"\\n\\tdescription=\\\"Add the class properties & methods here.\\\"\\n\\twidth=\\\"100%\\\"\\n\\theight=\\\"800px\\\"\\n\\tcols=\\\"40\\\"\\n\\trows=\\\"300\\\"\\n\\tbuttons=\\\"no\\\"\\n\\tsyntax=\\\"php\\\"\\n\\teditor=\\\"codemirror|none\\\"\\n\\tfilter=\\\"raw\\\"\\n\\tvalidate=\\\"code\\\"\\n\\/>\"', 1, '2019-12-01 19:51:56', '2019-12-03 13:20:53', 3, '', 366, '74126149-0257-4844-956d-8f155181ba98', '', '', '', '', ''),
(2688, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'Add Class Helper Header', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"add_class_helper_header\\\"\\n\\tlabel=\\\"Add Class Helper Header\\\"\\n\\tdescription=\\\"You can add your own custom helper header script.\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"1|Yes,0|No\\\"\\n\\tdefault=\\\"0\\\"\\n\\/>\"', 1, '2019-12-01 19:57:44', '2019-12-03 14:58:42', 6, '', 942, 'd2d81879-9190-45fd-b2a1-9ea6c0b0c12e', '', '', '', '', ''),
(2689, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Class Helper Header', 'NOT NULL', 2, 8, '\"<field\\n\\ttype=\\\"editor\\\"\\n\\tname=\\\"class_helper_header\\\"\\n\\tlabel=\\\"Class Helper Header\\\"\\n\\tdescription=\\\"The class header, where JLoader, namespace and use is added.\\\"\\n\\twidth=\\\"100%\\\"\\n\\theight=\\\"100px\\\"\\n\\tcols=\\\"15\\\"\\n\\trows=\\\"10\\\"\\n\\tbuttons=\\\"no\\\"\\n\\tsyntax=\\\"php\\\"\\n\\teditor=\\\"codemirror|none\\\"\\n\\tfilter=\\\"raw\\\"\\n\\trequired=\\\"false\\\"\\n\\tvalidate=\\\"code\\\"\\n\\/>\"', 1, '2019-12-01 20:01:29', '2019-12-03 13:21:39', 2, '', 934, '1be0f2e4-0270-4ef4-8449-369b9dabcf48', '', '', '', '', ''),
(2690, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'Add Class Helper', 'NOT NULL', '', 11, '\"<field\\n\\ttype=\\\"list\\\"\\n\\tname=\\\"add_class_helper\\\"\\n\\tlabel=\\\"Add Class Helper\\\"\\n\\tdescription=\\\"You can add a helper class to your module.\\\"\\n\\tclass=\\\"list_class\\\"\\n\\tmultiple=\\\"false\\\"\\n\\trequired=\\\"true\\\"\\n\\toption=\\\"0|None,1|class,2|abstract class\\\"\\n\\tdefault=\\\"0\\\"\\n\\/>\"', 1, '2019-12-01 20:12:34', '2019-12-03 14:56:55', 6, '', 942, 'f9b94931-2255-449d-aeab-60bfaa69c449', '', '', '', '', ''),
(2691, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Related Forms (module)', 'NOT NULL', '', 35, '\"<field\\n\\ttype=\\\"subform\\\"\\n\\tname=\\\"fields\\\"\\n\\tlabel=\\\"Related Forms\\\"\\n\\tlayout=\\\"joomla.form.field.subform.repeatable\\\"\\n\\tmultiple=\\\"true\\\"\\n\\tbuttons=\\\"add,remove,move\\\"\\n\\tfields=\\\"2693,2620,2617,2618,2619,2692,3038,3037,2621\\\"\\n\\ticon=\\\"list\\\"\\n\\tmax=\\\"10\\\"\\n\\/>\"', 1, '2019-12-02 15:09:19', '2022-02-04 16:26:41', 4, '', 366, '4982807f-9ad8-47a3-992c-8e18c626394f', '', '', '', '', ''),
(2692, '', '', '', '', '', '', 1, '', 1, '', 'TINYINT', '', '', '', 'Fields & Rules Paths (module)', '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|Module,3|Other\\\"\\n\\tdefault=\\\"1\\\"\\n\\/>\"', 1, '2019-12-02 15:17:01', '2022-02-04 16:24:23', 2, '', 945, '3c798a21-5ef4-465d-bea2-3f7a7162f181', '', '', '', '', ''),
(2693, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'Module Config Field', 'NOT NULL', '', 3, '\"<field\\n\\ttype=\\\"checkbox\\\"\\n\\tname=\\\"module\\\"\\n\\tlabel=\\\"Add to Module Config\\\"\\n\\tvalue=\\\"1\\\"\\n\\tdefault=\\\"1\\\"\\n\\tdescription=\\\"Add this form the the Module Config area.\\\"\\n\\tclass=\\\"inputbox\\\"\\n\\/>\"', 1, '2019-12-02 15:18:14', '2019-12-02 15:18:26', 2, '', 953, '65a12454-3a37-40e1-86c6-db64dd2a80f6', '', '', '', '', ''),
(2694, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Module Code', 'NOT NULL', 2, 8, '\"<field\\n\\ttype=\\\"editor\\\"\\n\\tname=\\\"mod_code\\\"\\n\\tlabel=\\\"Module Code\\\"\\n\\tdescription=\\\"The code that is added to the main mod_name.php file\\\"\\n\\twidth=\\\"100%\\\"\\n\\theight=\\\"500px\\\"\\n\\tcols=\\\"15\\\"\\n\\trows=\\\"10\\\"\\n\\tbuttons=\\\"no\\\"\\n\\tsyntax=\\\"php\\\"\\n\\teditor=\\\"codemirror|none\\\"\\n\\tfilter=\\\"raw\\\"\\n\\trequired=\\\"true\\\"\\n\\tvalidate=\\\"code\\\"\\n\\/>\"', 1, '2019-12-03 16:13:08', '2019-12-03 16:39:54', 2, '', 934, 'a6138fdf-ad70-4ec6-aee7-b3e5fda2e2bb', '', '', '', '', ''),
(2695, '', '', '', '', '', '', '', '', '', '', '', '', '', '', 'Mod File Options Note', 'NOT NULL', '', 14, '\"<field\\n\\ttype=\\\"note\\\"\\n\\tname=\\\"note_mod_file_options\\\"\\n\\tlabel=\\\"Mod File Options\\\"\\n\\tdescription=\\\"<p>If you have added any fields in the Config\\/Params tab, these fields will be available to you in the <code>$params<\\/code> object, and can be accessed via the field name <code>$params->get(\'fieldname\');<\\/code> with the get method.<\\/p>\\\"\\n\\theading=\\\"h4\\\"\\n\\tclass=\\\"alert alert-info\\\"\\n\\/>\"', 1, '2019-12-05 01:08:48', '2019-12-05 01:08:59', 2, '', 940, 'a883f1ac-9311-4554-b389-e6db6a886dcb', '', '', '', '', ''),
(2696, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'Joomla Module (JCB)', 'NOT NULL', '', 6, '\"<field\\n\\ttype=\\\"joomlamodules\\\"\\n\\tname=\\\"module\\\"\\n\\tlabel=\\\"Modules\\\"\\n\\tclass=\\\"list_class span12\\\"\\n\\tmultiple=\\\"false\\\"\\n\\tdefault=\\\"0\\\"\\n\\textends=\\\"list\\\"\\n\\tbutton=\\\"true\\\"\\n\\ttable=\\\"#__###component###_joomla_module\\\"\\n\\tcomponent=\\\"com_###component###\\\"\\n\\tview=\\\"joomla_module\\\"\\n\\tviews=\\\"joomla_modules\\\"\\n\\tvalue_field=\\\"system_name\\\"\\n\\tkey_field=\\\"id\\\"\\n\\tprime_php=\\\"1\\\"\\n\\ttype_php_1=\\\"__.o0=base64=Oo.__Ly8gR2V0IHRoZSB1c2VyIG9iamVjdC4NCgkJJHVzZXIgPSBKRmFjdG9yeTo6Z2V0VXNlcigpOw0KCQkvLyBHZXQgdGhlIGRhdGFic2Ugb2JqZWN0Lg0KCQkkZGIgPSBKRmFjdG9yeTo6Z2V0REJPKCk7DQoJCSRxdWVyeSA9ICRkYi0+Z2V0UXVlcnkodHJ1ZSk7DQoJCSRxdWVyeS0+c2VsZWN0KCRkYi0+cXVvdGVOYW1lKGFycmF5KCdhLiMjI0lEIyMjJywnYS4jIyNURVhUIyMjJywnYS5uYW1lJyksYXJyYXkoJyMjI0lEIyMjJywnIyMjQ09ERV9URVhUIyMjJywnbmFtZScpKSk7DQoJCSRxdWVyeS0+ZnJvbSgkZGItPnF1b3RlTmFtZSgnIyMjVEFCTEUjIyMnLCAnYScpKTsNCgkJJHF1ZXJ5LT53aGVyZSgkZGItPnF1b3RlTmFtZSgnYS5wdWJsaXNoZWQnKSAuICcgPj0gMScpOw0KCQkkcXVlcnktPm9yZGVyKCdhLiMjI1RFWFQjIyMgQVNDJyk7DQoJCS8vIEltcGxlbWVudCBWaWV3IExldmVsIEFjY2VzcyAoaWYgc2V0IGluIHRhYmxlKQ0KCQlpZiAoISR1c2VyLT5hdXRob3Jpc2UoJ2NvcmUub3B0aW9ucycsICdbW1tjb21fY29tcG9uZW50XV1dJykpDQoJCXsNCgkJCSRjb2x1bW5zID0gJGRiLT5nZXRUYWJsZUNvbHVtbnMoJyMjI1RBQkxFIyMjJyk7DQoJCQlpZihpc3NldCgkY29sdW1uc1snYWNjZXNzJ10pKQ0KCQkJew0KCQkJCSRncm91cHMgPSBpbXBsb2RlKCcsJywgJHVzZXItPmdldEF1dGhvcmlzZWRWaWV3TGV2ZWxzKCkpOw0KCQkJCSRxdWVyeS0+d2hlcmUoJ2EuYWNjZXNzIElOICgnIC4gJGdyb3VwcyAuICcpJyk7DQoJCQl9DQoJCX0NCgkJJGRiLT5zZXRRdWVyeSgoc3RyaW5nKSRxdWVyeSk7DQoJCSRpdGVtcyA9ICRkYi0+bG9hZE9iamVjdExpc3QoKTsNCgkJJG9wdGlvbnMgPSBhcnJheSgpOw0KCQlpZiAoJGl0ZW1zKQ0KCQl7DQoJCQkkb3B0aW9uc1tdID0gSkh0bWw6Ol8oJ3NlbGVjdC5vcHRpb24nLCAnJywgJ1NlbGVjdCBhIG1vZHVsZScpOw0KCQkJZm9yZWFjaCgkaXRlbXMgYXMgJGl0ZW0pDQoJCQl7DQoJCQkJLy8gc2V0IGEgZnVsbCBjbGFzcyBuYW1lDQoJCQkJJG9wdGlvbnNbXSA9IEpIdG1sOjpfKCdzZWxlY3Qub3B0aW9uJywgJGl0ZW0tPiMjI0lEIyMjLCAkaXRlbS0+IyMjQ09ERV9URVhUIyMjIC4gJyAtICcgLiAkaXRlbS0+bmFtZSk7DQoJCQl9DQoJCX0NCgkJcmV0dXJuICRvcHRpb25zOw==\\\"\\n\\/>\"', 1, '2019-12-05 14:25:42', '2019-12-05 14:28:42', 3, '', 937, 'cc4129bb-8170-438b-953d-4a0ccbdbbcbb', '', '', '', '', ''),
(2697, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Category (com_content)', 'NOT NULL', '', 2, '\"<field\\n\\ttype=\\\"category\\\"\\n\\tname=\\\"catid\\\"\\n\\tlabel=\\\"Category\\\"\\n\\textension=\\\"com_content\\\"\\n\\tdescription=\\\"Select latest news categories<br \\/>If <b>none<\\/b> is selected, this will <b>fallback to all<\\/b> being selected!\\\"\\n\\tclass=\\\"inputbox\\\"\\n\\tpublished=\\\"1\\\"\\n\\tmultiple=\\\"true\\\"\\n\\/>\"', 1, '2019-12-16 13:54:50', '2019-12-16 15:01:00', 2, '', 966, 'f13007ab-99cf-43d0-8758-5c679f784d15', '', '', '', '', ''),
(2698, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'Count (Articles to display)', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"count\\\"\\n\\tlabel=\\\"Count\\\"\\n\\tsize=\\\"10\\\"\\n\\tmaxlength=\\\"50\\\"\\n\\tdefault=\\\"5\\\"\\n\\tdescription=\\\"The number of articles to display (the default is 5).\\\"\\n\\tclass=\\\"text_area\\\"\\n\\tfilter=\\\"INT\\\"\\n\\tmessage=\\\"Error! Please add number of articles to display here.\\\"\\n\\thint=\\\"Only Numbers\\\"\\n\\tonchange=\\\"if(!jQuery(this).val().match(\\/^\\\\d+$\\/)){jQuery(this).val(\'\')};\\\"\\n\\/>\"', 1, '2019-12-16 14:28:21', '2020-12-05 06:10:26', 3, '', 7, '1f931f06-6fa7-4731-9637-e63bbcc70676', '', '', '', '', ''),
(2699, '', '', '', '', '', '', '', '', '', '', 'TINYINT', 2, '', '', 'Featured Articles', 'NOT NULL', '', 11, '\"<field\\n\\ttype=\\\"list\\\"\\n\\tname=\\\"show_featured\\\"\\n\\tlabel=\\\"Featured Articles\\\"\\n\\tdescription=\\\"Show or hide articles designated as featured.\\\"\\n\\tclass=\\\"list_class\\\"\\n\\toption=\\\"|Sow,0|Hide,1|Only show Featured Articles\\\"\\n\\tdefault=\\\"\\\"\\n\\/>\"', 1, '2019-12-16 14:31:25', '0000-00-00 00:00:00', 1, '', 967, '0df690da-6a3f-4ce9-b316-f8540e42a6d3', '', '', '', '', ''),
(2700, '', '', '', '', '', '', '', '', 64, '', 'VARCHAR', 2, '', '', 'Order (mod - articles)', 'NOT NULL', '', 11, '\"<field\\n\\ttype=\\\"list\\\"\\n\\tname=\\\"ordering\\\"\\n\\tlabel=\\\"Order\\\"\\n\\tdescription=\\\"<b>Recently Added First<\\/b>: order the articles using their creation date<br \\/>\\r\\n<b>Recently Modified First<\\/b>: order the articles using their modification date<br \\/>\\r\\n<b>Recently Published First<\\/b>: order the articles using their publication date.<br \\/>\\r\\n<b>Recently Touched First<\\/b>: order the articles using their modification or creation dates.\\\"\\n\\tclass=\\\"list_class\\\"\\n\\toption=\\\"c_dsc|Recently Added First,m_dsc|Recently Modified First,p_dsc|Recently Published First,random|Random Articles,mc_dsc|Recently Touched First\\r\\n\\t\\r\\n\\\"\\n\\tdefault=\\\"c_dsc\\\"\\n\\/>\"', 1, '2019-12-16 14:37:06', '2019-12-16 14:38:04', 3, '', 968, '5b8f3258-6afe-496b-a87b-fbe705bc6ca5', '', '', '', '', ''),
(2701, '', '', '', '', '', '', '', '', 64, '', 'VARCHAR', 2, '', '', 'Authors (mod - filter)', 'NOT NULL', '', 11, '\"<field\\n\\ttype=\\\"list\\\"\\n\\tname=\\\"user_id\\\"\\n\\tlabel=\\\"Authors\\\"\\n\\tdescription=\\\"Filter by author\\\"\\n\\tclass=\\\"list_class\\\"\\n\\tmultiple=\\\"false\\\"\\n\\toption=\\\"0|Anyone,by_me|Added or modified by me,not_me|Not added or modified by me\\r\\n\\\"\\n\\tdefault=\\\"0\\\"\\n\\/>\"', 1, '2019-12-16 14:44:13', '2019-12-16 14:44:27', 2, '', 969, 'e12bb797-93e9-4dd7-91d4-eaf1da69fa57', '', '', '', '', ''),
(2702, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'Add Link/Button to More', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"more_add\\\"\\n\\tlabel=\\\"Add Link\\/Button to More\\\"\\n\\tdescription=\\\"Add a link\\/button to more of these latest articles\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"1|Yes,0|No\\\"\\n\\tdefault=\\\"0\\\"\\n\\trequired=\\\"true\\\"\\n\\/>\"', 1, '2019-12-16 22:27:34', '0000-00-00 00:00:00', 1, '', 970, 'f5eacad7-56c2-4093-b93f-3feca1bccdcb', '', '', '', '', ''),
(2703, '', '', '', '', '', '', '', '', 7, '', 'INT', '', '', '', 'More Menu Item', 'NOT NULL', '', 33, '\"<field\\n\\ttype=\\\"menuitem\\\"\\n\\tname=\\\"more_menu\\\"\\n\\tlabel=\\\"More Menu Item\\\"\\n\\tpublished=\\\"1\\\"\\n\\tdescription=\\\"Select the menu for your link\\/button\\\"\\n\\tshowon=\\\"more_add:1\\\"\\n\\/>\"', 1, '2019-12-16 23:11:25', '2019-12-16 23:13:43', 2, '', 970, '43d6c55d-76be-4e28-a38f-3d80b6573d15', '', '', '', '', ''),
(2704, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Link/Button Name', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"more_name\\\"\\n\\tlabel=\\\"Link\\/Button Name\\\"\\n\\tsize=\\\"150\\\"\\n\\tmaxlength=\\\"250\\\"\\n\\tdescription=\\\"The name of this button\\/link\\\"\\n\\tclass=\\\"text_area\\\"\\n\\tfilter=\\\"STRING\\\"\\n\\thint=\\\"Read more..\\\"\\n\\tautocomplete=\\\"on\\\"\\n\\tshowon=\\\"more_add:1\\\"\\n\\/>\"', 1, '2019-12-16 23:15:48', '2019-12-16 23:24:29', 2, '', 970, 'a5e0fea5-437e-44b2-a96e-641101592b7a', '', '', '', '', ''),
(2705, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'More Type', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"more_type\\\"\\n\\tlabel=\\\"More Type\\\"\\n\\tdescription=\\\"Set the type of link you would like\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"1|Text Link,2|Button\\\"\\n\\tdefault=\\\"2\\\"\\n\\tshowon=\\\"more_add:1\\\"\\n\\/>\"', 1, '2019-12-16 23:19:29', '2019-12-16 23:13:43', 1, '', 970, '7b549a3f-eaee-4dc3-b7f2-2a8b05c52d4b', '', '', '', '', ''),
(2706, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Link/Button Title', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"more_title\\\"\\n\\tlabel=\\\"Link\\/Button Title\\\"\\n\\tsize=\\\"150\\\"\\n\\tmaxlength=\\\"250\\\"\\n\\tdescription=\\\"The title of this button\\/link\\\"\\n\\tclass=\\\"text_area\\\"\\n\\tfilter=\\\"STRING\\\"\\n\\thint=\\\"Click here to see more of these latest articles.\\\"\\n\\tautocomplete=\\\"on\\\"\\n\\tshowon=\\\"more_add:1\\\"\\n\\/>\"', 1, '2019-12-16 23:26:20', '2020-11-06 05:01:19', 3, '', 971, '54153f09-2cc4-44e7-82ac-3cd447b9b189', '', '', '', '', ''),
(2707, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Button CSS Class', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"more_class\\\"\\n\\tlabel=\\\"Button CSS Class\\\"\\n\\tsize=\\\"150\\\"\\n\\tmaxlength=\\\"250\\\"\\n\\tdefault=\\\"uk-button uk-button-success\\\"\\n\\tdescription=\\\"The css class of this button\\\"\\n\\tclass=\\\"text_area\\\"\\n\\tfilter=\\\"STRING\\\"\\n\\thint=\\\"uk-button uk-button-success\\\"\\n\\tautocomplete=\\\"on\\\"\\n\\tshowon=\\\"more_type:2[AND]more_add:1\\\"\\n\\/>\"', 1, '2019-12-16 23:29:51', '2019-12-16 23:31:09', 2, '', 971, '31a792d4-f84f-4441-a30e-b88b6c222b46', '', '', '', '', ''),
(2708, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', 2, '', '', 'Unit', 'NOT NULL', '', 6, '\"<field\\n\\ttype=\\\"units\\\"\\n\\tname=\\\"unit\\\"\\n\\tlabel=\\\"Unit\\\"\\n\\tclass=\\\"list_class medium\\\"\\n\\tmultiple=\\\"false\\\"\\n\\textends=\\\"list\\\"\\n\\tbutton=\\\"true\\\"\\n\\ttable=\\\"#__###component###_unit\\\"\\n\\tcomponent=\\\"com_###component###\\\"\\n\\tview=\\\"unit\\\"\\n\\tviews=\\\"units\\\"\\n\\tvalue_field=\\\"name\\\"\\n\\tkey_field=\\\"name\\\"\\n\\tprime_php=\\\"1\\\"\\n\\ttype_php_1=\\\"__.o0=base64=Oo.__Ly8gR2V0IHRoZSB1c2VyIG9iamVjdC4NCgkJJHVzZXIgPSBKRmFjdG9yeTo6Z2V0VXNlcigpOw0KCQkvLyBHZXQgdGhlIGRhdGFic2Ugb2JqZWN0Lg0KCQkkZGIgPSBKRmFjdG9yeTo6Z2V0REJPKCk7DQoJCSRxdWVyeSA9ICRkYi0+Z2V0UXVlcnkodHJ1ZSk7DQoJCSRxdWVyeS0+c2VsZWN0KCRkYi0+cXVvdGVOYW1lKGFycmF5KCdhLiMjI0lEIyMjJywnYS4jIyNURVhUIyMjJyksYXJyYXkoJyMjI0lEIyMjJywnIyMjQ09ERV9URVhUIyMjJykpKTsNCgkJJHF1ZXJ5LT5mcm9tKCRkYi0+cXVvdGVOYW1lKCcjIyNUQUJMRSMjIycsICdhJykpOw0KCQkkcXVlcnktPndoZXJlKCRkYi0+cXVvdGVOYW1lKCdhLnB1Ymxpc2hlZCcpIC4gJyA+PSAxJyk7DQoJCSRxdWVyeS0+b3JkZXIoJ2EuIyMjVEVYVCMjIyBBU0MnKTsNCgkJLy8gSW1wbGVtZW50IFZpZXcgTGV2ZWwgQWNjZXNzIChpZiBzZXQgaW4gdGFibGUpDQoJCWlmICghJHVzZXItPmF1dGhvcmlzZSgnY29yZS5vcHRpb25zJywgJ1tbW2NvbV9jb21wb25lbnRdXV0nKSkNCgkJew0KCQkJJGNvbHVtbnMgPSAkZGItPmdldFRhYmxlQ29sdW1ucygnIyMjVEFCTEUjIyMnKTsNCgkJCWlmKGlzc2V0KCRjb2x1bW5zWydhY2Nlc3MnXSkpDQoJCQl7DQoJCQkJJGdyb3VwcyA9IGltcGxvZGUoJywnLCAkdXNlci0+Z2V0QXV0aG9yaXNlZFZpZXdMZXZlbHMoKSk7DQoJCQkJJHF1ZXJ5LT53aGVyZSgnYS5hY2Nlc3MgSU4gKCcgLiAkZ3JvdXBzIC4gJyknKTsNCgkJCX0NCgkJfQ0KCQkkZGItPnNldFF1ZXJ5KChzdHJpbmcpICRxdWVyeSk7DQoJCSRpdGVtcyA9ICRkYi0+bG9hZE9iamVjdExpc3QoKTsNCgkJJG9wdGlvbnMgPSBhcnJheSgpOw0KCQlpZiAoJGl0ZW1zKQ0KCQl7DQoJCQkkb3B0aW9uc1tdID0gSkh0bWw6Ol8oJ3NlbGVjdC5vcHRpb24nLCAnJywgJ1NlbGVjdCBhbiB1bml0ZScpOw0KCQkJZm9yZWFjaCgkaXRlbXMgYXMgJGl0ZW0pDQoJCQl7DQoJCQkJJG9wdGlvbnNbXSA9IEpIdG1sOjpfKCdzZWxlY3Qub3B0aW9uJywgJGl0ZW0tPiMjI0lEIyMjLCAkaXRlbS0+IyMjQ09ERV9URVhUIyMjKTsNCgkJCX0NCgkJfQ0KCQlyZXR1cm4gJG9wdGlvbnM7DQo=\\\"\\n\\/>\"', 1, '2019-12-30 13:42:26', '2020-08-04 12:40:51', 8, '', 384, '6397f202-58e7-4480-91d4-bb9737a24fcb', '', '', '', '', ''),
(2709, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', 2, '', '', 'Target', 'NOT NULL', '', 6, '\"<field\\n\\ttype=\\\"targets\\\"\\n\\tname=\\\"target\\\"\\n\\tlabel=\\\"Target\\\"\\n\\tclass=\\\"list_class medium\\\"\\n\\tmultiple=\\\"false\\\"\\n\\textends=\\\"list\\\"\\n\\tbutton=\\\"true\\\"\\n\\ttable=\\\"#__###component###_target\\\"\\n\\tcomponent=\\\"com_###component###\\\"\\n\\tview=\\\"target\\\"\\n\\tviews=\\\"targets\\\"\\n\\tvalue_field=\\\"name\\\"\\n\\tkey_field=\\\"name\\\"\\n\\tprime_php=\\\"1\\\"\\n\\ttype_php_1=\\\"__.o0=base64=Oo.__Ly8gR2V0IHRoZSB1c2VyIG9iamVjdC4NCgkJJHVzZXIgPSBKRmFjdG9yeTo6Z2V0VXNlcigpOw0KCQkvLyBHZXQgdGhlIGRhdGFic2Ugb2JqZWN0Lg0KCQkkZGIgPSBKRmFjdG9yeTo6Z2V0REJPKCk7DQoJCSRxdWVyeSA9ICRkYi0+Z2V0UXVlcnkodHJ1ZSk7DQoJCSRxdWVyeS0+c2VsZWN0KCRkYi0+cXVvdGVOYW1lKGFycmF5KCdhLiMjI0lEIyMjJywnYS4jIyNURVhUIyMjJyksYXJyYXkoJyMjI0lEIyMjJywnIyMjQ09ERV9URVhUIyMjJykpKTsNCgkJJHF1ZXJ5LT5mcm9tKCRkYi0+cXVvdGVOYW1lKCcjIyNUQUJMRSMjIycsICdhJykpOw0KCQkkcXVlcnktPndoZXJlKCRkYi0+cXVvdGVOYW1lKCdhLnB1Ymxpc2hlZCcpIC4gJyA+PSAxJyk7DQoJCSRxdWVyeS0+b3JkZXIoJ2EuIyMjVEVYVCMjIyBBU0MnKTsNCgkJLy8gSW1wbGVtZW50IFZpZXcgTGV2ZWwgQWNjZXNzIChpZiBzZXQgaW4gdGFibGUpDQoJCWlmICghJHVzZXItPmF1dGhvcmlzZSgnY29yZS5vcHRpb25zJywgJ1tbW2NvbV9jb21wb25lbnRdXV0nKSkNCgkJew0KCQkJJGNvbHVtbnMgPSAkZGItPmdldFRhYmxlQ29sdW1ucygnIyMjVEFCTEUjIyMnKTsNCgkJCWlmKGlzc2V0KCRjb2x1bW5zWydhY2Nlc3MnXSkpDQoJCQl7DQoJCQkJJGdyb3VwcyA9IGltcGxvZGUoJywnLCAkdXNlci0+Z2V0QXV0aG9yaXNlZFZpZXdMZXZlbHMoKSk7DQoJCQkJJHF1ZXJ5LT53aGVyZSgnYS5hY2Nlc3MgSU4gKCcgLiAkZ3JvdXBzIC4gJyknKTsNCgkJCX0NCgkJfQ0KCQkkZGItPnNldFF1ZXJ5KChzdHJpbmcpICRxdWVyeSk7DQoJCSRpdGVtcyA9ICRkYi0+bG9hZE9iamVjdExpc3QoKTsNCgkJJG9wdGlvbnMgPSBhcnJheSgpOw0KCQlpZiAoJGl0ZW1zKQ0KCQl7DQoJCQkkb3B0aW9uc1tdID0gSkh0bWw6Ol8oJ3NlbGVjdC5vcHRpb24nLCAnJywgJ1NlbGVjdCBhIHRhcmdldCcpOw0KCQkJZm9yZWFjaCgkaXRlbXMgYXMgJGl0ZW0pDQoJCQl7DQoJCQkJJG9wdGlvbnNbXSA9IEpIdG1sOjpfKCdzZWxlY3Qub3B0aW9uJywgJGl0ZW0tPiMjI0lEIyMjLCAkaXRlbS0+IyMjQ09ERV9URVhUIyMjKTsNCgkJCX0NCgkJfQ0KCQlyZXR1cm4gJG9wdGlvbnM7DQo=\\\"\\n\\/>\"', 1, '2019-12-30 14:01:00', '2019-12-30 14:26:25', 2, '', 384, '13386851-6872-4fda-bdc6-6de3448994b7', '', '', '', '', ''),
(2710, '', '', '', '', '', '', '', '', 100, '', 'VARCHAR', 2, '', '', 'Value', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"value\\\"\\n\\tlabel=\\\"Value\\\"\\n\\tsize=\\\"10\\\"\\n\\tmaxlength=\\\"50\\\"\\n\\tclass=\\\"text_area\\\"\\n\\tfilter=\\\"CMD\\\"\\n\\tvalidate=\\\"number\\\"\\n\\thint=\\\"Only Numbers\\\"\\n\\tonchange=\\\"if(!jQuery(this).val().match(\\/^\\\\d+\\\\.\\\\d+$\\/)){jQuery(this).val(\'\')};\\\"\\n\\/>\"', 1, '2019-12-30 14:20:58', '2019-12-30 14:23:21', 3, '', 7, 'aae62b7a-041c-4f79-996f-83d25db6cccb', '', '', '', '', ''),
(2711, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Measurements', 'NOT NULL', '', 35, '\"<field\\n\\ttype=\\\"subform\\\"\\n\\tname=\\\"values\\\"\\n\\tlabel=\\\"Measurements\\\"\\n\\tlayout=\\\"joomla.form.field.subform.repeatable-table\\\"\\n\\tmultiple=\\\"true\\\"\\n\\tbuttons=\\\"add,remove,move\\\"\\n\\tfields=\\\"2709,2710,2708\\\"\\n\\ticon=\\\"list\\\"\\n\\tmax=\\\"10\\\"\\n\\tmin=\\\"2\\\"\\n\\/>\"', 1, '2019-12-30 14:25:15', '2019-12-30 14:28:24', 3, '', 972, '198a70ff-2b49-4271-8166-e7c1355b1fa7', '', '', '', '', ''),
(2712, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'Activate Affiliate Program', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"activate_affiliate_program\\\"\\n\\tlabel=\\\"Activate Affiliate Program\\\"\\n\\tdescription=\\\"Should you be part of the affiliate program, please activate it here to add your affiliate ID.\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"1|Yes,0|No\\\"\\n\\tdefault=\\\"0\\\"\\n\\/>\"', 1, '2020-01-08 04:56:40', '2020-01-08 04:56:55', 2, '', 973, 'd757446f-7806-4413-9e36-bb22ad41222d', '', '', '', '', ''),
(2713, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'Affiliate ID', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"affiliate_id\\\"\\n\\tlabel=\\\"Affiliate ID\\\"\\n\\tsize=\\\"10\\\"\\n\\tmaxlength=\\\"50\\\"\\n\\tclass=\\\"text_area\\\"\\n\\tfilter=\\\"INT\\\"\\n\\tvalidate=\\\"number\\\"\\n\\thint=\\\"Affiliate ID Number\\\"\\n\\tshowon=\\\"activate_affiliate_program:1\\\"\\n\\tonchange=\\\"if(!jQuery(this).val().match(\\/^\\\\d+$\\/)){jQuery(this).val(\'\')};\\\"\\n\\/>\"', 1, '2020-01-08 04:58:38', '2020-01-08 05:22:10', 3, '', 7, 'fb398164-f960-4054-a365-7e514a99e68b', '', '', '', '', ''),
(2714, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Time', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"time\\\"\\n\\tlabel=\\\"Time\\\"\\n\\tsize=\\\"10\\\"\\n\\tmaxlength=\\\"50\\\"\\n\\tclass=\\\"text_area\\\"\\n\\tfilter=\\\"STRING\\\"\\n\\/>\"', 1, '2017-07-16 18:15:43', '2020-02-25 21:13:15', 6, '', 7, 'b6b4095c-2b5d-4cbf-af7a-1c16295c8357', '', '', '', '', ''),
(2715, '', '', '', '', '', '', 'Other', '0000-00-00 00:00:00', '', '', 'DATETIME', '', '', '', 'Start Date', 'NOT NULL', '', 1, '\"<field\\n\\ttype=\\\"calendar\\\"\\n\\tname=\\\"start_date\\\"\\n\\tlabel=\\\"Start\\\"\\n\\tdefault=\\\"NOW\\\"\\n\\tformat=\\\"%d-%m-%Y\\\"\\n\\trequired=\\\"true\\\"\\n\\tsingleheader=\\\"true\\\"\\n\\ttodaybutton=\\\"true\\\"\\n\\tweeknumbers=\\\"true\\\"\\n\\tfilltable=\\\"true\\\"\\n\\/>\"', 1, '2017-07-16 18:18:48', '2020-03-15 15:05:51', 8, '', 7, '4a15ecd8-4cb6-49e8-a5a6-15d14b4cee36', '', '', '', '', ''),
(2716, '', '', '', '', '', '', 'Other', '0000-00-00 00:00:00', '', '', 'DATETIME', '', '', '', 'End Date', 'NOT NULL', '', 1, '\"<field\\n\\ttype=\\\"calendar\\\"\\n\\tname=\\\"end_date\\\"\\n\\tlabel=\\\"End\\\"\\n\\tformat=\\\"%d-%m-%Y\\\"\\n\\trequired=\\\"false\\\"\\n\\tsingleheader=\\\"true\\\"\\n\\tweeknumbers=\\\"true\\\"\\n\\tfilltable=\\\"true\\\"\\n\\/>\"', 1, '2017-07-17 14:28:44', '2020-03-15 15:05:44', 4, '', 7, '79326d01-2379-42b8-a353-722386793168', '', '', '', '', ''),
(2717, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', 2, '', '', 'Type (alias)', 'NOT NULL', '', 6, '\"<field\\n\\ttype=\\\"types\\\"\\n\\tname=\\\"type\\\"\\n\\tlabel=\\\"Type\\\"\\n\\tclass=\\\"list_class\\\"\\n\\tmultiple=\\\"false\\\"\\n\\tvalidate=\\\"guid\\\"\\n\\textends=\\\"list\\\"\\n\\ttable=\\\"#__###component###_type\\\"\\n\\tcomponent=\\\"com_###component###\\\"\\n\\tview=\\\"type\\\"\\n\\tviews=\\\"types\\\"\\n\\tvalue_field=\\\"name\\\"\\n\\tkey_field=\\\"alias\\\"\\n\\tprime_php=\\\"1\\\"\\n\\ttype_php_1=\\\"__.o0=base64=Oo.__Ly8gR2V0IHRoZSB1c2VyIG9iamVjdC4NCgkJJHVzZXIgPSBKRmFjdG9yeTo6Z2V0VXNlcigpOw0KCQkvLyBHZXQgdGhlIGRhdGFic2Ugb2JqZWN0Lg0KCQkkZGIgPSBKRmFjdG9yeTo6Z2V0REJPKCk7DQoJCSRxdWVyeSA9ICRkYi0+Z2V0UXVlcnkodHJ1ZSk7DQoJCSRxdWVyeS0+c2VsZWN0KCRkYi0+cXVvdGVOYW1lKGFycmF5KCdhLiMjI0lEIyMjJywnYS4jIyNURVhUIyMjJyksYXJyYXkoJyMjI0lEIyMjJywnIyMjQ09ERV9URVhUIyMjJykpKTsNCgkJJHF1ZXJ5LT5mcm9tKCRkYi0+cXVvdGVOYW1lKCcjIyNUQUJMRSMjIycsICdhJykpOw0KCQkkcXVlcnktPndoZXJlKCRkYi0+cXVvdGVOYW1lKCdhLnB1Ymxpc2hlZCcpIC4gJyA9IDEnKTsNCgkJJHF1ZXJ5LT5vcmRlcignYS4jIyNURVhUIyMjIEFTQycpOw0KCQkvLyBJbXBsZW1lbnQgVmlldyBMZXZlbCBBY2Nlc3MgKGlmIHNldCBpbiB0YWJsZSkNCgkJaWYgKCEkdXNlci0+YXV0aG9yaXNlKCdjb3JlLm9wdGlvbnMnLCAnW1tbY29tX2NvbXBvbmVudF1dXScpKQ0KCQl7DQoJCQkkY29sdW1ucyA9ICRkYi0+Z2V0VGFibGVDb2x1bW5zKCcjIyNUQUJMRSMjIycpOw0KCQkJaWYoaXNzZXQoJGNvbHVtbnNbJ2FjY2VzcyddKSkNCgkJCXsNCgkJCQkkZ3JvdXBzID0gaW1wbG9kZSgnLCcsICR1c2VyLT5nZXRBdXRob3Jpc2VkVmlld0xldmVscygpKTsNCgkJCQkkcXVlcnktPndoZXJlKCdhLmFjY2VzcyBJTiAoJyAuICRncm91cHMgLiAnKScpOw0KCQkJfQ0KCQl9DQoJCSRkYi0+c2V0UXVlcnkoKHN0cmluZykkcXVlcnkpOw0KCQkkaXRlbXMgPSAkZGItPmxvYWRPYmplY3RMaXN0KCk7DQoJCSRvcHRpb25zID0gYXJyYXkoKTsNCgkJaWYgKCRpdGVtcykNCgkJew0KCQkJJG9wdGlvbnNbXSA9IEpIdG1sOjpfKCdzZWxlY3Qub3B0aW9uJywgJycsICdTZWxlY3QgYW4gb3B0aW9uJyk7DQoJCQlmb3JlYWNoKCRpdGVtcyBhcyAkaXRlbSkNCgkJCXsNCgkJCQkkb3B0aW9uc1tdID0gSkh0bWw6Ol8oJ3NlbGVjdC5vcHRpb24nLCAkaXRlbS0+IyMjSUQjIyMsICRpdGVtLT4jIyNDT0RFX1RFWFQjIyMpOw0KCQkJfQ0KCQl9DQoJCXJldHVybiAkb3B0aW9uczs=\\\"\\n\\/>\"', 1, '2017-07-17 14:31:15', '2020-02-25 20:45:06', 7, '', 7, '3b1ae7f5-2d8e-4525-8df7-f5bc72231634', '', '', '', '', ''),
(2718, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'Course (syllabus)', 'NOT NULL', '', 6, '\"<field\\n\\ttype=\\\"syllabus\\\"\\n\\tname=\\\"course\\\"\\n\\tlabel=\\\"Course\\\"\\n\\tclass=\\\"list_class\\\"\\n\\tmultiple=\\\"false\\\"\\n\\trequired=\\\"true\\\"\\n\\textends=\\\"list\\\"\\n\\tbutton=\\\"true\\\"\\n\\ttable=\\\"#__curriculumbuilder_course\\\"\\n\\tcomponent=\\\"com_curriculumbuilder\\\"\\n\\tview=\\\"course\\\"\\n\\tviews=\\\"syllabus\\\"\\n\\tvalue_field=\\\"name\\\"\\n\\tkey_field=\\\"id\\\"\\n\\tprime_php=\\\"1\\\"\\n\\ttype_php_1=\\\"__.o0=base64=Oo.__Ly8gR2V0IHRoZSB1c2VyIG9iamVjdC4NCgkJJHVzZXIgPSBKRmFjdG9yeTo6Z2V0VXNlcigpOw0KCQkvLyBHZXQgdGhlIGRhdGFic2Ugb2JqZWN0Lg0KCQkkZGIgPSBKRmFjdG9yeTo6Z2V0REJPKCk7DQoJCSRxdWVyeSA9ICRkYi0+Z2V0UXVlcnkodHJ1ZSk7DQoJCSRxdWVyeS0+c2VsZWN0KCRkYi0+cXVvdGVOYW1lKCBhcnJheSgnYS4jIyNJRCMjIycsJ2EuIyMjVEVYVCMjIycsICdhLmNhdGlkJyksYXJyYXkoJyMjI0lEIyMjJywgJyMjI0NPREVfVEVYVCMjIycsICdjYXRpZCcpKSk7DQoJCSRxdWVyeS0+ZnJvbSgkZGItPnF1b3RlTmFtZSgnIyMjVEFCTEUjIyMnLCAnYScpKTsNCgkJJHF1ZXJ5LT53aGVyZSgkZGItPnF1b3RlTmFtZSgnYS5wdWJsaXNoZWQnKSAuICcgPj0gMScpOw0KCQkkcXVlcnktPm9yZGVyKCdhLiMjI1RFWFQjIyMgQVNDJyk7DQoJCS8vIEltcGxlbWVudCBWaWV3IExldmVsIEFjY2VzcyAoaWYgc2V0IGluIHRhYmxlKQ0KCQlpZiAoISR1c2VyLT5hdXRob3Jpc2UoJ2NvcmUub3B0aW9ucycsICdjb21fY3VycmljdWx1bWJ1aWxkZXInKSkNCgkJew0KCQkJJGNvbHVtbnMgPSAkZGItPmdldFRhYmxlQ29sdW1ucygnIyMjVEFCTEUjIyMnKTsNCgkJCWlmKGlzc2V0KCRjb2x1bW5zWydhY2Nlc3MnXSkpDQoJCQl7DQoJCQkJJGdyb3VwcyA9IGltcGxvZGUoJywnLCAkdXNlci0+Z2V0QXV0aG9yaXNlZFZpZXdMZXZlbHMoKSk7DQoJCQkJJHF1ZXJ5LT53aGVyZSgnYS5hY2Nlc3MgSU4gKCcgLiAkZ3JvdXBzIC4gJyknKTsNCgkJCX0NCgkJfQ0KCQkkZGItPnNldFF1ZXJ5KChzdHJpbmcpJHF1ZXJ5KTsNCgkJJGl0ZW1zID0gJGRiLT5sb2FkT2JqZWN0TGlzdCgpOw0KCQkkb3B0aW9ucyA9IGFycmF5KCk7DQoJCWlmICgkaXRlbXMpDQoJCXsNCgkJCS8vIGdldCBjYXRlZ29yeSBwYXJlbnQNCgkJCSRnZXRDYXRlZ29yeVBhcmVudCA9IGZ1bmN0aW9uICgkaWQpIHVzZSgkZGIpIHsNCgkJCQkkcSA9ICRkYi0+Z2V0UXVlcnkodHJ1ZSk7DQoJCQkJJHEtPnNlbGVjdCgkZGItPnF1b3RlTmFtZShhcnJheSgnYS50aXRsZScsICdhLnBhcmVudF9pZCcpLGFycmF5KCduYW1lJywgJ3BhcmVudCcpKSk7DQoJCQkJJHEtPmZyb20oJGRiLT5xdW90ZU5hbWUoJyNfX2NhdGVnb3JpZXMnLCAnYScpKTsNCgkJCQkkcS0+d2hlcmUoJ2EuaWQgPSAnIC4gKGludCkgJGlkKTsNCgkJCQkkZGItPnNldFF1ZXJ5KCRxKTsNCgkJCQkkZGItPmV4ZWN1dGUoKTsNCgkJCQlyZXR1cm4gJGRiLT5sb2FkT2JqZWN0KCk7DQoJCQl9Ow0KCQkJJF9pdGVtcyA9IGFycmF5KCk7DQoJCQlmb3JlYWNoKCRpdGVtcyBhcyAkaXRlbSkNCgkJCXsNCgkJCQkvLyBidWlsZCB0aGUgc3lsbGFidXMgdHJlZQ0KCQkJCSR0cmVlID0gYXJyYXkoKTsNCgkJCQkkY2F0aWQgPSAkaXRlbS0+Y2F0aWQ7DQoJCQkJd2hpbGUgKCRjYXRpZCA+IDEpDQoJCQkJew0KCQkJCQkkdmFsdWUgPSAkZ2V0Q2F0ZWdvcnlQYXJlbnQoJGNhdGlkKTsNCgkJCQkJJHRyZWVbJGNhdGlkXSA9ICR2YWx1ZS0+bmFtZTsNCgkJCQkJJGNhdGlkID0gJHZhbHVlLT5wYXJlbnQ7DQoJCQkJfQ0KCQkJCS8vIG11c3QgYmUgcGFydCBvZiBzb21lIHN5bGxhYnVzDQoJCQkJaWYgKFtbW0NvbXBvbmVudF1dXUhlbHBlcjo6Y2hlY2tBcnJheSgkdHJlZSkpDQoJCQkJew0KCQkJCQkkdHJlZSA9IGFycmF5X3JldmVyc2UoJHRyZWUpOw0KCQkJCQkkbmFtZSA9IGltcGxvZGUoJyAtICcsICR0cmVlKSAuICcgLSAnIC4gJGl0ZW0tPiMjI0NPREVfVEVYVCMjIzsNCgkJCQkJJGtleSA9IGltcGxvZGUoJyAnLCAkdHJlZSkgLiAnICcgLiAkaXRlbS0+IyMjQ09ERV9URVhUIyMjOw0KCQkJCQkkX2l0ZW1zWyRrZXldID0gYXJyYXkoJ2lkJyA9PiAkaXRlbS0+IyMjSUQjIyMsICduYW1lJyA9PiAkbmFtZSk7DQoJCQkJfQ0KCQkJfQ0KCQkJLy8gbXVzdCBoYXZlIGl0ZW1zDQoJCQlpZiAoW1tbQ29tcG9uZW50XV1dSGVscGVyOjpjaGVja0FycmF5KCRfaXRlbXMpKQ0KCQkJew0KCQkJCSRvcHRpb25zW10gPSBKSHRtbDo6Xygnc2VsZWN0Lm9wdGlvbicsICcnLCAnU2VsZWN0IGFuIG9wdGlvbicpOw0KCQkJCWZvcmVhY2goa3NvcnQoJF9pdGVtcywgU09SVF9TVFJJTkcpIGFzICRpdGVtKQ0KCQkJCXsNCgkJCQkJJG9wdGlvbnNbXSA9IEpIdG1sOjpfKCdzZWxlY3Qub3B0aW9uJywgJGl0ZW1bJ2lkJ10sICRpdGVtWyduYW1lJ10pOw0KCQkJCX0NCgkJCX0NCgkJfQ0KCQlyZXR1cm4gJG9wdGlvbnM7\\\"\\n\\/>\"', 1, '2017-07-18 13:56:09', '2020-03-17 01:30:13', 15, '', 7, 'af5fd30c-61e0-4dda-bb5c-00c13b87c312', '', '', '', '', ''),
(2719, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'IP - Password (EE)', 'NOT NULL', '', 16, '\"<field \\r\\n\\ttype=\\\"password\\\" \\r\\n\\tname=\\\"client_password\\\" \\r\\n\\tlabel=\\\"Password\\\" \\r\\n\\tsize=\\\"10\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tdescription=\\\"\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\tfilter=\\\"raw\\\"\\r\\n\\tfield=\\\"\\\" \\r\\n\\tmessage=\\\"Error! Please add some password here.\\\" \\r\\n\\thint=\\\"TokenPassword\\\" \\r\\n\\tshowon=\\\"client_usetoken_type:3\\\"\\r\\n\\tdisplay=\\\"menu\\\"\\r\\n\\/>\"', 1, '2017-07-18 14:03:16', '2020-02-23 15:54:28', 2, '', 7, '70377ee6-6d9b-4ed7-a1bd-fbbdd817cedb', '', '', '', '', ''),
(2720, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'IP Client (request_id) (EE)', 'NOT NULL', '', 6, '\"<field \\r\\n\\ttype=\\\"clients\\\" \\r\\n\\tname=\\\"client_request_id\\\" \\r\\n\\tlabel=\\\"Client\\\" \\r\\n\\tdescription=\\\"\\\" \\r\\n\\tclass=\\\"list_class\\\" \\r\\n\\tmultiple=\\\"false\\\" \\r\\n\\trequired=\\\"false\\\" \\r\\n\\textends=\\\"list\\\" \\r\\n\\tbutton=\\\"false\\\" \\r\\n\\ttable=\\\"#__###component###_client\\\" \\r\\n\\tcomponent=\\\"com_###component###\\\" \\r\\n\\tview=\\\"client\\\" \\r\\n\\tviews=\\\"clients\\\" \\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 an option\');\\\" \\r\\n\\ttype_php_12=\\\"\\\\t$options[] = JHtml::_(\'select.option\', \'0\', \'None\');\\\" \\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, '2017-07-16 17:54:45', '2020-02-23 15:54:28', 2, '', 792, 'e37cb74e-31da-4a58-828e-cbba61a1183b', '', '', '', '', ''),
(2721, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', 2, '', '', 'Name (key)', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"name\\\"\\n\\tlabel=\\\"Name\\\"\\n\\tsize=\\\"40\\\"\\n\\tmaxlength=\\\"150\\\"\\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', '2020-02-25 20:45:41', 10, '', 4, 'f318f3ef-eb0e-4ad8-9c81-f475c9618014', '', '', '', '', ''),
(2722, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Data Set', 'NOT NULL', 6, 35, '\"<field\\n\\ttype=\\\"subform\\\"\\n\\tname=\\\"data\\\"\\n\\tlabel=\\\"Data Set\\\"\\n\\tlayout=\\\"joomla.form.field.subform.repeatable-table\\\"\\n\\tmultiple=\\\"true\\\"\\n\\tbuttons=\\\"add,remove,move\\\"\\n\\tfields=\\\"2721,2717,2714,2724\\\"\\n\\ticon=\\\"list\\\"\\n\\/>\"', 1, '2015-04-09 13:46:04', '2020-02-25 21:13:26', 10, '', 216, 'c1ca12b8-af1b-4216-a258-f8b80a1855c2', 'W0NVU1RPTUNPREU9Z2V0U3ViRnJvbVRhYmxlK2RhdGFd', 'W0NVU1RPTUNPREU9c2F2ZVN1YlRvVGFibGUrZGF0YV0=', '', '', ''),
(2723, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'IP Watch (EE)', 'NOT NULL', '', 35, '\"<field \\r\\n\\ttype=\\\"subform\\\" \\r\\n\\tname=\\\"watcher\\\" \\r\\n\\tmultiple=\\\"true\\\"\\r\\n\\tlabel=\\\"IP Watch\\\" \\r\\n\\tlayout=\\\"joomla.form.field.subform.repeatable-table\\\" \\r\\n\\tfields=\\\"2724,2725\\\" \\r\\n\\tdescription=\\\"\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\ticon=\\\"list\\\" \\r\\n\\tmaximum=\\\"50\\\" \\r\\n\\tfilter=\\\"\\\" \\r\\n\\tshowon=\\\"\\\" \\r\\n\\/>\"', 1, '2017-06-17 09:42:28', '2020-02-23 15:54:28', 2, '', 787, '9fe0ce3f-d418-40a6-8ab8-398d2ff5f54c', '', '', '', '', ''),
(2724, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', 2, '', '', 'Value', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"value\\\"\\n\\tlabel=\\\"Value\\\"\\n\\tsize=\\\"20\\\"\\n\\tmaxlength=\\\"150\\\"\\n\\tclass=\\\"text_area\\\"\\n\\tfilter=\\\"STRING\\\"\\n\\/>\"', 1, '2017-06-17 09:13:16', '2020-02-25 20:42:22', 3, '', 7, '7e907456-7fd0-4618-9798-2ca652724e27', '', '', '', '', ''),
(2725, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Date (custom) (EE)', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"date\\\" \\r\\n\\tlabel=\\\"Date\\\" \\r\\n\\tsize=\\\"20\\\" \\r\\n\\tmaxlength=\\\"50\\\" \\r\\n\\tdefault=\\\"\\\" \\r\\n\\tdescription=\\\"\\\" \\r\\n\\tclass=\\\"text_area dawidth\\\" \\r\\n\\treadonly=\\\"false\\\" \\r\\n\\tdisabled=\\\"false\\\" \\r\\n\\trequired=\\\"false\\\" \\r\\n\\tfilter=\\\"STRING\\\" \\r\\n\\tvalidate=\\\"\\\" \\r\\n\\tfield=\\\"\\\" \\r\\n\\tmessage=\\\"Error! Please add date here.\\\" \\r\\n\\thint=\\\"yyyy-mm-dd hh:mm\\\" \\r\\n\\/>\"', 1, '2017-06-17 09:11:50', '2020-02-23 15:54:28', 1, '', 167, '979229df-a312-458d-8872-e57d2463e4be', '', '', '', '', ''),
(2726, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Bash Access Key (local-file)', 'NOT NULL', 6, 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"hostkey\\\"\\n\\tlabel=\\\"BASH Access Key <br \\/><small>(encrypted field)<\\/small>\\\"\\n\\tsize=\\\"128\\\"\\n\\tmaxlength=\\\"128\\\"\\n\\tdescription=\\\"The access key is auto generated.\\\"\\n\\tclass=\\\"text_area span12\\\"\\n\\treadonly=\\\"true\\\"\\n\\tfilter=\\\"STRING\\\"\\n\\thint=\\\"Auto Generated Access Key\\\"\\n\\/>\"', 1, '2017-07-04 20:48:19', '2020-02-25 12:06:55', 10, '', 789, 'ae112162-a1a1-4458-9f2f-5018f362ed4a', 'W0NVU1RPTUNPREU9dW5sb2NrRGVjcnlwdEZpZWxkXQ==', 'W0NVU1RPTUNPREU9bG9ja0VuY3J5cHRGaWVsZF0=', '', '', ''),
(2727, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Trust Key (expert)', 'NOT NULL', 6, 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"trustkey\\\"\\n\\tlabel=\\\"Trust Key <br \\/><small>(encrypted field)<\\/small>\\\"\\n\\tsize=\\\"128\\\"\\n\\tmaxlength=\\\"128\\\"\\n\\tdescription=\\\"Set the componentbuilder access key.\\\"\\n\\tclass=\\\"text_area\\\"\\n\\tfilter=\\\"STRING\\\"\\n\\thint=\\\"componentbuilder access key\\\"\\n\\/>\"', 1, '2017-07-04 20:51:00', '2020-02-25 12:06:18', 21, '', 789, '27d74dbe-d199-4217-a186-59c48594df33', 'W0NVU1RPTUNPREU9dW5sb2NrRGVjcnlwdEZpZWxkXQ==', 'W0NVU1RPTUNPREU9bG9ja0VuY3J5cHRGaWVsZF0=', '', '', ''),
(2728, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', 2, '', '', 'Domain (ips) (EE)', 'NOT NULL', '', 24, '\"<field \\r\\n\\ttype=\\\"text\\\" \\r\\n\\tname=\\\"domain\\\" \\r\\n\\tlabel=\\\"Domain\\\" \\r\\n\\tsize=\\\"50\\\" \\r\\n\\tmaxlength=\\\"150\\\" \\r\\n\\tdescription=\\\"The domain name to add A record to DNS. Only name like (vdm.io) Make sure that the needed BASH script is loaded on the selected server where this domain DNS is controlled.\\\" \\r\\n\\tclass=\\\"text_area\\\" \\r\\n\\tfilter=\\\"STRING\\\" \\r\\n\\tmessage=\\\"Error! Please add some text here.\\\" \\r\\n\\thint=\\\"example.com\\\" \\r\\n\\/>\"', 1, '2017-07-20 14:51:22', '2020-02-23 15:54:28', 1, '', 794, '801d864a-784e-4684-8d1b-80ba8b4ad088', '', '', '', '', ''),
(2729, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', 2, '', '', 'cPanel Header String/Name', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"cpanelheader\\\"\\n\\tlabel=\\\"cPanel Header\\\"\\n\\tsize=\\\"50\\\"\\n\\tmaxlength=\\\"150\\\"\\n\\tdefault=\\\"cPanel\\\"\\n\\tdescription=\\\"Add the cPanel header string here.\\\"\\n\\tclass=\\\"text_area\\\"\\n\\tfilter=\\\"String\\\"\\n\\tmessage=\\\"Error! Please add some text here.\\\"\\n\\thint=\\\"cPanel\\\"\\n\\/>\"', 1, '2017-07-20 14:54:29', '2020-03-15 22:08:22', 20, '', 794, 'efffffda-1817-4190-afbf-0c0075fa26ac', '', '', '', '', ''),
(2730, '', '', '', '', '', '', '', '', 'Other', 36, 'VARCHAR', 2, '', '', 'Station', 'NOT NULL', '', 6, '\"<field\\n\\ttype=\\\"stations\\\"\\n\\tname=\\\"station\\\"\\n\\tlabel=\\\"Station\\\"\\n\\trequired=\\\"true\\\"\\n\\tdescription=\\\"The station this data set belongs to.\\\"\\n\\tclass=\\\"list_class\\\"\\n\\tmultiple=\\\"false\\\"\\n\\tvalidate=\\\"guid\\\"\\n\\textends=\\\"list\\\"\\n\\tbutton=\\\"true\\\"\\n\\ttable=\\\"#__###component###_form\\\"\\n\\tcomponent=\\\"com_###component###\\\"\\n\\tview=\\\"form\\\"\\n\\tviews=\\\"forms\\\"\\n\\tvalue_field=\\\"name\\\"\\n\\tkey_field=\\\"guid\\\"\\n\\tprime_php=\\\"1\\\"\\n\\ttype_php_1=\\\"__.o0=base64=Oo.__Ly8gR2V0IHRoZSB1c2VyIG9iamVjdC4NCgkJJHVzZXIgPSBKRmFjdG9yeTo6Z2V0VXNlcigpOw0KCQkvLyBHZXQgdGhlIGRhdGFic2Ugb2JqZWN0Lg0KCQkkZGIgPSBKRmFjdG9yeTo6Z2V0REJPKCk7DQoJCSRxdWVyeSA9ICRkYi0+Z2V0UXVlcnkodHJ1ZSk7DQoJCSRxdWVyeS0+c2VsZWN0KCRkYi0+cXVvdGVOYW1lKGFycmF5KCdhLiMjI0lEIyMjJywnYS4jIyNURVhUIyMjJyksYXJyYXkoJyMjI0lEIyMjJywnIyMjQ09ERV9URVhUIyMjJykpKTsNCgkJJHF1ZXJ5LT5mcm9tKCRkYi0+cXVvdGVOYW1lKCcjIyNUQUJMRSMjIycsICdhJykpOw0KCQkkcXVlcnktPndoZXJlKCRkYi0+cXVvdGVOYW1lKCdhLnB1Ymxpc2hlZCcpIC4gJyA9IDEnKTsNCgkJJHF1ZXJ5LT5vcmRlcignYS4jIyNURVhUIyMjIEFTQycpOw0KCQkvLyBJbXBsZW1lbnQgVmlldyBMZXZlbCBBY2Nlc3MgKGlmIHNldCBpbiB0YWJsZSkNCgkJaWYgKCEkdXNlci0+YXV0aG9yaXNlKCdjb3JlLm9wdGlvbnMnLCAnW1tbY29tX2NvbXBvbmVudF1dXScpKQ0KCQl7DQoJCQkkY29sdW1ucyA9ICRkYi0+Z2V0VGFibGVDb2x1bW5zKCcjIyNUQUJMRSMjIycpOw0KCQkJaWYoaXNzZXQoJGNvbHVtbnNbJ2FjY2VzcyddKSkNCgkJCXsNCgkJCQkkZ3JvdXBzID0gaW1wbG9kZSgnLCcsICR1c2VyLT5nZXRBdXRob3Jpc2VkVmlld0xldmVscygpKTsNCgkJCQkkcXVlcnktPndoZXJlKCdhLmFjY2VzcyBJTiAoJyAuICRncm91cHMgLiAnKScpOw0KCQkJfQ0KCQl9DQoJCSRkYi0+c2V0UXVlcnkoKHN0cmluZykkcXVlcnkpOw0KCQkkaXRlbXMgPSAkZGItPmxvYWRPYmplY3RMaXN0KCk7DQoJCSRvcHRpb25zID0gYXJyYXkoKTsNCgkJaWYgKCRpdGVtcykNCgkJew0KCQkJJG9wdGlvbnNbXSA9IEpIdG1sOjpfKCdzZWxlY3Qub3B0aW9uJywgJycsICdTZWxlY3QgYW4gb3B0aW9uJyk7DQoJCQlmb3JlYWNoKCRpdGVtcyBhcyAkaXRlbSkNCgkJCXsNCgkJCQkkb3B0aW9uc1tdID0gSkh0bWw6Ol8oJ3NlbGVjdC5vcHRpb24nLCAkaXRlbS0+IyMjSUQjIyMsICRpdGVtLT4jIyNDT0RFX1RFWFQjIyMpOw0KCQkJfQ0KCQl9DQoJCXJldHVybiAkb3B0aW9uczs=\\\"\\n\\/>\"', 1, '2017-07-20 15:02:52', '2020-02-25 21:44:44', 9, '', 794, 'ca29e40b-52f6-4122-8477-fac80397a27a', '', '', '', '', ''),
(2731, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Module layout', 'NOT NULL', '', 40, '\"<field\\n\\ttype=\\\"modulelayout\\\"\\n\\tname=\\\"layout\\\"\\n\\tlabel=\\\"Layout\\\"\\n\\tdescription=\\\"Module layout\\\"\\n\\/>\"', 1, '2020-03-08 00:53:15', '2020-03-08 00:54:47', 2, '', 974, '233e75d4-d8fe-4eb2-82c0-c7a3f8284dea', '', '', '', '', ''),
(2732, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Module Class Suffix', 'NOT NULL', '', 25, '\"<field\\n\\ttype=\\\"textarea\\\"\\n\\tname=\\\"moduleclass_sfx\\\"\\n\\tlabel=\\\"Module Class Suffix\\\"\\n\\trows=\\\"3\\\"\\n\\tdescription=\\\"A suffix to be applied to the CSS class of the module. This allows for individual module styling.\\\"\\n\\/>\"', 1, '2020-03-08 00:58:13', '2020-03-08 00:59:06', 2, '', 975, '5690ee0b-ead5-49a9-a106-56143edc98cb', '', '', '', '', ''),
(2733, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'Caching', 'NOT NULL', '', 11, '\"<field\\n\\ttype=\\\"list\\\"\\n\\tname=\\\"cache\\\"\\n\\tlabel=\\\"Caching\\\"\\n\\tdescription=\\\"Use the global cache setting to cache the content of this module or disable caching for this module.\\\"\\n\\tfilter=\\\"integer\\\"\\n\\toption=\\\"1|Use Global,0|No caching\\\"\\n\\tdefault=\\\"1\\\"\\n\\/>\"', 1, '2020-03-08 01:02:06', '2020-03-08 01:02:57', 3, '', 976, '7418705c-f1ec-43a4-8cf7-e74ccd98d4af', '', '', '', '', ''),
(2734, '', '', '', '', '', '', '', '', 11, '', 'INT', '', '', '', 'Cache Time', 'NOT NULL', '', 15, '\"<field\\n\\ttype=\\\"number\\\"\\n\\tname=\\\"cache_time\\\"\\n\\tlabel=\\\"Cache Time\\\"\\n\\tdefault=\\\"900\\\"\\n\\tdescription=\\\"The time in seconds before the module is recached.\\\"\\n\\tmin=\\\"60\\\"\\n\\tmax=\\\"7200\\\"\\n\\tstep=\\\"60\\\"\\n\\/>\"', 1, '2020-03-08 01:06:18', '2020-03-08 01:06:33', 2, '', 977, 'b4bf294e-d942-4b10-8b1a-6cbe0e6582aa', '', '', '', '', ''),
(2735, '', '', '', '', '', '', '', '', 1024, '', 'VARCHAR', '', '', '', 'Select a Background Image', 'NOT NULL', '', 12, '\"<field\\n\\ttype=\\\"media\\\"\\n\\tname=\\\"backgroundimage\\\"\\n\\tlabel=\\\"Select a Background Image\\\"\\n\\tdescription=\\\"Select or upload an image that will automatically be inserted as an inline style for the wrapping div element.\\\"\\n\\tdirectory=\\\"\\/images\\/\\\"\\n\\tpreview=\\\"tooltip\\\"\\n\\/>\"', 1, '2020-03-08 01:09:07', '0000-00-00 00:00:00', 1, '', 978, '8decfb32-f218-43f3-8b69-96059034e9d0', '', '', '', '', ''),
(2736, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Target Member (module)', 'NOT NULL', '', 6, '\"<field\\n\\ttype=\\\"targettypes\\\"\\n\\tname=\\\"type\\\"\\n\\tlabel=\\\"Target\\\"\\n\\tdescription=\\\"Member Types\\\"\\n\\tclass=\\\"list_class\\\"\\n\\tmultiple=\\\"true\\\"\\n\\trequired=\\\"true\\\"\\n\\textends=\\\"list\\\"\\n\\ttable=\\\"#__[[[core]]]_type\\\"\\n\\tcomponent=\\\"com_[[[core]]]\\\"\\n\\tview=\\\"type\\\"\\n\\tviews=\\\"types\\\"\\n\\tvalue_field=\\\"name\\\"\\n\\tkey_field=\\\"id\\\"\\n\\ttype_php_1=\\\"__.o0=base64=Oo.__CQkvLyBsb2FkIHRoZSBkYiBvcGJqZWN0DQoJCSRkYiA9IEpGYWN0b3J5OjpnZXREQk8oKTsNCgkJLy8gc3RhcnQgcXVlcnkNCgkJJHF1ZXJ5ID0gJGRiLT5nZXRRdWVyeSh0cnVlKTsNCgkJJHF1ZXJ5LT5zZWxlY3QoJGRiLT5xdW90ZU5hbWUoYXJyYXkoJ2EuIyMjSUQjIyMnLCdhLiMjI1RFWFQjIyMnKSxhcnJheSgnIyMjSUQjIyMnLCcjIyNDT0RFX1RFWFQjIyMnKSkpOw0KCQkkcXVlcnktPmZyb20oJGRiLT5xdW90ZU5hbWUoJyMjI1RBQkxFIyMjJywgJ2EnKSk7DQoJCSRxdWVyeS0+d2hlcmUoJGRiLT5xdW90ZU5hbWUoJ2EucHVibGlzaGVkJykgLiAnID49IDEnKTsNCgkJJHF1ZXJ5LT5vcmRlcignYS4jIyNURVhUIyMjIEFTQycpOw0KCQkkZGItPnNldFF1ZXJ5KChzdHJpbmcpJHF1ZXJ5KTsNCgkJJGl0ZW1zID0gJGRiLT5sb2FkT2JqZWN0TGlzdCgpOw0KCQkkb3B0aW9ucyA9IGFycmF5KCk7DQoJCWlmICgkaXRlbXMpDQoJCXsNCgkJCWZvcmVhY2goJGl0ZW1zIGFzICRpdGVtKQ0KCQkJew0KCQkJCSRvcHRpb25zW10gPSBKSHRtbDo6Xygnc2VsZWN0Lm9wdGlvbicsICRpdGVtLT4jIyNJRCMjIywgJGl0ZW0tPiMjI0NPREVfVEVYVCMjIyk7DQoJCQl9DQoJCX0NCgkJcmV0dXJuICRvcHRpb25zOw==\\\"\\n\\/>\"', 1, '2020-03-08 01:28:35', '2020-03-08 01:29:11', 3, '', 384, '09a9151f-65dd-404a-8b8f-5465e9b38a0e', '', '', '', '', ''),
(2737, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Custom Module Content', 'NOT NULL', '', 35, '\"<field\\n\\ttype=\\\"subform\\\"\\n\\tname=\\\"content\\\"\\n\\tlabel=\\\"Content\\\"\\n\\tlayout=\\\"joomla.form.field.subform.repeatable\\\"\\n\\tmultiple=\\\"true\\\"\\n\\tbuttons=\\\"add,remove,move\\\"\\n\\tfields=\\\"599,2739\\\"\\n\\ticon=\\\"list\\\"\\n\\tmax=\\\"10\\\"\\n\\tmin=\\\"1\\\"\\n\\/>\"', 1, '2020-03-08 01:31:28', '2020-03-16 00:13:24', 9, '', 979, '670a6a52-e2f4-4ffe-b6a0-cf85c24ea6fd', '', '', '', '', ''),
(2738, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'Module Target Area', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"target\\\"\\n\\tlabel=\\\"Target Area\\\"\\n\\tdescription=\\\"Set the area this module is targeting.\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"1|Site,2|Admin\\\"\\n\\tdefault=\\\"1\\\"\\n\\trequired=\\\"true\\\"\\n\\tvalidate=\\\"int\\\"\\n\\/>\"', 1, '2020-03-08 13:49:09', '2020-03-08 13:49:54', 3, '', 980, '88d58023-7ee7-46dc-a13e-064fbb3d8dc1', '', '', '', '', ''),
(2739, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Content (RAW)', 'NOT NULL', '', 8, '\"<field\\n\\ttype=\\\"editor\\\"\\n\\tname=\\\"content\\\"\\n\\tlabel=\\\"Content\\\"\\n\\twidth=\\\"100%\\\"\\n\\theight=\\\"500\\\"\\n\\tfilter=\\\"RAW\\\"\\n\\trequired=\\\"true\\\"\\n\\/>\"', 1, '2020-03-16 00:12:47', '2020-03-16 00:15:19', 3, '', 154, 'bea62f88-637b-4dc4-8c73-26f8e0809550', '', '', '', '', ''),
(2740, '', '', '', '', '', '', '', '', '', '', '', '', '', '', 'Plugin Actions (language)', 'NOT NULL', '', 14, '\"<field\\n\\ttype=\\\"note\\\"\\n\\tname=\\\"note_language_note\\\"\\n\\tlabel=\\\"Would you like to move languages to their own packages?\\\"\\n\\tdescription=\\\"<p>Adding all your translations to your component can increase its size dramatically, so now you are able to move each extra language translation to its own installing package, leaving just your main language in the component.<\\/p><p>Please note that this is only relevant if you actually have added extra translations to your component in the <b>Language Translations<\\/b> area of JCB.<\\/p>\\\"\\n\\theading=\\\"h2\\\"\\n\\tclass=\\\"alert alert-info\\\"\\n\\/>\"', 1, '2020-03-19 23:43:20', '2020-03-20 00:48:51', 3, '', 947, 'cf0cc8e0-d9fe-44c9-aae7-4c5ebd913077', '', '', '', '', ''),
(2741, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Excluded Languages', 'NOT NULL', '', 6, '\"<field\\n\\ttype=\\\"excludedlanguages\\\"\\n\\tname=\\\"languages\\\"\\n\\tlabel=\\\"Languages\\\"\\n\\tdescription=\\\"The JCB system <b>main language<\\/b> will always be <b>kept in<\\/b> your component. Select any of the other languages you would like to keep <b>in<\\/b> your component. They will then be excluded from this language packaging option. (or leave blank for none)\\\"\\n\\tclass=\\\"list_class\\\"\\n\\tmultiple=\\\"true\\\"\\n\\tdefault=\\\"en-GB\\\"\\n\\tshowon=\\\"activate:1\\\"\\n\\textends=\\\"list\\\"\\n\\tbutton=\\\"true\\\"\\n\\ttable=\\\"#__###component###_language\\\"\\n\\tcomponent=\\\"com_###component###\\\"\\n\\tview=\\\"language\\\"\\n\\tviews=\\\"languages\\\"\\n\\tvalue_field=\\\"name\\\"\\n\\tkey_field=\\\"langtag\\\"\\n\\tprime_php=\\\"1\\\"\\n\\ttype_php_1=\\\"__.o0=base64=Oo.__JGRiID0gSkZhY3Rvcnk6OmdldERCTygpOw0KCQkkcXVlcnkgPSAkZGItPmdldFF1ZXJ5KHRydWUpOw0KCQkkcXVlcnktPnNlbGVjdCgkZGItPnF1b3RlTmFtZShhcnJheSgnYS4jIyNJRCMjIycsJ2EuIyMjVEVYVCMjIycpLGFycmF5KCcjIyNJRCMjIycsJyMjI0NPREVfVEVYVCMjIycpKSk7DQoJCSRxdWVyeS0+ZnJvbSgkZGItPnF1b3RlTmFtZSgnIyMjVEFCTEUjIyMnLCAnYScpKTsNCgkJJHF1ZXJ5LT53aGVyZSgkZGItPnF1b3RlTmFtZSgnYS5wdWJsaXNoZWQnKSAuICcgPj0gMScpOw0KCQkkcXVlcnktPm9yZGVyKCdhLiMjI0lEIyMjIEFTQycpOw0KCQkkZGItPnNldFF1ZXJ5KChzdHJpbmcpJHF1ZXJ5KTsNCgkJJGl0ZW1zID0gJGRiLT5sb2FkT2JqZWN0TGlzdCgpOw0KCQkvLyBhZGQgdGhlIG1haW4gbGFuZ3VhZ2UNCgkJJG1haW5fbGFuZyA9IHRyaW0oSkNvbXBvbmVudEhlbHBlcjo6Z2V0UGFyYW1zKCdjb21fIyMjY29tcG9uZW50IyMjJyktPmdldCgnbGFuZ3VhZ2UnLCAnZW4tR0InKSk7DQoJCS8vIGNoZWNrIGlmIGFueSBsYW5ndWFnZSB3YXMgYWRkZWQNCgkJJHdhc0FkZGVkID0gZmFsc2U7DQoJCSRvcHRpb25zID0gYXJyYXkoKTsNCgkJaWYgKCRpdGVtcykNCgkJew0KCQkJJG9wdGlvbnNbXSA9IEpIdG1sOjpfKCdzZWxlY3Qub3B0aW9uJywgJycsICdTZWxlY3QgYW4gb3B0aW9uJyk7DQoJCQlmb3JlYWNoKCRpdGVtcyBhcyAkaXRlbSkNCgkJCXsNCgkJCQkkaXRlbS0+IyMjSUQjIyMgPSB0cmltKCRpdGVtLT4jIyNJRCMjIyk7DQoJCQkJLy8gZG8gbm90IGFkZCBtYWluIGxhbmd1YWdlDQoJCQkJaWYgKCRtYWluX2xhbmcgIT09ICRpdGVtLT4jIyNJRCMjIykNCgkJCQl7DQoJCQkJCSRvcHRpb25zW10gPSBKSHRtbDo6Xygnc2VsZWN0Lm9wdGlvbicsICRpdGVtLT4jIyNJRCMjIywgJGl0ZW0tPiMjI0NPREVfVEVYVCMjIyAuICcgKCcgLiRpdGVtLT4jIyNJRCMjIy4nKScpOw0KCQkJCQkkd2FzQWRkZWQgPSB0cnVlOw0KCQkJCX0NCgkJCX0NCgkJfQ0KCQkvLyBub3cgaWYgbm9uZSB3YXMgYWRkZWQgZ2l2ZSBub3RpY2UNCgkJaWYgKCEkd2FzQWRkZWQpDQoJCXsNCgkJCSRvcHRpb25zW10gPSBKSHRtbDo6Xygnc2VsZWN0Lm9wdGlvbicsICcnLCAnQWRkIGxhbmd1YWdlcyB0byBzZWxlY3QnKTsNCgkJfQ0KCQlyZXR1cm4gJG9wdGlvbnM7\\\"\\n\\/>\"', 1, '2020-03-20 00:36:35', '2020-03-20 00:57:32', 8, '', 733, 'ad82d4d7-ba2f-48d1-a544-bea9968dd204', '', '', '', '', ''),
(2742, '', '', '', '', '', '', '', '', '', '', '', '', '', '', 'Plugin Keep (language)', 'NOT NULL', '', 14, '\"<field\\n\\ttype=\\\"note\\\"\\n\\tname=\\\"note_languages_keep\\\"\\n\\tlabel=\\\"Do want to keep some languages in your component?\\\"\\n\\tdescription=\\\"The JCB system <b>main language<\\/b> will always be <b>kept in<\\/b> your component. Select any of the other languages you would like to keep <b>in<\\/b> your component. They will then be excluded from this language packaging option. (or leave blank for none)\\\"\\n\\theading=\\\"h2\\\"\\n\\tclass=\\\"alert alert-info\\\"\\n\\tshowon=\\\"activate:1\\\"\\n\\/>\"', 1, '2020-03-20 00:48:30', '2020-03-20 00:56:09', 3, '', 947, '544c941c-1829-4fd3-91ad-5f62373fef4f', '', '', '', '', ''),
(2743, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Joomla Modules (multiple)', 'NULL', 1, 6, '\"<field\\n\\ttype=\\\"joomlamodules\\\"\\n\\tname=\\\"modules\\\"\\n\\tlabel=\\\"Modules<br \\/><small>source string is used in these modules<\\/small>\\\"\\n\\tclass=\\\"list_class span12\\\"\\n\\tlayout=\\\"joomla.form.field.list-fancy-select\\\"\\n\\tmultiple=\\\"true\\\"\\n\\tdefault=\\\"0\\\"\\n\\textends=\\\"list\\\"\\n\\tbutton=\\\"true\\\"\\n\\ttable=\\\"#__###component###_joomla_module\\\"\\n\\tcomponent=\\\"com_###component###\\\"\\n\\tview=\\\"joomla_module\\\"\\n\\tviews=\\\"joomla_modules\\\"\\n\\tvalue_field=\\\"system_name\\\"\\n\\tkey_field=\\\"id\\\"\\n\\ttype_php_1=\\\"__.o0=base64=Oo.__Ly8gR2V0IHRoZSB1c2VyIG9iamVjdC4NCgkJJHVzZXIgPSBKRmFjdG9yeTo6Z2V0VXNlcigpOw0KCQkvLyBHZXQgdGhlIGRhdGFic2Ugb2JqZWN0Lg0KCQkkZGIgPSBKRmFjdG9yeTo6Z2V0REJPKCk7DQoJCSRxdWVyeSA9ICRkYi0+Z2V0UXVlcnkodHJ1ZSk7DQoJCSRxdWVyeS0+c2VsZWN0KCRkYi0+cXVvdGVOYW1lKGFycmF5KCdhLiMjI0lEIyMjJywnYS4jIyNURVhUIyMjJywnYS5uYW1lJyksYXJyYXkoJyMjI0lEIyMjJywnIyMjQ09ERV9URVhUIyMjJywnbmFtZScpKSk7DQoJCSRxdWVyeS0+ZnJvbSgkZGItPnF1b3RlTmFtZSgnIyMjVEFCTEUjIyMnLCAnYScpKTsNCgkJJHF1ZXJ5LT53aGVyZSgkZGItPnF1b3RlTmFtZSgnYS5wdWJsaXNoZWQnKSAuICcgPj0gMScpOw0KCQkkcXVlcnktPm9yZGVyKCdhLiMjI1RFWFQjIyMgQVNDJyk7DQoJCS8vIEltcGxlbWVudCBWaWV3IExldmVsIEFjY2VzcyAoaWYgc2V0IGluIHRhYmxlKQ0KCQlpZiAoISR1c2VyLT5hdXRob3Jpc2UoJ2NvcmUub3B0aW9ucycsICdbW1tjb21fY29tcG9uZW50XV1dJykpDQoJCXsNCgkJCSRjb2x1bW5zID0gJGRiLT5nZXRUYWJsZUNvbHVtbnMoJyMjI1RBQkxFIyMjJyk7DQoJCQlpZihpc3NldCgkY29sdW1uc1snYWNjZXNzJ10pKQ0KCQkJew0KCQkJCSRncm91cHMgPSBpbXBsb2RlKCcsJywgJHVzZXItPmdldEF1dGhvcmlzZWRWaWV3TGV2ZWxzKCkpOw0KCQkJCSRxdWVyeS0+d2hlcmUoJ2EuYWNjZXNzIElOICgnIC4gJGdyb3VwcyAuICcpJyk7DQoJCQl9DQoJCX0NCgkJJGRiLT5zZXRRdWVyeSgoc3RyaW5nKSRxdWVyeSk7DQoJCSRpdGVtcyA9ICRkYi0+bG9hZE9iamVjdExpc3QoKTsNCgkJJG9wdGlvbnMgPSBhcnJheSgpOw0KCQlpZiAoJGl0ZW1zKQ0KCQl7DQoJCQkkb3B0aW9uc1tdID0gSkh0bWw6Ol8oJ3NlbGVjdC5vcHRpb24nLCAnJywgJ1NlbGVjdCBhIG1vZHVsZScpOw0KCQkJZm9yZWFjaCgkaXRlbXMgYXMgJGl0ZW0pDQoJCQl7DQoJCQkJLy8gc2V0IGEgZnVsbCBjbGFzcyBuYW1lDQoJCQkJJG9wdGlvbnNbXSA9IEpIdG1sOjpfKCdzZWxlY3Qub3B0aW9uJywgJGl0ZW0tPiMjI0lEIyMjLCAkaXRlbS0+IyMjQ09ERV9URVhUIyMjIC4gJyAtICcgLiAkaXRlbS0+bmFtZSk7DQoJCQl9DQoJCX0NCgkJcmV0dXJuICRvcHRpb25zOw==\\\"\\n\\/>\"', 1, '2020-03-23 20:22:21', '2024-03-26 13:22:46', 13, '', 937, 'd3468164-df0a-4f0d-a679-1aa95ae408fe', '', '', '', '', ''),
(2744, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Joomla Plugins (multiple)', 'NULL', 1, 6, '\"<field\\n\\ttype=\\\"joomlaplugins\\\"\\n\\tname=\\\"plugins\\\"\\n\\tlabel=\\\"Plugins<br \\/><small>source string is used in these plugins<\\/small>\\\"\\n\\tclass=\\\"list_class span12\\\"\\n\\tlayout=\\\"joomla.form.field.list-fancy-select\\\"\\n\\tmultiple=\\\"true\\\"\\n\\tdefault=\\\"0\\\"\\n\\textends=\\\"list\\\"\\n\\tbutton=\\\"true\\\"\\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.__Ly8gR2V0IHRoZSB1c2VyIG9iamVjdC4NCgkJJHVzZXIgPSBGYWN0b3J5OjpnZXRVc2VyKCk7DQoJCS8vIEdldCB0aGUgZGF0YWJzZSBvYmplY3QuDQoJCSRkYiA9IEZhY3Rvcnk6OmdldERCTygpOw0KCQkkcXVlcnkgPSAkZGItPmdldFF1ZXJ5KHRydWUpOw0KCQkkcXVlcnktPnNlbGVjdCgkZGItPnF1b3RlTmFtZShhcnJheSgnYS4jIyNJRCMjIycsJ2EuIyMjVEVYVCMjIycsJ2EubmFtZScsJ2IubmFtZScsJ2MubmFtZScpLGFycmF5KCcjIyNJRCMjIycsJyMjI0NPREVfVEVYVCMjIycsJ25hbWUnLCdjbGFzc19leHRlbmRzX25hbWUnLCdqb29tbGFfcGx1Z2luX2dyb3VwX25hbWUnKSkpOw0KCQkkcXVlcnktPmZyb20oJGRiLT5xdW90ZU5hbWUoJyMjI1RBQkxFIyMjJywgJ2EnKSk7DQoJCSRxdWVyeS0+am9pbignTEVGVCcsICRkYi0+cXVvdGVOYW1lKCcjX19bW1tjb21wb25lbnRdXV1fY2xhc3NfZXh0ZW5kcycsICdiJykgLiAnIE9OICgnIC4gJGRiLT5xdW90ZU5hbWUoJ2EuY2xhc3NfZXh0ZW5kcycpIC4gJyA9ICcgLiAkZGItPnF1b3RlTmFtZSgnYi5pZCcpIC4gJyknKTsNCgkJJHF1ZXJ5LT5qb2luKCdMRUZUJywgJGRiLT5xdW90ZU5hbWUoJyNfX1tbW2NvbXBvbmVudF1dXV9qb29tbGFfcGx1Z2luX2dyb3VwJywgJ2MnKSAuICcgT04gKCcgLiAkZGItPnF1b3RlTmFtZSgnYS5qb29tbGFfcGx1Z2luX2dyb3VwJykgLiAnID0gJyAuICRkYi0+cXVvdGVOYW1lKCdjLmlkJykgLiAnKScpOw0KCQkkcXVlcnktPndoZXJlKCRkYi0+cXVvdGVOYW1lKCdhLnB1Ymxpc2hlZCcpIC4gJyA+PSAxJyk7DQoJCSRxdWVyeS0+b3JkZXIoJ2EuIyMjVEVYVCMjIyBBU0MnKTsNCgkJLy8gSW1wbGVtZW50IFZpZXcgTGV2ZWwgQWNjZXNzIChpZiBzZXQgaW4gdGFibGUpDQoJCWlmICghJHVzZXItPmF1dGhvcmlzZSgnY29yZS5vcHRpb25zJywgJ1tbW2NvbV9jb21wb25lbnRdXV0nKSkNCgkJew0KCQkJJGNvbHVtbnMgPSAkZGItPmdldFRhYmxlQ29sdW1ucygnIyMjVEFCTEUjIyMnKTsNCgkJCWlmKGlzc2V0KCRjb2x1bW5zWydhY2Nlc3MnXSkpDQoJCQl7DQoJCQkJJGdyb3VwcyA9IGltcGxvZGUoJywnLCAkdXNlci0+Z2V0QXV0aG9yaXNlZFZpZXdMZXZlbHMoKSk7DQoJCQkJJHF1ZXJ5LT53aGVyZSgnYS5hY2Nlc3MgSU4gKCcgLiAkZ3JvdXBzIC4gJyknKTsNCgkJCX0NCgkJfQ0KCQkkZGItPnNldFF1ZXJ5KChzdHJpbmcpJHF1ZXJ5KTsNCgkJJGl0ZW1zID0gJGRiLT5sb2FkT2JqZWN0TGlzdCgpOw0KCQkkb3B0aW9ucyA9IGFycmF5KCk7DQoJCWlmICgkaXRlbXMpDQoJCXsNCgkJCSRvcHRpb25zW10gPSBIdG1sOjpfKCdzZWxlY3Qub3B0aW9uJywgJycsICdTZWxlY3QgYSBwbHVnaW4nKTsNCgkJCWZvcmVhY2goJGl0ZW1zIGFzICRpdGVtKQ0KCQkJew0KCQkJCS8vIHNldCBhIGZ1bGwgY2xhc3MgbmFtZQ0KCQkJCSRncm91cF9uYW1lID0gJGl0ZW0tPmpvb21sYV9wbHVnaW5fZ3JvdXBfbmFtZSA\\/PyAnJzsNCgkJCQkkbmFtZSA9ICRpdGVtLT5uYW1lID8\\/ICcnOw0KCQkJCSRvcHRpb25zW10gPSBIdG1sOjpfKCdzZWxlY3Qub3B0aW9uJywgJGl0ZW0tPiMjI0lEIyMjLCAnKCAnIC4gJGl0ZW0tPiMjI0NPREVfVEVYVCMjIyAuICcgKSBjbGFzcyBQbGcnIC4gJGdyb3VwX25hbWUgLiAkbmFtZSAuICcgZXh0ZW5kcyAnIC4gJGl0ZW0tPmNsYXNzX2V4dGVuZHNfbmFtZSk7DQoJCQl9DQoJCX0NCgkJcmV0dXJuICRvcHRpb25zOw==\\\"\\n\\/>\"', 1, '2020-03-23 20:23:22', '2024-03-26 13:22:40', 10, '', 937, '6e1717a7-99b8-4101-a0b0-fcf2a5e1cfa0', '', '', '', '', ''),
(2745, '', '', '', '', '', '', '', '', 64, '', 'CHAR', '', '', '', 'Percentage Language Add (showon)', 'NOT NULL', '', 15, '\"<field\\n\\ttype=\\\"number\\\"\\n\\tname=\\\"percentagelanguageadd\\\"\\n\\tlabel=\\\"Add Language if %? ready.\\\"\\n\\tdefault=\\\"50\\\"\\n\\tdescription=\\\"Select percentage any language should be translated before the system should add the language to the component during compilation.\\\"\\n\\tclass=\\\"text_area\\\"\\n\\tmin=\\\"10\\\"\\n\\tmax=\\\"100\\\"\\n\\tstep=\\\"10\\\"\\n\\tshowon=\\\"use_percentagelanguageadd:2[AND]activate:1\\\"\\n\\/>\"', 1, '2020-04-02 21:26:47', '2020-04-02 21:44:19', 4, '', 785, '2eed09c9-6e18-4539-a225-e8821740ad49', '', '', '', '', ''),
(2746, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'Add Language Settings', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"use_percentagelanguageadd\\\"\\n\\tlabel=\\\"Add Language Settings\\\"\\n\\tdescription=\\\"Select what option should be used\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"1|Global,2|Local\\\"\\n\\tdefault=\\\"1\\\"\\n\\tshowon=\\\"activate:1\\\"\\n\\/>\"', 1, '2020-04-02 21:28:58', '2020-04-02 21:44:30', 3, '', 981, '376877cb-6b1a-4a06-a1c7-a0c7b0b62a4c', '', '', '', '', ''),
(2747, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'Admin Default Ordering Field', 'NOT NULL', '', 6, '\"<field\\n\\ttype=\\\"adminlistvieworderfields\\\"\\n\\tname=\\\"field\\\"\\n\\tlabel=\\\"Field\\\"\\n\\tclass=\\\"fieldLarge\\\"\\n\\tmultiple=\\\"false\\\"\\n\\textends=\\\"list\\\"\\n\\ttable=\\\"#__###component###_field\\\"\\n\\tcomponent=\\\"com_###component###\\\"\\n\\tview=\\\"field\\\"\\n\\tviews=\\\"fields\\\"\\n\\tvalue_field=\\\"name\\\"\\n\\tkey_field=\\\"id\\\"\\n\\tprime_php=\\\"1\\\"\\n\\ttype_php_1=\\\"__.o0=base64=Oo.__Ly8gbG9hZCB0aGUgZGIgb2JqZWN0DQoJCSRkYiA9IEpGYWN0b3J5OjpnZXREQk8oKTsJCQ0KCQkvLyBnZXQgdGhlIGlucHV0IGZyb20gdXJsDQoJCSRqaW5wdXQgPSBKRmFjdG9yeTo6Z2V0QXBwbGljYXRpb24oKS0+aW5wdXQ7DQoJCS8vIGdldCB0aGUgaWQNCgkJJGFkbWluVmlldyA9ICRqaW5wdXQtPmdldEludCgnaWQnLCAwKTsNCgkJLy8gc2V0IHRoZSBmaWVsZCB0cmFja2Vycw0KCQkkZmllbGRJZHMgPSBhcnJheSgpOw0KCQkkc29ydElkcyA9IGFycmF5KCk7DQoJCS8vIGNoZWNrIGlmIHdlIGhhdmUgYW4gYWRtaW4gdmlldw0KCQlpZiAoaXNfbnVtZXJpYygkYWRtaW5WaWV3KSAmJiAkYWRtaW5WaWV3ID49IDEpDQoJCXsNCgkJCS8vIGdldCBhbGwgdGhlIGZpZWxkcyBsaW5rZWQgdG8gdGhlIGFkbWluIHZpZXcNCgkJCWlmICgkYWRkRmllbGRzID0gIyMjQ29tcG9uZW50IyMjSGVscGVyOjpnZXRWYXIoJ2FkbWluX2ZpZWxkcycsIChpbnQpICRhZG1pblZpZXcsICdhZG1pbl92aWV3JywgJ2FkZGZpZWxkcycpKQ0KCQkJew0KCQkJCWlmICgjIyNDb21wb25lbnQjIyNIZWxwZXI6OmNoZWNrSnNvbigkYWRkRmllbGRzKSkNCgkJCQl7DQoJCQkJCSRhZGRGaWVsZHMgPSBqc29uX2RlY29kZSgkYWRkRmllbGRzLCB0cnVlKTsNCgkJCQkJaWYgKCMjI0NvbXBvbmVudCMjI0hlbHBlcjo6Y2hlY2tBcnJheSgkYWRkRmllbGRzKSkNCgkJCQkJew0KCQkJCQkJZm9yZWFjaCgkYWRkRmllbGRzIGFzICRhZGRGaWVsZCkNCgkJCQkJCXsNCgkJCQkJCQkvLyBhZG1pbiBsaXN0IHZpZXcgYW5kIG9yZGVyaW5nDQoJCQkJCQkJaWYgKGlzc2V0KCRhZGRGaWVsZFsnZmllbGQnXSkgJiYgaXNzZXQoJGFkZEZpZWxkWydsaXN0J10pICYmICgkYWRkRmllbGRbJ2xpc3QnXSA9PSAxIHx8ICRhZGRGaWVsZFsnbGlzdCddID09IDMpDQoJCQkJCQkJCSYmIGlzc2V0KCRhZGRGaWVsZFsnc29ydCddKSAmJiAkYWRkRmllbGRbJ3NvcnQnXSkNCgkJCQkJCQl7DQoJCQkJCQkJCSRmaWVsZElkc1soaW50KSAkYWRkRmllbGRbJ2ZpZWxkJ11dID0gKGludCkgJGFkZEZpZWxkWydmaWVsZCddOw0KCQkJCQkJCX0NCgkJCQkJCQkvLyBkbyB0cmFjayBhbGwgZmllbGRzIHNldCBhcyBzb3J0ZWQNCgkJCQkJCQlpZiAoaXNzZXQoJGFkZEZpZWxkWydmaWVsZCddKSAmJiBpc3NldCgkYWRkRmllbGRbJ3NvcnQnXSkgJiYgJGFkZEZpZWxkWydzb3J0J10pDQoJCQkJCQkJew0KCQkJCQkJCQkkc29ydElkc1soaW50KSAkYWRkRmllbGRbJ2ZpZWxkJ11dID0gKGludCkgJGFkZEZpZWxkWydmaWVsZCddOw0KCQkJCQkJCX0NCgkJCQkJCX0NCgkJCQkJfQ0KCQkJCX0NCgkJCX0NCgkJCS8vIGdldCBhbGwgdGhlIGZpZWxkcyB0aGF0IGFyZSBhbHNvIGhhdmluZyBhIHJlbGF0aW9uc2hpcCBvbiB0aGUgbGlzdCB2aWV3IGFzIHNvcnRlZA0KCQkJaWYgKCRhZGRGaWVsZHMgPSAjIyNDb21wb25lbnQjIyNIZWxwZXI6OmdldFZhcignYWRtaW5fZmllbGRzX3JlbGF0aW9ucycsIChpbnQpICRhZG1pblZpZXcsICdhZG1pbl92aWV3JywgJ2FkZHJlbGF0aW9ucycpKQ0KCQkJew0KCQkJCWlmICgjIyNDb21wb25lbnQjIyNIZWxwZXI6OmNoZWNrSnNvbigkYWRkRmllbGRzKSkNCgkJCQl7DQoJCQkJCSRhZGRGaWVsZHMgPSBqc29uX2RlY29kZSgkYWRkRmllbGRzLCB0cnVlKTsNCgkJCQkJaWYgKCMjI0NvbXBvbmVudCMjI0hlbHBlcjo6Y2hlY2tBcnJheSgkYWRkRmllbGRzKSkNCgkJCQkJew0KCQkJCQkJZm9yZWFjaCgkYWRkRmllbGRzIGFzICRhZGRGaWVsZCkNCgkJCQkJCXsNCgkJCQkJCQkvLyBhZG1pbiBsaXN0IHZpZXcgYW5kIG9yZGVyaW5nDQoJCQkJCQkJaWYgKGlzc2V0KCRhZGRGaWVsZFsnam9pbmZpZWxkcyddKSAmJiAjIyNDb21wb25lbnQjIyNIZWxwZXI6OmNoZWNrQXJyYXkoJGFkZEZpZWxkWydqb2luZmllbGRzJ10pKQ0KCQkJCQkJCXsNCgkJCQkJCQkJZm9yZWFjaCgkYWRkRmllbGRbJ2pvaW5maWVsZHMnXSBhcyAkam9pbmZpZWxkKQ0KCQkJCQkJCQl7DQoJCQkJCQkJCQlpZiAoaXNzZXQoJHNvcnRJZHNbJGpvaW5maWVsZF0pKQ0KCQkJCQkJCQkJew0KCQkJCQkJCQkJCSRmaWVsZElkc1soaW50KSAkam9pbmZpZWxkXSA9IChpbnQpICRqb2luZmllbGQ7DQoJCQkJCQkJCQl9DQoJCQkJCQkJCX0NCgkJCQkJCQl9DQoJCQkJCQl9DQoJCQkJCX0NCgkJCQl9DQoJCQl9DQoJCQkvLyBmaWx0ZXIgYnkgZmllbGRzIGxpbmtlZA0KCQkJaWYgKCMjI0NvbXBvbmVudCMjI0hlbHBlcjo6Y2hlY2tBcnJheSgkZmllbGRJZHMpKQ0KCQkJew0KCQkJCSRxdWVyeSA9ICRkYi0+Z2V0UXVlcnkodHJ1ZSk7DQoJCQkJJHF1ZXJ5LT5zZWxlY3QoJGRiLT5xdW90ZU5hbWUoYXJyYXkoJ2EuaWQnLCdhLm5hbWUnLCAnYS54bWwnLCAnYi5uYW1lJyksYXJyYXkoJ2lkJywnbmFtZScsICd4bWwnLCAndHlwZScpKSk7DQoJCQkJJHF1ZXJ5LT5mcm9tKCRkYi0+cXVvdGVOYW1lKCcjX18jIyNjb21wb25lbnQjIyNfZmllbGQnLCAnYScpKTsNCgkJCQkkcXVlcnktPmpvaW4oJ0xFRlQnLCAnI19fIyMjY29tcG9uZW50IyMjX2ZpZWxkdHlwZSBBUyBiIE9OIGIuaWQgPSBhLmZpZWxkdHlwZScpOw0KCQkJCSRxdWVyeS0+d2hlcmUoJGRiLT5xdW90ZU5hbWUoJ2EucHVibGlzaGVkJykgLiAnID49IDEnKTsNCgkJCQkvLyBvbmx5IGxvYWQgdGhlc2UgZmllbGRzDQoJCQkJJHF1ZXJ5LT53aGVyZSgkZGItPnF1b3RlTmFtZSgnYS5pZCcpIC4gJyBJTiAoJyAuIGltcGxvZGUoJywnLCAkZmllbGRJZHMpIC4gJyknKTsNCgkJCQkkcXVlcnktPm9yZGVyKCdhLm5hbWUgQVNDJyk7DQoJCQkJJGRiLT5zZXRRdWVyeSgoc3RyaW5nKSRxdWVyeSk7DQoJCQkJJGl0ZW1zID0gJGRiLT5sb2FkT2JqZWN0TGlzdCgpOw0KCQkJCSRvcHRpb25zID0gYXJyYXkoKTsNCgkJCQlpZiAoJGl0ZW1zKQ0KCQkJCXsNCgkJCQkJJG9wdGlvbnNbXSA9IEpIdG1sOjpfKCdzZWxlY3Qub3B0aW9uJywgJycsIEpUZXh0OjpfKCdTZWxlY3QgYW4gb3B0aW9uJykpOw0KCQkJCQkkb3B0aW9uc1tdID0gSkh0bWw6Ol8oJ3NlbGVjdC5vcHRpb24nLCAtMSwgSlRleHQ6Ol8oJ0lkJykuICcgWyBpZCAtIHRleHQgXScpOw0KCQkJCQkkb3B0aW9uc1tdID0gSkh0bWw6Ol8oJ3NlbGVjdC5vcHRpb24nLCAtMiwgSlRleHQ6Ol8oJ09yZGVyaW5nJykuICcgWyBvcmRlcmluZyAtIG51bWJlciBdJyk7DQoJCQkJCSRvcHRpb25zW10gPSBKSHRtbDo6Xygnc2VsZWN0Lm9wdGlvbicsIC0zLCBKVGV4dDo6XygnU3RhdHVzJykuICcgWyBwdWJsaXNoZWQgLSBsaXN0IF0nKTsNCgkJCQkJZm9yZWFjaCgkaXRlbXMgYXMgJGl0ZW0pDQoJCQkJCXsNCgkJCQkJCS8vIGdldCB0aGUgZmllbGQgbmFtZSAoVE9ETyB0aGlzIGNvdWxkIHNsb3cgZG93biB0aGUgc3lzdGVtIHNvIHdlIHdpbGwgbmVlZCB0byBpbXByb3ZlIG9uIHRoaXMpDQoJCQkJCQlpZiAoaXNzZXQoJGl0ZW0tPnhtbCkgJiYgW1tbQ29tcG9uZW50XV1dSGVscGVyOjpjaGVja0pzb24oJGl0ZW0tPnhtbCkpDQoJCQkJCQl7DQoJCQkJCQkJJGZpZWxkX3htbCA9IGpzb25fZGVjb2RlKCRpdGVtLT54bWwpOw0KCQkJCQkJCSRmaWVsZF9uYW1lID0gW1tbQ29tcG9uZW50XV1dSGVscGVyOjpnZXRCZXR3ZWVuKCRmaWVsZF94bWwsJ25hbWU9IicsJyInKTsNCgkJCQkJCQkkZmllbGRfbmFtZSA9IFtbW0NvbXBvbmVudF1dXUhlbHBlcjo6c2FmZUZpZWxkTmFtZSgkZmllbGRfbmFtZSk7DQoJCQkJCQkJJG9wdGlvbnNbXSA9IEpIdG1sOjpfKCdzZWxlY3Qub3B0aW9uJywgJGl0ZW0tPmlkLCAkaXRlbS0+bmFtZSAuICcgWyAnIC4gJGZpZWxkX25hbWUgLiAnIC0gJyAuICRpdGVtLT50eXBlIC4gJyBdJyk7DQoJCQkJCQl9DQoJCQkJCQllbHNlDQoJCQkJCQl7DQoJCQkJCQkJJG9wdGlvbnNbXSA9IEpIdG1sOjpfKCdzZWxlY3Qub3B0aW9uJywgJGl0ZW0tPmlkLCAkaXRlbS0+bmFtZSAuICcgWyBlbXB0eSAtICcgLiAkaXRlbS0+dHlwZSAuICcgXScpOw0KCQkJCQkJfQ0KCQkJCQl9DQoJCQkJfQ0KCQkJCXJldHVybiAkb3B0aW9uczsNCgkJCX0NCgkJfQ0KCQlyZXR1cm4gZmFsc2U7\\\"\\n\\/>\"', 1, '2020-05-19 23:25:24', '2023-10-06 16:04:43', 24, '', 82, '08062429-798e-40c0-ba0d-b0249c9bdf9b', '', '', '', '', ''),
(2748, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'Linked Default Ordering Field', 'NOT NULL', '', 6, '\"<field\\n\\ttype=\\\"linkedviewsorderfields\\\"\\n\\tname=\\\"field\\\"\\n\\tlabel=\\\"Field\\\"\\n\\tclass=\\\"fieldLarge\\\"\\n\\tmultiple=\\\"false\\\"\\n\\textends=\\\"list\\\"\\n\\ttable=\\\"#__###component###_field\\\"\\n\\tcomponent=\\\"com_###component###\\\"\\n\\tview=\\\"field\\\"\\n\\tviews=\\\"fields\\\"\\n\\tvalue_field=\\\"name\\\"\\n\\tkey_field=\\\"id\\\"\\n\\tprime_php=\\\"1\\\"\\n\\ttype_php_1=\\\"__.o0=base64=Oo.__Ly8gbG9hZCB0aGUgZGIgb2JqZWN0DQoJCSRkYiA9IEpGYWN0b3J5OjpnZXREQk8oKTsJCQ0KCQkvLyBnZXQgdGhlIGlucHV0IGZyb20gdXJsDQoJCSRqaW5wdXQgPSBKRmFjdG9yeTo6Z2V0QXBwbGljYXRpb24oKS0+aW5wdXQ7DQoJCS8vIGdldCB0aGUgaWQNCgkJJGFkbWluVmlldyA9ICRqaW5wdXQtPmdldEludCgnaWQnLCAwKTsNCgkJLy8gY2hlY2sgaWYgd2UgaGF2ZSBhbiBhZG1pbiB2aWV3DQoJCWlmIChpc19udW1lcmljKCRhZG1pblZpZXcpICYmICRhZG1pblZpZXcgPj0gMSkNCgkJew0KCQkJLy8gZ2V0IGFsbCB0aGUgZmllbGRzIGxpbmtlZCB0byB0aGUgYWRtaW4gdmlldw0KCQkJaWYgKCRhZGRGaWVsZHMgPSAjIyNDb21wb25lbnQjIyNIZWxwZXI6OmdldFZhcignYWRtaW5fZmllbGRzJywgKGludCkgJGFkbWluVmlldywgJ2FkbWluX3ZpZXcnLCAnYWRkZmllbGRzJykpDQoJCQl7DQoJCQkJaWYgKCMjI0NvbXBvbmVudCMjI0hlbHBlcjo6Y2hlY2tKc29uKCRhZGRGaWVsZHMpKQ0KCQkJCXsNCgkJCQkJJGFkZEZpZWxkcyA9IGpzb25fZGVjb2RlKCRhZGRGaWVsZHMsIHRydWUpOw0KCQkJCQlpZiAoIyMjQ29tcG9uZW50IyMjSGVscGVyOjpjaGVja0FycmF5KCRhZGRGaWVsZHMpKQ0KCQkJCQl7DQoJCQkJCQlmb3JlYWNoKCRhZGRGaWVsZHMgYXMgJGFkZEZpZWxkKQ0KCQkJCQkJew0KCQkJCQkJCS8vIGxpbmtlZCBsaXN0IHZpZXdzIGFuZCBvcmRlcmluZw0KCQkJCQkJCWlmIChpc3NldCgkYWRkRmllbGRbJ2ZpZWxkJ10pICYmIGlzc2V0KCRhZGRGaWVsZFsnbGlzdCddKSAmJiAoJGFkZEZpZWxkWydsaXN0J10gPT0gMSB8fCAkYWRkRmllbGRbJ2xpc3QnXSA9PSA0KQ0KCQkJCQkJCQkmJiBpc3NldCgkYWRkRmllbGRbJ3NvcnQnXSkgJiYgJGFkZEZpZWxkWydzb3J0J10pDQoJCQkJCQkJew0KCQkJCQkJCQkkZmllbGRJZHNbXSA9IChpbnQpICRhZGRGaWVsZFsnZmllbGQnXTsNCgkJCQkJCQl9DQoJCQkJCQl9DQoJCQkJCX0NCgkJCQl9DQoJCQl9DQoJCQkvLyBmaWx0ZXIgYnkgZmllbGRzIGxpbmtlZA0KCQkJaWYgKCMjI0NvbXBvbmVudCMjI0hlbHBlcjo6Y2hlY2tBcnJheSgkZmllbGRJZHMpKQ0KCQkJew0KCQkJCSRxdWVyeSA9ICRkYi0+Z2V0UXVlcnkodHJ1ZSk7DQoJCQkJJHF1ZXJ5LT5zZWxlY3QoJGRiLT5xdW90ZU5hbWUoYXJyYXkoJ2EuaWQnLCdhLm5hbWUnLCAnYS54bWwnLCAnYi5uYW1lJyksYXJyYXkoJ2lkJywnbmFtZScsICd4bWwnLCAndHlwZScpKSk7DQoJCQkJJHF1ZXJ5LT5mcm9tKCRkYi0+cXVvdGVOYW1lKCcjX18jIyNjb21wb25lbnQjIyNfZmllbGQnLCAnYScpKTsNCgkJCQkkcXVlcnktPmpvaW4oJ0xFRlQnLCAnI19fIyMjY29tcG9uZW50IyMjX2ZpZWxkdHlwZSBBUyBiIE9OIGIuaWQgPSBhLmZpZWxkdHlwZScpOw0KCQkJCSRxdWVyeS0+d2hlcmUoJGRiLT5xdW90ZU5hbWUoJ2EucHVibGlzaGVkJykgLiAnID49IDEnKTsNCgkJCQkvLyBvbmx5IGxvYWQgdGhlc2UgZmllbGRzDQoJCQkJJHF1ZXJ5LT53aGVyZSgkZGItPnF1b3RlTmFtZSgnYS5pZCcpIC4gJyBJTiAoJyAuIGltcGxvZGUoJywnLCAkZmllbGRJZHMpIC4gJyknKTsNCgkJCQkkcXVlcnktPm9yZGVyKCdhLm5hbWUgQVNDJyk7DQoJCQkJJGRiLT5zZXRRdWVyeSgoc3RyaW5nKSRxdWVyeSk7DQoJCQkJJGl0ZW1zID0gJGRiLT5sb2FkT2JqZWN0TGlzdCgpOw0KCQkJCSRvcHRpb25zID0gYXJyYXkoKTsNCgkJCQlpZiAoJGl0ZW1zKQ0KCQkJCXsNCgkJCQkJJG9wdGlvbnNbXSA9IEpIdG1sOjpfKCdzZWxlY3Qub3B0aW9uJywgJycsIEpUZXh0OjpfKCdTZWxlY3QgYW4gb3B0aW9uJykpOw0KCQkJCQkkb3B0aW9uc1tdID0gSkh0bWw6Ol8oJ3NlbGVjdC5vcHRpb24nLCAtMSwgSlRleHQ6Ol8oJ0lkJykuICcgWyBpZCAtIHRleHQgXScpOw0KCQkJCQkkb3B0aW9uc1tdID0gSkh0bWw6Ol8oJ3NlbGVjdC5vcHRpb24nLCAtMiwgSlRleHQ6Ol8oJ09yZGVyaW5nJykuICcgWyBvcmRlcmluZyAtIG51bWJlciBdJyk7DQoJCQkJCSRvcHRpb25zW10gPSBKSHRtbDo6Xygnc2VsZWN0Lm9wdGlvbicsIC0zLCBKVGV4dDo6XygnU3RhdHVzJykuICcgWyBwdWJsaXNoZWQgLSBsaXN0IF0nKTsNCgkJCQkJZm9yZWFjaCgkaXRlbXMgYXMgJGl0ZW0pDQoJCQkJCXsNCgkJCQkJCS8vIGdldCB0aGUgZmllbGQgbmFtZSAoVE9ETyB0aGlzIGNvdWxkIHNsb3cgZG93biB0aGUgc3lzdGVtIHNvIHdlIHdpbGwgbmVlZCB0byBpbXByb3ZlIG9uIHRoaXMpDQoJCQkJCQlpZiAoaXNzZXQoJGl0ZW0tPnhtbCkgJiYgW1tbQ29tcG9uZW50XV1dSGVscGVyOjpjaGVja0pzb24oJGl0ZW0tPnhtbCkpDQoJCQkJCQl7DQoJCQkJCQkJJGZpZWxkX3htbCA9IGpzb25fZGVjb2RlKCRpdGVtLT54bWwpOw0KCQkJCQkJCSRmaWVsZF9uYW1lID0gW1tbQ29tcG9uZW50XV1dSGVscGVyOjpnZXRCZXR3ZWVuKCRmaWVsZF94bWwsJ25hbWU9IicsJyInKTsNCgkJCQkJCQkkZmllbGRfbmFtZSA9IFtbW0NvbXBvbmVudF1dXUhlbHBlcjo6c2FmZUZpZWxkTmFtZSgkZmllbGRfbmFtZSk7DQoJCQkJCQkJJG9wdGlvbnNbXSA9IEpIdG1sOjpfKCdzZWxlY3Qub3B0aW9uJywgJGl0ZW0tPmlkLCAkaXRlbS0+bmFtZSAuICcgWyAnIC4gJGZpZWxkX25hbWUgLiAnIC0gJyAuICRpdGVtLT50eXBlIC4gJyBdJyk7DQoJCQkJCQl9DQoJCQkJCQllbHNlDQoJCQkJCQl7DQoJCQkJCQkJJG9wdGlvbnNbXSA9IEpIdG1sOjpfKCdzZWxlY3Qub3B0aW9uJywgJGl0ZW0tPmlkLCAkaXRlbS0+bmFtZSAuICcgWyBlbXB0eSAtICcgLiAkaXRlbS0+dHlwZSAuICcgXScpOw0KCQkJCQkJfQ0KCQkJCQl9DQoJCQkJfQ0KCQkJCXJldHVybiAkb3B0aW9uczsNCgkJCX0NCgkJfQ0KCQlyZXR1cm4gZmFsc2U7\\\"\\n\\/>\"', 1, '2020-05-20 10:36:47', '2023-10-06 16:04:33', 15, '', 82, '802c9291-367b-405b-9c14-9c27cc6116d7', '', '', '', '', ''),
(2749, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'Add Linked List Views Ordering', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"add_linked_ordering\\\"\\n\\tlabel=\\\"Add Linked List Views Ordering\\\"\\n\\tdescription=\\\"Select the ordering behavior, default is by id, and custom lets you select.\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"1|Yes,0|No\\\"\\n\\tdefault=\\\"0\\\"\\n\\/>\"', 1, '2020-05-20 12:38:50', '2020-05-21 00:56:23', 5, '', 981, '4676a9c1-4fe9-41db-b923-26a07a55ad49', '', '', '', '', ''),
(2750, '', '', '', '', '', '', '', '', 64, '', 'CHAR', '', '', '', 'Linked Default Direction', 'NOT NULL', '', 11, '\"<field\\n\\ttype=\\\"list\\\"\\n\\tname=\\\"direction\\\"\\n\\tlabel=\\\"Direction\\\"\\n\\tclass=\\\"list_class fieldLarge\\\"\\n\\tmultiple=\\\"false\\\"\\n\\tfilter=\\\"WORD\\\"\\n\\toption=\\\"asc|Ascending,desc|Descending,rand|Random\\\"\\n\\tdefault=\\\"asc\\\"\\n\\/>\"', 1, '2020-05-20 12:45:39', '2020-05-21 23:45:55', 7, '', 550, '84a11a03-d128-4d76-9b68-5c920c5fee64', '', '', '', '', ''),
(2751, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'Add Admin List View Ordering', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"add_admin_ordering\\\"\\n\\tlabel=\\\"Add Admin List View Ordering\\\"\\n\\tdescription=\\\"Select the ordering behavior, default is by id, and custom lets you select.\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"1|Yes,0|No\\\"\\n\\tdefault=\\\"0\\\"\\n\\/>\"', 1, '2020-05-20 12:48:17', '2020-05-21 00:56:31', 4, '', 981, 'eaff568c-d319-4b86-ada7-656db860128b', '', '', '', '', ''),
(2752, '', '', '', '', '', '', '', '', 64, '', 'CHAR', '', '', '', 'Admin Default Direction', 'NOT NULL', '', 11, '\"<field\\n\\ttype=\\\"list\\\"\\n\\tname=\\\"direction\\\"\\n\\tlabel=\\\"Direction\\\"\\n\\tclass=\\\"list_class fieldLarge\\\"\\n\\tmultiple=\\\"false\\\"\\n\\tfilter=\\\"WORD\\\"\\n\\toption=\\\"asc|Ascending,desc|Descending,rand|Random\\\"\\n\\tdefault=\\\"asc\\\"\\n\\/>\"', 1, '2020-05-20 12:49:49', '2020-05-21 23:45:32', 8, '', 550, '5ea3385f-f11f-4670-84bc-226d2ddc42d7', '', '', '', '', ''),
(2753, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Admin Ordering Fields', 'NOT NULL', '', 35, '\"<field\\n\\ttype=\\\"subform\\\"\\n\\tname=\\\"admin_ordering_fields\\\"\\n\\tlabel=\\\"Admin Ordering Fields\\\"\\n\\tlayout=\\\"joomla.form.field.subform.repeatable-table\\\"\\n\\tmultiple=\\\"true\\\"\\n\\tbuttons=\\\"add,remove,move\\\"\\n\\tfields=\\\"2747,2752\\\"\\n\\ticon=\\\"list\\\"\\n\\tmax=\\\"5\\\"\\n\\tmin=\\\"1\\\"\\n\\tshowon=\\\"add_admin_ordering:1\\\"\\n\\/>\"', 1, '2020-05-21 14:27:33', '2020-05-21 14:29:31', 3, '', 982, 'b29771e4-21ca-4fef-bd84-55fbbbfcc8d5', '', '', '', '', ''),
(2754, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Linked Ordering Fields', 'NOT NULL', '', 35, '\"<field\\n\\ttype=\\\"subform\\\"\\n\\tname=\\\"linked_ordering_fields\\\"\\n\\tlabel=\\\"Linked Ordering Fields\\\"\\n\\tlayout=\\\"joomla.form.field.subform.repeatable-table\\\"\\n\\tmultiple=\\\"true\\\"\\n\\tbuttons=\\\"add,remove,move\\\"\\n\\tfields=\\\"2748,2750\\\"\\n\\ticon=\\\"list\\\"\\n\\tmax=\\\"5\\\"\\n\\tmin=\\\"1\\\"\\n\\tshowon=\\\"add_linked_ordering:1\\\"\\n\\/>\"', 1, '2020-05-21 14:30:13', '2020-05-24 23:33:52', 4, '', 982, 'c1278db2-ff9e-4d5f-b9f7-b3b94ee56391', '', '', '', '', ''),
(2755, '', '', '', '', '', '', 1, '', 1, '', 'TINYINT', '', '', '', 'Product Type', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"type\\\"\\n\\tlabel=\\\"Type\\\"\\n\\tdescription=\\\"Select the product type\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"1|Product,2|Combo\\/Kit\\\"\\n\\tdefault=\\\"1\\\"\\n\\trequired=\\\"true\\\"\\n\\tvalidate=\\\"INT\\\"\\n\\/>\"', 1, '2020-05-29 09:52:02', '2020-05-29 10:05:30', 2, '', 983, '17333355-cd9a-4a8d-bb45-7bfbbe7a60a0', '', '', '', '', ''),
(2756, 1, '', '', '', 'LmZpZWxkTGFyZ2UgeyB3aWR0aDogMzIwcHg7IH0=', '', '', '', 255, '', 'VARCHAR', 2, '', '', 'Products (by code)', 'NOT NULL', '', 6, '\"<field\\n\\ttype=\\\"products\\\"\\n\\tname=\\\"product\\\"\\n\\tlabel=\\\"Product\\\"\\n\\tdescription=\\\"Select a product\\\"\\n\\tclass=\\\"list_class fieldLarge\\\"\\n\\tmultiple=\\\"false\\\"\\n\\tdefault=\\\"0\\\"\\n\\textends=\\\"list\\\"\\n\\tbutton=\\\"true\\\"\\n\\ttable=\\\"#__[[[products]]]_product\\\"\\n\\tcomponent=\\\"com_[[[products]]]\\\"\\n\\tview=\\\"product\\\"\\n\\tviews=\\\"products\\\"\\n\\tvalue_field=\\\"name\\\"\\n\\tkey_field=\\\"code\\\"\\n\\tprime_php=\\\"1\\\"\\n\\ttype_php_1=\\\"__.o0=base64=Oo.__Ly8gR2V0IHRoZSB1c2VyIG9iamVjdC4NCgkJJHVzZXIgPSBKRmFjdG9yeTo6Z2V0VXNlcigpOw0KCQkvLyBHZXQgdGhlIGRhdGFic2Ugb2JqZWN0Lg0KCQkkZGIgPSBKRmFjdG9yeTo6Z2V0REJPKCk7DQoJCSRxdWVyeSA9ICRkYi0+Z2V0UXVlcnkodHJ1ZSk7DQoJCSRxdWVyeS0+c2VsZWN0KCRkYi0+cXVvdGVOYW1lKGFycmF5KCdhLiMjI0lEIyMjJywnYS4jIyNURVhUIyMjJyksYXJyYXkoJyMjI0lEIyMjJywnIyMjQ09ERV9URVhUIyMjJykpKTsNCgkJJHF1ZXJ5LT5mcm9tKCRkYi0+cXVvdGVOYW1lKCcjIyNUQUJMRSMjIycsICdhJykpOw0KCQkkcXVlcnktPndoZXJlKCRkYi0+cXVvdGVOYW1lKCdhLnB1Ymxpc2hlZCcpIC4gJyA+PSAxJyk7DQoJCSRxdWVyeS0+b3JkZXIoJ2EuIyMjSUQjIyMgQVNDJyk7DQoJCSRkYi0+c2V0UXVlcnkoKHN0cmluZykkcXVlcnkpOw0KCQkkaXRlbXMgPSAkZGItPmxvYWRPYmplY3RMaXN0KCk7DQoJCSRvcHRpb25zID0gYXJyYXkoKTsNCgkJaWYgKCRpdGVtcykNCgkJew0KCQkJJG9wdGlvbnNbXSA9IEpIdG1sOjpfKCdzZWxlY3Qub3B0aW9uJywgJycsICdTZWxlY3QgYSBwcm9kdWN0Jyk7DQoJCQlmb3JlYWNoKCRpdGVtcyBhcyAkaXRlbSkNCgkJCXsNCgkJCQkkb3B0aW9uc1tdID0gSkh0bWw6Ol8oJ3NlbGVjdC5vcHRpb24nLCAkaXRlbS0+IyMjSUQjIyMsICRpdGVtLT4jIyNDT0RFX1RFWFQjIyMpOw0KCQkJfQ0KCQl9DQoJCXJldHVybiAkb3B0aW9uczs=\\\"\\n\\/>\"', 1, '2020-05-29 10:00:10', '2020-07-02 20:35:25', 15, '', 984, 'c1029f6f-4103-469b-9aba-97bf24e58f50', '', '', '', '', ''),
(2757, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Combo / Kit components', 'NOT NULL', '', 35, '\"<field\\n\\ttype=\\\"subform\\\"\\n\\tname=\\\"combo\\\"\\n\\tlabel=\\\"Combo \\/ Kit components\\\"\\n\\tlayout=\\\"joomla.form.field.subform.repeatable-table\\\"\\n\\tmultiple=\\\"true\\\"\\n\\tbuttons=\\\"add,remove,move\\\"\\n\\tfields=\\\"2776\\\"\\n\\tdescription=\\\"Setup the combo \\/ kit components\\\"\\n\\ticon=\\\"list\\\"\\n\\tmax=\\\"20\\\"\\n\\tmin=\\\"1\\\"\\n\\tshowon=\\\"type:2\\\"\\n\\/>\"', 1, '2020-05-29 10:03:11', '2020-06-02 12:19:30', 6, '', 985, 'b4eab7cc-a82e-4ebb-ac51-3ef9fc681fb4', '', '', '', '', ''),
(2758, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Makita Products (+Serial)', 'NOT NULL', 6, 35, '\"<field\\n\\ttype=\\\"subform\\\"\\n\\tname=\\\"makita_products\\\"\\n\\tlabel=\\\"Makita Products\\\"\\n\\tlayout=\\\"mymakitarepeatabletable\\\"\\n\\tmultiple=\\\"true\\\"\\n\\tbuttons=\\\"add,remove,move\\\"\\n\\tfields=\\\"2781,2759\\\"\\n\\tdescription=\\\"Add your Products\\\"\\n\\ticon=\\\"list\\\"\\n\\tmax=\\\"200\\\"\\n\\tmin=\\\"1\\\"\\n\\tshowon=\\\"add_makita_products:1\\\"\\n\\/>\"', 1, '2020-05-29 12:44:02', '2020-06-12 02:59:50', 18, '', 985, '01ecaf4e-9307-4a1e-ac36-d9d7fb347d13', 'W1tbQ29tcG9uZW50XV1dSGVscGVyOjpnZXRQcm9kdWN0cyhbW1tmaWVsZF1dXSwgJGl0ZW0sIDEpOw==', 'W1tbQ29tcG9uZW50XV1dSGVscGVyOjpzZXRQcm9kdWN0cyhbW1tmaWVsZF1dXSwgJGRhdGEsIDEpOw==', '', '', ''),
(2759, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Serial number', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"serial\\\"\\n\\tlabel=\\\"Serial number\\\"\\n\\tsize=\\\"150\\\"\\n\\tmaxlength=\\\"250\\\"\\n\\tclass=\\\"fieldLarge\\\"\\n\\tfilter=\\\"CMD\\\"\\n\\tmessage=\\\"Error! Please add a serial number here.\\\"\\n\\thint=\\\"serial number\\\"\\n\\/>\"', 1, '2020-05-29 12:47:52', '2020-06-13 02:42:36', 8, '', 986, '16835ef8-8c32-4a6a-8ac6-65acbbc13586', '', '', '', '', ''),
(2760, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', 2, '', '', 'Name (required - no class)', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"name\\\"\\n\\tlabel=\\\"Name\\\"\\n\\tsize=\\\"50\\\"\\n\\tmaxlength=\\\"150\\\"\\n\\tdescription=\\\"Enter Name Here\\\"\\n\\trequired=\\\"true\\\"\\n\\tfilter=\\\"STRING\\\"\\n\\tmessage=\\\"Error! Please add name here.\\\"\\n\\thint=\\\"Name\\\"\\n\\/>\"', 1, '2020-05-29 12:56:56', '2020-06-24 18:29:17', 7, '', 4, '36d272d1-4749-40b5-ba9b-889bd3fc90b3', '', '', '', '', ''),
(2761, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', 2, '', '', 'Name of school / training center', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"name_of_school_training_center\\\"\\n\\tlabel=\\\"Name of school \\/ training center\\\"\\n\\tsize=\\\"40\\\"\\n\\tmaxlength=\\\"150\\\"\\n\\trequired=\\\"true\\\"\\n\\tfilter=\\\"STRING\\\"\\n\\thint=\\\"Name of school \\/ training center\\\"\\n\\/>\"', 1, '2020-05-29 12:58:25', '2020-07-09 01:02:53', 2, '', 4, 'd5822127-48cb-4644-93be-69f846133ae7', '', '', '', '', ''),
(2762, '', '', '', '', '', '', '', '', 64, '', 'VARCHAR', '', '', '', 'Phone (10 digits, no spaces)', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"phone\\\"\\n\\tlabel=\\\"Phone (10 digits, no spaces)\\\"\\n\\tsize=\\\"50\\\"\\n\\tmaxlength=\\\"150\\\"\\n\\tdescription=\\\"Enter your phone number here\\\"\\n\\trequired=\\\"true\\\"\\n\\tfilter=\\\"ALNUM\\\"\\n\\tvalidate=\\\"makitatel\\\"\\n\\tmessage=\\\"Error! Please add valid phone number here.\\\"\\n\\thint=\\\"Phone Number\\\"\\n\\/>\"', 1, '2020-05-29 13:16:43', '2020-06-30 00:00:35', 8, '', 47, '48155aa0-f8d1-41f5-b77a-27ef7d3906b4', '', '', '', '', ''),
(2763, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Suburb', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"suburb\\\"\\n\\tlabel=\\\"Suburb\\\"\\n\\tsize=\\\"50\\\"\\n\\tmaxlength=\\\"150\\\"\\n\\tdescription=\\\"Please add the suburb here\\\"\\n\\tfilter=\\\"STRING\\\"\\n\\tmessage=\\\"Error! Please add suburb here.\\\"\\n\\thint=\\\"suburb\\\"\\n\\trequired=\\\"true\\\"\\n\\/>\"', 1, '2020-05-29 13:20:31', '2020-06-28 01:38:50', 4, '', 647, '5aac8ff9-178a-407b-b073-0d2ee65a8303', '', '', '', '', ''),
(2764, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'State (contactdetails)', 'NOT NULL', '', 6, '\"<field\\n\\ttype=\\\"regions\\\"\\n\\tname=\\\"region\\\"\\n\\tlabel=\\\"State\\\"\\n\\tdescription=\\\"Please select the state.\\\"\\n\\tclass=\\\"list_class\\\"\\n\\tmultiple=\\\"false\\\"\\n\\trequired=\\\"true\\\"\\n\\textends=\\\"list\\\"\\n\\tbutton=\\\"true\\\"\\n\\ttable=\\\"#__[[[contactdetails]]]_region\\\"\\n\\tcomponent=\\\"[[[com_contactdetails]]]\\\"\\n\\tview=\\\"region\\\"\\n\\tviews=\\\"regions\\\"\\n\\tvalue_field=\\\"name\\\"\\n\\tkey_field=\\\"id\\\"\\n\\ttype_php_1=\\\"__.o0=base64=Oo.__Ly8gR2V0IHRoZSB1c2VyIG9iamVjdC4NCgkJJHVzZXIgPSBKRmFjdG9yeTo6Z2V0VXNlcigpOw0KCQkvLyBHZXQgdGhlIGRhdGFic2Ugb2JqZWN0Lg0KCQkkZGIgPSBKRmFjdG9yeTo6Z2V0REJPKCk7DQoJCSRxdWVyeSA9ICRkYi0+Z2V0UXVlcnkodHJ1ZSk7DQoJCSRxdWVyeS0+c2VsZWN0KCRkYi0+cXVvdGVOYW1lKGFycmF5KCdhLiMjI0lEIyMjJywnYS4jIyNURVhUIyMjJywnYi5jb2RldHdvJyksYXJyYXkoJyMjI0lEIyMjJywnIyMjQ09ERV9URVhUIyMjJywgJ2NvdW50cnknKSkpOw0KCQkkcXVlcnktPmZyb20oJGRiLT5xdW90ZU5hbWUoJyMjI1RBQkxFIyMjJywgJ2EnKSk7DQoJCSRxdWVyeS0+am9pbignTEVGVCcsICcjX19bW1tjb250YWN0ZGV0YWlsc11dXV9jb3VudHJ5IEFTIGIgT04gYi5pZCA9IGEuY291bnRyeScpOw0KCQkkcXVlcnktPndoZXJlKCRkYi0+cXVvdGVOYW1lKCdhLnB1Ymxpc2hlZCcpIC4gJyA9IDEnKTsNCgkJJHF1ZXJ5LT5vcmRlcignYS4jIyNURVhUIyMjIEFTQycpOw0KCQkkZGItPnNldFF1ZXJ5KChzdHJpbmcpJHF1ZXJ5KTsNCgkJJGl0ZW1zID0gJGRiLT5sb2FkT2JqZWN0TGlzdCgpOw0KCQkkb3B0aW9ucyA9IGFycmF5KCk7DQoJCWlmICgkaXRlbXMpDQoJCXsNCgkJCSRvcHRpb25zW10gPSBKSHRtbDo6Xygnc2VsZWN0Lm9wdGlvbicsICcnLCAnU2VsZWN0Li4uJyk7DQoJCQlmb3JlYWNoKCRpdGVtcyBhcyAkaXRlbSkNCgkJCXsNCgkJCQkkb3B0aW9uc1tdID0gSkh0bWw6Ol8oJ3NlbGVjdC5vcHRpb24nLCAkaXRlbS0+IyMjSUQjIyMsICRpdGVtLT4jIyNDT0RFX1RFWFQjIyMpOw0KCQkJfQ0KCQl9DQoJCXJldHVybiAkb3B0aW9uczs=\\\"\\n\\/>\"', 1, '2020-05-29 13:32:54', '2020-06-28 01:29:48', 8, '', 667, 'b8bf4b8d-227a-4c4a-acd4-3cd63f420253', '', '', '', '', ''),
(2765, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'Occupation (contactdetails)', 'NOT NULL', '', 6, '\"<field\\n\\ttype=\\\"occupations\\\"\\n\\tname=\\\"occupation\\\"\\n\\tlabel=\\\"Occupation\\\"\\n\\tdescription=\\\"Please select an occupation.\\\"\\n\\tclass=\\\"list_class\\\"\\n\\tmultiple=\\\"false\\\"\\n\\textends=\\\"list\\\"\\n\\trequired=\\\"true\\\"\\n\\tbutton=\\\"true\\\"\\n\\ttable=\\\"#__[[[contactdetails]]]_occupation\\\"\\n\\tcomponent=\\\"[[[com_contactdetails]]]\\\"\\n\\tview=\\\"occupation\\\"\\n\\tviews=\\\"occupations\\\"\\n\\tvalue_field=\\\"name\\\"\\n\\tkey_field=\\\"id\\\"\\n\\tprime_php=\\\"1\\\"\\n\\ttype_php_1=\\\"__.o0=base64=Oo.__Ly8gR2V0IHRoZSB1c2VyIG9iamVjdC4NCgkJJHVzZXIgPSBKRmFjdG9yeTo6Z2V0VXNlcigpOw0KCQkvLyBHZXQgdGhlIGRhdGFic2Ugb2JqZWN0Lg0KCQkkZGIgPSBKRmFjdG9yeTo6Z2V0REJPKCk7DQoJCSRxdWVyeSA9ICRkYi0+Z2V0UXVlcnkodHJ1ZSk7DQoJCSRxdWVyeS0+c2VsZWN0KCRkYi0+cXVvdGVOYW1lKGFycmF5KCdhLiMjI0lEIyMjJywnYS4jIyNURVhUIyMjJyksYXJyYXkoJyMjI0lEIyMjJywnIyMjQ09ERV9URVhUIyMjJykpKTsNCgkJJHF1ZXJ5LT5mcm9tKCRkYi0+cXVvdGVOYW1lKCcjIyNUQUJMRSMjIycsICdhJykpOw0KCQkkcXVlcnktPndoZXJlKCRkYi0+cXVvdGVOYW1lKCdhLnB1Ymxpc2hlZCcpIC4gJyA9IDEnKTsNCgkJJHF1ZXJ5LT5vcmRlcignYS4jIyNURVhUIyMjIEFTQycpOw0KCQkkZGItPnNldFF1ZXJ5KChzdHJpbmcpJHF1ZXJ5KTsNCgkJJGl0ZW1zID0gJGRiLT5sb2FkT2JqZWN0TGlzdCgpOw0KCQkkb3B0aW9ucyA9IGFycmF5KCk7DQoJCWlmICgkaXRlbXMpDQoJCXsNCgkJCSRvcHRpb25zW10gPSBKSHRtbDo6Xygnc2VsZWN0Lm9wdGlvbicsICcnLCAnU2VsZWN04oCmJyk7DQoJCQlmb3JlYWNoKCRpdGVtcyBhcyAkaXRlbSkNCgkJCXsNCgkJCQkkb3B0aW9uc1tdID0gSkh0bWw6Ol8oJ3NlbGVjdC5vcHRpb24nLCAkaXRlbS0+IyMjSUQjIyMsICRpdGVtLT4jIyNDT0RFX1RFWFQjIyMpOw0KCQkJfQ0KCQkJJG9wdGlvbnNbXSA9IEpIdG1sOjpfKCdzZWxlY3Qub3B0aW9uJywgMCwgSlRleHQ6Ol8oJ090aGVyJykpOw0KCQl9DQoJCXJldHVybiAkb3B0aW9uczs=\\\"\\n\\/>\"', 1, '2020-05-29 15:48:22', '2020-06-28 01:40:04', 6, '', 667, 'c551aa2b-3c76-4864-904f-0218e733eeaa', '', '', '', '', ''),
(2766, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', 2, '', '', 'Invoice Number', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"invoice_number\\\"\\n\\tlabel=\\\"Enter your invoice number\\\"\\n\\tsize=\\\"50\\\"\\n\\tmaxlength=\\\"150\\\"\\n\\tdescription=\\\"Enter some invoice number\\\"\\n\\trequired=\\\"true\\\"\\n\\tfilter=\\\"STRING\\\"\\n\\tmessage=\\\"Error! Please add some Iinvoice number here.\\\"\\n\\thint=\\\"Invoice Number\\\"\\n\\/>\"', 1, '2020-05-29 16:05:08', '2020-06-16 17:33:59', 8, '', 987, 'c910e609-f6b6-494c-a2d8-31a49a90696f', '', '', '', '', ''),
(2767, '', '', 1, '', '', '', '', '', 11, '', 'INT', 2, 'alF1ZXJ5KCIjamZvcm1faW52b2ljZV9kYXRlIikucHJvcCgicmVhZG9ubHkiLCB0cnVlKTs=', '', 'Invoice Date (%d/%m/%Y)', 'NOT NULL', 6, 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"invoice_date\\\"\\n\\tlabel=\\\"Invoice Date\\\"\\n\\tsize=\\\"50\\\"\\n\\tmaxlength=\\\"150\\\"\\n\\tdescription=\\\"Enter your invoice date\\\"\\n\\trequired=\\\"true\\\"\\n\\tfilter=\\\"STRING\\\"\\n\\tvalidate=\\\"onlypastdate\\\"\\n\\tmessage=\\\"Error! Please enter the correct invoice date. No future dates allowed.\\\"\\n\\/>\"', 1, '2020-05-29 16:14:53', '2020-07-08 01:07:12', 35, '', 167, '56bc9318-04c8-4e8b-9651-9aa532539160', 'Ly8gbWFrZSBzdXJlIHdlIGFyZSBpbiBBdXN0cmFsaWENCmRhdGVfZGVmYXVsdF90aW1lem9uZV9zZXQoJ0F1c3RyYWxpYS9TeWRuZXknKTsNCi8vIGNvbnZlcnQgdGhlIHRpbWUgc3RhbXAgYmFjayB0byBhIGRhdGEgc3RyaW5nDQpbW1tmaWVsZF1dXSA9IFtbW2ZpZWxkXV1dICsgMDsNCmlmIChbW1tmaWVsZF1dXSA+IDAgJiYgaXNfaW50KFtbW2ZpZWxkXV1dKSkNCnsNCglbW1tmaWVsZF1dXSA9IFtbW0NvbXBvbmVudF1dXUhlbHBlcjo6c2V0RGF5TW9udGhZZWFyKFtbW2ZpZWxkXV1dKTsNCn0NCmVsc2UNCnsNCglbW1tmaWVsZF1dXSAgPSAnJzsNCn0=', 'Ly8gbWFrZSBzdXJlIHdlIGFyZSBpbiBBdXN0cmFsaWENCmRhdGVfZGVmYXVsdF90aW1lem9uZV9zZXQoJ0F1c3RyYWxpYS9TeWRuZXknKTsNCi8vIGNoZWNrIHRoZSBkYXRlDQppZiAoW1tbQ29tcG9uZW50XV1dSGVscGVyOjppc1ZhbGlkYXRlRGF0ZShbW1tmaWVsZF1dXSwgJ2QvbS9ZJykpDQp7DQoJW1tbZmllbGRdXV0gPSBzdHJ0b3RpbWUoaW1wbG9kZSgnLScsIGV4cGxvZGUoJy8nLCBbW1tmaWVsZF1dXSkpKTsNCgkvLyB3ZSBjaGVjayB0aGF0IHRoaXMgZGF0ZSBpcyBub3QgaW4gdGhlIGZ1dHVyZQ0KCWlmIChbW1tmaWVsZF1dXSA+IHRpbWUoKSkNCgl7DQoJCVtbW2ZpZWxkXV1dICA9IDA7DQoJfQ0KfQ0KZWxzZQ0Kew0KCVtbW2ZpZWxkXV1dICA9IDA7DQp9', '', '', ''),
(2768, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Category (default - multi)', 'NOT NULL', 1, 2, '\"<field\\n\\ttype=\\\"category\\\"\\n\\tname=\\\"catid\\\"\\n\\tlabel=\\\"Category\\\"\\n\\textension=\\\"com_componentbuilder.field\\\"\\n\\trequired=\\\"false\\\"\\n\\tdescription=\\\"select one of the following categories\\\"\\n\\tclass=\\\"inputbox\\\"\\n\\tmultiple=\\\"true\\\"\\n\\/>\"', 1, '2020-05-31 00:32:41', '2020-05-31 00:31:09', 1, '', 677, '3dbc2e9a-0bf5-452a-bf19-0128b11e1739', '', '', '', '', ''),
(2769, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'Category (default)', 'NOT NULL', '', 2, '\"<field\\n\\ttype=\\\"category\\\"\\n\\tname=\\\"catid\\\"\\n\\tlabel=\\\"Category\\\"\\n\\textension=\\\"com_componentbuilder.field\\\"\\n\\tdescription=\\\"select one of the following categories\\\"\\n\\tclass=\\\"inputbox\\\"\\n\\tmultiple=\\\"false\\\"\\n\\/>\"', 1, '2020-05-31 00:33:26', '2020-05-31 00:31:09', 1, '', 677, '0545b3fe-ddaa-4a94-9250-47ede5b92776', '', '', '', '', ''),
(2770, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'Country (contactdetails)', 'NOT NULL', '', 6, '\"<field\\n\\ttype=\\\"countries\\\"\\n\\tname=\\\"country\\\"\\n\\tlabel=\\\"Country\\\"\\n\\tclass=\\\"list_class\\\"\\n\\tmultiple=\\\"false\\\"\\n\\tdefault=\\\"0\\\"\\n\\trequired=\\\"true\\\"\\n\\textends=\\\"list\\\"\\n\\tbutton=\\\"false\\\"\\n\\ttable=\\\"#__[[[contactdetails]]]_country\\\"\\n\\tcomponent=\\\"com_[[[contactdetails]]]\\\"\\n\\tview=\\\"country\\\"\\n\\tviews=\\\"countries\\\"\\n\\tvalue_field=\\\"name\\\"\\n\\tkey_field=\\\"id\\\"\\n\\ttype_php_1=\\\"__.o0=base64=Oo.__Ly8gR2V0IHRoZSB1c2VyIG9iamVjdC4NCgkJJHVzZXIgPSBKRmFjdG9yeTo6Z2V0VXNlcigpOw0KCQkvLyBHZXQgdGhlIGRhdGFic2Ugb2JqZWN0Lg0KCQkkZGIgPSBKRmFjdG9yeTo6Z2V0REJPKCk7DQoJCSRxdWVyeSA9ICRkYi0+Z2V0UXVlcnkodHJ1ZSk7DQoJCSRxdWVyeS0+c2VsZWN0KCRkYi0+cXVvdGVOYW1lKGFycmF5KCdhLiMjI0lEIyMjJywnYS4jIyNURVhUIyMjJyksYXJyYXkoJyMjI0lEIyMjJywnIyMjQ09ERV9URVhUIyMjJykpKTsNCgkJJHF1ZXJ5LT5mcm9tKCRkYi0+cXVvdGVOYW1lKCcjIyNUQUJMRSMjIycsICdhJykpOw0KCQkkcXVlcnktPndoZXJlKCRkYi0+cXVvdGVOYW1lKCdhLnB1Ymxpc2hlZCcpIC4gJyA9IDEnKTsNCgkJJHF1ZXJ5LT5vcmRlcignYS4jIyNURVhUIyMjIEFTQycpOw0KCQkkZGItPnNldFF1ZXJ5KChzdHJpbmcpJHF1ZXJ5KTsNCgkJJGl0ZW1zID0gJGRiLT5sb2FkT2JqZWN0TGlzdCgpOw0KCQkkb3B0aW9ucyA9IGFycmF5KCk7DQoJCWlmICgkaXRlbXMpDQoJCXsNCgkJCSRvcHRpb25zW10gPSBKSHRtbDo6Xygnc2VsZWN0Lm9wdGlvbicsICcnLCAnU2VsZWN0IGEgY291bnRyeScpOw0KCQkJZm9yZWFjaCgkaXRlbXMgYXMgJGl0ZW0pDQoJCQl7DQoJCQkJJG9wdGlvbnNbXSA9IEpIdG1sOjpfKCdzZWxlY3Qub3B0aW9uJywgJGl0ZW0tPiMjI0lEIyMjLCAkaXRlbS0+IyMjQ09ERV9URVhUIyMjKTsNCgkJCX0NCgkJfQ0KCQlyZXR1cm4gJG9wdGlvbnM7\\\"\\n\\/>\"', 1, '2020-05-31 01:16:19', '2020-07-09 04:03:59', 9, '', 242, '9373cd6a-354e-45f0-b996-706945667adf', '', '', '', '', ''),
(2771, 1, '', '', '', 'LmZpZWxkTGFyZ2UgeyB3aWR0aDogMzIwcHg7IH0=', '', '', '', 'Other', 36, 'VARCHAR', 2, '', '', 'My Products (form)', 'NOT NULL', '', 6, '\"<field\\n\\ttype=\\\"myproducts\\\"\\n\\tname=\\\"form\\\"\\n\\tlabel=\\\"My Products GUID\\\"\\n\\tdescription=\\\"The my products GUID\\\"\\n\\tclass=\\\"list_class fieldLarge\\\"\\n\\tmultiple=\\\"false\\\"\\n\\trequired=\\\"true\\\"\\n\\textends=\\\"list\\\"\\n\\ttable=\\\"#__[[[products]]]_form\\\"\\n\\tcomponent=\\\"com_[[[products]]]\\\"\\n\\tview=\\\"form\\\"\\n\\tviews=\\\"forms\\\"\\n\\tvalue_field=\\\"guid\\\"\\n\\tkey_field=\\\"guid\\\"\\n\\tprime_php=\\\"1\\\"\\n\\ttype_php_1=\\\"__.o0=base64=Oo.__Ly8gR2V0IHRoZSB1c2VyIG9iamVjdC4NCgkJJHVzZXIgPSBKRmFjdG9yeTo6Z2V0VXNlcigpOw0KCQkvLyBHZXQgdGhlIGRhdGFic2Ugb2JqZWN0Lg0KCQkkZGIgPSBKRmFjdG9yeTo6Z2V0REJPKCk7DQoJCSRxdWVyeSA9ICRkYi0+Z2V0UXVlcnkodHJ1ZSk7DQoJCSRxdWVyeS0+c2VsZWN0KCRkYi0+cXVvdGVOYW1lKGFycmF5KCdhLiMjI0lEIyMjJywnYS4jIyNURVhUIyMjJyksYXJyYXkoJyMjI0lEIyMjJywnIyMjQ09ERV9URVhUIyMjJykpKTsNCgkJJHF1ZXJ5LT5mcm9tKCRkYi0+cXVvdGVOYW1lKCcjIyNUQUJMRSMjIycsICdhJykpOw0KCQkkcXVlcnktPndoZXJlKCRkYi0+cXVvdGVOYW1lKCdhLnB1Ymxpc2hlZCcpIC4gJyA+PSAxJyk7DQoJCSRxdWVyeS0+b3JkZXIoJ2EuIyMjSUQjIyMgQVNDJyk7DQoJCS8vIEltcGxlbWVudCBWaWV3IExldmVsIEFjY2VzcyAoaWYgc2V0IGluIHRhYmxlKQ0KCQlpZiAoISR1c2VyLT5hdXRob3Jpc2UoJ2NvcmUub3B0aW9ucycsICdjb21fW1tbcHJvZHVjdHNdXV0nKSkNCgkJew0KCQkJJGNvbHVtbnMgPSAkZGItPmdldFRhYmxlQ29sdW1ucygnIyMjVEFCTEUjIyMnKTsNCgkJCWlmKGlzc2V0KCRjb2x1bW5zWydhY2Nlc3MnXSkpDQoJCQl7DQoJCQkJJGdyb3VwcyA9IGltcGxvZGUoJywnLCAkdXNlci0+Z2V0QXV0aG9yaXNlZFZpZXdMZXZlbHMoKSk7DQoJCQkJJHF1ZXJ5LT53aGVyZSgnYS5hY2Nlc3MgSU4gKCcgLiAkZ3JvdXBzIC4gJyknKTsNCgkJCX0NCgkJfQ0KCQkkZGItPnNldFF1ZXJ5KChzdHJpbmcpJHF1ZXJ5KTsNCgkJJGl0ZW1zID0gJGRiLT5sb2FkT2JqZWN0TGlzdCgpOw0KCQkkb3B0aW9ucyA9IGFycmF5KCk7DQoJCWlmICgkaXRlbXMpDQoJCXsNCgkJCSRvcHRpb25zW10gPSBKSHRtbDo6Xygnc2VsZWN0Lm9wdGlvbicsICcnLCAnU2VsZWN0IGEgR1VJRCcpOw0KCQkJZm9yZWFjaCgkaXRlbXMgYXMgJGl0ZW0pDQoJCQl7DQoJCQkJJG9wdGlvbnNbXSA9IEpIdG1sOjpfKCdzZWxlY3Qub3B0aW9uJywgJGl0ZW0tPiMjI0lEIyMjLCAkaXRlbS0+IyMjQ09ERV9URVhUIyMjKTsNCgkJCX0NCgkJfQ0KCQlyZXR1cm4gJG9wdGlvbnM7\\\"\\n\\/>\"', 1, '2020-06-01 20:00:15', '2020-07-02 00:11:45', 8, '', 984, '2f10d3c0-0ed3-4c79-9690-4c68a10982b4', '', '', '', '', ''),
(2772, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Other Brands (+Serial)', 'NOT NULL', 6, 35, '\"<field\\n\\ttype=\\\"subform\\\"\\n\\tname=\\\"other_products\\\"\\n\\tlabel=\\\"Other Brands\\\"\\n\\tlayout=\\\"mymakitarepeatabletable\\\"\\n\\tmultiple=\\\"true\\\"\\n\\tbuttons=\\\"add,remove,move\\\"\\n\\tfields=\\\"2775,2783,2759\\\"\\n\\tdescription=\\\"Add your other brands\\\"\\n\\ticon=\\\"list\\\"\\n\\tmax=\\\"200\\\"\\n\\tmin=\\\"1\\\"\\n\\tshowon=\\\"add_other_products:1\\\"\\n\\/>\"', 1, '2020-06-01 23:23:51', '2020-06-18 02:26:07', 15, '', 985, '94367c2d-8958-419c-a580-dce050bb598c', 'W1tbQ29tcG9uZW50XV1dSGVscGVyOjpnZXRQcm9kdWN0cyhbW1tmaWVsZF1dXSwgJGl0ZW0sIDIpOw==', 'W1tbQ29tcG9uZW50XV1dSGVscGVyOjpzZXRQcm9kdWN0cyhbW1tmaWVsZF1dXSwgJGRhdGEsIDIpOw==', '', '', ''),
(2773, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Add Makita Products', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"add_makita_products\\\"\\n\\tlabel=\\\"Add Makita Products\\\"\\n\\toption=\\\"1|Yes,0|No\\\"\\n\\tdefault=\\\"1\\\"\\n\\trequired=\\\"true\\\"\\n\\/>\"', 1, '2020-06-01 23:30:36', '2020-06-12 03:52:17', 4, '', 988, '1870327c-2fb9-48af-875b-f574cecb2fbd', '', '', '', '', ''),
(2774, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Add Other Brands', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"add_other_products\\\"\\n\\tlabel=\\\"Add Other Brands\\\"\\n\\toption=\\\"1|Yes,0|No\\\"\\n\\tdefault=\\\"0\\\"\\n\\trequired=\\\"true\\\"\\n\\/>\"', 1, '2020-06-01 23:31:14', '2020-06-18 02:25:02', 5, '', 988, '8386d26a-63eb-49fb-bffe-16096d48343a', '', '', '', '', ''),
(2775, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', 2, '', '', 'Brand', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"name\\\"\\n\\tlabel=\\\"Brand\\\"\\n\\tsize=\\\"40\\\"\\n\\tmaxlength=\\\"150\\\"\\n\\tfilter=\\\"STRING\\\"\\n\\tmessage=\\\"Error! Please add brand name here.\\\"\\n\\thint=\\\"Brand Name\\\"\\n\\/>\"', 1, '2020-06-01 23:45:41', '2020-06-13 02:41:19', 9, '', 4, 'da942aa4-adff-4e97-b956-2f36421a3436', '', '', '', '', ''),
(2776, 1, '', '', '', 'LmZpZWxkTGFyZ2UgeyB3aWR0aDogMzIwcHg7IH0=', '', '', '', 255, '', 'VARCHAR', 2, '', '', 'Products (by code) no-combo', 'NOT NULL', '', 6, '\"<field\\n\\ttype=\\\"productsnocombo\\\"\\n\\tname=\\\"product\\\"\\n\\tlabel=\\\"Product\\\"\\n\\tdescription=\\\"Select a product\\\"\\n\\tclass=\\\"list_class fieldLarge\\\"\\n\\tmultiple=\\\"false\\\"\\n\\tdefault=\\\"0\\\"\\n\\textends=\\\"list\\\"\\n\\tbutton=\\\"true\\\"\\n\\ttable=\\\"#__###component###_product\\\"\\n\\tcomponent=\\\"com_###component###\\\"\\n\\tview=\\\"product\\\"\\n\\tviews=\\\"products\\\"\\n\\tvalue_field=\\\"name\\\"\\n\\tkey_field=\\\"code\\\"\\n\\tprime_php=\\\"1\\\"\\n\\ttype_php_1=\\\"__.o0=base64=Oo.__Ly8gR2V0IHRoZSB1c2VyIG9iamVjdC4NCgkJJHVzZXIgPSBKRmFjdG9yeTo6Z2V0VXNlcigpOw0KCQkvLyBHZXQgdGhlIGRhdGFic2Ugb2JqZWN0Lg0KCQkkZGIgPSBKRmFjdG9yeTo6Z2V0REJPKCk7DQoJCSRxdWVyeSA9ICRkYi0+Z2V0UXVlcnkodHJ1ZSk7DQoJCSRxdWVyeS0+c2VsZWN0KCRkYi0+cXVvdGVOYW1lKGFycmF5KCdhLiMjI0lEIyMjJywnYS4jIyNURVhUIyMjJywnYS50eXBlJyksYXJyYXkoJyMjI0lEIyMjJywnIyMjQ09ERV9URVhUIyMjJywgJ3R5cGUnKSkpOw0KCQkkcXVlcnktPmZyb20oJGRiLT5xdW90ZU5hbWUoJyMjI1RBQkxFIyMjJywgJ2EnKSk7DQoJCSRxdWVyeS0+d2hlcmUoJGRiLT5xdW90ZU5hbWUoJ2EucHVibGlzaGVkJykgLiAnID49IDEnKTsNCgkJJHF1ZXJ5LT5vcmRlcignYS4jIyNJRCMjIyBBU0MnKTsNCgkJJGRiLT5zZXRRdWVyeSgoc3RyaW5nKSRxdWVyeSk7DQoJCSRpdGVtcyA9ICRkYi0+bG9hZE9iamVjdExpc3QoKTsNCgkJJG9wdGlvbnMgPSBhcnJheSgpOw0KCQlpZiAoJGl0ZW1zKQ0KCQl7DQoJCQkkb3B0aW9uc1tdID0gSkh0bWw6Ol8oJ3NlbGVjdC5vcHRpb24nLCAnJywgJ1NlbGVjdCBhIHByb2R1Y3QnKTsNCgkJCWZvcmVhY2goJGl0ZW1zIGFzICRpdGVtKQ0KCQkJew0KCQkJCS8vIG1ha2Ugc3VyZSBubyBjb21ibyBsb2FkZWQNCgkJCQlpZiAoJGl0ZW0tPnR5cGUgIT0gMikgDQoJCQkJew0KCQkJCQkkb3B0aW9uc1tdID0gSkh0bWw6Ol8oJ3NlbGVjdC5vcHRpb24nLCAkaXRlbS0+IyMjSUQjIyMsICRpdGVtLT4jIyNDT0RFX1RFWFQjIyMpOw0KCQkJCX0NCgkJCX0NCgkJfQ0KCQlyZXR1cm4gJG9wdGlvbnM7\\\"\\n\\/>\"', 1, '2020-06-02 11:23:00', '2020-06-11 15:22:39', 4, '', 984, 'a0299e36-a726-4318-af01-c7d4520e4e3b', '', '', '', '', ''),
(2777, '', '', '', '', '', '', '', '', 64, '', 'CHAR', 2, '', '', 'Other Occupation', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"occupation_other\\\"\\n\\tlabel=\\\"Other Occupation\\\"\\n\\tsize=\\\"10\\\"\\n\\tmaxlength=\\\"50\\\"\\n\\tdescription=\\\"The other occupation\\\"\\n\\tfilter=\\\"STRING\\\"\\n\\tmessage=\\\"Error! Please add other occupation here.\\\"\\n\\thint=\\\"Other Occupation\\\"\\n\\tshowon=\\\"occupation:0\\\"\\n\\/>\"', 1, '2020-06-02 12:41:06', '2020-06-30 05:14:20', 6, '', 125, 'ef7ad20c-aa5d-461b-94fb-e195c6ee1ddc', '', '', '', '', ''),
(2778, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Makita or Other', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"brand\\\"\\n\\tlabel=\\\"Brand\\\"\\n\\tdescription=\\\"Select the product brand\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"1|Makita,2|Other\\\"\\n\\tdefault=\\\"1\\\"\\n\\trequired=\\\"true\\\"\\n\\/>\"', 1, '2020-06-02 22:30:41', '2020-06-02 22:31:02', 2, '', 989, 'cc6d2a3d-9d25-467f-9860-da1bc9e80b3b', '', '', '', '', ''),
(2779, '', '', '', '', '', '', '', '', 7, '', 'INT', 2, '', '', 'Base Warranty', 'NOT NULL', '', 11, '\"<field\\n\\ttype=\\\"list\\\"\\n\\tname=\\\"warranty\\\"\\n\\tlabel=\\\"Base Warranty\\\"\\n\\tclass=\\\"list_class\\\"\\n\\tmultiple=\\\"false\\\"\\n\\toption=\\\"0|None,1|1 Year,2|2 Years,3|3 Years\\\"\\n\\tdefault=\\\"0\\\"\\n\\/>\"', 1, '2020-06-03 20:09:34', '2020-06-12 00:31:54', 2, '', 990, '5d66d2b9-4733-45e0-99c4-2cac9beeb442', '', '', '', '', ''),
(2780, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'Extended Warranty', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"extended\\\"\\n\\tlabel=\\\"Extended Warranty\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"1|Yes,0|No\\\"\\n\\tdefault=\\\"0\\\"\\n\\/>\"', 1, '2020-06-03 20:11:39', '2020-06-03 20:10:25', 1, '', 990, '3b2670e6-1139-4ffa-a4f9-c66f85dc9546', '', '', '', '', ''),
(2781, 1, '', '', '', 'LmZpZWxkTGFyZ2UgeyB3aWR0aDogMzIwcHg7IH0=', '', '', '', 255, '', 'VARCHAR', 2, '', '', 'Products (by code) CHECK', 'NOT NULL', '', 6, '\"<field\\n\\ttype=\\\"activeproducts\\\"\\n\\tname=\\\"product\\\"\\n\\tlabel=\\\"Product\\\"\\n\\tdescription=\\\"Select a product\\\"\\n\\tclass=\\\"list_class fieldLarge\\\"\\n\\tmultiple=\\\"false\\\"\\n\\tdefault=\\\"0\\\"\\n\\tonchange=\\\"checkComboField(this)\\\"\\n\\textends=\\\"list\\\"\\n\\tbutton=\\\"true\\\"\\n\\ttable=\\\"#__###component###_product\\\"\\n\\tcomponent=\\\"com_###component###\\\"\\n\\tview=\\\"product\\\"\\n\\tviews=\\\"products\\\"\\n\\tvalue_field=\\\"name\\\"\\n\\tkey_field=\\\"code\\\"\\n\\tprime_php=\\\"1\\\"\\n\\ttype_php_1=\\\"__.o0=base64=Oo.__Ly8gR2V0IHRoZSB1c2VyIG9iamVjdC4NCgkJJHVzZXIgPSBKRmFjdG9yeTo6Z2V0VXNlcigpOw0KCQkvLyBHZXQgdGhlIGRhdGFic2Ugb2JqZWN0Lg0KCQkkZGIgPSBKRmFjdG9yeTo6Z2V0REJPKCk7DQoJCSRxdWVyeSA9ICRkYi0+Z2V0UXVlcnkodHJ1ZSk7DQoJCSRxdWVyeS0+c2VsZWN0KCRkYi0+cXVvdGVOYW1lKGFycmF5KCdhLiMjI0lEIyMjJywnYS4jIyNURVhUIyMjJyksYXJyYXkoJyMjI0lEIyMjJywnIyMjQ09ERV9URVhUIyMjJykpKTsNCgkJJHF1ZXJ5LT5mcm9tKCRkYi0+cXVvdGVOYW1lKCcjIyNUQUJMRSMjIycsICdhJykpOw0KCQkkcXVlcnktPndoZXJlKCRkYi0+cXVvdGVOYW1lKCdhLnB1Ymxpc2hlZCcpIC4gJyA9IDEnKTsNCgkJJHF1ZXJ5LT5vcmRlcignYS4jIyNJRCMjIyBBU0MnKTsNCgkJJGRiLT5zZXRRdWVyeSgoc3RyaW5nKSRxdWVyeSk7DQoJCSRpdGVtcyA9ICRkYi0+bG9hZE9iamVjdExpc3QoKTsNCgkJJG9wdGlvbnMgPSBhcnJheSgpOw0KCQlpZiAoJGl0ZW1zKQ0KCQl7DQoJCQkkb3B0aW9uc1tdID0gSkh0bWw6Ol8oJ3NlbGVjdC5vcHRpb24nLCAnJywgJ1NlbGVjdCBhIHByb2R1Y3QnKTsNCgkJCWZvcmVhY2goJGl0ZW1zIGFzICRpdGVtKQ0KCQkJew0KCQkJCSRvcHRpb25zW10gPSBKSHRtbDo6Xygnc2VsZWN0Lm9wdGlvbicsICRpdGVtLT4jIyNJRCMjIywgJGl0ZW0tPiMjI0NPREVfVEVYVCMjIyk7DQoJCQl9DQoJCX0NCgkJcmV0dXJuICRvcHRpb25zOw==\\\"\\n\\/>\"', 1, '2020-06-04 16:45:32', '2020-06-11 15:25:58', 12, '', 984, '64953244-801d-4e80-8373-9979f55edd4d', '', '', '', '', ''),
(2782, '', '', '', '', '', '', '', '', 11, '', 'INT', '', '', '', 'Member (mymakita)', 'NOT NULL', '', 6, '\"<field\\n\\ttype=\\\"member\\\"\\n\\tname=\\\"member\\\"\\n\\tlabel=\\\"Member\\\"\\n\\tclass=\\\"list_class\\\"\\n\\tmultiple=\\\"false\\\"\\n\\trequired=\\\"true\\\"\\n\\textends=\\\"list\\\"\\n\\ttable=\\\"#__[[[core]]]_member\\\"\\n\\tcomponent=\\\"com_[[[core]]]\\\"\\n\\tview=\\\"member\\\"\\n\\tviews=\\\"members\\\"\\n\\tvalue_field=\\\"token\\\"\\n\\tkey_field=\\\"id\\\"\\n\\tprime_php=\\\"1\\\"\\n\\ttype_php_1=\\\"__.o0=base64=Oo.__Ly8gZ2V0IHRoZSB1c2VyDQoJCSRteSA9IEpGYWN0b3J5OjpnZXRVc2VyKCk7DQoJCS8vIGdldCBkYXRhYmFzZSBvYmplY3QNCgkJJGRiID0gSkZhY3Rvcnk6OmdldERCTygpOw0KCQkkcXVlcnkgPSAkZGItPmdldFF1ZXJ5KHRydWUpOw0KCQkkcXVlcnktPnNlbGVjdCgkZGItPnF1b3RlTmFtZShhcnJheSgnYS4jIyNJRCMjIycsJ2EuIyMjVEVYVCMjIycsICdhLnVzZXInLCAnYS5uYW1lJyksYXJyYXkoJyMjI0lEIyMjJywnIyMjQ09ERV9URVhUIyMjJywgJ3VzZXInLCAnbmFtZScpKSk7DQoJCSRxdWVyeS0+ZnJvbSgkZGItPnF1b3RlTmFtZSgnI19fW1tbY29yZV1dXV9tZW1iZXInLCAnYScpKTsNCgkJJHF1ZXJ5LT53aGVyZSgkZGItPnF1b3RlTmFtZSgnYS5wdWJsaXNoZWQnKSAuICcgPj0gMScpOw0KCQkvLyBjaGVjayBpZiBjdXJyZW50IHVzZXIgaXMgYW4gYWRtaW4NCgkJaWYgKCEkbXktPmF1dGhvcmlzZSgnY29yZS5vcHRpb25zJywgJ2NvbV9bW1tjb3JlXV1dJykpDQoJCXsNCgkJCS8vIGNoZWNrIGlmIHRoZSBjbGFzcyBhbmQgbWV0aG9kIGV4aXN0ICYgZ2V0IHVzZXIgYWNjZXNzIGdyb3Vwcw0KCQkJaWYgKCgkaGVscGVyQ2xhc3MgPSBbW1tDb21wb25lbnRdXV1IZWxwZXI6OmdldEhlbHBlckNsYXNzKCdjb21fW1tbY29yZV1dXScpKSA9PT0gZmFsc2UgfHwgIW1ldGhvZF9leGlzdHMoJGhlbHBlckNsYXNzLCAnZ2V0QWNjZXNzJykNCgkJCQl8fCAoJHVzZXJfYWNjZXNzX3R5cGVzID0gICRoZWxwZXJDbGFzczo6Z2V0QWNjZXNzKCRteSkpID09PSBmYWxzZSB8fCAhW1tbQ29tcG9uZW50XV1dSGVscGVyOjpjaGVja0FycmF5KCR1c2VyX2FjY2Vzc190eXBlcykpDQoJCQl7DQoJCQkJcmV0dXJuIGZhbHNlOw0KCQkJfQ0KCQkJLy8gZmlsdGVyIGJ5IHR5cGUNCgkJCSRxdWVyeS0+am9pbignTEVGVCcsICRkYi0+cXVvdGVOYW1lKCcjX19bW1tjb3JlXV1dX3R5cGVfbWFwJywgJ3QnKSAuICcgT04gKCcgLiAkZGItPnF1b3RlTmFtZSgnYS5pZCcpIC4gJyA9ICcgLiAkZGItPnF1b3RlTmFtZSgndC5tZW1iZXInKSAuICcpJyk7DQoJCQkkdXNlcl9hY2Nlc3NfdHlwZXMgPSBpbXBsb2RlKCcsJywgJHVzZXJfYWNjZXNzX3R5cGVzKTsNCgkJCSRxdWVyeS0+d2hlcmUoJ3QudHlwZSBJTiAoJyAuICR1c2VyX2FjY2Vzc190eXBlcyAuICcpJyk7DQoJCQkvLyBhbHNvIGZpbHRlciBieSBhY2Nlc3MgKHdpbGwga2VlcCBhbiBleWUgb24gdGhpcykNCgkJCSRncm91cHMgPSBpbXBsb2RlKCcsJywgJG15LT5nZXRBdXRob3Jpc2VkVmlld0xldmVscygpKTsNCgkJCSRxdWVyeS0+d2hlcmUoJ2EuYWNjZXNzIElOICgnIC4gJGdyb3VwcyAuICcpJyk7DQoJCX0NCgkJJHF1ZXJ5LT5vcmRlcignYS4jIyNURVhUIyMjIEFTQycpOw0KCQkkZGItPnNldFF1ZXJ5KChzdHJpbmcpJHF1ZXJ5KTsNCgkJJGl0ZW1zID0gJGRiLT5sb2FkT2JqZWN0TGlzdCgpOw0KCQkvLyBnZXQgdGhlIGlucHV0IGZyb20gdXJsDQoJCSRqaW5wdXQgPSBKRmFjdG9yeTo6Z2V0QXBwbGljYXRpb24oKS0+aW5wdXQ7DQoJCS8vIGdldCB0aGUgW1tbYXJnMF1dXSBmaWVsZA0KCQkkW1tbYXJnMF1dXV9maWVsZCA9ICRqaW5wdXQtPmdldCgncmVmJywgbnVsbCwgJ1dPUkQnKTsNCgkJLy8gZ2V0IHRoZSBbW1thcmcwXV1dIGZpZWxkDQoJCSRbW1thcmcwXV1dX2ZpZWxkID0gJGppbnB1dC0+Z2V0KCdmaWVsZCcsICRbW1thcmcwXV1dX2ZpZWxkLCAnV09SRCcpOw0KCQkvLyBtYWtlIHN1cmUgdGhpcyBpcyB0aGUgY29ycmVjdCBmaWVsZA0KCQlpZiAoJ1tbW2FyZzBdXV0nID09PSAkW1tbYXJnMF1dXV9maWVsZCkNCgkJew0KCQkJLy8gZ2V0IHRoZSBbW1thcmcwXV1dIGlkDQoJCQkkW1tbYXJnMF1dXSA9ICRqaW5wdXQtPmdldEludCgncmVmaWQnLCAwKTsNCgkJCS8vIGdldCB0aGUgW1tbYXJnMF1dXSBpZA0KCQkJJFtbW2FyZzBdXV0gPSAkamlucHV0LT5nZXRJbnQoJ2ZpZWxkX2lkJywgJFtbW2FyZzBdXV0pOw0KCQl9DQoJCSRvcHRpb25zID0gYXJyYXkoKTsNCgkJaWYgKCRpdGVtcykNCgkJew0KCQkJLy8gb25seSBhZGQgaWYgbW9yZSB0aGVuIG9uZSB2YWx1ZSBmb3VuZA0KCQkJaWYgKGNvdW50KCAoYXJyYXkpICRpdGVtcykgPiAxKQ0KCQkJew0KCQkJCSRvcHRpb25zW10gPSBKSHRtbDo6Xygnc2VsZWN0Lm9wdGlvbicsICcnLCAnU2VsZWN0IGEgW1tbYXJnMF1dXScpOw0KCQkJfQ0KCQkJZm9yZWFjaCgkaXRlbXMgYXMgJGl0ZW0pDQoJCQl7DQoJCQkJLy8gY2hlY2sgaWYgd2UgY3VycmVudCBbW1thcmcwXV1dDQoJCQkJaWYgKGlzc2V0KCRbW1thcmcwXV1dKSAmJiAkW1tbYXJnMF1dXSA9PSAkaXRlbS0+IyMjSUQjIyMpDQoJCQkJew0KCQkJCQkvLyByZW1vdmUgSUQNCgkJCQkJJFtbW2FyZzBdXV0gPSAwOw0KCQkJCX0NCgkJCQkvLyBzZXQgdGhlIG9wdGlvbg0KCQkJCSRvcHRpb25zW10gPSBKSHRtbDo6Xygnc2VsZWN0Lm9wdGlvbicsICRpdGVtLT4jIyNJRCMjIywgIyMjQ29tcG9uZW50IyMjSGVscGVyOjpnZXRbW1thcmcxXV1dTmFtZSgkaXRlbS0+IyMjSUQjIyMsICRpdGVtLT51c2VyLCAkaXRlbS0+bmFtZSkgLiAnICggJyAuICRpdGVtLT4jIyNDT0RFX1RFWFQjIyMgLiAnICknKTsNCgkJCX0NCgkJfQ0KCQkvLyBhZGQgdGhlIGN1cnJlbnQgdXNlciAoVE9ETyB0aGlzIGlzIG5vdCBzdXBwb3NlIHRvIGhhcHBlbikNCgkJaWYgKGlzc2V0KCRbW1thcmcwXV1dKSAmJiAkW1tbYXJnMF1dXSA+IDApDQoJCXsNCgkJCS8vIGxvYWQgdGhlIGN1cnJlbnQgW1tbYXJnMF1dXSBtYW51YWwNCgkJCSRvcHRpb25zW10gPSBKSHRtbDo6Xygnc2VsZWN0Lm9wdGlvbicsIChpbnQpICRbW1thcmcwXV1dLCAjIyNDb21wb25lbnQjIyNIZWxwZXI6OmdldFtbW2FyZzFdXV1OYW1lKCRbW1thcmcwXV1dKSk7DQoJCX0NCgkJcmV0dXJuICRvcHRpb25zOw==\\\"\\n\\/>\"', -2, '2020-06-05 21:16:32', '2020-06-05 21:27:32', 4, '', '', 'e1331c0d-cc72-4a1e-9ce5-00b5ac35f975', '', '', '', '', ''),
(2783, '', '', '', '', '', '', '', '', 100, '', 'VARCHAR', 2, '', '', 'Model', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"product_code\\\"\\n\\tlabel=\\\"Model\\\"\\n\\tsize=\\\"50\\\"\\n\\tmaxlength=\\\"150\\\"\\n\\tfilter=\\\"STRING\\\"\\n\\thint=\\\"model\\\"\\n\\/>\"', 1, '2020-06-11 19:25:10', '2020-06-16 00:50:23', 8, '', 7, '2bd8406f-a99f-436d-987d-ea57a312b54d', '', '', '', '', ''),
(2784, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Dealer Name', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"dealer_name\\\"\\n\\tlabel=\\\"Dealer Name\\\"\\n\\tsize=\\\"50\\\"\\n\\tmaxlength=\\\"150\\\"\\n\\tdescription=\\\"Enter Dealer name\\\"\\n\\trequired=\\\"true\\\"\\n\\tfilter=\\\"STRING\\\"\\n\\tmessage=\\\"Error! Please add dealer name.\\\"\\n\\thint=\\\"Dealer Name\\\"\\n\\/>\"', 1, '2020-06-12 13:53:41', '2020-06-24 18:28:04', 9, '', 303, 'fec9d112-e4fa-4cca-9dc9-7df2e896525c', '', '', '', '', ''),
(2785, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Dummy Product Image', 'NOT NULL', '', 12, '\"<field\\n\\ttype=\\\"media\\\"\\n\\tname=\\\"image_dummy_path\\\"\\n\\tlabel=\\\"Dummy Product Image\\\"\\n\\tdescription=\\\"select a dummy product image from the image folder\\\"\\n\\tpreview=\\\"tooltip\\\"\\n\\/>\"', 1, '2020-06-12 20:23:02', '2020-06-13 00:48:52', 2, '', 713, '641eb213-6e0d-4f22-98d9-f787b26dbcb5', '', '', '', '', ''),
(2786, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Competitions Profile Template', 'NOT NULL', '', 8, '\"<field\\n\\ttype=\\\"editor\\\"\\n\\tname=\\\"competitions_template\\\"\\n\\tlabel=\\\"Competitions Profile Template\\\"\\n\\twidth=\\\"100%\\\"\\n\\theight=\\\"500px\\\"\\n\\tbuttons=\\\"no\\\"\\n\\tfilter=\\\"safehtml\\\"\\n\\/>\"', 1, '2020-06-13 23:33:08', '2020-07-02 19:59:43', 3, '', 991, '0bdcae75-a941-4b60-8870-bafc5c890b5f', '', '', '', '', ''),
(2787, '', '', '', '', '', '', '', '', '', '', '', '', '', '', 'Competitions Placeholders', 'NOT NULL', '', 14, '\"<field\\n\\ttype=\\\"note\\\"\\n\\tname=\\\"competitions_placeholders\\\"\\n\\tlabel=\\\"Competitions Placeholders\\\"\\n\\tdescription=\\\"<div>\\r\\n<h4>Client Details<\\/h4>\\r\\n<code>[full_name]<\\/code>&nbsp;&nbsp;\\r\\n<code>[surname]<\\/code>&nbsp;&nbsp;\\r\\n<code>[name]<\\/code>&nbsp;&nbsp;\\r\\n<\\/div>\\r\\n\\r\\n<div>\\r\\n<h4>Competitions Details<\\/h4>\\r\\n<code>[competition_name]<\\/code>&nbsp;&nbsp;\\r\\n<code>[competition_end_date]<\\/code>&nbsp;&nbsp;\\r\\n<code>[competition_start_date]<\\/code>&nbsp;&nbsp;\\r\\n<code>[number_of_products_entered]<\\/code>&nbsp;&nbsp;\\r\\n<\\/div>\\\"\\n\\theading=\\\"h3\\\"\\n\\/>\"', 1, '2020-06-13 23:42:23', '2020-07-02 19:56:17', 7, '', 991, '924d734b-77cb-48cc-a94a-fa7d7c0f8284', '', '', '', '', ''),
(2788, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Purchased from', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"purchased_from\\\"\\n\\tlabel=\\\"Purchased from\\\"\\n\\toption=\\\"1|Online,2|In Store\\\"\\n\\trequired=\\\"true\\\"\\n\\/>\"', 1, '2020-06-18 02:51:45', '2020-06-18 02:52:10', 2, '', 988, 'b50b2e60-5281-4e8d-81b7-b3791e25d804', '', '', '', '', ''),
(2789, '', '', 1, '', '', '', '', '', 1, '', 'TINYINT', '', 'd2luZG93Lm9ubG9hZCA9IGZ1bmN0aW9uKCkgew0KICAgIGJ1dHRvbkFjdGlvbigpOw0KfTsNCmZ1bmN0aW9uIGJ1dHRvbkFjdGlvbigpew0KICAgIGlmIChqUXVlcnkoIiNqZm9ybV9hZ3JlZSIpLmlzKCc6Y2hlY2tlZCcpKSB7DQogICAgICAgIGpRdWVyeSgiI215bWFraXRhLXRvb2xiYXItc2F2ZSBidXR0b24iKS5wcm9wKCdkaXNhYmxlZCcsIGZhbHNlKTsNCiAgICB9IGVsc2Ugew0KICAgICAgICBqUXVlcnkoIiNteW1ha2l0YS10b29sYmFyLXNhdmUgYnV0dG9uIikucHJvcCgnZGlzYWJsZWQnLCB0cnVlKTsNCiAgICB9DQp9', '', 'Agree (mymakita)', 'NOT NULL', '', 3, '\"<field\\n\\ttype=\\\"checkbox\\\"\\n\\tname=\\\"agree\\\"\\n\\tlabel=\\\"I agree to the MyMakita <a href=\'\\/service-support\\/makita-limited-warranty-statement?ml=1\' >warranty terms & conditions<\\/a>\\\"\\n\\tvalue=\\\"1\\\"\\n\\tdefault=\\\"0\\\"\\n\\trequired=\\\"true\\\"\\n\\tdescription=\\\"You must agree to the MyMakita warranty terms & conditions\\\"\\n\\tonchange=\\\"buttonAction();\\\"\\n\\/>\"', 1, '2020-06-18 02:59:28', '2020-06-28 15:21:29', 7, '', 992, 'a2177b06-19ec-450d-ad37-96f59d9d98cb', '', '', '', '', ''),
(2790, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'Form Menu Item', 'NOT NULL', '', 33, '\"<field\\n\\ttype=\\\"menuitem\\\"\\n\\tname=\\\"form_menu\\\"\\n\\tlabel=\\\"Form Menu Item\\\"\\n\\tdescription=\\\"Select the menu item you would like your form view to be linked to.\\\"\\n\\tpublished=\\\"1\\\"\\n\\tfilter=\\\"int\\\"\\n\\/>\"', 1, '2020-06-23 02:36:20', '2015-11-14 15:15:03', 1, '', 637, 'c41a8fcd-4b8b-4bc4-8a32-8796ebcdc4ec', '', '', '', '', ''),
(2791, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'Member Menu Item', 'NOT NULL', '', 33, '\"<field\\n\\ttype=\\\"menuitem\\\"\\n\\tname=\\\"member_menu\\\"\\n\\tlabel=\\\"Member Edit Menu Item\\\"\\n\\tdescription=\\\"Select the menu item you would like your member edit view to be linked to.\\\"\\n\\tpublished=\\\"1\\\"\\n\\tfilter=\\\"int\\\"\\n\\/>\"', 1, '2020-06-23 02:37:33', '2015-11-14 15:15:03', 1, '', 637, 'a4bd87f9-c201-4bc7-af29-54d7047fce21', '', '', '', '', ''),
(2792, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'Registration Menu Item', 'NOT NULL', '', 33, '\"<field\\n\\ttype=\\\"menuitem\\\"\\n\\tname=\\\"registration_menu\\\"\\n\\tlabel=\\\"Registration Menu Item\\\"\\n\\tdescription=\\\"Select the menu item you would like your registration edit view to be linked to.\\\"\\n\\tpublished=\\\"1\\\"\\n\\tfilter=\\\"int\\\"\\n\\/>\"', 1, '2020-06-23 02:39:47', '2015-11-14 15:15:03', 1, '', 637, '2632d07d-903e-4cce-b4df-1d1125726560', '', '', '', '', ''),
(2793, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Login Name (no class)', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"username\\\"\\n\\tlabel=\\\"Login Name\\\"\\n\\tsize=\\\"50\\\"\\n\\tmaxlength=\\\"150\\\"\\n\\tdescription=\\\"Enter the login name (Username) for the member.\\\"\\n\\trequired=\\\"true\\\"\\n\\tfilter=\\\"STRING\\\"\\n\\tvalidate=\\\"memberloginname\\\"\\n\\tmessage=\\\"Error! Login Name in use, try another.\\\"\\n\\thint=\\\"Login Name\\\"\\n\\tautocomplete=\\\"off\\\"\\n\\/>\"', 1, '2020-06-24 17:56:12', '2020-07-16 12:38:49', 3, '', 883, '5d864c65-691d-4e8f-90da-2f2df3ada508', '', '', '', '', ''),
(2794, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Password (no class)', 'NOT NULL', '', 16, '\"<field\\n\\ttype=\\\"password\\\"\\n\\tname=\\\"password\\\"\\n\\tlabel=\\\"Password\\\"\\n\\tsize=\\\"50\\\"\\n\\tdescription=\\\"Enter the password for the member.\\\"\\n\\tmessage=\\\"Error! Please add password here.\\\"\\n\\tvalidate=\\\"password\\\"\\n\\tfilter=\\\"raw\\\"\\n\\tautocomplete=\\\"off\\\"\\n\\thint=\\\"Min 8 characters - incl 1 number & 1 symbol\\\"\\n\\/>\"', 1, '2020-06-24 17:59:19', '2020-07-03 05:53:02', 2, '', 884, 'a98b0483-3081-4dff-8ec5-28949bf51c39', '', '', '', '', ''),
(2795, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Confirm Password (no class)', 'NOT NULL', '', 16, '\"<field\\n\\ttype=\\\"password\\\"\\n\\tname=\\\"password_check\\\"\\n\\tlabel=\\\"Confirm Password\\\"\\n\\tsize=\\\"50\\\"\\n\\tdescription=\\\"Confirm the member\'s password.\\\"\\n\\tmessage=\\\"Error! The passwords you entered do not match. Please enter your desired password in the password field and confirm your entry by entering it in the confirm password field.\\\"\\n\\tvalidate=\\\"equals\\\"\\n\\tfield=\\\"password\\\"\\n\\tfilter=\\\"raw\\\"\\n\\tautocomplete=\\\"off\\\"\\n\\/>\"', 1, '2020-06-24 17:59:57', '2018-09-15 23:28:27', 1, '', 884, '5f5274a3-1aa2-4c6b-9736-a21ea33365b6', '', '', '', '', ''),
(2796, '', '', '', '', '', '', '', '', 255, '', 'CHAR', '', '', '', 'Surname (no class)', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"surname\\\"\\n\\tlabel=\\\"Surname\\\"\\n\\tsize=\\\"50\\\"\\n\\tmaxlength=\\\"150\\\"\\n\\tdescription=\\\"Enter Surname Here\\\"\\n\\trequired=\\\"true\\\"\\n\\tfilter=\\\"STRING\\\"\\n\\tmessage=\\\"Error! Please add your surname here.\\\"\\n\\thint=\\\"Surname\\\"\\n\\/>\"', 1, '2020-06-24 18:01:09', '2020-06-28 02:27:33', 4, '', 85, 'e0bc7dd4-dbd2-487b-87a3-85bfe047c241', '', '', '', '', ''),
(2797, '', '', 1, '', '', '', '', '', 11, '', 'INT', 2, 'alF1ZXJ5KCIjamZvcm1fc3RhcnQiKS5wcm9wKCJyZWFkb25seSIsIHRydWUpOw==', '', 'Start (%d/%m/%Y)', 'NOT NULL', 6, 1, '\"<field\\n\\ttype=\\\"calendar\\\"\\n\\tname=\\\"start\\\"\\n\\tlabel=\\\"Start\\\"\\n\\tdescription=\\\"Select the starting date.\\\"\\n\\tformat=\\\"%d\\/%m\\/%Y\\\"\\n\\trequired=\\\"true\\\"\\n\\/>\"', 1, '2020-06-27 13:48:41', '2020-07-02 22:41:09', 9, '', 734, '6972ff4b-8f74-43f9-8bd4-89a7ad6419ee', 'Ly8gbWFrZSBzdXJlIHdlIGFyZSBpbiBBdXN0cmFsaWENCmRhdGVfZGVmYXVsdF90aW1lem9uZV9zZXQoJ0F1c3RyYWxpYS9TeWRuZXknKTsNCi8vIGNvbnZlcnQgdGhlIHRpbWUgc3RhbXAgYmFjayB0byBhIGRhdGEgc3RyaW5nDQpbW1tmaWVsZF1dXSA9IFtbW2ZpZWxkXV1dICsgMDsNCmlmIChbW1tmaWVsZF1dXSA+IDAgJiYgaXNfaW50KFtbW2ZpZWxkXV1dKSkNCnsNCglbW1tmaWVsZF1dXSA9IFtbW0NvbXBvbmVudF1dXUhlbHBlcjo6c2V0RGF5TW9udGhZZWFyKFtbW2ZpZWxkXV1dLCAnLScsIGZhbHNlKTsNCn0NCmVsc2UNCnsNCglbW1tmaWVsZF1dXSAgPSAnJzsNCn0=', 'Ly8gbWFrZSBzdXJlIHdlIGFyZSBpbiBBdXN0cmFsaWENCmRhdGVfZGVmYXVsdF90aW1lem9uZV9zZXQoJ0F1c3RyYWxpYS9TeWRuZXknKTsNCi8vIGNoZWNrIHRoZSBkYXRlDQppZiAoW1tbQ29tcG9uZW50XV1dSGVscGVyOjppc1ZhbGlkYXRlRGF0ZShbW1tmaWVsZF1dXSwgJ2QvbS9ZJykpDQp7DQoJW1tbZmllbGRdXV0gPSBzdHJ0b3RpbWUoaW1wbG9kZSgnLScsIGV4cGxvZGUoJy8nLCBbW1tmaWVsZF1dXSkpKTsNCn0NCmVsc2UNCnsNCglbW1tmaWVsZF1dXSAgPSAnJzsNCn0=', '', '', ''),
(2798, '', '', 1, '', '', '', '', '', 11, '', 'INT', 2, 'alF1ZXJ5KCIjamZvcm1fZW5kIikucHJvcCgicmVhZG9ubHkiLCB0cnVlKTs=', '', 'End (%d/%m/%Y)', 'NOT NULL', 6, 1, '\"<field\\n\\ttype=\\\"calendar\\\"\\n\\tname=\\\"end\\\"\\n\\tlabel=\\\"End\\\"\\n\\tdescription=\\\"Select the ending date.\\\"\\n\\tformat=\\\"%d\\/%m\\/%Y\\\"\\n\\trequired=\\\"true\\\"\\n\\/>\"', 1, '2020-06-27 13:49:12', '2020-07-02 22:40:46', 10, '', 734, '7fd33318-4ce9-4f79-ad5e-1b21c532a299', 'Ly8gbWFrZSBzdXJlIHdlIGFyZSBpbiBBdXN0cmFsaWENCmRhdGVfZGVmYXVsdF90aW1lem9uZV9zZXQoJ0F1c3RyYWxpYS9TeWRuZXknKTsNCi8vIGNvbnZlcnQgdGhlIHRpbWUgc3RhbXAgYmFjayB0byBhIGRhdGEgc3RyaW5nDQpbW1tmaWVsZF1dXSA9IFtbW2ZpZWxkXV1dICsgMDsNCmlmIChbW1tmaWVsZF1dXSA+IDAgJiYgaXNfaW50KFtbW2ZpZWxkXV1dKSkNCnsNCglbW1tmaWVsZF1dXSA9IFtbW0NvbXBvbmVudF1dXUhlbHBlcjo6c2V0RGF5TW9udGhZZWFyKFtbW2ZpZWxkXV1dLCAnLScsIGZhbHNlKTsNCn0NCmVsc2UNCnsNCglbW1tmaWVsZF1dXSAgPSAnJzsNCn0=', 'Ly8gbWFrZSBzdXJlIHdlIGFyZSBpbiBBdXN0cmFsaWENCmRhdGVfZGVmYXVsdF90aW1lem9uZV9zZXQoJ0F1c3RyYWxpYS9TeWRuZXknKTsNCi8vIGNoZWNrIHRoZSBkYXRlDQppZiAoW1tbQ29tcG9uZW50XV1dSGVscGVyOjppc1ZhbGlkYXRlRGF0ZShbW1tmaWVsZF1dXSwgJ2QvbS9ZJykpDQp7DQoJW1tbZmllbGRdXV0gPSBzdHJ0b3RpbWUoaW1wbG9kZSgnLScsIGV4cGxvZGUoJy8nLCBbW1tmaWVsZF1dXSkpKTsNCn0NCmVsc2UNCnsNCglbW1tmaWVsZF1dXSAgPSAnJzsNCn0=', '', '', ''),
(2799, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Post Code', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"postalcode\\\"\\n\\tlabel=\\\"Post Code\\\"\\n\\tsize=\\\"50\\\"\\n\\tmaxlength=\\\"150\\\"\\n\\tdescription=\\\"Please add your postal code here\\\"\\n\\tclass=\\\"text_area\\\"\\n\\trequired=\\\"true\\\"\\n\\tfilter=\\\"STRING\\\"\\n\\tmessage=\\\"Error! Please add postal code here.\\\"\\n\\/>\"', 1, '2020-06-28 01:27:06', '2020-06-28 01:27:26', 2, '', 647, '67c06fcf-f572-4df1-be2b-6b270c43941a', '', '', '', '', ''),
(2800, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Address', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"postal\\\"\\n\\tlabel=\\\"Address\\\"\\n\\tsize=\\\"50\\\"\\n\\tmaxlength=\\\"150\\\"\\n\\tdescription=\\\"Please add your postal address here\\\"\\n\\tfilter=\\\"STRING\\\"\\n\\trequired=\\\"true\\\"\\n\\tmessage=\\\"Error! Please add postal address here.\\\"\\n\\thint=\\\"P.O.Box 0000\\\"\\n\\/>\"', 1, '2020-06-28 01:28:04', '2020-06-28 01:28:46', 2, '', 647, 'fb076e22-bddb-42b0-b893-ccf0cd036bb1', '', '', '', '', ''),
(2801, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Privacy (Makita\'s)', 'NOT NULL', '', 41, '\"<field\\n\\ttype=\\\"privacy\\\"\\n\\tname=\\\"privacy\\\"\\n\\tlabel=\\\"I have read and understood Makita\'s Privacy Policy\\\"\\n\\tdescription=\\\"Read the full privacy policy.\\\"\\n\\tfilter=\\\"integer\\\"\\n\\toption=\\\"1|I agree,0|No\\\"\\n\\tdefault=\\\"0\\\"\\n\\trequired=\\\"true\\\"\\n\\textends=\\\"radio\\\"\\n\\ttype_php_1=\\\"__.o0=base64=Oo.__CS8qKg0KCSAqIE1ldGhvZCB0byBnZXQgdGhlIGZpZWxkIGlucHV0IG1hcmt1cC4NCgkgKg0KCSAqIEByZXR1cm4gIHN0cmluZyAgIFRoZSBmaWVsZCBpbnB1dCBtYXJrdXAuDQoJICoNCgkgKiBAc2luY2UgICAzLjkuMA0KCSAqLw0KCXByb3RlY3RlZCBmdW5jdGlvbiBnZXRJbnB1dCgpDQoJew0KCQkvLyBEaXNwbGF5IHRoZSBtZXNzYWdlIGJlZm9yZSB0aGUgZmllbGQNCgkJZWNobyAkdGhpcy0+Z2V0UmVuZGVyZXIoJ3BsdWdpbnMuc3lzdGVtLnByaXZhY3ljb25zZW50Lm1lc3NhZ2UnKS0+cmVuZGVyKCR0aGlzLT5nZXRMYXlvdXREYXRhKCkpOw0KDQoJCXJldHVybiBwYXJlbnQ6OmdldElucHV0KCk7DQoJfQ==\\\"\\n\\ttype_phpa_1=\\\"__.o0=base64=Oo.__CS8qKg0KCSAqIE1ldGhvZCB0byBnZXQgdGhlIGZpZWxkIGxhYmVsIG1hcmt1cC4NCgkgKg0KCSAqIEByZXR1cm4gIHN0cmluZyAgVGhlIGZpZWxkIGxhYmVsIG1hcmt1cC4NCgkgKg0KCSAqIEBzaW5jZSAgIDMuOS4wDQoJICovDQoJcHJvdGVjdGVkIGZ1bmN0aW9uIGdldExhYmVsKCkNCgl7DQoJCWlmICgkdGhpcy0+aGlkZGVuKQ0KCQl7DQoJCQlyZXR1cm4gJyc7DQoJCX0NCg0KCQlyZXR1cm4gJHRoaXMtPmdldFJlbmRlcmVyKCdwbHVnaW5zLnN5c3RlbS5wcml2YWN5Y29uc2VudC5sYWJlbCcpLT5yZW5kZXIoJHRoaXMtPmdldExheW91dERhdGEoKSk7DQoNCgl9\\\"\\n\\ttype_phpb_1=\\\"__.o0=base64=Oo.__CS8qKg0KCSAqIE1ldGhvZCB0byBnZXQgdGhlIGRhdGEgdG8gYmUgcGFzc2VkIHRvIHRoZSBsYXlvdXQgZm9yIHJlbmRlcmluZy4NCgkgKg0KCSAqIEByZXR1cm4gIGFycmF5DQoJICoNCgkgKiBAc2luY2UgICAzLjkuNA0KCSAqLw0KCXByb3RlY3RlZCBmdW5jdGlvbiBnZXRMYXlvdXREYXRhKCkNCgl7DQoJCSRkYXRhID0gcGFyZW50OjpnZXRMYXlvdXREYXRhKCk7DQoNCgkJJGFydGljbGUgPSBmYWxzZTsNCgkJJHByaXZhY3lBcnRpY2xlID0gJHRoaXMtPmVsZW1lbnRbJ2FydGljbGUnXSA+IDAgPyAoaW50KSAkdGhpcy0+ZWxlbWVudFsnYXJ0aWNsZSddIDogMDsNCg0KCQlpZiAoJHByaXZhY3lBcnRpY2xlICYmIEZhY3Rvcnk6OmdldEFwcGxpY2F0aW9uKCktPmlzQ2xpZW50KCdzaXRlJykpDQoJCXsNCgkJCSRkYiAgICA9IEZhY3Rvcnk6OmdldERibygpOw0KCQkJJHF1ZXJ5ID0gJGRiLT5nZXRRdWVyeSh0cnVlKQ0KCQkJCS0+c2VsZWN0KCRkYi0+cXVvdGVOYW1lKGFycmF5KCdpZCcsICdhbGlhcycsICdjYXRpZCcsICdsYW5ndWFnZScpKSkNCgkJCQktPmZyb20oJGRiLT5xdW90ZU5hbWUoJyNfX2NvbnRlbnQnKSkNCgkJCQktPndoZXJlKCRkYi0+cXVvdGVOYW1lKCdpZCcpIC4gJyA9ICcgLiAoaW50KSAkcHJpdmFjeUFydGljbGUpOw0KCQkJJGRiLT5zZXRRdWVyeSgkcXVlcnkpOw0KCQkJJGFydGljbGUgPSAkZGItPmxvYWRPYmplY3QoKTsNCg0KCQkJSkxvYWRlcjo6cmVnaXN0ZXIoJ0NvbnRlbnRIZWxwZXJSb3V0ZScsIEpQQVRIX0JBU0UgLiAnL2NvbXBvbmVudHMvY29tX2NvbnRlbnQvaGVscGVycy9yb3V0ZS5waHAnKTsNCg0KCQkJJHNsdWcgPSAkYXJ0aWNsZS0+YWxpYXMgPyAoJGFydGljbGUtPmlkIC4gJzonIC4gJGFydGljbGUtPmFsaWFzKSA6ICRhcnRpY2xlLT5pZDsNCgkJCSRhcnRpY2xlLT5saW5rICA9IENvbnRlbnRIZWxwZXJSb3V0ZTo6Z2V0QXJ0aWNsZVJvdXRlKCRzbHVnLCAkYXJ0aWNsZS0+Y2F0aWQsICRhcnRpY2xlLT5sYW5ndWFnZSk7DQoJCX0NCg0KCQkkZXh0cmFEYXRhID0gYXJyYXkoDQoJCQkncHJpdmFjeW5vdGUnID0+ICFlbXB0eSgkdGhpcy0+ZWxlbWVudFsnbm90ZSddKSA\\/ICR0aGlzLT5lbGVtZW50Wydub3RlJ10gOiBUZXh0OjpfKCdCeSBzaWduaW5nIHVwIHRvIHRoaXMgd2ViIHNpdGUgYW5kIGFncmVlaW5nIHRvIHRoZSBQcml2YWN5IFBvbGljeSB5b3UgYWdyZWUgdG8gdGhpcyB3ZWIgc2l0ZSBzdG9yaW5nIHlvdXIgaW5mb3JtYXRpb24uJyksDQoJCQknb3B0aW9ucycgPT4gJHRoaXMtPmdldE9wdGlvbnMoKSwNCgkJCSd2YWx1ZScgICA9PiAoc3RyaW5nKSAkdGhpcy0+dmFsdWUsDQoJCQkndHJhbnNsYXRlTGFiZWwnID0+ICR0aGlzLT50cmFuc2xhdGVMYWJlbCwNCgkJCSd0cmFuc2xhdGVEZXNjcmlwdGlvbicgPT4gJHRoaXMtPnRyYW5zbGF0ZURlc2NyaXB0aW9uLA0KCQkJJ3RyYW5zbGF0ZUhpbnQnID0+ICR0aGlzLT50cmFuc2xhdGVIaW50LA0KCQkJJ3ByaXZhY3lBcnRpY2xlJyA9PiAkcHJpdmFjeUFydGljbGUsDQoJCQknYXJ0aWNsZScgPT4gJGFydGljbGUsDQoJCSk7DQoNCgkJcmV0dXJuIGFycmF5X21lcmdlKCRkYXRhLCAkZXh0cmFEYXRhKTsNCgl9\\\"\\n\\ttype_phpHEADER_1=\\\"__.o0=base64=Oo.__dXNlIEpvb21sYVxDTVNcRmFjdG9yeTsNCnVzZSBKb29tbGFcQ01TXExhbmd1YWdlXFRleHQ7\\\"\\n\\/>\"', 1, '2020-06-30 15:06:18', '2020-06-30 18:19:08', 8, '', 993, '5aaaef1c-914d-4718-b7d6-37e2e910939a', '', '', '', '', ''),
(2802, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Terms & Conditions', 'NOT NULL', '', 42, '\"<field\\n\\ttype=\\\"terms\\\"\\n\\tname=\\\"terms\\\"\\n\\tlabel=\\\"I agree to the Makita Limited Warranty terms & conditions\\\"\\n\\tdescription=\\\"Read the full terms and conditions.\\\"\\n\\tfilter=\\\"integer\\\"\\n\\toption=\\\"1|I agree,0|No\\\"\\n\\tdefault=\\\"0\\\"\\n\\trequired=\\\"true\\\"\\n\\textends=\\\"radio\\\"\\n\\ttype_php_1=\\\"__.o0=base64=Oo.__CS8qKg0KCSAqIE1ldGhvZCB0byBnZXQgdGhlIGZpZWxkIGlucHV0IG1hcmt1cC4NCgkgKg0KCSAqIEByZXR1cm4gIHN0cmluZyAgIFRoZSBmaWVsZCBpbnB1dCBtYXJrdXAuDQoJICoNCgkgKiBAc2luY2UgICAzLjkuMA0KCSAqLw0KCXByb3RlY3RlZCBmdW5jdGlvbiBnZXRJbnB1dCgpDQoJew0KCQkvLyBEaXNwbGF5IHRoZSBtZXNzYWdlIGJlZm9yZSB0aGUgZmllbGQNCgkJZWNobyAkdGhpcy0+Z2V0UmVuZGVyZXIoJ3BsdWdpbnMudXNlci50ZXJtcy5tZXNzYWdlJyktPnJlbmRlcigkdGhpcy0+Z2V0TGF5b3V0RGF0YSgpKTsNCg0KCQlyZXR1cm4gcGFyZW50OjpnZXRJbnB1dCgpOw0KCX0=\\\"\\n\\ttype_phpa_1=\\\"__.o0=base64=Oo.__CS8qKg0KCSAqIE1ldGhvZCB0byBnZXQgdGhlIGZpZWxkIGxhYmVsIG1hcmt1cC4NCgkgKg0KCSAqIEByZXR1cm4gIHN0cmluZyAgVGhlIGZpZWxkIGxhYmVsIG1hcmt1cC4NCgkgKg0KCSAqIEBzaW5jZSAgIDMuOS4wDQoJICovDQoJcHJvdGVjdGVkIGZ1bmN0aW9uIGdldExhYmVsKCkNCgl7DQoJCWlmICgkdGhpcy0+aGlkZGVuKQ0KCQl7DQoJCQlyZXR1cm4gJyc7DQoJCX0NCg0KCQlyZXR1cm4gJHRoaXMtPmdldFJlbmRlcmVyKCdwbHVnaW5zLnVzZXIudGVybXMubGFiZWwnKS0+cmVuZGVyKCR0aGlzLT5nZXRMYXlvdXREYXRhKCkpOw0KCX0=\\\"\\n\\ttype_phpb_1=\\\"__.o0=base64=Oo.__CS8qKg0KCSAqIE1ldGhvZCB0byBnZXQgdGhlIGRhdGEgdG8gYmUgcGFzc2VkIHRvIHRoZSBsYXlvdXQgZm9yIHJlbmRlcmluZy4NCgkgKg0KCSAqIEByZXR1cm4gIGFycmF5DQoJICoNCgkgKiBAc2luY2UgICAzLjkuNA0KCSAqLw0KCXByb3RlY3RlZCBmdW5jdGlvbiBnZXRMYXlvdXREYXRhKCkNCgl7DQoJCSRkYXRhID0gcGFyZW50OjpnZXRMYXlvdXREYXRhKCk7DQoNCgkJJGFydGljbGUgPSBmYWxzZTsNCgkJJHRlcm1zQXJ0aWNsZSA9ICR0aGlzLT5lbGVtZW50WydhcnRpY2xlJ10gPiAwID8gKGludCkgJHRoaXMtPmVsZW1lbnRbJ2FydGljbGUnXSA6IDA7DQoNCgkJaWYgKCR0ZXJtc0FydGljbGUgJiYgRmFjdG9yeTo6Z2V0QXBwbGljYXRpb24oKS0+aXNDbGllbnQoJ3NpdGUnKSkNCgkJew0KCQkJJGRiICAgID0gRmFjdG9yeTo6Z2V0RGJvKCk7DQoJCQkkcXVlcnkgPSAkZGItPmdldFF1ZXJ5KHRydWUpDQoJCQkJLT5zZWxlY3QoJGRiLT5xdW90ZU5hbWUoYXJyYXkoJ2lkJywgJ2FsaWFzJywgJ2NhdGlkJywgJ2xhbmd1YWdlJykpKQ0KCQkJCS0+ZnJvbSgkZGItPnF1b3RlTmFtZSgnI19fY29udGVudCcpKQ0KCQkJCS0+d2hlcmUoJGRiLT5xdW90ZU5hbWUoJ2lkJykgLiAnID0gJyAuIChpbnQpICR0ZXJtc0FydGljbGUpOw0KCQkJJGRiLT5zZXRRdWVyeSgkcXVlcnkpOw0KCQkJJGFydGljbGUgPSAkZGItPmxvYWRPYmplY3QoKTsNCg0KCQkJSkxvYWRlcjo6cmVnaXN0ZXIoJ0NvbnRlbnRIZWxwZXJSb3V0ZScsIEpQQVRIX0JBU0UgLiAnL2NvbXBvbmVudHMvY29tX2NvbnRlbnQvaGVscGVycy9yb3V0ZS5waHAnKTsNCg0KCQkJaWYgKEFzc29jaWF0aW9uczo6aXNFbmFibGVkKCkpDQoJCQl7DQoJCQkJJHRlcm1zQXNzb2NpYXRlZCA9IEFzc29jaWF0aW9uczo6Z2V0QXNzb2NpYXRpb25zKCdjb21fY29udGVudCcsICcjX19jb250ZW50JywgJ2NvbV9jb250ZW50Lml0ZW0nLCAkdGVybXNBcnRpY2xlKTsNCgkJCX0NCg0KCQkJJGN1cnJlbnRMYW5nID0gRmFjdG9yeTo6Z2V0TGFuZ3VhZ2UoKS0+Z2V0VGFnKCk7DQoNCgkJCWlmIChpc3NldCgkdGVybXNBc3NvY2lhdGVkKSAmJiAkY3VycmVudExhbmcgIT09ICRhcnRpY2xlLT5sYW5ndWFnZSAmJiBhcnJheV9rZXlfZXhpc3RzKCRjdXJyZW50TGFuZywgJHRlcm1zQXNzb2NpYXRlZCkpDQoJCQl7DQoJCQkJJGFydGljbGUtPmxpbmsgPSBDb250ZW50SGVscGVyUm91dGU6OmdldEFydGljbGVSb3V0ZSgNCgkJCQkJJHRlcm1zQXNzb2NpYXRlZFskY3VycmVudExhbmddLT5pZCwNCgkJCQkJJHRlcm1zQXNzb2NpYXRlZFskY3VycmVudExhbmddLT5jYXRpZCwNCgkJCQkJJHRlcm1zQXNzb2NpYXRlZFskY3VycmVudExhbmddLT5sYW5ndWFnZQ0KCQkJCSk7DQoJCQl9DQoJCQllbHNlDQoJCQl7DQoJCQkJJHNsdWcgPSAkYXJ0aWNsZS0+YWxpYXMgPyAoJGFydGljbGUtPmlkIC4gJzonIC4gJGFydGljbGUtPmFsaWFzKSA6ICRhcnRpY2xlLT5pZDsNCgkJCQkkYXJ0aWNsZS0+bGluayA9IENvbnRlbnRIZWxwZXJSb3V0ZTo6Z2V0QXJ0aWNsZVJvdXRlKCRzbHVnLCAkYXJ0aWNsZS0+Y2F0aWQsICRhcnRpY2xlLT5sYW5ndWFnZSk7DQoJCQl9DQoJCX0NCg0KCQkkZXh0cmFEYXRhID0gYXJyYXkoDQoJCQkndGVybXNub3RlJyA9PiAhZW1wdHkoJHRoaXMtPmVsZW1lbnRbJ25vdGUnXSkgPyAkdGhpcy0+ZWxlbWVudFsnbm90ZSddIDogVGV4dDo6XygnQnkgc2lnbmluZyB1cCB0byB0aGlzIHdlYiBzaXRlIHlvdSBhY2NlcHQgdGhlIFRlcm1zICYgQ29uZGl0aW9ucy4nKSwNCgkJCSdvcHRpb25zJyA9PiAkdGhpcy0+Z2V0T3B0aW9ucygpLA0KCQkJJ3ZhbHVlJyAgID0+IChzdHJpbmcpICR0aGlzLT52YWx1ZSwNCgkJCSd0cmFuc2xhdGVMYWJlbCcgPT4gJHRoaXMtPnRyYW5zbGF0ZUxhYmVsLA0KCQkJJ3RyYW5zbGF0ZURlc2NyaXB0aW9uJyA9PiAkdGhpcy0+dHJhbnNsYXRlRGVzY3JpcHRpb24sDQoJCQkndHJhbnNsYXRlSGludCcgPT4gJHRoaXMtPnRyYW5zbGF0ZUhpbnQsDQoJCQkndGVybXNBcnRpY2xlJyA9PiAkdGVybXNBcnRpY2xlLA0KCQkJJ2FydGljbGUnID0+ICRhcnRpY2xlLA0KCQkpOw0KDQoJCXJldHVybiBhcnJheV9tZXJnZSgkZGF0YSwgJGV4dHJhRGF0YSk7DQoJfQ==\\\"\\n\\ttype_phpHEADER_1=\\\"__.o0=base64=Oo.__dXNlIEpvb21sYVxDTVNcRmFjdG9yeTsNCnVzZSBKb29tbGFcQ01TXEZvcm1cRm9ybUhlbHBlcjsNCnVzZSBKb29tbGFcQ01TXExhbmd1YWdlXEFzc29jaWF0aW9uczsNCnVzZSBKb29tbGFcQ01TXExhbmd1YWdlXFRleHQ7\\\"\\n\\/>\"', 1, '2020-06-30 15:07:31', '2020-06-30 18:20:30', 9, '', 993, '68540687-b6fc-44ce-ad9c-1ca1bfb658b5', '', '', '', '', ''),
(2803, '', '', '', '', '', '', '', '', '', '', '', '', '', '', 'MyMakita Placeholders (product registration)', 'NOT NULL', '', 14, '\"<field\\n\\ttype=\\\"note\\\"\\n\\tname=\\\"product_registration_email_placeholders\\\"\\n\\tlabel=\\\"Product Registration Email Placeholders\\\"\\n\\tdescription=\\\"<code>[name]<\\/code>\\r\\n<code>[surname]<\\/code>\\r\\n<code>[email]<\\/code>\\r\\n<code>[makita_url]<\\/code>\\\"\\n\\theading=\\\"h4\\\"\\n\\/>\"', 1, '2020-07-01 22:24:21', '2020-07-01 22:28:47', 3, '', 994, '2be2f07c-dbee-4012-a55f-93c1e8ffad33', '', '', '', '', ''),
(2804, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Competitions New Notice Template', 'NOT NULL', '', 8, '\"<field\\n\\ttype=\\\"editor\\\"\\n\\tname=\\\"competitions_notice_template\\\"\\n\\tlabel=\\\"Competitions New Notice Template\\\"\\n\\twidth=\\\"100%\\\"\\n\\theight=\\\"500px\\\"\\n\\tbuttons=\\\"no\\\"\\n\\tfilter=\\\"safehtml\\\"\\n\\/>\"', 1, '2020-07-02 19:59:24', '2020-07-02 19:59:15', 1, '', 991, 'a212fc6f-4cb7-49c0-ba38-003eb63ea387', '', '', '', '', ''),
(2805, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'Competitions', 'NOT NULL', '', 6, '\"<field\\n\\ttype=\\\"competitions\\\"\\n\\tname=\\\"competition\\\"\\n\\tlabel=\\\"Competition\\\"\\n\\tdescription=\\\"Select the competition being participated in\\\"\\n\\tclass=\\\"list_class\\\"\\n\\tmultiple=\\\"false\\\"\\n\\tdefault=\\\"0\\\"\\n\\trequired=\\\"true\\\"\\n\\tvalidate=\\\"INT\\\"\\n\\textends=\\\"list\\\"\\n\\tbutton=\\\"true\\\"\\n\\ttable=\\\"#__###component###_competition\\\"\\n\\tcomponent=\\\"com_###component###\\\"\\n\\tview=\\\"competition\\\"\\n\\tviews=\\\"competitions\\\"\\n\\tvalue_field=\\\"name\\\"\\n\\tkey_field=\\\"id\\\"\\n\\tprime_php=\\\"1\\\"\\n\\ttype_php_1=\\\"__.o0=base64=Oo.__Ly8gR2V0IHRoZSB1c2VyIG9iamVjdC4NCgkJJHVzZXIgPSBKRmFjdG9yeTo6Z2V0VXNlcigpOw0KCQkvLyBHZXQgdGhlIGRhdGFic2Ugb2JqZWN0Lg0KCQkkZGIgPSBKRmFjdG9yeTo6Z2V0REJPKCk7DQoJCSRxdWVyeSA9ICRkYi0+Z2V0UXVlcnkodHJ1ZSk7DQoJCSRxdWVyeS0+c2VsZWN0KCRkYi0+cXVvdGVOYW1lKGFycmF5KCdhLiMjI0lEIyMjJywnYS4jIyNURVhUIyMjJyksYXJyYXkoJyMjI0lEIyMjJywnIyMjQ09ERV9URVhUIyMjJykpKTsNCgkJJHF1ZXJ5LT5mcm9tKCRkYi0+cXVvdGVOYW1lKCcjIyNUQUJMRSMjIycsICdhJykpOw0KCQkkcXVlcnktPndoZXJlKCRkYi0+cXVvdGVOYW1lKCdhLnB1Ymxpc2hlZCcpIC4gJyA+PSAxJyk7DQoJCSRxdWVyeS0+b3JkZXIoJ2EuIyMjVEVYVCMjIyBBU0MnKTsNCgkJLy8gSW1wbGVtZW50IFZpZXcgTGV2ZWwgQWNjZXNzIChpZiBzZXQgaW4gdGFibGUpDQoJCWlmICghJHVzZXItPmF1dGhvcmlzZSgnY29yZS5vcHRpb25zJywgJ1tbW2NvbV9jb21wb25lbnRdXV0nKSkNCgkJew0KCQkJJGNvbHVtbnMgPSAkZGItPmdldFRhYmxlQ29sdW1ucygnIyMjVEFCTEUjIyMnKTsNCgkJCWlmKGlzc2V0KCRjb2x1bW5zWydhY2Nlc3MnXSkpDQoJCQl7DQoJCQkJJGdyb3VwcyA9IGltcGxvZGUoJywnLCAkdXNlci0+Z2V0QXV0aG9yaXNlZFZpZXdMZXZlbHMoKSk7DQoJCQkJJHF1ZXJ5LT53aGVyZSgnYS5hY2Nlc3MgSU4gKCcgLiAkZ3JvdXBzIC4gJyknKTsNCgkJCX0NCgkJfQ0KCQkkZGItPnNldFF1ZXJ5KChzdHJpbmcpJHF1ZXJ5KTsNCgkJJGl0ZW1zID0gJGRiLT5sb2FkT2JqZWN0TGlzdCgpOw0KCQkkb3B0aW9ucyA9IGFycmF5KCk7DQoJCWlmICgkaXRlbXMpDQoJCXsNCgkJCSRvcHRpb25zW10gPSBKSHRtbDo6Xygnc2VsZWN0Lm9wdGlvbicsICcnLCAnU2VsZWN0IGEgY29tcGV0aXRpb24nKTsNCgkJCWZvcmVhY2goJGl0ZW1zIGFzICRpdGVtKQ0KCQkJew0KCQkJCSRvcHRpb25zW10gPSBKSHRtbDo6Xygnc2VsZWN0Lm9wdGlvbicsICRpdGVtLT4jIyNJRCMjIywgJGl0ZW0tPiMjI0NPREVfVEVYVCMjIyk7DQoJCQl9DQoJCX0NCgkJcmV0dXJuICRvcHRpb25zOw==\\\"\\n\\/>\"', 1, '2020-07-02 20:43:53', '0000-00-00 00:00:00', 1, '', 995, 'c0369cdb-dbf2-40fa-ab56-91ad212fd46f', '', '', '', '', ''),
(2806, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'GUID (product)', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"guid\\\"\\n\\tlabel=\\\"Product - GUID\\\"\\n\\tsize=\\\"40\\\"\\n\\tmaxlength=\\\"40\\\"\\n\\tdescription=\\\"Product\'s Globally Unique Identifier\\\"\\n\\tclass=\\\"text_area\\\"\\n\\treadonly=\\\"true\\\"\\n\\tfilter=\\\"CMD\\\"\\n\\tvalidate=\\\"guid\\\"\\n\\thint=\\\"Auto Generated\\\"\\n\\/>\"', 1, '2020-07-02 23:56:23', '2020-07-03 00:15:40', 5, '', 960, '5c30ea47-ec2d-40af-847b-27be476c88b3', '', '', '', '', ''),
(2807, '', '', '', '', '', '', '', '', 7, '', 'INT', 2, '', '', 'You are', 'NOT NULL', '', 11, '\"<field\\n\\ttype=\\\"list\\\"\\n\\tname=\\\"main_interest\\\"\\n\\tlabel=\\\"You are\\\"\\n\\tmultiple=\\\"false\\\"\\n\\tfilter=\\\"INT\\\"\\n\\trequired=\\\"true\\\"\\n\\toption=\\\"|Please select,1|Beautician,2|Spa manager,3|Wellness \\/ spa practitioner,4|Look stylist,5|Nail prosthetist,6|Professional dermopigmentation,7|Make-up artist,8|Socio-esthetician,9|Teacher \\/ trainer,10|Student,11|Project leader,12|Other\\\"\\n\\/>\"', 1, '2020-07-09 00:49:18', '2020-07-09 03:10:51', 6, '', 996, 'd3119985-db7c-495d-ba09-650743fda957', '', '', '', '', ''),
(2808, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Position (you are)', 'NOT NULL', '', 11, '\"<field\\n\\ttype=\\\"list\\\"\\n\\tname=\\\"position\\\"\\n\\tlabel=\\\"You are\\\"\\n\\tmultiple=\\\"false\\\"\\n\\tfilter=\\\"INT\\\"\\n\\trequired=\\\"true\\\"\\n\\toption=\\\"|Please select,1|Company manager,2|Self-employed,3|Employee\\\"\\n\\/>\"', 1, '2020-07-09 00:53:23', '2020-07-09 02:11:14', 5, '', 996, '5ce4cd85-8cc5-4e78-8dcc-f82500827289', '', '', '', '', ''),
(2809, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'You practice', 'NOT NULL', '', 11, '\"<field\\n\\ttype=\\\"list\\\"\\n\\tname=\\\"you_practice\\\"\\n\\tlabel=\\\"You practice\\\"\\n\\tmultiple=\\\"false\\\"\\n\\tfilter=\\\"INT\\\"\\n\\trequired=\\\"true\\\"\\n\\toption=\\\"|Please select,1|In an institute,2|In a spa,3|In a wellness establishment (hydrotherapy&comma; thalassotherapy&comma; fitness),4|In a spa hotel,5|At home\\\"\\n\\/>\"', 1, '2020-07-09 01:00:49', '2020-07-09 01:38:06', 4, '', 996, '3b1f5a69-355e-4cb0-a76c-0adbf7858c3f', '', '', '', '', ''),
(2810, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', 2, '', '', 'Department', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"department\\\"\\n\\tlabel=\\\"Department\\\"\\n\\tsize=\\\"40\\\"\\n\\tmaxlength=\\\"150\\\"\\n\\trequired=\\\"true\\\"\\n\\tfilter=\\\"STRING\\\"\\n\\thint=\\\"Department\\\"\\n\\/>\"', 1, '2020-07-09 01:03:35', '2020-07-09 01:02:53', 1, '', 4, 'aba089cf-66ed-4dd3-86bc-2367f10f4ef1', '', '', '', '', ''),
(2811, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Date planned for starting the activity', 'NOT NULL', '', 11, '\"<field\\n\\ttype=\\\"list\\\"\\n\\tname=\\\"date_starting_activity\\\"\\n\\tlabel=\\\"Date planned for starting the activity\\\"\\n\\tmultiple=\\\"false\\\"\\n\\tfilter=\\\"INT\\\"\\n\\trequired=\\\"true\\\"\\n\\toption=\\\"|Please select,1|2020,2|2021,3|Not determined\\\"\\n\\/>\"', 1, '2020-07-09 01:05:38', '2020-07-09 01:05:32', 1, '', 996, '9d773ab3-f086-41c3-8e39-1fec0cb9e88a', '', '', '', '', ''),
(2812, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Type of project', 'NOT NULL', '', 11, '\"<field\\n\\ttype=\\\"list\\\"\\n\\tname=\\\"type_project\\\"\\n\\tlabel=\\\"Type of project\\\"\\n\\tmultiple=\\\"false\\\"\\n\\tfilter=\\\"INT\\\"\\n\\trequired=\\\"true\\\"\\n\\toption=\\\"|Please select,1|Institute,2|Spa,3|Wellness center,4|Slimming center,5|Aesthetic pigmentation center,6|Nail bar,7|Look bar,8|At home\\\"\\n\\/>\"', 1, '2020-07-09 01:08:59', '2020-07-09 01:06:34', 1, '', 996, '9786a131-cb47-437a-8e5d-4032b0c30bdf', '', '', '', '', ''),
(2813, '', '', '', '', '', '', '', '', 7, '', 'INT', 2, '', '', 'You are (Other)', 'NOT NULL', '', 11, '\"<field\\n\\ttype=\\\"list\\\"\\n\\tname=\\\"main_interest_other\\\"\\n\\tlabel=\\\"Other\\\"\\n\\tmultiple=\\\"false\\\"\\n\\tfilter=\\\"INT\\\"\\n\\trequired=\\\"true\\\"\\n\\toption=\\\"|Please select,1|Aesthetic distributor,2|Commercial agent or sales representative (aesthetic specialty),3|Other\\\"\\n\\/>\"', 1, '2020-07-09 01:20:06', '2020-07-09 02:19:11', 3, '', 996, 'bbc19fc3-e582-44fa-bd88-141085d0de37', '', '', '', '', ''),
(2814, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'What kind of products do you want to discover at the show?', 'NOT NULL', '', 4, '\"<field\\n\\ttype=\\\"checkboxes\\\"\\n\\tname=\\\"products_interest\\\"\\n\\tlabel=\\\"What kind of products do you want to discover at the show?\\\"\\n\\toption=\\\"1|Resale products,2|Organic and eco responsible products,3|Cards&comma; products&comma; and gift boxes,4|Supplies and consumables for the cabin,5|Hygiene and sanitary protection products,6|Cashier&comma; management&comma; reservation&comma; and online sales solutions,7|Training\\\"\\n\\trequired=\\\"true\\\"\\n\\/>\"', 1, '2020-07-09 01:30:22', '2020-07-09 01:39:21', 2, '', 996, 'c570830f-2dff-4bf3-a45e-b227ce3601f3', '', '', '', '', ''),
(2815, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'What topics are you interested in?', 'NOT NULL', '', 4, '\"<field\\n\\ttype=\\\"checkboxes\\\"\\n\\tname=\\\"topics_interest\\\"\\n\\tlabel=\\\"What topics are you interested in?\\\"\\n\\toption=\\\"1|What training to choose?,2|What are the new features?,3|What are the salon promotions?,4|How can I manage my institute better?,5|How to sell and communicate better?,6|How to develop my activity?,7|How to rebound after the health crisis?\\\"\\n\\trequired=\\\"true\\\"\\n\\/>\"', 1, '2020-07-09 01:36:02', '2020-07-09 01:24:08', 1, '', 996, '278ed7a4-80d4-4488-8ac7-1fa9ad34b2e8', '', '', '', '', ''),
(2816, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'What are your areas of interest?', 'NOT NULL', '', 4, '\"<field\\n\\ttype=\\\"checkboxes\\\"\\n\\tname=\\\"areas_interest\\\"\\n\\tlabel=\\\"What are your areas of interest?\\\"\\n\\toption=\\\"1|Hair removal,2|Pulsed light,3|Facial cosmetics,4|Anti-Aging Techniques,5|Natural and organic care,6|Slimming and body shaping,7|Massages and wellness treatments,8|Micro Needling,9|Hyaluron Pen,10|Microblading,11|Dermo pigmentation,12|Eyelash extensions,13|Eyelash enhancements \\/ dyes \\/ care,14|Eyebrow aesthetics,15|Makeup,16|Tanning,17|Teeth whitening,18|Beauty of feet and hands,19|Nail design and Nail art\\\"\\n\\trequired=\\\"true\\\"\\n\\/>\"', 1, '2020-07-09 02:18:28', '2020-07-09 01:24:08', 1, '', 996, 'f696a217-c013-4a60-bcf6-03e4282d11d5', '', '', '', '', ''),
(2817, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'Region (contactdetails)', 'NOT NULL', '', 6, '\"<field\\n\\ttype=\\\"regions\\\"\\n\\tname=\\\"region\\\"\\n\\tlabel=\\\"Region\\\"\\n\\tdescription=\\\"Please select the region.\\\"\\n\\tclass=\\\"list_class\\\"\\n\\tmultiple=\\\"false\\\"\\n\\trequired=\\\"true\\\"\\n\\textends=\\\"list\\\"\\n\\tbutton=\\\"true\\\"\\n\\ttable=\\\"#__[[[contactdetails]]]_region\\\"\\n\\tcomponent=\\\"com_[[[contactdetails]]]\\\"\\n\\tview=\\\"region\\\"\\n\\tviews=\\\"regions\\\"\\n\\tvalue_field=\\\"name\\\"\\n\\tkey_field=\\\"id\\\"\\n\\ttype_php_1=\\\"__.o0=base64=Oo.__Ly8gR2V0IHRoZSB1c2VyIG9iamVjdC4NCgkJJHVzZXIgPSBKRmFjdG9yeTo6Z2V0VXNlcigpOw0KCQkvLyBHZXQgdGhlIGRhdGFic2Ugb2JqZWN0Lg0KCQkkZGIgPSBKRmFjdG9yeTo6Z2V0REJPKCk7DQoJCSRxdWVyeSA9ICRkYi0+Z2V0UXVlcnkodHJ1ZSk7DQoJCSRxdWVyeS0+c2VsZWN0KCRkYi0+cXVvdGVOYW1lKGFycmF5KCdhLiMjI0lEIyMjJywnYS4jIyNURVhUIyMjJywnYi5jb2RldHdvJyksYXJyYXkoJyMjI0lEIyMjJywnIyMjQ09ERV9URVhUIyMjJywgJ2NvdW50cnknKSkpOw0KCQkkcXVlcnktPmZyb20oJGRiLT5xdW90ZU5hbWUoJyMjI1RBQkxFIyMjJywgJ2EnKSk7DQoJCSRxdWVyeS0+am9pbignTEVGVCcsICcjX19bW1tjb250YWN0ZGV0YWlsc11dXV9jb3VudHJ5IEFTIGIgT04gYi5pZCA9IGEuY291bnRyeScpOw0KCQkkcXVlcnktPndoZXJlKCRkYi0+cXVvdGVOYW1lKCdhLnB1Ymxpc2hlZCcpIC4gJyA9IDEnKTsNCgkJJHF1ZXJ5LT5vcmRlcignYS4jIyNURVhUIyMjIEFTQycpOw0KCQkkZGItPnNldFF1ZXJ5KChzdHJpbmcpJHF1ZXJ5KTsNCgkJJGl0ZW1zID0gJGRiLT5sb2FkT2JqZWN0TGlzdCgpOw0KCQkkb3B0aW9ucyA9IGFycmF5KCk7DQoJCWlmICgkaXRlbXMpDQoJCXsNCgkJCSRvcHRpb25zW10gPSBKSHRtbDo6Xygnc2VsZWN0Lm9wdGlvbicsICcnLCAnU2VsZWN0IGEgcmVnaW9uJyk7DQoJCQlmb3JlYWNoKCRpdGVtcyBhcyAkaXRlbSkNCgkJCXsNCgkJCQkkb3B0aW9uc1tdID0gSkh0bWw6Ol8oJ3NlbGVjdC5vcHRpb24nLCAkaXRlbS0+IyMjSUQjIyMsICRpdGVtLT4jIyNDT0RFX1RFWFQjIyMpOw0KCQkJfQ0KCQl9DQoJCXJldHVybiAkb3B0aW9uczs=\\\"\\n\\/>\"', 1, '2020-07-09 04:00:49', '2020-07-09 04:01:58', 2, '', 667, '9c216e29-4864-41b1-a690-8a742b02effb', '', '', '', '', ''),
(2818, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', 2, '', '', 'SubForm Layout', 'NOT NULL', '', 11, '\"<field\\n\\ttype=\\\"list\\\"\\n\\tname=\\\"layout\\\"\\n\\tlabel=\\\"Layout\\\"\\n\\tclass=\\\"list_class\\\"\\n\\tmultiple=\\\"false\\\"\\n\\tfilter=\\\"CMD\\\"\\n\\trequired=\\\"true\\\"\\n\\toption=\\\"joomla.form.field.subform.repeatable-table|Repeatable-table (joomla),joomla.form.field.subform.repeatable|Repeatable (Joomla),[[[uikit_subform_layout]]]|Repeatable (UIkit)\\\"\\n\\tdefault=\\\"joomla.form.field.subform.repeatable-table\\\"\\n\\/>\"', 1, '2020-07-12 22:13:27', '2024-03-15 09:06:35', 7, '', 997, 'a2353e9f-f1d7-4146-8d56-93a04e7f4a24', '', '', '', '', ''),
(2819, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', 2, '', '', 'SubForm View-Field', 'NOT NULL', '', 11, '\"<field\\n\\ttype=\\\"list\\\"\\n\\tname=\\\"view_field\\\"\\n\\tlabel=\\\"View & Field\\\"\\n\\tclass=\\\"list_class\\\"\\n\\tmultiple=\\\"false\\\"\\n\\tfilter=\\\"CMD\\\"\\n\\trequired=\\\"true\\\"\\n\\toption=\\\"default|Default,admin_custom_tabs.tabs|Admin Custom Tabs (tabs),admin_fields.addfields|Admin Fields (addfields),admin_fields_conditions.addconditions|Admin Fields Conditions (addconditions),admin_fields_relations.addrelations|Admin Fields Relations (addrelations),component_dashboard.dashboard_tab|Component Dashboard (dashboard_tab),component_updates.version_update|Component Updates (version_update),component_admin_views.addadmin_views|Component Admin Views (addadmin_views),component_custom_admin_views.addcustom_admin_views|Component Custom Admin Views (addcustom_admin_views),component_custom_admin_menus.addcustommenus|Component Custom Admin Menus (addcustommenus),component_site_views.addsite_views|Component Site Views (addsite_views),dynamic_get.join_db_table|Dynamic Get (join_db_table),dynamic_get.join_view_table|Dynamic Get (join_view_table),fieldtype.properties|Fieldtype (properties),joomla_module_updates.version_update|Joomla Module Updates (version_update),joomla_plugin_updates.version_update|Joomla Plugin Updates (version_update)\\\"\\n\\tdefault=\\\"default\\\"\\n\\/>\"', 1, '2020-07-13 02:25:33', '2021-12-16 05:13:26', 2, '', 997, '49e51452-0a34-4993-a821-4ca176b73e11', '', '', '', '', ''),
(2820, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'SubForm Selection', 'NOT NULL', '', 35, '\"<field\\n\\ttype=\\\"subform\\\"\\n\\tname=\\\"subform_layouts\\\"\\n\\tlabel=\\\"Sub-form Layouts\\\"\\n\\tlayout=\\\"joomla.form.field.subform.repeatable-table\\\"\\n\\tmultiple=\\\"true\\\"\\n\\tbuttons=\\\"add,remove,move\\\"\\n\\tfields=\\\"2819,2818\\\"\\n\\tdescription=\\\"Select the sub-form layouts you would like to use.\\\"\\n\\ticon=\\\"list\\\"\\n\\tmax=\\\"9\\\"\\n\\tmin=\\\"1\\\"\\n\\/>\"', 1, '2020-07-13 02:29:22', '2020-07-13 02:30:44', 2, '', 997, '25cbf9d1-d8b8-4b2e-9c53-c46dffbc7b29', '', '', '', '', ''),
(2821, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Registration email body (HTML)', 'NOT NULL', '', 8, '\"<field\\n\\ttype=\\\"editor\\\"\\n\\tname=\\\"registration_email_body\\\"\\n\\tlabel=\\\"Registration email body\\\"\\n\\twidth=\\\"100%\\\"\\n\\theight=\\\"600\\\"\\n\\tcols=\\\"15\\\"\\n\\trows=\\\"20\\\"\\n\\tbuttons=\\\"false\\\"\\n\\tfilter=\\\"safehtml\\\"\\n\\/>\"', 1, '2020-07-15 03:02:41', '2019-07-08 14:17:39', 1, '', 661, 'b50e90d6-6aec-4de5-a07c-2e64cc8e8b76', '', '', '', '', ''),
(2822, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Registration email text body', 'NOT NULL', '', 25, '\"<field\\n\\ttype=\\\"textarea\\\"\\n\\tname=\\\"registration_email_text_body\\\"\\n\\tlabel=\\\"Registration email text body\\\"\\n\\trows=\\\"20\\\"\\n\\tcols=\\\"15\\\"\\n\\tclass=\\\"text_area span12\\\"\\n\\tfilter=\\\"HTML\\\"\\n\\thint=\\\"\\/\\/ Add the Text Body here.\\\"\\n\\trequired=\\\"true\\\"\\n\\/>\"', 1, '2020-07-15 03:04:42', '2015-08-25 21:15:22', 1, '', 366, '94f506b4-3d68-48e0-aac1-30866d3792d2', '', '', '', '', ''),
(2823, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Registration email subject', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"registration_email_subject\\\"\\n\\tlabel=\\\"Registration Email Subject\\\"\\n\\tsize=\\\"50\\\"\\n\\tmaxlength=\\\"150\\\"\\n\\tdescription=\\\"Enter subject for the registration email.\\\"\\n\\tclass=\\\"text_area span12\\\"\\n\\tfilter=\\\"STRING\\\"\\n\\tmessage=\\\"Error! Please add some text here.\\\"\\n\\thint=\\\"Subject for the registration email\\\"\\n\\/>\"', 1, '2020-07-15 03:06:45', '2020-07-17 02:54:37', 2, '', 741, 'a3f6b2bf-5222-4b12-85c2-34376035a516', '', '', '', '', ''),
(2824, '', '', '', '', '', '', '', '', '', '', '', '', '', '', 'Registration Email Placeholder', 'NOT NULL', '', 14, '\"<field\\n\\ttype=\\\"note\\\"\\n\\tname=\\\"registration_email_placeholder\\\"\\n\\tlabel=\\\"Registration Email Placeholder\\\"\\n\\tdescription=\\\"<code>[name]<\\/code>\\r\\n<code>[sitename]<\\/code>\\r\\n<code>[activate]<\\/code>\\r\\n<code>[siteurl]<\\/code>\\r\\n<code>[username]<\\/code>\\r\\n<code>[password]<\\/code>\\\"\\n\\theading=\\\"h4\\\"\\n\\/>\"', 1, '2020-07-15 03:09:02', '2020-07-01 22:28:47', 1, '', 994, '496488e9-955a-4c4a-912c-9a12dba2d8e6', '', '', '', '', ''),
(2825, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'Sync Active (constant contact)', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"sync_active\\\"\\n\\tlabel=\\\"Sync Active\\\"\\n\\tdescription=\\\"Turn on the sync options with constant contact\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"1|Yes,0|No\\\"\\n\\tdefault=\\\"0\\\"\\n\\/>\"', 1, '2020-07-21 02:38:25', '2020-07-21 02:51:23', 2, '', 998, '1f7cb103-4be4-4d1b-b107-88b6e68a9c08', '', '', '', '', ''),
(2826, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'APP Key (constant contact)', 'NOT NULL', 3, 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"app_key\\\"\\n\\tlabel=\\\"APP Key<br \\/><small>(encrypted field)<\\/small>\\\"\\n\\tsize=\\\"50\\\"\\n\\tmaxlength=\\\"50\\\"\\n\\tdescription=\\\"Enter your APP key here.\\\"\\n\\tclass=\\\"text_area\\\"\\n\\tfilter=\\\"STRING\\\"\\n\\/>\"', 1, '2020-07-21 02:39:50', '2020-07-22 00:10:04', 8, '', 998, '6e19b47d-512c-4023-8bae-e04aeef06162', '', '', '', '', ''),
(2827, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'Push Limit (constant contact)', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"push_limit\\\"\\n\\tlabel=\\\"Push Limit\\\"\\n\\tsize=\\\"50\\\"\\n\\tmaxlength=\\\"50\\\"\\n\\tdefault=\\\"500\\\"\\n\\tdescription=\\\"The number of items to push per\\/update\\\"\\n\\tclass=\\\"text_area\\\"\\n\\tfilter=\\\"INT\\\"\\n\\thint=\\\"Only Numbers\\\"\\n\\tonchange=\\\"if(!jQuery(this).val().match(\\/^\\\\d+$\\/)){jQuery(this).val(\'\')};\\\"\\n\\/>\"', 1, '2020-07-21 02:43:34', '2020-07-22 00:11:00', 4, '', 998, 'c375cb9f-798f-4f2c-ba7f-2b04992ad288', '', '', '', '', ''),
(2828, '', '', '', '', '', '', '', '', 50, '', 'VARCHAR', '', '', '', 'List id (constant contact)', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"list_id\\\"\\n\\tlabel=\\\"ID\\\"\\n\\tsize=\\\"50\\\"\\n\\tmaxlength=\\\"50\\\"\\n\\tclass=\\\"text_area\\\"\\n\\tfilter=\\\"STRING\\\"\\n\\/>\"', 1, '2020-07-21 02:45:28', '2020-07-21 02:40:50', 1, '', 998, '6cb7645e-d56f-4e4e-b8b1-03f2ea9161bf', '', '', '', '', ''),
(2829, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'List ids (constant contact)', 'NOT NULL', '', 35, '\"<field\\n\\ttype=\\\"subform\\\"\\n\\tname=\\\"list_ids\\\"\\n\\tlabel=\\\"List ids\\\"\\n\\tlayout=\\\"joomla.form.field.subform.repeatable-table\\\"\\n\\tmultiple=\\\"true\\\"\\n\\tbuttons=\\\"add,remove,move\\\"\\n\\tfields=\\\"2828\\\"\\n\\tdescription=\\\"The email list Ids\\\"\\n\\ticon=\\\"list\\\"\\n\\tmax=\\\"10\\\"\\n\\tmin=\\\"1\\\"\\n\\/>\"', 1, '2020-07-21 02:47:26', '2020-07-22 00:10:15', 5, '', 998, '0739a097-ec58-4f92-ab36-4143d9a02a9e', '', '', '', '', ''),
(2830, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'APP Secret (constant contact)', 'NOT NULL', 3, 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"app_secret\\\"\\n\\tlabel=\\\"APP Secret<br \\/><small>(encrypted field)<\\/small>\\\"\\n\\tsize=\\\"50\\\"\\n\\tmaxlength=\\\"50\\\"\\n\\tdescription=\\\"Enter your APP secret here.\\\"\\n\\tclass=\\\"text_area\\\"\\n\\tfilter=\\\"STRING\\\"\\n\\/>\"', 1, '2020-07-21 03:38:24', '2020-07-22 00:32:57', 3, '', 998, '431dda2a-d242-40f2-8296-beabe0ba56d2', '', '', '', '', ''),
(2831, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Access Token (constant contact)', 'NOT NULL', 3, 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"access_token\\\"\\n\\tlabel=\\\"Access Token<br \\/><small>(encrypted field)<\\/small>\\\"\\n\\tsize=\\\"50\\\"\\n\\tmaxlength=\\\"50\\\"\\n\\tclass=\\\"text_area\\\"\\n\\treadonly=\\\"true\\\"\\n\\tfilter=\\\"STRING\\\"\\n\\thint=\\\"Added Automatically Once Authenticated\\\"\\n\\/>\"', 1, '2020-07-21 03:40:50', '2020-07-22 00:09:05', 6, '', 998, '5b61235c-ea51-47a6-a9c5-56fa3df38f17', '', '', '', '', ''),
(2832, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Refresh Token (constant contact)', 'NOT NULL', 3, 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"refresh_token\\\"\\n\\tlabel=\\\"Refresh Token<br \\/><small>(encrypted field)<\\/small>\\\"\\n\\tsize=\\\"50\\\"\\n\\tmaxlength=\\\"50\\\"\\n\\tclass=\\\"text_area\\\"\\n\\treadonly=\\\"true\\\"\\n\\tfilter=\\\"STRING\\\"\\n\\thint=\\\"Added Automatically Once Authenticated\\\"\\n\\/>\"', 1, '2020-07-21 03:41:32', '2020-07-22 00:09:34', 3, '', 998, '93d5d533-033e-433d-b5bf-0d26a590c5a6', '', '', '', '', ''),
(2833, '', '', '', '', '', '', '', '', '', '', '', '', '', '', 'Cron Path (constant contact)', 'NOT NULL', '', 14, '\"<field\\r\\n\\ttype=\\\"note\\\"\\r\\n\\tname=\\\"cron_path\\\"\\r\\n\\tlabel=\\\"Cron Path\\\"\\r\\n\\tdescription=\\\"You can run a cronjob that will sync all your contacts with constant contact.<br \\/><br \\/><b>USE THE FOLLOWING:<\\/b> <span id=\'cronjob-sync\'>loading...<span class=\'loading-dots\' ><\\/span><\\/span><br \\/><br \\/>Please note that if your Joomla website has a Firewall installed, it will not allow cronjob via direct URL (most of the time), you will then need to adapt the cornjob request to look like a browser. For more info please read https:\\/\\/stackoverflow.com\\/a\\/31597823\\/1429677\\r\\n<script type=\'text\\/javascript\'>\\r\\njQuery(document).ready(function($) {\\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\\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\\tgetCronPath(\'backup\', token);\\r\\n});\\r\\nfunction getCronPath_server(getType, token){\\r\\n\\tvar getUrl = \'index.php?option=com_###component###&task=ajax.getCronPath&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 getCronPath(getType, token){\\r\\n\\t getCronPath_server(getType, token).done(function(result) {\\r\\n\\t\\tif(result.path){\\r\\n\\t\\t\\tjQuery(\'#cronjob-\'+getType).html(result.path);\\r\\n\\t\\t} else if (result.error) {\\r\\n\\t\\t\\tjQuery(\'#cronjob-\'+getType).html(result.error);\\r\\n\\t\\t} else {\\r\\n\\t\\t\\tjQuery(\'#cronjob-\'+getType).html(\'<span style=\\\\\'color: red;\\\\\'>Error loading path!<\\/span>\');\\r\\n\\t\\t}\\r\\n\\t});\\r\\n}\\r\\n<\\/script>\\\"\\r\\n\\tshowon=\\\"sync_active:1\\\"\\r\\n\\/>\"', 1, '2020-07-21 03:42:44', '2020-07-21 03:59:34', 4, '', 998, '26a3fbc3-d79a-4e3d-b815-9ec2db54c2b7', '', '', '', '', ''),
(2834, '', '', '', '', '', '', '', '', 50, '', 'VARCHAR', '', '', '', 'App Name (no class)', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"name\\\"\\n\\tlabel=\\\"App Name\\\"\\n\\tsize=\\\"50\\\"\\n\\tmaxlength=\\\"50\\\"\\n\\tdescription=\\\"Enter App Name Here\\\"\\n\\trequired=\\\"true\\\"\\n\\tfilter=\\\"STRING\\\"\\n\\thint=\\\"YourAppName\\\"\\n\\/>\"', 1, '2020-07-21 23:58:23', '2020-07-21 23:58:45', 2, '', 85, 'd25871a7-3c14-40ce-8ec8-c9c6b03cc3fc', '', '', '', '', ''),
(2835, '', '', '', '', '', '', 1, '', 11, '', 'INT', 2, '', '', 'Next ID (constant contact)', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"next_id\\\"\\n\\tlabel=\\\"Next ID\\\"\\n\\tsize=\\\"50\\\"\\n\\tmaxlength=\\\"50\\\"\\n\\tdescription=\\\"The next ID to start at\\\"\\n\\tclass=\\\"text_area\\\"\\n\\treadonly=\\\"true\\\"\\n\\tdefault=\\\"1\\\"\\n\\tfilter=\\\"INT\\\"\\n\\thint=\\\"Auto Set\\\"\\n\\/>\"', 1, '2020-07-22 00:12:46', '2020-07-26 02:43:43', 2, '', 998, 'b7a193e9-62e9-455b-9060-84f4feb6eec9', '', '', '', '', ''),
(2836, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Allow Empty', 'NOT NULL', '', 3, '\"<field\\n\\ttype=\\\"checkbox\\\"\\n\\tname=\\\"empty\\\"\\n\\tlabel=\\\"Allow\\\"\\n\\tvalue=\\\"1\\\"\\n\\tdefault=\\\"0\\\"\\n\\tdescription=\\\"Empty\\\"\\n\\tclass=\\\"inputbox\\\"\\n\\/>\"', 1, '2020-07-26 15:41:52', '0000-00-00 00:00:00', 1, '', 999, 'edd177fc-4fef-4fa3-861a-aa43ec59c4fb', '', '', '', '', ''),
(2837, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Export Language Strings', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"export_language_strings\\\"\\n\\tlabel=\\\"Export Language Strings\\\"\\n\\tdescription=\\\"All the export of language strings during JCB package export.\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"1|Yes,0|No\\\"\\n\\tdefault=\\\"1\\\"\\n\\/>\"', 1, '2020-07-27 23:22:38', '0000-00-00 00:00:00', 1, '', 1000, '47d0721d-3c79-4c03-808c-4a51c70eea01', '', '', '', '', ''),
(2838, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Email Recipients', 'NOT NULL', '', 35, '\"<field\\n\\ttype=\\\"subform\\\"\\n\\tname=\\\"email\\\"\\n\\tlabel=\\\"Email Recipients\\\"\\n\\tlayout=\\\"joomla.form.field.subform.repeatable-table\\\"\\n\\tmultiple=\\\"true\\\"\\n\\tbuttons=\\\"add,remove,move\\\"\\n\\tfields=\\\"1,2,3\\\"\\n\\tdescription=\\\"Set the email recipients for this message.\\\"\\n\\ticon=\\\"list\\\"\\n\\tmax=\\\"10\\\"\\n\\tmin=\\\"1\\\"\\n\\/>\"', 2, '2020-07-30 00:52:30', '0000-00-00 00:00:00', 1, '', 896, 'accbcf10-9024-4ed0-8da5-e6146ca644d3', '', '', '', '', ''),
(2839, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Remove all line breaks', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"remove_line_breaks\\\"\\n\\tlabel=\\\"Remove line breaks<br \\/><small>from language strings<\\/small>\\\"\\n\\tdescription=\\\"Should we remove all line breaks (&quot;\\\\r&quot;, &quot;\\\\n&quot;) from all language strings in this component.\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"1|Yes,0|No\\\"\\n\\tdefault=\\\"0\\\"\\n\\trequired=\\\"true\\\"\\n\\/>\"', 1, '2020-08-19 00:07:06', '2020-08-19 00:46:29', 7, '', 1001, '2089f202-667a-4fbd-881c-cc0fe1343ce4', '', '', '', '', ''),
(2840, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Target Header Area (admin)', 'NOT NULL', '', 11, '\"<field\\n\\ttype=\\\"list\\\"\\n\\tname=\\\"target\\\"\\n\\tlabel=\\\"Target\\\"\\n\\tdescription=\\\"Header Area\\\"\\n\\tmessage=\\\"\\\"\\n\\tclass=\\\"list_class\\\"\\n\\tmultiple=\\\"false\\\"\\n\\trequired=\\\"true\\\"\\n\\toption=\\\"|Select an option,\\r\\nadmin.view.controller,\\r\\nadmin.view.model,\\r\\nadmin.views.controller,\\r\\nadmin.views.model\\\"\\n\\tdefault=\\\"\\\"\\n\\/>\"', 1, '2020-10-27 01:13:19', '2020-10-27 03:23:31', 6, '', 1002, '76e9003d-46f3-42f5-9606-3cd4737e2f34', '', '', '', '', ''),
(2841, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Target Header Area (custom-admin)', 'NOT NULL', '', 11, '\"<field\\n\\ttype=\\\"list\\\"\\n\\tname=\\\"target\\\"\\n\\tlabel=\\\"Target\\\"\\n\\tdescription=\\\"Header Area\\\"\\n\\tmessage=\\\"\\\"\\n\\tclass=\\\"list_class\\\"\\n\\tmultiple=\\\"false\\\"\\n\\trequired=\\\"true\\\"\\n\\toption=\\\"custom.admin.view.controller|custom.admin.view.model|custom.admin.views.controller|custom.admin.views.model\\\"\\n\\/>\"', 1, '2020-10-27 01:32:49', '2020-10-27 01:34:29', 3, '', 1002, '6def1935-322e-4906-85e4-c749ae481b63', '', '', '', '', ''),
(2842, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Target Header Area (site)', 'NOT NULL', '', 11, '\"<field\\n\\ttype=\\\"list\\\"\\n\\tname=\\\"target\\\"\\n\\tlabel=\\\"Target\\\"\\n\\tdescription=\\\"Header Area\\\"\\n\\tmessage=\\\"\\\"\\n\\tclass=\\\"list_class\\\"\\n\\tmultiple=\\\"false\\\"\\n\\trequired=\\\"true\\\"\\n\\toption=\\\"site.view.controller|site.view.model|site.views.controller|site.views.model\\\"\\n\\/>\"', 1, '2020-10-27 01:33:23', '2020-10-27 01:33:53', 2, '', 1002, '6070f656-eb5b-4bbc-ac36-8aefe4303082', '', '', '', '', ''),
(2843, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Set Class Headers (admin)', 'NOT NULL', '', 35, '\"<field\\n\\ttype=\\\"subform\\\"\\n\\tname=\\\"headers\\\"\\n\\tlabel=\\\"Set Class Headers\\\"\\n\\tlayout=\\\"joomla.form.field.subform.repeatable\\\"\\n\\tmultiple=\\\"true\\\"\\n\\tbuttons=\\\"add,remove\\\"\\n\\tfields=\\\"2840,2573\\\"\\n\\ticon=\\\"list\\\"\\n\\tmax=\\\"4\\\"\\n\\tshowon=\\\"add_class_headers:1\\\"\\n\\/>\"', 1, '2020-10-27 01:42:54', '2020-10-27 01:45:14', 3, '', 1003, 'a650531a-d748-42bb-b5f0-bd5e3adcb69c', '', '', '', '', ''),
(2844, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'Target Admin Views Model Header', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"add_admin_views_model\\\"\\n\\tlabel=\\\"Target Admin Views<br \\/>Model Header\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"1|Yes,0|No\\\"\\n\\tdefault=\\\"0\\\"\\n\\trequired=\\\"true\\\"\\n\\/>\"', 1, '2020-10-27 01:46:23', '2020-10-29 03:38:07', 6, '', 1004, '521554d7-5769-42ae-a061-374f2cc2c8fc', '', '', '', '', ''),
(2845, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Class Header (admin.view.controller)', 'NOT NULL', 2, 8, '\"<field\\n\\ttype=\\\"editor\\\"\\n\\tname=\\\"admin_view_controller\\\"\\n\\tlabel=\\\"Class Header<br \\/>\\r\\n<small>(admin.view.controller)<\\/small>\\\"\\n\\tdescription=\\\"The class header for admin view controller.\\\"\\n\\twidth=\\\"100%\\\"\\n\\theight=\\\"100px\\\"\\n\\tcols=\\\"15\\\"\\n\\trows=\\\"10\\\"\\n\\tbuttons=\\\"no\\\"\\n\\tsyntax=\\\"php\\\"\\n\\teditor=\\\"codemirror|none\\\"\\n\\tfilter=\\\"raw\\\"\\n\\trequired=\\\"false\\\"\\n\\tvalidate=\\\"code\\\"\\n\\tshowon=\\\"add_admin_view_controller:1\\\"\\n\\/>\"', 1, '2020-10-29 02:44:52', '2020-10-29 02:46:27', 3, '', 934, 'ff40a044-e681-4982-8883-87ad7d7a2099', '', '', '', '', ''),
(2846, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Class Header (admin.view.model)', 'NOT NULL', 2, 8, '\"<field\\n\\ttype=\\\"editor\\\"\\n\\tname=\\\"admin_view_model\\\"\\n\\tlabel=\\\"Class Header<br \\/>\\r\\n<small>(admin.view.model)<\\/small>\\\"\\n\\tdescription=\\\"The class header for admin view model.\\\"\\n\\twidth=\\\"100%\\\"\\n\\theight=\\\"100px\\\"\\n\\tcols=\\\"15\\\"\\n\\trows=\\\"10\\\"\\n\\tbuttons=\\\"no\\\"\\n\\tsyntax=\\\"php\\\"\\n\\teditor=\\\"codemirror|none\\\"\\n\\tfilter=\\\"raw\\\"\\n\\trequired=\\\"false\\\"\\n\\tvalidate=\\\"code\\\"\\n\\tshowon=\\\"add_admin_view_model:1\\\"\\n\\/>\"', 1, '2020-10-29 02:47:30', '2020-10-29 02:46:27', 1, '', 934, '9b7d3b24-c277-4a3f-af21-d37700cc72f8', '', '', '', '', ''),
(2847, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Class Header (admin.views.model)', 'NOT NULL', 2, 8, '\"<field\\n\\ttype=\\\"editor\\\"\\n\\tname=\\\"admin_views_model\\\"\\n\\tlabel=\\\"Class Header<br \\/>\\r\\n<small>(admin.views.model)<\\/small>\\\"\\n\\tdescription=\\\"The class header for admin views model.\\\"\\n\\twidth=\\\"100%\\\"\\n\\theight=\\\"100px\\\"\\n\\tcols=\\\"15\\\"\\n\\trows=\\\"10\\\"\\n\\tbuttons=\\\"no\\\"\\n\\tsyntax=\\\"php\\\"\\n\\teditor=\\\"codemirror|none\\\"\\n\\tfilter=\\\"raw\\\"\\n\\trequired=\\\"false\\\"\\n\\tvalidate=\\\"code\\\"\\n\\tshowon=\\\"add_admin_views_model:1\\\"\\n\\/>\"', 1, '2020-10-29 02:48:45', '2020-10-29 02:52:19', 3, '', 934, 'e2ed3d17-edf1-45fb-a29d-1901e4a8ba5b', '', '', '', '', ''),
(2848, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Class Header (admin.views.controller)', 'NOT NULL', 2, 8, '\"<field\\n\\ttype=\\\"editor\\\"\\n\\tname=\\\"admin_views_controller\\\"\\n\\tlabel=\\\"Class Header<br \\/>\\r\\n<small>(admin.views.controller)<\\/small>\\\"\\n\\tdescription=\\\"The class header for admin views controller.\\\"\\n\\twidth=\\\"100%\\\"\\n\\theight=\\\"100px\\\"\\n\\tcols=\\\"15\\\"\\n\\trows=\\\"10\\\"\\n\\tbuttons=\\\"no\\\"\\n\\tsyntax=\\\"php\\\"\\n\\teditor=\\\"codemirror|none\\\"\\n\\tfilter=\\\"raw\\\"\\n\\trequired=\\\"false\\\"\\n\\tvalidate=\\\"code\\\"\\n\\tshowon=\\\"add_admin_views_controller:1\\\"\\n\\/>\"', 1, '2020-10-29 02:51:18', '2020-10-29 02:49:35', 1, '', 934, '13546a7a-630a-48f9-9fe8-eb088916b45c', '', '', '', '', ''),
(2849, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'Target Admin View Model Header', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"add_admin_view_model\\\"\\n\\tlabel=\\\"Target Admin View<br \\/>Model Header\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"1|Yes,0|No\\\"\\n\\tdefault=\\\"0\\\"\\n\\trequired=\\\"true\\\"\\n\\/>\"', 1, '2020-10-29 02:54:14', '2020-10-29 03:38:01', 3, '', 1004, '110a65b7-0470-4e07-8ade-b5eeb51e9dd3', '', '', '', '', ''),
(2850, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'Target Admin View Controller Header', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"add_admin_view_controller\\\"\\n\\tlabel=\\\"Target Admin View<br \\/>Controller Header\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"1|Yes,0|No\\\"\\n\\tdefault=\\\"0\\\"\\n\\trequired=\\\"true\\\"\\n\\/>\"', 1, '2020-10-29 02:54:49', '2020-10-29 03:37:54', 4, '', 1004, 'cbd2ea79-7fa7-422e-ace3-413ed3dd4aeb', '', '', '', '', ''),
(2851, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'Target Admin Views Controller Header', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"add_admin_views_controller\\\"\\n\\tlabel=\\\"Target Admin Views<br \\/>Controller Header\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"1|Yes,0|No\\\"\\n\\tdefault=\\\"0\\\"\\n\\trequired=\\\"true\\\"\\n\\/>\"', 1, '2020-10-29 02:55:04', '2020-10-29 03:37:48', 4, '', 1004, '0ae14a98-1af4-434a-972a-762989107c74', '', '', '', '', ''),
(2852, '', '', '', '', '', '', '', '', 1, '', 'INT', 2, '', '', 'Filter Type', 'NOT NULL', '', 11, '\"<field\\n\\ttype=\\\"list\\\"\\n\\tname=\\\"filter\\\"\\n\\tlabel=\\\"Filter Type\\\"\\n\\tdescription=\\\"Select the type of filter to use in this list view.\\\"\\n\\tclass=\\\"fieldMedium\\\"\\n\\tmultiple=\\\"false\\\"\\n\\toption=\\\"1|Side (old),2|Above (new)\\\"\\n\\tdefault=\\\"2\\\"\\n\\/>\"', 1, '2020-11-14 03:03:43', '2020-12-03 03:58:37', 5, '', 589, 'ddd58f1e-95c1-4764-a168-0279dc141383', '', '', '', '', ''),
(2853, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'Target Site Views Controller Header', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"add_site_views_controller\\\"\\n\\tlabel=\\\"Target Site Views<br \\/>Controller Header\\\"\\n\\tdescription=\\\"Only use this option if you have a <b>getListQuery<\\/b> as your <b>Main Get<\\/b>, and have custom code in the <b>PHP (controller methods)<\\/b> under the Custom Buttons tab.\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"1|Yes,0|No\\\"\\n\\tdefault=\\\"0\\\"\\n\\trequired=\\\"true\\\"\\n\\/>\"', 1, '2020-12-08 03:21:25', '2020-12-08 05:02:16', 3, '', 1004, '68b4c21b-bb6c-4356-b5aa-bc6692fd7d91', '', '', '', '', ''),
(2854, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'Target Site View Controller Header', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"add_site_view_controller\\\"\\n\\tlabel=\\\"Target Site View<br \\/>Controller Header\\\"\\n\\tdescription=\\\"Only use this option if you have a <b>getItem<\\/b> as your <b>Main Get<\\/b>, and have custom code in the <b>PHP (controller methods)<\\/b> under the Custom Buttons tab.\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"1|Yes,0|No\\\"\\n\\tdefault=\\\"0\\\"\\n\\trequired=\\\"true\\\"\\n\\/>\"', 1, '2020-12-08 03:21:41', '2020-12-08 05:00:39', 4, '', 1004, '14a0c9fb-9e8c-46f1-b6fa-4bd2add7bf01', '', '', '', '', ''),
(2855, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'Target Site View Model Header', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"add_site_view_model\\\"\\n\\tlabel=\\\"Target Site View<br \\/>Model Header\\\"\\n\\tdescription=\\\"Only use this option if you have a <b>getItem<\\/b> as your <b>Main Get<\\/b>.\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"1|Yes,0|No\\\"\\n\\tdefault=\\\"0\\\"\\n\\trequired=\\\"true\\\"\\n\\/>\"', 1, '2020-12-08 03:22:14', '2020-12-08 05:04:59', 3, '', 1004, 'b6f2da33-7193-4cf6-85a0-d8ce9058b97f', '', '', '', '', ''),
(2856, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'Target Site Views Model Header', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"add_site_views_model\\\"\\n\\tlabel=\\\"Target Site Views<br \\/>Model Header\\\"\\n\\tdescription=\\\"Only use this option if you have a <b>getListQuery<\\/b> as your <b>Main Get<\\/b>.\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"1|Yes,0|No\\\"\\n\\tdefault=\\\"0\\\"\\n\\trequired=\\\"true\\\"\\n\\/>\"', 1, '2020-12-08 03:22:40', '2020-12-08 05:06:00', 3, '', 1004, 'a7c75e6e-f287-43ab-98cb-f0da8c0bc34a', '', '', '', '', ''),
(2857, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Class Header (site.views.controller)', 'NOT NULL', 2, 8, '\"<field\\n\\ttype=\\\"editor\\\"\\n\\tname=\\\"site_views_controller\\\"\\n\\tlabel=\\\"Class Header<br \\/>\\r\\n<small>(site.views.controller)<\\/small><br \\/>\\r\\n<b>getListQuery<\\/b>\\\"\\n\\tdescription=\\\"The class header for site views controller. Only use this option if you have a <b>getListQuery<\\/b> as your <b>Main Get<\\/b>, and have custom code in the <b>PHP (controller methods)<\\/b> under the Custom Buttons tab.\\\"\\n\\twidth=\\\"100%\\\"\\n\\theight=\\\"100px\\\"\\n\\tcols=\\\"15\\\"\\n\\trows=\\\"10\\\"\\n\\tbuttons=\\\"no\\\"\\n\\tsyntax=\\\"php\\\"\\n\\teditor=\\\"codemirror|none\\\"\\n\\tfilter=\\\"raw\\\"\\n\\trequired=\\\"false\\\"\\n\\tvalidate=\\\"code\\\"\\n\\tshowon=\\\"add_site_views_controller:1\\\"\\n\\/>\"', 1, '2020-12-08 03:23:35', '2020-12-08 05:02:42', 3, '', 934, '4d7ceeeb-bfac-4031-bc83-e1a852f4330a', '', '', '', '', ''),
(2858, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Class Header (site.views.model)', 'NOT NULL', 2, 8, '\"<field\\n\\ttype=\\\"editor\\\"\\n\\tname=\\\"site_views_model\\\"\\n\\tlabel=\\\"Class Header<br \\/>\\r\\n<small>(site.views.model)<\\/small><br \\/>\\r\\n<b>getListQuery<\\/b>\\\"\\n\\tdescription=\\\"The class header for site views model. Only use this option if you have a <b>getListQuery<\\/b> as your <b>Main Get<\\/b>.\\\"\\n\\twidth=\\\"100%\\\"\\n\\theight=\\\"100px\\\"\\n\\tcols=\\\"15\\\"\\n\\trows=\\\"10\\\"\\n\\tbuttons=\\\"no\\\"\\n\\tsyntax=\\\"php\\\"\\n\\teditor=\\\"codemirror|none\\\"\\n\\tfilter=\\\"raw\\\"\\n\\trequired=\\\"false\\\"\\n\\tvalidate=\\\"code\\\"\\n\\tshowon=\\\"add_site_views_model:1\\\"\\n\\/>\"', 1, '2020-12-08 03:23:53', '2020-12-08 05:05:36', 3, '', 934, 'cf253a7b-bdd3-4353-acec-d5f50b465cf4', '', '', '', '', ''),
(2859, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Class Header (site.view.model)', 'NOT NULL', 2, 8, '\"<field\\n\\ttype=\\\"editor\\\"\\n\\tname=\\\"site_view_model\\\"\\n\\tlabel=\\\"Class Header<br \\/>\\r\\n<small>(site.view.model)<\\/small><br \\/>\\r\\n<b>getItem<\\/b>\\\"\\n\\tdescription=\\\"The class header for site view model. Only use this option if you have a <b>getItem<\\/b> as your <b>Main Get<\\/b>.\\\"\\n\\twidth=\\\"100%\\\"\\n\\theight=\\\"100px\\\"\\n\\tcols=\\\"15\\\"\\n\\trows=\\\"10\\\"\\n\\tbuttons=\\\"no\\\"\\n\\tsyntax=\\\"php\\\"\\n\\teditor=\\\"codemirror|none\\\"\\n\\tfilter=\\\"raw\\\"\\n\\trequired=\\\"false\\\"\\n\\tvalidate=\\\"code\\\"\\n\\tshowon=\\\"add_site_view_model:1\\\"\\n\\/>\"', 1, '2020-12-08 03:24:13', '2020-12-08 05:04:10', 3, '', 934, '43a6a341-4ffe-45c1-a334-659fa18cad5f', '', '', '', '', ''),
(2860, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Class Header (site.view.controller)', 'NOT NULL', 2, 8, '\"<field\\n\\ttype=\\\"editor\\\"\\n\\tname=\\\"site_view_controller\\\"\\n\\tlabel=\\\"Class Header<br \\/>\\r\\n<small>(site.view.controller)<\\/small><br \\/>\\r\\n<b>getItem<\\/b>\\\"\\n\\tdescription=\\\"The class header for site view controller. Only use this option if you have a <b>getItem<\\/b> as your <b>Main Get<\\/b>, and have custom code in the <b>PHP (controller methods)<\\/b> under the Custom Buttons tab.\\\"\\n\\twidth=\\\"100%\\\"\\n\\theight=\\\"100px\\\"\\n\\tcols=\\\"15\\\"\\n\\trows=\\\"10\\\"\\n\\tbuttons=\\\"no\\\"\\n\\tsyntax=\\\"php\\\"\\n\\teditor=\\\"codemirror|none\\\"\\n\\tfilter=\\\"raw\\\"\\n\\trequired=\\\"false\\\"\\n\\tvalidate=\\\"code\\\"\\n\\tshowon=\\\"add_site_view_controller:1\\\"\\n\\/>\"', 1, '2020-12-08 03:25:13', '2020-12-08 05:00:28', 4, '', 934, 'c63bec45-cd7e-4a24-9396-ba6c814ccecf', '', '', '', '', ''),
(2861, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Class Header (custom.admin.view.controller)', 'NOT NULL', 2, 8, '\"<field\\n\\ttype=\\\"editor\\\"\\n\\tname=\\\"custom_admin_view_controller\\\"\\n\\tlabel=\\\"Class Header<br \\/>\\r\\n<small>(custom.admin.view.controller)<\\/small><br \\/>\\r\\n<b>getItem<\\/b>\\\"\\n\\tdescription=\\\"The class header for custom admin view controller. Only use this option if you have a <b>getItem<\\/b> as your <b>Main Get<\\/b>, and have custom code in the <b>PHP (controller methods)<\\/b> under the Custom Buttons tab.\\\"\\n\\twidth=\\\"100%\\\"\\n\\theight=\\\"100px\\\"\\n\\tcols=\\\"15\\\"\\n\\trows=\\\"10\\\"\\n\\tbuttons=\\\"no\\\"\\n\\tsyntax=\\\"php\\\"\\n\\teditor=\\\"codemirror|none\\\"\\n\\tfilter=\\\"raw\\\"\\n\\trequired=\\\"false\\\"\\n\\tvalidate=\\\"code\\\"\\n\\tshowon=\\\"add_custom_admin_view_controller:1\\\"\\n\\/>\"', 1, '2020-12-08 05:28:10', '2020-12-08 05:29:27', 2, '', 934, '990d3b80-06ce-4e87-a50a-f421e1e1fb13', '', '', '', '', ''),
(2862, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Class Header (custom.admin.view.model)', 'NOT NULL', 2, 8, '\"<field\\n\\ttype=\\\"editor\\\"\\n\\tname=\\\"custom_admin_view_model\\\"\\n\\tlabel=\\\"Class Header<br \\/>\\r\\n<small>(custom.admin.view.model)<\\/small><br \\/>\\r\\n<b>getItem<\\/b>\\\"\\n\\tdescription=\\\"The class header for custom admin view model. Only use this option if you have a <b>getItem<\\/b> as your <b>Main Get<\\/b>.\\\"\\n\\twidth=\\\"100%\\\"\\n\\theight=\\\"100px\\\"\\n\\tcols=\\\"15\\\"\\n\\trows=\\\"10\\\"\\n\\tbuttons=\\\"no\\\"\\n\\tsyntax=\\\"php\\\"\\n\\teditor=\\\"codemirror|none\\\"\\n\\tfilter=\\\"raw\\\"\\n\\trequired=\\\"false\\\"\\n\\tvalidate=\\\"code\\\"\\n\\tshowon=\\\"add_custom_admin_view_model:1\\\"\\n\\/>\"', 1, '2020-12-08 05:29:00', '2020-12-08 05:29:42', 2, '', 934, '0c606b22-71db-4e36-9f13-3d3717a8cd1e', '', '', '', '', ''),
(2863, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Class Header (custom.admin.views.model)', 'NOT NULL', 2, 8, '\"<field\\n\\ttype=\\\"editor\\\"\\n\\tname=\\\"custom_admin_views_model\\\"\\n\\tlabel=\\\"Class Header<br \\/>\\r\\n<small>(custom.admin.views.model)<\\/small><br \\/>\\r\\n<b>getListQuery<\\/b>\\\"\\n\\tdescription=\\\"The class header for custom admin views model. Only use this option if you have a <b>getListQuery<\\/b> as your <b>Main Get<\\/b>.\\\"\\n\\twidth=\\\"100%\\\"\\n\\theight=\\\"100px\\\"\\n\\tcols=\\\"15\\\"\\n\\trows=\\\"10\\\"\\n\\tbuttons=\\\"no\\\"\\n\\tsyntax=\\\"php\\\"\\n\\teditor=\\\"codemirror|none\\\"\\n\\tfilter=\\\"raw\\\"\\n\\trequired=\\\"false\\\"\\n\\tvalidate=\\\"code\\\"\\n\\tshowon=\\\"add_custom_admin_views_model:1\\\"\\n\\/>\"', 1, '2020-12-08 05:30:21', '2020-12-08 05:31:14', 2, '', 934, '02b443e7-0b5a-4a69-a41c-2bc292a8167d', '', '', '', '', ''),
(2864, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Class Header (custom.admin.views.controller)', 'NOT NULL', 2, 8, '\"<field\\n\\ttype=\\\"editor\\\"\\n\\tname=\\\"custom_admin_views_controller\\\"\\n\\tlabel=\\\"Class Header<br \\/>\\r\\n<small>(custom.admin.views.controller)<\\/small><br \\/>\\r\\n<b>getListQuery<\\/b>\\\"\\n\\tdescription=\\\"The class header for custom admin views controller. Only use this option if you have a <b>getListQuery<\\/b> as your <b>Main Get<\\/b>, and have custom code in the <b>PHP (controller methods)<\\/b> under the Custom Buttons tab.\\\"\\n\\twidth=\\\"100%\\\"\\n\\theight=\\\"100px\\\"\\n\\tcols=\\\"15\\\"\\n\\trows=\\\"10\\\"\\n\\tbuttons=\\\"no\\\"\\n\\tsyntax=\\\"php\\\"\\n\\teditor=\\\"codemirror|none\\\"\\n\\tfilter=\\\"raw\\\"\\n\\trequired=\\\"false\\\"\\n\\tvalidate=\\\"code\\\"\\n\\tshowon=\\\"add_custom_admin_views_controller:1\\\"\\n\\/>\"', 1, '2020-12-08 05:31:02', '2020-12-08 05:31:26', 2, '', 934, 'deb559de-2185-4243-883c-00d6b157a9f9', '', '', '', '', ''),
(2865, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'Target Custom Admin Views Model Header', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"add_custom_admin_views_model\\\"\\n\\tlabel=\\\"Target Custom Admin Views<br \\/>Model Header\\\"\\n\\tdescription=\\\"Only use this option if you have a <b>getListQuery<\\/b> as your <b>Main Get<\\/b>.\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"1|Yes,0|No\\\"\\n\\tdefault=\\\"0\\\"\\n\\trequired=\\\"true\\\"\\n\\/>\"', 1, '2020-12-08 05:32:10', '2020-12-08 05:33:19', 2, '', 1004, 'ee5be721-b3ac-4eb8-992c-bb7847d66ee0', '', '', '', '', ''),
(2866, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'Target Custom Admin View Model Header', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"add_custom_admin_view_model\\\"\\n\\tlabel=\\\"Target Custom Admin View<br \\/>Model Header\\\"\\n\\tdescription=\\\"Only use this option if you have a <b>getItem<\\/b> as your <b>Main Get<\\/b>.\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"1|Yes,0|No\\\"\\n\\tdefault=\\\"0\\\"\\n\\trequired=\\\"true\\\"\\n\\/>\"', 1, '2020-12-08 05:32:31', '2020-12-08 05:33:23', 2, '', 1004, 'c689c14e-7c53-431f-ad70-39a8df7d4337', '', '', '', '', ''),
(2867, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'Target Custom Admin View Controller Header', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"add_custom_admin_view_controller\\\"\\n\\tlabel=\\\"Target Custom Admin View<br \\/>Controller Header\\\"\\n\\tdescription=\\\"Only use this option if you have a <b>getItem<\\/b> as your <b>Main Get<\\/b>, and have custom code in the <b>PHP (controller methods)<\\/b> under the Custom Buttons tab.\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"1|Yes,0|No\\\"\\n\\tdefault=\\\"0\\\"\\n\\trequired=\\\"true\\\"\\n\\/>\"', 1, '2020-12-08 05:32:52', '2020-12-08 05:33:30', 2, '', 1004, '9bb98747-fe44-4acd-a084-c7b51e7dee40', '', '', '', '', ''),
(2868, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'Target Custom Admin Views Controller Header', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"add_custom_admin_views_controller\\\"\\n\\tlabel=\\\"Target Custom Admin Views<br \\/>Controller Header\\\"\\n\\tdescription=\\\"Only use this option if you have a <b>getListQuery<\\/b> as your <b>Main Get<\\/b>, and have custom code in the <b>PHP (controller methods)<\\/b> under the Custom Buttons tab.\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"1|Yes,0|No\\\"\\n\\tdefault=\\\"0\\\"\\n\\trequired=\\\"true\\\"\\n\\/>\"', 1, '2020-12-08 05:33:09', '2020-12-08 05:33:37', 2, '', 1004, '1c5f18ce-e2f0-4ca7-91cb-aed35a38ff50', '', '', '', '', ''),
(2869, '', '', '', '', '', '', 'Other', 2, 1, '', 'TINYINT', 2, '', '', 'Asset Table Fix (Global)', 'NOT NULL', '', 11, '\"<field\\n\\ttype=\\\"list\\\"\\n\\tname=\\\"assets_table_fix\\\"\\n\\tlabel=\\\"Assets Table Fix\\\"\\n\\tdescription=\\\"How to apply the assets table fix in JCB.<br \\/>\\r\\nSQL (add&remove) this is the <b>default<\\/b> which adds the SQL fix and removes it once the component is uninstalled.<br \\/>\\r\\nIntelligent (add&remove+if) same as default, but on uninstall will only remove this fix if no other component needs it. Note that this option will only work with other components that also use the <b>intelligent path<\\/b>.\\\"\\n\\tmessage=\\\"\\\"\\n\\tclass=\\\"list_class\\\"\\n\\tmultiple=\\\"false\\\"\\n\\toption=\\\"0|Do not add fix ever,1|SQL (add&remove),2|Intelligent (add&remove+if)\\\"\\n\\tdefault=\\\"2\\\"\\n\\/>\"', 1, '2020-12-08 18:03:48', '2020-12-10 22:00:31', 4, '', 1005, '657d9fdd-26cf-414b-9c25-6fdafb407a38', '', '', '', '', ''),
(2870, '', '', '', '', '', '', 'Other', 3, 1, '', 'TINYINT', 2, '', '', 'Asset Table Fix (per/component)', 'NOT NULL', '', 11, '\"<field\\n\\ttype=\\\"list\\\"\\n\\tname=\\\"assets_table_fix\\\"\\n\\tlabel=\\\"Assets Table Fix\\\"\\n\\tdescription=\\\"How to apply the assets table fix in JCB.<br \\/>\\r\\nSQL (add&remove) this is the <b>default<\\/b> which adds the SQL fix and removes it once the component is uninstalled.<br \\/>\\r\\nIntelligent (add&remove+if) same as default, but on uninstall will only remove this fix if no other component needs it. Note that this option will only work with other components that also use the <b>intelligent path<\\/b>.\\\"\\n\\tclass=\\\"list_class\\\"\\n\\tmultiple=\\\"false\\\"\\n\\toption=\\\"3|Use Global,0|Do not add fix ever,1|SQL (add&remove),2|Intelligent (add&remove+if)\\\"\\n\\tdefault=\\\"3\\\"\\n\\/>\"', 1, '2020-12-08 18:06:07', '2020-12-10 22:00:55', 2, '', 1005, '1831e024-aa0c-4fc7-b1e6-77ce4dd4c562', '', '', '', '', ''),
(2871, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'Target Admin Component Header', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"add_admin_component\\\"\\n\\tlabel=\\\"Admin Component<br \\/>Header\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"1|Yes,0|No\\\"\\n\\tdefault=\\\"0\\\"\\n\\trequired=\\\"true\\\"\\n\\/>\"', 1, '2020-12-26 19:04:08', '2020-12-26 19:06:05', 2, '', 1004, '1b89fe18-c28b-4971-ab5d-02a7defd887f', '', '', '', '', ''),
(2872, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Header (admin.component)', 'NOT NULL', 2, 8, '\"<field\\n\\ttype=\\\"editor\\\"\\n\\tname=\\\"admin_component\\\"\\n\\tlabel=\\\"Header<br \\/>\\r\\n<small>(admin.component)<\\/small>\\\"\\n\\twidth=\\\"100%\\\"\\n\\theight=\\\"100px\\\"\\n\\tcols=\\\"15\\\"\\n\\trows=\\\"10\\\"\\n\\tbuttons=\\\"no\\\"\\n\\tsyntax=\\\"php\\\"\\n\\teditor=\\\"codemirror|none\\\"\\n\\tfilter=\\\"raw\\\"\\n\\trequired=\\\"false\\\"\\n\\tvalidate=\\\"code\\\"\\n\\tshowon=\\\"add_admin_component:1\\\"\\n\\/>\"', 1, '2020-12-26 19:06:16', '2020-12-08 05:31:26', 1, '', 934, 'c2a0e972-d969-4b4e-b99d-f7673ebc99af', '', '', '', '', ''),
(2873, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'Target Site Component Header', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"add_site_component\\\"\\n\\tlabel=\\\"Site Component<br \\/>Header\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"1|Yes,0|No\\\"\\n\\tdefault=\\\"0\\\"\\n\\trequired=\\\"true\\\"\\n\\/>\"', 1, '2020-12-26 19:07:31', '2020-12-26 19:06:05', 1, '', 1004, 'c01a7262-56d9-4874-a3c1-505318216441', '', '', '', '', ''),
(2874, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Header (site.component)', 'NOT NULL', 2, 8, '\"<field\\n\\ttype=\\\"editor\\\"\\n\\tname=\\\"site_component\\\"\\n\\tlabel=\\\"Header<br \\/>\\r\\n<small>(site.component)<\\/small>\\\"\\n\\twidth=\\\"100%\\\"\\n\\theight=\\\"100px\\\"\\n\\tcols=\\\"15\\\"\\n\\trows=\\\"10\\\"\\n\\tbuttons=\\\"no\\\"\\n\\tsyntax=\\\"php\\\"\\n\\teditor=\\\"codemirror|none\\\"\\n\\tfilter=\\\"raw\\\"\\n\\trequired=\\\"false\\\"\\n\\tvalidate=\\\"code\\\"\\n\\tshowon=\\\"add_site_component:1\\\"\\n\\/>\"', 1, '2020-12-26 19:08:36', '2020-12-08 05:31:26', 1, '', 934, 'f2fda413-4123-42ed-848d-d9a85e14fd0b', '', '', '', '', ''),
(2875, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'Target Site Helper Header', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"add_site_helper\\\"\\n\\tlabel=\\\"Site Helper<br \\/>Header\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"1|Yes,0|No\\\"\\n\\tdefault=\\\"0\\\"\\n\\trequired=\\\"true\\\"\\n\\/>\"', 1, '2020-12-26 19:09:31', '2020-12-26 19:06:05', 1, '', 1004, '62432fd9-8b7b-470d-a7f4-5259f1749021', '', '', '', '', ''),
(2876, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Header (site.helper)', 'NOT NULL', 2, 8, '\"<field\\n\\ttype=\\\"editor\\\"\\n\\tname=\\\"site_helper\\\"\\n\\tlabel=\\\"Header<br \\/>\\r\\n<small>(site.helper)<\\/small>\\\"\\n\\twidth=\\\"100%\\\"\\n\\theight=\\\"100px\\\"\\n\\tcols=\\\"15\\\"\\n\\trows=\\\"10\\\"\\n\\tbuttons=\\\"no\\\"\\n\\tsyntax=\\\"php\\\"\\n\\teditor=\\\"codemirror|none\\\"\\n\\tfilter=\\\"raw\\\"\\n\\trequired=\\\"false\\\"\\n\\tvalidate=\\\"code\\\"\\n\\tshowon=\\\"add_site_helper:1\\\"\\n\\/>\"', 1, '2020-12-26 19:10:09', '2020-12-26 19:10:26', 2, '', 934, 'f46317c2-dd13-4968-b6c1-fd0d32955271', '', '', '', '', ''),
(2877, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Header (admin.helper)', 'NOT NULL', 2, 8, '\"<field\\n\\ttype=\\\"editor\\\"\\n\\tname=\\\"admin_helper\\\"\\n\\tlabel=\\\"Header<br \\/>\\r\\n<small>(admin.helper)<\\/small>\\\"\\n\\twidth=\\\"100%\\\"\\n\\theight=\\\"100px\\\"\\n\\tcols=\\\"15\\\"\\n\\trows=\\\"10\\\"\\n\\tbuttons=\\\"no\\\"\\n\\tsyntax=\\\"php\\\"\\n\\teditor=\\\"codemirror|none\\\"\\n\\tfilter=\\\"raw\\\"\\n\\trequired=\\\"false\\\"\\n\\tvalidate=\\\"code\\\"\\n\\tshowon=\\\"add_admin_helper:1\\\"\\n\\/>\"', 1, '2020-12-26 19:10:52', '2020-12-26 19:10:26', 1, '', 934, 'ad54fe21-85eb-4b08-b650-10dd3a456c35', '', '', '', '', ''),
(2878, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'Target Admin Helper Header', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"add_admin_helper\\\"\\n\\tlabel=\\\"Admin Helper<br \\/>Header\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"1|Yes,0|No\\\"\\n\\tdefault=\\\"0\\\"\\n\\trequired=\\\"true\\\"\\n\\/>\"', 1, '2020-12-26 19:11:20', '2020-12-26 19:06:05', 1, '', 1004, 'e9eebb1f-1844-4823-8c90-483b0daf3cf9', '', '', '', '', ''),
(2879, '', '', '', '', '', '', '', '', '', '', '', '', '', '', 'Category Menu Switch', 'NOT NULL', '', 14, '\"<field\\n\\ttype=\\\"note\\\"\\n\\tname=\\\"note_category_menu_switch\\\"\\n\\tlabel=\\\"Category Menu Switch\\\"\\n\\tdescription=\\\"You can now choose whether this view\'s category is added to the sub-menu.\\\"\\n\\theading=\\\"h4\\\"\\n\\tclass=\\\"alert alert-info\\\"\\n\\/>\"', 1, '2021-01-06 09:21:06', '2018-03-27 14:36:23', 1, '', 834, '3f2f0a5b-0746-4031-9741-08c648c4285e', '', '', '', '', ''),
(2880, '', '', '', '', '', '', 1, '', 1, '', 'TINYINT', 2, '', '', 'Add Category Sub-menu', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"add_category_submenu\\\"\\n\\tlabel=\\\"Add Category Sub-menu\\\"\\n\\tdescription=\\\"Do you want to add the category to the sub-menu?\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"1|Yes,0|No\\\"\\n\\tdefault=\\\"1\\\"\\n\\/>\"', 1, '2021-01-06 09:31:55', '2021-01-06 09:32:21', 2, '', 1006, '7e6e7fa8-d17b-47ae-9a28-b02ea4936b81', '', '', '', '', ''),
(2881, '', '', '', '', '', '', '', '', 64, '', 'VARCHAR', '', '', '', 'Combobox Type', 'NOT NULL', '', 43, '\"<field\\n\\ttype=\\\"combo\\\"\\n\\tname=\\\"type\\\"\\n\\tlabel=\\\"Type\\\"\\n\\tclass=\\\"combobox\\\"\\n\\toption=\\\"Type 1,Type 2,Type 3\\\"\\n\\/>\"', 1, '2021-01-08 06:15:38', '2021-01-08 06:17:55', 2, '', 1007, '4093862c-3207-4dda-8b51-ed4bbe445ac6', '', '', '', '', ''),
(2882, '', '', '', '', '', '', 'Other', '0000-00-00 00:00:00', '', '', 'DATETIME', '', '', '', 'Modified - Date', 'NOT NULL', '', 1, '\"<field\\n\\ttype=\\\"calendar\\\"\\n\\tname=\\\"modified\\\"\\n\\tlabel=\\\"Modified Date\\\"\\n\\tdescription=\\\"The date this [[[View]]] was modified.\\\"\\n\\treadonly=\\\"true\\\"\\n\\tformat=\\\"%Y-%m-%d %H:%M:%S\\\"\\n\\tfilter=\\\"user_utc\\\"\\n\\tsize=\\\"22\\\"\\n\\tescape=\\\"false\\\"\\n\\/>\"', 1, '2021-01-20 15:29:34', '2021-01-20 15:35:55', 2, '', 167, '104b94e8-260f-4517-a4f8-80c6b3d4a10a', '', '', '', '', ''),
(2883, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Default Template Header (admin.views)', 'NOT NULL', 2, 8, '\"<field\\n\\ttype=\\\"editor\\\"\\n\\tname=\\\"admin_views\\\"\\n\\tlabel=\\\"Default Template Header<br \\/>\\r\\n<small>(admin.views)<\\/small>\\\"\\n\\tdescription=\\\"The default template header for admin views.\\\"\\n\\twidth=\\\"100%\\\"\\n\\theight=\\\"100px\\\"\\n\\tcols=\\\"15\\\"\\n\\trows=\\\"10\\\"\\n\\tbuttons=\\\"no\\\"\\n\\tsyntax=\\\"php\\\"\\n\\teditor=\\\"codemirror|none\\\"\\n\\tfilter=\\\"raw\\\"\\n\\trequired=\\\"false\\\"\\n\\tvalidate=\\\"code\\\"\\n\\tshowon=\\\"add_admin_views:1\\\"\\n\\/>\"', 1, '2021-02-03 11:11:06', '2021-12-01 23:06:30', 3, '', 934, 'bcd8500b-4ed6-4ffe-b6dc-dd1540f57449', '', '', '', '', ''),
(2884, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Default Template Header (admin.view)', 'NOT NULL', 2, 8, '\"<field\\n\\ttype=\\\"editor\\\"\\n\\tname=\\\"admin_view\\\"\\n\\tlabel=\\\"Default Template Header<br \\/>\\r\\n<small>(admin.view)<\\/small>\\\"\\n\\tdescription=\\\"The default template header for admin view.\\\"\\n\\twidth=\\\"100%\\\"\\n\\theight=\\\"100px\\\"\\n\\tcols=\\\"15\\\"\\n\\trows=\\\"10\\\"\\n\\tbuttons=\\\"no\\\"\\n\\tsyntax=\\\"php\\\"\\n\\teditor=\\\"codemirror|none\\\"\\n\\tfilter=\\\"safehtml\\\"\\n\\trequired=\\\"false\\\"\\n\\tvalidate=\\\"code\\\"\\n\\tshowon=\\\"add_admin_view:1\\\"\\n\\/>\"', 1, '2021-02-03 11:11:50', '2021-12-01 23:05:20', 4, '', 934, 'baaf138d-d1c5-484f-8ec7-ce746136fefa', '', '', '', '', ''),
(2885, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'Target Admin Views Default Template Header', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"add_admin_views\\\"\\n\\tlabel=\\\"Target Admin Views<br \\/>Default Template Header\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"1|Yes,0|No\\\"\\n\\tdefault=\\\"0\\\"\\n\\trequired=\\\"true\\\"\\n\\/>\"', 1, '2021-02-03 11:12:36', '2021-12-01 23:04:04', 3, '', 1004, '0772836b-4205-4f27-9662-daf22c311b59', '', '', '', '', ''),
(2886, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'Target Admin View Default Template Header', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"add_admin_view\\\"\\n\\tlabel=\\\"Target Admin View<br \\/>Default Template Header\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"1|Yes,0|No\\\"\\n\\tdefault=\\\"0\\\"\\n\\trequired=\\\"true\\\"\\n\\/>\"', 1, '2021-02-03 11:13:00', '2021-12-01 23:03:13', 3, '', 1004, 'a420920e-b311-4b83-824f-6fe8ed50440f', '', '', '', '', ''),
(2887, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Default Template Header (site.view)', 'NOT NULL', 2, 8, '\"<field\\n\\ttype=\\\"editor\\\"\\n\\tname=\\\"site_view\\\"\\n\\tlabel=\\\"Default Template Header<br \\/>\\r\\n<small>(site.view)<\\/small><br \\/>\\r\\n<b>getItem<\\/b>\\\"\\n\\tdescription=\\\"The default template header for site view. Only use this option if you have a <b>getItem<\\/b> as your <b>Main Get<\\/b>.\\\"\\n\\twidth=\\\"100%\\\"\\n\\theight=\\\"100px\\\"\\n\\tcols=\\\"15\\\"\\n\\trows=\\\"10\\\"\\n\\tbuttons=\\\"no\\\"\\n\\tsyntax=\\\"php\\\"\\n\\teditor=\\\"codemirror|none\\\"\\n\\tfilter=\\\"raw\\\"\\n\\trequired=\\\"false\\\"\\n\\tvalidate=\\\"code\\\"\\n\\tshowon=\\\"add_site_view:1\\\"\\n\\/>\"', 1, '2021-02-03 11:14:41', '2021-12-01 22:15:37', 3, '', 934, 'd79bf385-93a6-43b7-8265-678ce10eba62', '', '', '', '', ''),
(2888, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Default Template Header (site.views)', 'NOT NULL', 2, 8, '\"<field\\n\\ttype=\\\"editor\\\"\\n\\tname=\\\"site_views\\\"\\n\\tlabel=\\\"Default Template Header<br \\/>\\r\\n<small>(site.views)<\\/small><br \\/>\\r\\n<b>getListQuery<\\/b>\\\"\\n\\tdescription=\\\"The default template header for site views. Only use this option if you have a <b>getListQuery<\\/b> as your <b>Main Get<\\/b>.\\\"\\n\\twidth=\\\"100%\\\"\\n\\theight=\\\"100px\\\"\\n\\tcols=\\\"15\\\"\\n\\trows=\\\"10\\\"\\n\\tbuttons=\\\"no\\\"\\n\\tsyntax=\\\"php\\\"\\n\\teditor=\\\"codemirror|none\\\"\\n\\tfilter=\\\"raw\\\"\\n\\trequired=\\\"false\\\"\\n\\tvalidate=\\\"code\\\"\\n\\tshowon=\\\"add_site_views:1\\\"\\n\\/>\"', 1, '2021-02-03 11:15:41', '2021-12-01 22:15:02', 3, '', 934, '43ead601-5b09-49bf-ad9d-7f880494f9dd', '', '', '', '', ''),
(2889, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'Target Site Views Default Template Header', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"add_site_views\\\"\\n\\tlabel=\\\"Target Site Views<br \\/>Default Template Header\\\"\\n\\tdescription=\\\"Only use this option if you have a <b>getListQuery<\\/b> as your <b>Main Get<\\/b>.\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"1|Yes,0|No\\\"\\n\\tdefault=\\\"0\\\"\\n\\trequired=\\\"true\\\"\\n\\/>\"', 1, '2021-02-03 11:16:15', '2021-12-01 22:37:55', 3, '', 1004, '27ae3831-e325-4e00-a05b-863dce568e97', '', '', '', '', ''),
(2890, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'Target Site View Default Template Header', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"add_site_view\\\"\\n\\tlabel=\\\"Target Site View<br \\/>Default Template Header\\\"\\n\\tdescription=\\\"Only use this option if you have a <b>getItem<\\/b> as your <b>Main Get<\\/b>.\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"1|Yes,0|No\\\"\\n\\tdefault=\\\"0\\\"\\n\\trequired=\\\"true\\\"\\n\\/>\"', 1, '2021-02-03 11:16:57', '2021-12-01 22:37:11', 3, '', 1004, '9db2ed44-5f00-41a4-b068-e7b354c7ee27', '', '', '', '', ''),
(2891, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Default Template Header (custom.admin.views)', 'NOT NULL', 2, 8, '\"<field\\n\\ttype=\\\"editor\\\"\\n\\tname=\\\"custom_admin_views\\\"\\n\\tlabel=\\\"Default Template Header<br \\/>\\r\\n<small>(custom.admin.views)<\\/small><br \\/>\\r\\n<b>getListQuery<\\/b>\\\"\\n\\tdescription=\\\"The default template header for custom admin views. Only use this option if you have a <b>getListQuery<\\/b> as your <b>Main Get<\\/b>.\\\"\\n\\twidth=\\\"100%\\\"\\n\\theight=\\\"100px\\\"\\n\\tcols=\\\"15\\\"\\n\\trows=\\\"10\\\"\\n\\tbuttons=\\\"no\\\"\\n\\tsyntax=\\\"php\\\"\\n\\teditor=\\\"codemirror|none\\\"\\n\\tfilter=\\\"raw\\\"\\n\\trequired=\\\"false\\\"\\n\\tvalidate=\\\"code\\\"\\n\\tshowon=\\\"add_custom_admin_views:1\\\"\\n\\/>\"', 1, '2021-02-03 11:18:31', '2021-12-01 23:33:10', 3, '', 934, 'df9c58e1-3baa-40d0-9f29-991fed33f8a7', '', '', '', '', ''),
(2892, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Default Template Header (custom.admin.view)', 'NOT NULL', 2, 8, '\"<field\\n\\ttype=\\\"editor\\\"\\n\\tname=\\\"custom_admin_view\\\"\\n\\tlabel=\\\"Default Template Header<br \\/>\\r\\n<small>(custom.admin.view)<\\/small><br \\/>\\r\\n<b>getItem<\\/b>\\\"\\n\\tdescription=\\\"The default template header for custom admin view. Only use this option if you have a <b>getItem<\\/b> as your <b>Main Get<\\/b>.\\\"\\n\\twidth=\\\"100%\\\"\\n\\theight=\\\"100px\\\"\\n\\tcols=\\\"15\\\"\\n\\trows=\\\"10\\\"\\n\\tbuttons=\\\"no\\\"\\n\\tsyntax=\\\"php\\\"\\n\\teditor=\\\"codemirror|none\\\"\\n\\tfilter=\\\"raw\\\"\\n\\trequired=\\\"false\\\"\\n\\tvalidate=\\\"code\\\"\\n\\tshowon=\\\"add_custom_admin_view:1\\\"\\n\\/>\"', 1, '2021-02-03 11:19:12', '2021-12-01 23:31:50', 3, '', 934, 'e5e46d86-c7e4-46ea-b44f-6b0510bd6aad', '', '', '', '', ''),
(2893, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'Target Custom Admin View Default Template Header', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"add_custom_admin_view\\\"\\n\\tlabel=\\\"Target Custom Admin View<br \\/>Default Template Header\\\"\\n\\tdescription=\\\"Only use this option if you have a <b>getItem<\\/b> as your <b>Main Get<\\/b>.\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"1|Yes,0|No\\\"\\n\\tdefault=\\\"0\\\"\\n\\trequired=\\\"true\\\"\\n\\/>\"', 1, '2021-02-03 11:19:46', '2021-12-01 23:30:52', 3, '', 1004, 'c1782c98-eb1c-41f3-95ee-f3e0997a81f3', '', '', '', '', ''),
(2894, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'Target Custom Admin Views Default Template Header', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"add_custom_admin_views\\\"\\n\\tlabel=\\\"Target Custom Admin Views<br \\/>Default Template Header\\\"\\n\\tdescription=\\\"Only use this option if you have a <b>getListQuery<\\/b> as your <b>Main Get<\\/b>.\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"1|Yes,0|No\\\"\\n\\tdefault=\\\"0\\\"\\n\\trequired=\\\"true\\\"\\n\\/>\"', 1, '2021-02-03 11:20:15', '2021-12-01 23:30:10', 3, '', 1004, '863f3a1a-c64e-41ec-89f8-47760a0927a1', '', '', '', '', ''),
(2895, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'Target Site Admin View Model Header', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"add_site_admin_view_model\\\"\\n\\tlabel=\\\"Target Site Admin View<br \\/>Model Header\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"1|Yes,0|No\\\"\\n\\tdefault=\\\"0\\\"\\n\\trequired=\\\"true\\\"\\n\\/>\"', 1, '2021-02-03 11:34:50', '2021-02-03 11:34:58', 2, '', 1004, 'cf394de6-1eaa-49cd-8559-16949b08b90c', '', '', '', '', ''),
(2896, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Class Header (site.admin.view.model)', 'NOT NULL', 2, 8, '\"<field\\n\\ttype=\\\"editor\\\"\\n\\tname=\\\"site_admin_view_model\\\"\\n\\tlabel=\\\"Class Header<br \\/>\\r\\n<small>(site.admin.view.model)<\\/small>\\\"\\n\\tdescription=\\\"The class header for site admin view model. So only use this if you have selected the admin edit view to be added to the site area.\\\"\\n\\twidth=\\\"100%\\\"\\n\\theight=\\\"100px\\\"\\n\\tcols=\\\"15\\\"\\n\\trows=\\\"10\\\"\\n\\tbuttons=\\\"no\\\"\\n\\tsyntax=\\\"php\\\"\\n\\teditor=\\\"codemirror|none\\\"\\n\\tfilter=\\\"raw\\\"\\n\\trequired=\\\"false\\\"\\n\\tvalidate=\\\"code\\\"\\n\\tshowon=\\\"add_site_admin_view_model:1\\\"\\n\\/>\"', 1, '2021-02-03 11:36:34', '2021-02-03 11:36:40', 2, '', 934, 'f104138f-0511-4a9d-a2f2-55b39418eae6', '', '', '', '', ''),
(2897, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'Target Site Admin View Default Template Header', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"add_site_admin_view\\\"\\n\\tlabel=\\\"Target Site Admin View<br \\/>Default Template Header\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"1|Yes,0|No\\\"\\n\\tdefault=\\\"0\\\"\\n\\trequired=\\\"true\\\"\\n\\/>\"', 1, '2021-02-03 11:38:02', '2021-12-01 23:16:35', 3, '', 1004, 'bd953700-e6fc-4a01-af77-fe5cb2347fff', '', '', '', '', ''),
(2898, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Default Template Header (site.admin.view)', 'NOT NULL', 2, 8, '\"<field\\n\\ttype=\\\"editor\\\"\\n\\tname=\\\"site_admin_view\\\"\\n\\tlabel=\\\"Default Template Header<br \\/>\\r\\n<small>(site.admin.view)<\\/small>\\\"\\n\\tdescription=\\\"The default template header for site admin view. So only use this if you have selected the admin edit view to be added to the site area.\\\"\\n\\twidth=\\\"100%\\\"\\n\\theight=\\\"100px\\\"\\n\\tcols=\\\"15\\\"\\n\\trows=\\\"10\\\"\\n\\tbuttons=\\\"no\\\"\\n\\tsyntax=\\\"php\\\"\\n\\teditor=\\\"codemirror|none\\\"\\n\\tfilter=\\\"safehtml\\\"\\n\\trequired=\\\"false\\\"\\n\\tvalidate=\\\"code\\\"\\n\\tshowon=\\\"add_site_admin_view:1\\\"\\n\\/>\"', 1, '2021-02-03 11:38:33', '2021-12-01 23:17:39', 4, '', 934, 'bbbedcc0-11dd-47ab-9178-4f5a2b8f1f7d', '', '', '', '', ''),
(2899, '', '', '', '', '', '', '', '', '', '', '', '', '', '', 'Note - Add JS Language String', 'NOT NULL', '', 14, '\"<field\\n\\ttype=\\\"note\\\"\\n\\tname=\\\"note_add_js_language_string\\\"\\n\\tlabel=\\\"Add JS Language String\\\"\\n\\tdescription=\\\"> In PHP you must add:<br \\/>\\r\\n<code>&lt;?= Text::script(&apos;Text&apos;) ?&gt;<\\/code><br \\/>\\r\\n> In JavaScript you must add:<br \\/>\\r\\n<code>Joomla.JText._(&apos;Text&apos;)<\\/code><br \\/>\\r\\n<small>You must use always use both in sync\\/matching strings.<\\/small>\\\"\\n\\theading=\\\"h4\\\"\\n\\/>\"', 1, '2021-02-16 13:08:46', '2021-02-16 13:09:01', 2, '', 539, '9000e6ca-c166-49bb-b2b8-74a685d06711', '', '', '', '', ''),
(2900, '', '', '', '', '', '', '', '', 64, '', 'VARCHAR', '', '', '', 'Compiler Artwork Options', 'NOT NULL', '', 11, '\"<field\\n\\ttype=\\\"list\\\"\\n\\tname=\\\"builder_gif_size\\\"\\n\\tlabel=\\\"Compiler Artwork Options\\\"\\n\\tdescription=\\\"Select the artwork you would like to show during compilation of your projects in the compiler area.\\\"\\n\\tclass=\\\"list_class\\\"\\n\\tmultiple=\\\"false\\\"\\n\\trequired=\\\"true\\\"\\n\\toption=\\\"480-272|Original (VDM),480-540|3D Particle Explorations\\\"\\n\\tdefault=\\\"480-272\\\"\\n\\/>\"', 1, '2021-02-19 20:51:35', '2021-02-20 22:08:37', 4, '', 1008, 'd6cd0e90-798c-4267-bc89-fab613d96c19', '', '', '', '', ''),
(2901, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'Only Selected Categories', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"set_catid\\\"\\n\\tlabel=\\\"Only Selected Categories\\\"\\n\\tdescription=\\\"Should we filter by category\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"1|Yes,0|No\\\"\\n\\tdefault=\\\"0\\\"\\n\\/>\"', 1, '2021-02-27 00:36:06', '0000-00-00 00:00:00', 1, '', 1009, 'b4acf3ec-93e7-4019-9378-fc930e45706e', '', '', '', '', ''),
(2902, '', '', '', '', '', '', '', '', 64, '', 'VARCHAR', '', '', '', 'Categories (com_componentbuilder.document)', 'NOT NULL', '', 2, '\"<field\\n\\ttype=\\\"category\\\"\\n\\tname=\\\"catid\\\"\\n\\tlabel=\\\"Categories\\\"\\n\\textension=\\\"com_componentbuilder.document\\\"\\n\\tdescription=\\\"Select the categories that should be loaded\\\"\\n\\tclass=\\\"inputbox\\\"\\n\\tpublished=\\\"1\\\"\\n\\tmultiple=\\\"true\\\"\\n\\tshowon=\\\"set_catid:1\\\"\\n\\/>\"', 1, '2021-02-27 00:38:51', '0000-00-00 00:00:00', 1, '', 1009, 'aca332bc-b65f-4f97-ba5a-fb37e8ebdb84', '', '', '', '', ''),
(2903, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'Only Selected Document Types', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"set_type\\\"\\n\\tlabel=\\\"Only Selected Document Types\\\"\\n\\tdescription=\\\"Should we filter by document types\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"1|Yes,0|No\\\"\\n\\tdefault=\\\"0\\\"\\n\\/>\"', 1, '2021-02-27 00:40:06', '0000-00-00 00:00:00', 1, '', 1009, '19ab3151-5746-4c34-a449-59616acdd2fe', '', '', '', '', ''),
(2904, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'Types (documents)', 'NOT NULL', '', 6, '\"<field\\n\\ttype=\\\"types\\\"\\n\\tname=\\\"type\\\"\\n\\tlabel=\\\"Document Types\\\"\\n\\tdescription=\\\"Select the document types that should be loaded\\\"\\n\\tclass=\\\"list_class\\\"\\n\\tmultiple=\\\"true\\\"\\n\\trequired=\\\"false\\\"\\n\\tshowon=\\\"set_type:1\\\"\\n\\textends=\\\"list\\\"\\n\\tbutton=\\\"true\\\"\\n\\ttable=\\\"#__###component###_type\\\"\\n\\tcomponent=\\\"com_###component###\\\"\\n\\tview=\\\"type\\\"\\n\\tviews=\\\"types\\\"\\n\\tvalue_field=\\\"name\\\"\\n\\tkey_field=\\\"id\\\"\\n\\tprime_php=\\\"1\\\"\\n\\ttype_php_1=\\\"__.o0=base64=Oo.__Ly8gR2V0IHRoZSB1c2VyIG9iamVjdC4NCgkJJHVzZXIgPSBKRmFjdG9yeTo6Z2V0VXNlcigpOw0KCQkvLyBHZXQgdGhlIGRhdGFic2Ugb2JqZWN0Lg0KCQkkZGIgPSBKRmFjdG9yeTo6Z2V0REJPKCk7DQoJCSRxdWVyeSA9ICRkYi0+Z2V0UXVlcnkodHJ1ZSk7DQoJCSRxdWVyeS0+c2VsZWN0KCRkYi0+cXVvdGVOYW1lKGFycmF5KCdhLiMjI0lEIyMjJywnYS4jIyNURVhUIyMjJyksYXJyYXkoJyMjI0lEIyMjJywnIyMjQ09ERV9URVhUIyMjJykpKTsNCgkJJHF1ZXJ5LT5mcm9tKCRkYi0+cXVvdGVOYW1lKCcjIyNUQUJMRSMjIycsICdhJykpOw0KCQkkcXVlcnktPndoZXJlKCRkYi0+cXVvdGVOYW1lKCdhLnB1Ymxpc2hlZCcpIC4gJyA+PSAxJyk7DQoJCSRxdWVyeS0+b3JkZXIoJ2EuIyMjVEVYVCMjIyBBU0MnKTsNCgkJLy8gSW1wbGVtZW50IFZpZXcgTGV2ZWwgQWNjZXNzIChpZiBzZXQgaW4gdGFibGUpDQoJCWlmICghJHVzZXItPmF1dGhvcmlzZSgnY29yZS5vcHRpb25zJywgJ1tbW2NvbV9jb21wb25lbnRdXV0nKSkNCgkJew0KCQkJJGNvbHVtbnMgPSAkZGItPmdldFRhYmxlQ29sdW1ucygnIyMjVEFCTEUjIyMnKTsNCgkJCWlmKGlzc2V0KCRjb2x1bW5zWydhY2Nlc3MnXSkpDQoJCQl7DQoJCQkJJGdyb3VwcyA9IGltcGxvZGUoJywnLCAkdXNlci0+Z2V0QXV0aG9yaXNlZFZpZXdMZXZlbHMoKSk7DQoJCQkJJHF1ZXJ5LT53aGVyZSgnYS5hY2Nlc3MgSU4gKCcgLiAkZ3JvdXBzIC4gJyknKTsNCgkJCX0NCgkJfQ0KCQkkZGItPnNldFF1ZXJ5KChzdHJpbmcpJHF1ZXJ5KTsNCgkJJGl0ZW1zID0gJGRiLT5sb2FkT2JqZWN0TGlzdCgpOw0KCQkkb3B0aW9ucyA9IGFycmF5KCk7DQoJCWlmICgkaXRlbXMpDQoJCXsNCgkJCWlmICgkdGhpcy0+bXVsdGlwbGUgPT09IGZhbHNlKQ0KCQkJew0KCQkJCSRvcHRpb25zW10gPSBKSHRtbDo6Xygnc2VsZWN0Lm9wdGlvbicsICcnLCBKVGV4dDo6XygnU2VsZWN0IGFuIG9wdGlvbicpKTsNCgkJCX0NCgkJCWZvcmVhY2goJGl0ZW1zIGFzICRpdGVtKQ0KCQkJew0KCQkJCSRvcHRpb25zW10gPSBKSHRtbDo6Xygnc2VsZWN0Lm9wdGlvbicsICRpdGVtLT4jIyNJRCMjIywgJGl0ZW0tPiMjI0NPREVfVEVYVCMjIyk7DQoJCQl9DQoJCX0NCgkJcmV0dXJuICRvcHRpb25zOw==\\\"\\n\\/>\"', 1, '2021-02-27 00:45:20', '0000-00-00 00:00:00', 1, '', 1009, '49187ef6-85ab-4343-a37b-bddb60290d25', '', '', '', '', ''),
(2905, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'Item Type', 'NOT NULL', '', 11, '\"<field\\n\\ttype=\\\"list\\\"\\n\\tname=\\\"item_type\\\"\\n\\tlabel=\\\"Item Type\\\"\\n\\tdescription=\\\"Select the type of items to load\\\"\\n\\tclass=\\\"list_class\\\"\\n\\tmultiple=\\\"false\\\"\\n\\trequired=\\\"true\\\"\\n\\toption=\\\"1|Featured,2|Latest,3|Last Modified,4|Most Downloaded,5|Oldest,6|Random\\\"\\n\\tdefault=\\\"1\\\"\\n\\/>\"', 1, '2021-02-27 00:48:31', '0000-00-00 00:00:00', 1, '', 1009, '0b3023fd-3155-443b-869c-4b8ec861f088', '', '', '', '', ''),
(2906, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Max Number of Items', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"max\\\"\\n\\tlabel=\\\"Max Number of Items\\\"\\n\\tsize=\\\"10\\\"\\n\\tmaxlength=\\\"50\\\"\\n\\tdescription=\\\"Set the Max number of total items to load\\\"\\n\\tdefault=\\\"12\\\"\\n\\tclass=\\\"text_area\\\"\\n\\tfilter=\\\"INT\\\"\\n\\tmessage=\\\"Error! Please add a number.\\\"\\n\\thint=\\\"12\\\"\\n\\tonchange=\\\"if(!jQuery(this).val().match(\\/^\\\\d+$\\/)){jQuery(this).val(\'\')};\\\"\\n\\/>\"', 1, '2021-02-27 00:51:08', '0000-00-00 00:00:00', 1, '', 1009, 'fc46b033-c873-4ced-a06b-772d43e9355c', '', '', '', '', ''),
(2907, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'Display Type', 'NOT NULL', '', 11, '\"<field\\n\\ttype=\\\"list\\\"\\n\\tname=\\\"display_type\\\"\\n\\tlabel=\\\"Display Type\\\"\\n\\tdescription=\\\"Select the type of item display\\\"\\n\\tclass=\\\"list_class\\\"\\n\\tmultiple=\\\"false\\\"\\n\\trequired=\\\"true\\\"\\n\\toption=\\\"1|Slider,2|Slideset,3|Slideshow,4|Accordion\\\"\\n\\tdefault=\\\"1\\\"\\n\\/>\"', 1, '2021-02-27 00:53:57', '0000-00-00 00:00:00', 1, '', 1009, '82600cd3-0cbd-4713-be80-edd57a86f3c7', '', '', '', '', ''),
(2908, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'Layout Type', 'NOT NULL', '', 11, '\"<field\\n\\ttype=\\\"list\\\"\\n\\tname=\\\"layout_type\\\"\\n\\tlabel=\\\"Layout Type\\\"\\n\\tdescription=\\\"Select the item layout type\\\"\\n\\tclass=\\\"list_class\\\"\\n\\tmultiple=\\\"false\\\"\\n\\trequired=\\\"true\\\"\\n\\toption=\\\"1|Thumb and Overlay,2|Two Column Panel\\\"\\n\\tdefault=\\\"1\\\"\\n\\/>\"', 1, '2021-02-27 00:54:58', '0000-00-00 00:00:00', 1, '', 1009, 'c374fe0b-babb-449e-871a-301896512733', '', '', '', '', ''),
(2909, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'Dot Contrast', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"dot_contrast\\\"\\n\\tlabel=\\\"Dot Contrast\\\"\\n\\tdescription=\\\"Set the dot navigation contrast.\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"1|Yes,0|No\\\"\\n\\tdefault=\\\"0\\\"\\n\\tshowon=\\\"display_type:3\\\"\\n\\/>\"', 1, '2021-02-27 00:56:42', '0000-00-00 00:00:00', 1, '', 1009, '7dceb563-3e75-4dfd-b7ae-5e8dfe23d6c1', '', '', '', '', ''),
(2910, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'Nav Contrast', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"nav_contrast\\\"\\n\\tlabel=\\\"Nav Contrast\\\"\\n\\tdescription=\\\"Set the navigation contrast.\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"1|Yes,0|No\\\"\\n\\tdefault=\\\"0\\\"\\n\\tshowon=\\\"display_type:1,2,3\\\"\\n\\/>\"', 1, '2021-02-27 00:57:41', '0000-00-00 00:00:00', 1, '', 1009, '2c6541cf-5e3c-4cea-be22-ec543ab64aa7', '', '', '', '', ''),
(2911, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'Expand Image', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"expand_image\\\"\\n\\tlabel=\\\"Expand Image\\\"\\n\\tdescription=\\\"Should the thumb images be expanded.\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"1|Yes,0|No\\\"\\n\\tdefault=\\\"0\\\"\\n\\/>\"', 1, '2021-02-27 00:58:20', '0000-00-00 00:00:00', 1, '', 1009, 'a6c195f9-d9a9-439c-b66b-7fba09f60b26', '', '', '', '', ''),
(2912, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'Showfirst', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"showfirst\\\"\\n\\tlabel=\\\"Showfirst\\\"\\n\\tdescription=\\\"Show first item on init\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"1|Yes,0|No\\\"\\n\\tdefault=\\\"0\\\"\\n\\tshowon=\\\"display_type:4\\\"\\n\\/>\"', 1, '2021-02-27 00:58:58', '0000-00-00 00:00:00', 1, '', 1009, '7c050a27-341f-4a8c-84b5-a4fc15a898d8', '', '', '', '', ''),
(2913, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'Collapse', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"collapse\\\"\\n\\tlabel=\\\"Collapse\\\"\\n\\tdescription=\\\"Allow multiple open items\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"1|Yes,0|No\\\"\\n\\tdefault=\\\"0\\\"\\n\\tshowon=\\\"display_type:4\\\"\\n\\/>\"', 1, '2021-02-27 00:59:43', '0000-00-00 00:00:00', 1, '', 1009, '0f6fe44f-0355-4705-85a5-fb3f3e0040ab', '', '', '', '', ''),
(2914, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'Animate', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"animate\\\"\\n\\tlabel=\\\"Animate\\\"\\n\\tdescription=\\\"Animate toggle\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"1|Yes,0|No\\\"\\n\\tdefault=\\\"0\\\"\\n\\tshowon=\\\"display_type:4\\\"\\n\\/>\"', 1, '2021-02-27 01:00:17', '0000-00-00 00:00:00', 1, '', 1009, 'ac6b421d-ca38-4950-82bb-968e40a25f89', '', '', '', '', ''),
(2915, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Visible Default', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"visible_default\\\"\\n\\tlabel=\\\"Visible Default\\\"\\n\\tsize=\\\"10\\\"\\n\\tmaxlength=\\\"50\\\"\\n\\tdescription=\\\"Default visible items in a set\\\"\\n\\tclass=\\\"text_area\\\"\\n\\tfilter=\\\"INT\\\"\\n\\thint=\\\"only numbers like 4\\\"\\n\\tshowon=\\\"display_type:2\\\"\\n\\tonchange=\\\"if(!jQuery(this).val().match(\\/^\\\\d+$\\/)){jQuery(this).val(\'\')};\\\"\\n\\/>\"', 1, '2021-02-27 01:02:33', '2021-02-27 01:05:19', 2, '', 1009, 'd98f681b-2c94-4637-b36f-23f58dab1662', '', '', '', '', ''),
(2916, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Visible Small', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"visible_small\\\"\\n\\tlabel=\\\"Visible Small\\\"\\n\\tsize=\\\"10\\\"\\n\\tmaxlength=\\\"50\\\"\\n\\tdescription=\\\"Default visible items in a set\\\"\\n\\tclass=\\\"text_area\\\"\\n\\tfilter=\\\"INT\\\"\\n\\thint=\\\"only numbers like 1\\\"\\n\\tshowon=\\\"display_type:1,2\\\"\\n\\tonchange=\\\"if(!jQuery(this).val().match(\\/^\\\\d+$\\/)){jQuery(this).val(\'\')};\\\"\\n\\/>\"', 1, '2021-02-27 01:04:55', '0000-00-00 00:00:00', 1, '', 1009, '8bd3bb84-7706-4df4-9772-79ae31fd3b7d', '', '', '', '', ''),
(2917, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Visible Medium', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"visible_medium\\\"\\n\\tlabel=\\\"Visible Medium\\\"\\n\\tsize=\\\"10\\\"\\n\\tmaxlength=\\\"50\\\"\\n\\tdescription=\\\"Visible items in a set at medium breakpoint (leave blank for default)\\\"\\n\\tclass=\\\"text_area\\\"\\n\\tfilter=\\\"INT\\\"\\n\\thint=\\\"only numbers like 2\\\"\\n\\tshowon=\\\"display_type:1,2\\\"\\n\\tonchange=\\\"if(!jQuery(this).val().match(\\/^\\\\d+$\\/)){jQuery(this).val(\'\')};\\\"\\n\\/>\"', 1, '2021-02-27 01:06:18', '2021-02-27 01:05:19', 1, '', 1009, '42cb6447-321a-4177-a301-db4cd9aae626', '', '', '', '', ''),
(2918, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Visible Large', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"visible_large\\\"\\n\\tlabel=\\\"Visible Large\\\"\\n\\tsize=\\\"10\\\"\\n\\tmaxlength=\\\"50\\\"\\n\\tdescription=\\\"Visible items in a set at large breakpoint (leave blank for default)\\\"\\n\\tclass=\\\"text_area\\\"\\n\\tfilter=\\\"INT\\\"\\n\\thint=\\\"only numbers like 3\\\"\\n\\tshowon=\\\"display_type:1,2\\\"\\n\\tonchange=\\\"if(!jQuery(this).val().match(\\/^\\\\d+$\\/)){jQuery(this).val(\'\')};\\\"\\n\\/>\"', 1, '2021-02-27 01:07:05', '2021-02-27 01:05:19', 1, '', 1009, '930a7c15-d873-4fd2-b41e-e90dc0f653c1', '', '', '', '', ''),
(2919, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Visible x-Large', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"visible_xlarge\\\"\\n\\tlabel=\\\"Visible x-Large\\\"\\n\\tsize=\\\"10\\\"\\n\\tmaxlength=\\\"50\\\"\\n\\tdescription=\\\"Visible items in a set at x-large breakpoint (leave blank for default)\\\"\\n\\tclass=\\\"text_area\\\"\\n\\tfilter=\\\"INT\\\"\\n\\thint=\\\"only numbers like 4\\\"\\n\\tshowon=\\\"display_type:2\\\"\\n\\tonchange=\\\"if(!jQuery(this).val().match(\\/^\\\\d+$\\/)){jQuery(this).val(\'\')};\\\"\\n\\/>\"', 1, '2021-02-27 01:08:09', '2021-02-27 01:05:19', 1, '', 1009, '19bcfcfd-d044-466d-99a8-743f6b9b6188', '', '', '', '', ''),
(2920, '', '', '', '', '', '', '', '', 64, '', 'VARCHAR', '', '', '', 'Animation', 'NOT NULL', '', 11, '\"<field\\n\\ttype=\\\"list\\\"\\n\\tname=\\\"animation\\\"\\n\\tlabel=\\\"Animation\\\"\\n\\tdescription=\\\"Animation name\\\"\\n\\tclass=\\\"list_class\\\"\\n\\tmultiple=\\\"false\\\"\\n\\toption=\\\"fade|fade,scale|scale,slide-horizontal|slide-horizontal,slide-vertical|slide-vertical,slide-top|slide-top,slide-bottom|slide-bottom\\\"\\n\\tdefault=\\\"fade\\\"\\n\\tshowon=\\\"display_type:2,3\\\"\\n\\/>\"', 1, '2021-02-27 01:13:06', '2021-02-27 01:13:23', 2, '', 1009, '8e84960a-f94f-47c3-b6bd-ac6ba8ad22b1', '', '', '', '', ''),
(2921, '', '', '', '', '', '', '', '', 64, '', 'VARCHAR', '', '', '', 'Easing', 'NOT NULL', '', 11, '\"<field\\n\\ttype=\\\"list\\\"\\n\\tname=\\\"easing\\\"\\n\\tlabel=\\\"Easing\\\"\\n\\tdescription=\\\"Animation function\\\"\\n\\tclass=\\\"list_class\\\"\\n\\tmultiple=\\\"false\\\"\\n\\toption=\\\"swing|swing,easeInElastic|easeInElastic,easeOutCubic|easeOutCubic,easeOutBounce|easeOutBounce,easeInOutBack|easeInOutBack,easeInOutCirc|easeInOutCirc\\\"\\n\\tdefault=\\\"swing\\\"\\n\\tshowon=\\\"display_type:4\\\"\\n\\/>\"', 1, '2021-02-27 01:16:19', '2021-02-27 01:13:23', 1, '', 1009, '98c7822a-7487-467b-ad4c-782a30727d98', '', '', '', '', ''),
(2922, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Animation Duration', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"duration\\\"\\n\\tlabel=\\\"Animation Duration\\\"\\n\\tsize=\\\"10\\\"\\n\\tmaxlength=\\\"50\\\"\\n\\tdescription=\\\"Animation duration in ms (leave blank for default)\\\"\\n\\tclass=\\\"text_area\\\"\\n\\tfilter=\\\"INT\\\"\\n\\thint=\\\"only numbers like 200\\\"\\n\\tshowon=\\\"display_type:2,3,4\\\"\\n\\tonchange=\\\"if(!jQuery(this).val().match(\\/^\\\\d+$\\/)){jQuery(this).val(\'\')};\\\"\\n\\/>\"', 1, '2021-02-27 01:18:38', '2021-02-27 01:05:19', 1, '', 1009, 'c6fe2cbc-425a-4040-86b5-f7d73888be2c', '', '', '', '', ''),
(2923, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Animation Delay', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"delay\\\"\\n\\tlabel=\\\"Animation Delay\\\"\\n\\tsize=\\\"10\\\"\\n\\tmaxlength=\\\"50\\\"\\n\\tdescription=\\\"Animation delay between items in a set (leave blank for default)\\\"\\n\\tclass=\\\"text_area\\\"\\n\\tfilter=\\\"INT\\\"\\n\\thint=\\\"only numbers like 100\\\"\\n\\tshowon=\\\"display_type:2\\\"\\n\\tonchange=\\\"if(!jQuery(this).val().match(\\/^\\\\d+$\\/)){jQuery(this).val(\'\')};\\\"\\n\\/>\"', 1, '2021-02-27 01:19:24', '2021-02-27 15:51:48', 2, '', 1009, 'f3fa4d30-8156-4277-a6fb-6f8eb3e95b42', '', '', '', '', ''),
(2924, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'Center', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"center\\\"\\n\\tlabel=\\\"Center\\\"\\n\\tdescription=\\\"Center items mode\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"1|Yes,0|No\\\"\\n\\tdefault=\\\"0\\\"\\n\\tshowon=\\\"display_type:1\\\"\\n\\/>\"', 1, '2021-02-27 01:20:11', '0000-00-00 00:00:00', 1, '', 1009, '149834cd-3ffc-45f8-92ac-d19034c9e7f5', '', '', '', '', ''),
(2925, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Threshold', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"threshold\\\"\\n\\tlabel=\\\"Threshold\\\"\\n\\tsize=\\\"10\\\"\\n\\tmaxlength=\\\"50\\\"\\n\\tdescription=\\\"Mouse movement threshold in pixel until trigger element dragging (leave blank for default)\\\"\\n\\tclass=\\\"text_area\\\"\\n\\tfilter=\\\"INT\\\"\\n\\thint=\\\"only numbers like 10\\\"\\n\\tshowon=\\\"display_type:1\\\"\\n\\tonchange=\\\"if(!jQuery(this).val().match(\\/^\\\\d+$\\/)){jQuery(this).val(\'\')};\\\"\\n\\/>\"', 1, '2021-02-27 01:21:26', '2021-02-27 01:05:19', 1, '', 1009, '1c6bf797-e045-437c-aaa4-190ff0082ac4', '', '', '', '', ''),
(2926, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'Infinite', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"infinite\\\"\\n\\tlabel=\\\"Infinite\\\"\\n\\tdescription=\\\"Infinite scrolling\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"1|Yes,0|No\\\"\\n\\tdefault=\\\"1\\\"\\n\\tshowon=\\\"display_type:1\\\"\\n\\/>\"', 1, '2021-02-27 01:22:30', '0000-00-00 00:00:00', 1, '', 1009, 'bf323dc0-e1af-4994-8ae4-ea2789bb4baf', '', '', '', '', ''),
(2927, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'Autoplay', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"autoplay\\\"\\n\\tlabel=\\\"Autoplay\\\"\\n\\tdescription=\\\"Defines whether or not the slider items should switch automatically\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"1|Yes,0|No\\\"\\n\\tdefault=\\\"0\\\"\\n\\tshowon=\\\"display_type:1,2,3\\\"\\n\\/>\"', 1, '2021-02-27 01:23:05', '0000-00-00 00:00:00', 1, '', 1009, '672af848-1b00-4cc7-841c-04a989d3eaf2', '', '', '', '', ''),
(2928, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'Pause on Hover', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"pauseonhover\\\"\\n\\tlabel=\\\"Pause on Hover\\\"\\n\\tdescription=\\\"Pause autoplay when hovering a slider\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"1|Yes,0|No\\\"\\n\\tdefault=\\\"1\\\"\\n\\tshowon=\\\"autoplay:1\\\"\\n\\/>\"', 1, '2021-02-27 01:23:47', '2021-02-27 15:36:29', 2, '', 1009, '0a95617e-e70d-4434-a5ed-22d795c48347', '', '', '', '', ''),
(2929, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Autoplay Interval', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"autoplayinterval\\\"\\n\\tlabel=\\\"Autoplay Interval\\\"\\n\\tsize=\\\"10\\\"\\n\\tmaxlength=\\\"50\\\"\\n\\tdescription=\\\"Defines the timespan between switching slider items (leave blank for default)\\\"\\n\\tclass=\\\"text_area\\\"\\n\\tfilter=\\\"INT\\\"\\n\\thint=\\\"only numbers like 7000\\\"\\n\\tshowon=\\\"autoplay:1\\\"\\n\\tonchange=\\\"if(!jQuery(this).val().match(\\/^\\\\d+$\\/)){jQuery(this).val(\'\')};\\\"\\n\\/>\"', 1, '2021-02-27 01:27:10', '2021-02-27 01:05:19', 1, '', 1009, '3900b454-4f9b-42e8-ac81-00a32e7ab386', '', '', '', '', ''),
(2930, '', '', '', '', '', '', '', '', 64, '', 'VARCHAR', '', '', '', 'Name (header tag)', 'NOT NULL', '', 11, '\"<field\\n\\ttype=\\\"list\\\"\\n\\tname=\\\"h_tag\\\"\\n\\tlabel=\\\"Name (header tag)\\\"\\n\\tdescription=\\\"What header tag do you want to use for the name\\\"\\n\\tclass=\\\"list_class\\\"\\n\\tmultiple=\\\"false\\\"\\n\\toption=\\\"h1|H1,h2|H2,h3|H3,h4|H4,h5|H5,h6|H6\\\"\\n\\tdefault=\\\"h2\\\"\\n\\/>\"', 1, '2021-02-27 15:29:59', '2021-02-27 01:13:23', 1, '', 1009, '9e026ec0-d5d5-4e32-8aa0-9214fc031ef8', '', '', '', '', ''),
(2931, '', '', '', '', '', '', '', '', 64, '', 'VARCHAR', '', '', '', 'Name (Style)', 'NOT NULL', '', 11, '\"<field\\n\\ttype=\\\"list\\\"\\n\\tname=\\\"h_style\\\"\\n\\tlabel=\\\"Name (Style)\\\"\\n\\tdescription=\\\"What style must the name be\\\"\\n\\tclass=\\\"list_class\\\"\\n\\tmultiple=\\\"false\\\"\\n\\toption=\\\"|Default,uk-text-muted|Muted,uk-text-primary|Primary,uk-text-success|Success,uk-text-warning|Warning,uk-text-danger|Danger,uk-text-contrast|Contrast,uk-text-bold|Bold\\\"\\n\\tdefault=\\\"\\\"\\n\\/>\"', 1, '2021-02-27 15:34:16', '2021-02-27 01:13:23', 1, '', 1009, '6bcd24ad-81f7-40a8-a3a1-c815140bbcd6', '', '', '', '', ''),
(2932, '', '', '', '', '', '', '', '', 64, '', 'VARCHAR', '', '', '', 'Name (Case)', 'NOT NULL', '', 11, '\"<field\\n\\ttype=\\\"list\\\"\\n\\tname=\\\"h_case\\\"\\n\\tlabel=\\\"Name (Case)\\\"\\n\\tdescription=\\\"What case must the name be\\\"\\n\\tclass=\\\"list_class\\\"\\n\\tmultiple=\\\"false\\\"\\n\\toption=\\\"|Default,uk-text-capitalize|Capitalize,uk-text-lowercase|Lowercase,uk-text-uppercase|Uppercase\\\"\\n\\tdefault=\\\"\\\"\\n\\/>\"', 1, '2021-02-27 15:35:50', '2021-02-27 01:13:23', 1, '', 1009, '8c26e2dc-8f6e-4611-bdb0-e036f55df15e', '', '', '', '', ''),
(2933, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'Sorthen Name', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"set_shorten_name\\\"\\n\\tlabel=\\\"Sorthen Name\\\"\\n\\tdescription=\\\"Would you like to shorten the name length\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"1|Yes,0|No\\\"\\n\\tdefault=\\\"0\\\"\\n\\/>\"', 1, '2021-02-27 15:37:31', '2021-02-27 15:36:29', 1, '', 1009, '7abe6b77-d6fe-4cbf-affe-850b25721ec4', '', '', '', '', ''),
(2934, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Name Length', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"shorten_name\\\"\\n\\tlabel=\\\"Name Length\\\"\\n\\tsize=\\\"10\\\"\\n\\tmaxlength=\\\"50\\\"\\n\\tdescription=\\\"Set the number of characters of the name\\\"\\n\\tclass=\\\"text_area\\\"\\n\\tfilter=\\\"INT\\\"\\n\\thint=\\\"only numbers like 10\\\"\\n\\tshowon=\\\"set_shorten_name:1\\\"\\n\\tonchange=\\\"if(!jQuery(this).val().match(\\/^\\\\d+$\\/)){jQuery(this).val(\'\')};\\\"\\n\\/>\"', 1, '2021-02-27 15:38:36', '2021-02-27 01:05:19', 1, '', 1009, '558a7c37-dce2-43d6-ad0e-fd43b41a7389', '', '', '', '', ''),
(2935, '', '', '', '', '', '', '', '', 64, '', 'VARCHAR', '', '', '', 'Description (Size)', 'NOT NULL', '', 11, '\"<field\\n\\ttype=\\\"list\\\"\\n\\tname=\\\"desc_size\\\"\\n\\tlabel=\\\"Description (Size)\\\"\\n\\tdescription=\\\"What size must the description be\\\"\\n\\tclass=\\\"list_class\\\"\\n\\tmultiple=\\\"false\\\"\\n\\toption=\\\"|Default,uk-text-small|Small,uk-text-large|Large,uk-text-bold|Bold\\\"\\n\\tdefault=\\\"\\\"\\n\\/>\"', 1, '2021-02-27 15:40:02', '2021-02-27 01:13:23', 1, '', 1009, '6d05a6ba-bced-4799-ada0-0cf6499e9777', '', '', '', '', ''),
(2936, '', '', '', '', '', '', '', '', 64, '', 'VARCHAR', '', '', '', 'Description (Style)', 'NOT NULL', '', 11, '\"<field\\n\\ttype=\\\"list\\\"\\n\\tname=\\\"desc_style\\\"\\n\\tlabel=\\\"Description (Style)\\\"\\n\\tdescription=\\\"What style must the description be\\\"\\n\\tclass=\\\"list_class\\\"\\n\\tmultiple=\\\"false\\\"\\n\\toption=\\\"|Default,uk-text-muted|Muted,uk-text-primary|Primary,uk-text-success|Success,uk-text-warning|Warning,uk-text-danger|Danger,uk-text-contrast|Contrast\\\"\\n\\tdefault=\\\"\\\"\\n\\/>\"', 1, '2021-02-27 15:41:14', '2021-02-27 15:41:33', 2, '', 1009, '1669a17d-7119-484c-99f5-752da1243208', '', '', '', '', ''),
(2937, '', '', '', '', '', '', '', '', 64, '', 'VARCHAR', '', '', '', 'Description (Case)', 'NOT NULL', '', 11, '\"<field\\n\\ttype=\\\"list\\\"\\n\\tname=\\\"desc_case\\\"\\n\\tlabel=\\\"Description (Case)\\\"\\n\\tdescription=\\\"What case must the description be\\\"\\n\\tclass=\\\"list_class\\\"\\n\\tmultiple=\\\"false\\\"\\n\\toption=\\\"|Default,uk-text-capitalize|Capitalize,uk-text-lowercase|Lowercase,uk-text-uppercase|Uppercase\\\"\\n\\tdefault=\\\"\\\"\\n\\/>\"', 1, '2021-02-27 15:42:08', '2021-02-27 01:13:23', 1, '', 1009, '1ce32f71-fa15-4e47-8ceb-d96a024d51ac', '', '', '', '', ''),
(2938, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'Shorten Description', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"set_shorten_description\\\"\\n\\tlabel=\\\"Shorten Description\\\"\\n\\tdescription=\\\"Would you like to shorten the description length\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"1|Yes,0|No\\\"\\n\\tdefault=\\\"0\\\"\\n\\/>\"', 1, '2021-02-27 15:43:04', '2021-02-27 15:36:29', 1, '', 1009, '0a414281-96c7-48ff-a9b8-ca43d1501f55', '', '', '', '', ''),
(2939, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Description Length', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"shorten_description\\\"\\n\\tlabel=\\\"Description Length\\\"\\n\\tsize=\\\"10\\\"\\n\\tmaxlength=\\\"50\\\"\\n\\tdescription=\\\"Set the number of characters of the description\\\"\\n\\tclass=\\\"text_area\\\"\\n\\tfilter=\\\"INT\\\"\\n\\thint=\\\"only numbers like 50\\\"\\n\\tshowon=\\\"set_shorten_description:1\\\"\\n\\tonchange=\\\"if(!jQuery(this).val().match(\\/^\\\\d+$\\/)){jQuery(this).val(\'\')};\\\"\\n\\/>\"', 1, '2021-02-27 15:44:32', '2021-02-27 01:05:19', 1, '', 1009, '5019055f-f1e9-4837-8de5-3874e4416806', '', '', '', '', ''),
(2940, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Import By GUID', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"import_guid_only\\\"\\n\\tlabel=\\\"Import by GUID only!\\\"\\n\\tdescription=\\\"Force that all JCB package import (search for local items) is done with GUID value only.\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"1|Yes,0|No\\\"\\n\\tdefault=\\\"1\\\"\\n\\/>\"', 1, '2021-06-30 10:26:59', '0000-00-00 00:00:00', 1, '', 1000, 'f2d12ac9-4efe-4345-9ed1-ffd1f9b69256', '', '', '', '', ''),
(2941, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', 2, '', '', 'Name (not-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\\tfilter=\\\"STRING\\\"\\n\\tmessage=\\\"Error! Please add name here.\\\"\\n\\thint=\\\"Name Here\\\"\\n\\/>\"', 1, '2021-08-05 09:08:56', '2021-08-05 08:42:17', 1, '', 4, '2707db98-28f2-485b-9344-8287427c00ab', '', '', '', '', ''),
(2942, '', '', '', '', '', '', '', '', 64, '', 'VARCHAR', 2, '', '', 'Type of Power', 'NOT NULL', '', 11, '\"<field\\n\\ttype=\\\"list\\\"\\n\\tname=\\\"type\\\"\\n\\tlabel=\\\"Type of Power\\\"\\n\\tdescription=\\\"The type of power being build\\\"\\n\\tclass=\\\"list_class\\\"\\n\\tmultiple=\\\"false\\\"\\n\\trequired=\\\"true\\\"\\n\\toption=\\\"class,abstract class,final class,interface,trait\\\"\\n\\tdefault=\\\"class\\\"\\n\\/>\"', 1, '2021-09-02 08:50:54', '2021-11-09 00:55:42', 3, '', 1010, '416df962-4468-4665-af1d-da81c9256464', '', '', '', '', ''),
(2943, '', '', '', '', '', '', '', '', 'Other', 36, 'VARCHAR', '', '', '', 'Extends', 'NOT NULL', '', 6, '\"<field\\n\\ttype=\\\"classpowers\\\"\\n\\tname=\\\"extends\\\"\\n\\tlabel=\\\"Extends\\\"\\n\\tdescription=\\\"The class, this class should extend\\\"\\n\\tclass=\\\"list_class span12\\\"\\n\\tlayout=\\\"joomla.form.field.list-fancy-select\\\"\\n\\tmultiple=\\\"false\\\"\\n\\tdefault=\\\"0\\\"\\n\\tshowon=\\\"type:class[OR]type:abstract class[OR]type:final class\\\"\\n\\textends=\\\"list\\\"\\n\\tbutton=\\\"true\\\"\\n\\ttable=\\\"#__###component###_power\\\"\\n\\tcomponent=\\\"com_###component###\\\"\\n\\tview=\\\"power\\\"\\n\\tviews=\\\"powers\\\"\\n\\tvalue_field=\\\"name\\\"\\n\\tkey_field=\\\"guid\\\"\\n\\tprime_php=\\\"1\\\"\\n\\ttype_php_1=\\\"__.o0=base64=Oo.__Ly8gR2V0IHRoZSB1c2VyIG9iamVjdC4NCgkJJHVzZXIgPSBKRmFjdG9yeTo6Z2V0VXNlcigpOw0KCQkvLyBHZXQgdGhlIGRhdGFic2Ugb2JqZWN0Lg0KCQkkZGIgPSBKRmFjdG9yeTo6Z2V0REJPKCk7DQoJCSRxdWVyeSA9ICRkYi0+Z2V0UXVlcnkodHJ1ZSk7DQoJCSRxdWVyeS0+c2VsZWN0KCRkYi0+cXVvdGVOYW1lKGFycmF5KCdhLiMjI0lEIyMjJywnYS4jIyNURVhUIyMjJywnYS5zeXN0ZW1fbmFtZScsJ2EudHlwZScsJ2EucG93ZXJfdmVyc2lvbicpLGFycmF5KCcjIyNJRCMjIycsJyMjI0NPREVfVEVYVCMjIycsJ3N5c3RlbV9uYW1lJywndHlwZScsJ3ZlcnNpb24nKSkpOw0KCQkkcXVlcnktPmZyb20oJGRiLT5xdW90ZU5hbWUoJyMjI1RBQkxFIyMjJywgJ2EnKSk7DQoJCSRxdWVyeS0+d2hlcmUoJGRiLT5xdW90ZU5hbWUoJ2EucHVibGlzaGVkJykgLiAnID49IDEnKTsNCgkJJHF1ZXJ5LT53aGVyZSgnKCcgLiAkZGItPnF1b3RlTmFtZSgnYS50eXBlJykgLiAnID0gJyAuICRkYi0+cXVvdGUoJ2NsYXNzJykgLiAnIE9SICcgLiAkZGItPnF1b3RlTmFtZSgnYS50eXBlJykgLiAnID0gJyAuICRkYi0+cXVvdGUoJ2Fic3RyYWN0IGNsYXNzJykgLiAnKScpOw0KCQkkcXVlcnktPm9yZGVyKCdhLiMjI1RFWFQjIyMgQVNDJyk7DQoJCSRxdWVyeS0+b3JkZXIoJ2EudHlwZSBBU0MnKTsNCgkJLy8gSW1wbGVtZW50IFZpZXcgTGV2ZWwgQWNjZXNzIChpZiBzZXQgaW4gdGFibGUpDQoJCWlmICghJHVzZXItPmF1dGhvcmlzZSgnY29yZS5vcHRpb25zJywgJ1tbW2NvbV9jb21wb25lbnRdXV0nKSkNCgkJew0KCQkJJGNvbHVtbnMgPSAkZGItPmdldFRhYmxlQ29sdW1ucygnIyMjVEFCTEUjIyMnKTsNCgkJCWlmKGlzc2V0KCRjb2x1bW5zWydhY2Nlc3MnXSkpDQoJCQl7DQoJCQkJJGdyb3VwcyA9IGltcGxvZGUoJywnLCAkdXNlci0+Z2V0QXV0aG9yaXNlZFZpZXdMZXZlbHMoKSk7DQoJCQkJJHF1ZXJ5LT53aGVyZSgnYS5hY2Nlc3MgSU4gKCcgLiAkZ3JvdXBzIC4gJyknKTsNCgkJCX0NCgkJfQ0KCQkvLyBnZXQgdGhlIGlucHV0DQoJCSRqaW5wdXQgPSBKRmFjdG9yeTo6Z2V0QXBwbGljYXRpb24oKS0+aW5wdXQ7DQoJCS8vIGdldCB0aGUgaWQNCgkJJHBvd2VyX2lkID0gJGppbnB1dC0+Z2V0SW50KCdpZCcsIDApOw0KCQkvLyBpZiB3ZSBoYXZlIGFuIGlkIHdlIHJlbW92ZSBhbGwgY2xhc3NlcyBvZiB0aGUgc2FtZSBuYW1lc3BhY2UgYW5kIG5hbWUNCgkJaWYgKCRwb3dlcl9pZCA+IDAgJiYgKCRleGNsdWRlX3Bvd2VycyA9IFtbW0NvbXBvbmVudF1dXUhlbHBlcjo6ZXhjbHVkZVBvd2VycygkcG93ZXJfaWQpKSAhPT0gZmFsc2UpDQoJCXsNCgkJCSRxdWVyeS0+d2hlcmUoJ2EuaWQgTk9UIElOICgnIC4gaW1wbG9kZSgnLCcsICRleGNsdWRlX3Bvd2VycykgLiAnKScpOw0KCQl9DQoJCSRkYi0+c2V0UXVlcnkoKHN0cmluZykkcXVlcnkpOw0KCQkkaXRlbXMgPSAkZGItPmxvYWRPYmplY3RMaXN0KCk7DQoJCSRvcHRpb25zID0gYXJyYXkoKTsNCgkJLy8gaWYgbm9uZSB3YXMgZm91bmQsIHdlIGFkZCB0aGlzIHRvIHNldCBhbiBhbHRlcm5hdGl2ZSB0byBzZXQgY3VzdG9tDQoJCWlmICghJGl0ZW1zKQ0KCQl7DQoJCQkkb3B0aW9uc1tdID0gSkh0bWw6Ol8oJ3NlbGVjdC5vcHRpb24nLCAnJywgSlRleHQ6Ol8oJ05vbmUgZm91bmQnKSk7DQoJCX0NCgkJaWYgKCRpdGVtcykNCgkJew0KCQkJaWYgKCR0aGlzLT5tdWx0aXBsZSA9PT0gZmFsc2UpDQoJCQl7DQoJCQkJJG9wdGlvbnNbXSA9IEpIdG1sOjpfKCdzZWxlY3Qub3B0aW9uJywgJycsIEpUZXh0OjpfKCdTZWxlY3QgYW4gb3B0aW9uJykpOw0KCQkJfQ0KCQkJZm9yZWFjaCgkaXRlbXMgYXMgJGl0ZW0pDQoJCQl7DQoJCQkJJG9wdGlvbnNbXSA9IEpIdG1sOjpfKCdzZWxlY3Qub3B0aW9uJywgJGl0ZW0tPiMjI0lEIyMjLCAkaXRlbS0+c3lzdGVtX25hbWUgLiAnIFsnIC4gJGl0ZW0tPnR5cGUgLiAnICcgLiAkaXRlbS0+IyMjQ09ERV9URVhUIyMjIC4gJ10gKHYnIC4gJGl0ZW0tPnZlcnNpb24gLiAnKScpOw0KCQkJfQ0KCQl9DQoJCS8vIHNldCB0aGUgb3RoZXIgb3B0aW9uIHRvIGVudGVyIHRleHQNCgkJJG9wdGlvbnNbXSA9IEpIdG1sOjpfKCdzZWxlY3Qub3B0aW9uJywgLTEsIEpUZXh0OjpfKCdTZXQgQ3VzdG9tJykpOw0KCQlyZXR1cm4gJG9wdGlvbnM7\\\"\\n\\/>\"', 1, '2021-09-02 09:14:33', '2024-03-26 13:22:25', 28, '', 1011, 'd42f8ec2-710c-41a9-98b6-b74b19213cdb', '', '', '', '', ''),
(2944, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Implements interface(s)', 'NULL', '', 6, '\"<field\\n\\ttype=\\\"interfacepowers\\\"\\n\\tname=\\\"implements\\\"\\n\\tlabel=\\\"Implements interface(s)\\\"\\n\\tdescription=\\\"The interface(s), this class should implement.\\\"\\n\\tclass=\\\"list_class span12\\\"\\n\\tlayout=\\\"joomla.form.field.list-fancy-select\\\"\\n\\tmultiple=\\\"true\\\"\\n\\tdefault=\\\"0\\\"\\n\\tshowon=\\\"type!:interface[AND]type!:trait\\\"\\n\\textends=\\\"list\\\"\\n\\tbutton=\\\"true\\\"\\n\\ttable=\\\"#__###component###_power\\\"\\n\\tcomponent=\\\"com_###component###\\\"\\n\\tview=\\\"power\\\"\\n\\tviews=\\\"powers\\\"\\n\\tvalue_field=\\\"name\\\"\\n\\tkey_field=\\\"guid\\\"\\n\\tprime_php=\\\"1\\\"\\n\\ttype_php_1=\\\"__.o0=base64=Oo.__Ly8gR2V0IHRoZSB1c2VyIG9iamVjdC4NCgkJJHVzZXIgPSBKRmFjdG9yeTo6Z2V0VXNlcigpOw0KCQkvLyBHZXQgdGhlIGRhdGFic2Ugb2JqZWN0Lg0KCQkkZGIgPSBKRmFjdG9yeTo6Z2V0REJPKCk7DQoJCSRxdWVyeSA9ICRkYi0+Z2V0UXVlcnkodHJ1ZSk7DQoJCSRxdWVyeS0+c2VsZWN0KCRkYi0+cXVvdGVOYW1lKGFycmF5KCdhLiMjI0lEIyMjJywnYS4jIyNURVhUIyMjJywnYS5zeXN0ZW1fbmFtZScsJ2EudHlwZScsJ2EucG93ZXJfdmVyc2lvbicpLGFycmF5KCcjIyNJRCMjIycsJyMjI0NPREVfVEVYVCMjIycsJ3N5c3RlbV9uYW1lJywndHlwZScsJ3ZlcnNpb24nKSkpOw0KCQkkcXVlcnktPmZyb20oJGRiLT5xdW90ZU5hbWUoJyMjI1RBQkxFIyMjJywgJ2EnKSk7DQoJCSRxdWVyeS0+d2hlcmUoJGRiLT5xdW90ZU5hbWUoJ2EucHVibGlzaGVkJykgLiAnID49IDEnKTsNCgkJJHF1ZXJ5LT53aGVyZSgkZGItPnF1b3RlTmFtZSgnYS50eXBlJykgLiAnID0gJyAuICRkYi0+cXVvdGUoJ2ludGVyZmFjZScpKTsNCgkJJHF1ZXJ5LT5vcmRlcignYS4jIyNURVhUIyMjIEFTQycpOw0KCQkkcXVlcnktPm9yZGVyKCdhLnR5cGUgQVNDJyk7DQoJCS8vIEltcGxlbWVudCBWaWV3IExldmVsIEFjY2VzcyAoaWYgc2V0IGluIHRhYmxlKQ0KCQlpZiAoISR1c2VyLT5hdXRob3Jpc2UoJ2NvcmUub3B0aW9ucycsICdbW1tjb21fY29tcG9uZW50XV1dJykpDQoJCXsNCgkJCSRjb2x1bW5zID0gJGRiLT5nZXRUYWJsZUNvbHVtbnMoJyMjI1RBQkxFIyMjJyk7DQoJCQlpZihpc3NldCgkY29sdW1uc1snYWNjZXNzJ10pKQ0KCQkJew0KCQkJCSRncm91cHMgPSBpbXBsb2RlKCcsJywgJHVzZXItPmdldEF1dGhvcmlzZWRWaWV3TGV2ZWxzKCkpOw0KCQkJCSRxdWVyeS0+d2hlcmUoJ2EuYWNjZXNzIElOICgnIC4gJGdyb3VwcyAuICcpJyk7DQoJCQl9DQoJCX0NCgkJLy8gZ2V0IHRoZSBpbnB1dA0KCQkkamlucHV0ID0gSkZhY3Rvcnk6OmdldEFwcGxpY2F0aW9uKCktPmlucHV0Ow0KCQkvLyBnZXQgdGhlIGlkDQoJCSRwb3dlcl9pZCA9ICRqaW5wdXQtPmdldEludCgnaWQnLCAwKTsNCgkJLy8gaWYgd2UgaGF2ZSBhbiBpZCB3ZSByZW1vdmUgYWxsIGNsYXNzZXMgb2YgdGhlIHNhbWUgbmFtZXNwYWNlIGFuZCBuYW1lDQoJCWlmICgkcG93ZXJfaWQgPiAwICYmICgkZXhjbHVkZV9wb3dlcnMgPSBbW1tDb21wb25lbnRdXV1IZWxwZXI6OmV4Y2x1ZGVQb3dlcnMoJHBvd2VyX2lkKSkgIT09IGZhbHNlKQ0KCQl7DQoJCQkkcXVlcnktPndoZXJlKCdhLmlkIE5PVCBJTiAoJyAuIGltcGxvZGUoJywnLCAkZXhjbHVkZV9wb3dlcnMpIC4gJyknKTsNCgkJfQ0KCQkkZGItPnNldFF1ZXJ5KChzdHJpbmcpJHF1ZXJ5KTsNCgkJJGl0ZW1zID0gJGRiLT5sb2FkT2JqZWN0TGlzdCgpOw0KCQkkb3B0aW9ucyA9IGFycmF5KCk7DQoJCS8vIHNldCB0aGUgb3RoZXIgb3B0aW9uIHRvIGVudGVyIHRleHQNCgkJJG9wdGlvbnNbXSA9IEpIdG1sOjpfKCdzZWxlY3Qub3B0aW9uJywgLTEsIEpUZXh0OjpfKCdTZXQgQ3VzdG9tJykpOw0KCQlpZiAoJGl0ZW1zKQ0KCQl7DQoJCQlpZiAoJHRoaXMtPm11bHRpcGxlID09PSBmYWxzZSkNCgkJCXsNCgkJCQkkb3B0aW9uc1tdID0gSkh0bWw6Ol8oJ3NlbGVjdC5vcHRpb24nLCAnJywgSlRleHQ6Ol8oJ1NlbGVjdCBhbiBvcHRpb24nKSk7DQoJCQl9DQoJCQlmb3JlYWNoKCRpdGVtcyBhcyAkaXRlbSkNCgkJCXsNCgkJCQkkb3B0aW9uc1tdID0gSkh0bWw6Ol8oJ3NlbGVjdC5vcHRpb24nLCAkaXRlbS0+IyMjSUQjIyMsICRpdGVtLT5zeXN0ZW1fbmFtZSAuICcgKHYnIC4gJGl0ZW0tPnZlcnNpb24gLiAnKSBbJyAuICRpdGVtLT50eXBlIC4gJyAnIC4gJGl0ZW0tPiMjI0NPREVfVEVYVCMjIyAuICddJyk7DQoJCQl9DQoJCX0NCgkJcmV0dXJuICRvcHRpb25zOw==\\\"\\n\\/>\"', 1, '2021-09-02 10:55:40', '2024-03-26 13:22:33', 20, '', 1011, '82b08f94-4ed2-40cf-a311-e323e69d47b1', '', '', '', '', ''),
(2945, '', '', '', '', '', '', '', '', 1024, '', 'VARCHAR', 2, '', '', 'Implements interface(s) (custom)', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"implements_custom\\\"\\n\\tlabel=\\\"Implements interface(s) - Custom\\\"\\n\\tsize=\\\"50\\\"\\n\\tmaxlength=\\\"150\\\"\\n\\tdescription=\\\"Add the custom interface(s) this class must implement. Comma separate them, and remember to manually add their use statements to the header area.\\\"\\n\\tclass=\\\"text_area span12\\\"\\n\\tfilter=\\\"STRING\\\"\\n\\tmessage=\\\"Error! Please add the custom interface(s) this class must implement.\\\"\\n\\tautocomplete=\\\"on\\\"\\n\\tshowon=\\\"implements:-1\\\"\\n\\/>\"', 1, '2021-09-02 11:08:44', '2022-08-20 21:25:16', 8, '', 1012, '68dcb3dc-15b2-4357-8c87-f2fb316e9ae0', '', '', '', '', ''),
(2946, '', '', '', '', '', '', '', '', 64, '', 'VARCHAR', 2, '', '', 'Extends (custom)', 'NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"extends_custom\\\"\\n\\tlabel=\\\"Extends - Custom\\\"\\n\\tsize=\\\"10\\\"\\n\\tmaxlength=\\\"50\\\"\\n\\tdescription=\\\"The custom class, this class should extend\\\"\\n\\tclass=\\\"text_area span12\\\"\\n\\tfilter=\\\"STRING\\\"\\n\\tmessage=\\\"Error! Please add the custom class, this class should extend.\\\"\\n\\tautocomplete=\\\"on\\\"\\n\\tshowon=\\\"extends:-1[AND]type!:trait[AND]type!:interface\\\"\\n\\/>\"', 1, '2021-09-02 17:08:17', '2024-03-06 15:54:30', 9, '', 1012, '1a0ff40c-90bc-472f-a465-8afefb595a6b', '', '', '', '', ''),
(2947, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', 2, '', '', 'Namespace', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"namespace\\\"\\n\\tlabel=\\\"Namespace\\\"\\n\\tsize=\\\"250\\\"\\n\\tmaxlength=\\\"250\\\"\\n\\tdescription=\\\"Add the namespace of this class.\\\"\\n\\tclass=\\\"text_area span12\\\"\\n\\trequired=\\\"true\\\"\\n\\tfilter=\\\"STRING\\\"\\n\\tmessage=\\\"Error! Please add namespace here.\\\"\\n\\thint=\\\"ComponentName\\\\Powers\\\\ClassName\\\"\\n\\tautocomplete=\\\"on\\\"\\n\\tescape=\\\"false\\\"\\n\\/>\"', 1, '2021-09-07 13:53:41', '2022-08-25 21:50:49', 10, '', 1013, 'dde8525b-6cce-4922-a7e0-9dcad5622b4e', '', '', '', '', ''),
(2948, '', '', '', '', '', '', '', '', 64, '', 'CHAR', '', '', '', 'Power Version', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"power_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, '2021-09-09 10:29:32', '2015-08-25 21:15:22', 1, '', 155, '26e695f7-e7fe-47f4-a692-002dcd2df434', '', '', '', '', ''),
(2949, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Powers', 'NOT NULL', '', 6, '\"<field\\n\\ttype=\\\"powers\\\"\\n\\tname=\\\"power\\\"\\n\\tlabel=\\\"use\\\"\\n\\tclass=\\\"list_class span12\\\"\\n\\tmultiple=\\\"false\\\"\\n\\tdefault=\\\"0\\\"\\n\\textends=\\\"list\\\"\\n\\tbutton=\\\"false\\\"\\n\\ttable=\\\"#__###component###_power\\\"\\n\\tcomponent=\\\"com_###component###\\\"\\n\\tview=\\\"power\\\"\\n\\tviews=\\\"powers\\\"\\n\\tvalue_field=\\\"system_name\\\"\\n\\tkey_field=\\\"guid\\\"\\n\\tprime_php=\\\"1\\\"\\n\\ttype_php_1=\\\"__.o0=base64=Oo.__Ly8gR2V0IHRoZSB1c2VyIG9iamVjdC4NCgkJJHVzZXIgPSBKRmFjdG9yeTo6Z2V0VXNlcigpOw0KCQkvLyBHZXQgdGhlIGRhdGFic2Ugb2JqZWN0Lg0KCQkkZGIgPSBKRmFjdG9yeTo6Z2V0REJPKCk7DQoJCSRxdWVyeSA9ICRkYi0+Z2V0UXVlcnkodHJ1ZSk7DQoJCSRxdWVyeS0+c2VsZWN0KCRkYi0+cXVvdGVOYW1lKGFycmF5KCdhLiMjI0lEIyMjJywnYS4jIyNURVhUIyMjJywnYS5uYW1lc3BhY2UnLCdhLnR5cGUnLCdhLnBvd2VyX3ZlcnNpb24nKSxhcnJheSgnIyMjSUQjIyMnLCcjIyNDT0RFX1RFWFQjIyMnLCduYW1lc3BhY2UnLCd0eXBlJywndmVyc2lvbicpKSk7DQoJCSRxdWVyeS0+ZnJvbSgkZGItPnF1b3RlTmFtZSgnIyMjVEFCTEUjIyMnLCAnYScpKTsNCgkJJHF1ZXJ5LT53aGVyZSgkZGItPnF1b3RlTmFtZSgnYS5wdWJsaXNoZWQnKSAuICcgPj0gMScpOw0KCQkkcXVlcnktPm9yZGVyKCdhLiMjI1RFWFQjIyMgQVNDJyk7DQoJCSRxdWVyeS0+b3JkZXIoJ2EudHlwZSBBU0MnKTsNCgkJLy8gSW1wbGVtZW50IFZpZXcgTGV2ZWwgQWNjZXNzIChpZiBzZXQgaW4gdGFibGUpDQoJCWlmICghJHVzZXItPmF1dGhvcmlzZSgnY29yZS5vcHRpb25zJywgJ1tbW2NvbV9jb21wb25lbnRdXV0nKSkNCgkJew0KCQkJJGNvbHVtbnMgPSAkZGItPmdldFRhYmxlQ29sdW1ucygnIyMjVEFCTEUjIyMnKTsNCgkJCWlmKGlzc2V0KCRjb2x1bW5zWydhY2Nlc3MnXSkpDQoJCQl7DQoJCQkJJGdyb3VwcyA9IGltcGxvZGUoJywnLCAkdXNlci0+Z2V0QXV0aG9yaXNlZFZpZXdMZXZlbHMoKSk7DQoJCQkJJHF1ZXJ5LT53aGVyZSgnYS5hY2Nlc3MgSU4gKCcgLiAkZ3JvdXBzIC4gJyknKTsNCgkJCX0NCgkJfQ0KCQkkZGItPnNldFF1ZXJ5KChzdHJpbmcpJHF1ZXJ5KTsNCgkJJGl0ZW1zID0gJGRiLT5sb2FkT2JqZWN0TGlzdCgpOw0KCQkkb3B0aW9ucyA9IGFycmF5KCk7DQoJCS8vIGlmIG5vbmUgd2FzIGZvdW5kLCB3ZSBhZGQgdGhpcyB0byBzZXQgYW4gYWx0ZXJuYXRpdmUgdG8gc2V0IGN1c3RvbQ0KCQlpZiAoISRpdGVtcykNCgkJew0KCQkJJG9wdGlvbnNbXSA9IEpIdG1sOjpfKCdzZWxlY3Qub3B0aW9uJywgJycsICdOb25lIGZvdW5kJyk7DQoJCX0NCgkJaWYgKCRpdGVtcykNCgkJew0KCQkJaWYgKCR0aGlzLT5tdWx0aXBsZSA9PT0gZmFsc2UpDQoJCQl7DQoJCQkJJG9wdGlvbnNbXSA9IEpIdG1sOjpfKCdzZWxlY3Qub3B0aW9uJywgJycsICdTZWxlY3QgYW4gb3B0aW9uJyk7DQoJCQl9DQoJCQlmb3JlYWNoKCRpdGVtcyBhcyAkaXRlbSkNCgkJCXsNCgkJCQkkb3B0aW9uc1tdID0gSkh0bWw6Ol8oJ3NlbGVjdC5vcHRpb24nLCAkaXRlbS0+IyMjSUQjIyMsIHN0cl9yZXBsYWNlKCcuJywnXFwnLCAkaXRlbS0+bmFtZXNwYWNlKSAuICcgWycgLiAkaXRlbS0+IyMjQ09ERV9URVhUIyMjIC4gJ10gKHYnIC4gJGl0ZW0tPnZlcnNpb24gLiAnIC0gJyAuICRpdGVtLT50eXBlIC4gJyknKTsNCgkJCX0NCgkJfQ0KCQlyZXR1cm4gJG9wdGlvbnM7DQo=\\\"\\n\\/>\"', 1, '2021-09-28 11:12:59', '2022-05-18 07:39:01', 10, '', 1011, 'd55d4a7c-9bf3-4151-a3a3-224dc92b50ec', '', '', '', '', ''),
(2950, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Use Selection', 'NULL', '', 35, '\"<field\\n\\ttype=\\\"subform\\\"\\n\\tname=\\\"use_selection\\\"\\n\\tlabel=\\\"Use Selection\\\"\\n\\tlayout=\\\"joomla.form.field.subform.repeatable-table\\\"\\n\\tmultiple=\\\"true\\\"\\n\\tbuttons=\\\"add,remove,move\\\"\\n\\tfields=\\\"2951,3041\\\"\\n\\tdescription=\\\"Select namespace you want to use in your field.\\\"\\n\\ticon=\\\"list\\\"\\n\\tmax=\\\"100\\\"\\n\\tmin=\\\"0\\\"\\n\\/>\"', 1, '2021-10-01 17:06:18', '2024-03-06 15:53:08', 6, '', 938, '00157fc5-d94e-4ac0-80fe-7e5ac5c356b5', '', '', '', '', ''),
(2951, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'USE (namespace)', 'NOT NULL', '', 6, '\"<field\\n\\ttype=\\\"namespaces\\\"\\n\\tname=\\\"use\\\"\\n\\tlabel=\\\"use\\\"\\n\\tclass=\\\"list_class span12\\\"\\n\\tmultiple=\\\"false\\\"\\n\\tdefault=\\\"0\\\"\\n\\textends=\\\"list\\\"\\n\\ttable=\\\"#__###component###_power\\\"\\n\\tcomponent=\\\"com_###component###\\\"\\n\\tview=\\\"power\\\"\\n\\tviews=\\\"powers\\\"\\n\\tvalue_field=\\\"name\\\"\\n\\tkey_field=\\\"guid\\\"\\n\\tprime_php=\\\"1\\\"\\n\\ttype_php_1=\\\"__.o0=base64=Oo.__Ly8gR2V0IHRoZSB1c2VyIG9iamVjdC4NCgkJJHVzZXIgPSBKRmFjdG9yeTo6Z2V0VXNlcigpOw0KCQkvLyBHZXQgdGhlIGRhdGFic2Ugb2JqZWN0Lg0KCQkkZGIgPSBKRmFjdG9yeTo6Z2V0REJPKCk7DQoJCSRxdWVyeSA9ICRkYi0+Z2V0UXVlcnkodHJ1ZSk7DQoJCSRxdWVyeS0+c2VsZWN0KCRkYi0+cXVvdGVOYW1lKGFycmF5KCdhLiMjI0lEIyMjJywnYS4jIyNURVhUIyMjJywnYS5uYW1lc3BhY2UnLCdhLnR5cGUnLCdhLnBvd2VyX3ZlcnNpb24nKSxhcnJheSgnIyMjSUQjIyMnLCcjIyNDT0RFX1RFWFQjIyMnLCduYW1lc3BhY2UnLCd0eXBlJywndmVyc2lvbicpKSk7DQoJCSRxdWVyeS0+ZnJvbSgkZGItPnF1b3RlTmFtZSgnIyMjVEFCTEUjIyMnLCAnYScpKTsNCgkJJHF1ZXJ5LT53aGVyZSgkZGItPnF1b3RlTmFtZSgnYS5wdWJsaXNoZWQnKSAuICcgPj0gMScpOw0KCQkkcXVlcnktPm9yZGVyKCdhLiMjI1RFWFQjIyMgQVNDJyk7DQoJCSRxdWVyeS0+b3JkZXIoJ2EudHlwZSBBU0MnKTsNCgkJLy8gSW1wbGVtZW50IFZpZXcgTGV2ZWwgQWNjZXNzIChpZiBzZXQgaW4gdGFibGUpDQoJCWlmICghJHVzZXItPmF1dGhvcmlzZSgnY29yZS5vcHRpb25zJywgJ1tbW2NvbV9jb21wb25lbnRdXV0nKSkNCgkJew0KCQkJJGNvbHVtbnMgPSAkZGItPmdldFRhYmxlQ29sdW1ucygnIyMjVEFCTEUjIyMnKTsNCgkJCWlmKGlzc2V0KCRjb2x1bW5zWydhY2Nlc3MnXSkpDQoJCQl7DQoJCQkJJGdyb3VwcyA9IGltcGxvZGUoJywnLCAkdXNlci0+Z2V0QXV0aG9yaXNlZFZpZXdMZXZlbHMoKSk7DQoJCQkJJHF1ZXJ5LT53aGVyZSgnYS5hY2Nlc3MgSU4gKCcgLiAkZ3JvdXBzIC4gJyknKTsNCgkJCX0NCgkJfQ0KCQkvLyBnZXQgdGhlIGlucHV0DQoJCSRqaW5wdXQgPSBKRmFjdG9yeTo6Z2V0QXBwbGljYXRpb24oKS0+aW5wdXQ7DQoJCS8vIGdldCB0aGUgaWQNCgkJJHBvd2VyX2lkID0gJGppbnB1dC0+Z2V0SW50KCdpZCcsIDApOw0KCQkvLyBpZiB3ZSBoYXZlIGFuIGlkIHdlIHJlbW92ZSBhbGwgY2xhc3NlcyBvZiB0aGUgc2FtZSBuYW1lc3BhY2UgYW5kIG5hbWUNCgkJaWYgKCRwb3dlcl9pZCA+IDAgJiYgKCRleGNsdWRlX3Bvd2VycyA9IFtbW0NvbXBvbmVudF1dXUhlbHBlcjo6ZXhjbHVkZVBvd2VycygkcG93ZXJfaWQpKSAhPT0gZmFsc2UpDQoJCXsNCgkJCSRxdWVyeS0+d2hlcmUoJ2EuaWQgTk9UIElOICgnIC4gaW1wbG9kZSgnLCcsICRleGNsdWRlX3Bvd2VycykgLiAnKScpOw0KCQl9DQoJCSRkYi0+c2V0UXVlcnkoKHN0cmluZykkcXVlcnkpOw0KCQkkaXRlbXMgPSAkZGItPmxvYWRPYmplY3RMaXN0KCk7DQoJCSRvcHRpb25zID0gYXJyYXkoKTsNCgkJLy8gaWYgbm9uZSB3YXMgZm91bmQsIHdlIGFkZCB0aGlzIHRvIHNldCBhbiBhbHRlcm5hdGl2ZSB0byBzZXQgY3VzdG9tDQoJCWlmICghJGl0ZW1zKQ0KCQl7DQoJCQkkb3B0aW9uc1tdID0gSkh0bWw6Ol8oJ3NlbGVjdC5vcHRpb24nLCAnJywgSlRleHQ6Ol8oJ05vbmUgZm91bmQnKSk7DQoJCX0NCgkJaWYgKCRpdGVtcykNCgkJew0KCQkJaWYgKCR0aGlzLT5tdWx0aXBsZSA9PT0gZmFsc2UpDQoJCQl7DQoJCQkJJG9wdGlvbnNbXSA9IEpIdG1sOjpfKCdzZWxlY3Qub3B0aW9uJywgJycsIEpUZXh0OjpfKCdTZWxlY3QgYW4gb3B0aW9uJykpOw0KCQkJfQ0KCQkJZm9yZWFjaCgkaXRlbXMgYXMgJGl0ZW0pDQoJCQl7DQoJCQkJJG9wdGlvbnNbXSA9IEpIdG1sOjpfKCdzZWxlY3Qub3B0aW9uJywgJGl0ZW0tPiMjI0lEIyMjLCBzdHJfcmVwbGFjZSgnLicsJ1xcJywgJGl0ZW0tPm5hbWVzcGFjZSkgLiAnIFsnIC4gJGl0ZW0tPiMjI0NPREVfVEVYVCMjIyAuICddICh2JyAuICRpdGVtLT52ZXJzaW9uIC4gJyAtICcgLiAkaXRlbS0+dHlwZSAuICcpJyk7DQoJCQl9DQoJCX0NCgkJcmV0dXJuICRvcHRpb25zOw0K\\\"\\n\\/>\"', 1, '2021-10-01 17:14:15', '2022-05-18 05:48:45', 14, '', 1011, 'ecdb29d4-c473-450f-83fc-1448239db30e', '', '', '', '', ''),
(2952, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Powers Header (site.admin.view.html)', 'NOT NULL', '', 35, '\"<field\\n\\ttype=\\\"subform\\\"\\n\\tname=\\\"power_site_admin_view_html\\\"\\n\\tlabel=\\\"Power Header<br \\/>\\r\\n<small>(site.admin.view.html)<\\/small>\\\"\\n\\tlayout=\\\"joomla.form.field.subform.repeatable-table\\\"\\n\\tmultiple=\\\"true\\\"\\n\\tbuttons=\\\"add,remove,move\\\"\\n\\tfields=\\\"2949,3041,3040\\\"\\n\\tdescription=\\\"The power header for site admin view. So only use this if you have selected the admin edit view to be added to the site area.\\\"\\n\\ticon=\\\"list\\\"\\n\\tmax=\\\"50\\\"\\n\\tshowon=\\\"add_site_admin_view_html:1\\\"\\n\\/>\"', 1, '2021-10-02 15:47:17', '2022-05-18 05:56:27', 11, '', 934, '3b6e6c48-a953-46f3-b2fa-b38b965ed82a', '', '', '', '', ''),
(2953, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Powers Header (custom.admin.views.controller)', 'NOT NULL', '', 35, '\"<field\\n\\ttype=\\\"subform\\\"\\n\\tname=\\\"power_custom_admin_views_controller\\\"\\n\\tlabel=\\\"Power Header<br \\/>\\r\\n<small>(custom.admin.views.controller)<\\/small><br \\/>\\r\\n<b>getListQuery<\\/b>\\\"\\n\\tlayout=\\\"joomla.form.field.subform.repeatable-table\\\"\\n\\tmultiple=\\\"true\\\"\\n\\tbuttons=\\\"add,remove,move\\\"\\n\\tfields=\\\"2949,3041,3040\\\"\\n\\tdescription=\\\"The power header for custom admin views controller. Only use this option if you have a <b>getListQuery<\\/b> as your <b>Main Get<\\/b>, and have custom code in the <b>PHP (controller methods)<\\/b> under the Custom Buttons tab.\\\"\\n\\ticon=\\\"list\\\"\\n\\tmax=\\\"50\\\"\\n\\tshowon=\\\"add_custom_admin_views_controller:1\\\"\\n\\/>\"', 1, '2021-10-04 00:22:57', '2022-05-18 06:12:19', 6, '', 934, '21f41ee2-db22-433a-be28-3adea23a841a', '', '', '', '', ''),
(2954, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Powers Header (custom.admin.views.html)', 'NOT NULL', '', 35, '\"<field\\n\\ttype=\\\"subform\\\"\\n\\tname=\\\"power_custom_admin_views_html\\\"\\n\\tlabel=\\\"Power Header<br \\/>\\r\\n<small>(custom.admin.views.html)<\\/small><br \\/>\\r\\n<b>getListQuery<\\/b>\\\"\\n\\tlayout=\\\"joomla.form.field.subform.repeatable-table\\\"\\n\\tmultiple=\\\"true\\\"\\n\\tbuttons=\\\"add,remove,move\\\"\\n\\tfields=\\\"2949,3041,3040\\\"\\n\\tdescription=\\\"The power header for custom admin views. Only use this option if you have a <b>getListQuery<\\/b> as your <b>Main Get<\\/b>.\\\"\\n\\ticon=\\\"list\\\"\\n\\tmax=\\\"50\\\"\\n\\tshowon=\\\"add_custom_admin_views_html:1\\\"\\n\\/>\"', 1, '2021-10-04 00:22:57', '2022-05-18 06:12:11', 7, '', 934, 'f3355b6f-2543-4619-91f2-225e7ab57a46', '', '', '', '', ''),
(2955, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Powers Header (custom.admin.views.model)', 'NOT NULL', '', 35, '\"<field\\n\\ttype=\\\"subform\\\"\\n\\tname=\\\"power_custom_admin_views_model\\\"\\n\\tlabel=\\\"Power Header<br \\/>\\r\\n<small>(custom.admin.views.model)<\\/small><br \\/>\\r\\n<b>getListQuery<\\/b>\\\"\\n\\tlayout=\\\"joomla.form.field.subform.repeatable-table\\\"\\n\\tmultiple=\\\"true\\\"\\n\\tbuttons=\\\"add,remove,move\\\"\\n\\tfields=\\\"2949,3041,3040\\\"\\n\\tdescription=\\\"The power header for custom admin views model. Only use this option if you have a <b>getListQuery<\\/b> as your <b>Main Get<\\/b>.\\\"\\n\\ticon=\\\"list\\\"\\n\\tmax=\\\"50\\\"\\n\\tshowon=\\\"add_custom_admin_views_model:1\\\"\\n\\/>\"', 1, '2021-10-04 00:22:57', '2022-05-18 06:12:01', 5, '', 934, '70c45fdd-6a7e-4769-afa7-4828181b3c53', '', '', '', '', ''),
(2956, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Powers Header (custom.admin.view.controller)', 'NOT NULL', '', 35, '\"<field\\n\\ttype=\\\"subform\\\"\\n\\tname=\\\"power_custom_admin_view_controller\\\"\\n\\tlabel=\\\"Power Header<br \\/>\\r\\n<small>(custom.admin.view.controller)<\\/small><br \\/>\\r\\n<b>getItem<\\/b>\\\"\\n\\tlayout=\\\"joomla.form.field.subform.repeatable-table\\\"\\n\\tmultiple=\\\"true\\\"\\n\\tbuttons=\\\"add,remove,move\\\"\\n\\tfields=\\\"2949,3041,3040\\\"\\n\\tdescription=\\\"The power header for custom admin view controller. Only use this option if you have a <b>getItem<\\/b> as your <b>Main Get<\\/b>, and have custom code in the <b>PHP (controller methods)<\\/b> under the Custom Buttons tab.\\\"\\n\\ticon=\\\"list\\\"\\n\\tmax=\\\"50\\\"\\n\\tshowon=\\\"add_custom_admin_view_controller:1\\\"\\n\\/>\"', 1, '2021-10-04 00:22:57', '2022-05-18 06:11:51', 5, '', 934, 'd37f6f02-4cb3-4b2c-858e-cf06c6487554', '', '', '', '', ''),
(2957, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Powers Header (custom.admin.view.html)', 'NOT NULL', '', 35, '\"<field\\n\\ttype=\\\"subform\\\"\\n\\tname=\\\"power_custom_admin_view_html\\\"\\n\\tlabel=\\\"Power Header<br \\/>\\r\\n<small>(custom.admin.view.html)<\\/small><br \\/>\\r\\n<b>getItem<\\/b>\\\"\\n\\tlayout=\\\"joomla.form.field.subform.repeatable-table\\\"\\n\\tmultiple=\\\"true\\\"\\n\\tbuttons=\\\"add,remove,move\\\"\\n\\tfields=\\\"2949,3041,3040\\\"\\n\\tdescription=\\\"The power header for custom admin view. Only use this option if you have a <b>getItem<\\/b> as your <b>Main Get<\\/b>.\\\"\\n\\ticon=\\\"list\\\"\\n\\tmax=\\\"50\\\"\\n\\tshowon=\\\"add_custom_admin_view_html:1\\\"\\n\\/>\"', 1, '2021-10-04 00:22:57', '2022-05-18 06:11:43', 7, '', 934, '77e9ab93-ed41-4fa5-8061-1102ccae86c4', '', '', '', '', ''),
(2958, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Powers Header (site.views.controller)', 'NOT NULL', '', 35, '\"<field\\n\\ttype=\\\"subform\\\"\\n\\tname=\\\"power_site_views_controller\\\"\\n\\tlabel=\\\"Power Header<br \\/>\\r\\n<small>(site.views.controller)<\\/small><br \\/>\\r\\n<b>getListQuery<\\/b>\\\"\\n\\tlayout=\\\"joomla.form.field.subform.repeatable-table\\\"\\n\\tmultiple=\\\"true\\\"\\n\\tbuttons=\\\"add,remove,move\\\"\\n\\tfields=\\\"2949,3041,3040\\\"\\n\\tdescription=\\\"The power header for site views controller. Only use this option if you have a <b>getListQuery<\\/b> as your <b>Main Get<\\/b>, and have custom code in the <b>PHP (controller methods)<\\/b> under the Custom Buttons tab.\\\"\\n\\ticon=\\\"list\\\"\\n\\tmax=\\\"50\\\"\\n\\tshowon=\\\"add_site_views_controller:1\\\"\\n\\/>\"', 1, '2021-10-04 00:22:57', '2022-05-18 06:11:34', 5, '', 934, 'ecb814d9-87af-412e-962f-5f218ee54ad7', '', '', '', '', ''),
(2959, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Powers Header (site.views.html)', 'NOT NULL', '', 35, '\"<field\\n\\ttype=\\\"subform\\\"\\n\\tname=\\\"power_site_views_html\\\"\\n\\tlabel=\\\"Power Header<br \\/>\\r\\n<small>(site.views.html)<\\/small><br \\/>\\r\\n<b>getListQuery<\\/b>\\\"\\n\\tlayout=\\\"joomla.form.field.subform.repeatable-table\\\"\\n\\tmultiple=\\\"true\\\"\\n\\tbuttons=\\\"add,remove,move\\\"\\n\\tfields=\\\"2949,3041,3040\\\"\\n\\tdescription=\\\"The power header for site views. Only use this option if you have a <b>getListQuery<\\/b> as your <b>Main Get<\\/b>.\\\"\\n\\ticon=\\\"list\\\"\\n\\tmax=\\\"50\\\"\\n\\tshowon=\\\"add_site_views_html:1\\\"\\n\\/>\"', 1, '2021-10-04 00:22:57', '2022-05-18 06:11:27', 6, '', 934, '3da9b672-002f-4f72-b165-9bebbc9c3d56', '', '', '', '', ''),
(2960, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Powers Header (site.views.model)', 'NOT NULL', '', 35, '\"<field\\n\\ttype=\\\"subform\\\"\\n\\tname=\\\"power_site_views_model\\\"\\n\\tlabel=\\\"Power Header<br \\/>\\r\\n<small>(site.views.model)<\\/small><br \\/>\\r\\n<b>getListQuery<\\/b>\\\"\\n\\tlayout=\\\"joomla.form.field.subform.repeatable-table\\\"\\n\\tmultiple=\\\"true\\\"\\n\\tbuttons=\\\"add,remove,move\\\"\\n\\tfields=\\\"2949,3041,3040\\\"\\n\\tdescription=\\\"The power header for site views model. Only use this option if you have a <b>getListQuery<\\/b> as your <b>Main Get<\\/b>.\\\"\\n\\ticon=\\\"list\\\"\\n\\tmax=\\\"50\\\"\\n\\tshowon=\\\"add_site_views_model:1\\\"\\n\\/>\"', 1, '2021-10-04 00:22:57', '2022-05-18 06:11:16', 5, '', 934, 'ca1e6042-000d-41ca-a50c-fc3899aa74e5', '', '', '', '', ''),
(2961, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Powers Header (site.view.controller)', 'NOT NULL', '', 35, '\"<field\\n\\ttype=\\\"subform\\\"\\n\\tname=\\\"power_site_view_controller\\\"\\n\\tlabel=\\\"Power Header<br \\/>\\r\\n<small>(site.view.controller)<\\/small><br \\/>\\r\\n<b>getItem<\\/b>\\\"\\n\\tlayout=\\\"joomla.form.field.subform.repeatable-table\\\"\\n\\tmultiple=\\\"true\\\"\\n\\tbuttons=\\\"add,remove,move\\\"\\n\\tfields=\\\"2949,3041,3040\\\"\\n\\tdescription=\\\"The power header for site view controller. Only use this option if you have a <b>getItem<\\/b> as your <b>Main Get<\\/b>, and have custom code in the <b>PHP (controller methods)<\\/b> under the Custom Buttons tab.\\\"\\n\\ticon=\\\"list\\\"\\n\\tmax=\\\"50\\\"\\n\\tshowon=\\\"add_site_view_controller:1\\\"\\n\\/>\"', 1, '2021-10-04 00:22:57', '2022-05-18 06:11:08', 5, '', 934, 'cee12443-0a17-47cb-ba90-7a77451cbac1', '', '', '', '', ''),
(2962, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Powers Header (site.view.html)', 'NOT NULL', '', 35, '\"<field\\n\\ttype=\\\"subform\\\"\\n\\tname=\\\"power_site_view_html\\\"\\n\\tlabel=\\\"Power Header<br \\/>\\r\\n<small>(site.view.html)<\\/small><br \\/>\\r\\n<b>getItem<\\/b>\\\"\\n\\tlayout=\\\"joomla.form.field.subform.repeatable-table\\\"\\n\\tmultiple=\\\"true\\\"\\n\\tbuttons=\\\"add,remove,move\\\"\\n\\tfields=\\\"2949,3041,3040\\\"\\n\\tdescription=\\\"The power header for site view. Only use this option if you have a <b>getItem<\\/b> as your <b>Main Get<\\/b>.\\\"\\n\\ticon=\\\"list\\\"\\n\\tmax=\\\"50\\\"\\n\\tshowon=\\\"add_site_view_html:1\\\"\\n\\/>\"', 1, '2021-10-04 00:22:57', '2022-05-18 06:10:59', 6, '', 934, '899bbb17-622e-4b2b-91f4-3c8e683d6b56', '', '', '', '', ''),
(2963, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Powers Header (site.view.model)', 'NOT NULL', '', 35, '\"<field\\n\\ttype=\\\"subform\\\"\\n\\tname=\\\"power_site_view_model\\\"\\n\\tlabel=\\\"Power Header<br \\/>\\r\\n<small>(site.view.model)<\\/small><br \\/>\\r\\n<b>getItem<\\/b>\\\"\\n\\tlayout=\\\"joomla.form.field.subform.repeatable-table\\\"\\n\\tmultiple=\\\"true\\\"\\n\\tbuttons=\\\"add,remove,move\\\"\\n\\tfields=\\\"2949,3041,3040\\\"\\n\\tdescription=\\\"The power header for site view model. Only use this option if you have a <b>getItem<\\/b> as your <b>Main Get<\\/b>.\\\"\\n\\ticon=\\\"list\\\"\\n\\tmax=\\\"50\\\"\\n\\tshowon=\\\"add_site_view_model:1\\\"\\n\\/>\"', 1, '2021-10-04 00:22:57', '2022-05-18 06:10:50', 5, '', 934, '913202fc-40c1-4c05-ac53-975b9abde8a0', '', '', '', '', ''),
(2964, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Powers Header (admin.views.controller)', 'NOT NULL', '', 35, '\"<field\\n\\ttype=\\\"subform\\\"\\n\\tname=\\\"power_admin_views_controller\\\"\\n\\tlabel=\\\"Power Header<br \\/>\\r\\n<small>(admin.views.controller)<\\/small>\\\"\\n\\tlayout=\\\"joomla.form.field.subform.repeatable-table\\\"\\n\\tmultiple=\\\"true\\\"\\n\\tbuttons=\\\"add,remove,move\\\"\\n\\tfields=\\\"2949,3041,3040\\\"\\n\\tdescription=\\\"The power header for admin views controller.\\\"\\n\\ticon=\\\"list\\\"\\n\\tmax=\\\"50\\\"\\n\\tshowon=\\\"add_admin_views_controller:1\\\"\\n\\/>\"', 1, '2021-10-04 00:22:57', '2022-05-18 06:03:28', 5, '', 934, '7ea58f3d-e2e9-41c2-af48-dbc9d8a23359', '', '', '', '', ''),
(2965, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Powers Header (admin.views.html)', 'NOT NULL', '', 35, '\"<field\\n\\ttype=\\\"subform\\\"\\n\\tname=\\\"power_admin_views_html\\\"\\n\\tlabel=\\\"Power Header<br \\/>\\r\\n<small>(admin.views.html)<\\/small>\\\"\\n\\tlayout=\\\"joomla.form.field.subform.repeatable-table\\\"\\n\\tmultiple=\\\"true\\\"\\n\\tbuttons=\\\"add,remove,move\\\"\\n\\tfields=\\\"2949,3041,3040\\\"\\n\\tdescription=\\\"The power header for admin views.\\\"\\n\\ticon=\\\"list\\\"\\n\\tmax=\\\"50\\\"\\n\\tshowon=\\\"add_admin_views_html:1\\\"\\n\\/>\"', 1, '2021-10-04 00:22:57', '2022-05-18 06:03:30', 6, '', 934, '96874780-6023-4feb-9847-4bf716f24126', '', '', '', '', ''),
(2966, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Powers Header (admin.views.model)', 'NOT NULL', '', 35, '\"<field\\n\\ttype=\\\"subform\\\"\\n\\tname=\\\"power_admin_views_model\\\"\\n\\tlabel=\\\"Power Header<br \\/>\\r\\n<small>(admin.views.model)<\\/small>\\\"\\n\\tlayout=\\\"joomla.form.field.subform.repeatable-table\\\"\\n\\tmultiple=\\\"true\\\"\\n\\tbuttons=\\\"add,remove,move\\\"\\n\\tfields=\\\"2949,3041,3040\\\"\\n\\tdescription=\\\"The power header for admin views model.\\\"\\n\\ticon=\\\"list\\\"\\n\\tmax=\\\"50\\\"\\n\\tshowon=\\\"add_admin_views_model:1\\\"\\n\\/>\"', 1, '2021-10-04 00:22:57', '2022-05-18 06:03:32', 5, '', 934, 'a59d13b0-382e-4fce-8a3d-ba715eb69062', '', '', '', '', ''),
(2967, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Powers Header (admin.view.controller)', 'NOT NULL', '', 35, '\"<field\\n\\ttype=\\\"subform\\\"\\n\\tname=\\\"power_admin_view_controller\\\"\\n\\tlabel=\\\"Power Header<br \\/>\\r\\n<small>(admin.view.controller)<\\/small>\\\"\\n\\tlayout=\\\"joomla.form.field.subform.repeatable-table\\\"\\n\\tmultiple=\\\"true\\\"\\n\\tbuttons=\\\"add,remove,move\\\"\\n\\tfields=\\\"2949,3041,3040\\\"\\n\\tdescription=\\\"The power header for admin view controller.\\\"\\n\\ticon=\\\"list\\\"\\n\\tmax=\\\"50\\\"\\n\\tshowon=\\\"add_admin_view_controller:1\\\"\\n\\/>\"', 1, '2021-10-04 00:22:57', '2022-05-18 06:03:34', 5, '', 934, 'd33f8d0d-b94a-4619-abb2-cb39bd17c12b', '', '', '', '', ''),
(2968, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Powers Header (admin.view.html)', 'NOT NULL', '', 35, '\"<field\\n\\ttype=\\\"subform\\\"\\n\\tname=\\\"power_admin_view_html\\\"\\n\\tlabel=\\\"Power Header<br \\/>\\r\\n<small>(admin.view.html)<\\/small>\\\"\\n\\tlayout=\\\"joomla.form.field.subform.repeatable-table\\\"\\n\\tmultiple=\\\"true\\\"\\n\\tbuttons=\\\"add,remove,move\\\"\\n\\tfields=\\\"2949,3041,3040\\\"\\n\\tdescription=\\\"The power header for admin view.\\\"\\n\\ticon=\\\"list\\\"\\n\\tmax=\\\"50\\\"\\n\\tshowon=\\\"add_admin_view_html:1\\\"\\n\\/>\"', 1, '2021-10-04 00:22:57', '2022-05-18 06:03:36', 6, '', 934, 'fc980e0e-7642-4057-b9fd-9179595f0b64', '', '', '', '', ''),
(2969, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Powers Header (admin.view.model)', 'NOT NULL', '', 35, '\"<field\\n\\ttype=\\\"subform\\\"\\n\\tname=\\\"power_admin_view_model\\\"\\n\\tlabel=\\\"Power Header<br \\/>\\r\\n<small>(admin.view.model)<\\/small>\\\"\\n\\tlayout=\\\"joomla.form.field.subform.repeatable-table\\\"\\n\\tmultiple=\\\"true\\\"\\n\\tbuttons=\\\"add,remove,move\\\"\\n\\tfields=\\\"2949,3041,3040\\\"\\n\\tdescription=\\\"The power header for admin view model.\\\"\\n\\ticon=\\\"list\\\"\\n\\tmax=\\\"50\\\"\\n\\tshowon=\\\"add_admin_view_model:1\\\"\\n\\/>\"', 1, '2021-10-04 00:22:57', '2022-05-18 06:03:39', 5, '', 934, 'c9a95f78-258c-4778-9aad-39382ad420ac', '', '', '', '', ''),
(2970, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Powers Header (site.admin.view.model)', 'NOT NULL', '', 35, '\"<field\\n\\ttype=\\\"subform\\\"\\n\\tname=\\\"power_site_admin_view_model\\\"\\n\\tlabel=\\\"Power Header<br \\/>\\r\\n<small>(site.admin.view.model)<\\/small>\\\"\\n\\tlayout=\\\"joomla.form.field.subform.repeatable-table\\\"\\n\\tmultiple=\\\"true\\\"\\n\\tbuttons=\\\"add,remove,move\\\"\\n\\tfields=\\\"2949,3041,3040\\\"\\n\\tdescription=\\\"The power header for site admin view model. So only use this if you have selected the admin edit view to be added to the site area.\\\"\\n\\ticon=\\\"list\\\"\\n\\tmax=\\\"50\\\"\\n\\tshowon=\\\"add_site_admin_view_model:1\\\"\\n\\/>\"', 1, '2021-10-04 00:22:57', '2022-05-18 06:03:41', 5, '', 934, '838743f8-0e4c-4389-98ed-fd9aa2085dd8', '', '', '', '', ''),
(2971, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Powers Header (custom.admin.view.model)', 'NOT NULL', '', 35, '\"<field\\n\\ttype=\\\"subform\\\"\\n\\tname=\\\"power_custom_admin_view_model\\\"\\n\\tlabel=\\\"Power Header<br \\/>\\r\\n<small>(custom.admin.view.model)<\\/small><br \\/>\\r\\n<b>getItem<\\/b>\\\"\\n\\tlayout=\\\"joomla.form.field.subform.repeatable-table\\\"\\n\\tmultiple=\\\"true\\\"\\n\\tbuttons=\\\"add,remove,move\\\"\\n\\tfields=\\\"2949,3041,3040\\\"\\n\\tdescription=\\\"The power header for custom admin view model. Only use this option if you have a <b>getItem<\\/b> as your <b>Main Get<\\/b>.\\\"\\n\\ticon=\\\"list\\\"\\n\\tmax=\\\"50\\\"\\n\\tshowon=\\\"add_custom_admin_view_model:1\\\"\\n\\/>\"', 1, '2021-10-04 00:22:57', '2022-05-18 06:10:37', 5, '', 934, 'bf322722-8f06-42d1-a67e-03f7b4a7fc8a', '', '', '', '', ''),
(2972, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Powers Header (site.helper)', 'NOT NULL', '', 35, '\"<field\\n\\ttype=\\\"subform\\\"\\n\\tname=\\\"power_site_helper\\\"\\n\\tlabel=\\\"Power Header<br \\/>\\r\\n<small>(site.helper)<\\/small>\\\"\\n\\tlayout=\\\"joomla.form.field.subform.repeatable-table\\\"\\n\\tmultiple=\\\"true\\\"\\n\\tbuttons=\\\"add,remove,move\\\"\\n\\tfields=\\\"2949,3041,3040\\\"\\n\\ticon=\\\"list\\\"\\n\\tmax=\\\"50\\\"\\n\\tshowon=\\\"add_site_helper:1\\\"\\n\\/>\"', 1, '2021-10-04 00:22:57', '2022-05-18 06:17:40', 5, '', 934, '9c114a58-1c69-41f3-949f-07bfe9136852', '', '', '', '', ''),
(2973, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Powers Header (admin.helper)', 'NOT NULL', '', 35, '\"<field\\n\\ttype=\\\"subform\\\"\\n\\tname=\\\"power_admin_helper\\\"\\n\\tlabel=\\\"Power Header<br \\/>\\r\\n<small>(admin.helper)<\\/small>\\\"\\n\\tlayout=\\\"joomla.form.field.subform.repeatable-table\\\"\\n\\tmultiple=\\\"true\\\"\\n\\tbuttons=\\\"add,remove,move\\\"\\n\\tfields=\\\"2949,3041,3040\\\"\\n\\ticon=\\\"list\\\"\\n\\tmax=\\\"50\\\"\\n\\tshowon=\\\"add_admin_helper:1\\\"\\n\\/>\"', 1, '2021-10-04 00:22:57', '2022-05-18 06:17:16', 5, '', 934, 'e547b2e8-2c20-4f55-8c37-9b91f89e07d4', '', '', '', '', ''),
(2974, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Powers Header (admin.component)', 'NOT NULL', '', 35, '\"<field\\n\\ttype=\\\"subform\\\"\\n\\tname=\\\"power_admin_component\\\"\\n\\tlabel=\\\"Power Header<br \\/>\\r\\n<small>(admin.component)<\\/small>\\\"\\n\\tlayout=\\\"joomla.form.field.subform.repeatable-table\\\"\\n\\tmultiple=\\\"true\\\"\\n\\tbuttons=\\\"add,remove,move\\\"\\n\\tfields=\\\"2949,3041,3040\\\"\\n\\ticon=\\\"list\\\"\\n\\tmax=\\\"50\\\"\\n\\tshowon=\\\"add_admin_component:1\\\"\\n\\/>\"', 1, '2021-10-04 00:22:57', '2022-05-18 06:17:06', 7, '', 934, '5bfefd82-e798-4fdd-8811-823410b75328', '', '', '', '', ''),
(2975, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Powers Header (site.component)', 'NOT NULL', '', 35, '\"<field\\n\\ttype=\\\"subform\\\"\\n\\tname=\\\"power_site_component\\\"\\n\\tlabel=\\\"Powers Header<br \\/>\\r\\n<small>(site.component)<\\/small>\\\"\\n\\tlayout=\\\"joomla.form.field.subform.repeatable-table\\\"\\n\\tmultiple=\\\"true\\\"\\n\\tbuttons=\\\"add,remove,move\\\"\\n\\tfields=\\\"2949,3041,3040\\\"\\n\\ticon=\\\"list\\\"\\n\\tmax=\\\"50\\\"\\n\\tshowon=\\\"add_site_component:1\\\"\\n\\/>\"', 1, '2021-10-04 01:40:04', '2022-05-18 06:16:59', 5, '', 934, '861b3a08-9a89-4e93-b2bb-640af227904c', '', '', '', '', ''),
(2976, '', '', '', '', '', '', '', '', '', '', '', '', '', '', 'Namespacing in JCB', 'NOT NULL', '', 14, '\"<field\\n\\ttype=\\\"note\\\"\\n\\tname=\\\"namespace_details\\\"\\n\\tlabel=\\\"Namespacing in JCB\\\"\\n\\tdescription=\\\"<div class=\'uk-scrollable-text\'>\\r\\n<p>We will use the namespace value to build the folder structure and filename. This namespace will also directly be used as the <b>use<\\/b> declaration wherever you link this power. Therefore the namespace declared here must end with the <b>filename<\\/b>, and this file name must match the case of the terminating class name.<br \\/>\\r\\n<small>Example (namespace): <b>ComponentName\\\\Sub\\\\ClassName<\\/b><\\/small><br \\/>\\r\\n<i>JCB will build the following file path<\\/i><br \\/>\\r\\n<small>Example (filepath): <b>root\\/libraries\\/jcb_powers\\/ComponentName.Sub\\/src\\/ClassName.php<\\/b><\\/small><br \\/>\\r\\n<i>With a four section namespace<\\/i><br \\/>\\r\\n<small>Example (namespace): <b>ComponentName\\\\Sub\\\\Type\\\\ClassName<\\/b><\\/small><br \\/>\\r\\n<i>JCB will build the following file path<\\/i><br \\/>\\r\\n<small>Example (filepath): <b>root\\/libraries\\/jcb_powers\\/ComponentName.Sub.Type\\/src\\/ClassName.php<\\/b><\\/small><br \\/>\\r\\n<i>To add a folder inside the src folder use [.] in class name<\\/i><br \\/>\\r\\n<small>Example (namespace): <b>ComponentName\\\\Sub\\\\Util.ClassName<\\/b><\\/small><br \\/>\\r\\n<small>Example (JCB builds this namespace): <b>ComponentName\\\\Sub\\\\Util\\\\ClassName<\\/b><\\/small><br \\/>\\r\\n<i>JCB will build the following file path<\\/i><br \\/>\\r\\n<small>Example (filepath): <b>root\\/libraries\\/jcb_powers\\/ComponentName.Sub\\/src\\/Util\\/ClassName.php<\\/b><\\/small><\\/p>\\r\\n\\r\\n<p>The component placeholder also works in namespacing, as well as normal placeholders:<br \\/>\\r\\n<small>Example: <b>&#91;&#91;&#91;Component&#93;&#93;&#93;\\\\SubNamespaceNames\\\\ClassName<\\/b><\\/small><\\/p>\\r\\n\\r\\n<p>We will also use the namespacing for auto loading in your project wherever you link this power.<\\/p>\\r\\n<p><small>The <b>jcb_powers<\\/b> can be changed globally and per\\/component (soon).<\\/small><br \\/><small>Make your powers load system wide with a plugin (soon).<\\/small><\\/p>\\r\\n\\r\\n<p>For more info on how all this works: https:\\/\\/www.php-fig.org\\/psr\\/psr-4\\/<\\/p>\\r\\n<\\/div>\\\"\\n\\theading=\\\"h4\\\"\\n\\tclass=\\\"alert alert-success\\\"\\n\\tshowon=\\\"\\\"\\n\\/>\"', 1, '2021-11-06 22:41:12', '2021-11-08 15:12:15', 14, '', 1014, 'f230846c-f9b8-4615-9d1e-bba9a42d1a89', '', '', '', '', ''),
(2977, '', '', '', '', '', '', '', '', '', '', '', '', '', '', 'Select your global powers plugin here.', 'NOT NULL', '', 14, '\"<field\\n\\ttype=\\\"note\\\"\\n\\tname=\\\"note_select_power_plugin\\\"\\n\\tlabel=\\\"Select your power autoloader plugin here.\\\"\\n\\tdescription=\\\"If you don\'t yet have a global powers autoloader plugin, <a href=\'[[[tutorial_global_power_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, '2021-11-13 13:35:33', '0000-00-00 00:00:00', 1, '', 944, 'd8624627-a846-4577-8ed7-b6dafe9f1f1b', '', '', '', '', ''),
(2978, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'JCB Powers Path', '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\\tautocomplete=\\\"on\\\"\\n\\/>\"', 1, '2021-11-16 19:45:45', '2021-12-01 00:51:37', 3, '', 641, '8df9b1a7-8e86-4574-8b47-5f497e0f02e1', '', '', '', '', ''),
(2979, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Class Header (site.views.html)', 'NOT NULL', 2, 8, '\"<field\\n\\ttype=\\\"editor\\\"\\n\\tname=\\\"site_views_html\\\"\\n\\tlabel=\\\"Class Header<br \\/>\\r\\n<small>(site.views.html)<\\/small><br \\/>\\r\\n<b>getListQuery<\\/b>\\\"\\n\\tdescription=\\\"The class header for site views. Only use this option if you have a <b>getListQuery<\\/b> as your <b>Main Get<\\/b>.\\\"\\n\\twidth=\\\"100%\\\"\\n\\theight=\\\"100px\\\"\\n\\tcols=\\\"15\\\"\\n\\trows=\\\"10\\\"\\n\\tbuttons=\\\"no\\\"\\n\\tsyntax=\\\"php\\\"\\n\\teditor=\\\"codemirror|none\\\"\\n\\tfilter=\\\"raw\\\"\\n\\trequired=\\\"false\\\"\\n\\tvalidate=\\\"code\\\"\\n\\tshowon=\\\"add_site_views_html:1\\\"\\n\\/>\"', 1, '2021-12-01 22:33:53', '2021-12-01 22:15:02', 1, '', 934, 'ac6c62a4-cef5-4c3d-a787-7a82db167036', '', '', '', '', ''),
(2980, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Class Header (site.view.html)', 'NOT NULL', 2, 8, '\"<field\\n\\ttype=\\\"editor\\\"\\n\\tname=\\\"site_view_html\\\"\\n\\tlabel=\\\"Class Header Header<br \\/>\\r\\n<small>(site.view.html)<\\/small><br \\/>\\r\\n<b>getItem<\\/b>\\\"\\n\\tdescription=\\\"The class header header for site view. Only use this option if you have a <b>getItem<\\/b> as your <b>Main Get<\\/b>.\\\"\\n\\twidth=\\\"100%\\\"\\n\\theight=\\\"100px\\\"\\n\\tcols=\\\"15\\\"\\n\\trows=\\\"10\\\"\\n\\tbuttons=\\\"no\\\"\\n\\tsyntax=\\\"php\\\"\\n\\teditor=\\\"codemirror|none\\\"\\n\\tfilter=\\\"raw\\\"\\n\\trequired=\\\"false\\\"\\n\\tvalidate=\\\"code\\\"\\n\\tshowon=\\\"add_site_view_html:1\\\"\\n\\/>\"', 1, '2021-12-01 22:35:09', '2021-12-01 22:15:37', 1, '', 934, '9b5ef17c-e0d0-4c92-868d-e8ccd96344bc', '', '', '', '', ''),
(2981, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'Target Site View Class Header', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"add_site_view_html\\\"\\n\\tlabel=\\\"Target Site View<br \\/>Class Header\\\"\\n\\tdescription=\\\"Only use this option if you have a <b>getItem<\\/b> as your <b>Main Get<\\/b>.\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"1|Yes,0|No\\\"\\n\\tdefault=\\\"0\\\"\\n\\trequired=\\\"true\\\"\\n\\/>\"', 1, '2021-12-01 22:37:39', '2021-12-01 22:37:11', 1, '', 1004, '78d5524a-b1ca-4c6f-a515-311bdc16f193', '', '', '', '', ''),
(2982, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'Target Site Views Class Header', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"add_site_views_html\\\"\\n\\tlabel=\\\"Target Site Views<br \\/>Class Header\\\"\\n\\tdescription=\\\"Only use this option if you have a <b>getListQuery<\\/b> as your <b>Main Get<\\/b>.\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"1|Yes,0|No\\\"\\n\\tdefault=\\\"0\\\"\\n\\trequired=\\\"true\\\"\\n\\/>\"', 1, '2021-12-01 22:38:20', '2021-12-01 22:37:55', 1, '', 1004, '57887878-df27-4178-a35f-68a805eb4960', '', '', '', '', ''),
(2983, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'Target Admin View Class Header', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"add_admin_view_html\\\"\\n\\tlabel=\\\"Target Admin View<br \\/>Class Header\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"1|Yes,0|No\\\"\\n\\tdefault=\\\"0\\\"\\n\\trequired=\\\"true\\\"\\n\\/>\"', 1, '2021-12-01 23:03:38', '2021-12-01 23:03:13', 1, '', 1004, '16f04ee7-3c92-40af-86ae-acca762109b8', '', '', '', '', ''),
(2984, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'Target Admin Views Class Header', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"add_admin_views_html\\\"\\n\\tlabel=\\\"Target Admin Views<br \\/>Class Header\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"1|Yes,0|No\\\"\\n\\tdefault=\\\"0\\\"\\n\\trequired=\\\"true\\\"\\n\\/>\"', 1, '2021-12-01 23:04:31', '2021-12-01 23:04:04', 1, '', 1004, '889d9d8f-275d-4ecf-bcbd-742be81dba18', '', '', '', '', ''),
(2985, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Class Header (admin.view.html)', 'NOT NULL', 2, 8, '\"<field\\n\\ttype=\\\"editor\\\"\\n\\tname=\\\"admin_view_html\\\"\\n\\tlabel=\\\"Class Header<br \\/>\\r\\n<small>(admin.view.html)<\\/small>\\\"\\n\\tdescription=\\\"The class header for admin view.\\\"\\n\\twidth=\\\"100%\\\"\\n\\theight=\\\"100px\\\"\\n\\tcols=\\\"15\\\"\\n\\trows=\\\"10\\\"\\n\\tbuttons=\\\"no\\\"\\n\\tsyntax=\\\"php\\\"\\n\\teditor=\\\"codemirror|none\\\"\\n\\tfilter=\\\"safehtml\\\"\\n\\trequired=\\\"false\\\"\\n\\tvalidate=\\\"code\\\"\\n\\tshowon=\\\"add_admin_view_html:1\\\"\\n\\/>\"', 1, '2021-12-01 23:06:07', '2021-12-01 23:05:20', 1, '', 934, '054e03d6-8721-4443-8b14-25c7809aeca1', '', '', '', '', ''),
(2986, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Class Header (admin.views.html)', 'NOT NULL', 2, 8, '\"<field\\n\\ttype=\\\"editor\\\"\\n\\tname=\\\"admin_views_html\\\"\\n\\tlabel=\\\"Class Header<br \\/>\\r\\n<small>(admin.views.html)<\\/small>\\\"\\n\\tdescription=\\\"The class header for admin views.\\\"\\n\\twidth=\\\"100%\\\"\\n\\theight=\\\"100px\\\"\\n\\tcols=\\\"15\\\"\\n\\trows=\\\"10\\\"\\n\\tbuttons=\\\"no\\\"\\n\\tsyntax=\\\"php\\\"\\n\\teditor=\\\"codemirror|none\\\"\\n\\tfilter=\\\"raw\\\"\\n\\trequired=\\\"false\\\"\\n\\tvalidate=\\\"code\\\"\\n\\tshowon=\\\"add_admin_views_html:1\\\"\\n\\/>\"', 1, '2021-12-01 23:06:57', '2021-12-01 23:14:45', 2, '', 934, 'b1dd8b42-a6ce-4704-b730-768928e76907', '', '', '', '', ''),
(2987, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'Target Site Admin View Class Header', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"add_site_admin_view_html\\\"\\n\\tlabel=\\\"Target Site Admin View<br \\/>Class Header\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"1|Yes,0|No\\\"\\n\\tdefault=\\\"0\\\"\\n\\trequired=\\\"true\\\"\\n\\/>\"', 1, '2021-12-01 23:17:00', '2021-12-01 23:16:35', 1, '', 1004, '7a00220d-1b51-4637-916d-a81ed54d6904', '', '', '', '', ''),
(2988, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Class Header (site.admin.view.html)', 'NOT NULL', 2, 8, '\"<field\\n\\ttype=\\\"editor\\\"\\n\\tname=\\\"site_admin_view_html\\\"\\n\\tlabel=\\\"Class Header<br \\/>\\r\\n<small>(site.admin.view.html)<\\/small>\\\"\\n\\tdescription=\\\"The class header for site admin view. So only use this if you have selected the admin edit view to be added to the site area.\\\"\\n\\twidth=\\\"100%\\\"\\n\\theight=\\\"100px\\\"\\n\\tcols=\\\"15\\\"\\n\\trows=\\\"10\\\"\\n\\tbuttons=\\\"no\\\"\\n\\tsyntax=\\\"php\\\"\\n\\teditor=\\\"codemirror|none\\\"\\n\\tfilter=\\\"safehtml\\\"\\n\\trequired=\\\"false\\\"\\n\\tvalidate=\\\"code\\\"\\n\\tshowon=\\\"add_site_admin_view_html:1\\\"\\n\\/>\"', 1, '2021-12-01 23:18:18', '2021-12-01 23:20:14', 2, '', 934, 'c7e48d2d-5b37-482e-b091-0d4a634de5d3', '', '', '', '', ''),
(2989, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'Target Custom Admin Views Class Header', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"add_custom_admin_views_html\\\"\\n\\tlabel=\\\"Target Custom Admin Views<br \\/>Class Header\\\"\\n\\tdescription=\\\"Only use this option if you have a <b>getListQuery<\\/b> as your <b>Main Get<\\/b>.\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"1|Yes,0|No\\\"\\n\\tdefault=\\\"0\\\"\\n\\trequired=\\\"true\\\"\\n\\/>\"', 1, '2021-12-01 23:30:38', '2021-12-01 23:30:10', 1, '', 1004, 'd4f90ebe-c1c1-47f9-b4bb-98bdbe5d48c4', '', '', '', '', ''),
(2990, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'Target Custom Admin View Class Header', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"add_custom_admin_view_html\\\"\\n\\tlabel=\\\"Target Custom Admin View<br \\/>Class Header\\\"\\n\\tdescription=\\\"Only use this option if you have a <b>getItem<\\/b> as your <b>Main Get<\\/b>.\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"1|Yes,0|No\\\"\\n\\tdefault=\\\"0\\\"\\n\\trequired=\\\"true\\\"\\n\\/>\"', 1, '2021-12-01 23:31:16', '2021-12-01 23:30:52', 1, '', 1004, '8f1c1408-c631-4a89-a5ef-6f0e5ad0dd2b', '', '', '', '', ''),
(2991, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Class Header (custom.admin.view.html)', 'NOT NULL', 2, 8, '\"<field\\n\\ttype=\\\"editor\\\"\\n\\tname=\\\"custom_admin_view_html\\\"\\n\\tlabel=\\\"Class Header<br \\/>\\r\\n<small>(custom.admin.view.html)<\\/small><br \\/>\\r\\n<b>getItem<\\/b>\\\"\\n\\tdescription=\\\"The class header for custom admin view. Only use this option if you have a <b>getItem<\\/b> as your <b>Main Get<\\/b>.\\\"\\n\\twidth=\\\"100%\\\"\\n\\theight=\\\"100px\\\"\\n\\tcols=\\\"15\\\"\\n\\trows=\\\"10\\\"\\n\\tbuttons=\\\"no\\\"\\n\\tsyntax=\\\"php\\\"\\n\\teditor=\\\"codemirror|none\\\"\\n\\tfilter=\\\"raw\\\"\\n\\trequired=\\\"false\\\"\\n\\tvalidate=\\\"code\\\"\\n\\tshowon=\\\"add_custom_admin_view_html:1\\\"\\n\\/>\"', 1, '2021-12-01 23:32:29', '2021-12-01 23:32:42', 2, '', 934, 'bfd612cd-1a90-4f0f-ac34-2ee1b8369ccf', '', '', '', '', ''),
(2992, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Class Header (custom.admin.views.html)', 'NOT NULL', 2, 8, '\"<field\\n\\ttype=\\\"editor\\\"\\n\\tname=\\\"custom_admin_views_html\\\"\\n\\tlabel=\\\"Class Header<br \\/>\\r\\n<small>(custom.admin.views.html)<\\/small><br \\/>\\r\\n<b>getListQuery<\\/b>\\\"\\n\\tdescription=\\\"The class header for custom admin views. Only use this option if you have a <b>getListQuery<\\/b> as your <b>Main Get<\\/b>.\\\"\\n\\twidth=\\\"100%\\\"\\n\\theight=\\\"100px\\\"\\n\\tcols=\\\"15\\\"\\n\\trows=\\\"10\\\"\\n\\tbuttons=\\\"no\\\"\\n\\tsyntax=\\\"php\\\"\\n\\teditor=\\\"codemirror|none\\\"\\n\\tfilter=\\\"raw\\\"\\n\\trequired=\\\"false\\\"\\n\\tvalidate=\\\"code\\\"\\n\\tshowon=\\\"add_custom_admin_views_html:1\\\"\\n\\/>\"', 1, '2021-12-01 23:33:50', '2021-12-01 23:33:10', 1, '', 934, '5e83c045-b551-4061-898e-993b81ebcd92', '', '', '', '', ''),
(2993, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Powers Header (site.view)', 'NOT NULL', '', 35, '\"<field\\n\\ttype=\\\"subform\\\"\\n\\tname=\\\"power_site_view\\\"\\n\\tlabel=\\\"Power Header<br \\/>\\r\\n<small>(site.view)<\\/small><br \\/>\\r\\n<b>getItem<\\/b>\\\"\\n\\tlayout=\\\"joomla.form.field.subform.repeatable-table\\\"\\n\\tmultiple=\\\"true\\\"\\n\\tbuttons=\\\"add,remove,move\\\"\\n\\tfields=\\\"2949,3041,3040\\\"\\n\\tdescription=\\\"The power header for site view. Only use this option if you have a <b>getItem<\\/b> as your <b>Main Get<\\/b>.\\\"\\n\\ticon=\\\"list\\\"\\n\\tmax=\\\"50\\\"\\n\\tshowon=\\\"add_site_view:1\\\"\\n\\/>\"', 1, '2021-12-02 04:35:59', '2022-05-18 06:10:29', 4, '', 934, '238318d9-3775-40ca-b52f-351ee2d0af67', '', '', '', '', ''),
(2994, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Powers Header (site.views)', 'NOT NULL', '', 35, '\"<field\\n\\ttype=\\\"subform\\\"\\n\\tname=\\\"power_site_views\\\"\\n\\tlabel=\\\"Power Header<br \\/>\\r\\n<small>(site.views)<\\/small><br \\/>\\r\\n<b>getListQuery<\\/b>\\\"\\n\\tlayout=\\\"joomla.form.field.subform.repeatable-table\\\"\\n\\tmultiple=\\\"true\\\"\\n\\tbuttons=\\\"add,remove,move\\\"\\n\\tfields=\\\"2949,3041,3040\\\"\\n\\tdescription=\\\"The power header for site views. Only use this option if you have a <b>getListQuery<\\/b> as your <b>Main Get<\\/b>.\\\"\\n\\ticon=\\\"list\\\"\\n\\tmax=\\\"50\\\"\\n\\tshowon=\\\"add_site_views:1\\\"\\n\\/>\"', 1, '2021-12-02 04:36:31', '2022-05-18 06:10:20', 4, '', 934, '785ba35b-1828-4673-9e4c-d0566a357531', '', '', '', '', ''),
(2995, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Powers Header (admin.view)', 'NOT NULL', '', 35, '\"<field\\n\\ttype=\\\"subform\\\"\\n\\tname=\\\"power_admin_view\\\"\\n\\tlabel=\\\"Power Header<br \\/>\\r\\n<small>(admin.view)<\\/small>\\\"\\n\\tlayout=\\\"joomla.form.field.subform.repeatable-table\\\"\\n\\tmultiple=\\\"true\\\"\\n\\tbuttons=\\\"add,remove,move\\\"\\n\\tfields=\\\"2949,3041,3040\\\"\\n\\tdescription=\\\"The power header for admin view.\\\"\\n\\ticon=\\\"list\\\"\\n\\tmax=\\\"50\\\"\\n\\tshowon=\\\"add_admin_view:1\\\"\\n\\/>\"', 1, '2021-12-02 04:38:23', '2022-05-18 06:03:42', 4, '', 934, '9d79b0ce-ba39-4b15-8dda-3a42669f9ff4', '', '', '', '', ''),
(2996, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Powers Header (admin.views)', 'NOT NULL', '', 35, '\"<field\\n\\ttype=\\\"subform\\\"\\n\\tname=\\\"power_admin_views\\\"\\n\\tlabel=\\\"Power Header<br \\/>\\r\\n<small>(admin.views)<\\/small>\\\"\\n\\tlayout=\\\"joomla.form.field.subform.repeatable-table\\\"\\n\\tmultiple=\\\"true\\\"\\n\\tbuttons=\\\"add,remove,move\\\"\\n\\tfields=\\\"2949,3041,3040\\\"\\n\\tdescription=\\\"The power header for admin views.\\\"\\n\\ticon=\\\"list\\\"\\n\\tmax=\\\"50\\\"\\n\\tshowon=\\\"add_admin_views:1\\\"\\n\\/>\"', 1, '2021-12-02 04:38:40', '2022-05-18 06:03:44', 4, '', 934, '23a44329-4c7a-4e4b-8f45-5423a44001a2', '', '', '', '', ''),
(2997, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Powers Header (custom.admin.views)', 'NOT NULL', '', 35, '\"<field\\n\\ttype=\\\"subform\\\"\\n\\tname=\\\"power_custom_admin_views\\\"\\n\\tlabel=\\\"Power Header<br \\/>\\r\\n<small>(custom.admin.views)<\\/small><br \\/>\\r\\n<b>getListQuery<\\/b>\\\"\\n\\tlayout=\\\"joomla.form.field.subform.repeatable-table\\\"\\n\\tmultiple=\\\"true\\\"\\n\\tbuttons=\\\"add,remove,move\\\"\\n\\tfields=\\\"2949,3041,3040\\\"\\n\\tdescription=\\\"The power header for custom admin views. Only use this option if you have a <b>getListQuery<\\/b> as your <b>Main Get<\\/b>.\\\"\\n\\ticon=\\\"list\\\"\\n\\tmax=\\\"50\\\"\\n\\tshowon=\\\"add_custom_admin_views:1\\\"\\n\\/>\"', 1, '2021-12-02 04:41:01', '2022-05-18 06:10:11', 3, '', 934, '844a432a-0822-42a8-a01f-eccec9f812d5', '', '', '', '', ''),
(2998, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Powers Header (custom.admin.view)', 'NOT NULL', '', 35, '\"<field\\n\\ttype=\\\"subform\\\"\\n\\tname=\\\"power_custom_admin_view\\\"\\n\\tlabel=\\\"Power Header<br \\/>\\r\\n<small>(custom.admin.view)<\\/small><br \\/>\\r\\n<b>getItem<\\/b>\\\"\\n\\tlayout=\\\"joomla.form.field.subform.repeatable-table\\\"\\n\\tmultiple=\\\"true\\\"\\n\\tbuttons=\\\"add,remove,move\\\"\\n\\tfields=\\\"2949,3041,3040\\\"\\n\\tdescription=\\\"The power header for custom admin view. Only use this option if you have a <b>getItem<\\/b> as your <b>Main Get<\\/b>.\\\"\\n\\ticon=\\\"list\\\"\\n\\tmax=\\\"50\\\"\\n\\tshowon=\\\"add_custom_admin_view:1\\\"\\n\\/>\"', 1, '2021-12-02 04:41:26', '2022-05-18 06:10:03', 3, '', 934, '8d15f6ff-00f4-4691-b992-3e849d4d0f7f', '', '', '', '', ''),
(2999, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Powers Header (site.admin.view)', 'NOT NULL', '', 35, '\"<field\\n\\ttype=\\\"subform\\\"\\n\\tname=\\\"power_site_admin_view\\\"\\n\\tlabel=\\\"Power Header<br \\/>\\r\\n<small>(site.admin.view)<\\/small>\\\"\\n\\tlayout=\\\"joomla.form.field.subform.repeatable-table\\\"\\n\\tmultiple=\\\"true\\\"\\n\\tbuttons=\\\"add,remove,move\\\"\\n\\tfields=\\\"2949,3041,3040\\\"\\n\\tdescription=\\\"The power header for site admin view. So only use this if you have selected the admin edit view to be added to the site area.\\\"\\n\\ticon=\\\"list\\\"\\n\\tmax=\\\"50\\\"\\n\\tshowon=\\\"add_site_admin_view:1\\\"\\n\\/>\"', 1, '2021-12-02 04:43:52', '2022-05-18 06:03:46', 4, '', 934, 'c78af4da-272f-4ae6-a749-b0c8242e3db1', '', '', '', '', ''),
(3000, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Load Powers', 'NULL', '', 35, '\"<field\\n\\ttype=\\\"subform\\\"\\n\\tname=\\\"load_selection\\\"\\n\\tlabel=\\\"Load Powers\\\"\\n\\tlayout=\\\"joomla.form.field.subform.repeatable-table\\\"\\n\\tmultiple=\\\"true\\\"\\n\\tbuttons=\\\"add,remove,move\\\"\\n\\tfields=\\\"3002\\\"\\n\\tdescription=\\\"Select powers that you want to make sure also load when this field is loaded.\\\"\\n\\ticon=\\\"list\\\"\\n\\tmax=\\\"30\\\"\\n\\tmin=\\\"0\\\"\\n\\/>\"', 1, '2021-12-04 03:18:10', '2024-03-06 15:52:57', 7, '', 938, 'aeec50c6-9a39-45ff-8210-f5f3aa6a815b', '', '', '', '', ''),
(3001, '', '', '', '', '', '', '', '', '', '', '', '', '', '', 'Load Powers Note', 'NOT NULL', '', 14, '\"<field\\n\\ttype=\\\"note\\\"\\n\\tname=\\\"load_powers_note\\\"\\n\\tlabel=\\\"When to Load Powers Here?\\\"\\n\\tdescription=\\\"<p>When you would like to load a power to the project, but you do not want that power to be part of the <b>use namespace declarations<\\/b> in the header of this power.<\\/p>\\r\\n<p>You do not need to again select any power that is already selected in the <b>Extends<\\/b>, <b>Implements<\\/b>, or <b>Use Selection<\\/b> fields, since they are already being loaded.<\\/p>\\r\\n\\\"\\n\\theading=\\\"h4\\\"\\n\\tclass=\\\"alert alert-info\\\"\\n\\/>\"', 1, '2021-12-04 03:39:55', '2021-12-05 20:22:41', 4, '', 1015, 'ed3c42d8-94f0-45fb-b4c4-93563d5b3aae', '', '', '', '', ''),
(3002, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Load (namespace)', 'NOT NULL', '', 6, '\"<field\\n\\ttype=\\\"namespaces\\\"\\n\\tname=\\\"load\\\"\\n\\tlabel=\\\"load\\\"\\n\\tclass=\\\"list_class span12\\\"\\n\\tmultiple=\\\"false\\\"\\n\\tdefault=\\\"0\\\"\\n\\textends=\\\"list\\\"\\n\\ttable=\\\"#__###component###_power\\\"\\n\\tcomponent=\\\"com_###component###\\\"\\n\\tview=\\\"power\\\"\\n\\tviews=\\\"powers\\\"\\n\\tvalue_field=\\\"name\\\"\\n\\tkey_field=\\\"guid\\\"\\n\\ttype_php_1=\\\"__.o0=base64=Oo.__Ly8gY2hlY2tvdXQgVVNFIChuYW1lc3BhY2UpIElEOjI5NTE=\\\"\\n\\/>\"', 1, '2021-12-04 03:48:32', '2022-04-28 20:30:40', 3, '', 1011, '60647d36-aae4-4695-af5f-7b0ecb770941', '', '', '', '', ''),
(3003, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'Target Ajax Model Class Header', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"add_ajax_model\\\"\\n\\tlabel=\\\"Target Ajax Model<br \\/>Class Header\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"1|Yes,0|No\\\"\\n\\tdefault=\\\"0\\\"\\n\\trequired=\\\"true\\\"\\n\\/>\"', 1, '2021-12-04 06:02:10', '2021-12-04 06:04:33', 3, '', 1004, 'f28a5a89-6bd4-4bec-9482-8dabeb5c76a7', '', '', '', '', ''),
(3004, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Powers Header (ajax.model)', 'NOT NULL', '', 35, '\"<field\\n\\ttype=\\\"subform\\\"\\n\\tname=\\\"power_ajax_model\\\"\\n\\tlabel=\\\"Power Header<br \\/>\\r\\n<small>(ajax.model)<\\/small>\\\"\\n\\tlayout=\\\"joomla.form.field.subform.repeatable-table\\\"\\n\\tmultiple=\\\"true\\\"\\n\\tbuttons=\\\"add,remove,move\\\"\\n\\tfields=\\\"2949,3041,3040\\\"\\n\\tdescription=\\\"The power header for Ajax model.\\\"\\n\\ticon=\\\"list\\\"\\n\\tmax=\\\"50\\\"\\n\\tshowon=\\\"add_ajax_model:1\\\"\\n\\/>\"', 1, '2021-12-04 06:06:18', '2022-05-18 06:03:47', 4, '', 934, 'e428d34d-89c3-4bfa-96a7-223920bc1c5b', '', '', '', '', ''),
(3005, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Class Header (ajax.model)', 'NOT NULL', 2, 8, '\"<field\\n\\ttype=\\\"editor\\\"\\n\\tname=\\\"ajax_model\\\"\\n\\tlabel=\\\"Class Header<br \\/>\\r\\n<small>(ajax.model)<\\/small>\\\"\\n\\tdescription=\\\"The class header for Ajax model.\\\"\\n\\twidth=\\\"100%\\\"\\n\\theight=\\\"100px\\\"\\n\\tcols=\\\"15\\\"\\n\\trows=\\\"10\\\"\\n\\tbuttons=\\\"no\\\"\\n\\tsyntax=\\\"php\\\"\\n\\teditor=\\\"codemirror|none\\\"\\n\\tfilter=\\\"raw\\\"\\n\\trequired=\\\"false\\\"\\n\\tvalidate=\\\"code\\\"\\n\\tshowon=\\\"add_ajax_model:1\\\"\\n\\/>\"', 1, '2021-12-04 06:09:08', '2021-12-01 23:14:45', 1, '', 934, '45a4f105-dd49-4850-b434-49b62bd0759d', '', '', '', '', ''),
(3006, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Powers Header (dashboard.view)', 'NOT NULL', '', 35, '\"<field\\n\\ttype=\\\"subform\\\"\\n\\tname=\\\"power_dashboard_view\\\"\\n\\tlabel=\\\"Power Header<br \\/>\\r\\n<small>(dashboard.view)<\\/small>\\\"\\n\\tlayout=\\\"joomla.form.field.subform.repeatable-table\\\"\\n\\tmultiple=\\\"true\\\"\\n\\tbuttons=\\\"add,remove,move\\\"\\n\\tfields=\\\"2949,3041,3040\\\"\\n\\tdescription=\\\"The power header for dashboard view.\\\"\\n\\ticon=\\\"list\\\"\\n\\tmax=\\\"50\\\"\\n\\tshowon=\\\"add_dashboard_view:1\\\"\\n\\/>\"', 1, '2021-12-06 05:12:01', '2022-05-18 06:14:26', 3, '', 934, '7d36e1a0-bb47-4aff-b6e3-f9a88ce32fcc', '', '', '', '', ''),
(3007, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Powers Header (dashboard.view.html)', 'NOT NULL', '', 35, '\"<field\\n\\ttype=\\\"subform\\\"\\n\\tname=\\\"power_dashboard_view_html\\\"\\n\\tlabel=\\\"Power Header<br \\/>\\r\\n<small>(dashboard.view.html)<\\/small>\\\"\\n\\tlayout=\\\"joomla.form.field.subform.repeatable-table\\\"\\n\\tmultiple=\\\"true\\\"\\n\\tbuttons=\\\"add,remove,move\\\"\\n\\tfields=\\\"2949,3041,3040\\\"\\n\\tdescription=\\\"The power header for dashboard view class.\\\"\\n\\ticon=\\\"list\\\"\\n\\tmax=\\\"50\\\"\\n\\tshowon=\\\"add_dashboard_view_html:1\\\"\\n\\/>\"', 1, '2021-12-06 05:13:23', '2022-05-18 06:14:35', 4, '', 934, 'd3c5f707-9af6-4ce1-ab38-c801423e3e90', '', '', '', '', ''),
(3008, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Powers Header (dashboard.model)', 'NOT NULL', '', 35, '\"<field\\n\\ttype=\\\"subform\\\"\\n\\tname=\\\"power_dashboard_model\\\"\\n\\tlabel=\\\"Power Header<br \\/>\\r\\n<small>(dashboard.model)<\\/small>\\\"\\n\\tlayout=\\\"joomla.form.field.subform.repeatable-table\\\"\\n\\tmultiple=\\\"true\\\"\\n\\tbuttons=\\\"add,remove,move\\\"\\n\\tfields=\\\"2949,3041,3040\\\"\\n\\tdescription=\\\"The power header for dashboard model class.\\\"\\n\\ticon=\\\"list\\\"\\n\\tmax=\\\"50\\\"\\n\\tshowon=\\\"add_dashboard_model:1\\\"\\n\\/>\"', 1, '2021-12-06 05:14:33', '2022-05-18 06:14:44', 3, '', 934, '3d73e6fc-049c-45bd-a876-b0e3d80479da', '', '', '', '', ''),
(3009, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Powers Header (dashboard.controller)', 'NOT NULL', '', 35, '\"<field\\n\\ttype=\\\"subform\\\"\\n\\tname=\\\"power_dashboard_controller\\\"\\n\\tlabel=\\\"Power Header<br \\/>\\r\\n<small>(dashboard.controller)<\\/small>\\\"\\n\\tlayout=\\\"joomla.form.field.subform.repeatable-table\\\"\\n\\tmultiple=\\\"true\\\"\\n\\tbuttons=\\\"add,remove,move\\\"\\n\\tfields=\\\"2949,3041,3040\\\"\\n\\tdescription=\\\"The power header for dashboard controller class.\\\"\\n\\ticon=\\\"list\\\"\\n\\tmax=\\\"50\\\"\\n\\tshowon=\\\"add_dashboard_controller:1\\\"\\n\\/>\"', 1, '2021-12-06 05:15:24', '2022-05-18 06:14:53', 3, '', 934, '301ca4fb-a3f0-4cca-a14d-370fea386e8a', '', '', '', '', ''),
(3010, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'Target Dashboard View Default Template Header', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"add_dashboard_view\\\"\\n\\tlabel=\\\"Target Dashboard View<br \\/>Default Template Header\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"1|Yes,0|No\\\"\\n\\tdefault=\\\"0\\\"\\n\\trequired=\\\"true\\\"\\n\\/>\"', 1, '2021-12-06 05:17:36', '2021-12-01 23:03:13', 1, '', 1004, '288feec8-c0c8-4a45-92cd-e8296b810281', '', '', '', '', ''),
(3011, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'Target Dashboard View Class Header', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"add_dashboard_view_html\\\"\\n\\tlabel=\\\"Target Dashboard View<br \\/>Class Header\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"1|Yes,0|No\\\"\\n\\tdefault=\\\"0\\\"\\n\\trequired=\\\"true\\\"\\n\\/>\"', 1, '2021-12-06 05:18:42', '2021-12-01 23:30:52', 1, '', 1004, '72eb2254-2238-46c7-be92-c324ff657beb', '', '', '', '', ''),
(3012, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'Target Dashboard Model Class Header', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"add_dashboard_model\\\"\\n\\tlabel=\\\"Target Dashboard Model<br \\/>Class Header\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"1|Yes,0|No\\\"\\n\\tdefault=\\\"0\\\"\\n\\trequired=\\\"true\\\"\\n\\/>\"', 1, '2021-12-06 05:19:13', '2021-12-01 23:30:52', 1, '', 1004, '348cdb5c-c9c5-46e2-bc7c-977027ba4a29', '', '', '', '', ''),
(3013, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'Target Dashboard Cotroller Class Header', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"add_dashboard_controller\\\"\\n\\tlabel=\\\"Target Dashboard Cotroller<br \\/>Class Header\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"1|Yes,0|No\\\"\\n\\tdefault=\\\"0\\\"\\n\\trequired=\\\"true\\\"\\n\\/>\"', 1, '2021-12-06 05:19:31', '2021-12-01 23:30:52', 1, '', 1004, 'a1f32efd-56fc-4907-9191-bf8da30df07c', '', '', '', '', ''),
(3014, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'File Header (dashboard.view)', 'NOT NULL', 2, 8, '\"<field\\n\\ttype=\\\"editor\\\"\\n\\tname=\\\"dashboard_view\\\"\\n\\tlabel=\\\"View Header<br \\/>\\r\\n<small>(dashboard.view)<\\/small>\\\"\\n\\tdescription=\\\"The file header for dashboard view.\\\"\\n\\twidth=\\\"100%\\\"\\n\\theight=\\\"100px\\\"\\n\\tcols=\\\"15\\\"\\n\\trows=\\\"10\\\"\\n\\tbuttons=\\\"no\\\"\\n\\tsyntax=\\\"php\\\"\\n\\teditor=\\\"codemirror|none\\\"\\n\\tfilter=\\\"raw\\\"\\n\\trequired=\\\"false\\\"\\n\\tvalidate=\\\"code\\\"\\n\\tshowon=\\\"add_dashboard_view:1\\\"\\n\\/>\"', 1, '2021-12-06 05:23:12', '2021-12-01 23:14:45', 1, '', 934, 'be35c0b2-1a72-42dd-a00a-e3dff0e79afd', '', '', '', '', ''),
(3015, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Class Header (dashboard.view.html)', 'NOT NULL', 2, 8, '\"<field\\n\\ttype=\\\"editor\\\"\\n\\tname=\\\"dashboard_view_html\\\"\\n\\tlabel=\\\"Class Header<br \\/>\\r\\n<small>(dashboard.view.html)<\\/small>\\\"\\n\\tdescription=\\\"The class header for dashboard view.\\\"\\n\\twidth=\\\"100%\\\"\\n\\theight=\\\"100px\\\"\\n\\tcols=\\\"15\\\"\\n\\trows=\\\"10\\\"\\n\\tbuttons=\\\"no\\\"\\n\\tsyntax=\\\"php\\\"\\n\\teditor=\\\"codemirror|none\\\"\\n\\tfilter=\\\"raw\\\"\\n\\trequired=\\\"false\\\"\\n\\tvalidate=\\\"code\\\"\\n\\tshowon=\\\"add_dashboard_view_html:1\\\"\\n\\/>\"', 1, '2021-12-06 05:24:06', '2021-12-01 23:14:45', 1, '', 934, 'fcf672f3-7741-4ed4-8d4d-dd79229812e9', '', '', '', '', ''),
(3016, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Class Header (dashboard.model)', 'NOT NULL', 2, 8, '\"<field\\n\\ttype=\\\"editor\\\"\\n\\tname=\\\"dashboard_model\\\"\\n\\tlabel=\\\"Class Header<br \\/>\\r\\n<small>(dashboard.model)<\\/small>\\\"\\n\\tdescription=\\\"The class header for dashboard model.\\\"\\n\\twidth=\\\"100%\\\"\\n\\theight=\\\"100px\\\"\\n\\tcols=\\\"15\\\"\\n\\trows=\\\"10\\\"\\n\\tbuttons=\\\"no\\\"\\n\\tsyntax=\\\"php\\\"\\n\\teditor=\\\"codemirror|none\\\"\\n\\tfilter=\\\"raw\\\"\\n\\trequired=\\\"false\\\"\\n\\tvalidate=\\\"code\\\"\\n\\tshowon=\\\"add_dashboard_model:1\\\"\\n\\/>\"', 1, '2021-12-06 05:24:39', '2021-12-01 23:14:45', 1, '', 934, '885431ad-2909-4991-9971-473d8d4cf7dd', '', '', '', '', ''),
(3017, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Class Header (dashboard.controller)', 'NOT NULL', 2, 8, '\"<field\\n\\ttype=\\\"editor\\\"\\n\\tname=\\\"dashboard_controller\\\"\\n\\tlabel=\\\"Class Header<br \\/>\\r\\n<small>(dashboard.controller)<\\/small>\\\"\\n\\tdescription=\\\"The class header for dashboard controller.\\\"\\n\\twidth=\\\"100%\\\"\\n\\theight=\\\"100px\\\"\\n\\tcols=\\\"15\\\"\\n\\trows=\\\"10\\\"\\n\\tbuttons=\\\"no\\\"\\n\\tsyntax=\\\"php\\\"\\n\\teditor=\\\"codemirror|none\\\"\\n\\tfilter=\\\"raw\\\"\\n\\trequired=\\\"false\\\"\\n\\tvalidate=\\\"code\\\"\\n\\tshowon=\\\"add_dashboard_controller:1\\\"\\n\\/>\"', 1, '2021-12-06 05:24:57', '2021-12-01 23:14:45', 1, '', 934, '92b34110-205e-4dc6-bc35-1ef2b5ebde9c', '', '', '', '', ''),
(3018, 1, '', '', '', 'I2pmb3JtX3Rva2VuX2Noem4sIC5mdWxsLXdpZHRoICB7DQp3aWR0aDogMTAwJSAhaW1wb3J0YW50Ow0KfQ==', '', '', '', 100, '', 'VARCHAR', '', '', '', 'Gitea/VDM Access Token', 'NOT NULL', '', 16, '\"<field\\n\\ttype=\\\"password\\\"\\n\\tname=\\\"gitea_token\\\"\\n\\tlabel=\\\"VDM Access Token<br \\/><small>Get <a href=\'https:\\/\\/git.vdm.dev\\/user\\/settings\\/applications\' target=\'_blank\'>token<\\/a> from VDM.<\\/small>\\\"\\n\\tsize=\\\"128\\\"\\n\\tdescription=\\\"To get updates, add your access token from VDM here.\\\"\\n\\tmessage=\\\"Error! Please add token here.\\\"\\n\\tclass=\\\"text_area\\\"\\n\\treadonly=\\\"false\\\"\\n\\tdisabled=\\\"false\\\"\\n\\trequired=\\\"false\\\"\\n\\tfilter=\\\"STRING\\\"\\n\\thint=\\\"API Access Tokens\\\"\\n\\tautocomplete=\\\"off\\\"\\n\\/>\"', 1, '2021-12-07 08:11:34', '2023-03-30 03:11:50', 5, '', 848, 'c7c2ea5d-a932-401c-ba32-97df130616c8', '', '', '', '', ''),
(3019, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Update Server Type (Component Area)', 'NOT NULL', '', 11, '\"<field\\n\\ttype=\\\"list\\\"\\n\\tname=\\\"update_server_type\\\"\\n\\tlabel=\\\"Update Server Type\\\"\\n\\tdescription=\\\"Select the update server type\\\"\\n\\tmessage=\\\"Error! Please select a type.\\\"\\n\\tclass=\\\"list_class\\\"\\n\\tmultiple=\\\"false\\\"\\n\\toption=\\\"|Select an option,component|Component,package|Package\\\"\\n\\tdefault=\\\"component\\\"\\n\\tshowon=\\\"update_server_adv:1\\\"\\n\\/>\"', 1, '2021-12-16 04:04:22', '2021-12-16 04:06:00', 2, '', 378, '7c9ed4c0-d2a5-4bdd-ab05-c099aa905ab0', '', '', '', '', ''),
(3020, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Update Server Advance Options', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"update_server_adv\\\"\\n\\tlabel=\\\"Update Server Advance Options\\\"\\n\\tdescription=\\\"Would you like to set some advance option around the update server?\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"0|No,1|Yes\\\"\\n\\tdefault=\\\"0\\\"\\n\\trequired=\\\"true\\\"\\n\\/>\"', 1, '2021-12-16 04:08:07', '2018-02-14 15:28:14', 1, '', 192, '11ad5cff-1bd6-4a5e-baf7-4756f3ec02bf', '', '', '', '', ''),
(3021, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Update Server Element', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"update_element\\\"\\n\\tlabel=\\\"Element\\\"\\n\\tsize=\\\"10\\\"\\n\\tmaxlength=\\\"50\\\"\\n\\tdescription=\\\"Enter the element code name. [No spaces]\\\"\\n\\tclass=\\\"text_area\\\"\\n\\tfilter=\\\"word\\\"\\n\\tautocomplete=\\\"on\\\"\\n\\tshowon=\\\"update_server_adv:1\\\"\\n\\/>\"', 1, '2021-12-16 04:16:14', '2021-12-18 10:07:20', 2, '', 378, '4313aad6-47aa-4ae0-8bbe-b70b1c0abf42', '', '', '', '', ''),
(3022, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Update Server Release State', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"update_state\\\"\\n\\tlabel=\\\"Release State\\\"\\n\\tsize=\\\"10\\\"\\n\\tmaxlength=\\\"50\\\"\\n\\tdefault=\\\"stable\\\"\\n\\tdescription=\\\"Set the release state\\\"\\n\\tclass=\\\"text_area\\\"\\n\\tfilter=\\\"word\\\"\\n\\thint=\\\"stable\\\"\\n\\tautocomplete=\\\"on\\\"\\n\\tshowon=\\\"update_server_adv:1\\\"\\n\\/>\"', 1, '2021-12-16 04:18:39', '2021-12-18 10:07:08', 3, '', 378, '3b9fe471-5555-47a9-8b10-ee84c9f99ea9', '', '', '', '', ''),
(3023, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Update Server Release Target Version', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"update_target_version\\\"\\n\\tlabel=\\\"Update Server Release Target Version\\\"\\n\\tsize=\\\"10\\\"\\n\\tmaxlength=\\\"50\\\"\\n\\tdefault=\\\"3.*\\\"\\n\\tdescription=\\\"Set the release target version\\\"\\n\\tclass=\\\"text_area\\\"\\n\\tfilter=\\\"string\\\"\\n\\thint=\\\"3.*\\\"\\n\\tautocomplete=\\\"on\\\"\\n\\tshowon=\\\"update_server_adv:1\\\"\\n\\/>\"', 1, '2021-12-16 04:24:41', '2021-12-18 10:07:46', 2, '', 378, '10de856b-ae3b-4764-a21e-6d099c767dad', '', '', '', '', ''),
(3024, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Version Update (Componment)', '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,3020,3019,3021,3022,3023,3025,3026\\\"\\n\\tdescription=\\\"Add Version Updates Here!\\\"\\n\\tdefault=\\\"\\\"\\n\\ticon=\\\"list\\\"\\n\\/>\"', 1, '2021-12-16 06:53:58', '2021-12-18 16:06:27', 4, '', 653, '1b98fc0a-d58f-4c81-a53f-30106e0c30eb', '', '', '', '', ''),
(3025, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Change Log', 'NOT NULL', '', 25, '\"<field\\n\\ttype=\\\"textarea\\\"\\n\\tname=\\\"change_log\\\"\\n\\tlabel=\\\"Change Log\\\"\\n\\trows=\\\"30\\\"\\n\\tcols=\\\"15\\\"\\n\\tdescription=\\\"Set the release change log\\\"\\n\\tclass=\\\"text_area mysql_update\\\"\\n\\tfilter=\\\"raw\\\"\\n\\thint=\\\"\\/\\/ Change Log or blank for none\\\"\\n\\tshowon=\\\"update_server_adv:1\\\"\\n\\/>\"', 1, '2021-12-18 09:33:33', '2021-12-18 10:09:31', 4, '', 378, '68987888-196a-4d65-b736-d34ff8e35312', '', '', '', '', ''),
(3026, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Update Client', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"update_client\\\"\\n\\tlabel=\\\"Client\\\"\\n\\tsize=\\\"10\\\"\\n\\tmaxlength=\\\"50\\\"\\n\\tdefault=\\\"site\\\"\\n\\tdescription=\\\"Set the target client\\\"\\n\\tclass=\\\"text_area\\\"\\n\\tfilter=\\\"word\\\"\\n\\thint=\\\"administrator\\\"\\n\\tautocomplete=\\\"on\\\"\\n\\tshowon=\\\"update_server_adv:1\\\"\\n\\/>\"', 1, '2021-12-18 16:05:38', '2021-12-18 16:06:12', 2, '', 378, '20b497c2-7c6b-4574-ba9a-936ec56c2808', '', '', '', '', ''),
(3027, '', '', '', '', '', '', '', '', '', '', '', '', '', '', 'How to Clone', 'NOT NULL', '', 14, '\"<field\\n\\ttype=\\\"note\\\"\\n\\tname=\\\"note_how_to_clone\\\"\\n\\tlabel=\\\"How to clone another field\'s values into this one.\\\"\\n\\tdescription=\\\"There has often been the case that we have two or more [[[views]]] that should be exactly the same. Just selecting that field and clicking save, will overwrite this field with that selected field data.\\\"\\n\\theading=\\\"h4\\\"\\n\\tclass=\\\"alert alert-info\\\"\\n\\/>\"', 1, '2021-12-21 06:47:13', '0000-00-00 00:00:00', 1, '', 1016, '9cc5e507-92df-4cf9-aec3-eaa55975a15c', '', '', '', '', ''),
(3028, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'Clone (component)', 'NOT NULL', '', 6, '\"<field\\n\\ttype=\\\"joomlacomponent\\\"\\n\\tname=\\\"clone_me\\\"\\n\\tlabel=\\\"Clone\\\"\\n\\tclass=\\\"list_class\\\"\\n\\tmultiple=\\\"false\\\"\\n\\tdefault=\\\"0\\\"\\n\\trequired=\\\"false\\\"\\n\\textends=\\\"list\\\"\\n\\tbutton=\\\"false\\\"\\n\\ttable=\\\"#__###component###_joomla_component\\\"\\n\\tcomponent=\\\"com_###component###\\\"\\n\\tview=\\\"joomla_component\\\"\\n\\tviews=\\\"joomla_components\\\"\\n\\tvalue_field=\\\"system_name\\\"\\n\\tkey_field=\\\"id\\\"\\n\\ttype_php_1=\\\"__.o0=base64=Oo.__Ly8gUFJJTUUgSVM6IDA0ODg2ZTQ1LTc4MjEtNDBhNi1hZTJiLTJmNDZjNmI0NTkwNiAoSUQ6MTYxNik=\\\"\\n\\/>\"', 1, '2021-12-21 08:06:11', '2021-12-21 09:47:38', 4, '', 164, '380f17a7-49c2-4f01-bf8b-7a5c469ff234', '', '', '', '', ''),
(3029, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'Show Link (Github - Daily Scripture)', 'NOT NULL', '', 11, '\"<field\\n\\ttype=\\\"list\\\"\\n\\tname=\\\"link\\\"\\n\\tlabel=\\\"Show Link\\\"\\n\\tdescription=\\\"Should we show a link.\\\"\\n\\tclass=\\\"list_class\\\"\\n\\tmultiple=\\\"false\\\"\\n\\toption=\\\"2|GetBible,3|Local GetBible,1|Telegram,0|None\\\"\\n\\tdefault=\\\"2\\\"\\n\\tshowon=\\\"type:1\\\"\\n\\/>\"', 1, '2022-01-01 15:33:17', '2023-11-10 08:19:31', 7, '', 1017, '01383752-9909-4c92-ac62-67051b7b806a', '', '', '', '', ''),
(3030, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'Implementation Type (Daily Scripture)', 'NOT NULL', '', 11, '\"<field\\n\\ttype=\\\"list\\\"\\n\\tname=\\\"type\\\"\\n\\tlabel=\\\"Implementation Type\\\"\\n\\tdescription=\\\"What kind of implementation would you like to use. Direct from gitHub the main source, or directly from Telegram its official channel\\\"\\n\\tclass=\\\"list_class\\\"\\n\\tmultiple=\\\"false\\\"\\n\\toption=\\\"1|Direct from gitHub,2|Direct from Telegram\\\"\\n\\tdefault=\\\"1\\\"\\n\\/>\"', 1, '2022-01-05 13:16:20', '2022-01-05 13:52:23', 3, '', 1017, '074d418e-3b4e-430b-a4ee-7a58c74d9bcf', '', '', '', '', ''),
(3031, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Author Photo (Telegram)', 'NOT NULL', '', 11, '\"<field\\n\\ttype=\\\"list\\\"\\n\\tname=\\\"author_photo\\\"\\n\\tlabel=\\\"Author Photo\\\"\\n\\tclass=\\\"list_class\\\"\\n\\tmultiple=\\\"false\\\"\\n\\toption=\\\"1|Auto,2|Always show,3|Always hide\\\"\\n\\tdefault=\\\"1\\\"\\n\\tshowon=\\\"type:2\\\"\\n\\/>\"', 1, '2022-01-05 13:46:11', '2022-01-05 13:53:20', 4, '', 1018, '6725ccf6-56d7-44aa-b2e5-a64e97068599', '', '', '', '', ''),
(3032, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'Theme (Telegram)', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"theme\\\"\\n\\tlabel=\\\"Theme\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"1|Light Theme,2|Dark Theme\\\"\\n\\tdefault=\\\"1\\\"\\n\\tshowon=\\\"type:2[OR]show_comments:1\\\"\\n\\/>\"', 1, '2022-01-05 13:50:16', '2023-04-05 21:41:09', 6, '', 1018, '78ef3a26-2210-4840-8b69-4485cda5dc80', '', '', '', '', ''),
(3033, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Color (Telegram)', 'NOT NULL', '', 11, '\"<field\\n\\ttype=\\\"list\\\"\\n\\tname=\\\"color\\\"\\n\\tlabel=\\\"Color\\\"\\n\\tclass=\\\"list_class\\\"\\n\\tmultiple=\\\"false\\\"\\n\\toption=\\\"1|Default,2|Cyan,3|Green,4|Yellow,5|Red,6|White,7|Custom\\\"\\n\\tdefault=\\\"1\\\"\\n\\tshowon=\\\"type:2[OR]show_comments:1\\\"\\n\\/>\"', 1, '2022-01-05 13:55:27', '2023-04-05 21:37:05', 4, '', 1018, '3e2c9b9f-3829-4af8-9795-1e3ce34a60ff', '', '', '', '', ''),
(3034, '', '', '', '', '', '', '', '', 10, '', 'VARCHAR', '', '', '', 'Color Custom (Telegram)', 'NOT NULL', '', 5, '\"<field\\n\\ttype=\\\"color\\\"\\n\\tname=\\\"custom_color\\\"\\n\\tdefault=\\\"F646A4\\\"\\n\\tlabel=\\\"Custom Color\\\"\\n\\tshowon=\\\"type:2[AND]color:7[OR]show_comments:1[AND]color:7\\\"\\n\\/>\"', 1, '2022-01-05 13:58:07', '2023-04-05 21:33:50', 3, '', 1018, 'c23d4164-1b6b-450e-b16d-f4c86cee7a21', '', '', '', '', ''),
(3035, '', '', '', '', '', '', '', '', 11, '', 'INT', '', '', '', 'Width (Telegram)', 'NOT NULL', '', 15, '\"<field\\n\\ttype=\\\"number\\\"\\n\\tname=\\\"width\\\"\\n\\tlabel=\\\"Width\\\"\\n\\tclass=\\\"text_area\\\"\\n\\tmin=\\\"10\\\"\\n\\tmax=\\\"100\\\"\\n\\tstep=\\\"10\\\"\\n\\tshowon=\\\"type:2\\\"\\n\\/>\"', 1, '2022-01-05 14:00:04', '0000-00-00 00:00:00', 1, '', 1019, '52a0444f-fac1-413b-ac9a-1b934de1f416', '', '', '', '', ''),
(3036, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Path', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"path\\\"\\n\\tlabel=\\\"Path\\\"\\n\\tsize=\\\"50\\\"\\n\\tmaxlength=\\\"150\\\"\\n\\tclass=\\\"text_area\\\"\\n\\tfilter=\\\"STRING\\\"\\n\\tmessage=\\\"Error! Please add extra field path here.\\\"\\n\\tautocomplete=\\\"on\\\"\\n\\/>\"', 1, '2022-02-04 09:27:36', '2022-02-04 09:28:27', 2, '', 1020, 'e93ee3c7-4391-445e-9135-60661aed97e8', '', '', '', '', ''),
(3037, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Other Field Path', 'NOT NULL', '', 35, '\"<field\\n\\ttype=\\\"subform\\\"\\n\\tname=\\\"addfieldpath\\\"\\n\\tlabel=\\\"Other Field Path\\\"\\n\\tlayout=\\\"joomla.form.field.subform.repeatable-table\\\"\\n\\tmultiple=\\\"true\\\"\\n\\tbuttons=\\\"add,remove,move\\\"\\n\\tfields=\\\"3036\\\"\\n\\tdescription=\\\"Set other field path\\\"\\n\\ticon=\\\"list\\\"\\n\\tmax=\\\"1\\\"\\n\\tshowon=\\\"fields_rules_paths:3\\\"\\n\\/>\"', 1, '2022-02-04 09:31:36', '2022-02-04 16:24:52', 8, '', 1021, '88d0e750-cc00-44b7-a0ee-528d78e51917', '', '', '', '', ''),
(3038, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Other Rule Path', 'NOT NULL', '', 35, '\"<field\\n\\ttype=\\\"subform\\\"\\n\\tname=\\\"addrulepath\\\"\\n\\tlabel=\\\"Other Rule Path\\\"\\n\\tlayout=\\\"joomla.form.field.subform.repeatable-table\\\"\\n\\tmultiple=\\\"true\\\"\\n\\tbuttons=\\\"add,remove,move\\\"\\n\\tfields=\\\"3036\\\"\\n\\tdescription=\\\"Set other rule path\\\"\\n\\ticon=\\\"list\\\"\\n\\tmax=\\\"1\\\"\\n\\tshowon=\\\"fields_rules_paths:3\\\"\\n\\/>\"', 1, '2022-02-04 09:32:24', '2022-02-04 16:25:05', 6, '', 1021, 'ca38daaa-5214-440d-b0bb-4579c2148d8d', '', '', '', '', ''),
(3039, '', '', '', '', '', '', 1, '', 1, '', 'TINYINT', 2, '', '', 'Add Powers', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"add_powers\\\"\\n\\tlabel=\\\"Add Powers\\\"\\n\\tdescription=\\\"Should JCB add any powers that are connected to this component? This may be helpful if you are loading powers via another component, and would like to avoid adding it to both, just remember that in this case you need to load the powers via a plugin.\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"1|Yes,0|No\\\"\\n\\tdefault=\\\"1\\\"\\n\\trequired=\\\"true\\\"\\n\\/>\"', 1, '2022-03-15 00:49:10', '2022-04-05 00:04:48', 3, '', 768, '9ae98a1d-cc61-49d4-8f80-b4e1257fce24', '', '', '', '', ''),
(3040, '', '', '', '', '', '', '', '', 7, '', 'INT', 2, '', '', 'Build Behavior (powers)', 'NOT NULL', '', 11, '\"<field\\n\\ttype=\\\"list\\\"\\n\\tname=\\\"build\\\"\\n\\tlabel=\\\"build\\\"\\n\\tclass=\\\"list_class\\\"\\n\\tmultiple=\\\"false\\\"\\n\\toption=\\\"1|Always,2|Based on Component,6|Exclude\\\"\\n\\tdefault=\\\"2\\\"\\n\\/>\"', 1, '2022-05-18 05:33:43', '2022-05-18 09:04:50', 4, '', 1022, '5af48bf9-3de1-4b1d-b0ba-18bc9deb0915', '', '', '', '', ''),
(3041, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'As (powers)', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"as\\\"\\n\\tlabel=\\\"as\\\"\\n\\tsize=\\\"10\\\"\\n\\tmaxlength=\\\"50\\\"\\n\\tdefault=\\\"default\\\"\\n\\tclass=\\\"text_area\\\"\\n\\tfilter=\\\"STRING\\\"\\n\\tautocomplete=\\\"on\\\"\\n\\/>\"', 1, '2022-05-18 05:38:44', '2022-05-18 05:49:33', 4, '', 1023, '8e5dd0ee-e262-46d4-88a0-786d7677b85c', '', '', '', '', ''),
(3042, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Name', '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=\\\"false\\\"\\n\\tfilter=\\\"STRING\\\"\\n\\tmessage=\\\"Error! Please add name here.\\\"\\n\\thint=\\\"Name Here\\\"\\n\\/>\"', 1, '2021-11-23 19:40:58', '2022-05-19 20:01:44', 1, '', 4, '0942857c-fb84-42bf-b6d7-1869094de0fe', '', '', '', '', ''),
(3043, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Image list', 'NOT NULL', '', 44, '\"<field\\n\\ttype=\\\"imagelist\\\"\\n\\tname=\\\"myimagelist\\\"\\n\\tlabel=\\\"Select an image\\\"\\n\\tdirectory=\\\"images\\/stories\\\"\\n\\/>\"', 1, '2022-05-27 09:02:45', '0000-00-00 00:00:00', 1, '', 1024, '2d19c070-7d48-45cd-ab11-e03a123000a0', '', '', '', '', ''),
(3044, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Redirects', 'NOT NULL', '', 35, '\"<field\\n\\ttype=\\\"subform\\\"\\n\\tname=\\\"redirect\\\"\\n\\tlabel=\\\"Redirects\\\"\\n\\tlayout=\\\"joomla.form.field.subform.repeatable-table\\\"\\n\\tmultiple=\\\"true\\\"\\n\\tbuttons=\\\"add,remove,move\\\"\\n\\tfields=\\\"599,324\\\"\\n\\tdescription=\\\"Setup the redirects per group\\/s\\\"\\n\\ticon=\\\"list\\\"\\n\\tmax=\\\"10\\\"\\n\\tmin=\\\"1\\\"\\n\\/>\"', 1, '2022-06-18 10:25:59', '2022-06-18 10:26:10', 2, '', 1025, '12035b51-753b-4e3f-9f41-cde3a6046286', '', '', '', '', ''),
(3045, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Base Item', 'NOT NULL', '', 45, '\"<field\\n\\ttype=\\\"modalmenu\\\"\\n\\tname=\\\"base\\\"\\n\\tlabel=\\\"Base Item\\\"\\n\\toption=\\\"Current\\\"\\n\\tselect=\\\"true\\\"\\n\\tnew=\\\"true\\\"\\n\\tedit=\\\"true\\\"\\n\\tdescription=\\\"Select a menu item to always be used as the base for the menu display. You must set the Start Level to the same level or higher than the level of the base item. This will cause the module to be displayed on all assigned pages. If Current is selected the active item is used as the base. This causes the module to only display when the parent menu item is active.\\\"\\n\\tclear=\\\"true\\\"\\n\\tfilter=\\\"integer\\\"\\n\\/>\"', 1, '2022-06-22 14:43:21', '2022-06-22 14:48:28', 3, '', 963, 'c1caae75-234a-4e7f-8772-2657aed9efb0', '', '', '', '', ''),
(3046, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Menu to Show', 'NOT NULL', '', 46, '\"<field\\n\\ttype=\\\"menu\\\"\\n\\tname=\\\"menu\\\"\\n\\tlabel=\\\"Menu to Show\\\"\\n\\tdescription=\\\"Choose which menu should be rendered with this instance of module.\\\"\\n\\tclientid=\\\"0\\\"\\n\\/>\"', 1, '2022-06-22 14:43:55', '2022-06-22 14:47:46', 2, '', 963, '2148ac20-20b6-44e3-bfe7-05c99b5f9d61', '', '', '', '', ''),
(3047, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Licensing Template', 'NULL', 2, 25, '\"<field\\n\\ttype=\\\"textarea\\\"\\n\\tname=\\\"licensing_template\\\"\\n\\tlabel=\\\"Licensing Template\\\"\\n\\trows=\\\"10\\\"\\n\\tcols=\\\"10\\\"\\n\\tclass=\\\"text_area span12\\\"\\n\\tfilter=\\\"RAW\\\"\\n\\thint=\\\"\\/**\\r\\n * @package Joomla.Component.Builder\\r\\n *\\r\\n * @created 4th September, 2015\\r\\n * @author Llewellyn van der Merwe <https:\\/\\/dev.vdm.io>\\r\\n * @git Joomla Component Builder <https:\\/\\/git.vdm.dev\\/joomla\\/Component-Builder>\\r\\n * @copyright Copyright (C) 2015 Vast Development Method. All rights reserved.\\r\\n * @license GNU General Public License version 2 or later; see LICENSE.txt\\r\\n *\\/\\\"\\n\\tvalidate=\\\"code\\\"\\n\\tshowon=\\\"add_licensing_template:2\\\"\\n\\/>\"', 1, '2022-09-19 08:48:38', '2024-03-06 15:52:36', 11, '', 934, 'aa4804ce-9099-4006-b089-d05990461668', '', '', '', '', ''),
(3048, '', '', '', '', '', '', 1, '', 1, '', 'TINYINT', 2, '', '', 'Add Licensing Template', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"add_licensing_template\\\"\\n\\tlabel=\\\"Add Licensing Template\\\"\\n\\tdescription=\\\"The option to override the licensing template.\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"1|Use Global,2|Override\\\"\\n\\tdefault=\\\"1\\\"\\n\\trequired=\\\"true\\\"\\n\\/>\"', 1, '2022-09-20 08:49:21', '2022-09-20 09:39:06', 5, '', 768, 'd937bf3c-2b58-4df4-a6a5-b497bb7b8245', '', '', '', '', ''),
(3049, '', '', '', '', '', '', '', '', 11, '', 'INT', '', '', '', 'Margin Left', 'NOT NULL', '', 15, '\"<field\\n\\ttype=\\\"number\\\"\\n\\tname=\\\"margin_left\\\"\\n\\tlabel=\\\"Margin Left\\\"\\n\\tdefault=\\\"80\\\"\\n\\tclass=\\\"text_area\\\"\\n\\trequired=\\\"true\\\"\\n\\tmin=\\\"40\\\"\\n\\tmax=\\\"140\\\"\\n\\tstep=\\\"5\\\"\\n\\tvalidate=\\\"number\\\"\\n\\/>\"', 1, '2022-09-21 04:45:28', '2022-10-14 15:17:39', 4, '', 1026, '12ecc6cc-9195-4633-8ecd-27ecc0643bd4', '', '', '', '', ''),
(3050, '', '', '', '', '', '', '', '', 11, '', 'INT', '', '', '', 'Margin Right', 'NOT NULL', '', 15, '\"<field\\n\\ttype=\\\"number\\\"\\n\\tname=\\\"margin_right\\\"\\n\\tlabel=\\\"Margin Right\\\"\\n\\tdefault=\\\"50\\\"\\n\\tclass=\\\"text_area\\\"\\n\\trequired=\\\"true\\\"\\n\\tmin=\\\"20\\\"\\n\\tmax=\\\"100\\\"\\n\\tstep=\\\"5\\\"\\n\\tvalidate=\\\"number\\\"\\n\\/>\"', 1, '2022-09-21 04:46:17', '2022-10-14 15:17:42', 4, '', 1026, '3e72e2ab-0731-46f1-83ac-8bffddcd5634', '', '', '', '', ''),
(3051, '', '', '', '', '', '', '', '', 11, '', 'INT', '', '', '', 'Header Height', 'NOT NULL', '', 15, '\"<field\\n\\ttype=\\\"number\\\"\\n\\tname=\\\"header_height\\\"\\n\\tlabel=\\\"Header Height\\\"\\n\\tdefault=\\\"24\\\"\\n\\tclass=\\\"text_area\\\"\\n\\trequired=\\\"true\\\"\\n\\tmin=\\\"10\\\"\\n\\tmax=\\\"80\\\"\\n\\tstep=\\\"1\\\"\\n\\tvalidate=\\\"number\\\"\\n\\/>\"', 1, '2022-09-21 04:47:13', '2022-10-14 15:17:45', 3, '', 1026, '3d3bf310-a38f-4e31-89c8-d5d986f4bb53', '', '', '', '', ''),
(3052, '', '', '', '', '', '', '', '', 11, '', 'INT', '', '', '', 'Year Width', 'NOT NULL', '', 15, '\"<field\\n\\ttype=\\\"number\\\"\\n\\tname=\\\"year_width\\\"\\n\\tlabel=\\\"Year Width\\\"\\n\\tdefault=\\\"120\\\"\\n\\tclass=\\\"text_area\\\"\\n\\trequired=\\\"true\\\"\\n\\tmin=\\\"50\\\"\\n\\tmax=\\\"300\\\"\\n\\tstep=\\\"5\\\"\\n\\tvalidate=\\\"number\\\"\\n\\/>\"', 1, '2022-09-21 04:48:58', '2022-10-14 15:17:49', 3, '', 1026, 'a2f93b12-c3fd-4e00-9732-0c97a7f37489', '', '', '', '', ''),
(3053, '', '', '', '', '', '', '', '', 11, '', 'INT', '', '', '', 'Branch Height', 'NOT NULL', '', 15, '\"<field\\n\\ttype=\\\"number\\\"\\n\\tname=\\\"branch_height\\\"\\n\\tlabel=\\\"Branch Height\\\"\\n\\tdefault=\\\"30\\\"\\n\\tclass=\\\"text_area\\\"\\n\\trequired=\\\"true\\\"\\n\\tmin=\\\"20\\\"\\n\\tmax=\\\"100\\\"\\n\\tstep=\\\"5\\\"\\n\\tvalidate=\\\"number\\\"\\n\\/>\"', 1, '2022-09-21 04:49:44', '2022-10-14 15:17:52', 3, '', 1026, 'f8ceaba3-04d3-406d-abb9-c8372100817c', '', '', '', '', ''),
(3054, '', '', '', '', '', '', '', '', 11, '', 'INT', '', '', '', 'Footer Height', 'NOT NULL', '', 15, '\"<field\\n\\ttype=\\\"number\\\"\\n\\tname=\\\"footer_height\\\"\\n\\tlabel=\\\"Footer Height\\\"\\n\\tdefault=\\\"24\\\"\\n\\tclass=\\\"text_area\\\"\\n\\trequired=\\\"true\\\"\\n\\tmin=\\\"10\\\"\\n\\tmax=\\\"80\\\"\\n\\tstep=\\\"1\\\"\\n\\tvalidate=\\\"number\\\"\\n\\/>\"', 1, '2022-09-21 04:50:26', '2022-10-14 15:17:56', 3, '', 1026, 'fb71c5cc-65d9-4389-8599-b94f4eecc97c', '', '', '', '', ''),
(3055, '', '', '', '', '', '', '', '', 11, '', 'INT', '', '', '', 'Min Years', 'NOT NULL', '', 15, '\"<field\\n\\ttype=\\\"number\\\"\\n\\tname=\\\"min_years\\\"\\n\\tlabel=\\\"Min Years\\\"\\n\\tdefault=\\\"3\\\"\\n\\tclass=\\\"text_area\\\"\\n\\trequired=\\\"true\\\"\\n\\tmin=\\\"1\\\"\\n\\tmax=\\\"10\\\"\\n\\tstep=\\\"1\\\"\\n\\tvalidate=\\\"number\\\"\\n\\/>\"', 1, '2022-09-21 04:54:35', '2022-10-14 15:17:59', 2, '', 1026, '44a3a4aa-f601-4765-b656-2f0a01dd6fd9', '', '', '', '', ''),
(3056, '', '', '', '', '', '', '', '', 11, '', 'INT', '', '', '', 'Max Years', 'NOT NULL', '', 15, '\"<field\\n\\ttype=\\\"number\\\"\\n\\tname=\\\"max_years\\\"\\n\\tlabel=\\\"Max Years\\\"\\n\\tdefault=\\\"5\\\"\\n\\tclass=\\\"text_area\\\"\\n\\trequired=\\\"true\\\"\\n\\tmin=\\\"1\\\"\\n\\tmax=\\\"20\\\"\\n\\tstep=\\\"1\\\"\\n\\tvalidate=\\\"number\\\"\\n\\/>\"', 1, '2022-09-21 04:55:04', '2022-10-14 15:18:03', 4, '', 1026, '9f5ddbec-3f1c-4af9-8d33-a158bcaaf453', '', '', '', '', ''),
(3057, '', '', '', '', '', '', '', '', 64, '', 'CHAR', '', '', '', 'Version Name', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"version\\\"\\n\\tlabel=\\\"Version\\\"\\n\\tsize=\\\"40\\\"\\n\\tmaxlength=\\\"50\\\"\\n\\tdefault=\\\"1.0.0\\\"\\n\\tdescription=\\\"Name\\\"\\n\\tclass=\\\"text_area\\\"\\n\\trequired=\\\"true\\\"\\n\\tfilter=\\\"CMD\\\"\\n\\tmessage=\\\"Error! Please add version here.\\\"\\n\\thint=\\\"1.0.0\\\"\\n\\/>\"', 1, '2022-09-21 04:57:05', '2022-09-21 05:22:43', 4, '', 155, 'f3e44dab-059a-434e-98c5-9d9def389295', '', '', '', '', ''),
(3058, '', '', '', '', '', '', '', '', 10, '', 'VARCHAR', '', '', '', 'Default Text Colour', 'NOT NULL', '', 5, '\"<field\\n\\ttype=\\\"color\\\"\\n\\tname=\\\"text_color\\\"\\n\\tdefault=\\\"#ffffff\\\"\\n\\tlabel=\\\"Default Text Colour\\\"\\n\\trequired=\\\"true\\\"\\n\\/>\"', 1, '2022-09-21 04:59:12', '2023-08-11 06:51:42', 4, '', 1027, '7414d14b-b802-4ac2-9090-218cdb32156c', '', '', '', '', ''),
(3059, '', '', '', '', '', '', '', '', 10, '', 'VARCHAR', '', '', '', 'End of Life Background Colour', 'NOT NULL', '', 5, '\"<field\\n\\ttype=\\\"color\\\"\\n\\tname=\\\"end_of_life_color\\\"\\n\\tdefault=\\\"#f44321\\\"\\n\\tlabel=\\\"End of Life Background Colour\\\"\\n\\trequired=\\\"true\\\"\\n\\/>\"', 1, '2022-09-21 05:09:27', '2023-08-11 06:50:52', 3, '', 1027, 'f83befac-e15e-421c-83a0-c17e99492b79', '', '', '', '', ''),
(3060, '', '', '', '', '', '', '', '', 10, '', 'VARCHAR', '', '', '', 'End of Life Text Colour', 'NOT NULL', '', 5, '\"<field\\n\\ttype=\\\"color\\\"\\n\\tname=\\\"end_of_life_text_color\\\"\\n\\tdefault=\\\"#ffffff\\\"\\n\\tlabel=\\\"End of Life Text Colour\\\"\\n\\trequired=\\\"true\\\"\\n\\/>\"', 1, '2022-09-21 05:10:43', '2023-08-11 06:50:43', 3, '', 1027, '8097f524-48e6-470a-aa42-e4383d3019fa', '', '', '', '', ''),
(3061, '', '', '', '', '', '', '', '', 10, '', 'VARCHAR', '', '', '', 'Future Background Colour', 'NOT NULL', '', 5, '\"<field\\n\\ttype=\\\"color\\\"\\n\\tname=\\\"future_color\\\"\\n\\tdefault=\\\"#5091cd\\\"\\n\\tlabel=\\\"Future Background Colour\\\"\\n\\trequired=\\\"true\\\"\\n\\/>\"', 1, '2022-09-21 05:11:25', '2023-08-11 06:46:06', 3, '', 1027, '8f485452-b062-4ec9-9fa5-0182d04d8d7c', '', '', '', '', ''),
(3062, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'State', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"state\\\"\\n\\tlabel=\\\"State\\\"\\n\\tsize=\\\"10\\\"\\n\\tmaxlength=\\\"50\\\"\\n\\tclass=\\\"text_area\\\"\\n\\trequired=\\\"true\\\"\\n\\tfilter=\\\"WORD\\\"\\n\\thint=\\\"stable\\\"\\n\\tautocomplete=\\\"on\\\"\\n\\/>\"', 1, '2022-09-21 05:11:52', '2023-08-11 09:52:31', 5, '', 1027, 'ef4b98c9-09b8-4dc9-9940-415c4e913ae1', '', '', '', '', ''),
(3063, '', '', '', '', '', '', '', '', 10, '', 'VARCHAR', '', '', '', 'Today Line Colour', 'NOT NULL', '', 5, '\"<field\\n\\ttype=\\\"color\\\"\\n\\tname=\\\"today_line_color\\\"\\n\\tdefault=\\\"#f44321\\\"\\n\\tlabel=\\\"Today Line Colour\\\"\\n\\trequired=\\\"true\\\"\\n\\/>\"', 1, '2022-09-21 05:12:19', '2023-08-11 06:51:14', 4, '', 1027, 'cb60a327-5ce5-4b48-a8e0-27321022bf40', '', '', '', '', ''),
(3064, '', '', '', '', '', '', '', '', 10, '', 'VARCHAR', '', '', '', 'Today Text Colour', 'NOT NULL', '', 5, '\"<field\\n\\ttype=\\\"color\\\"\\n\\tname=\\\"today_text_color\\\"\\n\\tdefault=\\\"#f44321\\\"\\n\\tlabel=\\\"Today Text Colour\\\"\\n\\trequired=\\\"true\\\"\\n\\/>\"', 1, '2022-09-21 05:12:36', '2023-08-11 06:51:05', 4, '', 1027, 'a2e37110-c69f-41b3-b05b-f5f51d0d9ab4', '', '', '', '', ''),
(3065, '', '', '', '', '', '', '', '', 10, '', 'VARCHAR', '', '', '', 'Years Line Colour', 'NOT NULL', '', 5, '\"<field\\n\\ttype=\\\"color\\\"\\n\\tname=\\\"years_line_color\\\"\\n\\tdefault=\\\"#5091cd\\\"\\n\\tlabel=\\\"Years Line Colour\\\"\\n\\trequired=\\\"true\\\"\\n\\/>\"', 1, '2022-09-21 05:13:57', '2023-08-11 06:51:23', 3, '', 1027, '9e2dcfc2-ea21-4caf-88aa-f0706d5878e5', '', '', '', '', ''),
(3066, '', '', '', '', '', '', '', '', 10, '', 'VARCHAR', '', '', '', 'Years Text Colour', 'NOT NULL', '', 5, '\"<field\\n\\ttype=\\\"color\\\"\\n\\tname=\\\"years_text_color\\\"\\n\\tdefault=\\\"#000\\\"\\n\\tlabel=\\\"Years Text Colour\\\"\\n\\trequired=\\\"true\\\"\\n\\/>\"', 1, '2022-09-21 05:15:04', '2023-08-11 06:51:32', 2, '', 1027, '0a6ee559-822b-4cd1-a049-d956ba2ff80b', '', '', '', '', ''),
(3067, '', '', '', '', '', '', '', '', 10, '', 'VARCHAR', '', '', '', 'Background Color', 'NOT NULL', '', 5, '\"<field\\n\\ttype=\\\"color\\\"\\n\\tname=\\\"color\\\"\\n\\tdefault=\\\"#5091cd\\\"\\n\\tlabel=\\\"Background\\\"\\n\\tdescription=\\\"Color\\\"\\n\\trequired=\\\"true\\\"\\n\\/>\"', 1, '2022-09-21 05:17:44', '2023-08-11 06:21:55', 3, '', 1027, '3f854e95-d6e8-485a-946e-08df90597d72', '', '', '', '', ''),
(3068, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Label', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"label\\\"\\n\\tlabel=\\\"Label\\\"\\n\\tsize=\\\"40\\\"\\n\\tmaxlength=\\\"50\\\"\\n\\tclass=\\\"text_area\\\"\\n\\trequired=\\\"true\\\"\\n\\tfilter=\\\"STRING\\\"\\n\\thint=\\\"State label\\\"\\n\\tautocomplete=\\\"on\\\"\\n\\/>\"', 1, '2022-09-21 05:21:50', '2023-08-11 09:51:22', 7, '', 155, '8d89dcfa-21fe-43cf-98dc-93f05d1a39c8', '', '', '', '', ''),
(3069, '', '', '', '', '', '', 'Other', '0000-00-00 00:00:00', '', '', 'DATETIME', '', '', '', 'End Date', 'NOT NULL', '', 1, '\"<field\\n\\ttype=\\\"calendar\\\"\\n\\tname=\\\"end\\\"\\n\\tlabel=\\\"End Date\\\"\\n\\tformat=\\\"%d-%m-%Y\\\"\\n\\tfilter=\\\"CMD\\\"\\n\\tmessage=\\\"Error! Please add date here.\\\"\\n\\tsize=\\\"40\\\"\\n\\trequired=\\\"true\\\"\\n\\/>\"', 1, '2022-09-21 05:22:03', '2022-09-21 08:34:39', 2, '', 155, '88d322b4-d400-4832-8203-8acad5ba790f', '', '', '', '', ''),
(3070, '', '', '', '', '', '', 'Other', '0000-00-00 00:00:00', '', '', 'DATETIME', '', '', '', 'Start Date', 'NOT NULL', '', 1, '\"<field\\n\\ttype=\\\"calendar\\\"\\n\\tname=\\\"start\\\"\\n\\tlabel=\\\"Start Date\\\"\\n\\tformat=\\\"%d-%m-%Y\\\"\\n\\tfilter=\\\"CMD\\\"\\n\\tmessage=\\\"Error! Please add date here.\\\"\\n\\tsize=\\\"40\\\"\\n\\trequired=\\\"true\\\"\\n\\/>\"', 1, '2022-09-21 05:22:18', '2022-09-21 08:34:30', 4, '', 155, '7780516e-24ad-4556-804f-7644c45ef3b6', '', '', '', '', ''),
(3071, '', '', '', '', 'LnN1YmZvcm0tdGFibGUtbGF5b3V0IGlucHV0IHsNCgltYXgtd2lkdGg6IDkwJTsNCn0=', '', '', '', '', '', 'TEXT', '', '', '', 'Versions', 'NOT NULL', '', 35, '\"<field\\n\\ttype=\\\"subform\\\"\\n\\tname=\\\"versions\\\"\\n\\tlabel=\\\"Versions\\\"\\n\\tlayout=\\\"joomla.form.field.subform.repeatable\\\"\\n\\tmultiple=\\\"true\\\"\\n\\tbuttons=\\\"add,remove,move\\\"\\n\\tfields=\\\"3057,3336\\\"\\n\\ticon=\\\"list\\\"\\n\\tmax=\\\"10\\\"\\n\\tmin=\\\"1\\\"\\n\\/>\"', 1, '2022-09-21 05:24:55', '2023-08-11 06:20:08', 7, '', 1028, '801520d9-b7b3-47c5-a2a9-2581199ead0b', '', '', '', '', ''),
(3072, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'Context', 'NOT NULL', '', 6, '\"<field\\n\\ttype=\\\"contexts\\\"\\n\\tname=\\\"context\\\"\\n\\tlabel=\\\"Context\\\"\\n\\tdescription=\\\"Select the context.\\\"\\n\\tclass=\\\"list_class\\\"\\n\\tmultiple=\\\"false\\\"\\n\\trequired=\\\"true\\\"\\n\\textends=\\\"list\\\"\\n\\tbutton=\\\"true\\\"\\n\\ttable=\\\"#__###component###_context\\\"\\n\\tcomponent=\\\"com_###component###\\\"\\n\\tview=\\\"context\\\"\\n\\tviews=\\\"contexts\\\"\\n\\tvalue_field=\\\"name\\\"\\n\\tkey_field=\\\"id\\\"\\n\\ttype_php_1=\\\"__.o0=base64=Oo.__Ly8gR2V0IHRoZSB1c2VyIG9iamVjdC4NCgkJJHVzZXIgPSBKRmFjdG9yeTo6Z2V0VXNlcigpOw0KCQkvLyBHZXQgdGhlIGRhdGFic2Ugb2JqZWN0Lg0KCQkkZGIgPSBKRmFjdG9yeTo6Z2V0REJPKCk7DQoJCSRxdWVyeSA9ICRkYi0+Z2V0UXVlcnkodHJ1ZSk7DQoJCSRxdWVyeS0+c2VsZWN0KCRkYi0+cXVvdGVOYW1lKGFycmF5KCdhLiMjI0lEIyMjJywnYS4jIyNURVhUIyMjJyksYXJyYXkoJyMjI0lEIyMjJywnIyMjQ09ERV9URVhUIyMjJykpKTsNCgkJJHF1ZXJ5LT5mcm9tKCRkYi0+cXVvdGVOYW1lKCcjIyNUQUJMRSMjIycsICdhJykpOw0KCQkkcXVlcnktPndoZXJlKCRkYi0+cXVvdGVOYW1lKCdhLnB1Ymxpc2hlZCcpIC4gJyA+PSAxJyk7DQoJCSRxdWVyeS0+b3JkZXIoJ2Eub3JkZXJpbmcgQVNDJyk7DQoJCS8vIEltcGxlbWVudCBWaWV3IExldmVsIEFjY2VzcyAoaWYgc2V0IGluIHRhYmxlKQ0KCQlpZiAoISR1c2VyLT5hdXRob3Jpc2UoJ2NvcmUub3B0aW9ucycsICdbW1tjb21fY29tcG9uZW50XV1dJykpDQoJCXsNCgkJCSRjb2x1bW5zID0gJGRiLT5nZXRUYWJsZUNvbHVtbnMoJyMjI1RBQkxFIyMjJyk7DQoJCQlpZihpc3NldCgkY29sdW1uc1snYWNjZXNzJ10pKQ0KCQkJew0KCQkJCSRncm91cHMgPSBpbXBsb2RlKCcsJywgJHVzZXItPmdldEF1dGhvcmlzZWRWaWV3TGV2ZWxzKCkpOw0KCQkJCSRxdWVyeS0+d2hlcmUoJ2EuYWNjZXNzIElOICgnIC4gJGdyb3VwcyAuICcpJyk7DQoJCQl9DQoJCX0NCgkJJGRiLT5zZXRRdWVyeSgoc3RyaW5nKSRxdWVyeSk7DQoJCSRpdGVtcyA9ICRkYi0+bG9hZE9iamVjdExpc3QoKTsNCgkJJG9wdGlvbnMgPSBhcnJheSgpOw0KCQlpZiAoJGl0ZW1zKQ0KCQl7DQoJCQlpZiAoJHRoaXMtPm11bHRpcGxlID09PSBmYWxzZSkgew0KCQkJCSRvcHRpb25zW10gPSBKSHRtbDo6Xygnc2VsZWN0Lm9wdGlvbicsICcnLCAnU2VsZWN0IGFuIG9wdGlvbicpOw0KCQkJfQ0KCQkJZm9yZWFjaCgkaXRlbXMgYXMgJGl0ZW0pDQoJCQl7DQoJCQkJJG9wdGlvbnNbXSA9IEpIdG1sOjpfKCdzZWxlY3Qub3B0aW9uJywgJGl0ZW0tPiMjI0lEIyMjLCAkaXRlbS0+IyMjQ09ERV9URVhUIyMjKTsNCgkJCX0NCgkJfQ0KCQlyZXR1cm4gJG9wdGlvbnM7\\\"\\n\\/>\"', 1, '2016-04-12 13:22:58', '2022-09-21 10:17:10', 7, '', 242, '357a8644-f83d-4d46-ba3b-7140b2023ee7', '', '', '', '', ''),
(3073, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'Action', 'NOT NULL', '', 6, '\"<field\\n\\ttype=\\\"actions\\\"\\n\\tname=\\\"action\\\"\\n\\tlabel=\\\"Action\\\"\\n\\tdescription=\\\"Please select the action this ###view### belongs to.\\\"\\n\\tclass=\\\"list_class\\\"\\n\\tmultiple=\\\"false\\\"\\n\\tdefault=\\\"0\\\"\\n\\trequired=\\\"true\\\"\\n\\textends=\\\"list\\\"\\n\\tbutton=\\\"true\\\"\\n\\ttable=\\\"#__###component###_action\\\"\\n\\tcomponent=\\\"com_###component###\\\"\\n\\tview=\\\"action\\\"\\n\\tviews=\\\"actions\\\"\\n\\tvalue_field=\\\"name\\\"\\n\\tkey_field=\\\"id\\\"\\n\\ttype_php_1=\\\"__.o0=base64=Oo.__Ly8gR2V0IHRoZSB1c2VyIG9iamVjdC4NCgkJJHVzZXIgPSBKRmFjdG9yeTo6Z2V0VXNlcigpOw0KCQkvLyBHZXQgdGhlIGRhdGFic2Ugb2JqZWN0Lg0KCQkkZGIgPSBKRmFjdG9yeTo6Z2V0REJPKCk7DQoJCSRxdWVyeSA9ICRkYi0+Z2V0UXVlcnkodHJ1ZSk7DQoJCSRxdWVyeS0+c2VsZWN0KCRkYi0+cXVvdGVOYW1lKGFycmF5KCdhLiMjI0lEIyMjJywnYS4jIyNURVhUIyMjJyksYXJyYXkoJyMjI0lEIyMjJywnIyMjQ09ERV9URVhUIyMjJykpKTsNCgkJJHF1ZXJ5LT5mcm9tKCRkYi0+cXVvdGVOYW1lKCcjIyNUQUJMRSMjIycsICdhJykpOw0KCQkkcXVlcnktPmpvaW4oJ0xFRlQnLCAnI19fW1tbY29tcG9uZW50XV1dX2NvbnRleHQgQVMgYiBPTiBiLmlkID0gYS5jb250ZXh0Jyk7DQoJCSRxdWVyeS0+d2hlcmUoJGRiLT5xdW90ZU5hbWUoJ2EucHVibGlzaGVkJykgLiAnID49IDEnKTsNCgkJJHF1ZXJ5LT5vcmRlcignYS4jIyNURVhUIyMjIEFTQycpOw0KCQkvLyBJbXBsZW1lbnQgVmlldyBMZXZlbCBBY2Nlc3MgKGlmIHNldCBpbiB0YWJsZSkNCgkJaWYgKCEkdXNlci0+YXV0aG9yaXNlKCdjb3JlLm9wdGlvbnMnLCAnY29tX1tbW2NvbXBvbmVudF1dXScpKQ0KCQl7DQoJCQkkY29sdW1ucyA9ICRkYi0+Z2V0VGFibGVDb2x1bW5zKCcjIyNUQUJMRSMjIycpOw0KCQkJaWYoaXNzZXQoJGNvbHVtbnNbJ2FjY2VzcyddKSkNCgkJCXsNCgkJCQkkZ3JvdXBzID0gaW1wbG9kZSgnLCcsICR1c2VyLT5nZXRBdXRob3Jpc2VkVmlld0xldmVscygpKTsNCgkJCQkkcXVlcnktPndoZXJlKCdhLmFjY2VzcyBJTiAoJyAuICRncm91cHMgLiAnKScpOw0KCQkJfQ0KCQl9DQoJCSRkYi0+c2V0UXVlcnkoKHN0cmluZykkcXVlcnkpOw0KCQkkaXRlbXMgPSAkZGItPmxvYWRPYmplY3RMaXN0KCk7DQoJCSRvcHRpb25zID0gYXJyYXkoKTsNCgkJaWYgKCRpdGVtcykNCgkJew0KCQkJaWYgKCR0aGlzLT5tdWx0aXBsZSA9PT0gZmFsc2UpIHsNCgkJCQkkb3B0aW9uc1tdID0gSkh0bWw6Ol8oJ3NlbGVjdC5vcHRpb24nLCAnJywgJ1NlbGVjdCBhbiBvcHRpb24nKTsNCgkJCX0NCgkJCWZvcmVhY2goJGl0ZW1zIGFzICRpdGVtKQ0KCQkJew0KCQkJCSRvcHRpb25zW10gPSBKSHRtbDo6Xygnc2VsZWN0Lm9wdGlvbicsICRpdGVtLT4jIyNJRCMjIywgJGl0ZW0tPiMjI0NPREVfVEVYVCMjIyk7DQoJCQl9DQoJCX0NCgkJcmV0dXJuICRvcHRpb25zOw==\\\"\\n\\/>\"', 1, '2016-05-16 04:12:37', '2022-09-21 10:17:10', 15, '', 667, 'c383e570-dc66-4d03-99cf-e4f145f80f13', '', '', '', '', ''),
(3074, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'Created - By', 'NOT NULL', '', 28, '\"<field\\n\\ttype=\\\"user\\\"\\n\\tname=\\\"created_by\\\"\\n\\tlabel=\\\"Created By\\\"\\n\\tdescription=\\\"The user that created this.\\\"\\n\\/>\"', 1, '2020-11-01 17:50:51', '2022-09-21 10:17:10', 1, '', 795, '1c0e6928-4827-46c2-9cbb-78257243dc97', '', '', '', '', ''),
(3075, '', '', '', '', '', '', 'Other', -1, 1, '', 'TINYINT', 2, '', '', 'Outcome', 'NOT NULL', '', 11, '\"<field\\n\\ttype=\\\"list\\\"\\n\\tname=\\\"outcome\\\"\\n\\tlabel=\\\"Outcome\\\"\\n\\tdescription=\\\"Select the test outcome\\\"\\n\\tclass=\\\"list_class\\\"\\n\\tmultiple=\\\"false\\\"\\n\\trequired=\\\"true\\\"\\n\\toption=\\\"2|Undecided,-1|Failure,1|Successful\\\"\\n\\tdefault=\\\"2\\\"\\n\\/>\"', 1, '2018-05-16 08:27:50', '2022-09-21 10:17:10', 17, '', 859, '37e10c08-4bf6-40f1-ad12-856a953f7390', '', '', '', '', ''),
(3076, '', '', '', '', '', '', '', '', 11, '', 'INT', '', '', '', 'Joomla Version', 'NOT NULL', '', 6, '\"<field\\n\\ttype=\\\"joomlaversions\\\"\\n\\tname=\\\"joomla_version\\\"\\n\\tlabel=\\\"Joomla Version\\\"\\n\\tdescription=\\\"Select the Joomla version being tested\\\"\\n\\tclass=\\\"list_class\\\"\\n\\tmultiple=\\\"false\\\"\\n\\tdefault=\\\"0\\\"\\n\\trequired=\\\"true\\\"\\n\\textends=\\\"list\\\"\\n\\tbutton=\\\"true\\\"\\n\\ttable=\\\"#__###component###_joomla_version\\\"\\n\\tcomponent=\\\"com_###component###\\\"\\n\\tview=\\\"joomla_version\\\"\\n\\tviews=\\\"joomla_versions\\\"\\n\\tvalue_field=\\\"name\\\"\\n\\tkey_field=\\\"id\\\"\\n\\tprime_php=\\\"1\\\"\\n\\ttype_php_1=\\\"__.o0=base64=Oo.__Ly8gR2V0IHRoZSB1c2VyIG9iamVjdC4NCgkJJHVzZXIgPSBKRmFjdG9yeTo6Z2V0VXNlcigpOw0KCQkvLyBHZXQgdGhlIGRhdGFic2Ugb2JqZWN0Lg0KCQkkZGIgPSBKRmFjdG9yeTo6Z2V0REJPKCk7DQoJCSRxdWVyeSA9ICRkYi0+Z2V0UXVlcnkodHJ1ZSk7DQoJCSRxdWVyeS0+c2VsZWN0KCRkYi0+cXVvdGVOYW1lKGFycmF5KCdhLiMjI0lEIyMjJywnYS4jIyNURVhUIyMjJyksYXJyYXkoJyMjI0lEIyMjJywnIyMjQ09ERV9URVhUIyMjJykpKTsNCgkJJHF1ZXJ5LT5mcm9tKCRkYi0+cXVvdGVOYW1lKCcjIyNUQUJMRSMjIycsICdhJykpOw0KCQkkcXVlcnktPndoZXJlKCRkYi0+cXVvdGVOYW1lKCdhLnB1Ymxpc2hlZCcpIC4gJyA+PSAxJyk7DQoJCSRxdWVyeS0+b3JkZXIoJ2EuaWQgREVTQycpOw0KCQkvLyBJbXBsZW1lbnQgVmlldyBMZXZlbCBBY2Nlc3MgKGlmIHNldCBpbiB0YWJsZSkNCgkJaWYgKCEkdXNlci0+YXV0aG9yaXNlKCdjb3JlLm9wdGlvbnMnLCAnW1tbY29tX2NvbXBvbmVudF1dXScpKQ0KCQl7DQoJCQkkY29sdW1ucyA9ICRkYi0+Z2V0VGFibGVDb2x1bW5zKCcjIyNUQUJMRSMjIycpOw0KCQkJaWYoaXNzZXQoJGNvbHVtbnNbJ2FjY2VzcyddKSkNCgkJCXsNCgkJCQkkZ3JvdXBzID0gaW1wbG9kZSgnLCcsICR1c2VyLT5nZXRBdXRob3Jpc2VkVmlld0xldmVscygpKTsNCgkJCQkkcXVlcnktPndoZXJlKCdhLmFjY2VzcyBJTiAoJyAuICRncm91cHMgLiAnKScpOw0KCQkJfQ0KCQl9DQoJCSRkYi0+c2V0UXVlcnkoKHN0cmluZykkcXVlcnkpOw0KCQkkaXRlbXMgPSAkZGItPmxvYWRPYmplY3RMaXN0KCk7DQoJCSRvcHRpb25zID0gYXJyYXkoKTsNCgkJaWYgKCRpdGVtcykNCgkJew0KCQkJaWYgKCR0aGlzLT5tdWx0aXBsZSA9PT0gZmFsc2UpIHsNCgkJCQkkb3B0aW9uc1tdID0gSkh0bWw6Ol8oJ3NlbGVjdC5vcHRpb24nLCAnJywgJ1NlbGVjdCBhbiBvcHRpb24nKTsNCgkJCX0NCgkJCWZvcmVhY2goJGl0ZW1zIGFzICRpdGVtKQ0KCQkJew0KCQkJCSRvcHRpb25zW10gPSBKSHRtbDo6Xygnc2VsZWN0Lm9wdGlvbicsICRpdGVtLT4jIyNJRCMjIywgJGl0ZW0tPiMjI0NPREVfVEVYVCMjIyk7DQoJCQl9DQoJCX0NCgkJcmV0dXJuICRvcHRpb25zOw==\\\"\\n\\/>\"', 1, '2020-10-30 19:19:01', '2022-09-21 10:17:10', 7, '', 1002, '768b280c-eb93-4e73-bbfc-69e04e9a9edb', '', '', '', '', ''),
(3077, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Stable Description', 'NOT NULL', '', 25, '\"<field\\n\\ttype=\\\"textarea\\\"\\n\\tname=\\\"stable_description\\\"\\n\\tlabel=\\\"Stable Description\\\"\\n\\trows=\\\"2\\\"\\n\\tcols=\\\"5\\\"\\n\\tdefault=\\\"A release that is being actively supported. Reported bugs and security issues are fixed and regular point releases are made.\\\"\\n\\tmessage=\\\"Error! Please add stable description here.\\\"\\n\\tclass=\\\"text_area span12\\\"\\n\\tfilter=\\\"STRING\\\"\\n\\thint=\\\"A release that is being actively supported. Reported bugs and security issues are fixed and regular point releases are made.\\\"\\n\\trequired=\\\"true\\\"\\n\\/>\"', '', '2022-10-14 17:25:07', '2022-10-14 17:31:31', 5, '', 155, '6407ee7b-629f-4002-960b-2e72382645fb', '', '', '', '', ''),
(3078, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Stable Label', 'NOT NULL', '', 25, '\"<field\\n\\ttype=\\\"textarea\\\"\\n\\tname=\\\"stable_label\\\"\\n\\tlabel=\\\"Stable Label\\\"\\n\\trows=\\\"1\\\"\\n\\tcols=\\\"5\\\"\\n\\tdefault=\\\"Active support\\\"\\n\\tmessage=\\\"Error! Please add stable label here.\\\"\\n\\tclass=\\\"text_area span12\\\"\\n\\tfilter=\\\"STRING\\\"\\n\\thint=\\\"Active support\\\"\\n\\trequired=\\\"true\\\"\\n\\/>\"', '', '2022-10-14 17:28:41', '2022-10-14 17:31:08', 2, '', 155, '52ae9a54-75b0-4e3f-90fc-f53e03a068ff', '', '', '', '', ''),
(3079, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Security Label', 'NOT NULL', '', 25, '\"<field\\n\\ttype=\\\"textarea\\\"\\n\\tname=\\\"security_label\\\"\\n\\tlabel=\\\"Security Label\\\"\\n\\trows=\\\"1\\\"\\n\\tcols=\\\"5\\\"\\n\\tdefault=\\\"Security fixes only\\\"\\n\\tmessage=\\\"Error! Please add security label here.\\\"\\n\\tclass=\\\"text_area span12\\\"\\n\\tfilter=\\\"STRING\\\"\\n\\thint=\\\"Security fixes only\\\"\\n\\trequired=\\\"true\\\"\\n\\/>\"', '', '2022-10-14 17:32:26', '2022-10-14 17:31:08', 1, '', 155, 'ef1e5715-871c-490d-87b9-39f60dcbfe1e', '', '', '', '', ''),
(3080, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Security Description', 'NOT NULL', '', 25, '\"<field\\n\\ttype=\\\"textarea\\\"\\n\\tname=\\\"security_description\\\"\\n\\tlabel=\\\"Security Description\\\"\\n\\trows=\\\"2\\\"\\n\\tcols=\\\"5\\\"\\n\\tdefault=\\\"A release that is supported for critical security issues only. Releases are only made on an as-needed basis.\\\"\\n\\tmessage=\\\"Error! Please add security description here.\\\"\\n\\tclass=\\\"text_area span12\\\"\\n\\tfilter=\\\"STRING\\\"\\n\\thint=\\\"A release that is supported for critical security issues only. Releases are only made on an as-needed basis.\\\"\\n\\trequired=\\\"true\\\"\\n\\/>\"', '', '2022-10-14 17:33:13', '2022-10-14 17:34:33', 2, '', 155, 'ba273527-71ad-4092-9a7b-c1dc9cf5add0', '', '', '', '', ''),
(3081, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'End of life Label', 'NOT NULL', '', 25, '\"<field\\n\\ttype=\\\"textarea\\\"\\n\\tname=\\\"eol_label\\\"\\n\\tlabel=\\\"End of life Label\\\"\\n\\trows=\\\"1\\\"\\n\\tcols=\\\"5\\\"\\n\\tdefault=\\\"End of life\\\"\\n\\tmessage=\\\"Error! Please add end of life label here.\\\"\\n\\tclass=\\\"text_area span12\\\"\\n\\tfilter=\\\"STRING\\\"\\n\\thint=\\\"End of life\\\"\\n\\trequired=\\\"true\\\"\\n\\/>\"', '', '2022-10-14 17:36:19', '2022-10-14 17:31:08', 1, '', 155, 'eb323df6-e293-4716-bc7b-020491340ca8', '', '', '', '', ''),
(3082, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Autoloader Composer Powers', 'NULL', '', 35, '\"<field\\n\\ttype=\\\"subform\\\"\\n\\tname=\\\"composer\\\"\\n\\tlabel=\\\"Autoloader Composer Powers\\\"\\n\\tlayout=\\\"joomla.form.field.subform.repeatable-table\\\"\\n\\tmultiple=\\\"true\\\"\\n\\tbuttons=\\\"add,remove,move\\\"\\n\\tfields=\\\"3084,3085\\\"\\n\\ticon=\\\"list\\\"\\n\\tmax=\\\"1\\\"\\n\\tmin=\\\"0\\\"\\n\\/>\"', 1, '2022-12-18 18:37:44', '2024-03-06 15:52:28', 8, '', 938, 'a015aceb-5024-480c-88ea-fd9e4ad2d9f1', '', '', '', '', ''),
(3083, '', '', '', '', '', '', '', '', '', '', '', '', '', '', 'Autoload Composer Note', 'NOT NULL', '', 14, '\"<field\\n\\ttype=\\\"note\\\"\\n\\tname=\\\"autoload_composer_note\\\"\\n\\tlabel=\\\"When to use Autoloader Composer Powers?\\\"\\n\\tdescription=\\\"<p>Once you have manually pulled composer classes into your own custom folder in libraries area (via composer), you can link it here.<\\/p>\\r\\n\\r\\n<p>So this feature gives you the ability to add your own custom <b>composer<\\/b> set of classes to your project. Yes, you will still have to manually pull them into your own custom and unique folder into the libraries area of Joomla (on this JCB development system). But you can link it here and JCB will take care of adding it to your component.<\\/p>\\r\\n\\r\\n<p>First and most importantly (due to obvious risk of collusion), avoid pulling classes into your custom set of composer classes that are already included in the Joomla vendor folder. Those classes that Joomla loads are already available to you. To use them, just add the <b>use Namespace;<\\/b> of that class to the header of this power, and the PHP auto linker will take care of the rest.<\\/p>\\r\\n\\r\\n<p>So all composer projects =>(vendor folders) has an <code>autoload.php<\\/code> file that is located in the root of the vendor folder. We call this the <b>access point<\\/b> to that cluster of classes. This means you will have <b>one access point<\\/b> for multiple namespaces.<\\/p>\\r\\n\\r\\n<p>Due the continued risk of collusion <b>we allow only one access point per\\/power<\\/b>. But for even more peace of mind, it is best to have only one access point per\\/project. Which means you should try to consolidate your custom composer additional classes (outside of the Joomla vendor folder) into one vendor folder. This will result in <b>one access point<\\/b>, that you will use multiple times for various powers.<\\/p>\\r\\n\\r\\n<p>Should you want JCB to load the composer classes to your component, you will have to manually link it to the <b>Component Files & Folders<\\/b> area. This is the best option for now (and will always work), but we will soon improve the Library area in JCB to also take care of PHP libraries. Once this option becomes available we will give notice of the change here.<\\/p>\\\"\\n\\theading=\\\"h4\\\"\\n\\tclass=\\\"alert alert-info\\\"\\n\\/>\"', 1, '2022-12-18 19:08:32', '2023-03-11 11:38:48', 9, '', 1015, '9bc2fde2-b508-430b-ac05-642aca0f5614', '', '', '', '', ''),
(3084, '', '', '', '', '', '', '', '', 64, '', 'CHAR', '', '', '', 'Access Point (autoload full path)', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"access_point\\\"\\n\\tlabel=\\\"Access Point\\\"\\n\\tsize=\\\"70\\\"\\n\\tmaxlength=\\\"300\\\"\\n\\tdescription=\\\"Library path to the autoload.php file\\\"\\n\\tclass=\\\"text_area\\\"\\n\\trequired=\\\"true\\\"\\n\\tfilter=\\\"PATH\\\"\\n\\tmessage=\\\"Error! Please add autoload full path here.\\\"\\n\\thint=\\\"custom_folder\\/vendor\\/autoload.php (must be in the ...\\/public_html\\/library\\/ folder of Joomla)\\\"\\n\\/>\"', 1, '2022-12-19 11:55:04', '2022-12-21 20:09:47', 8, '', 300, '68bf426c-9256-448e-9e00-dc8da82fd4d5', '', '', '', '', ''),
(3085, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Namespaces', 'NOT NULL', '', 35, '\"<field\\n\\ttype=\\\"subform\\\"\\n\\tname=\\\"namespace\\\"\\n\\tlabel=\\\"Namespaces\\\"\\n\\tlayout=\\\"joomla.form.field.subform.repeatable-table\\\"\\n\\tmultiple=\\\"true\\\"\\n\\tbuttons=\\\"add,remove,move\\\"\\n\\tfields=\\\"3086\\\"\\n\\ticon=\\\"list\\\"\\n\\tmax=\\\"30\\\"\\n\\tmin=\\\"1\\\"\\n\\/>\"', 1, '2022-12-19 11:55:44', '2022-12-19 15:37:58', 6, '', 938, '901cc15c-e422-4a38-aaae-4a09ec3196f2', '', '', '', '', ''),
(3086, '', '', '', '', '', '', '', '', 255, '', 'CHAR', '', '', '', 'Use', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"use\\\"\\n\\tlabel=\\\"Use\\\"\\n\\tsize=\\\"70\\\"\\n\\tmaxlength=\\\"300\\\"\\n\\tclass=\\\"text_area\\\"\\n\\trequired=\\\"true\\\"\\n\\tfilter=\\\"STRING\\\"\\n\\tmessage=\\\"Error! Please add namespace here.\\\"\\n\\thint=\\\"Name\\\\Project\\\\ClassName\\\"\\n\\tautocomplete=\\\"on\\\"\\n\\/>\"', 1, '2022-12-19 12:02:46', '2022-12-19 17:36:25', 3, '', 300, '541cbe80-5eee-45ac-b18e-9454802f5b27', '', '', '', '', ''),
(3087, '', '', '', '', '', '', '', '', 64, '', 'CHAR', '', '', '', 'Custom Folder', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"custom_folder\\\"\\n\\tlabel=\\\"Custom Folder\\\"\\n\\tsize=\\\"70\\\"\\n\\tmaxlength=\\\"300\\\"\\n\\tdescription=\\\"full path\\\"\\n\\tclass=\\\"text_area\\\"\\n\\trequired=\\\"true\\\"\\n\\tfilter=\\\"PATH\\\"\\n\\tmessage=\\\"Error! Please add custom folder full path here.\\\"\\n\\thint=\\\"\\/home\\/public_html\\/libraries\\/custom\\\"\\n\\/>\"', '', '2022-12-19 12:30:51', '2022-12-19 17:36:15', 3, '', 300, 'b16754d8-8893-4727-b90b-92fdde5d3745', '', '', '', '', ''),
(3088, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'Target Import Custom Controller Header', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"add_import_custom_controller\\\"\\n\\tlabel=\\\"Target Import Custom<br \\/>Controller Header\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"1|Yes,0|No\\\"\\n\\tdefault=\\\"0\\\"\\n\\trequired=\\\"true\\\"\\n\\/>\"', 1, '2023-02-26 00:52:28', '2023-02-26 00:53:29', 2, '', 1004, '307dc342-1ce1-40e3-9ba3-ee9b0476b44d', '', '', '', '', ''),
(3089, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Class Header (import.custom.controller)', 'NOT NULL', 2, 8, '\"<field\\n\\ttype=\\\"editor\\\"\\n\\tname=\\\"import_custom_controller\\\"\\n\\tlabel=\\\"Class Header<br \\/>\\r\\n<small>(import.custom.controller)<\\/small>\\\"\\n\\tdescription=\\\"The class header for import custom controller.\\\"\\n\\twidth=\\\"100%\\\"\\n\\theight=\\\"100px\\\"\\n\\tcols=\\\"15\\\"\\n\\trows=\\\"10\\\"\\n\\tbuttons=\\\"no\\\"\\n\\tsyntax=\\\"php\\\"\\n\\teditor=\\\"codemirror|none\\\"\\n\\tfilter=\\\"raw\\\"\\n\\trequired=\\\"false\\\"\\n\\tvalidate=\\\"code\\\"\\n\\tshowon=\\\"add_import_custom_controller:1\\\"\\n\\/>\"', 1, '2023-02-26 00:54:22', '2023-02-26 00:54:55', 2, '', 934, '0ad0de05-dedc-419b-b94b-25c2d0167a89', '', '', '', '', ''),
(3090, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Powers Header (import.custom.controller)', 'NOT NULL', '', 35, '\"<field\\n\\ttype=\\\"subform\\\"\\n\\tname=\\\"power_import_custom_controller\\\"\\n\\tlabel=\\\"Power Header<br \\/>\\r\\n<small>(import.custom.controller)<\\/small>\\\"\\n\\tlayout=\\\"joomla.form.field.subform.repeatable-table\\\"\\n\\tmultiple=\\\"true\\\"\\n\\tbuttons=\\\"add,remove,move\\\"\\n\\tfields=\\\"2949,3041,3040\\\"\\n\\tdescription=\\\"The power header for admin view controller.\\\"\\n\\ticon=\\\"list\\\"\\n\\tmax=\\\"50\\\"\\n\\tshowon=\\\"add_import_custom_controller:1\\\"\\n\\/>\"', 1, '2023-02-26 00:57:01', '2023-02-26 00:57:11', 2, '', 934, '18528f44-5f39-4943-b7ae-451f5b554773', '', '', '', '', ''),
(3091, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'Target Import Custom Model Header', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"add_import_custom_model\\\"\\n\\tlabel=\\\"Target Import Custom<br \\/>Model Header\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"1|Yes,0|No\\\"\\n\\tdefault=\\\"0\\\"\\n\\trequired=\\\"true\\\"\\n\\/>\"', 1, '2023-02-26 00:58:04', '2023-02-26 00:58:25', 2, '', 1004, '729d1129-acad-43fb-8c36-a396eb9aebea', '', '', '', '', ''),
(3092, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Class Header (import.custom.model)', 'NOT NULL', 2, 8, '\"<field\\n\\ttype=\\\"editor\\\"\\n\\tname=\\\"import_custom_model\\\"\\n\\tlabel=\\\"Class Header<br \\/>\\r\\n<small>(import.custom.model)<\\/small>\\\"\\n\\tdescription=\\\"The class header for import custom model.\\\"\\n\\twidth=\\\"100%\\\"\\n\\theight=\\\"100px\\\"\\n\\tcols=\\\"15\\\"\\n\\trows=\\\"10\\\"\\n\\tbuttons=\\\"no\\\"\\n\\tsyntax=\\\"php\\\"\\n\\teditor=\\\"codemirror|none\\\"\\n\\tfilter=\\\"raw\\\"\\n\\trequired=\\\"false\\\"\\n\\tvalidate=\\\"code\\\"\\n\\tshowon=\\\"add_import_custom_model:1\\\"\\n\\/>\"', 1, '2023-02-26 00:59:38', '2023-02-26 00:59:53', 2, '', 934, 'bcd587f9-e231-4b12-83a3-a75407578d6f', '', '', '', '', ''),
(3093, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Powers Header (import.custom.model)', 'NOT NULL', '', 35, '\"<field\\n\\ttype=\\\"subform\\\"\\n\\tname=\\\"power_import_custom_model\\\"\\n\\tlabel=\\\"Power Header<br \\/>\\r\\n<small>(import.custom.model)<\\/small>\\\"\\n\\tlayout=\\\"joomla.form.field.subform.repeatable-table\\\"\\n\\tmultiple=\\\"true\\\"\\n\\tbuttons=\\\"add,remove,move\\\"\\n\\tfields=\\\"2949,3041,3040\\\"\\n\\tdescription=\\\"The power header for admin view model.\\\"\\n\\ticon=\\\"list\\\"\\n\\tmax=\\\"50\\\"\\n\\tshowon=\\\"add_import_custom_model:1\\\"\\n\\/>\"', 1, '2023-02-26 01:00:36', '2023-02-26 01:01:05', 2, '', 934, 'afcd5293-1856-4714-96d5-5614293e9fa2', '', '', '', '', ''),
(3094, '', '', '', '', '', '', '', '', '', '', '', '', '', '', 'Powers Repository Path - Note', 'NOT NULL', '', 14, '\"<field\\n\\ttype=\\\"note\\\"\\n\\tname=\\\"note_powers_repository_path\\\"\\n\\tlabel=\\\"Local Powers Repository Path\\\"\\n\\tdescription=\\\"The powers repository local path is where <b>[layer:core]<\\/b> and all <b>[layer:own]<\\/b> powers are placed. So you can with git add your powers to your own profile on https:\\/\\/git.vdm.dev\\/[username]\\/power for easy reuse between projects.\\\"\\n\\theading=\\\"h4\\\"\\n\\tclass=\\\"alert alert-info\\\"\\n\\tshowon=\\\"powers_repository:1\\\"\\n\\/>\"', 1, '2023-03-06 18:45:32', '2023-03-11 20:14:17', 7, '', 642, '8c26131d-47aa-4624-9c49-6190ca999cc2', '', '', '', '', ''),
(3095, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Local Powers Repository Path', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"local_powers_repository_path\\\"\\n\\tlabel=\\\"Local Powers Repository Path\\\"\\n\\tsize=\\\"70\\\"\\n\\tmaxlength=\\\"150\\\"\\n\\tdescription=\\\"Here you can set the path to the super powers local repository folder, where <b>[layer:core]<\\/b> and all targeted <b>[layer:own]<\\/b> sub paths will be placed with their selective <b>[switch:approved]<\\/b> powers.\\\"\\n\\tclass=\\\"text_area\\\"\\n\\treadonly=\\\"false\\\"\\n\\tdisabled=\\\"false\\\"\\n\\trequired=\\\"false\\\"\\n\\tfilter=\\\"PATH\\\"\\n\\tmessage=\\\"Error! Please add some text here.\\\"\\n\\thint=\\\"\\/home\\/power\\\"\\n\\tautocomplete=\\\"on\\\"\\n\\tshowon=\\\"powers_repository:1\\\"\\n\\/>\"', 1, '2023-03-06 18:50:32', '2023-03-29 15:55:21', 8, '', 641, 'e074f405-6808-41f4-b3e6-3347130ad732', '', '', '', '', ''),
(3096, '', '', '', '', '', '', '', '', '', '', '', '', '', '', 'Super Powers - Note', 'NOT NULL', '', 14, '\"<field\\r\\n\\ttype=\\\"note\\\"\\r\\n\\tname=\\\"note_super_powers\\\"\\r\\n\\tlabel=\\\"Super Powers\\\"\\r\\n\\tdescription=\\\"<p>Joomla Component Builder (JCB), has <b>super powers<\\/b>. Which is another way of saying it now allows for powers to be pulled in from a global array of areas, over which you have full control. This allows for easy sharing of your powers between your JCB instances with your own power repositories on https:\\/\\/git.vdm.dev\\/[username]\\/my-powers. While at the same time be able to use the JCB core powers where needed.<\\/p>\\r\\n\\r\\n<p>Let\'s explain:<br \\/>\\r\\nThis feature called <b>super-powers<\\/b>, manages powers by use of layers, events, tasks, methods, switches, and algorithms that all work in combination of different ways to achieve super powers.<\\/p>\\r\\n\\r\\n<p>\\r\\nThe <b>[powers]<\\/b> are:\\r\\n<ul>\\r\\n<li>[guid] => Each power has a global unique identifier used to control the power global identity. This [power:guid] looks like this: <em>b836c1b1-b6b1-44f7-b8a2-9a763a4185b1<\\/em><\\/li>\\r\\n<li>[code] => The actual code of the power that is found in a PHP file<\\/li>\\r\\n<li>[settings] => The settings define the power details, relationships, and more. They are stored in a Json formatted file in [layer:repo] and\\/or [layer:local] and\\/or as column values in the [layer:database]<\\/li>\\r\\n<\\/ul>\\r\\nThe <b>[layers]<\\/b> are:\\r\\n<ul>\\r\\n<li>[database] This JCB instance\'s Database<\\/li>\\r\\n<li>[repo] The https:\\/\\/git.vdm.dev\\/ git website that holds all repos, and which is managed by Vast Development Method<\\/li>\\r\\n<li>[core] The core super-power repo of JCB https:\\/\\/git.vdm.dev\\/joomla\\/super-powers (this target can be changed in global options)<\\/li>\\r\\n<li>[own] Your own super-powers repos https:\\/\\/git.vdm.dev\\/[username]\\/my-powers (sub-paths)<\\/li>\\r\\n<li>[local] Local path, and its sub-paths that hold [core] and [own] repositories.<\\/li>\\r\\n<\\/ul>\\r\\nThe <b>[events]<\\/b> are:\\r\\n<ul>\\r\\n<li>[compile] Compilation of a component<\\/li>\\r\\n<li>[sync] Synchronisation of selected powers with [algorithm:cascading]<\\/li>\\r\\n<li>[init] Uploads all powers from all active [layers] into [layer:database] if not already exist in [layer:database]<\\/li>\\r\\n<li>[reset] Force synchronisation of selected powers with [layer:core]<\\/li>\\r\\n<\\/ul>\\r\\nThe <b>[tasks]<\\/b> are:\\r\\n<ul>\\r\\n<li>[get] To get powers from any of the layers<\\/li>\\r\\n<li>[set] To set powers to database or local paths<\\/li>\\r\\n<\\/ul>\\r\\nThe <b>[methods]<\\/b> are:\\r\\n<ul>\\r\\n<li>[auto] When JCB automatically does this for you<\\/li>\\r\\n<li>[manual] When you must manually do something<\\/li>\\r\\n<\\/ul>\\r\\nThe <b>[switches]<\\/b> are:\\r\\n<ul>\\r\\n<li>[activate] This switch activates super-powers, and allows for [layer:local] path to be set<\\/li>\\r\\n<li>[token] This is the VDM access token from the global tab.<\\/li>\\r\\n<li>[super] This switch allows for [layer:own] paths to be set<\\/li>\\r\\n<li>[approved] This switch allows a power to be added to a [layer:core] or [layer:own] paths<\\/li>\\r\\n<\\/ul>\\r\\n<\\/p>\\r\\nThe <b>[algorithms]<\\/b> are:\\r\\n<ul>\\r\\n<li>[cascading] The is the way in which JCB [task:get] a power during the [events] so that it can use the power in your component, and store in [layer:database]<\\/li>\\r\\n<\\/ul>\\r\\n<\\/p>\\r\\n\\r\\n<p>These terminologies and ideas are what you need to remember whenever you read any of the comments and other information about super-powers in JCB.<\\/p>\\r\\n\\r\\n<p>JCB uses powers as the foundation of all it builds. <b>You can build things<\\/b> with JCB without knowing how to use or work with powers. But <b>JCB cannot build anything<\\/b> without powers. That means JCB needs to load powers from the [layer:core] and usually will do this whenever an [event] is triggered based on the [algorithm:cascading].<\\/p>\\r\\n\\r\\n<p>All these events can possibly move powers into your [layer:database]. These [events] have the [method:auto] behaviour, and therefore we make use of the [algorithm:cascading] that allows for overriding any power in any way you like. Beware that divergence from the core powers may have side effects and therefore should only be done with knowledge and full understanding on your part.<p>\\r\\n\\r\\n<p>Let\'s Explain the <b>[algorithm:cascading]<\\/b><br \\/>\\r\\nDuring [events] we must [auto] load powers, and so there is a search path for each event.<\\/p>\\r\\n\\r\\n<p>The <b>[event:compile]<\\/b> when building your component, here is the <b>[algorithm:cascading]<\\/b>:\\r\\n<ol>\\r\\n<li>[layer:database]<\\/li>\\r\\n<li>[layer:local IF switch:activate AND switch:approved]<\\/li>\\r\\n<li>[layer:own IF switch:token AND switch:activate AND switch:super AND switch:approved]<\\/li>\\r\\n<li>[layer:core]<\\/li>\\r\\n<\\/ol>\\r\\n<\\/p>\\r\\n<p>This means, that if JCB gets a [power:guid] in the [layer:database] it stops the search and uses that found power. But if not, it will continue until it finds the power, or it will show an error that the power could not be found. Once it finds the power, it will make sure that the power is in [layer:database], and if [layer:local] is active, it will update those as well as determined by the approved path selection of each power.\\r\\n<\\/p>\\r\\n\\r\\n<p>The <b>[event:sync]<\\/b> when the sync button is clicked, here is the <b>[algorithm:cascading]<\\/b>:\\r\\n<ol>\\r\\n<li>[layer:own IF switch:token AND switch:activate AND switch:super AND switch:approved]<\\/li>\\r\\n<li>[layer:local IF switch:activate AND switch:approved]<\\/li>\\r\\n<li>[layer:core]<\\/li>\\r\\n<\\/ol>\\r\\n<\\/p>\\r\\n<p>This means, that if JCB gets a [power:guid] in any of the targeted [layer:own] it stops the search for that power at the first instance it finds that power. Then JCB will update your [layer:database] with the found power, irrespective of modify or creation date. The [power:guid] is used as the key, and should JCB therefore have a power in any of your [layer:own] it will override the [layer:core] and [layer:local] version of any power, and update the [layer:database].<\\/p>\\r\\n\\r\\n<p>The <b>[event:reset]<\\/b> when the reset button is clicked, will update [layer:database] with [layer:core] version of the selected powers if found in [layer:core], irrespective of modify or creation date.<\\/p>\\r\\n\\r\\n<p>The <b>[event:init]<\\/b> when the init button is clicked, will initialise [layer:database] with all [layers] powers not found in [layer:database]. Should you have the same power in multiple of the layers, here is the <b>[algorithm:cascading]<\\/b>:\\r\\n<ol>\\r\\n<li>[layer:own IF switch:token AND switch:activate AND switch:super AND switch:approved]<\\/li>\\r\\n<li>[layer:local IF switch:activate]<\\/li>\\r\\n<li>[layer:core IF_NOT layer:database]<\\/li>\\r\\n<\\/ol>\\r\\n<\\/p>\\r\\n<p>This means, that if JCB gets a [power:guid] in any of the targeted [layer:own] it will not use any of the other [layers] versions. JCB will add this first found power to your [layer:database] unless it\'s already in [layer:database], in which case it will be ignored. Use [event:sync] or [event:reset] should you like to update [layer:database] existing powers.<\\/p>\\r\\n\\r\\n\\\"\\r\\n\\theading=\\\"h4\\\"\\r\\n\\tclass=\\\"alert alert-info\\\"\\r\\n\\tshowon=\\\"super_powers_documentation:1\\\"\\r\\n\\/>\"', 1, '2023-03-06 19:09:27', '2023-03-11 20:30:26', 14, '', 642, 'd1f51cff-d6e3-4556-9a72-e3067d46d1a4', '', '', '', '', ''),
(3097, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'Activate Super Powers?', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"powers_repository\\\"\\n\\tlabel=\\\"Activate Super Powers?\\\"\\n\\tdescription=\\\"This adds powers to a local repository folder. All <b>approved<\\/b> powers, linked to a component, will during compiling be moved to your <b>local<\\/b> powers repository folder into their selective target paths.\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"1|Yes,0|No\\\"\\n\\tdefault=\\\"0\\\"\\n\\trequired=\\\"true\\\"\\n\\/>\"', 1, '2023-03-06 19:29:30', '2023-03-07 14:57:34', 5, '', 1029, '611b8115-03d8-4d7e-8073-34e42d214eb5', '', '', '', '', ''),
(3098, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'Own Super Powers?', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"super_powers_repositories\\\"\\n\\tlabel=\\\"Own Super Powers?\\\"\\n\\tdescription=\\\"Do you have your own repositories on https:\\/\\/git.vdm.dev\\/ with super powers?\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"1|Yes,0|No\\\"\\n\\tdefault=\\\"0\\\"\\n\\trequired=\\\"true\\\"\\n\\tshowon=\\\"powers_repository:1\\\"\\n\\/>\"', 1, '2023-03-06 19:38:07', '2023-03-07 15:00:54', 6, '', 1029, '0382c33b-de2e-482f-a601-2cdfc9c5c565', '', '', '', '', ''),
(3099, '', '', '', '', '', '', '', '', '', '', '', '', '', '', 'Own Super Powers - Note', 'NOT NULL', '', 14, '\"<field\\n\\ttype=\\\"note\\\"\\n\\tname=\\\"note_super_powers_repositories\\\"\\n\\tlabel=\\\"Super Powers Repositories [layer:local:own]\\\"\\n\\tdescription=\\\"<p>Add the paths to those repositories you would like to target with this instance of JCB.<\\/p>\\r\\n<p>You only need to add the <b>path<\\/b>, so if your repository is located here: https:\\/\\/git.vdm.dev\\/Llewellyn\\/workshop.<br \\/>Then the path will be: <b>Llewellyn\\/workshop<\\/b><\\/p><p>We will use these paths in all [events] based on the <b>[algorithm:cascading]<\\/b><\\/p>\\\"\\n\\theading=\\\"h4\\\"\\n\\tclass=\\\"alert alert-info\\\"\\n\\tshowon=\\\"powers_repository:1[AND]super_powers_repositories:1\\\"\\n\\/>\"', 1, '2023-03-06 19:45:44', '2023-03-11 15:52:44', 7, '', 642, '2be12fa2-4f1c-4132-85e0-4c659dc3020e', '', '', '', '', ''),
(3100, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'Super Power Approval', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"approved\\\"\\n\\tlabel=\\\"Super Power\\\"\\n\\tdescription=\\\"When you <b>approve<\\/b> a power, it will be added to your <b>local<\\/b> powers folder once linked to a component, and this super power feature is activated. There are <b>two<\\/b> ways to activate this feature, one is in the advanced options on the compiler page, and the other is in the global options of JCB.\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"0|Not Approved,1|Approved\\\"\\n\\tdefault=\\\"0\\\"\\n\\trequired=\\\"true\\\"\\n\\/>\"', 1, '2023-03-07 09:06:38', '2023-03-07 09:11:46', 3, '', 1030, 'a0e9a1e1-d32b-4bb7-b3e8-e146b5427405', '', '', '', '', ''),
(3101, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Super Power Repository Owner', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"owner\\\"\\n\\tlabel=\\\"Owner\\\"\\n\\tsize=\\\"70\\\"\\n\\tmaxlength=\\\"150\\\"\\n\\tclass=\\\"text_area span12\\\"\\n\\treadonly=\\\"false\\\"\\n\\tfilter=\\\"CMD\\\"\\n\\thint=\\\"[owner]\\\"\\n\\tautocomplete=\\\"on\\\"\\n\\/>\"', 1, '2023-03-07 09:44:56', '2023-03-27 12:34:13', 5, '', 641, '6064de35-a622-49b8-a021-09a8623379a4', '', '', '', '', ''),
(3102, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Super Powers Repository Paths', 'NULL', '', 35, '\"<field\\n\\ttype=\\\"subform\\\"\\n\\tname=\\\"approved_paths\\\"\\n\\tlabel=\\\"Super Powers Repository Paths\\\"\\n\\tlayout=\\\"joomla.form.field.subform.repeatable-table\\\"\\n\\tmultiple=\\\"true\\\"\\n\\tbuttons=\\\"add,remove,move\\\"\\n\\tfields=\\\"3101,3107,3108\\\"\\n\\ticon=\\\"list\\\"\\n\\tmax=\\\"30\\\"\\n\\tmin=\\\"1\\\"\\n\\tshowon=\\\"powers_repository:1[AND]super_powers_repositories:1\\\"\\n\\/>\"', 1, '2023-03-07 09:47:26', '2024-03-06 15:47:54', 8, '', 641, 'a8346fa7-5cd4-460c-ad2d-aeb37389eaec', '', '', '', '', ''),
(3103, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Targeted Paths', 'NULL', 1, 47, '\"<field\\n\\ttype=\\\"superpowerpaths\\\"\\n\\tname=\\\"approved_paths\\\"\\n\\tlabel=\\\"Approved Paths\\\"\\n\\tdescription=\\\"Select the paths this power should be added to.\\\"\\n\\toption=\\\"joomla\\/super-powers|joomla\\/super-powers\\\"\\n\\trequired=\\\"false\\\"\\n\\tshowon=\\\"approved:1\\\"\\n\\textends=\\\"checkboxes\\\"\\n\\ttype_php_1=\\\"__.o0=base64=Oo.__CS8qKg0KCSAqIE1ldGhvZCB0byBnZXQgdGhlIGRhdGEgdG8gYmUgcGFzc2VkIHRvIHRoZSBsYXlvdXQgZm9yIHJlbmRlcmluZy4NCgkgKg0KCSAqIEByZXR1cm4gIGFycmF5DQoJICoNCgkgKiBAc2luY2UgICAzLjUNCgkgKi8NCglwcm90ZWN0ZWQgZnVuY3Rpb24gZ2V0TGF5b3V0RGF0YSgpDQoJew0KCQkkZGF0YSA9IHBhcmVudDo6Z2V0TGF5b3V0RGF0YSgpOw0KDQoJCS8vIFRydWUgaWYgdGhlIGZpZWxkIGhhcyAndmFsdWUnIHNldC4gSW4gb3RoZXIgd29yZHMsIGl0IGhhcyBiZWVuIHN0b3JlZCwgZG9uJ3QgdXNlIHRoZSBkZWZhdWx0IHZhbHVlcy4NCgkJJGhhc1ZhbHVlID0gKGlzc2V0KCR0aGlzLT52YWx1ZSkgJiYgIWVtcHR5KCR0aGlzLT52YWx1ZSkpOw0KDQoJCS8vIElmIGEgdmFsdWUgaGFzIGJlZW4gc3RvcmVkLCB1c2UgaXQuIE90aGVyd2lzZSwgdXNlIHRoZSBkZWZhdWx0cy4NCgkJJGNoZWNrZWRPcHRpb25zID0gJGhhc1ZhbHVlID8gJHRoaXMtPnZhbHVlIDogJHRoaXMtPmNoZWNrZWRPcHRpb25zOw0KDQoJCS8vIGdldCB0aGUgZm9ybSBvcHRpb25zDQoJCSRvcHRpb25zID0gW107DQoNCgkJLy8gZ2V0IHRoZSBjb21wb25lbnQgcGFyYW1zDQoJCSRwYXJhbXMgPSBTdXBlcl9fXzY0MGI1MzUyX2ZiMDlfNDI1Zl9hMjZlX2NkNDRlZGEwM2YxNV9fX1Bvd2VyOjpnZXRQYXJhbXMoKTsNCgkJJGFjdGl2YXRlICA9ICRwYXJhbXMtPmdldCgnc3VwZXJfcG93ZXJzX3JlcG9zaXRvcmllcycsIDApOw0KDQoJCS8vIHNldCB0aGUgZGVmYXVsdA0KCQkkZGVmYXVsdCA9ICRwYXJhbXMtPmdldCgnc3VwZXJfcG93ZXJzX2NvcmUnLCAnam9vbWxhL3N1cGVyLXBvd2VycycpOw0KDQoJCS8vIG11c3QgaGF2ZSBvbmUgLyBpbiB0aGUgcGF0aA0KCQlpZiAoc3RycG9zKCRkZWZhdWx0LCAnLycpICE9PSBmYWxzZSkNCgkJew0KCQkJJHRtcCA9IG5ldyBcc3RkQ2xhc3M7DQoJCQkkdG1wLT50ZXh0ID0gJHRtcC0+dmFsdWUgPSB0cmltKCRkZWZhdWx0KTsNCgkJCSR0bXAtPmNoZWNrZWQgPSBmYWxzZTsNCgkJCSRvcHRpb25zWyR0bXAtPnZhbHVlXSA9ICR0bXA7DQoJCX0NCg0KCQlpZiAoJGFjdGl2YXRlID09IDEpDQoJCXsNCgkJCSRzdWJmb3JtID0gJHBhcmFtcy0+Z2V0KCR0aGlzLT5maWVsZG5hbWUpOw0KDQoJCQkvLyBhZGQgdGhlIHBhdGhzIGZvdW5kIGluIGdsb2JhbCBzZXR0aW5ncw0KCQkJaWYgKGlzX29iamVjdCgkc3ViZm9ybSkpDQoJCQl7DQoJCQkJZm9yZWFjaCAoJHN1YmZvcm0gYXMgJHZhbHVlKQ0KCQkJCXsNCgkJCQkJaWYgKGlzc2V0KCR2YWx1ZS0+b3duZXIpICYmIHN0cmxlbigkdmFsdWUtPm93bmVyKSA+IDEgJiYNCgkJCQkJCWlzc2V0KCR2YWx1ZS0+cmVwbykgJiYgc3RybGVuKCR2YWx1ZS0+cmVwbykgPiAxKQ0KCQkJCQl7DQoJCQkJCQkkdG1wID0gbmV3IFxzdGRDbGFzczsNCgkJCQkJCSR0bXAtPnRleHQgPSAkdG1wLT52YWx1ZSA9IHRyaW0oJHZhbHVlLT5vd25lcikgLiAnLycgLiB0cmltKCR2YWx1ZS0+cmVwbyk7DQoJCQkJCQkkdG1wLT5jaGVja2VkID0gZmFsc2U7DQoNCgkJCQkJCSRvcHRpb25zWyR0bXAtPnZhbHVlXSA9ICR0bXA7DQoJCQkJCX0NCgkJCQl9DQoJCQl9DQoJCX0NCg0KCQkkZXh0cmFEYXRhID0gYXJyYXkoDQoJCQknY2hlY2tlZE9wdGlvbnMnID0+IGlzX2FycmF5KCRjaGVja2VkT3B0aW9ucykgPyAkY2hlY2tlZE9wdGlvbnMgOiBleHBsb2RlKCcsJywgKHN0cmluZykgJGNoZWNrZWRPcHRpb25zKSwNCgkJCSdoYXNWYWx1ZScgICAgICAgPT4gJGhhc1ZhbHVlLA0KCQkJJ29wdGlvbnMnICAgICAgICA9PiBhcnJheV92YWx1ZXMoJG9wdGlvbnMpDQoJCSk7DQoNCgkJcmV0dXJuIGFycmF5X21lcmdlKCRkYXRhLCAkZXh0cmFEYXRhKTsNCgl9\\\"\\n\\/>\"', 1, '2023-03-07 10:23:08', '2024-03-08 06:45:05', 24, '', 1031, '7ee9f69e-1b64-45c6-90db-d0558f6e40e7', '', '', '', '', ''),
(3104, '', '', '', '', '', '', '', '', '', '', '', '', '', '', 'Super Powers Repositories (aproved) - Note', 'NOT NULL', '', 14, '\"<field\\r\\n\\ttype=\\\"note\\\"\\r\\n\\tname=\\\"note_approved_paths\\\"\\r\\n\\tlabel=\\\"Super Powers Repositories\\\"\\r\\n\\tdescription=\\\"<p>Select the <em>sub paths<\\/em> inside the <b>local path<\\/b> where you would like to add this power. The default is the core JCB path which is <b>joomla\\/super-powers<\\/b> (this can be changed in the global options)<\\/p>\\r\\n<p>To set the <b>local path<\\/b>, and to add more <em>sub paths<\\/em>, open the JCB global options, and look for the <b>super power<\\/b> tab, there you will find all the instructions needed.<\\/p>\\\"\\r\\n\\theading=\\\"h4\\\"\\r\\n\\tclass=\\\"alert alert-info\\\"\\r\\n\\tshowon=\\\"approved:1\\\"\\r\\n\\/>\"', 1, '2023-03-07 12:17:36', '2023-03-11 11:28:52', 4, '', 642, '1fae2ad3-2e58-483c-93ba-b748fc4c95ee', '', '', '', '', ''),
(3105, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'Show documentation', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"super_powers_documentation\\\"\\n\\tlabel=\\\"Documentation\\\"\\n\\tdescription=\\\"Switch to show or hide the documentation of super powers.\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"1|Show,0|Hide\\\"\\n\\tdefault=\\\"0\\\"\\n\\/>\"', 1, '2023-03-11 20:25:24', '2023-03-11 20:29:12', 3, '', 1029, 'b505dcc6-deff-40d9-8531-567c06708297', '', '', '', '', ''),
(3106, '', '', '', '', '', '', '', '', '', '', '', '', '', '', 'Not Ready Super Powers - Note', 'NOT NULL', '', 14, '\"<field\\n\\ttype=\\\"note\\\"\\n\\tname=\\\"note_not_ready_super_powers\\\"\\n\\tlabel=\\\"THIS AREA IS STILL IN DEVELOPMENT, WE WILL REMOVE THIS NOTICE WHEN ITS READY TO USE.\\\"\\n\\theading=\\\"h2\\\"\\n\\tclass=\\\"alert alert-error\\\"\\n\\/>\"', 1, '2023-03-11 20:31:22', '2023-03-11 20:31:45', 2, '', 642, 'b3f4b1c0-be20-43ab-9e83-17f6171ba89a', '', '', '', '', ''),
(3107, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Super Power Repository', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"repo\\\"\\n\\tlabel=\\\"Repo\\\"\\n\\tsize=\\\"70\\\"\\n\\tmaxlength=\\\"150\\\"\\n\\tclass=\\\"text_area span12\\\"\\n\\treadonly=\\\"false\\\"\\n\\tfilter=\\\"CMD\\\"\\n\\thint=\\\"[repo]\\\"\\n\\tautocomplete=\\\"on\\\"\\n\\/>\"', 1, '2023-03-27 12:27:41', '2023-03-27 12:33:54', 3, '', 641, 'bfc3114a-2423-4c43-8423-7dd5e3ebe351', '', '', '', '', ''),
(3108, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Super Power Repository Branch', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"branch\\\"\\n\\tlabel=\\\"Branch\\\"\\n\\tsize=\\\"70\\\"\\n\\tmaxlength=\\\"150\\\"\\n\\tdefault=\\\"default\\\"\\n\\tclass=\\\"text_area span12\\\"\\n\\treadonly=\\\"false\\\"\\n\\tfilter=\\\"CMD\\\"\\n\\thint=\\\"[branch]\\\"\\n\\tautocomplete=\\\"on\\\"\\n\\/>\"', 1, '2023-03-27 12:33:23', '2023-03-29 15:47:08', 3, '', 641, '1039b513-e52f-4a8d-898c-4cd7cbdbc239', '', '', '', '', ''),
(3109, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'Target Gitea URL', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"add_custom_gitea_url\\\"\\n\\tlabel=\\\"Target Gitea URL\\\"\\n\\tdescription=\\\"Switch to set your own Gitea url.\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"1|git.vdm.dev,2|custom.gitea\\\"\\n\\tdefault=\\\"1\\\"\\n\\/>\"', 1, '2023-03-29 14:21:21', '2023-03-30 03:21:18', 4, '', 1029, '9e0f830b-a545-42ff-96a6-efc37ac4d499', '', '', '', '', ''),
(3110, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Custom Gitea URL', 'NOT NULL', '', 27, '\"<field\\n\\ttype=\\\"url\\\"\\n\\tname=\\\"custom_gitea_url\\\"\\n\\tlabel=\\\"Gitea URL\\\"\\n\\tsize=\\\"70\\\"\\n\\tmaxlength=\\\"150\\\"\\n\\tdefault=\\\"https:\\/\\/git.vdm.dev\\\"\\n\\tdescription=\\\"Enter Gitea Address\\\"\\n\\tclass=\\\"text_area\\\"\\n\\tfilter=\\\"url\\\"\\n\\tvalidated=\\\"url\\\"\\n\\tscheme=\\\"http,https\\\"\\n\\tmessage=\\\"Error! Please add website here.\\\"\\n\\thint=\\\"https:\\/\\/git.vdm.dev\\\"\\n\\tautocomplete=\\\"on\\\"\\n\\tshowon=\\\"add_custom_gitea_url:2\\\"\\n\\/>\"', 1, '2023-03-29 15:43:30', '2023-03-30 03:15:09', 3, '', 641, 'ff14edbb-fd14-4c9e-9bd0-2072ff351531', '', '', '', '', ''),
(3111, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Super Powers Core', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"super_powers_core\\\"\\n\\tlabel=\\\"Super Powers Core\\\"\\n\\tsize=\\\"70\\\"\\n\\tmaxlength=\\\"150\\\"\\n\\tdefault=\\\"joomla\\/super-powers\\\"\\n\\tclass=\\\"text_area\\\"\\n\\tfilter=\\\"PATH\\\"\\n\\thint=\\\"joomla\\/super-powers\\\"\\n\\tautocomplete=\\\"on\\\"\\n\\tshowon=\\\"add_custom_gitea_url:2\\\"\\n\\/>\"', 1, '2023-03-29 15:46:45', '2023-03-30 03:15:24', 3, '', 641, '22db0ff5-f1a8-4da4-9f33-e4559c0a0e7e', '', '', '', '', ''),
(3112, 1, '', '', '', 'I2pmb3JtX3Rva2VuX2Noem4sIC5mdWxsLXdpZHRoICB7DQp3aWR0aDogMTAwJSAhaW1wb3J0YW50Ow0KfQ==', '', '', '', 100, '', 'VARCHAR', '', '', '', 'Custom Gitea Access Token', 'NOT NULL', '', 16, '\"<field\\n\\ttype=\\\"password\\\"\\n\\tname=\\\"custom_gitea_token\\\"\\n\\tlabel=\\\"Gitea Access Token<br \\/><small>Get token from your Gitea at: \\/user\\/settings\\/applications.<\\/small>\\\"\\n\\tsize=\\\"128\\\"\\n\\tdescription=\\\"This token is used to access private repositories as needed to get the super powers.\\\"\\n\\tmessage=\\\"Error! Please add token here.\\\"\\n\\tclass=\\\"text_area\\\"\\n\\treadonly=\\\"false\\\"\\n\\tdisabled=\\\"false\\\"\\n\\trequired=\\\"false\\\"\\n\\tfilter=\\\"STRING\\\"\\n\\thint=\\\"Gitea Access Tokens\\\"\\n\\tautocomplete=\\\"off\\\"\\n\\tshowon=\\\"add_custom_gitea_url:2\\\"\\n\\/>\"', 1, '2023-03-30 03:11:23', '2023-03-30 03:15:50', 3, '', 848, '5c3ac053-4f35-463a-b793-89125e5b3137', '', '', '', '', ''),
(3113, '', '', '', '', '', '', '', '', '', '', '', '', '', '', 'Custom Gitea URL - Note', 'NOT NULL', '', 14, '\"<field\\n\\ttype=\\\"note\\\"\\n\\tname=\\\"note_custom_gitea_url\\\"\\n\\tlabel=\\\"Decentralize Super Powers, Yea!\\\"\\n\\tdescription=\\\"<p>Each JCB system can only target one Gitea system at a time. Setting your own Gitea URL means you are decoupling from the git.vdm.dev system and will no longer be loading your super powers from the git.vdm.dev system!<\\/p>\\r\\n\\r\\n<p>This will affect the [layers:all], so JCB will not search for any Powers on the git.vdm.dev system at all.<\\/p>\\r\\n\\r\\n<p>This option is ideal for managing your own Core Super Powers and your own private Super Powers on your own, or another Gitea System, and allows you to use the Super Power integration completely independent from VDM. Our hope is that this gives you enough freedom and liberty to use our system or your own. Let\'s decentralize our systems so that we can start focusing on what we are building, and not be worried that some large conglomerate is stealing our ideas and building their empires on our hard work.<\\/p>\\\"\\n\\theading=\\\"h3\\\"\\n\\tclass=\\\"alert alert-success\\\"\\n\\tshowon=\\\"add_custom_gitea_url:2\\\"\\n\\/>\"', 1, '2023-03-30 03:22:18', '2023-03-30 03:37:16', 4, '', 642, '49911bdd-5939-4490-b542-de7302a93f84', '', '', '', '', ''),
(3114, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'Show Comments', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"show_comments\\\"\\n\\tlabel=\\\"Show Comments\\\"\\n\\tdescription=\\\"The option to load comment below the post\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"1|Yes,0|No\\\"\\n\\tdefault=\\\"0\\\"\\n\\/>\"', 1, '2023-04-05 02:55:06', '2023-04-05 21:37:17', 2, '', 1032, '1e198e82-182e-4662-917c-db258a371dfc', '', '', '', '', ''),
(3115, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'Use different colors for names', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"comments_colorful\\\"\\n\\tlabel=\\\"Use different colors for names\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"1|Yes,0|No\\\"\\n\\tdefault=\\\"0\\\"\\n\\tshowon=\\\"show_comments:1\\\"\\n\\/>\"', 1, '2023-04-05 03:43:02', '2023-04-05 21:39:39', 6, '', 1032, 'e925fad3-caed-452f-9f1f-902eff4fa103', '', '', '', '', ''),
(3116, '', '', '', '', '', '', '', '', 11, '', 'INT', '', '', '', 'Height (Telegram)', 'NOT NULL', '', 15, '\"<field\\n\\ttype=\\\"number\\\"\\n\\tname=\\\"comments_height\\\"\\n\\tlabel=\\\"Comments Height\\\"\\n\\tdescription=\\\"Use 300 for auto height. Any higher value to set custom height, since 300 is the smallest height available.\\\"\\n\\tclass=\\\"text_area\\\"\\n\\tmin=\\\"300\\\"\\n\\tmax=\\\"2000\\\"\\n\\tstep=\\\"10\\\"\\n\\tshowon=\\\"show_comments:1\\\"\\n\\/>\"', 1, '2023-04-05 03:48:13', '2023-04-05 21:39:32', 6, '', 1019, '0966c99f-e771-43f7-a411-62264a1a05fa', '', '', '', '', ''),
(3117, '', '', '', '', '', '', '', '', 11, '', 'INT', '', '', '', 'Comments limit', 'NOT NULL', '', 15, '\"<field\\n\\ttype=\\\"number\\\"\\n\\tname=\\\"comments_limit\\\"\\n\\tlabel=\\\"Comments limit\\\"\\n\\tclass=\\\"text_area\\\"\\n\\tmin=\\\"1\\\"\\n\\tmax=\\\"20\\\"\\n\\tstep=\\\"1\\\"\\n\\tshowon=\\\"show_comments:1\\\"\\n\\/>\"', 1, '2023-04-05 03:51:24', '2023-04-05 21:36:47', 4, '', 1019, '6969b925-eb1e-431e-bccf-7cc13e54bc54', '', '', '', '', ''),
(3118, '', '', '', '', '', '', '', '', '', '', '', '', '', '', 'Daily Scripture note', 'NOT NULL', '', 14, '\"<field\\n\\ttype=\\\"note\\\"\\n\\tname=\\\"daily_scripture_note\\\"\\n\\tlabel=\\\"Details\\\"\\n\\tdescription=\\\"<h5>Relevant Links:<\\/h5>\\r\\n<ul>\\r\\n<li><b>Daily scripture<\\/b>: <a href=\'https:\\/\\/git.vdm.dev\\/christian\\/daily-scripture\' target=\'_blank\'>https:\\/\\/git.vdm.dev\\/christian\\/daily-scripture<\\/a>.<\\/li>\\r\\n<li><b>Telegram channel<\\/b>: <a href=\'https:\\/\\/t.me\\/daily_scripture\' target=\'_blank\'>https:\\/\\/t.me\\/daily_scripture<\\/a>.<\\/li>\\r\\n<li><b>Module repository<\\/b>: <a href=\'https:\\/\\/git.vdm.dev\\/getBible\\/daily-scripture-module\' target=\'_blank\'>https:\\/\\/git.vdm.dev\\/getBible\\/daily-scripture-module<\\/a>.<\\/li>\\r\\n<\\/ul>\\r\\n<h5>How it works<\\/h5>\\r\\n<p>The daily scripture architecture is designed to automatically select a random verse from a collection of scripture without any human intervention. The core process of selecting a random verse can be broken down into three main steps: shuffling the verses, choosing the first verse from the shuffled list, and updating the list of used verses.<\\/p>\\r\\n<ol>\\r\\n<li>Shuffling the verses: The script first reads the entire list of verses from a file called &quot;SCRIPTURE&quot; and then shuffles this list using a random sorting algorithm. This ensures that the order of the verses in the list is entirely random and unpredictable. This randomness is crucial, as it eliminates any potential human bias or control over the selection process.<\\/li>\\r\\n<li>Choosing the first verse from the shuffled list: Once the list of verses has been randomly shuffled, the script selects the very first verse from this shuffled list. Because the order of the verses is random, the selected verse is also random and unbiased. This chosen verse is then considered the verse of the day.<\\/li>\\r\\n<li>Updating the list of used verses: To ensure that the same verse isn\'t selected again within a short period, the script maintains a separate list of recently used verses, stored in a file called &quot;SCRIPTURE_USED.&quot; After selecting the verse of the day, the script removes it from the main &quot;SCRIPTURE&quot; list and adds it to the &quot;SCRIPTURE_USED&quot; list. Additionally, to prevent the &quot;SCRIPTURE_USED&quot; list from growing indefinitely, the script retains only the last 182 used verses (approximately six months). If the &quot;SCRIPTURE_USED&quot; list grows beyond this limit, the oldest verse in the list is removed and added back to the main &quot;SCRIPTURE&quot; list, making it eligible for selection again.<\\/li>\\r\\n<\\/ol>\\r\\n<p>In summary, the random verse generation process implemented in this script is entirely automated and unbiased, relying on a random sorting algorithm to shuffle the list of verses before selecting one. The system also maintains a list of recently used verses to prevent repetition within a six-month period. This approach ensures a truly unexpected and random selection of verses, free from any human intervention or influence.<\\/p>\\\"\\n\\theading=\\\"h4\\\"\\n\\tclass=\\\"alert alert-success\\\"\\n\\/>\"', 1, '2023-04-05 23:07:34', '2023-07-26 05:04:01', 2, '', 1033, '81fb2504-7a9c-444f-b287-4489383cbe20', '', '', '', '', ''),
(3119, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'Time of Day', 'NOT NULL', '', 11, '\"<field\\n\\ttype=\\\"list\\\"\\n\\tname=\\\"time_of_day\\\"\\n\\tlabel=\\\"Time of Day\\\"\\n\\tdescription=\\\"What time of day would you like to display?\\\"\\n\\tclass=\\\"list_class\\\"\\n\\tmultiple=\\\"false\\\"\\n\\toption=\\\"1|Morning,2|Evening,3|Both\\\"\\n\\tdefault=\\\"3\\\"\\n\\/>\"', 1, '2023-04-06 03:18:41', '0000-00-00 00:00:00', 1, '', 1034, '0f749804-2b09-4d3e-9d12-e66ad3d3b761', '', '', '', '', ''),
(3120, '', '', '', '', '', '', '', '', '', '', '', '', '', '', 'Daily Light note', 'NOT NULL', '', 14, '\"<field\\n\\ttype=\\\"note\\\"\\n\\tname=\\\"daily_light_note\\\"\\n\\tlabel=\\\"Details\\\"\\n\\tdescription=\\\"<h5>Relevant Links:<\\/h5>\\r\\n<ul>\\r\\n<li><b>Daily Light<\\/b>: <a href=\'https:\\/\\/git.vdm.dev\\/christian\\/daily-light\' target=\'_blank\'>https:\\/\\/git.vdm.dev\\/christian\\/daily-light<\\/a>.<\\/li>\\r\\n<li><b>Telegram channel<\\/b>: <a href=\'https:\\/\\/t.me\\/daily_light\' target=\'_blank\'>https:\\/\\/t.me\\/daily_light<\\/a>.<\\/li>\\r\\n<li><b>Module repository<\\/b>: <a href=\'https:\\/\\/git.vdm.dev\\/getBible\\/daily-light-module\' target=\'_blank\'>https:\\/\\/git.vdm.dev\\/getBible\\/daily-light-module<\\/a>.<\\/li>\\r\\n<\\/ul>\\r\\n<h5>How it works<\\/h5>\\r\\n<p>We have a script that is designed to update a repository with daily messages called &quot;Daily Light.&quot; The script achieves this by first setting up various variables and configurations, then extracting the relevant information for the current day, and finally updating the files and pushing the changes to the repository.<\\/p>\\r\\n<p>In the first part, the script sets up the file paths, key identifiers, and date information. It establishes the script\'s directory, the Daily Light file location, and the morning and evening keys used to identify specific sections of the file. It also sets the current date based on the &quot;Africa\\/Windhoek&quot; timezone. After setting up the configurations, the script searches the Daily Light file for the current day\'s details using the \'grep\' command, which matches the date with the corresponding line of text.<\\/p>\\r\\n<p>In the second part, the script formats and extracts the relevant information from the matched line of text. It splits the line into separate sections for the morning and evening messages, as well as the respective verses for each. Next, it creates two sets of formatted text\\u2014one in HTML and the other in Markdown. These formatted texts include the morning and evening messages, verses, and a link to a Telegram channel.<\\/p>\\r\\n<p>Finally, the script writes the formatted text to four separate files\\u2014morning.html, evening.html, morning.md, and evening.md. It then creates a README.md file with both the morning and evening messages and verses, along with a link to the Telegram channel. Lastly, the script commits the changes with a git commit command, using the current date as the commit message, and pushes the changes to the repository. This ensures that the repository stays updated with the latest Daily Light details for users to access.<\\/p>\\\"\\n\\theading=\\\"h4\\\"\\n\\tclass=\\\"alert alert-success\\\"\\n\\/>\"', 1, '2023-04-06 03:27:22', '2023-07-26 05:05:44', 3, '', 1033, '5a5a56e2-6608-4478-be7b-b7b8dc41c9c8', '', '', '', '', ''),
(3121, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'Show Header', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"show_header\\\"\\n\\tlabel=\\\"Show Header\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"1|Yes,0|No\\\"\\n\\tdefault=\\\"1\\\"\\n\\tshowon=\\\"type:1\\\"\\n\\/>\"', 1, '2023-04-09 20:52:06', '2023-04-09 20:57:09', 2, '', 1032, '708a18af-b56f-4683-bf8b-f6441dd4ca3a', '', '', '', '', ''),
(3122, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'Show Name Header', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"show_name_header\\\"\\n\\tlabel=\\\"Show Name Header\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"1|Yes,0|No\\\"\\n\\tdefault=\\\"1\\\"\\n\\tshowon=\\\"type:1\\\"\\n\\/>\"', 1, '2023-04-09 20:52:37', '2023-04-09 20:57:15', 2, '', 1032, 'f8dd6bb6-7bc1-4631-8a81-5b0050b6d966', '', '', '', '', ''),
(3123, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'Show Section Header', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"show_section_header\\\"\\n\\tlabel=\\\"Show Section Header\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"1|Yes,0|No\\\"\\n\\tdefault=\\\"1\\\"\\n\\tshowon=\\\"type:1\\\"\\n\\/>\"', 1, '2023-04-09 20:53:03', '2023-04-09 20:57:40', 3, '', 1032, '82f056c9-eab4-4548-a424-ccf2a95421aa', '', '', '', '', ''),
(3124, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'Show Body', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"show_body\\\"\\n\\tlabel=\\\"Show Body\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"1|Yes,0|No\\\"\\n\\tdefault=\\\"1\\\"\\n\\tshowon=\\\"type:1\\\"\\n\\/>\"', 1, '2023-04-09 20:53:31', '2023-04-09 20:57:26', 2, '', 1032, '12e8c17d-4d30-47d9-9615-03d44baad0a3', '', '', '', '', ''),
(3125, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'Show References', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"show_references\\\"\\n\\tlabel=\\\"Show References\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"1|Yes,0|No\\\"\\n\\tdefault=\\\"1\\\"\\n\\tshowon=\\\"type:1\\\"\\n\\/>\"', 1, '2023-04-09 20:53:56', '2023-04-09 20:57:31', 3, '', 1032, 'b75467ab-7e93-41ee-9a48-1c37d86408f8', '', '', '', '', ''),
(3126, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'Show Date Footer', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"show_date_footer\\\"\\n\\tlabel=\\\"Show Date Footer\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"1|Yes,0|No\\\"\\n\\tdefault=\\\"0\\\"\\n\\tshowon=\\\"type:1\\\"\\n\\/>\"', 1, '2023-04-09 21:06:41', '2023-04-09 20:57:31', 1, '', 1032, 'd50dde04-b2ea-42f6-b557-5bbe75954afc', '', '', '', '', ''),
(3127, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Translation', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"translation\\\"\\n\\tlabel=\\\"Translation\\\"\\n\\tsize=\\\"10\\\"\\n\\tmaxlength=\\\"50\\\"\\n\\tdescription=\\\"Enter some translation\\\"\\n\\tclass=\\\"text_area\\\"\\n\\trequired=\\\"true\\\"\\n\\tfilter=\\\"STRING\\\"\\n\\tmessage=\\\"Error! Please add some translation here.\\\"\\n\\thint=\\\"King James Version\\\"\\n\\/>\"', 1, '2023-06-02 14:34:14', '0000-00-00 00:00:00', 1, '', 1035, '72fa0198-4881-4bc3-b42b-e3e32ad47665', '', '', '', '', ''),
(3128, '', '', '', '', '', '', '', '', 64, '', 'VARCHAR', '', '', '', 'Abbreviation', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"abbreviation\\\"\\n\\tlabel=\\\"Abbreviation\\\"\\n\\tsize=\\\"10\\\"\\n\\tmaxlength=\\\"50\\\"\\n\\tdescription=\\\"Enter some abbreviation\\\"\\n\\tclass=\\\"text_area\\\"\\n\\trequired=\\\"true\\\"\\n\\tfilter=\\\"STRING\\\"\\n\\tmessage=\\\"Error! Please add some abbreviation here.\\\"\\n\\thint=\\\"kjv\\\"\\n\\/>\"', 1, '2023-06-02 14:35:30', '0000-00-00 00:00:00', 1, '', 1035, 'e997452e-239b-472e-9b15-adcc91664a36', '', '', '', '', ''),
(3129, '', '', '', '', '', '', '', '', 64, '', 'VARCHAR', '', '', '', 'Library of Congress Subject Headings', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"distribution_lcsh\\\"\\n\\tlabel=\\\"Library of Congress Subject Headings\\\"\\n\\tsize=\\\"10\\\"\\n\\tmaxlength=\\\"50\\\"\\n\\tdescription=\\\"Enter some distribution lcsh\\\"\\n\\tclass=\\\"text_area\\\"\\n\\trequired=\\\"true\\\"\\n\\tfilter=\\\"STRING\\\"\\n\\tmessage=\\\"Error! Please add some distribution lcsh here.\\\"\\n\\thint=\\\"Bible. English.\\\"\\n\\/>\"', 1, '2023-06-02 14:38:26', '0000-00-00 00:00:00', 1, '', 1035, 'dee30189-a5c1-4f6f-9c5b-42065a6e2c4a', '', '', '', '', ''),
(3130, '', '', '', '', '', '', '', '', 64, '', 'VARCHAR', '', '', '', 'Distribution Version', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"distribution_version\\\"\\n\\tlabel=\\\"Distribution Version\\\"\\n\\tsize=\\\"10\\\"\\n\\tmaxlength=\\\"50\\\"\\n\\tdescription=\\\"Enter some distribution version\\\"\\n\\tclass=\\\"text_area\\\"\\n\\trequired=\\\"true\\\"\\n\\tfilter=\\\"STRING\\\"\\n\\tmessage=\\\"Error! Please add some distribution version here.\\\"\\n\\thint=\\\"1.0\\\"\\n\\/>\"', 1, '2023-06-02 14:39:14', '0000-00-00 00:00:00', 1, '', 1035, '7ad19500-912f-4dd8-8746-dd2f625df9be', '', '', '', '', ''),
(3131, '', '', '', '', '', '', '', '', 64, '', 'VARCHAR', '', '', '', 'Distribution Version Date', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"distribution_version_date\\\"\\n\\tlabel=\\\"Distribution Version Date\\\"\\n\\tsize=\\\"10\\\"\\n\\tmaxlength=\\\"50\\\"\\n\\tdescription=\\\"Enter some distribution version date\\\"\\n\\tclass=\\\"text_area\\\"\\n\\trequired=\\\"true\\\"\\n\\tfilter=\\\"STRING\\\"\\n\\tmessage=\\\"Error! Please add some distribution version date here.\\\"\\n\\thint=\\\"2002-09-05\\\"\\n\\/>\"', 1, '2023-06-02 14:42:57', '0000-00-00 00:00:00', 1, '', 1035, '43553804-abc1-4691-ad57-c9d9a502d472', '', '', '', '', ''),
(3132, '', '', '', '', '', '', '', '', 64, '', 'VARCHAR', '', '', '', 'Distribution Abbreviation', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"distribution_abbreviation\\\"\\n\\tlabel=\\\"Distribution Abbreviation\\\"\\n\\tsize=\\\"10\\\"\\n\\tmaxlength=\\\"50\\\"\\n\\tdescription=\\\"Enter some distribution abbreviation\\\"\\n\\tclass=\\\"text_area\\\"\\n\\trequired=\\\"true\\\"\\n\\tfilter=\\\"STRING\\\"\\n\\tmessage=\\\"Error! Please add some distribution abbreviation here.\\\"\\n\\thint=\\\"kjv\\\"\\n\\/>\"', 1, '2023-06-02 14:43:53', '2023-06-02 14:49:51', 2, '', 1035, '96f9d04b-fd0a-4bc0-95e0-ea569d6acc39', '', '', '', '', ''),
(3133, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Distribution Source Type', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"distribution_sourcetype\\\"\\n\\tlabel=\\\"Distribution Source Type\\\"\\n\\tsize=\\\"10\\\"\\n\\tmaxlength=\\\"50\\\"\\n\\tdescription=\\\"Enter some distribution source type\\\"\\n\\tclass=\\\"text_area\\\"\\n\\tfilter=\\\"STRING\\\"\\n\\tmessage=\\\"Error! Please add some distribution source type here.\\\"\\n\\thint=\\\"OSIS\\\"\\n\\/>\"', 1, '2023-06-02 14:45:10', '2024-01-23 05:38:38', 7, '', 1035, 'eaa07bd9-42b8-405a-8d98-09075b1df25a', '', '', '', '', ''),
(3134, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Distribution Source', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"distribution_source\\\"\\n\\tlabel=\\\"Distribution Source\\\"\\n\\tsize=\\\"20\\\"\\n\\tmaxlength=\\\"250\\\"\\n\\tdescription=\\\"Enter some distribution source\\\"\\n\\tclass=\\\"text_area\\\"\\n\\tfilter=\\\"STRING\\\"\\n\\tmessage=\\\"Error! Please add some distribution source here.\\\"\\n\\/>\"', 1, '2023-06-02 14:46:19', '2024-01-23 05:38:53', 4, '', 1035, 'a7accfe7-7350-4856-a6dc-1d4bfc3e5bec', '', '', '', '', ''),
(3135, '', '', '', '', '', '', '', '', 64, '', 'VARCHAR', '', '', '', 'Distribution Versification', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"distribution_versification\\\"\\n\\tlabel=\\\"Distribution Versification\\\"\\n\\tsize=\\\"10\\\"\\n\\tmaxlength=\\\"50\\\"\\n\\tdescription=\\\"Enter some distribution versification\\\"\\n\\tclass=\\\"text_area\\\"\\n\\tfilter=\\\"STRING\\\"\\n\\tmessage=\\\"Error! Please add some distribution versification here.\\\"\\n\\/>\"', 1, '2023-06-02 14:50:55', '2023-06-02 14:49:38', 1, '', 1035, '302bc57c-ba69-49af-b057-0df9366f5713', '', '', '', '', ''),
(3136, '', '', '', '', '', '', '', '', 64, '', 'VARCHAR', '', '', '', 'Checksum GetBible', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"sha\\\"\\n\\tlabel=\\\"Checksum\\\"\\n\\tsize=\\\"10\\\"\\n\\tmaxlength=\\\"50\\\"\\n\\tdescription=\\\"Enter some checksum sha\\\"\\n\\tclass=\\\"text_area\\\"\\n\\tfilter=\\\"ALNUM\\\"\\n\\tmessage=\\\"Error! Please add some checksum sha here.\\\"\\n\\/>\"', 1, '2023-06-02 14:52:46', '2023-06-02 14:49:38', 1, '', 1035, '9b25c783-09dd-49d5-aa2e-a6d6c8a1e86d', '', '', '', '', ''),
(3137, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Distribution About', 'NOT NULL', '', 25, '\"<field\\n\\ttype=\\\"textarea\\\"\\n\\tname=\\\"distribution_about\\\"\\n\\tlabel=\\\"Distribution About\\\"\\n\\trows=\\\"7\\\"\\n\\tcols=\\\"5\\\"\\n\\tdescription=\\\"Enter some distribution about\\\"\\n\\tmessage=\\\"Error! Please add some distribution about here.\\\"\\n\\tclass=\\\"text_area span12\\\"\\n\\tfilter=\\\"STRING\\\"\\n\\/>\"', 1, '2023-06-02 14:54:29', '2023-06-02 14:56:01', 2, '', 1035, '9b9b6e10-6c6f-4526-9437-002b129371e9', '', '', '', '', ''),
(3138, '', '', '', '', '', '', '', '', 64, '', 'VARCHAR', '', '', '', 'History Version', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"version\\\"\\n\\tlabel=\\\"Version\\\"\\n\\tsize=\\\"10\\\"\\n\\tmaxlength=\\\"50\\\"\\n\\tclass=\\\"text_area\\\"\\n\\trequired=\\\"true\\\"\\n\\tfilter=\\\"STRING\\\"\\n\\tmessage=\\\"Error! Please add some history version here.\\\"\\n\\thint=\\\"history_1.0\\\"\\n\\/>\"', 1, '2023-06-02 20:21:48', '0000-00-00 00:00:00', 1, '', 1035, '94b4581c-b16e-46e2-8460-719fab0a9d5c', '', '', '', '', ''),
(3139, '', '', '', '', '', '', '', '', 64, '', 'VARCHAR', '', '', '', 'History Version Description', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"description\\\"\\n\\tlabel=\\\"Description\\\"\\n\\tsize=\\\"10\\\"\\n\\tmaxlength=\\\"50\\\"\\n\\tclass=\\\"text_area\\\"\\n\\trequired=\\\"true\\\"\\n\\tfilter=\\\"STRING\\\"\\n\\tmessage=\\\"Error! Please add some history version description here.\\\"\\n\\thint=\\\"history version desc\\\"\\n\\/>\"', 1, '2023-06-02 20:22:47', '0000-00-00 00:00:00', 1, '', 1035, '0b96b2ae-29f7-4532-9e07-64e70f8d0546', '', '', '', '', ''),
(3140, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Distribution History', 'NOT NULL', '', 35, '\"<field\\n\\ttype=\\\"subform\\\"\\n\\tname=\\\"distribution_history\\\"\\n\\tlabel=\\\"Distribution History\\\"\\n\\tlayout=\\\"joomla.form.field.subform.repeatable-table\\\"\\n\\tmultiple=\\\"true\\\"\\n\\tbuttons=\\\"add,remove,move\\\"\\n\\tfields=\\\"3138,3139\\\"\\n\\ticon=\\\"list\\\"\\n\\tmax=\\\"50\\\"\\n\\tfilter=\\\"STRING\\\"\\n\\/>\"', 1, '2023-06-02 20:23:19', '2023-06-02 20:25:30', 3, '', 1035, '4a68d3f0-7af5-49b3-83e7-36720dc27fce', '', '', '', '', ''),
(3141, '', '', '', '', '', '', '', '', 7, '', 'INT', 2, '', '', 'Book (number)', 'NOT NULL', '', 15, '\"<field\\n\\ttype=\\\"number\\\"\\n\\tname=\\\"nr\\\"\\n\\tlabel=\\\"Number\\\"\\n\\tdescription=\\\"Select the book number\\\"\\n\\tclass=\\\"text_area\\\"\\n\\trequired=\\\"true\\\"\\n\\tmin=\\\"1\\\"\\n\\tmax=\\\"78\\\"\\n\\tstep=\\\"1\\\"\\n\\/>\"', 1, '2023-06-02 20:41:21', '2023-06-02 20:43:24', 2, '', 7, '2b9ff925-44f7-4e15-9254-90b8ea74d318', '', '', '', '', ''),
(3142, '', '', '', '', '', '', '', '', 64, '', 'VARCHAR', '', '', '', 'Encoding', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"encoding\\\"\\n\\tlabel=\\\"Encoding\\\"\\n\\tsize=\\\"10\\\"\\n\\tmaxlength=\\\"50\\\"\\n\\tdescription=\\\"Enter some encoding\\\"\\n\\tclass=\\\"text_area\\\"\\n\\tfilter=\\\"STRING\\\"\\n\\tmessage=\\\"Error! Please add some encoding here.\\\"\\n\\/>\"', 1, '2023-06-02 20:46:00', '2023-06-02 20:51:00', 3, '', 1035, '9215a5e6-3a18-43c8-90e8-0e3e49e4947a', '', '', '', '', ''),
(3143, '', '', '', '', '', '', '', '', 7, '', 'INT', 2, '', '', 'Book (book_nr)', 'NOT NULL', '', 15, '\"<field\\n\\ttype=\\\"number\\\"\\n\\tname=\\\"book_nr\\\"\\n\\tlabel=\\\"Book Number\\\"\\n\\tdescription=\\\"Select the book number\\\"\\n\\tclass=\\\"text_area\\\"\\n\\trequired=\\\"true\\\"\\n\\tmin=\\\"1\\\"\\n\\tmax=\\\"78\\\"\\n\\tstep=\\\"1\\\"\\n\\/>\"', 1, '2023-06-02 20:51:51', '2023-06-02 20:56:27', 2, '', 7, 'd48bc87e-adb2-4a64-a327-0cc6506d8617', '', '', '', '', ''),
(3144, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Show Debug', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"debug\\\"\\n\\tlabel=\\\"Debugging\\\"\\n\\tdescription=\\\"Show Debugging Information\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"1|Show,0|Hide\\\"\\n\\tdefault=\\\"0\\\"\\n\\/>\"', 1, '2023-06-23 13:19:32', '2023-06-23 13:19:57', 2, '', 1036, '40836841-4a2f-4eb8-9958-b711fc02564e', '', '', '', '', ''),
(3145, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Verse Per Line', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"verse_per_line\\\"\\n\\tlabel=\\\"Verse Per Line\\\"\\n\\tdescription=\\\"Load each Verse on its own line\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"1|Yes,0|No\\\"\\n\\tdefault=\\\"1\\\"\\n\\/>\"', 1, '2023-06-23 13:37:37', '2023-06-26 02:14:40', 2, '', 1036, 'b50ee643-88dc-4e19-8432-326a050d025a', '', '', '', '', ''),
(3146, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Show Details', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"show_details\\\"\\n\\tlabel=\\\"Show Details\\\"\\n\\tdescription=\\\"Show the details tab\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"1|Yes,0|No\\\"\\n\\tdefault=\\\"1\\\"\\n\\/>\"', 1, '2023-06-23 13:40:55', '2023-06-25 05:49:49', 3, '', 1036, 'db133f89-30c8-4b06-a900-8760eeb29ecc', '', '', '', '', ''),
(3147, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Activate Sharing', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"activate_sharing\\\"\\n\\tlabel=\\\"Activate Sharing\\\"\\n\\tdescription=\\\"Activate the option to share verses.\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"1|Yes,0|No\\\"\\n\\tdefault=\\\"0\\\"\\n\\/>\"', 1, '2023-06-23 13:42:10', '2023-07-04 08:07:10', 6, '', 1036, '47a20376-a06e-4507-8ea1-09f1cb7e975c', '', '', '', '', ''),
(3148, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Show Previous and Next Navigation', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"previous_next_navigation\\\"\\n\\tlabel=\\\"Show Previous and Next Navigation\\\"\\n\\tdescription=\\\"Show the previous and next navigation buttons\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"1|Yes,0|No\\\"\\n\\tdefault=\\\"1\\\"\\n\\/>\"', 1, '2023-06-23 13:44:38', '2023-06-23 13:51:59', 2, '', 1036, 'f5a3deb2-26a1-4bd7-a534-f987bb043d47', '', '', '', '', ''),
(3149, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Show Hash Validation', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"show_hash_validation\\\"\\n\\tlabel=\\\"Hash Validation\\\"\\n\\tdescription=\\\"Show hash validation details\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"1|Yes,0|No\\\"\\n\\tdefault=\\\"1\\\"\\n\\/>\"', 1, '2023-06-24 16:03:24', '2023-06-25 16:17:46', 2, '', 1036, '89dc5a4a-a597-4d38-b022-493ba36520f8', '', '', '', '', ''),
(3150, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Set Custom Tabs', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"set_custom_tabs\\\"\\n\\tlabel=\\\"Set Custom Tabs\\\"\\n\\tdescription=\\\"Set your own custom tabs\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"1|Yes,0|No\\\"\\n\\tdefault=\\\"0\\\"\\n\\/>\"', 1, '2023-06-24 16:04:57', '2023-06-24 21:03:59', 5, '', 1036, '21e80d40-0ab0-4650-ac06-1369f6383695', '', '', '', '', ''),
(3151, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Set Default Tab Names', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"set_default_tab_names\\\"\\n\\tlabel=\\\"Set Default Tab Names\\\"\\n\\tdescription=\\\"Activate the option to set the default tab names.\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"1|Yes,0|No\\\"\\n\\tdefault=\\\"0\\\"\\n\\/>\"', 1, '2023-06-24 16:10:51', '2023-06-23 13:51:59', 1, '', 1036, 'dd5edf5f-1fb5-45ba-826f-bfc747f38c3e', '', '', '', '', ''),
(3152, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Scripture Tab', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"scripture_tab\\\"\\n\\tlabel=\\\"Scripture Tab\\\"\\n\\tsize=\\\"10\\\"\\n\\tmaxlength=\\\"250\\\"\\n\\tdescription=\\\"The scripture tab name\\\"\\n\\tclass=\\\"text_area\\\"\\n\\tfilter=\\\"JComponentHelper::filterText\\\"\\n\\tmessage=\\\"Error! Please add some name here.\\\"\\n\\thint=\\\"Scripture\\\"\\n\\tautocomplete=\\\"on\\\"\\n\\tshowon=\\\"set_default_tab_names:1[AND]show_scripture_tab_text:1\\\"\\n\\/>\"', 1, '2023-06-24 16:42:37', '2023-06-25 05:18:07', 9, '', 1037, '473f24a3-5779-4bc1-8fee-53b7fc34b34f', '', '', '', '', ''),
(3153, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Translations Tab', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"translations_tab\\\"\\n\\tlabel=\\\"Translations Tab\\\"\\n\\tsize=\\\"10\\\"\\n\\tmaxlength=\\\"250\\\"\\n\\tdescription=\\\"The translations tab name\\\"\\n\\tclass=\\\"text_area\\\"\\n\\tfilter=\\\"JComponentHelper::filterText\\\"\\n\\tmessage=\\\"Error! Please add some name here.\\\"\\n\\thint=\\\"Translations\\\"\\n\\tautocomplete=\\\"on\\\"\\n\\tshowon=\\\"set_default_tab_names:1[AND]show_translations_tab_text:1\\\"\\n\\/>\"', 1, '2023-06-24 16:43:47', '2023-06-25 05:17:09', 5, '', 1037, '999ce408-0ae4-4630-ba21-a1dc989d48c5', '', '', '', '', ''),
(3154, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Books Tab', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"books_tab\\\"\\n\\tlabel=\\\"Books Tab\\\"\\n\\tsize=\\\"10\\\"\\n\\tmaxlength=\\\"250\\\"\\n\\tdescription=\\\"The books tab name\\\"\\n\\tclass=\\\"text_area\\\"\\n\\tfilter=\\\"JComponentHelper::filterText\\\"\\n\\tmessage=\\\"Error! Please add some name here.\\\"\\n\\thint=\\\"Books\\\"\\n\\tautocomplete=\\\"on\\\"\\n\\tshowon=\\\"set_default_tab_names:1[AND]show_books_tab_text:1\\\"\\n\\/>\"', 1, '2023-06-24 16:44:28', '2023-06-25 05:18:59', 5, '', 1037, 'fb8cd2cd-96eb-4468-a7a2-37bf8c4a0728', '', '', '', '', ''),
(3155, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Chapters Tab', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"chapters_tab\\\"\\n\\tlabel=\\\"Chapters Tab\\\"\\n\\tsize=\\\"10\\\"\\n\\tmaxlength=\\\"250\\\"\\n\\tdescription=\\\"The chapters tab name\\\"\\n\\tclass=\\\"text_area\\\"\\n\\tfilter=\\\"JComponentHelper::filterText\\\"\\n\\tmessage=\\\"Error! Please add some name here.\\\"\\n\\thint=\\\"Chapters\\\"\\n\\tautocomplete=\\\"on\\\"\\n\\tshowon=\\\"set_default_tab_names:1[AND]show_chapters_tab_text:1\\\"\\n\\/>\"', 1, '2023-06-24 16:44:58', '2023-06-25 05:19:50', 5, '', 1037, '219b37ce-cd02-4d59-a72f-f8e4a6ec4811', '', '', '', '', ''),
(3156, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Details Tab', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"details_tab\\\"\\n\\tlabel=\\\"Details Tab\\\"\\n\\tsize=\\\"10\\\"\\n\\tmaxlength=\\\"250\\\"\\n\\tdescription=\\\"The details tab name\\\"\\n\\tclass=\\\"text_area\\\"\\n\\tfilter=\\\"JComponentHelper::filterText\\\"\\n\\tmessage=\\\"Error! Please add some name here.\\\"\\n\\thint=\\\"Details\\\"\\n\\tautocomplete=\\\"on\\\"\\n\\tshowon=\\\"set_default_tab_names:1[AND]show_details:1[AND]show_details_tab_text:1\\\"\\n\\/>\"', 1, '2023-06-24 16:45:22', '2023-06-25 05:20:54', 6, '', 1037, '7b001a2c-08b3-4f1f-8486-86ed6695abde', '', '', '', '', ''),
(3157, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Tab Name', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"name\\\"\\n\\tlabel=\\\"Tab\\\"\\n\\tsize=\\\"10\\\"\\n\\tmaxlength=\\\"250\\\"\\n\\tdescription=\\\"Name\\\"\\n\\tclass=\\\"text_area\\\"\\n\\tfilter=\\\"JComponentHelper::filterText\\\"\\n\\tmessage=\\\"Error! Please add some name here.\\\"\\n\\thint=\\\"Tab Name\\\"\\n\\tautocomplete=\\\"on\\\"\\n\\/>\"', 1, '2023-06-24 17:06:09', '2023-06-25 05:11:42', 3, '', 1037, '711da1c3-2697-4584-a7c1-dea9605f1283', '', '', '', '', ''),
(3158, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Module Position', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"position\\\"\\n\\tlabel=\\\"Module\\\"\\n\\tsize=\\\"10\\\"\\n\\tmaxlength=\\\"50\\\"\\n\\tdescription=\\\"Position\\\"\\n\\tclass=\\\"text_area\\\"\\n\\tmessage=\\\"Error! Please add some position name here.\\\"\\n\\thint=\\\"ModulePosition\\\"\\n\\tautocomplete=\\\"on\\\"\\n\\/>\"', 1, '2023-06-24 17:07:11', '2023-06-24 17:04:42', 1, '', 1037, '2a8ab7ac-909f-4f0d-9ca6-77fe90137867', '', '', '', '', ''),
(3159, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Custom Tabs', 'NOT NULL', '', 35, '\"<field\\n\\ttype=\\\"subform\\\"\\n\\tname=\\\"custom_tabs\\\"\\n\\tlabel=\\\"Custom Tabs\\\"\\n\\tlayout=\\\"joomla.form.field.subform.repeatable-table\\\"\\n\\tmultiple=\\\"true\\\"\\n\\tbuttons=\\\"add,remove,move\\\"\\n\\tfields=\\\"3157,3158,3160,3161\\\"\\n\\ticon=\\\"list\\\"\\n\\tmax=\\\"5\\\"\\n\\tshowon=\\\"set_custom_tabs:1\\\"\\n\\tdisplay=\\\"config\\\"\\n\\/>\"', 1, '2023-06-24 17:09:27', '2023-07-01 18:31:30', 6, '', 1037, 'e53f7854-9370-4cb2-8d14-bfff77dbefe3', '', '', '', '', ''),
(3160, '', '', '', '', '', '', '', '', 255, '', 'CHAR', '', '', '', 'Module Separator', 'NOT NULL', '', 11, '\"<field\\n\\ttype=\\\"list\\\"\\n\\tname=\\\"separator\\\"\\n\\tlabel=\\\"Separator\\\"\\n\\tclass=\\\"list_class\\\"\\n\\toption=\\\"none,div,list,array,break\\\"\\n\\tdefault=\\\"div\\\"\\n\\/>\"', 1, '2023-06-24 20:21:55', '2023-06-24 20:23:46', 2, '', 1038, 'f08c5af3-0ad8-4293-b27e-f44b14f276df', '', '', '', '', ''),
(3161, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Module Class', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"class\\\"\\n\\tlabel=\\\"Class\\\"\\n\\tsize=\\\"50\\\"\\n\\tmaxlength=\\\"150\\\"\\n\\tclass=\\\"text_area\\\"\\n\\tfilter=\\\"STRING\\\"\\n\\tmessage=\\\"Error! Please add some Class here.\\\"\\n\\thint=\\\"Blank for none\\\"\\n\\tautocomplete=\\\"on\\\"\\n\\/>\"', 1, '2023-06-24 20:22:41', '2023-08-09 18:46:41', 4, '', 1038, '09916c0a-86cf-409a-bb05-74d6dec14624', '', '', '', '', ''),
(3162, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Set Custom Icons', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"custom_icons\\\"\\n\\tlabel=\\\"Set Custom Icons\\\"\\n\\tdescription=\\\"Use this option to set custom icons found at https:\\/\\/getuikit.com\\/docs\\/icon\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"1|Yes,0|No\\\"\\n\\tdefault=\\\"0\\\"\\n\\/>\"', 1, '2023-06-25 04:49:04', '2023-06-23 13:51:59', 1, '', 1036, 'fdcb9db4-2be8-465d-b7b1-fc9017c9c04d', '', '', '', '', ''),
(3163, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Show Scripture Icon', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"show_scripture_icon\\\"\\n\\tlabel=\\\"Show Scripture Icon\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"1|Yes,0|No\\\"\\n\\tdefault=\\\"1\\\"\\n\\/>\"', 1, '2023-06-25 04:57:46', '2023-06-25 05:05:56', 2, '', 1036, '4fba11db-ac86-4bc7-9696-39055be23644', '', '', '', '', ''),
(3164, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Scripture Icon', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"scripture_icon\\\"\\n\\tlabel=\\\"Scripture Icon\\\"\\n\\tsize=\\\"10\\\"\\n\\tmaxlength=\\\"50\\\"\\n\\tdescription=\\\"Set the scripture custom icon\\\"\\n\\tclass=\\\"text_area\\\"\\n\\tfilter=\\\"CMD\\\"\\n\\tmessage=\\\"Error! Please add some icon name here.\\\"\\n\\thint=\\\"heart\\\"\\n\\tautocomplete=\\\"on\\\"\\n\\tshowon=\\\"show_scripture_icon:1[AND]custom_icons:1\\\"\\n\\/>\"', 1, '2023-06-25 05:04:20', '2023-06-25 05:52:21', 3, '', 1037, '2f54a976-6062-49ce-a259-fe55f89082a4', '', '', '', '', ''),
(3165, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Show Translations Icon', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"show_translations_icon\\\"\\n\\tlabel=\\\"Show Translations Icon\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"1|Yes,0|No\\\"\\n\\tdefault=\\\"1\\\"\\n\\/>\"', 1, '2023-06-25 05:06:47', '2023-06-25 05:05:56', 1, '', 1036, '653f143f-e048-4bce-8596-906c1fce76ca', '', '', '', '', ''),
(3166, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Translations Icon', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"translations_icon\\\"\\n\\tlabel=\\\"Translations Icon\\\"\\n\\tsize=\\\"10\\\"\\n\\tmaxlength=\\\"50\\\"\\n\\tdescription=\\\"Set the translations custom icon\\\"\\n\\tclass=\\\"text_area\\\"\\n\\tfilter=\\\"CMD\\\"\\n\\tmessage=\\\"Error! Please add some icon name here.\\\"\\n\\thint=\\\"world\\\"\\n\\tautocomplete=\\\"on\\\"\\n\\tshowon=\\\"show_translations_icon:1[AND]custom_icons:1\\\"\\n\\/>\"', 1, '2023-06-25 05:07:10', '2023-06-25 05:52:05', 2, '', 1037, '2415bc9f-49ad-42d3-865b-9ab9d23f3821', '', '', '', '', ''),
(3167, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Show Books Icon', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"show_books_icon\\\"\\n\\tlabel=\\\"Show Books Icon\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"1|Yes,0|No\\\"\\n\\tdefault=\\\"1\\\"\\n\\/>\"', 1, '2023-06-25 05:08:00', '2023-06-25 05:05:56', 1, '', 1036, 'fe4f5b94-8339-4c60-a16c-108fa799ab7c', '', '', '', '', ''),
(3168, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Books Icon', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"books_icon\\\"\\n\\tlabel=\\\"Books Icon\\\"\\n\\tsize=\\\"10\\\"\\n\\tmaxlength=\\\"50\\\"\\n\\tdescription=\\\"Set the books custom icon\\\"\\n\\tclass=\\\"text_area\\\"\\n\\tfilter=\\\"CMD\\\"\\n\\tmessage=\\\"Error! Please add some icon name here.\\\"\\n\\thint=\\\"album\\\"\\n\\tautocomplete=\\\"on\\\"\\n\\tshowon=\\\"show_books_icon:1[AND]custom_icons:1\\\"\\n\\/>\"', 1, '2023-06-25 05:08:08', '2023-06-25 05:51:54', 2, '', 1037, 'e5c5d84c-64d5-43d2-9f95-43c07b1ed5e0', '', '', '', '', ''),
(3169, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Show Chapters Icon', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"show_chapters_icon\\\"\\n\\tlabel=\\\"Show Chapters Icon\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"1|Yes,0|No\\\"\\n\\tdefault=\\\"1\\\"\\n\\/>\"', 1, '2023-06-25 05:08:41', '2023-06-25 05:05:56', 1, '', 1036, 'd3303b9b-47b6-4cec-87d7-8a7c4380f328', '', '', '', '', ''),
(3170, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Chapters Icon', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"chapters_icon\\\"\\n\\tlabel=\\\"Chapters Icon\\\"\\n\\tsize=\\\"10\\\"\\n\\tmaxlength=\\\"50\\\"\\n\\tdescription=\\\"Set the chapters custom icon\\\"\\n\\tclass=\\\"text_area\\\"\\n\\tfilter=\\\"CMD\\\"\\n\\tmessage=\\\"Error! Please add some icon name here.\\\"\\n\\thint=\\\"grid\\\"\\n\\tautocomplete=\\\"on\\\"\\n\\tshowon=\\\"show_chapters_icon:1[AND]custom_icons:1\\\"\\n\\/>\"', 1, '2023-06-25 05:08:47', '2023-06-25 05:51:37', 2, '', 1037, '82e86be3-54c1-4144-8c35-1b59ec89f02b', '', '', '', '', ''),
(3171, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Show Details Icon', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"show_details_icon\\\"\\n\\tlabel=\\\"Show Details Icon\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"1|Yes,0|No\\\"\\n\\tdefault=\\\"1\\\"\\n\\tshowon=\\\"show_details:1\\\"\\n\\/>\"', 1, '2023-06-25 05:10:13', '2023-06-25 05:11:54', 2, '', 1036, '4bba26e0-c346-455b-a2e6-df95774d919e', '', '', '', '', ''),
(3172, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Details Icon', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"details_icon\\\"\\n\\tlabel=\\\"Details Icon\\\"\\n\\tsize=\\\"10\\\"\\n\\tmaxlength=\\\"50\\\"\\n\\tdescription=\\\"Set the details custom icon\\\"\\n\\tclass=\\\"text_area\\\"\\n\\tfilter=\\\"CMD\\\"\\n\\tmessage=\\\"Error! Please add some icon name here.\\\"\\n\\thint=\\\"info\\\"\\n\\tautocomplete=\\\"on\\\"\\n\\tshowon=\\\"show_details:1[AND]show_details_icon:1[AND]custom_icons:1\\\"\\n\\/>\"', 1, '2023-06-25 05:10:19', '2023-06-25 05:52:47', 2, '', 1037, '30d6bfe8-ea7e-4eab-9f71-c6ec1f63c4fa', '', '', '', '', ''),
(3173, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Show Translations Tab Text', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"show_translations_tab_text\\\"\\n\\tlabel=\\\"Show Translations Tab Text\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"1|Yes,0|No\\\"\\n\\tdefault=\\\"1\\\"\\n\\/>\"', 1, '2023-06-25 05:16:29', '2023-06-25 05:05:56', 1, '', 1036, '92242cbd-1343-444b-b736-1b62481b3c18', '', '', '', '', ''),
(3174, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Show Scripture Tab Text', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"show_scripture_tab_text\\\"\\n\\tlabel=\\\"Show Scripture Tab Text\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"1|Yes,0|No\\\"\\n\\tdefault=\\\"1\\\"\\n\\/>\"', 1, '2023-06-25 05:17:47', '2023-06-25 05:05:56', 1, '', 1036, 'dc584bf9-d4bc-45fc-8eb7-a196e77f8a75', '', '', '', '', ''),
(3175, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Show Books Tab Text', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"show_books_tab_text\\\"\\n\\tlabel=\\\"Show Books Tab Text\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"1|Yes,0|No\\\"\\n\\tdefault=\\\"1\\\"\\n\\/>\"', 1, '2023-06-25 05:18:31', '2023-06-25 05:05:56', 1, '', 1036, '1f2b4c93-b857-4e58-8cab-a663f3ee06af', '', '', '', '', ''),
(3176, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Show Chapters Tab Text', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"show_chapters_tab_text\\\"\\n\\tlabel=\\\"Show Chapters Tab Text\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"1|Yes,0|No\\\"\\n\\tdefault=\\\"1\\\"\\n\\/>\"', 1, '2023-06-25 05:19:29', '2023-06-25 05:05:56', 1, '', 1036, '55337a7a-6e42-4ad4-a9ca-6047657ba718', '', '', '', '', ''),
(3177, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Show Details Tab Text', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"show_details_tab_text\\\"\\n\\tlabel=\\\"Show Details Tab Text\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"1|Yes,0|No\\\"\\n\\tdefault=\\\"1\\\"\\n\\tshowon=\\\"show_details:1\\\"\\n\\/>\"', 1, '2023-06-25 05:20:16', '2023-06-25 05:49:56', 3, '', 1036, '9ae262ae-21e1-495e-90e1-25e0e794694f', '', '', '', '', ''),
(3178, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Show Settings Tab Text', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"show_settings_tab_text\\\"\\n\\tlabel=\\\"Show Settings Tab Text\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"1|Yes,0|No\\\"\\n\\tdefault=\\\"1\\\"\\n\\tshowon=\\\"show_settings:1\\\"\\n\\/>\"', 1, '2023-06-25 16:14:55', '2023-06-25 16:19:16', 2, '', 1036, 'dbf01c51-f155-4f61-afa8-1eff392d2c00', '', '', '', '', ''),
(3179, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Settings Icon', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"settings_icon\\\"\\n\\tlabel=\\\"Settings Icon\\\"\\n\\tsize=\\\"10\\\"\\n\\tmaxlength=\\\"50\\\"\\n\\tdescription=\\\"Set the settings custom icon\\\"\\n\\tclass=\\\"text_area\\\"\\n\\tfilter=\\\"CMD\\\"\\n\\tmessage=\\\"Error! Please add some icon name here.\\\"\\n\\thint=\\\"settings\\\"\\n\\tautocomplete=\\\"on\\\"\\n\\tshowon=\\\"show_settings:1[AND]show_settings_icon:1[AND]custom_icons:1\\\"\\n\\/>\"', 1, '2023-06-25 16:16:07', '2023-06-25 16:19:08', 2, '', 1037, 'd94e8964-ca43-455c-a991-98e20e721f42', '', '', '', '', ''),
(3180, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Show Settings Icon', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"show_settings_icon\\\"\\n\\tlabel=\\\"Show Settings Icon\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"1|Yes,0|No\\\"\\n\\tdefault=\\\"1\\\"\\n\\tshowon=\\\"show_settings:1\\\"\\n\\/>\"', 1, '2023-06-25 16:16:25', '2023-06-25 16:19:00', 2, '', 1036, 'b265bd67-4cda-4ccb-bf4e-09f20a91bd72', '', '', '', '', ''),
(3181, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Settings Tab', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"settings_tab\\\"\\n\\tlabel=\\\"Settings Tab\\\"\\n\\tsize=\\\"10\\\"\\n\\tmaxlength=\\\"250\\\"\\n\\tdescription=\\\"The settings tab name\\\"\\n\\tclass=\\\"text_area\\\"\\n\\tfilter=\\\"JComponentHelper::filterText\\\"\\n\\tmessage=\\\"Error! Please add some name here.\\\"\\n\\thint=\\\"Settings\\\"\\n\\tautocomplete=\\\"on\\\"\\n\\tshowon=\\\"set_default_tab_names:1[AND]show_settings:1[AND]show_settings_tab_text:1\\\"\\n\\/>\"', 1, '2023-06-25 16:17:19', '2023-06-25 16:18:52', 2, '', 1037, '76b604b9-ac53-446c-8ea3-29a2a710f338', '', '', '', '', ''),
(3182, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Show Settings', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"show_settings\\\"\\n\\tlabel=\\\"Show Settings\\\"\\n\\tdescription=\\\"Show the settings tab\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"1|Yes,0|No\\\"\\n\\tdefault=\\\"0\\\"\\n\\/>\"', 1, '2023-06-25 16:18:24', '2023-06-25 16:18:29', 2, '', 1036, 'b2881336-3f2f-4e89-8243-eedec10f3f83', '', '', '', '', ''),
(3183, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Show Translations Card', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"show_translations_card\\\"\\n\\tlabel=\\\"Show Translations Card\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"1|Yes,0|No\\\"\\n\\tdefault=\\\"1\\\"\\n\\/>\"', 1, '2023-06-25 16:58:50', '2023-06-25 17:00:43', 2, '', 1036, '72fdf7f4-86ad-4745-8a2a-9d76a7e1e273', '', '', '', '', ''),
(3184, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Show Scripture Card', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"show_scripture_card\\\"\\n\\tlabel=\\\"Show Scripture Card\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"1|Yes,0|No\\\"\\n\\tdefault=\\\"1\\\"\\n\\/>\"', 1, '2023-06-25 16:59:03', '2023-06-25 17:00:45', 2, '', 1036, '6347b9d7-71b3-42fe-9d8c-0249cf928de7', '', '', '', '', ''),
(3185, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Show Books Card', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"show_books_card\\\"\\n\\tlabel=\\\"Show Books Card\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"1|Yes,0|No\\\"\\n\\tdefault=\\\"1\\\"\\n\\/>\"', 1, '2023-06-25 16:59:16', '2023-06-25 17:06:53', 3, '', 1036, 'f016a51e-ae46-4690-8728-14c0367a86bc', '', '', '', '', ''),
(3186, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Show Chapters Card', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"show_chapters_card\\\"\\n\\tlabel=\\\"Show Chapters Card\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"1|Yes,0|No\\\"\\n\\tdefault=\\\"1\\\"\\n\\/>\"', 1, '2023-06-25 16:59:26', '2023-06-25 17:07:31', 3, '', 1036, '551714c4-e62d-406e-8605-3b2837b483f5', '', '', '', '', ''),
(3187, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Show Details Card', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"show_details_card\\\"\\n\\tlabel=\\\"Show Details Card\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"1|Yes,0|No\\\"\\n\\tdefault=\\\"1\\\"\\n\\tshowon=\\\"show_details:1\\\"\\n\\/>\"', 1, '2023-06-25 16:59:46', '2023-06-25 17:08:20', 3, '', 1036, 'd5f9c67b-6d12-4f34-9200-1b199439a477', '', '', '', '', ''),
(3188, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Show Settings Card', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"show_settings_card\\\"\\n\\tlabel=\\\"Show Settings Card\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"1|Yes,0|No\\\"\\n\\tdefault=\\\"1\\\"\\n\\tshowon=\\\"show_settings:1\\\"\\n\\/>\"', 1, '2023-06-25 16:59:57', '2023-06-25 17:08:58', 3, '', 1036, 'd8e2aaee-748a-4ee0-802f-b5d32799f201', '', '', '', '', ''),
(3189, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Show Custom Tabs Card', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"show_custom_tabs_card\\\"\\n\\tlabel=\\\"Show Custom Tabs Card\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"1|Yes,0|No\\\"\\n\\tdefault=\\\"1\\\"\\n\\tshowon=\\\"set_custom_tabs:1\\\"\\n\\/>\"', 1, '2023-06-25 17:02:39', '2023-06-25 17:10:02', 2, '', 1036, '7c4516c4-7416-4d23-9cb9-c3ab7fc50166', '', '', '', '', ''),
(3190, '', '', '', '', '', '', '', '', 255, '', 'CHAR', '', '', '', 'Translations Card Style', 'NOT NULL', '', 11, '\"<field\\n\\ttype=\\\"list\\\"\\n\\tname=\\\"translations_card_style\\\"\\n\\tlabel=\\\"Translations Card Style\\\"\\n\\tclass=\\\"list_class\\\"\\n\\toption=\\\"default,primary,secondary\\\"\\n\\tdefault=\\\"default\\\"\\n\\tshowon=\\\"show_translations_card:1\\\"\\n\\/>\"', 1, '2023-06-25 17:05:15', '2023-06-24 20:23:46', 1, '', 1038, '5b45dbd3-ea2b-456c-ac8a-33fe688d49a8', '', '', '', '', ''),
(3191, '', '', '', '', '', '', '', '', 255, '', 'CHAR', '', '', '', 'Scripture Card Style', 'NOT NULL', '', 11, '\"<field\\n\\ttype=\\\"list\\\"\\n\\tname=\\\"scripture_card_style\\\"\\n\\tlabel=\\\"Scripture Card Style\\\"\\n\\tclass=\\\"list_class\\\"\\n\\toption=\\\"default,primary,secondary\\\"\\n\\tdefault=\\\"default\\\"\\n\\tshowon=\\\"show_scripture_card:1\\\"\\n\\/>\"', 1, '2023-06-25 17:06:08', '2023-06-25 17:06:24', 2, '', 1038, 'cbd8e397-66ab-47f3-853b-5ecd136f9e01', '', '', '', '', ''),
(3192, '', '', '', '', '', '', '', '', 255, '', 'CHAR', '', '', '', 'Books Card Style', 'NOT NULL', '', 11, '\"<field\\n\\ttype=\\\"list\\\"\\n\\tname=\\\"books_card_style\\\"\\n\\tlabel=\\\"Books Card Style\\\"\\n\\tclass=\\\"list_class\\\"\\n\\toption=\\\"default,primary,secondary\\\"\\n\\tdefault=\\\"default\\\"\\n\\tshowon=\\\"show_books_card:1\\\"\\n\\/>\"', 1, '2023-06-25 17:06:49', '2023-06-25 17:06:24', 1, '', 1038, 'fa60a9e4-0324-4092-9e24-fc5fd1174180', '', '', '', '', ''),
(3193, '', '', '', '', '', '', '', '', 255, '', 'CHAR', '', '', '', 'Chapters Card Style', 'NOT NULL', '', 11, '\"<field\\n\\ttype=\\\"list\\\"\\n\\tname=\\\"chapters_card_style\\\"\\n\\tlabel=\\\"Chapters Card Style\\\"\\n\\tclass=\\\"list_class\\\"\\n\\toption=\\\"default,primary,secondary\\\"\\n\\tdefault=\\\"default\\\"\\n\\tshowon=\\\"show_chapters_card:1\\\"\\n\\/>\"', 1, '2023-06-25 17:07:19', '2023-06-25 17:06:24', 1, '', 1038, '0a7b8ff1-678a-4615-8bd7-78a8e985c812', '', '', '', '', ''),
(3194, '', '', '', '', '', '', '', '', 255, '', 'CHAR', '', '', '', 'Details Card Style', 'NOT NULL', '', 11, '\"<field\\n\\ttype=\\\"list\\\"\\n\\tname=\\\"details_card_style\\\"\\n\\tlabel=\\\"Details Card Style\\\"\\n\\tclass=\\\"list_class\\\"\\n\\toption=\\\"default,primary,secondary\\\"\\n\\tdefault=\\\"default\\\"\\n\\tshowon=\\\"show_details_card:1[AND]show_details:1\\\"\\n\\/>\"', 1, '2023-06-25 17:08:15', '2023-06-25 17:06:24', 1, '', 1038, 'ead9ddd1-f371-4384-9e84-1f5bc3e6a560', '', '', '', '', ''),
(3195, '', '', '', '', '', '', '', '', 255, '', 'CHAR', '', '', '', 'Settings Card Style', 'NOT NULL', '', 11, '\"<field\\n\\ttype=\\\"list\\\"\\n\\tname=\\\"settings_card_style\\\"\\n\\tlabel=\\\"Settings Card Style\\\"\\n\\tclass=\\\"list_class\\\"\\n\\toption=\\\"default,primary,secondary\\\"\\n\\tdefault=\\\"default\\\"\\n\\tshowon=\\\"show_settings_card:1[AND]show_settings:1\\\"\\n\\/>\"', 1, '2023-06-25 17:08:53', '2023-06-25 17:06:24', 1, '', 1038, '10696365-206e-4f90-8074-fa4f4cfccf15', '', '', '', '', ''),
(3196, '', '', '', '', '', '', '', '', 255, '', 'CHAR', '', '', '', 'Custom Tabs Card Style', 'NOT NULL', '', 11, '\"<field\\n\\ttype=\\\"list\\\"\\n\\tname=\\\"custom_tabs_card_style\\\"\\n\\tlabel=\\\"Custom Tabs Card Style\\\"\\n\\tclass=\\\"list_class\\\"\\n\\toption=\\\"default,primary,secondary\\\"\\n\\tdefault=\\\"default\\\"\\n\\tshowon=\\\"show_custom_tabs_card:1[AND]set_custom_tabs:1\\\"\\n\\/>\"', 1, '2023-06-25 17:09:44', '2023-06-25 17:09:57', 2, '', 1038, '5cdee9f7-d891-4264-8555-83e838ef2182', '', '', '', '', ''),
(3197, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Show API Link', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"show_api_link\\\"\\n\\tlabel=\\\"API Link\\\"\\n\\tdescription=\\\"Show API link\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"1|Yes,0|No\\\"\\n\\tdefault=\\\"1\\\"\\n\\/>\"', 1, '2023-06-25 23:33:06', '2023-06-25 16:17:46', 1, '', 1036, 'c8279789-c065-4304-b55d-afb839a60e3d', '', '', '', '', ''),
(3198, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Show GetBible Link', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"show_getbible_link\\\"\\n\\tlabel=\\\"GetBible Link\\\"\\n\\tdescription=\\\"Show GetBible link\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"1|Yes,0|No\\\"\\n\\tdefault=\\\"1\\\"\\n\\/>\"', 1, '2023-06-25 23:33:38', '2023-06-25 16:17:46', 1, '', 1036, '7caae267-df3e-4655-99db-b17f183db96e', '', '', '', '', ''),
(3199, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Show GetBible Logo', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"show_getbible_logo\\\"\\n\\tlabel=\\\"GetBible Logo\\\"\\n\\tdescription=\\\"Show GetBible Logo\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"1|Yes,0|No\\\"\\n\\tdefault=\\\"1\\\"\\n\\/>\"', 1, '2023-06-26 00:05:07', '2023-06-26 00:05:56', 3, '', 1036, 'a4419cdf-c4fe-4144-bf8d-e4b874b534d9', '', '', '', '', ''),
(3200, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Show Top Menu', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"show_top_menu\\\"\\n\\tlabel=\\\"Show Top Menu\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"1|Yes,0|No\\\"\\n\\tdefault=\\\"1\\\"\\n\\tshowon=\\\"show_bottom_menu:0\\\"\\n\\/>\"', 1, '2023-06-26 01:06:44', '2023-07-18 05:12:40', 2, '', 1036, 'ef185107-8a4f-4ff8-b1a2-558e0c797016', '', '', '', '', ''),
(3201, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Show Bottom Menu', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"show_bottom_menu\\\"\\n\\tlabel=\\\"Show Bottom Menu\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"1|Yes,0|No\\\"\\n\\tdefault=\\\"0\\\"\\n\\tshowon=\\\"show_top_menu:0\\\"\\n\\/>\"', 1, '2023-06-26 01:07:17', '2023-07-18 05:11:26', 3, '', 1036, 'fd703e3e-a6a6-4eaa-b246-8dd4be3f38ab', '', '', '', '', ''),
(3202, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Bottom Menu Type', 'NOT NULL', '', 11, '\"<field\\n\\ttype=\\\"list\\\"\\n\\tname=\\\"bottom_menu_type\\\"\\n\\tlabel=\\\"Bottom Menu Type\\\"\\n\\tclass=\\\"list_class\\\"\\n\\tmultiple=\\\"false\\\"\\n\\toption=\\\"1|subnav-pill,2|tabs\\\"\\n\\tdefault=\\\"1\\\"\\n\\tshowon=\\\"show_bottom_menu:1[AND]show_top_menu:0\\\"\\n\\/>\"', 1, '2023-06-26 01:27:50', '2023-07-18 05:11:43', 6, '', 1036, '8e4be4e0-1743-426c-9dc7-dc4bfeace220', '', '', '', '', ''),
(3203, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Top Menu Type', 'NOT NULL', '', 11, '\"<field\\n\\ttype=\\\"list\\\"\\n\\tname=\\\"top_menu_type\\\"\\n\\tlabel=\\\"Top Menu Type\\\"\\n\\tclass=\\\"list_class\\\"\\n\\tmultiple=\\\"false\\\"\\n\\toption=\\\"1|subnav-pill,2|tabs\\\"\\n\\tdefault=\\\"1\\\"\\n\\tshowon=\\\"show_top_menu:1[AND]show_bottom_menu:0\\\"\\n\\/>\"', 1, '2023-06-26 01:31:24', '2023-07-18 05:12:58', 4, '', 1036, 'e8eedbb4-3bcd-4a0d-9f7c-ba1cb56bf4e5', '', '', '', '', ''),
(3204, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'Show Header (getBible - App)', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"show_header\\\"\\n\\tlabel=\\\"Show Header\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"1|Yes,0|No\\\"\\n\\tdefault=\\\"1\\\"\\n\\/>\"', 1, '2023-06-26 02:20:20', '2023-06-29 07:13:26', 3, '', 1032, '4cb1e35b-9b6a-4396-bdd9-94e3944dedb2', '', '', '', '', ''),
(3205, '', '', '', '', '', '', '', '', 255, '', 'CHAR', '', '', '', 'Verse Layout Share', 'NOT NULL', '', 11, '\"<field\\n\\ttype=\\\"list\\\"\\n\\tname=\\\"verse_layout_share\\\"\\n\\tlabel=\\\"Verse Layout Share\\\"\\n\\tclass=\\\"list_class\\\"\\n\\toption=\\\"1|Paragraph,2|Per Line\\\"\\n\\tdefault=\\\"1\\\"\\n\\tshowon=\\\"activate_sharing:1\\\"\\n\\/>\"', 1, '2023-06-27 03:00:53', '2023-06-27 03:14:59', 4, '', 1038, 'dd08ce12-9082-4590-8d5f-f1f8df8a2399', '', '', '', '', ''),
(3206, '', '', '', '', '', '', '', '', 255, '', 'CHAR', '', '', '', 'Verse Number Share', 'NOT NULL', '', 11, '\"<field\\n\\ttype=\\\"list\\\"\\n\\tname=\\\"verse_number_share\\\"\\n\\tlabel=\\\"Verse Number Share\\\"\\n\\tclass=\\\"list_class\\\"\\n\\toption=\\\"1|Show,2|Hide\\\"\\n\\tdefault=\\\"1\\\"\\n\\tshowon=\\\"activate_sharing:1\\\"\\n\\/>\"', 1, '2023-06-27 03:05:30', '2023-06-27 03:12:30', 4, '', 1038, '7cc816ce-321d-4ef3-a993-db838f694ca0', '', '', '', '', ''),
(3207, '', '', '', '', '', '', '', '', 255, '', 'CHAR', '', '', '', 'Type Translation Share', 'NOT NULL', '', 11, '\"<field\\n\\ttype=\\\"list\\\"\\n\\tname=\\\"type_translation_share\\\"\\n\\tlabel=\\\"Type Translation Share\\\"\\n\\tclass=\\\"list_class\\\"\\n\\toption=\\\"1|None,2|Abbreviation,3|Name\\\"\\n\\tdefault=\\\"2\\\"\\n\\tshowon=\\\"activate_sharing:1\\\"\\n\\/>\"', 1, '2023-06-27 03:07:42', '2023-06-27 03:17:53', 4, '', 1038, '22bb08cf-da15-446d-ad47-312dcc5fcc28', '', '', '', '', ''),
(3208, '', '', '', '', '', '', '', '', 255, '', 'CHAR', '', '', '', 'Local Link Share', 'NOT NULL', '', 11, '\"<field\\n\\ttype=\\\"list\\\"\\n\\tname=\\\"local_link_share\\\"\\n\\tlabel=\\\"Local Link Share\\\"\\n\\tclass=\\\"list_class\\\"\\n\\toption=\\\"1|Add,2|Remove\\\"\\n\\tdefault=\\\"1\\\"\\n\\tshowon=\\\"activate_sharing:1\\\"\\n\\/>\"', 1, '2023-06-27 03:09:01', '2023-06-27 03:14:09', 3, '', 1038, '48ba9c2b-a29a-423e-952a-c8d3c08f93ec', '', '', '', '', ''),
(3209, '', '', '', '', '', '', '', '', 255, '', 'CHAR', '', '', '', 'Text Reference Share', 'NOT NULL', '', 11, '\"<field\\n\\ttype=\\\"list\\\"\\n\\tname=\\\"text_reference_share\\\"\\n\\tlabel=\\\"Text Reference Share\\\"\\n\\tclass=\\\"list_class\\\"\\n\\toption=\\\"1|None,2|Top,3|Bottom\\\"\\n\\tdefault=\\\"3\\\"\\n\\tshowon=\\\"activate_sharing:1\\\"\\n\\/>\"', 1, '2023-06-27 03:13:37', '2023-06-27 03:11:55', 1, '', 1038, '126bb376-1450-4ec6-9a1c-e748d1ba14db', '', '', '', '', ''),
(3210, '', '', '', '', '', '', '', '', 255, '', 'CHAR', '', '', '', 'Default Format Share', 'NOT NULL', '', 11, '\"<field\\n\\ttype=\\\"list\\\"\\n\\tname=\\\"default_format_share\\\"\\n\\tlabel=\\\"Default Format Share\\\"\\n\\tclass=\\\"list_class\\\"\\n\\toption=\\\"1|Plain Text,2|Markdown,3|HTML\\\"\\n\\tdefault=\\\"1\\\"\\n\\tshowon=\\\"activate_sharing:1\\\"\\n\\/>\"', 1, '2023-06-27 03:19:28', '2023-06-27 03:19:37', 2, '', 1038, 'c17cd58e-fc98-4a59-b425-1c4d10c6f85a', '', '', '', '', ''),
(3211, '', '', '', '', '', '', '', '', '', '', '', '', '', '', 'Active Sharing Note', 'NOT NULL', '', 14, '\"<field\\n\\ttype=\\\"note\\\"\\n\\tname=\\\"active_sharing_note\\\"\\n\\tlabel=\\\"Default Advance Options\\\"\\n\\tdescription=\\\"We cache the user selection, which means that these settings only form the default advance options for new visitors, or for those who clear their cache.\\\"\\n\\theading=\\\"h5\\\"\\n\\tclass=\\\"alert alert-info\\\"\\n\\tshowon=\\\"activate_sharing:1\\\"\\n\\/>\"', 1, '2023-06-27 03:56:01', '0000-00-00 00:00:00', 1, '', 1039, '5ea9ca3b-8d4b-4d5e-8d93-60f64ceaacb2', '', '', '', '', ''),
(3212, '', '', '', '', '', '', '', '', 'Other', 36, 'VARCHAR', 2, '', '', 'Linker (access = 0)', 'NOT NULL', '', 6, '\"<field\\n\\ttype=\\\"linkers\\\"\\n\\tname=\\\"linker\\\"\\n\\tlabel=\\\"Linker\\\"\\n\\tdescription=\\\"Globally Unique Linker\\\"\\n\\tclass=\\\"list_class\\\"\\n\\tmultiple=\\\"false\\\"\\n\\trequired=\\\"false\\\"\\n\\tvalidate=\\\"guid\\\"\\n\\tshowon=\\\"access:0\\\"\\n\\textends=\\\"list\\\"\\n\\tbutton=\\\"true\\\"\\n\\ttable=\\\"#__###component###_linker\\\"\\n\\tcomponent=\\\"com_###component###\\\"\\n\\tview=\\\"linker\\\"\\n\\tviews=\\\"linkers\\\"\\n\\tvalue_field=\\\"name\\\"\\n\\tkey_field=\\\"guid\\\"\\n\\tprime_php=\\\"1\\\"\\n\\ttype_php_1=\\\"__.o0=base64=Oo.__Ly8gR2V0IHRoZSB1c2VyIG9iamVjdC4NCgkJJHVzZXIgPSBKRmFjdG9yeTo6Z2V0VXNlcigpOw0KCQkvLyBHZXQgdGhlIGRhdGFic2Ugb2JqZWN0Lg0KCQkkZGIgPSBKRmFjdG9yeTo6Z2V0REJPKCk7DQoJCSRxdWVyeSA9ICRkYi0+Z2V0UXVlcnkodHJ1ZSk7DQoJCSRxdWVyeS0+c2VsZWN0KCRkYi0+cXVvdGVOYW1lKGFycmF5KCdhLiMjI0lEIyMjJywnYS4jIyNURVhUIyMjJyksYXJyYXkoJyMjI0lEIyMjJywnIyMjQ09ERV9URVhUIyMjJykpKTsNCgkJJHF1ZXJ5LT5mcm9tKCRkYi0+cXVvdGVOYW1lKCcjIyNUQUJMRSMjIycsICdhJykpOw0KCQkkcXVlcnktPndoZXJlKCRkYi0+cXVvdGVOYW1lKCdhLnB1Ymxpc2hlZCcpIC4gJyA9IDEnKTsNCgkJJHF1ZXJ5LT5vcmRlcignYS4jIyNURVhUIyMjIEFTQycpOw0KCQkvLyBJbXBsZW1lbnQgVmlldyBMZXZlbCBBY2Nlc3MgKGlmIHNldCBpbiB0YWJsZSkNCgkJaWYgKCEkdXNlci0+YXV0aG9yaXNlKCdjb3JlLm9wdGlvbnMnLCAnW1tbY29tX2NvbXBvbmVudF1dXScpKQ0KCQl7DQoJCQkkY29sdW1ucyA9ICRkYi0+Z2V0VGFibGVDb2x1bW5zKCcjIyNUQUJMRSMjIycpOw0KCQkJaWYoaXNzZXQoJGNvbHVtbnNbJ2FjY2VzcyddKSkNCgkJCXsNCgkJCQkkZ3JvdXBzID0gaW1wbG9kZSgnLCcsICR1c2VyLT5nZXRBdXRob3Jpc2VkVmlld0xldmVscygpKTsNCgkJCQkkcXVlcnktPndoZXJlKCdhLmFjY2VzcyBJTiAoJyAuICRncm91cHMgLiAnKScpOw0KCQkJfQ0KCQl9DQoJCSRkYi0+c2V0UXVlcnkoKHN0cmluZykkcXVlcnkpOw0KCQkkaXRlbXMgPSAkZGItPmxvYWRPYmplY3RMaXN0KCk7DQoJCSRvcHRpb25zID0gYXJyYXkoKTsNCgkJaWYgKCRpdGVtcykNCgkJew0KCQkJaWYgKCR0aGlzLT5tdWx0aXBsZSA9PT0gZmFsc2UpDQoJCQl7DQoJCQkJJG9wdGlvbnNbXSA9IEpIdG1sOjpfKCdzZWxlY3Qub3B0aW9uJywgJycsIEpUZXh0OjpfKCdTZWxlY3QgYW4gb3B0aW9uJykpOw0KCQkJfQ0KCQkJZm9yZWFjaCgkaXRlbXMgYXMgJGl0ZW0pDQoJCQl7DQoJCQkJJG9wdGlvbnNbXSA9IEpIdG1sOjpfKCdzZWxlY3Qub3B0aW9uJywgJGl0ZW0tPiMjI0lEIyMjLCAkaXRlbS0+IyMjQ09ERV9URVhUIyMjIC4gJyAoJyAuIHN1YnN0cigkaXRlbS0+IyMjSUQjIyMsIDAsIDgpIC4gJyknKTsNCgkJCX0NCgkJfQ0KCQlyZXR1cm4gJG9wdGlvbnM7\\\"\\n\\/>\"', 1, '2023-06-28 00:17:48', '2023-07-10 11:28:38', 7, '', 960, '7b2429da-a049-4262-b39a-9d07ba2bf97f', '', '', '', '', ''),
(3213, '', '', '', '', '', '', '', '', 'Other', 36, 'VARCHAR', 2, '', '', 'Tag', 'NOT NULL', '', 6, '\"<field\\n\\ttype=\\\"tagers\\\"\\n\\tname=\\\"tag\\\"\\n\\tlabel=\\\"Tag\\\"\\n\\tclass=\\\"list_class\\\"\\n\\tmultiple=\\\"false\\\"\\n\\trequired=\\\"true\\\"\\n\\tvalidate=\\\"guid\\\"\\n\\textends=\\\"list\\\"\\n\\tbutton=\\\"true\\\"\\n\\ttable=\\\"#__###component###_tag\\\"\\n\\tcomponent=\\\"com_###component###\\\"\\n\\tview=\\\"tag\\\"\\n\\tviews=\\\"tags\\\"\\n\\tvalue_field=\\\"name\\\"\\n\\tkey_field=\\\"guid\\\"\\n\\tprime_php=\\\"1\\\"\\n\\ttype_php_1=\\\"__.o0=base64=Oo.__Ly8gR2V0IHRoZSB1c2VyIG9iamVjdC4NCgkJJHVzZXIgPSBKRmFjdG9yeTo6Z2V0VXNlcigpOw0KCQkvLyBHZXQgdGhlIGRhdGFic2Ugb2JqZWN0Lg0KCQkkZGIgPSBKRmFjdG9yeTo6Z2V0REJPKCk7DQoJCSRxdWVyeSA9ICRkYi0+Z2V0UXVlcnkodHJ1ZSk7DQoJCSRxdWVyeS0+c2VsZWN0KCRkYi0+cXVvdGVOYW1lKGFycmF5KCdhLiMjI0lEIyMjJywnYS4jIyNURVhUIyMjJyksYXJyYXkoJyMjI0lEIyMjJywnIyMjQ09ERV9URVhUIyMjJykpKTsNCgkJJHF1ZXJ5LT5mcm9tKCRkYi0+cXVvdGVOYW1lKCcjIyNUQUJMRSMjIycsICdhJykpOw0KCQkkcXVlcnktPndoZXJlKCRkYi0+cXVvdGVOYW1lKCdhLnB1Ymxpc2hlZCcpIC4gJyA9IDEnKTsNCgkJJHF1ZXJ5LT5vcmRlcignYS4jIyNURVhUIyMjIEFTQycpOw0KCQkvLyBJbXBsZW1lbnQgVmlldyBMZXZlbCBBY2Nlc3MgKGlmIHNldCBpbiB0YWJsZSkNCgkJaWYgKCEkdXNlci0+YXV0aG9yaXNlKCdjb3JlLm9wdGlvbnMnLCAnW1tbY29tX2NvbXBvbmVudF1dXScpKQ0KCQl7DQoJCQkkY29sdW1ucyA9ICRkYi0+Z2V0VGFibGVDb2x1bW5zKCcjIyNUQUJMRSMjIycpOw0KCQkJaWYoaXNzZXQoJGNvbHVtbnNbJ2FjY2VzcyddKSkNCgkJCXsNCgkJCQkkZ3JvdXBzID0gaW1wbG9kZSgnLCcsICR1c2VyLT5nZXRBdXRob3Jpc2VkVmlld0xldmVscygpKTsNCgkJCQkkcXVlcnktPndoZXJlKCdhLmFjY2VzcyBJTiAoJyAuICRncm91cHMgLiAnKScpOw0KCQkJfQ0KCQl9DQoJCSRkYi0+c2V0UXVlcnkoKHN0cmluZykkcXVlcnkpOw0KCQkkaXRlbXMgPSAkZGItPmxvYWRPYmplY3RMaXN0KCk7DQoJCSRvcHRpb25zID0gYXJyYXkoKTsNCgkJaWYgKCRpdGVtcykNCgkJew0KCQkJaWYgKCR0aGlzLT5tdWx0aXBsZSA9PT0gZmFsc2UpDQoJCQl7DQoJCQkJJG9wdGlvbnNbXSA9IEpIdG1sOjpfKCdzZWxlY3Qub3B0aW9uJywgJycsIEpUZXh0OjpfKCdTZWxlY3QgYW4gb3B0aW9uJykpOw0KCQkJfQ0KCQkJZm9yZWFjaCgkaXRlbXMgYXMgJGl0ZW0pDQoJCQl7DQoJCQkJJG9wdGlvbnNbXSA9IEpIdG1sOjpfKCdzZWxlY3Qub3B0aW9uJywgJGl0ZW0tPiMjI0lEIyMjLCAkaXRlbS0+IyMjQ09ERV9URVhUIyMjIC4gJyAoJyAuIHN1YnN0cigkaXRlbS0+IyMjSUQjIyMsIDAsIDgpIC4gJyknKTsNCgkJCX0NCgkJfQ0KCQlyZXR1cm4gJG9wdGlvbnM7\\\"\\n\\/>\"', 1, '2023-06-28 01:11:20', '2023-06-28 01:12:00', 2, '', 960, '338d1659-8875-46a9-a342-e214f6485166', '', '', '', '', ''),
(3214, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'Access (getBible)', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"access\\\"\\n\\tlabel=\\\"Access\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"1|Public,0|Private\\\"\\n\\tdefault=\\\"1\\\"\\n\\/>\"', 1, '2023-06-29 07:13:09', '2023-06-29 07:12:59', 1, '', 1032, '57f36767-b576-4159-9b53-15228e6f9702', '', '', '', '', ''),
(3215, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'Bible App Menu Item', 'NOT NULL', '', 33, '\"<field\\n\\ttype=\\\"menuitem\\\"\\n\\tname=\\\"app_menu\\\"\\n\\tlabel=\\\"Bible App Menu Item\\\"\\n\\tdescription=\\\"Select the menu item of the app page.\\\"\\n\\tpublished=\\\"1\\\"\\n\\tfilter=\\\"int\\\"\\n\\tdisplay=\\\"config\\\"\\n\\/>\"', 1, '2023-07-03 11:03:32', '2023-07-03 11:04:18', 2, '', 637, 'ab8e053a-3901-4b0d-969c-ae84d6be4d02', '', '', '', '', ''),
(3216, '', '', '', '', '', '', '', '', 100, '', 'VARCHAR', '', '', '', 'Openai Token', 'NOT NULL', '', 16, '\"<field\\n\\ttype=\\\"password\\\"\\n\\tname=\\\"openai_token\\\"\\n\\tlabel=\\\"Openai Token\\\"\\n\\tsize=\\\"150\\\"\\n\\tdefault=\\\"secret\\\"\\n\\tdescription=\\\"Your Openai Token\\\"\\n\\tmessage=\\\"Error! Please add some token here.\\\"\\n\\tclass=\\\"text_area\\\"\\n\\tfilter=\\\"STRING\\\"\\n\\thint=\\\"\\/\\/ get your token from Open AI\\\"\\n\\tautocomplete=\\\"off\\\"\\n\\tshowon=\\\"enable_open_ai:1\\\"\\n\\tdisplay=\\\"config\\\"\\n\\/>\"', 1, '2023-07-03 20:30:58', '2023-07-10 01:34:19', 4, '', 1037, '8b07f687-c07d-4060-b922-c3d6d00db79d', '', '', '', '', ''),
(3217, '', '', '', '', '', '', '', '', 100, '', 'VARCHAR', '', '', '', 'Openai Organisation Token', 'NOT NULL', '', 16, '\"<field\\n\\ttype=\\\"password\\\"\\n\\tname=\\\"openai_org_token\\\"\\n\\tlabel=\\\"Openai Organisation Token\\\"\\n\\tsize=\\\"150\\\"\\n\\tdefault=\\\"secret\\\"\\n\\tdescription=\\\"Your Organisation Token\\\"\\n\\tmessage=\\\"Error! Please add some token here.\\\"\\n\\tclass=\\\"text_area\\\"\\n\\tfilter=\\\"STRING\\\"\\n\\thint=\\\"\\/\\/ get your token from your Organisation on Open AI\\\"\\n\\tautocomplete=\\\"off\\\"\\n\\tshowon=\\\"enable_open_ai:1[AND]enable_open_ai_org:1\\\"\\n\\tdisplay=\\\"config\\\"\\n\\/>\"', 1, '2023-07-03 20:32:22', '2023-07-10 01:35:07', 4, '', 1037, 'e9b1860f-8625-4562-a459-59b53930ffce', '', '', '', '', ''),
(3218, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'Enable Openai', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"enable_open_ai\\\"\\n\\tlabel=\\\"Enable Openai\\\"\\n\\tdescription=\\\"Enable Openai\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"1|Yes,0|No\\\"\\n\\tdefault=\\\"0\\\"\\n\\tdisplay=\\\"config\\\"\\n\\/>\"', 1, '2023-07-03 20:33:22', '2023-07-03 21:24:45', 2, '', 1037, 'ea42499c-a893-4dfb-8c3d-2ea6838f7099', '', '', '', '', ''),
(3219, '', '', '', '', '', '', '', '', '', '', '', '', '', '', 'Openai Token Note', 'NOT NULL', '', 14, '\"<field\\n\\ttype=\\\"note\\\"\\n\\tname=\\\"openai_token_note\\\"\\n\\tlabel=\\\"Get Open AI Token\\\"\\n\\tdescription=\\\"<h1>How to Get an OpenAI API Token<\\/h1>\\r\\n\\r\\n<ol>\\r\\n <li>\\r\\n <strong>Sign Up on OpenAI:<\\/strong> Visit <a href=\'https:\\/\\/www.openai.com\'>OpenAI<\\/a> and click on the \'Sign Up\' button to create a new account. You\'ll need to provide some basic information like your name and email address.\\r\\n <\\/li>\\r\\n <li>\\r\\n <strong>Confirm your Email:<\\/strong> After signing up, you\'ll receive an email from OpenAI to verify your email address. Click on the verification link to confirm your account.\\r\\n <\\/li>\\r\\n <li>\\r\\n <strong>Access the Dashboard:<\\/strong> Once your email is verified, log in to your OpenAI account and navigate to the Dashboard. You should see an option to create a new API key.\\r\\n <\\/li>\\r\\n <li>\\r\\n <strong>Create a New API Key:<\\/strong> Click on the \'Create New API Key\' button. You\'ll be asked to name your API key and specify whether it has read and\\/or write access. Be sure to select the appropriate access level based on your needs.\\r\\n <\\/li>\\r\\n <li>\\r\\n <strong>Copy your API Key:<\\/strong> After creating the key, it will be displayed on your screen. Make sure to copy it and store it securely. You won\'t be able to view this key again for security reasons, so it\'s essential that you save it somewhere safe.\\r\\n <\\/li>\\r\\n <li>\\r\\n <strong>Use your API Key:<\\/strong> Now that you have your API key, you can use it to make requests to the OpenAI API. Typically, you will include this key in the headers of your HTTP requests.\\r\\n <\\/li>\\r\\n<\\/ol>\\r\\n\\r\\n<p>\\r\\nKeep in mind that OpenAI\'s API has usage limits depending on your type of account (free, pay-as-you-go, etc.), so make sure you understand these limits to avoid unexpected charges or service interruptions. You can find information about usage limits on the OpenAI Pricing page.\\r\\n<\\/p>\\r\\n\\r\\n<p>\\r\\nAdditionally, remember to keep your API key secure. Do not share it publicly or commit it to public repositories. If you believe your API key has been compromised, you can delete it and generate a new one from your OpenAI dashboard.\\r\\n<\\/p>\\\"\\n\\theading=\\\"h5\\\"\\n\\tclass=\\\"alert alert-info\\\"\\n\\tshowon=\\\"enable_open_ai:1\\\"\\n\\/>\"', 1, '2023-07-03 20:38:47', '0000-00-00 00:00:00', 1, '', 1039, '4547261d-aeed-41c3-87d9-6a42b6b42ace', '', '', '', '', ''),
(3220, '', '', '', '', '', '', '', '', '', '', '', '', '', '', 'Get Open AI Organization Token', 'NOT NULL', '', 14, '\"<field\\n\\ttype=\\\"note\\\"\\n\\tname=\\\"openai_org_token_note\\\"\\n\\tlabel=\\\"Get Open AI Organization Token\\\"\\n\\tdescription=\\\"<h1>How to Get an OpenAI Organization API Token<\\/h1>\\r\\n\\r\\n<ol>\\r\\n <li>\\r\\n <strong>Sign In to OpenAI:<\\/strong> Visit <a href=\'https:\\/\\/www.openai.com\'>OpenAI<\\/a> and click on the \'Sign In\' button to access your account.\\r\\n <\\/li>\\r\\n <li>\\r\\n <strong>Access the Organization Settings:<\\/strong> Navigate to the organization settings page. This is typically accessible from your dashboard or account settings. Look for a section or tab labeled \'Organization\' or \'Organization Settings.\'\\r\\n <\\/li>\\r\\n <li>\\r\\n <strong>Create a New Organization API Key:<\\/strong> From the organization settings page, find the section for API keys. There should be an option to create a new API key. Click on this and follow the prompts to create your new organization API key.\\r\\n <\\/li>\\r\\n <li>\\r\\n <strong>Copy the API Key:<\\/strong> Once created, your new organization API key will be displayed. Make sure to copy and store this key securely. Just like personal API keys, you won\'t be able to view this key again for security reasons, so it\'s essential to save it somewhere safe.\\r\\n <\\/li>\\r\\n <li>\\r\\n <strong>Use the Organization API Key:<\\/strong> You can now use this organization API key to make requests to the OpenAI API on behalf of your organization. Include this key in the headers of your HTTP requests, just like you would with a personal API key.\\r\\n <\\/li>\\r\\n<\\/ol>\\r\\n\\r\\n<p>\\r\\nRemember, organization API keys represent access to your entire organization\'s OpenAI account, so be especially careful with these. Don\'t share them publicly, and make sure only trusted individuals within your organization have access. If you believe an organization API key has been compromised, delete it and create a new one immediately.\\r\\n<\\/p>\\\"\\n\\theading=\\\"h5\\\"\\n\\tclass=\\\"alert alert-info\\\"\\n\\tshowon=\\\"enable_open_ai:1[AND]enable_open_ai_org:1\\\"\\n\\/>\"', 1, '2023-07-03 20:41:32', '0000-00-00 00:00:00', 1, '', 1039, '09bdce14-57d3-4062-954b-24056ae241be', '', '', '', '', ''),
(3221, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'Enable Organisation Openai', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"enable_open_ai_org\\\"\\n\\tlabel=\\\"Enable Organisation Openai\\\"\\n\\tdescription=\\\"Enable Organisation Openai\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"1|Yes,0|No\\\"\\n\\tdefault=\\\"0\\\"\\n\\tshowon=\\\"enable_open_ai:1\\\"\\n\\tdisplay=\\\"config\\\"\\n\\/>\"', 1, '2023-07-03 21:24:34', '2023-07-03 21:28:53', 3, '', 1037, '3458cad1-8655-4431-b3d3-ff2ad17c4f5a', '', '', '', '', ''),
(3222, '', '', '', '', '', '', '', '', 100, '', 'VARCHAR', '', '', '', 'Password (linker)', 'NOT NULL', '', 16, '\"<field\\n\\ttype=\\\"password\\\"\\n\\tname=\\\"password\\\"\\n\\tlabel=\\\"Password\\\"\\n\\tsize=\\\"150\\\"\\n\\tdefault=\\\"secret\\\"\\n\\tdescription=\\\"Your Password\\\"\\n\\tmessage=\\\"Error! Please add some password here.\\\"\\n\\tclass=\\\"text_area\\\"\\n\\tfilter=\\\"STRING\\\"\\n\\thint=\\\"\\/\\/ share password\\\"\\n\\tautocomplete=\\\"off\\\"\\n\\/>\"', 1, '2023-07-04 04:31:01', '2023-07-04 04:32:14', 3, '', 1037, '3069ffb7-bcf7-45bd-b3eb-d5f7de4f80cf', '', '', '', '', ''),
(3223, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Activate Tags', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"activate_tags\\\"\\n\\tlabel=\\\"Activate Tags\\\"\\n\\tdescription=\\\"Activate the option to tag verses.\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"1|Yes,0|No\\\"\\n\\tdefault=\\\"0\\\"\\n\\/>\"', 1, '2023-07-04 07:56:03', '2023-07-04 07:55:27', 1, '', 1036, 'dc9ee5e3-d6ed-41cc-92ce-1bb1d80f3fdf', '', '', '', '', ''),
(3224, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Activate Notes', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"activate_notes\\\"\\n\\tlabel=\\\"Activate Notes\\\"\\n\\tdescription=\\\"Activate the option to add notes on verses.\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"1|Yes,0|No\\\"\\n\\tdefault=\\\"0\\\"\\n\\/>\"', 1, '2023-07-04 07:56:34', '2023-07-04 07:55:27', 1, '', 1036, 'c5bb662a-3e0d-4d10-acb8-4eac90c06402', '', '', '', '', ''),
(3225, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Activate Search', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"activate_search\\\"\\n\\tlabel=\\\"Activate Search\\\"\\n\\tdescription=\\\"Activate the option to search verses.\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"1|Yes,0|No\\\"\\n\\tdefault=\\\"0\\\"\\n\\/>\"', 1, '2023-07-04 08:54:15', '2023-07-04 09:31:11', 2, '', 1036, '5744495b-4278-4523-9cc7-b6186fecf67f', '', '', '', '', ''),
(3226, '', '', '', '', '', '', '', '', 10, '', 'VARCHAR', '', '', '', 'Search Found Colour', 'NOT NULL', '', 5, '\"<field\\n\\ttype=\\\"color\\\"\\n\\tname=\\\"search_found_color\\\"\\n\\tdefault=\\\"#4747ff\\\"\\n\\tlabel=\\\"Search Found Colour\\\"\\n\\tdescription=\\\"Select the search word found colour here.\\\"\\n\\tshowon=\\\"activate_search:1\\\"\\n\\/>\"', 1, '2023-07-05 07:52:49', '2023-07-05 08:01:12', 4, '', 1040, 'd008725e-8e8c-4691-b364-f25198dc0107', '', '', '', '', ''),
(3227, '', '', '', '', '', '', '', '', 10, '', 'VARCHAR', '', '', '', 'Verse Selected Colour', 'NOT NULL', '', 5, '\"<field\\n\\ttype=\\\"color\\\"\\n\\tname=\\\"verse_selected_color\\\"\\n\\tdefault=\\\"#4747ff\\\"\\n\\tlabel=\\\"Verse Selected Colour\\\"\\n\\tdescription=\\\"Select the verse selected colour here.\\\"\\n\\tdisplay=\\\"config\\\"\\n\\/>\"', 1, '2023-07-05 07:55:05', '2023-07-24 18:43:07', 3, '', 1040, '53c2d904-ad5a-4f5f-bf38-32f9410badf9', '', '', '', '', ''),
(3228, '', '', '', '', '', '', '', '', 10, '', 'VARCHAR', '', '', '', 'Table Selection Colour', 'NOT NULL', '', 5, '\"<field\\n\\ttype=\\\"color\\\"\\n\\tname=\\\"table_selection_color\\\"\\n\\tdefault=\\\"#dfdfdf\\\"\\n\\tlabel=\\\"Table Selection Colour\\\"\\n\\tdescription=\\\"Select the table selection colour here.\\\"\\n\\tshowon=\\\"activate_search:1\\\"\\n\\/>\"', 1, '2023-07-05 07:56:21', '2023-07-05 08:01:46', 2, '', 1040, '088d6bbb-bbfe-4ec9-bb1f-65c20fa0e284', '', '', '', '', ''),
(3229, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Seach Words', 'NOT NULL', '', 11, '\"<field\\n\\ttype=\\\"list\\\"\\n\\tname=\\\"search_words\\\"\\n\\tlabel=\\\"Words\\\"\\n\\tdescription=\\\"Search behaviour around each word.\\\"\\n\\tclass=\\\"list_class\\\"\\n\\tmultiple=\\\"false\\\"\\n\\toption=\\\"1|All Words,2|Any Words,3|Exact Phrase\\\"\\n\\tdefault=\\\"1\\\"\\n\\tshowon=\\\"activate_search:1\\\"\\n\\/>\"', 1, '2023-07-05 08:21:38', '0000-00-00 00:00:00', 1, '', 1041, '80ff71fc-ecc6-40b0-8984-a4de67add00f', '', '', '', '', ''),
(3230, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Seach Match', 'NOT NULL', '', 11, '\"<field\\n\\ttype=\\\"list\\\"\\n\\tname=\\\"search_match\\\"\\n\\tlabel=\\\"Match\\\"\\n\\tdescription=\\\"Search behaviour around each word match.\\\"\\n\\tclass=\\\"list_class\\\"\\n\\tmultiple=\\\"false\\\"\\n\\toption=\\\"1|Exact Match,2|Partial Match\\\"\\n\\tdefault=\\\"1\\\"\\n\\tshowon=\\\"activate_search:1\\\"\\n\\/>\"', 1, '2023-07-05 08:22:58', '2023-07-05 08:30:14', 2, '', 1041, '763b00dd-f3fa-4b14-8f99-ad467ae5e1bc', '', '', '', '', ''),
(3231, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Seach Case', 'NOT NULL', '', 11, '\"<field\\n\\ttype=\\\"list\\\"\\n\\tname=\\\"search_case\\\"\\n\\tlabel=\\\"Case\\\"\\n\\tdescription=\\\"Search behaviour around each word case.\\\"\\n\\tclass=\\\"list_class\\\"\\n\\tmultiple=\\\"false\\\"\\n\\toption=\\\"1|Case Insensitive,2|Case Sensitive\\\"\\n\\tdefault=\\\"1\\\"\\n\\tshowon=\\\"activate_search:1\\\"\\n\\/>\"', 1, '2023-07-05 08:24:13', '2023-07-05 08:30:21', 3, '', 1041, 'a34ee501-43b7-4f91-b628-33f990ff2103', '', '', '', '', ''),
(3232, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Open AI Model', 'NOT NULL', '', 11, '\"<field\\n\\ttype=\\\"list\\\"\\n\\tname=\\\"openai_model\\\"\\n\\tlabel=\\\"Model\\\"\\n\\tdescription=\\\"ID of the model to use.\\\"\\n\\tclass=\\\"list_class\\\"\\n\\tmultiple=\\\"false\\\"\\n\\toption=\\\"gpt-4,gpt-4-0613,gpt-4-32k,gpt-4-32k-0613,gpt-3.5-turbo,gpt-3.5-turbo-0613,gpt-3.5-turbo-16k,gpt-3.5-turbo-16k-0613\\\"\\n\\tdefault=\\\"gpt-4\\\"\\n\\tshowon=\\\"enable_open_ai:1\\\"\\n\\/>\"', 1, '2023-07-05 15:25:22', '2023-07-06 16:38:54', 3, '', 1041, '8bcaa53e-5c41-4fca-a2a8-a4913e02394a', '', '', '', '', ''),
(3233, '', '', '', '', '', '', '', '', '', '', '', '', '', '', 'Open AI Documentation Note', 'NOT NULL', '', 14, '\"<field\\n\\ttype=\\\"note\\\"\\n\\tname=\\\"openai_documentation_note\\\"\\n\\tlabel=\\\"Documentation\\\"\\n\\tdescription=\\\"<p>Please review the OpenAI API documentation for creating a chat conversation at <a href=\'https:\\/\\/platform.openai.com\\/docs\\/api-reference\\/chat\\/create\'>this link<\\/a>. The document provides a comprehensive guide on parameters and methods to create chat completion using OpenAI\'s model. It includes instructions on:<\\/p>\\r\\n\\r\\n<ul>\\r\\n <li>How to post a request to create model responses<\\/li>\\r\\n <li>The format for the request body including role, model, messages, and optional parameters such as name, content, and function_call<\\/li>\\r\\n <li>Different ways to control the model\'s response such as temperature and top_p<\\/li>\\r\\n <li>How to control the number of generated chat completion choices, the stop sequences, and maximum number of tokens<\\/li>\\r\\n <li>Utilizing penalties and biases for managing the output<\\/li>\\r\\n <li>Additional features like streaming and user tracking for abuse monitoring<\\/li>\\r\\n<\\/ul>\\\"\\n\\theading=\\\"h5\\\"\\n\\tclass=\\\"alert alert-info\\\"\\n\\tshowon=\\\"enable_open_ai:1\\\"\\n\\/>\"', 1, '2023-07-05 15:35:36', '2023-07-10 01:32:50', 2, '', 1039, 'dd983747-e60d-4c60-8f6a-8791ba16ed5e', '', '', '', '', ''),
(3234, '', '', '', '', '', '', '', '', 11, '', 'INT', '', '', '', 'Open AI Max Tokens', 'NOT NULL', '', 15, '\"<field\\n\\ttype=\\\"number\\\"\\n\\tname=\\\"openai_max_tokens\\\"\\n\\tlabel=\\\"Max Tokens\\\"\\n\\tdefault=\\\"300\\\"\\n\\tdescription=\\\"Maximum number of tokens to generate.\\\"\\n\\tclass=\\\"text_area\\\"\\n\\tmin=\\\"0\\\"\\n\\tmax=\\\"2048\\\"\\n\\tstep=\\\"12\\\"\\n\\tshowon=\\\"enable_open_ai:1\\\"\\n\\/>\"', 1, '2023-07-05 15:44:07', '2023-07-08 19:38:34', 6, '', 1041, 'ee3e24e4-b7a9-4a00-90ac-9d5ac539f723', '', '', '', '', ''),
(3235, '', '', '', '', '', '', '', '', 11, '', 'FLOAT', '', '', '', 'Open AI Temperature', 'NOT NULL', '', 15, '\"<field\\n\\ttype=\\\"number\\\"\\n\\tname=\\\"openai_temperature\\\"\\n\\tlabel=\\\"Temperature\\\"\\n\\tdefault=\\\"1\\\"\\n\\tdescription=\\\"The sampling temperature to use\\\"\\n\\tclass=\\\"text_area\\\"\\n\\tmin=\\\"0\\\"\\n\\tmax=\\\"2\\\"\\n\\tstep=\\\"0.1\\\"\\n\\tshowon=\\\"enable_open_ai:1\\\"\\n\\/>\"', 1, '2023-07-05 15:51:37', '2023-07-08 06:28:27', 5, '', 1041, '6e054e76-74a8-448a-9389-89e85c29dee7', '', '', '', '', ''),
(3236, '', '', '', '', '', '', 1, '', 1, '', 'TINYINT', 2, '', '', 'Prompt Integration', 'NOT NULL', '', 11, '\"<field\\n\\ttype=\\\"list\\\"\\n\\tname=\\\"integration\\\"\\n\\tlabel=\\\"Prompt Integration Scope\\\"\\n\\tdescription=\\\"Determine the extent of Bible text that this prompt can encompass when interacting with OpenAI API.\\\"\\n\\tclass=\\\"list_class\\\"\\n\\tmultiple=\\\"false\\\"\\n\\trequired=\\\"true\\\"\\n\\toption=\\\"1|Word-Based,2|Verse-Based,3|Selection-Based\\\"\\n\\tdefault=\\\"1\\\"\\n\\/>\"', 1, '2023-07-06 08:11:52', '2023-07-07 14:45:52', 7, '', 1042, 'cc4a4d1b-b660-4473-9728-2aca5d78b43f', '', '', '', '', ''),
(3237, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Cache Behaviour', 'NOT NULL', '', 11, '\"<field\\n\\ttype=\\\"list\\\"\\n\\tname=\\\"cache_behaviour\\\"\\n\\tlabel=\\\"Cache Behaviour\\\"\\n\\tdescription=\\\"Determine the caching behaviour of this prompt. Be aware, this is a crucial setting that significantly impacts the prompt\'s operation.\\\"\\n\\tclass=\\\"list_class\\\"\\n\\tmultiple=\\\"false\\\"\\n\\trequired=\\\"true\\\"\\n\\toption=\\\"0|Persistently Expansive Caching,1|Basic Caching - Words\\/Language,2|Advanced Caching - Verse\\/Contex\\\"\\n\\tdefault=\\\"2\\\"\\n\\/>\"', 1, '2023-07-06 08:19:19', '2023-07-14 06:41:54', 9, '', 1042, 'a8ef8e48-fedd-44dc-b4c7-306247bab687', '', '', '', '', ''),
(3238, '', '', '', '', '', '', '', '', 11, '', 'INT', '', '', '', 'Cache Capacity', 'NOT NULL', '', 15, '\"<field\\n\\ttype=\\\"number\\\"\\n\\tname=\\\"cache_capacity\\\"\\n\\tlabel=\\\"Cache Capacity\\\"\\n\\tdefault=\\\"1\\\"\\n\\tdescription=\\\"Determine the maximum number of unique responses to be stored in the cache for each word (in the \'Basic Caching - Words\\/Language\' strategy) or each verse (in the \'Advanced Caching - Verse\\/Context\' strategy), before additional calls to OpenAI\'s API are halted. This setting helps manage your usage of OpenAI\'s services by setting a limit on the variety of cached responses.\\\"\\n\\tclass=\\\"text_area\\\"\\n\\trequired=\\\"true\\\"\\n\\tmin=\\\"1\\\"\\n\\tmax=\\\"100\\\"\\n\\tstep=\\\"1\\\"\\n\\tshowon=\\\"cache_behaviour:1[OR]cache_behaviour:2\\\"\\n\\/>\"', 1, '2023-07-06 14:16:17', '2023-07-06 23:51:33', 5, '', 1042, 'ec5abb0b-061d-41be-8e0d-7833be523576', '', '', '', '', ''),
(3239, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Prompt Role', 'NOT NULL', '', 11, '\"<field\\n\\ttype=\\\"list\\\"\\n\\tname=\\\"role\\\"\\n\\tlabel=\\\"Prompt\\\"\\n\\tdescription=\\\"Role\\\"\\n\\tclass=\\\"list_class\\\"\\n\\tmultiple=\\\"false\\\"\\n\\tfilter=\\\"STRING\\\"\\n\\trequired=\\\"true\\\"\\n\\toption=\\\"|Select an option,system,user,assistant,function\\\"\\n\\/>\"', 1, '2023-07-06 16:44:19', '2023-07-08 06:20:07', 5, '', 1043, '5ab97c69-9d8b-4a5e-aaba-ac088f28914f', '', '', '', '', ''),
(3240, '', '', '', '', '', '', '', '', '', '', '', '', '', '', 'Open AI Documentation Note (prompt)', 'NOT NULL', '', 14, '\"<field\\n\\ttype=\\\"note\\\"\\n\\tname=\\\"openai_documentation_note\\\"\\n\\tlabel=\\\"Chat Completion (end-point)\\\"\\n\\tdescription=\\\"<p>Please review the OpenAI API documentation for creating a chat conversation at <a href=\'https:\\/\\/platform.openai.com\\/docs\\/api-reference\\/chat\\/create\'>this link<\\/a>. The document provides a comprehensive guide on parameters and methods to create chat completion using OpenAI\'s model. It includes instructions on:<\\/p>\\r\\n\\r\\n<ul>\\r\\n <li>How to post a request to create model responses<\\/li>\\r\\n <li>The format for the request body including role, model, messages, and optional parameters such as name, content, and function_call<\\/li>\\r\\n <li>Different ways to control the model\'s response such as temperature and top_p<\\/li>\\r\\n <li>How to control the number of generated chat completion choices, the stop sequences, and maximum number of tokens<\\/li>\\r\\n <li>Utilizing penalties and biases for managing the output<\\/li>\\r\\n <li>Additional features like streaming and user tracking for abuse monitoring<\\/li>\\r\\n<\\/ul>\\\"\\n\\theading=\\\"h5\\\"\\n\\tclass=\\\"alert alert-info\\\"\\n\\/>\"', 1, '2023-07-06 16:46:10', '2023-07-10 01:32:07', 3, '', 1039, '39b8cf52-a3ac-4912-9df4-279fcd8ee3f6', '', '', '', '', ''),
(3241, '', '', '', '', '', '', '', '', '', '', '', '', '', '', 'Open AI Prompts Placeholders (Advanced Caching)', 'NOT NULL', '', 14, '\"<field\\r\\n\\ttype=\\\"note\\\"\\r\\n\\tname=\\\"openai_prompts_placeholders_advanced_caching_note\\\"\\r\\n\\tlabel=\\\"Prompts Placeholders (Advanced Caching)\\\"\\r\\n\\tdescription=\\\"<p>You can use the following placeholders in the prompts:<\\/p>\\r\\n<div>\\r\\n<code style=\'display: inline-block; padding: 2px; margin: 3px;\'>[translation_name]<\\/code>\\r\\n<code style=\'display: inline-block; padding: 2px; margin: 3px;\'>[translation_language]<\\/code>\\r\\n<code style=\'display: inline-block; padding: 2px; margin: 3px;\'>[translation_lcsh]<\\/code>\\r\\n<code style=\'display: inline-block; padding: 2px; margin: 3px;\'>[translation_abbreviation]<\\/code>\\r\\n<code style=\'display: inline-block; padding: 2px; margin: 3px;\'>[book_name]<\\/code>\\r\\n<code style=\'display: inline-block; padding: 2px; margin: 3px;\'>[chapter_number]<\\/code>\\r\\n<code style=\'display: inline-block; padding: 2px; margin: 3px;\'>[chapter_name]<\\/code>\\r\\n<code style=\'display: inline-block; padding: 2px; margin: 3px;\'>[chapter_text]<\\/code>\\r\\n<code style=\'display: inline-block; padding: 2px; margin: 3px;\'>[verse_number]<\\/code>\\r\\n<code style=\'display: inline-block; padding: 2px; margin: 3px;\'>[verse_name]<\\/code>\\r\\n<code style=\'display: inline-block; padding: 2px; margin: 3px;\'>[verse_text]<\\/code>\\r\\n<code class=\'selected-word-placeholder\' style=\'display: inline-block; padding: 2px; margin: 3px;\'>[selected_word_number]<\\/code>\\r\\n<code class=\'selected-word-placeholder\' style=\'display: inline-block; padding: 2px; margin: 3px;\'>[selected_word_text]<\\/code>\\r\\n<\\/div>\\r\\n<small>Utilizing these placeholders is crucial to enhancing the distinctiveness of responses from Open AI. Be aware that using the <b>[chapter_text]<\\/b> placeholder loads the complete text of the chapter. This significantly increases the size of the query and might cause failures in certain circumstances. Exercise caution and restraint when implementing the <b>[chapter_text]<\\/b> placeholder!<\\/small>\\\"\\r\\n\\theading=\\\"h5\\\"\\r\\n\\tshowon=\\\"cache_behaviour:2\\\"\\r\\n\\/>\"', 1, '2023-07-06 16:54:36', '2023-07-10 01:26:34', 9, '', 1039, 'f9ace7ae-e2dc-40f6-a373-c2001523e0f5', '', '', '', '', ''),
(3242, '', '', '', '', '', '', '', '', 50, '', 'VARCHAR', 2, '', '', 'Model (prompt)', 'NOT NULL', '', 11, '\"<field\\n\\ttype=\\\"list\\\"\\n\\tname=\\\"model\\\"\\n\\tlabel=\\\"Model\\\"\\n\\tdescription=\\\"ID of the model to use.\\\"\\n\\tclass=\\\"list_class\\\"\\n\\tmultiple=\\\"false\\\"\\n\\toption=\\\"|Use Global,gpt-4,gpt-4-0613,gpt-4-32k,gpt-4-32k-0613,gpt-3.5-turbo,gpt-3.5-turbo-0613,gpt-3.5-turbo-16k,gpt-3.5-turbo-16k-0613\\\"\\n\\tdefault=\\\"\\\"\\n\\/>\"', 1, '2023-07-06 16:55:35', '2023-07-10 09:08:14', 4, '', 1041, 'f9447157-7322-49c2-90f0-2c548f20e27d', '', '', '', '', ''),
(3243, '', '', '', '', '', '', '', '', 100, '', 'VARCHAR', 2, '', '', 'Translation (getBible - Prompt)', 'NOT NULL', '', 6, '\"<field\\n\\ttype=\\\"targettranslations\\\"\\n\\tname=\\\"abbreviation\\\"\\n\\tlabel=\\\"Target Translation\\\"\\n\\tdescription=\\\"Select a Bible translation\\\"\\n\\tclass=\\\"list_class\\\"\\n\\tmultiple=\\\"false\\\"\\n\\tdefault=\\\"all\\\"\\n\\trequired=\\\"true\\\"\\n\\textends=\\\"list\\\"\\n\\ttable=\\\"#__###component###_translation\\\"\\n\\tcomponent=\\\"com_###component###\\\"\\n\\tview=\\\"translation\\\"\\n\\tviews=\\\"translations\\\"\\n\\tvalue_field=\\\"translation\\\"\\n\\tkey_field=\\\"abbreviation\\\"\\n\\ttype_php_1=\\\"__.o0=base64=Oo.__Ly8gR2V0IHRoZSB1c2VyIG9iamVjdC4NCgkJJHVzZXIgPSBKRmFjdG9yeTo6Z2V0VXNlcigpOw0KCQkvLyBHZXQgdGhlIGRhdGFic2Ugb2JqZWN0Lg0KCQkkZGIgPSBKRmFjdG9yeTo6Z2V0REJPKCk7DQoJCSRxdWVyeSA9ICRkYi0+Z2V0UXVlcnkodHJ1ZSk7DQoJCSRxdWVyeS0+c2VsZWN0KCRkYi0+cXVvdGVOYW1lKGFycmF5KCdhLiMjI0lEIyMjJywnYS4jIyNURVhUIyMjJyksYXJyYXkoJyMjI0lEIyMjJywnIyMjQ09ERV9URVhUIyMjJykpKTsNCgkJJHF1ZXJ5LT5mcm9tKCRkYi0+cXVvdGVOYW1lKCcjIyNUQUJMRSMjIycsICdhJykpOw0KCQkkcXVlcnktPndoZXJlKCRkYi0+cXVvdGVOYW1lKCdhLnB1Ymxpc2hlZCcpIC4gJyA9IDEnKTsNCgkJJHF1ZXJ5LT5vcmRlcignYS4jIyNURVhUIyMjIEFTQycpOw0KCQkvLyBJbXBsZW1lbnQgVmlldyBMZXZlbCBBY2Nlc3MgKGlmIHNldCBpbiB0YWJsZSkNCgkJaWYgKCEkdXNlci0+YXV0aG9yaXNlKCdjb3JlLm9wdGlvbnMnLCAnW1tbY29tX2NvbXBvbmVudF1dXScpKQ0KCQl7DQoJCQkkY29sdW1ucyA9ICRkYi0+Z2V0VGFibGVDb2x1bW5zKCcjIyNUQUJMRSMjIycpOw0KCQkJaWYoaXNzZXQoJGNvbHVtbnNbJ2FjY2VzcyddKSkNCgkJCXsNCgkJCQkkZ3JvdXBzID0gaW1wbG9kZSgnLCcsICR1c2VyLT5nZXRBdXRob3Jpc2VkVmlld0xldmVscygpKTsNCgkJCQkkcXVlcnktPndoZXJlKCdhLmFjY2VzcyBJTiAoJyAuICRncm91cHMgLiAnKScpOw0KCQkJfQ0KCQl9DQoJCSRkYi0+c2V0UXVlcnkoKHN0cmluZykkcXVlcnkpOw0KCQkkaXRlbXMgPSAkZGItPmxvYWRPYmplY3RMaXN0KCk7DQoJCSRvcHRpb25zID0gYXJyYXkoKTsNCgkJaWYgKCRpdGVtcykNCgkJew0KCQkJaWYgKCR0aGlzLT5tdWx0aXBsZSA9PT0gZmFsc2UpDQoJCQl7DQoJCQkJJG9wdGlvbnNbXSA9IEpIdG1sOjpfKCdzZWxlY3Qub3B0aW9uJywgJycsIEpUZXh0OjpfKCdTZWxlY3QgYW4gb3B0aW9uJykpOw0KCQkJfQ0KCQkJJG9wdGlvbnNbXSA9IEpIdG1sOjpfKCdzZWxlY3Qub3B0aW9uJywgJ2FsbCcsIEpUZXh0OjpfKCdBbGwgVHJhbnNsYXRpb25zJykpOw0KCQkJZm9yZWFjaCgkaXRlbXMgYXMgJGl0ZW0pDQoJCQl7DQoJCQkJJG9wdGlvbnNbXSA9IEpIdG1sOjpfKCdzZWxlY3Qub3B0aW9uJywgJGl0ZW0tPiMjI0lEIyMjLCAkaXRlbS0+IyMjQ09ERV9URVhUIyMjLicgKCcgLiRpdGVtLT4jIyNJRCMjIy4nKScpOw0KCQkJfQ0KCQl9DQoJCXJldHVybiAkb3B0aW9uczs=\\\"\\n\\/>\"', 1, '2023-07-06 16:59:23', '2023-07-08 21:48:22', 6, '', 819, '6cf39fcf-7d48-418b-8acc-56255ed702d6', '', '', '', '', ''),
(3244, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Prompt Content', 'NOT NULL', '', 25, '\"<field\\n\\ttype=\\\"textarea\\\"\\n\\tname=\\\"content\\\"\\n\\tlabel=\\\"Prompt\\\"\\n\\trows=\\\"20\\\"\\n\\tcols=\\\"10\\\"\\n\\tdescription=\\\"Content\\\"\\n\\tclass=\\\"text_area span12\\\"\\n\\tfilter=\\\"JComponentHelper::filterText\\\"\\n\\thint=\\\"add the prompt content here...\\\"\\n\\trequired=\\\"true\\\"\\n\\/>\"', 1, '2023-07-06 17:03:19', '2023-07-15 05:15:52', 4, '', 1043, '397ac069-280b-4631-bcbb-f937bbc3bd60', '', '', '', '', ''),
(3245, '', '', '', '', '', '', '', '', '', '', '', '', '', '', 'Open AI Persistently Expansive Caching', 'NOT NULL', '', 14, '\"<field\\n\\ttype=\\\"note\\\"\\n\\tname=\\\"cache_persistently_expansive_caching_note\\\"\\n\\tlabel=\\\"Persistently Expansive Caching\\\"\\n\\tdescription=\\\"<h2>Persistently Expansive Caching Strategy<\\/h2>\\r\\n\\r\\n<p>Intended for use in testing or by experienced users, this strategy always caches responses but does not use the cache to respond to subsequent queries.<\\/p>\\r\\n\\r\\n<p>Our &quot;Persistently Expansive Caching&quot; strategy represents a significant shift in our caching paradigms. Contrary to \'none,\' where caching was non-existent, and unlike \'basic\' or \'advanced,\' where previous responses are used to inform future ones, this strategy stores every interaction but doesn\'t utilize this cache to respond to subsequent similar queries. Here are some crucial aspects to bear in mind:<\\/p>\\r\\n\\r\\n<ul>\\r\\n <li><strong>Function:<\\/strong> Every query initiated will invoke an API call to OpenAI, and its response will be cached. However, unlike our other strategies, the system will not use this cache to respond to future similar queries. This strategy ensures a fresh interaction with OpenAI for each query, providing unique responses each time.<\\/li>\\r\\n <li><strong>Pros:<\\/strong> You will have a comprehensive record of all interactions with OpenAI, helpful for deep-dive analyses, or rigorous testing scenarios. This method ensures the most recent and contextually accurate responses from OpenAI at all times.<\\/li>\\r\\n <li><strong>Cons:<\\/strong> This method is the most resource-intensive and expansive of our caching strategies. Each query incurs a new cost, regardless of whether the same question has been asked before. It can rapidly escalate expenses if not managed prudently.<\\/li>\\r\\n <li><strong>Warning:<\\/strong> We still recommend using this strategy sparingly and mostly for testing purposes due to its extensive resource and cost implications. It should be employed by experienced users who fully understand its expansive nature and have strategies to manage the associated costs effectively.<\\/li>\\r\\n<\\/ul>\\r\\n\\r\\n<p>While \'Persistently Expansive Caching\' offers the advantage of fresh interactions and comprehensive caching, remember the virtues of \'Basic\' and \'Advanced\' caching strategies. These strategies balance cost, speed, and accuracy by smartly utilizing cache to respond to repeat queries, thereby optimizing your OpenAI interactions. Your choice should align with your unique requirements, your cost management strategies, and your desired balance between speed, cost, and accuracy.<\\/p>\\\"\\n\\theading=\\\"h5\\\"\\n\\tclass=\\\"alert alert-info\\\"\\n\\tshowon=\\\"cache_behaviour:0\\\"\\n\\/>\"', 1, '2023-07-06 22:41:26', '2023-07-14 06:38:49', 5, '', 1039, '8e91d385-a68a-4e09-b2d5-b64f1928f3cb', '', '', '', '', ''),
(3246, '', '', '', '', '', '', '', '', '', '', '', '', '', '', 'Open AI Cache Basic', 'NOT NULL', '', 14, '\"<field\\n\\ttype=\\\"note\\\"\\n\\tname=\\\"cache_basic_note\\\"\\n\\tlabel=\\\"Understand the Basic Caching Strategy\\\"\\n\\tdescription=\\\"<p>Cache responses based on specific words or phrases within a particular language.<\\/p>\\r\\n\\r\\n<p>The &quot;Basic Caching - Words\\/Language&quot; strategy is designed to handle queries that focus on the meaning or interpretation of specific words or phrases within a given language. Here\'s how it works and what to consider:<\\/p>\\r\\n\\r\\n<ul>\\r\\n<li><strong>Function:<\\/strong> When a query is initiated, the system searches the cache to determine if the same word or phrase has been previously requested in the same language. If a match is found, the cached response is given, enhancing speed and managing costs.<\\/li>\\r\\n<li><strong>Pros:<\\/strong> This method can be more cost-effective and faster as it avoids repeated API calls for identical queries.<\\/li>\\r\\n<li><strong>Cons:<\\/strong> The major drawback of this approach is its potential for less accurate interpretations. It doesn\'t take into account the specific context provided by the verse, chapter, and book of the Bible where the word or phrase is found.<\\/li>\\r\\n<li><strong>Recommendation:<\\/strong> While this method can be efficient, for more contextually accurate responses, consider the &quot;Advanced Caching - Verse\\/Context&quot; strategy.<\\/li>\\r\\n<\\/ul>\\\"\\n\\theading=\\\"h5\\\"\\n\\tclass=\\\"alert alert-info\\\"\\n\\tshowon=\\\"cache_behaviour:1\\\"\\n\\/>\"', 1, '2023-07-06 22:57:43', '2023-07-06 17:34:08', 1, '', 1039, '6f9988ed-16ed-4726-94c1-c80c6dd6dbd8', '', '', '', '', ''),
(3247, '', '', '', '', '', '', '', '', '', '', '', '', '', '', 'Open AI Cache Advance', 'NOT NULL', '', 14, '\"<field\\n\\ttype=\\\"note\\\"\\n\\tname=\\\"cache_advance_note\\\"\\n\\tlabel=\\\"Discover the Advanced Caching Strategy\\\"\\n\\tdescription=\\\"<p>Recommended: Cache responses related to specific verses from a particular book, chapter, and translation. Provides more context-specific accuracy, but potentially more costly.<\\/p>\\r\\n\\r\\n<p>The &quot;Advanced Caching - Verse\\/Context&quot; strategy is our recommended choice for queries that focus on the interpretation of specific verses from a particular book, chapter, and translation of the Bible. Here\'s a breakdown of its operation and considerations:<\\/p>\\r\\n\\r\\n<ul>\\r\\n<li><strong>Function:<\\/strong> When a query is made, the system checks the cache for prior responses tied to the same verse within the same book, chapter, and translation. If a match is discovered, the cached response is delivered, improving speed while also managing costs.<\\/li>\\r\\n<li><strong>Pros:<\\/strong> This strategy offers improved context-specific accuracy by considering the specific verse, chapter, and book where the word or phrase is located. This results in more precise interpretations and a superior user experience.<\\/li>\\r\\n<li><strong>Cons:<\\/strong> As a trade-off for its higher accuracy, this method may be more costly than the &quot;Basic Caching - Words\\/Language&quot; strategy due to the necessity of caching a wider range of unique queries.<\\/li>\\r\\n<li><strong>Recommendation:<\\/strong> Despite the potential increased cost, we strongly advocate for this method due to its emphasis on context and accuracy.<\\/li>\\r\\n<\\/ul>\\\"\\n\\theading=\\\"h5\\\"\\n\\tclass=\\\"alert alert-success\\\"\\n\\tshowon=\\\"cache_behaviour:2\\\"\\n\\/>\"', 1, '2023-07-06 23:00:15', '2023-07-06 23:00:51', 2, '', 1039, '8781adac-e3e6-4574-9d34-48625638f9e9', '', '', '', '', ''),
(3248, '', '', '', '', '', '', '', '', '', '', '', '', '', '', 'Open AI Prompts Placeholders (Basic Caching)', 'NOT NULL', '', 14, '\"<field\\r\\n\\ttype=\\\"note\\\"\\r\\n\\tname=\\\"openai_prompts_placeholders_basic_caching_note\\\"\\r\\n\\tlabel=\\\"Prompts Placeholders (Basic Caching)\\\"\\r\\n\\tdescription=\\\"<p>You can use the following placeholders in the prompts:<\\/p>\\r\\n<div>\\r\\n<code style=\'display: inline-block; padding: 2px; margin: 3px;\'>[translation_language]<\\/code>\\r\\n<code style=\'display: inline-block; padding: 2px; margin: 3px;\'>[translation_lcsh]<\\/code>\\r\\n<code style=\'display: inline-block; padding: 2px; margin: 3px;\'>[selected_word_text]<\\/code>\\r\\n<\\/div>\\r\\n<small>Utilizing these placeholders is crucial to enhancing the distinctiveness of responses from Open AI. Please not that <b>only these<\\/b> placeholders are available in basic caching mode.<\\/small>\\\"\\r\\n\\theading=\\\"h5\\\"\\r\\n\\tshowon=\\\"cache_behaviour:1\\\"\\r\\n\\/>\"', 1, '2023-07-06 23:03:52', '2023-07-09 21:20:19', 5, '', 1039, '62520985-69bf-4663-8f5e-35ab09cc9f4e', '', '', '', '', ''),
(3249, '', '', '', '', '', '', '', '', '', '', '', '', '', '', 'Cache Capacity Note', 'NOT NULL', '', 14, '\"<field\\n\\ttype=\\\"note\\\"\\n\\tname=\\\"cache_capacity_note\\\"\\n\\tlabel=\\\"Cache Capacity Details\\\"\\n\\tdescription=\\\"<p>The \'Cache Capacity\' feature is an essential tool designed to help you manage the usage of OpenAI\'s API services more efficiently and cost-effectively. It functions by setting an upper limit on the number of unique responses that the system stores in the cache before it stops making additional calls to OpenAI\'s API.<\\/p>\\r\\n\\r\\n<p>In the \'Basic Caching - Words\\/Language\' strategy, a \'unique response\' refers to the cached answer to a query about a specific word or phrase in a particular language. Once the number of cached responses for each unique word or phrase reaches the defined \'Cache Capacity\', the system will not initiate new API calls for that word or phrase. Instead, it will deliver already cached responses, either at random or in total, depending on your \'Response Retrieval\' settings.<\\/p>\\r\\n\\r\\n<p>Similarly, in the \'Advanced Caching - Verse\\/Context\' strategy, a \'unique response\' pertains to the cached answer to a query about a specific verse from a particular book, chapter, and translation of the Bible. When the cache capacity for each unique verse is reached, the system will refrain from making new API calls for that verse, and deliver the responses from the cache, again following your \'Response Retrieval\' preferences.<\\/p>\\r\\n\\r\\n<p>By using the \'Cache Capacity\' feature, you gain control over the diversity of responses that are cached and reduce the potential costs of repeated API calls. Please note that the \'Cache Capacity\' applies separately to each word or phrase in the basic strategy, and to each verse in the advanced strategy, allowing for fine-tuned control over the caching process.<\\/p>\\r\\n\\r\\n<p>However, keep in mind that setting the \'Cache Capacity\' too low might limit the variety of responses, while setting it too high may lead to increased caching costs. Therefore, it\'s crucial to find a balance that suits your specific needs and the nature of your application.<\\/p>\\\"\\n\\theading=\\\"h4\\\"\\n\\tclass=\\\"alert alert-info\\\"\\n\\tshowon=\\\"cache_behaviour:1[OR]cache_behaviour:2\\\"\\n\\/>\"', 1, '2023-07-06 23:50:48', '2023-07-07 00:05:15', 2, '', 1042, 'ac0bda15-7b1b-4426-877f-51bac4ff45c7', '', '', '', '', ''),
(3250, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'Response Retrieval', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"response_retrieval\\\"\\n\\tlabel=\\\"Response Retrieval\\\"\\n\\tdescription=\\\"Choose how cached responses are delivered: either a \'Total Retrieval\' of all relevant cached responses or a \'Random Retrieval\' of a single relevant response from the cache.\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"1|Random,2|Total\\\"\\n\\tdefault=\\\"1\\\"\\n\\tshowon=\\\"cache_behaviour:1[OR]cache_behaviour:2\\\"\\n\\trequired=\\\"true\\\"\\n\\/>\"', 1, '2023-07-07 00:02:16', '0000-00-00 00:00:00', 1, '', 1044, '69928772-73c3-4e45-b121-3b373472e3b6', '', '', '', '', ''),
(3251, '', '', '', '', '', '', '', '', '', '', '', '', '', '', 'Response Retrieval Note', 'NOT NULL', '', 14, '\"<field\\n\\ttype=\\\"note\\\"\\n\\tname=\\\"response_retrieval_note\\\"\\n\\tlabel=\\\"Response Retrieval\\\"\\n\\tdescription=\\\"<p>The \'Response Retrieval\' feature provides you with control over how cached responses are served when a cache hit occurs. You have two options to choose from:<\\/p>\\r\\n\\r\\n<ul>\\r\\n<li><strong>Total Retrieval:<\\/strong> This option delivers all cached responses that are relevant to a query. For instance, if multiple unique responses are stored in the cache for a particular word or verse, \'Total Retrieval\' will present all of these responses.<\\/li>\\r\\n<li><strong>Random Retrieval:<\\/strong> With this selection, the system will pick and present a single relevant response from the cache at random for a given query.<\\/li>\\r\\n<\\/ul>\\r\\n\\r\\n<p>These settings can be applied to both the \'Basic Caching - Words\\/Language\' and the \'Advanced Caching - Verse\\/Context\' strategies, adding an extra layer of flexibility to how you manage and utilize your cached data.<\\/p>\\r\\n\\r\\n<p>Remember, the choice between \'Total Retrieval\' and \'Random Retrieval\' can impact the user experience. \'Total Retrieval\' may provide a more comprehensive overview of possible responses, while \'Random Retrieval\' might offer a more streamlined and varied experience.<\\/p>\\\"\\n\\theading=\\\"h4\\\"\\n\\tclass=\\\"alert alert-info\\\"\\n\\tshowon=\\\"cache_behaviour:1[OR]cache_behaviour:2\\\"\\n\\/>\"', 1, '2023-07-07 00:03:55', '2023-07-07 00:04:45', 2, '', 1044, '57abdd2f-687a-49d7-ae83-b44d65abe876', '', '', '', '', ''),
(3252, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Prompt Author', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"name\\\"\\n\\tlabel=\\\"Author\\\"\\n\\tsize=\\\"10\\\"\\n\\tmaxlength=\\\"64\\\"\\n\\tdescription=\\\"Name\\\"\\n\\tclass=\\\"text_area\\\"\\n\\trequired=\\\"false\\\"\\n\\tfilter=\\\"STRING\\\"\\n\\tmessage=\\\"Error! Please add some text here.\\\"\\n\\thint=\\\"add the author name here... (optional)\\\"\\n\\tautocomplete=\\\"on\\\"\\n\\/>\"', 1, '2023-07-07 07:31:15', '2023-07-08 06:20:31', 5, '', 1043, '51e05bdb-4ec8-46dd-804c-339624d7d652', '', '', '', '', ''),
(3253, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Prompt Messages', 'NOT NULL', '', 35, '\"<field\\n\\ttype=\\\"subform\\\"\\n\\tname=\\\"messages\\\"\\n\\tlabel=\\\"Prompt Messages\\\"\\n\\tlayout=\\\"joomla.form.field.subform.repeatable\\\"\\n\\tmultiple=\\\"true\\\"\\n\\tbuttons=\\\"add,remove,move\\\"\\n\\tfields=\\\"3239,3244,3252\\\"\\n\\ticon=\\\"list\\\"\\n\\tmax=\\\"20\\\"\\n\\tmin=\\\"1\\\"\\n\\/>\"', 1, '2023-07-07 07:35:14', '2023-07-07 07:50:39', 6, '', 1045, 'd3e8b1c0-7052-4795-b5d3-08c7d0601d91', '', '', '', '', ''),
(3254, '', '', '', '', '', '', '', '', '', '', '', '', '', '', 'Prompt Integration Scope Details', 'NOT NULL', '', 14, '\"<field\\n\\ttype=\\\"note\\\"\\n\\tname=\\\"integration_note\\\"\\n\\tlabel=\\\"Prompt Integration Scope Details\\\"\\n\\tdescription=\\\"<p>The \'Prompt Integration Scope\' feature is instrumental in defining the scope of the Bible text that your prompt can integrate with when querying the OpenAI API. Depending on your selection, this directly impacts how the application interacts with OpenAI\'s services and how responses are cached and presented to the user.<\\/p>\\r\\n\\r\\n<ul>\\r\\n<li><strong>Word-Based:<\\/strong> If you select this option, your prompt will be available whenever a single word is selected within the application. This strategy is more granular and allows for highly targeted queries based on individual words. However, this option can lead to a higher number of API calls if the selected word varies frequently. Note that the caching behavior in this case will be based on the selected word(s).<\\/li>\\r\\n\\r\\n<li><strong>Verse-Based:<\\/strong> Opting for this will make your prompt available for entire verses. It does not target individual words within a verse but treats the verse as a whole. This approach results in fewer API calls as long as the verse remains the same. Note that caching in this mode will be linked to the specific verse, not to individual words in the verse. This option only utilizes the placeholder <b>[selected_verse]<\\/b>.<\\/li>\\r\\n\\r\\n<li><strong>Selection-Based:<\\/strong> With this selection, your prompt becomes available when one or more words across one or more verses are selected. This gives maximum flexibility but can also lead to increased API calls, especially if the selections change frequently. The caching strategy in this case will be tied to the specific word(s) and verse(s) selected.<\\/li>\\r\\n<\\/ul>\\r\\n\\r\\n<p>Choosing the right \'Prompt Integration Scope\' is vital as it directly affects the positioning and availability of the prompt in the GUI, the interaction with the OpenAI API, and the caching strategy and behavior. Be sure to select the option that best suits the nature of your queries and the needs of your users.<\\/p>\\\"\\n\\theading=\\\"h4\\\"\\n\\tclass=\\\"alert alert-info\\\"\\n\\/>\"', 1, '2023-07-07 14:49:31', '2023-07-07 14:49:53', 2, '', 1042, 'e1822195-d5cb-4d50-b562-59caf2e9d01a', '', '', '', '', ''),
(3255, '', '', '', '', '', '', '', '', '', '', '', '', '', '', 'Open AI Temperature (note)', 'NOT NULL', '', 14, '\"<field\\n\\ttype=\\\"note\\\"\\n\\tname=\\\"openai_temperature_note\\\"\\n\\tlabel=\\\"Temperature\\\"\\n\\tdescription=\\\"<p>The &quot;temperature&quot; is a parameter that controls the randomness of the model\'s output. Its value ranges between 0 and 2. A higher temperature value results in more randomness, while a lower value results in less randomness. This affects the selection of the next word during text generation.<\\/p>\\r\\n<ul>\\r\\n <li>At a higher value like 2, the model has a greater probability of picking less likely words, which may lead to more diverse and creative outputs.<\\/li>\\r\\n <li>At a lower value like 0.2, the model\'s output becomes more deterministic, primarily choosing words with the highest predicted probabilities, leading to more focused and predictable responses.<\\/li>\\r\\n<\\/ul>\\\"\\n\\theading=\\\"h4\\\"\\n\\tclass=\\\"alert alert-info\\\"\\n\\tshowon=\\\"enable_open_ai:1\\\"\\n\\/>\"', 1, '2023-07-08 19:37:29', '2023-07-08 21:29:40', 3, '', 1041, 'bf2d02a5-0c73-4128-81d0-c245636d2b0f', '', '', '', '', ''),
(3256, '', '', '', '', '', '', '', '', '', '', '', '', '', '', 'Open AI Max Tokens (note)', 'NOT NULL', '', 14, '\"<field\\n\\ttype=\\\"note\\\"\\n\\tname=\\\"openai_max_tokens_note\\\"\\n\\tlabel=\\\"Max Tokens\\\"\\n\\tdescription=\\\"<p>The &quot;max_tokens&quot; parameter sets the maximum number of tokens to generate in the chat completion. This is an optional parameter that defaults to infinity if not specified.<\\/p>\\r\\n<ul>\\r\\n <li>Note that the total length of both the input tokens and the generated tokens is limited by the model\'s context length. For instance, if a model has a context length of 100 tokens and you\'ve used 20 tokens in your input, you could generate up to 80 additional tokens.<\\/li>\\r\\n<\\/ul>\\\"\\n\\theading=\\\"h4\\\"\\n\\tclass=\\\"alert alert-info\\\"\\n\\tshowon=\\\"enable_open_ai:1\\\"\\n\\/>\"', 1, '2023-07-08 19:39:19', '2023-07-08 21:29:46', 3, '', 1041, '269b2f29-c907-4503-9c50-fedf2869dea3', '', '', '', '', ''),
(3257, '', '', '', '', '', '', '', '', 11, '', 'FLOAT', '', '', '', 'Open AI Top P', 'NOT NULL', '', 15, '\"<field\\n\\ttype=\\\"number\\\"\\n\\tname=\\\"openai_top_p\\\"\\n\\tlabel=\\\"Top P\\\"\\n\\tdefault=\\\"1\\\"\\n\\tdescription=\\\"The nucleus sampling parameter\\\"\\n\\tclass=\\\"text_area\\\"\\n\\tmin=\\\"0\\\"\\n\\tmax=\\\"1\\\"\\n\\tstep=\\\"0.1\\\"\\n\\tshowon=\\\"enable_open_ai:1\\\"\\n\\/>\"', 1, '2023-07-08 19:42:06', '2023-07-08 06:28:27', 1, '', 1041, '6b7e5601-70cb-4fe7-83cd-3bab161d1078', '', '', '', '', ''),
(3258, '', '', '', '', '', '', '', '', '', '', '', '', '', '', 'Open AI Top P (note)', 'NOT NULL', '', 14, '\"<field\\n\\ttype=\\\"note\\\"\\n\\tname=\\\"openai_top_p_note\\\"\\n\\tlabel=\\\"Top P\\\"\\n\\tdescription=\\\"<p>The &quot;top_p&quot; parameter is used for &quot;nucleus sampling,&quot; an alternative to the temperature-based sampling. It defines a threshold for the cumulative probability of the chosen tokens. Rather than considering all possible tokens for the next word, it only considers the smallest set of tokens whose cumulative probability exceeds the set &quot;top_p&quot; value.<\\/p>\\r\\n<ul>\\r\\n <li>Setting &quot;top_p&quot; to 0.1 means the model will only consider the tokens comprising the top 10% probability mass for the next word.<\\/li>\\r\\n <li>If &quot;top_p&quot; is set to 0.9, the model considers a wider range of tokens for the next word but still limits to those within the top 90% of the probability distribution.<\\/li>\\r\\n<\\/ul>\\\"\\n\\theading=\\\"h4\\\"\\n\\tclass=\\\"alert alert-info\\\"\\n\\tshowon=\\\"enable_open_ai:1\\\"\\n\\/>\"', 1, '2023-07-08 19:42:54', '2023-07-08 06:28:27', 1, '', 1041, 'a423fcba-9fca-4957-a019-56216ed54d56', '', '', '', '', ''),
(3259, '', '', '', '', '', '', '', '', 7, '', 'INT', '', '', '', 'Open AI n', 'NOT NULL', '', 15, '\"<field\\n\\ttype=\\\"number\\\"\\n\\tname=\\\"openai_n\\\"\\n\\tlabel=\\\"Number AI Response Per\\/Prompt\\\"\\n\\tdefault=\\\"1\\\"\\n\\tdescription=\\\"The number of chat completion choices to generate\\\"\\n\\tclass=\\\"text_area\\\"\\n\\tmin=\\\"1\\\"\\n\\tmax=\\\"10\\\"\\n\\tstep=\\\"1\\\"\\n\\tshowon=\\\"enable_open_ai:1\\\"\\n\\/>\"', 1, '2023-07-08 19:44:39', '2023-07-08 19:45:56', 4, '', 1041, '99d882cc-4363-4521-b8a0-f2db01853899', '', '', '', '', ''),
(3260, '', '', '', '', '', '', '', '', '', '', '', '', '', '', 'Open AI n (note)', 'NOT NULL', '', 14, '\"<field\\n\\ttype=\\\"note\\\"\\n\\tname=\\\"openai_n_note\\\"\\n\\tlabel=\\\"Number AI Response Per\\/Prompt\\\"\\n\\tdescription=\\\"<p>The &quot;n&quot; parameter determines how many independent completions to generate for each input message. This can be used when you want multiple distinct responses for a single prompt.<\\/p>\\r\\n<ul>\\r\\n <li>Setting &quot;n&quot; to 3, for instance, would make the model generate 3 separate responses for each input message.<\\/li>\\r\\n<\\/ul>\\\"\\n\\theading=\\\"h4\\\"\\n\\tclass=\\\"alert alert-info\\\"\\n\\tshowon=\\\"enable_open_ai:1\\\"\\n\\/>\"', 1, '2023-07-08 19:47:04', '2023-07-08 19:45:56', 1, '', 1041, '1a6058b0-0187-4fde-ac0b-81ae24b4bf52', '', '', '', '', ''),
(3261, '', '', '', '', '', '', '', '', 11, '', 'FLOAT', '', '', '', 'Open AI Presence Penalty', 'NOT NULL', '', 15, '\"<field\\n\\ttype=\\\"number\\\"\\n\\tname=\\\"openai_presence_penalty\\\"\\n\\tlabel=\\\"Presence Penalty\\\"\\n\\tdefault=\\\"0\\\"\\n\\tdescription=\\\"Penalty for new tokens based on whether they appear in the text\\\"\\n\\tclass=\\\"text_area\\\"\\n\\tmin=\\\"-2\\\"\\n\\tmax=\\\"2\\\"\\n\\tstep=\\\"0.1\\\"\\n\\tshowon=\\\"enable_open_ai:1\\\"\\n\\/>\"', 1, '2023-07-08 19:48:43', '2023-07-08 06:28:27', 1, '', 1041, 'f4a24d2e-e457-4874-8c41-8d5b642473c6', '', '', '', '', ''),
(3262, '', '', '', '', '', '', '', '', 11, '', 'FLOAT', '', '', '', 'Open AI Frequency Penalty', 'NOT NULL', '', 15, '\"<field\\n\\ttype=\\\"number\\\"\\n\\tname=\\\"openai_frequency_penalty\\\"\\n\\tlabel=\\\"Frequency Penalty\\\"\\n\\tdefault=\\\"0\\\"\\n\\tdescription=\\\"Penalty for new tokens based on their frequency in the text\\\"\\n\\tclass=\\\"text_area\\\"\\n\\tmin=\\\"-2\\\"\\n\\tmax=\\\"2\\\"\\n\\tstep=\\\"0.1\\\"\\n\\tshowon=\\\"enable_open_ai:1\\\"\\n\\/>\"', 1, '2023-07-08 19:49:47', '2023-07-08 06:28:27', 1, '', 1041, 'ce6b2faa-6584-4db7-b1f4-1b5931e827fd', '', '', '', '', ''),
(3263, '', '', '', '', '', '', '', '', '', '', '', '', '', '', 'Open AI Presence Penalty (note)', 'NOT NULL', '', 14, '\"<field\\n\\ttype=\\\"note\\\"\\n\\tname=\\\"openai_presence_penalty_note\\\"\\n\\tlabel=\\\"Presence Penalty\\\"\\n\\tdescription=\\\"<p>The &quot;presence_penalty&quot; is an optional parameter that defaults to 0. This is a value between -2.0 and 2.0. Positive values penalize new tokens based on whether they appear in the text so far, increasing the model\'s likelihood to talk about new topics.<\\/p>\\r\\n<ul>\\r\\n <li>For example, a high presence penalty encourages the model to generate text involving a wider variety of topics or themes, rather than focusing on a single topic or repeatedly using the same phrases.<\\/li>\\r\\n<\\/ul>\\\"\\n\\theading=\\\"h4\\\"\\n\\tclass=\\\"alert alert-info\\\"\\n\\tshowon=\\\"enable_open_ai:1\\\"\\n\\/>\"', 1, '2023-07-08 19:50:44', '2023-07-08 06:28:27', 1, '', 1041, 'f389f296-d5ed-441b-b17b-4155e56e97c7', '', '', '', '', ''),
(3264, '', '', '', '', '', '', '', '', '', '', '', '', '', '', 'Open AI Frequency Penalty (note)', 'NOT NULL', '', 14, '\"<field\\n\\ttype=\\\"note\\\"\\n\\tname=\\\"openai_frequency_penalty_note\\\"\\n\\tlabel=\\\"Frequency Penalty\\\"\\n\\tdescription=\\\"<p>The &quot;frequency_penalty&quot; is another optional parameter that defaults to 0. This is also a value between -2.0 and 2.0. Positive values penalize new tokens based on their existing frequency in the text so far, decreasing the model\'s likelihood to repeat the same line verbatim.<\\/p>\\r\\n<ul>\\r\\n <li>For example, a high frequency penalty discourages the model from excessively repeating the same words or phrases, encouraging it to produce more diverse and creative text.<\\/li>\\r\\n<\\/ul>\\\"\\n\\theading=\\\"h4\\\"\\n\\tclass=\\\"alert alert-info\\\"\\n\\tshowon=\\\"enable_open_ai:1\\\"\\n\\/>\"', 1, '2023-07-08 19:51:24', '2023-07-08 19:52:21', 2, '', 1041, '974ffa2f-477b-4ede-905b-a55dc7563d13', '', '', '', '', ''),
(3265, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'Max Tokens (override)', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"max_tokens_override\\\"\\n\\tlabel=\\\"Max Tokens\\\"\\n\\tdescription=\\\"Would you like to override the global max tokens value.\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"1|Override,|Use Global\\\"\\n\\tdefault=\\\"\\\"\\n\\/>\"', 1, '2023-07-08 21:24:34', '2023-07-10 09:04:34', 2, '', 1046, '5f2e8efa-f74c-4457-9214-cac366265e1a', '', '', '', '', ''),
(3266, '', '', '', '', '', '', '', '', 11, '', 'INT', '', '', '', 'Max Tokens (prompt)', 'NOT NULL', '', 15, '\"<field\\n\\ttype=\\\"number\\\"\\n\\tname=\\\"max_tokens\\\"\\n\\tlabel=\\\"Max Tokens\\\"\\n\\tdefault=\\\"300\\\"\\n\\tdescription=\\\"Maximum number of tokens to generate.\\\"\\n\\tclass=\\\"text_area\\\"\\n\\tmin=\\\"0\\\"\\n\\tmax=\\\"2048\\\"\\n\\tstep=\\\"12\\\"\\n\\tshowon=\\\"max_tokens_override:1\\\"\\n\\/>\"', 1, '2023-07-08 21:25:46', '2023-07-08 21:26:46', 2, '', 1041, '20cd21e3-3cb9-4969-a631-a8e247829519', '', '', '', '', ''),
(3267, '', '', '', '', '', '', '', '', '', '', '', '', '', '', 'Max Tokens (note - prompt)', 'NOT NULL', '', 14, '\"<field\\n\\ttype=\\\"note\\\"\\n\\tname=\\\"max_tokens_note\\\"\\n\\tlabel=\\\"Max Tokens\\\"\\n\\tdescription=\\\"<p>The &quot;max_tokens&quot; parameter sets the maximum number of tokens to generate in the chat completion. This is an optional parameter that defaults to infinity if not specified.<\\/p>\\r\\n<ul>\\r\\n <li>Note that the total length of both the input tokens and the generated tokens is limited by the model\'s context length. For instance, if a model has a context length of 100 tokens and you\'ve used 20 tokens in your input, you could generate up to 80 additional tokens.<\\/li>\\r\\n<\\/ul>\\\"\\n\\theading=\\\"h4\\\"\\n\\tclass=\\\"alert alert-info\\\"\\n\\tshowon=\\\"max_tokens_override:1\\\"\\n\\/>\"', 1, '2023-07-08 21:26:25', '2023-07-08 19:40:05', 1, '', 1041, '4e28b295-d3b8-47e3-bf23-c1a03eb1dafd', '', '', '', '', ''),
(3268, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'Temperature (override)', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"temperature_override\\\"\\n\\tlabel=\\\"Temperature\\\"\\n\\tdescription=\\\"Would you like to override the global temperature value.\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"1|Override,|Use Global\\\"\\n\\tdefault=\\\"\\\"\\n\\/>\"', 1, '2023-07-08 21:28:00', '2023-07-10 09:04:49', 2, '', 1046, '40687b85-e2a9-4432-ba9b-e9a64bf643e8', '', '', '', '', ''),
(3269, '', '', '', '', '', '', '', '', 11, '', 'FLOAT', '', '', '', 'Temperature (prompt)', 'NOT NULL', '', 15, '\"<field\\n\\ttype=\\\"number\\\"\\n\\tname=\\\"temperature\\\"\\n\\tlabel=\\\"Temperature\\\"\\n\\tdefault=\\\"1\\\"\\n\\tdescription=\\\"The sampling temperature to use\\\"\\n\\tclass=\\\"text_area\\\"\\n\\tmin=\\\"0\\\"\\n\\tmax=\\\"2\\\"\\n\\tstep=\\\"0.1\\\"\\n\\tshowon=\\\"temperature_override:1\\\"\\n\\/>\"', 1, '2023-07-08 21:28:32', '2023-07-08 06:28:27', 1, '', 1041, '14855f78-fc97-4e67-9769-ea1bfb29477d', '', '', '', '', ''),
(3270, '', '', '', '', '', '', '', '', '', '', '', '', '', '', 'Temperature (note - prompt)', 'NOT NULL', '', 14, '\"<field\\n\\ttype=\\\"note\\\"\\n\\tname=\\\"temperature_note\\\"\\n\\tlabel=\\\"Temperature\\\"\\n\\tdescription=\\\"<p>The &quot;temperature&quot; is a parameter that controls the randomness of the model\'s output. Its value ranges between 0 and 2. A higher temperature value results in more randomness, while a lower value results in less randomness. This affects the selection of the next word during text generation.<\\/p>\\r\\n<ul>\\r\\n <li>At a higher value like 2, the model has a greater probability of picking less likely words, which may lead to more diverse and creative outputs.<\\/li>\\r\\n <li>At a lower value like 0.2, the model\'s output becomes more deterministic, primarily choosing words with the highest predicted probabilities, leading to more focused and predictable responses.<\\/li>\\r\\n<\\/ul>\\\"\\n\\theading=\\\"h4\\\"\\n\\tclass=\\\"alert alert-info\\\"\\n\\tshowon=\\\"temperature_override:1\\\"\\n\\/>\"', 1, '2023-07-08 21:29:28', '2023-07-08 19:37:56', 1, '', 1041, '2bf43d1d-1dbc-41c1-83d1-aa050d850f50', '', '', '', '', ''),
(3271, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'Top P (override)', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"top_p_override\\\"\\n\\tlabel=\\\"Top P\\\"\\n\\tdescription=\\\"Would you like to override the global top p value.\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"1|Override,|Use Global\\\"\\n\\tdefault=\\\"\\\"\\n\\/>\"', 1, '2023-07-08 21:30:59', '2023-07-10 09:05:41', 2, '', 1046, '9524dbb5-1d23-437d-95a1-6dd05bf17461', '', '', '', '', ''),
(3272, '', '', '', '', '', '', '', '', 11, '', 'FLOAT', '', '', '', 'Top P (prompt)', 'NOT NULL', '', 15, '\"<field\\n\\ttype=\\\"number\\\"\\n\\tname=\\\"top_p\\\"\\n\\tlabel=\\\"Top P\\\"\\n\\tdefault=\\\"1\\\"\\n\\tdescription=\\\"The nucleus sampling parameter\\\"\\n\\tclass=\\\"text_area\\\"\\n\\tmin=\\\"0\\\"\\n\\tmax=\\\"1\\\"\\n\\tstep=\\\"0.1\\\"\\n\\tshowon=\\\"top_p_override:1\\\"\\n\\/>\"', 1, '2023-07-08 21:31:34', '2023-07-08 21:31:50', 2, '', 1041, '86834ef2-49f2-4367-b1db-2e4dc66dd8f8', '', '', '', '', ''),
(3273, '', '', '', '', '', '', '', '', '', '', '', '', '', '', 'Top P (note - prompt)', 'NOT NULL', '', 14, '\"<field\\n\\ttype=\\\"note\\\"\\n\\tname=\\\"top_p_note\\\"\\n\\tlabel=\\\"Top P\\\"\\n\\tdescription=\\\"<p>The &quot;top_p&quot; parameter is used for &quot;nucleus sampling,&quot; an alternative to the temperature-based sampling. It defines a threshold for the cumulative probability of the chosen tokens. Rather than considering all possible tokens for the next word, it only considers the smallest set of tokens whose cumulative probability exceeds the set &quot;top_p&quot; value.<\\/p>\\r\\n<ul>\\r\\n <li>Setting &quot;top_p&quot; to 0.1 means the model will only consider the tokens comprising the top 10% probability mass for the next word.<\\/li>\\r\\n <li>If &quot;top_p&quot; is set to 0.9, the model considers a wider range of tokens for the next word but still limits to those within the top 90% of the probability distribution.<\\/li>\\r\\n<\\/ul>\\\"\\n\\theading=\\\"h4\\\"\\n\\tclass=\\\"alert alert-info\\\"\\n\\tshowon=\\\"top_p_override:1\\\"\\n\\/>\"', 1, '2023-07-08 21:32:23', '2023-07-08 06:28:27', 1, '', 1041, '5d0ee215-45ae-4ec5-aefe-ce42f105fc72', '', '', '', '', ''),
(3274, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'Number (override)', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"n_override\\\"\\n\\tlabel=\\\"Number AI Response Per\\/Prompt\\\"\\n\\tdescription=\\\"Would you like to override the global n value.\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"1|Override,|Use Global\\\"\\n\\tdefault=\\\"\\\"\\n\\/>\"', 1, '2023-07-08 21:34:28', '2023-07-10 09:06:03', 2, '', 1046, 'c9252c5a-d367-4656-b649-f0937503145c', '', '', '', '', ''),
(3275, '', '', '', '', '', '', '', '', 7, '', 'INT', '', '', '', 'Number (pompt)', 'NOT NULL', '', 15, '\"<field\\n\\ttype=\\\"number\\\"\\n\\tname=\\\"n\\\"\\n\\tlabel=\\\"Number AI Response Per\\/Prompt\\\"\\n\\tdefault=\\\"1\\\"\\n\\tdescription=\\\"The number of chat completion choices to generate\\\"\\n\\tclass=\\\"text_area\\\"\\n\\tmin=\\\"1\\\"\\n\\tmax=\\\"10\\\"\\n\\tstep=\\\"1\\\"\\n\\tshowon=\\\"n_override:1\\\"\\n\\/>\"', 1, '2023-07-08 21:34:42', '2023-07-08 19:45:56', 1, '', 1041, 'cd79e71a-2258-4c6d-b9d0-d78917d1f5ab', '', '', '', '', ''),
(3276, '', '', '', '', '', '', '', '', '', '', '', '', '', '', 'Number (note - prompt)', 'NOT NULL', '', 14, '\"<field\\n\\ttype=\\\"note\\\"\\n\\tname=\\\"n_note\\\"\\n\\tlabel=\\\"Number AI Response Per\\/Prompt\\\"\\n\\tdescription=\\\"<p>The &quot;n&quot; parameter determines how many independent completions to generate for each input message. This can be used when you want multiple distinct responses for a single prompt.<\\/p>\\r\\n<ul>\\r\\n <li>Setting &quot;n&quot; to 3, for instance, would make the model generate 3 separate responses for each input message.<\\/li>\\r\\n<\\/ul>\\\"\\n\\theading=\\\"h4\\\"\\n\\tclass=\\\"alert alert-info\\\"\\n\\tshowon=\\\"n_override:1\\\"\\n\\/>\"', 1, '2023-07-08 21:35:27', '2023-07-08 21:35:33', 2, '', 1041, 'cbc8655b-c7fa-4b35-b1ec-9ce32dd17e5a', '', '', '', '', ''),
(3277, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'Presence Penalty (override)', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"presence_penalty_override\\\"\\n\\tlabel=\\\"Presence Penalty\\\"\\n\\tdescription=\\\"Would you like to override the global presence penalty value.\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"1|Override,|Use Global\\\"\\n\\tdefault=\\\"\\\"\\n\\/>\"', 1, '2023-07-08 21:37:11', '2023-07-10 09:06:14', 2, '', 1046, '8bde9292-ec91-4c3f-ae11-24997997cbb1', '', '', '', '', ''),
(3278, '', '', '', '', '', '', '', '', 11, '', 'FLOAT', '', '', '', 'Presence Penalty (prompt)', 'NOT NULL', '', 15, '\"<field\\n\\ttype=\\\"number\\\"\\n\\tname=\\\"presence_penalty\\\"\\n\\tlabel=\\\"Presence Penalty\\\"\\n\\tdefault=\\\"0\\\"\\n\\tdescription=\\\"Penalty for new tokens based on whether they appear in the text\\\"\\n\\tclass=\\\"text_area\\\"\\n\\tmin=\\\"-2\\\"\\n\\tmax=\\\"2\\\"\\n\\tstep=\\\"0.1\\\"\\n\\tshowon=\\\"presence_penalty_override:1\\\"\\n\\/>\"', 1, '2023-07-08 21:37:20', '2023-07-08 21:37:25', 2, '', 1041, '19e2b4ba-0a4a-4ead-89f6-c5e1339b686a', '', '', '', '', ''),
(3279, '', '', '', '', '', '', '', '', '', '', '', '', '', '', 'Presence Penalty (note - prompt)', 'NOT NULL', '', 14, '\"<field\\n\\ttype=\\\"note\\\"\\n\\tname=\\\"presence_penalty_note\\\"\\n\\tlabel=\\\"Presence Penalty\\\"\\n\\tdescription=\\\"<p>The &quot;presence_penalty&quot; is an optional parameter that defaults to 0. This is a value between -2.0 and 2.0. Positive values penalize new tokens based on whether they appear in the text so far, increasing the model\'s likelihood to talk about new topics.<\\/p>\\r\\n<ul>\\r\\n <li>For example, a high presence penalty encourages the model to generate text involving a wider variety of topics or themes, rather than focusing on a single topic or repeatedly using the same phrases.<\\/li>\\r\\n<\\/ul>\\\"\\n\\theading=\\\"h4\\\"\\n\\tclass=\\\"alert alert-info\\\"\\n\\tshowon=\\\"presence_penalty_override:1\\\"\\n\\/>\"', 1, '2023-07-08 21:37:56', '2023-07-08 21:38:01', 2, '', 1041, '6774f513-2d08-473e-88a2-0afe1af16ccf', '', '', '', '', ''),
(3280, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'Frequency Penalty (override)', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"frequency_penalty_override\\\"\\n\\tlabel=\\\"Frequency Penalty\\\"\\n\\tdescription=\\\"Would you like to override the global frequency penalty value.\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"1|Override,|Use Global\\\"\\n\\tdefault=\\\"\\\"\\n\\/>\"', 1, '2023-07-08 21:39:12', '2023-07-10 09:06:24', 3, '', 1046, '4d7afc99-c3ee-446b-98b0-73d525695b6e', '', '', '', '', ''),
(3281, '', '', '', '', '', '', '', '', 11, '', 'FLOAT', '', '', '', 'Frequency Penalty (prompt)', 'NOT NULL', '', 15, '\"<field\\n\\ttype=\\\"number\\\"\\n\\tname=\\\"frequency_penalty\\\"\\n\\tlabel=\\\"Frequency Penalty\\\"\\n\\tdefault=\\\"0\\\"\\n\\tdescription=\\\"Penalty for new tokens based on their frequency in the text\\\"\\n\\tclass=\\\"text_area\\\"\\n\\tmin=\\\"-2\\\"\\n\\tmax=\\\"2\\\"\\n\\tstep=\\\"0.1\\\"\\n\\tshowon=\\\"frequency_penalty_override:1\\\"\\n\\/>\"', 1, '2023-07-08 21:39:20', '2023-07-08 21:39:29', 2, '', 1041, '1d4138b6-7bfd-431f-a0bb-496518e44600', '', '', '', '', ''),
(3282, '', '', '', '', '', '', '', '', '', '', '', '', '', '', 'Frequency Penalty (note - prompt)', 'NOT NULL', '', 14, '\"<field\\n\\ttype=\\\"note\\\"\\n\\tname=\\\"frequency_penalty_note\\\"\\n\\tlabel=\\\"Frequency Penalty\\\"\\n\\tdescription=\\\"<p>The &quot;frequency_penalty&quot; is another optional parameter that defaults to 0. This is also a value between -2.0 and 2.0. Positive values penalize new tokens based on their existing frequency in the text so far, decreasing the model\'s likelihood to repeat the same line verbatim.<\\/p>\\r\\n<ul>\\r\\n <li>For example, a high frequency penalty discourages the model from excessively repeating the same words or phrases, encouraging it to produce more diverse and creative text.<\\/li>\\r\\n<\\/ul>\\\"\\n\\theading=\\\"h4\\\"\\n\\tclass=\\\"alert alert-info\\\"\\n\\tshowon=\\\"frequency_penalty_override:1\\\"\\n\\/>\"', 1, '2023-07-08 21:40:00', '2023-07-08 21:40:12', 2, '', 1041, 'c3594d34-bb07-4446-be6d-ea1fd239c689', '', '', '', '', ''),
(3283, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'Prompt Tokens', 'NOT NULL', '', 15, '\"<field\\n\\ttype=\\\"number\\\"\\n\\tname=\\\"prompt_tokens\\\"\\n\\tlabel=\\\"Prompt Tokens\\\"\\n\\tdefault=\\\"300\\\"\\n\\tdescription=\\\"Prompt number of tokens used.\\\"\\n\\tclass=\\\"text_area\\\"\\n\\tmin=\\\"0\\\"\\n\\tmax=\\\"2048\\\"\\n\\tstep=\\\"1\\\"\\n\\/>\"', 1, '2023-07-09 17:02:42', '2023-07-08 21:26:46', 1, '', 1041, '45196d6b-d9d4-4f0b-beef-d61ebc591ef2', '', '', '', '', ''),
(3284, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'Completion Tokens', 'NOT NULL', '', 15, '\"<field\\n\\ttype=\\\"number\\\"\\n\\tname=\\\"completion_tokens\\\"\\n\\tlabel=\\\"Completion Tokens\\\"\\n\\tdefault=\\\"300\\\"\\n\\tdescription=\\\"Completion number of tokens used.\\\"\\n\\tclass=\\\"text_area\\\"\\n\\tmin=\\\"0\\\"\\n\\tmax=\\\"2048\\\"\\n\\tstep=\\\"1\\\"\\n\\/>\"', 1, '2023-07-09 17:03:14', '2023-07-08 21:26:46', 1, '', 1041, 'cc33d028-3381-458c-adfe-dd18283d168f', '', '', '', '', ''),
(3285, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'Total Tokens', 'NOT NULL', '', 15, '\"<field\\n\\ttype=\\\"number\\\"\\n\\tname=\\\"total_tokens\\\"\\n\\tlabel=\\\"Total Tokens\\\"\\n\\tdefault=\\\"300\\\"\\n\\tdescription=\\\"Total number of tokens used.\\\"\\n\\tclass=\\\"text_area\\\"\\n\\tmin=\\\"0\\\"\\n\\tmax=\\\"2048\\\"\\n\\tstep=\\\"1\\\"\\n\\/>\"', 1, '2023-07-09 17:04:00', '2023-07-08 21:26:46', 1, '', 1041, '7cbad073-7b58-4df2-9344-975f1eac7d49', '', '', '', '', ''),
(3286, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', 2, '', '', 'Response ID', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"response_id\\\"\\n\\tlabel=\\\"Response ID\\\"\\n\\tsize=\\\"200\\\"\\n\\tmaxlength=\\\"200\\\"\\n\\tdescription=\\\"The response ID\\\"\\n\\tclass=\\\"text_area\\\"\\n\\treadonly=\\\"true\\\"\\n\\tdisabled=\\\"true\\\"\\n\\tfilter=\\\"STRING\\\"\\n\\tmessage=\\\"Error! Please add some text here.\\\"\\n\\thint=\\\"auto assigned id\\\"\\n\\/>\"', 1, '2023-07-09 17:13:35', '2023-07-09 17:26:55', 5, '', 1041, 'd8429674-cbbb-4810-ab11-e0f35733e741', '', '', '', '', ''),
(3287, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', 2, '', '', 'Response object', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"response_object\\\"\\n\\tlabel=\\\"Response object (end-point)\\\"\\n\\tsize=\\\"200\\\"\\n\\tmaxlength=\\\"200\\\"\\n\\tdescription=\\\"The response object\\\"\\n\\tclass=\\\"text_area\\\"\\n\\tfilter=\\\"STRING\\\"\\n\\tmessage=\\\"Error! Please add some text here.\\\"\\n\\thint=\\\"end-point\\\"\\n\\/>\"', 1, '2023-07-09 17:16:36', '2023-07-09 17:46:51', 4, '', 1041, '326c6b2c-4c6b-4582-af1f-2735619f0b14', '', '', '', '', ''),
(3288, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', 2, '', '', 'Response model', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"response_model\\\"\\n\\tlabel=\\\"Response model\\\"\\n\\tsize=\\\"200\\\"\\n\\tmaxlength=\\\"200\\\"\\n\\tdescription=\\\"The response model\\\"\\n\\tclass=\\\"text_area\\\"\\n\\tfilter=\\\"STRING\\\"\\n\\thint=\\\"gpt-4\\\"\\n\\/>\"', 1, '2023-07-09 17:18:26', '2023-07-09 17:46:39', 4, '', 1041, 'e75ca941-207c-4114-885e-8bb2e3f84cff', '', '', '', '', ''),
(3289, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', 2, '', '', 'Response created', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"response_created\\\"\\n\\tlabel=\\\"Response created\\\"\\n\\tsize=\\\"200\\\"\\n\\tmaxlength=\\\"200\\\"\\n\\tdescription=\\\"The response created\\\"\\n\\tclass=\\\"text_area\\\"\\n\\tfilter=\\\"STRING\\\"\\n\\thint=\\\"a time stamp\\\"\\n\\/>\"', 1, '2023-07-09 17:20:31', '2023-07-09 17:46:22', 3, '', 1041, '4b26801d-82b4-4659-b6a7-cd37c989ebc7', '', '', '', '', ''),
(3290, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', 2, '', '', 'Open AI Response', 'NOT NULL', '', 6, '\"<field\\n\\ttype=\\\"openairesponses\\\"\\n\\tname=\\\"open_ai_response\\\"\\n\\tlabel=\\\"Open AI Response\\\"\\n\\tclass=\\\"list_class\\\"\\n\\tmultiple=\\\"false\\\"\\n\\tdefault=\\\"0\\\"\\n\\trequired=\\\"true\\\"\\n\\textends=\\\"list\\\"\\n\\ttable=\\\"#__###component###_open_ai_response\\\"\\n\\tcomponent=\\\"com_###component###\\\"\\n\\tview=\\\"open_ai_response\\\"\\n\\tviews=\\\"open_ai_responses\\\"\\n\\tvalue_field=\\\"response_id\\\"\\n\\tkey_field=\\\"response_id\\\"\\n\\tprime_php=\\\"1\\\"\\n\\ttype_php_1=\\\"__.o0=base64=Oo.__Ly8gR2V0IHRoZSB1c2VyIG9iamVjdC4NCgkJJHVzZXIgPSBKRmFjdG9yeTo6Z2V0VXNlcigpOw0KCQkvLyBHZXQgdGhlIGRhdGFic2Ugb2JqZWN0Lg0KCQkkZGIgPSBKRmFjdG9yeTo6Z2V0REJPKCk7DQoJCSRxdWVyeSA9ICRkYi0+Z2V0UXVlcnkodHJ1ZSk7DQoJCSRxdWVyeS0+c2VsZWN0KCRkYi0+cXVvdGVOYW1lKGFycmF5KCdhLiMjI0lEIyMjJywnYS4jIyNURVhUIyMjJyksYXJyYXkoJyMjI0lEIyMjJywnIyMjQ09ERV9URVhUIyMjJykpKTsNCgkJJHF1ZXJ5LT5mcm9tKCRkYi0+cXVvdGVOYW1lKCcjIyNUQUJMRSMjIycsICdhJykpOw0KCQkkcXVlcnktPm9yZGVyKCdhLiMjI1RFWFQjIyMgQVNDJyk7DQoJCS8vIEltcGxlbWVudCBWaWV3IExldmVsIEFjY2VzcyAoaWYgc2V0IGluIHRhYmxlKQ0KCQlpZiAoISR1c2VyLT5hdXRob3Jpc2UoJ2NvcmUub3B0aW9ucycsICdbW1tjb21fY29tcG9uZW50XV1dJykpDQoJCXsNCgkJCSRjb2x1bW5zID0gJGRiLT5nZXRUYWJsZUNvbHVtbnMoJyMjI1RBQkxFIyMjJyk7DQoJCQlpZihpc3NldCgkY29sdW1uc1snYWNjZXNzJ10pKQ0KCQkJew0KCQkJCSRncm91cHMgPSBpbXBsb2RlKCcsJywgJHVzZXItPmdldEF1dGhvcmlzZWRWaWV3TGV2ZWxzKCkpOw0KCQkJCSRxdWVyeS0+d2hlcmUoJ2EuYWNjZXNzIElOICgnIC4gJGdyb3VwcyAuICcpJyk7DQoJCQl9DQoJCX0NCgkJJGRiLT5zZXRRdWVyeSgoc3RyaW5nKSRxdWVyeSk7DQoJCSRpdGVtcyA9ICRkYi0+bG9hZE9iamVjdExpc3QoKTsNCgkJJG9wdGlvbnMgPSBhcnJheSgpOw0KCQlpZiAoJGl0ZW1zKQ0KCQl7DQoJCQlpZiAoJHRoaXMtPm11bHRpcGxlID09PSBmYWxzZSkNCgkJCXsNCgkJCQkkb3B0aW9uc1tdID0gSkh0bWw6Ol8oJ3NlbGVjdC5vcHRpb24nLCAnJywgSlRleHQ6Ol8oJ1NlbGVjdCBhbiBvcHRpb24nKSk7DQoJCQl9DQoJCQlmb3JlYWNoKCRpdGVtcyBhcyAkaXRlbSkNCgkJCXsNCgkJCQkkb3B0aW9uc1tdID0gSkh0bWw6Ol8oJ3NlbGVjdC5vcHRpb24nLCAkaXRlbS0+IyMjSUQjIyMsICRpdGVtLT4jIyNDT0RFX1RFWFQjIyMpOw0KCQkJfQ0KCQl9DQoJCXJldHVybiAkb3B0aW9uczs=\\\"\\n\\/>\"', 1, '2023-07-09 17:28:13', '2023-07-09 17:32:29', 3, '', 1047, '07de38fc-c205-4b13-a5a0-4044440fd53a', '', '', '', '', ''),
(3291, '', '', '', '', '', '', '', '', 'Other', 36, 'VARCHAR', 2, '', '', 'Prompt', 'NOT NULL', '', 6, '\"<field\\n\\ttype=\\\"prompts\\\"\\n\\tname=\\\"prompt\\\"\\n\\tlabel=\\\"Prompt\\\"\\n\\tclass=\\\"list_class\\\"\\n\\tmultiple=\\\"false\\\"\\n\\tdefault=\\\"0\\\"\\n\\trequired=\\\"true\\\"\\n\\textends=\\\"list\\\"\\n\\ttable=\\\"#__###component###_prompt\\\"\\n\\tcomponent=\\\"com_###component###\\\"\\n\\tview=\\\"prompt\\\"\\n\\tviews=\\\"prompts\\\"\\n\\tvalue_field=\\\"name\\\"\\n\\tkey_field=\\\"guid\\\"\\n\\tprime_php=\\\"1\\\"\\n\\ttype_php_1=\\\"__.o0=base64=Oo.__Ly8gR2V0IHRoZSB1c2VyIG9iamVjdC4NCgkJJHVzZXIgPSBKRmFjdG9yeTo6Z2V0VXNlcigpOw0KCQkvLyBHZXQgdGhlIGRhdGFic2Ugb2JqZWN0Lg0KCQkkZGIgPSBKRmFjdG9yeTo6Z2V0REJPKCk7DQoJCSRxdWVyeSA9ICRkYi0+Z2V0UXVlcnkodHJ1ZSk7DQoJCSRxdWVyeS0+c2VsZWN0KCRkYi0+cXVvdGVOYW1lKGFycmF5KCdhLiMjI0lEIyMjJywnYS4jIyNURVhUIyMjJyksYXJyYXkoJyMjI0lEIyMjJywnIyMjQ09ERV9URVhUIyMjJykpKTsNCgkJJHF1ZXJ5LT5mcm9tKCRkYi0+cXVvdGVOYW1lKCcjIyNUQUJMRSMjIycsICdhJykpOw0KCQkkcXVlcnktPm9yZGVyKCdhLiMjI1RFWFQjIyMgQVNDJyk7DQoJCS8vIEltcGxlbWVudCBWaWV3IExldmVsIEFjY2VzcyAoaWYgc2V0IGluIHRhYmxlKQ0KCQlpZiAoISR1c2VyLT5hdXRob3Jpc2UoJ2NvcmUub3B0aW9ucycsICdbW1tjb21fY29tcG9uZW50XV1dJykpDQoJCXsNCgkJCSRjb2x1bW5zID0gJGRiLT5nZXRUYWJsZUNvbHVtbnMoJyMjI1RBQkxFIyMjJyk7DQoJCQlpZihpc3NldCgkY29sdW1uc1snYWNjZXNzJ10pKQ0KCQkJew0KCQkJCSRncm91cHMgPSBpbXBsb2RlKCcsJywgJHVzZXItPmdldEF1dGhvcmlzZWRWaWV3TGV2ZWxzKCkpOw0KCQkJCSRxdWVyeS0+d2hlcmUoJ2EuYWNjZXNzIElOICgnIC4gJGdyb3VwcyAuICcpJyk7DQoJCQl9DQoJCX0NCgkJJGRiLT5zZXRRdWVyeSgoc3RyaW5nKSRxdWVyeSk7DQoJCSRpdGVtcyA9ICRkYi0+bG9hZE9iamVjdExpc3QoKTsNCgkJJG9wdGlvbnMgPSBhcnJheSgpOw0KCQlpZiAoJGl0ZW1zKQ0KCQl7DQoJCQlpZiAoJHRoaXMtPm11bHRpcGxlID09PSBmYWxzZSkNCgkJCXsNCgkJCQkkb3B0aW9uc1tdID0gSkh0bWw6Ol8oJ3NlbGVjdC5vcHRpb24nLCAnJywgSlRleHQ6Ol8oJ1NlbGVjdCBhbiBvcHRpb24nKSk7DQoJCQl9DQoJCQlmb3JlYWNoKCRpdGVtcyBhcyAkaXRlbSkNCgkJCXsNCgkJCQkkb3B0aW9uc1tdID0gSkh0bWw6Ol8oJ3NlbGVjdC5vcHRpb24nLCAkaXRlbS0+IyMjSUQjIyMsICRpdGVtLT4jIyNDT0RFX1RFWFQjIyMgLiAnICgnIC4gJGl0ZW0tPiMjI0lEIyMjIC4gJyknKTsNCgkJCX0NCgkJfQ0KCQlyZXR1cm4gJG9wdGlvbnM7\\\"\\n\\/>\"', 1, '2023-07-09 17:33:16', '2023-07-09 17:37:00', 3, '', 1047, '80260582-7454-4ff5-92c2-53a2964e458a', '', '', '', '', ''),
(3292, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Message Content', 'NOT NULL', '', 25, '\"<field\\n\\ttype=\\\"textarea\\\"\\n\\tname=\\\"content\\\"\\n\\tlabel=\\\"Content\\\"\\n\\trows=\\\"30\\\"\\n\\tcols=\\\"10\\\"\\n\\tclass=\\\"text_area span12\\\"\\n\\tfilter=\\\"JComponentHelper::filterText\\\"\\n\\thint=\\\"the response content will go here...\\\"\\n\\trequired=\\\"true\\\"\\n\\/>\"', 1, '2023-07-09 17:52:36', '2023-07-15 16:49:57', 3, '', 1043, '43b42f9b-9586-46be-8e90-b144c3602797', '', '', '', '', ''),
(3293, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', 2, '', '', 'Role (Message)', 'NOT NULL', '', 11, '\"<field\\n\\ttype=\\\"list\\\"\\n\\tname=\\\"role\\\"\\n\\tlabel=\\\"Role\\\"\\n\\tclass=\\\"list_class\\\"\\n\\tmultiple=\\\"false\\\"\\n\\tfilter=\\\"STRING\\\"\\n\\trequired=\\\"true\\\"\\n\\toption=\\\"system,user,assistant,function\\\"\\n\\/>\"', 1, '2023-07-09 18:12:50', '2023-07-09 18:13:09', 2, '', 1043, '0aaae2d4-4570-430f-9830-6162fb91f689', '', '', '', '', ''),
(3294, '', '', '', '', '', '', '', '', '', '', '', '', '', '', 'Open AI Prompts Placeholders (No Caching)', 'NOT NULL', '', 14, '\"<field\\r\\n\\ttype=\\\"note\\\"\\r\\n\\tname=\\\"openai_prompts_placeholders_none_caching_note\\\"\\r\\n\\tlabel=\\\"Prompts Placeholders (No Caching)\\\"\\r\\n\\tdescription=\\\"<p>You can use the following placeholders in the prompts:<\\/p>\\r\\n<div>\\r\\n<code style=\'display: inline-block; padding: 2px; margin: 3px;\'>[translation_name]<\\/code>\\r\\n<code style=\'display: inline-block; padding: 2px; margin: 3px;\'>[translation_language]<\\/code>\\r\\n<code style=\'display: inline-block; padding: 2px; margin: 3px;\'>[translation_lcsh]<\\/code>\\r\\n<code style=\'display: inline-block; padding: 2px; margin: 3px;\'>[translation_abbreviation]<\\/code>\\r\\n<code style=\'display: inline-block; padding: 2px; margin: 3px;\'>[book_name]<\\/code>\\r\\n<code style=\'display: inline-block; padding: 2px; margin: 3px;\'>[chapter_number]<\\/code>\\r\\n<code style=\'display: inline-block; padding: 2px; margin: 3px;\'>[chapter_name]<\\/code>\\r\\n<code style=\'display: inline-block; padding: 2px; margin: 3px;\'>[chapter_text]<\\/code>\\r\\n<code style=\'display: inline-block; padding: 2px; margin: 3px;\'>[verse_number]<\\/code>\\r\\n<code style=\'display: inline-block; padding: 2px; margin: 3px;\'>[verse_name]<\\/code>\\r\\n<code style=\'display: inline-block; padding: 2px; margin: 3px;\'>[verse_text]<\\/code>\\r\\n<code class=\'selected-word-placeholder\' style=\'display: inline-block; padding: 2px; margin: 3px;\'>[selected_word_number]<\\/code>\\r\\n<code class=\'selected-word-placeholder\' style=\'display: inline-block; padding: 2px; margin: 3px;\'>[selected_word_text]<\\/code>\\r\\n<\\/div>\\r\\n<small>Utilizing these placeholders is crucial to enhancing the distinctiveness of responses from Open AI. Be aware that using the <b>[chapter_text]<\\/b> placeholder loads the complete text of the chapter. This significantly increases the size of the query and might cause failures in certain circumstances. Exercise caution and restraint when implementing the <b>[chapter_text]<\\/b> placeholder!<\\/small>\\\"\\r\\n\\theading=\\\"h5\\\"\\r\\n\\tshowon=\\\"cache_behaviour:0\\\"\\r\\n\\/>\"', 1, '2023-07-09 21:29:16', '2023-07-10 01:26:55', 5, '', 1039, 'b836c975-fee7-499d-9e99-411f91852e02', '', '', '', '', ''),
(3295, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'Openai Token (override)', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"token_override\\\"\\n\\tlabel=\\\"Openai Token\\\"\\n\\tdescription=\\\"Would you like to override the global openai token value.\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"1|Override,|Use Global\\\"\\n\\tdefault=\\\"\\\"\\n\\/>\"', 1, '2023-07-10 01:36:38', '2023-07-10 09:06:36', 3, '', 1046, '070ea511-e70d-4460-90b3-bc880efb23e2', '', '', '', '', ''),
(3296, '', '', '', '', '', '', '', '', 100, '', 'VARCHAR', '', '', '', 'Openai Token (prompt)', 'NOT NULL', '', 16, '\"<field\\n\\ttype=\\\"password\\\"\\n\\tname=\\\"token\\\"\\n\\tlabel=\\\"Openai Token\\\"\\n\\tsize=\\\"150\\\"\\n\\tdefault=\\\"secret\\\"\\n\\tdescription=\\\"Your Openai Token\\\"\\n\\tmessage=\\\"Error! Please add some token here.\\\"\\n\\tclass=\\\"text_area\\\"\\n\\tfilter=\\\"STRING\\\"\\n\\thint=\\\"\\/\\/ get your token from Open AI\\\"\\n\\tautocomplete=\\\"off\\\"\\n\\tshowon=\\\"token_override:1\\\"\\n\\/>\"', 1, '2023-07-10 01:37:55', '2023-07-10 08:10:53', 4, '', 1037, 'cf514cb4-4e31-41a9-ba34-e676f06edffe', '', '', '', '', ''),
(3297, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'Openai Organisation Token (override)', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"ai_org_token_override\\\"\\n\\tlabel=\\\"Openai Organisation Token (override)\\\"\\n\\tdescription=\\\"Would you like to override the global openai organisation token value.\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"1|Override,|Use Global\\\"\\n\\tdefault=\\\"\\\"\\n\\tshowon=\\\"token_override:1\\\"\\n\\/>\"', 1, '2023-07-10 01:40:45', '2023-07-10 09:06:44', 3, '', 1046, '495ea19a-7e80-4464-a25c-e6bdf8430c1e', '', '', '', '', ''),
(3298, '', '', '', '', '', '', '', '', 100, '', 'VARCHAR', '', '', '', 'Openai Organisation Token (prompt)', 'NOT NULL', '', 16, '\"<field\\n\\ttype=\\\"password\\\"\\n\\tname=\\\"org_token\\\"\\n\\tlabel=\\\"Openai Organisation Token\\\"\\n\\tsize=\\\"150\\\"\\n\\tdefault=\\\"secret\\\"\\n\\tdescription=\\\"Your Organisation Token\\\"\\n\\tmessage=\\\"Error! Please add some token here.\\\"\\n\\tclass=\\\"text_area\\\"\\n\\tfilter=\\\"STRING\\\"\\n\\thint=\\\"\\/\\/ get your token from your Organisation on Open AI\\\"\\n\\tautocomplete=\\\"off\\\"\\n\\tshowon=\\\"token_override:1[AND]ai_org_token_override:1\\\"\\n\\/>\"', 1, '2023-07-10 01:41:24', '2023-07-10 08:11:01', 3, '', 1037, 'a63a22f8-f9e0-43b4-ad11-7de15837cc0b', '', '', '', '', ''),
(3299, '', '', '', '', '', '', '', '', 11, '', 'FLOAT', '', '', '', 'Frequency Penalty (record)', 'NOT NULL', '', 15, '\"<field\\n\\ttype=\\\"number\\\"\\n\\tname=\\\"frequency_penalty\\\"\\n\\tlabel=\\\"Frequency Penalty\\\"\\n\\tdefault=\\\"0\\\"\\n\\tdescription=\\\"Penalty for new tokens based on their frequency in the text\\\"\\n\\tclass=\\\"text_area\\\"\\n\\tmin=\\\"-2\\\"\\n\\tmax=\\\"2\\\"\\n\\tstep=\\\"0.1\\\"\\n\\/>\"', 1, '2023-07-10 09:17:02', '2023-07-08 21:39:29', 1, '', 1041, '712a35be-6b65-4065-b631-4321b4ccb4f2', '', '', '', '', ''),
(3300, '', '', '', '', '', '', '', '', 11, '', 'FLOAT', '', '', '', 'Presence Penalty (record)', 'NOT NULL', '', 15, '\"<field\\n\\ttype=\\\"number\\\"\\n\\tname=\\\"presence_penalty\\\"\\n\\tlabel=\\\"Presence Penalty\\\"\\n\\tdefault=\\\"0\\\"\\n\\tdescription=\\\"Penalty for new tokens based on whether they appear in the text\\\"\\n\\tclass=\\\"text_area\\\"\\n\\tmin=\\\"-2\\\"\\n\\tmax=\\\"2\\\"\\n\\tstep=\\\"0.1\\\"\\n\\/>\"', 1, '2023-07-10 09:17:22', '2023-07-08 21:37:25', 1, '', 1041, '8e8aae71-cf35-4cca-87a1-5786ec5f0b63', '', '', '', '', ''),
(3301, '', '', '', '', '', '', '', '', 11, '', 'FLOAT', '', '', '', 'Top P (record)', 'NOT NULL', '', 15, '\"<field\\n\\ttype=\\\"number\\\"\\n\\tname=\\\"top_p\\\"\\n\\tlabel=\\\"Top P\\\"\\n\\tdefault=\\\"1\\\"\\n\\tdescription=\\\"The nucleus sampling parameter\\\"\\n\\tclass=\\\"text_area\\\"\\n\\tmin=\\\"0\\\"\\n\\tmax=\\\"1\\\"\\n\\tstep=\\\"0.1\\\"\\n\\/>\"', 1, '2023-07-10 09:18:43', '2023-07-08 21:31:50', 1, '', 1041, '2abbeba5-6088-41aa-89e8-4272ca032522', '', '', '', '', ''),
(3302, '', '', '', '', '', '', '', '', 11, '', 'FLOAT', '', '', '', 'Temperature (record)', 'NOT NULL', '', 15, '\"<field\\n\\ttype=\\\"number\\\"\\n\\tname=\\\"temperature\\\"\\n\\tlabel=\\\"Temperature\\\"\\n\\tdefault=\\\"1\\\"\\n\\tdescription=\\\"The sampling temperature to use\\\"\\n\\tclass=\\\"text_area\\\"\\n\\tmin=\\\"0\\\"\\n\\tmax=\\\"2\\\"\\n\\tstep=\\\"0.1\\\"\\n\\/>\"', 1, '2023-07-10 09:18:55', '2023-07-08 06:28:27', 1, '', 1041, 'd3b490fd-4446-4cde-bbf1-2991197db434', '', '', '', '', ''),
(3303, '', '', '', '', '', '', '', '', 11, '', 'INT', '', '', '', 'Max Tokens (record)', 'NOT NULL', '', 15, '\"<field\\n\\ttype=\\\"number\\\"\\n\\tname=\\\"max_tokens\\\"\\n\\tlabel=\\\"Max Tokens\\\"\\n\\tdefault=\\\"300\\\"\\n\\tdescription=\\\"Maximum number of tokens to generate.\\\"\\n\\tclass=\\\"text_area\\\"\\n\\tmin=\\\"0\\\"\\n\\tmax=\\\"2048\\\"\\n\\tstep=\\\"12\\\"\\n\\/>\"', 1, '2023-07-10 09:19:16', '2023-07-08 21:26:46', 1, '', 1041, 'd2e6bb32-9f77-430c-ac75-f03722741c5a', '', '', '', '', ''),
(3304, '', '', '', '', '', '', '', '', 50, '', 'VARCHAR', 2, '', '', 'Model (record)', 'NOT NULL', '', 11, '\"<field\\n\\ttype=\\\"list\\\"\\n\\tname=\\\"model\\\"\\n\\tlabel=\\\"Model\\\"\\n\\tdescription=\\\"ID of the model to use.\\\"\\n\\tclass=\\\"list_class\\\"\\n\\tmultiple=\\\"false\\\"\\n\\toption=\\\"gpt-4,gpt-4-0613,gpt-4-32k,gpt-4-32k-0613,gpt-3.5-turbo,gpt-3.5-turbo-0613,gpt-3.5-turbo-16k,gpt-3.5-turbo-16k-0613\\\"\\n\\/>\"', 1, '2023-07-10 09:19:44', '2023-07-10 09:08:14', 1, '', 1041, '8387d715-3d45-4a09-b2f1-35166225cf27', '', '', '', '', ''),
(3305, '', '', '', '', '', '', '', '', 7, '', 'INT', '', '', '', 'Number (record)', 'NOT NULL', '', 15, '\"<field\\n\\ttype=\\\"number\\\"\\n\\tname=\\\"n\\\"\\n\\tlabel=\\\"Number AI Response Per\\/Prompt\\\"\\n\\tdefault=\\\"1\\\"\\n\\tdescription=\\\"The number of chat completion choices to generate\\\"\\n\\tclass=\\\"text_area\\\"\\n\\tmin=\\\"1\\\"\\n\\tmax=\\\"10\\\"\\n\\tstep=\\\"1\\\"\\n\\/>\"', 1, '2023-07-10 11:06:15', '2023-07-08 19:45:56', 1, '', 1041, 'e79af807-e311-41c7-a659-322fc2730a05', '', '', '', '', ''),
(3306, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Source (message)', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"source\\\"\\n\\tlabel=\\\"Source\\\"\\n\\tdescription=\\\"Source of message\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"1|Prompt,2|Open AI\\\"\\n\\tdefault=\\\"2\\\"\\n\\/>\"', 1, '2023-07-10 11:11:09', '2023-07-11 10:07:33', 4, '', 1048, '930fb9fa-d1a8-4a08-a9b6-b8d2697bf40a', '', '', '', '', ''),
(3307, '', '', '', '', '', '', '', '', 11, '', 'INT', '', '', '', 'Index (message)', 'NOT NULL', '', 15, '\"<field\\n\\ttype=\\\"number\\\"\\n\\tname=\\\"index\\\"\\n\\tlabel=\\\"Index\\\"\\n\\tdefault=\\\"1\\\"\\n\\tdescription=\\\"Message index\\\"\\n\\tclass=\\\"text_area\\\"\\n\\trequired=\\\"true\\\"\\n\\tmin=\\\"1\\\"\\n\\tmax=\\\"10\\\"\\n\\tstep=\\\"1\\\"\\n\\/>\"', 1, '2023-07-10 11:12:54', '2023-07-10 11:13:15', 3, '', 1048, 'a7a9933a-97e2-46ca-a886-2eb5c104a4f2', '', '', '', '', ''),
(3308, '', '', '', '', '', '', '', '', 'Other', 36, 'VARCHAR', 2, '', '', 'Linker', 'NOT NULL', '', 6, '\"<field\\n\\ttype=\\\"linkers\\\"\\n\\tname=\\\"linker\\\"\\n\\tlabel=\\\"Linker\\\"\\n\\tdescription=\\\"Globally Unique Linker\\\"\\n\\tclass=\\\"list_class\\\"\\n\\tmultiple=\\\"false\\\"\\n\\trequired=\\\"false\\\"\\n\\tvalidate=\\\"guid\\\"\\n\\textends=\\\"list\\\"\\n\\tbutton=\\\"true\\\"\\n\\ttable=\\\"#__###component###_linker\\\"\\n\\tcomponent=\\\"com_###component###\\\"\\n\\tview=\\\"linker\\\"\\n\\tviews=\\\"linkers\\\"\\n\\tvalue_field=\\\"name\\\"\\n\\tkey_field=\\\"guid\\\"\\n\\ttype_php_1=\\\"__.o0=base64=Oo.__Ly8gR2V0IHRoZSB1c2VyIG9iamVjdC4NCgkJJHVzZXIgPSBKRmFjdG9yeTo6Z2V0VXNlcigpOw0KCQkvLyBHZXQgdGhlIGRhdGFic2Ugb2JqZWN0Lg0KCQkkZGIgPSBKRmFjdG9yeTo6Z2V0REJPKCk7DQoJCSRxdWVyeSA9ICRkYi0+Z2V0UXVlcnkodHJ1ZSk7DQoJCSRxdWVyeS0+c2VsZWN0KCRkYi0+cXVvdGVOYW1lKGFycmF5KCdhLiMjI0lEIyMjJywnYS4jIyNURVhUIyMjJyksYXJyYXkoJyMjI0lEIyMjJywnIyMjQ09ERV9URVhUIyMjJykpKTsNCgkJJHF1ZXJ5LT5mcm9tKCRkYi0+cXVvdGVOYW1lKCcjIyNUQUJMRSMjIycsICdhJykpOw0KCQkkcXVlcnktPndoZXJlKCRkYi0+cXVvdGVOYW1lKCdhLnB1Ymxpc2hlZCcpIC4gJyA9IDEnKTsNCgkJJHF1ZXJ5LT5vcmRlcignYS4jIyNURVhUIyMjIEFTQycpOw0KCQkvLyBJbXBsZW1lbnQgVmlldyBMZXZlbCBBY2Nlc3MgKGlmIHNldCBpbiB0YWJsZSkNCgkJaWYgKCEkdXNlci0+YXV0aG9yaXNlKCdjb3JlLm9wdGlvbnMnLCAnW1tbY29tX2NvbXBvbmVudF1dXScpKQ0KCQl7DQoJCQkkY29sdW1ucyA9ICRkYi0+Z2V0VGFibGVDb2x1bW5zKCcjIyNUQUJMRSMjIycpOw0KCQkJaWYoaXNzZXQoJGNvbHVtbnNbJ2FjY2VzcyddKSkNCgkJCXsNCgkJCQkkZ3JvdXBzID0gaW1wbG9kZSgnLCcsICR1c2VyLT5nZXRBdXRob3Jpc2VkVmlld0xldmVscygpKTsNCgkJCQkkcXVlcnktPndoZXJlKCdhLmFjY2VzcyBJTiAoJyAuICRncm91cHMgLiAnKScpOw0KCQkJfQ0KCQl9DQoJCSRkYi0+c2V0UXVlcnkoKHN0cmluZykkcXVlcnkpOw0KCQkkaXRlbXMgPSAkZGItPmxvYWRPYmplY3RMaXN0KCk7DQoJCSRvcHRpb25zID0gYXJyYXkoKTsNCgkJaWYgKCRpdGVtcykNCgkJew0KCQkJaWYgKCR0aGlzLT5tdWx0aXBsZSA9PT0gZmFsc2UpDQoJCQl7DQoJCQkJJG9wdGlvbnNbXSA9IEpIdG1sOjpfKCdzZWxlY3Qub3B0aW9uJywgJycsIEpUZXh0OjpfKCdTZWxlY3QgYW4gb3B0aW9uJykpOw0KCQkJfQ0KCQkJZm9yZWFjaCgkaXRlbXMgYXMgJGl0ZW0pDQoJCQl7DQoJCQkJJG9wdGlvbnNbXSA9IEpIdG1sOjpfKCdzZWxlY3Qub3B0aW9uJywgJGl0ZW0tPiMjI0lEIyMjLCAkaXRlbS0+IyMjQ09ERV9URVhUIyMjIC4gJyAoJyAuIHN1YnN0cigkaXRlbS0+IyMjSUQjIyMsIDAsIDgpIC4gJyknKTsNCgkJCX0NCgkJfQ0KCQlyZXR1cm4gJG9wdGlvbnM7\\\"\\n\\/>\"', 1, '2023-07-10 11:29:30', '2023-07-10 11:28:38', 1, '', 960, '9aa1ba9c-33df-40e6-99d7-646cfe16eec7', '', '', '', '', ''),
(3309, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'Book (record)', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"book\\\"\\n\\tlabel=\\\"Book\\\"\\n\\tsize=\\\"10\\\"\\n\\tmaxlength=\\\"50\\\"\\n\\tdescription=\\\"The book number\\\"\\n\\tclass=\\\"text_area\\\"\\n\\trequired=\\\"true\\\"\\n\\tfilter=\\\"INT\\\"\\n\\tvalidate=\\\"int\\\"\\n\\thint=\\\"Book Number\\\"\\n\\/>\"', 1, '2023-07-11 08:06:43', '2023-07-11 08:28:01', 2, '', 1049, '45c16e7f-a3c6-4136-b987-4f51bba7c5ec', '', '', '', '', ''),
(3310, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'Chapter (record)', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"chapter\\\"\\n\\tlabel=\\\"Chapter\\\"\\n\\tsize=\\\"10\\\"\\n\\tmaxlength=\\\"50\\\"\\n\\tdescription=\\\"The chapter number\\\"\\n\\tclass=\\\"text_area\\\"\\n\\trequired=\\\"true\\\"\\n\\tfilter=\\\"INT\\\"\\n\\tvalidate=\\\"int\\\"\\n\\thint=\\\"Chapter Number\\\"\\n\\/>\"', 1, '2023-07-11 08:07:19', '2023-07-11 08:27:40', 2, '', 1049, 'b5911bd1-8aaf-4254-bb4c-40fe69bc1ec9', '', '', '', '', ''),
(3311, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', 2, '', '', 'Word/s (record)', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"word\\\"\\n\\tlabel=\\\"Word\\/s\\\"\\n\\tsize=\\\"10\\\"\\n\\tmaxlength=\\\"50\\\"\\n\\tdescription=\\\"The word\\/s numbers\\\"\\n\\tclass=\\\"text_area\\\"\\n\\tfilter=\\\"CMD\\\"\\n\\tvalidate=\\\"numbershyphens\\\"\\n\\thint=\\\"Word\\/s Number\\/s\\\"\\n\\/>\"', 1, '2023-07-11 08:26:11', '2023-07-15 08:17:27', 3, '', 1049, 'accb2d93-6827-4ae6-894f-b5bfa0fbcf2c', '', '', '', '', ''),
(3312, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', 2, '', '', 'Verse (record)', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"verse\\\"\\n\\tlabel=\\\"Verse\\\"\\n\\tsize=\\\"10\\\"\\n\\tmaxlength=\\\"50\\\"\\n\\tdescription=\\\"The verse numbers\\\"\\n\\tclass=\\\"text_area\\\"\\n\\trequired=\\\"true\\\"\\n\\tfilter=\\\"CMD\\\"\\n\\tvalidate=\\\"numbershyphens\\\"\\n\\thint=\\\"Verse Numbers\\\"\\n\\/>\"', 1, '2023-07-11 08:26:59', '0000-00-00 00:00:00', 1, '', 1049, '7e4a4982-b2ee-4017-9ad2-eea5c0ed8e4c', '', '', '', '', ''),
(3313, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', 2, '', '', 'LCSH (record)', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"lcsh\\\"\\n\\tlabel=\\\"LCSH\\\"\\n\\tsize=\\\"10\\\"\\n\\tmaxlength=\\\"50\\\"\\n\\tdescription=\\\"The library of congress subject headings\\\"\\n\\tclass=\\\"text_area\\\"\\n\\trequired=\\\"true\\\"\\n\\tfilter=\\\"STRING\\\"\\n\\thint=\\\"LCSH\\\"\\n\\/>\"', 1, '2023-07-11 08:41:11', '2023-07-11 08:41:57', 2, '', 1049, '1a873719-2e33-4534-ac6c-0090cce5e28e', '', '', '', '', ''),
(3314, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Selected Word/s (record)', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"selected_word\\\"\\n\\tlabel=\\\"Selected Word\\/s\\\"\\n\\tsize=\\\"120\\\"\\n\\tmaxlength=\\\"250\\\"\\n\\tdescription=\\\"The word\\/s selected\\\"\\n\\tclass=\\\"text_area\\\"\\n\\tfilter=\\\"STRING\\\"\\n\\thint=\\\"Actual Selected Word\\/s\\\"\\n\\/>\"', 1, '2023-07-13 07:30:11', '2023-07-15 08:13:25', 6, '', 1049, '3414e6ea-3373-4013-a5ed-2b442afe7733', '', '', '', '', ''),
(3315, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', 2, '', '', 'Language (record)', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"language\\\"\\n\\tlabel=\\\"Language\\\"\\n\\tsize=\\\"10\\\"\\n\\tmaxlength=\\\"50\\\"\\n\\tdescription=\\\"The translation language\\\"\\n\\tclass=\\\"text_area\\\"\\n\\trequired=\\\"true\\\"\\n\\tfilter=\\\"STRING\\\"\\n\\thint=\\\"Language\\\"\\n\\/>\"', 1, '2023-07-13 08:58:06', '2023-07-13 09:08:45', 2, '', 1049, '6c3e4d53-7513-4172-bdc9-c236b9919b04', '', '', '', '', ''),
(3316, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Allow Untagging', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"allow_untagging\\\"\\n\\tlabel=\\\"Allow Untagging\\\"\\n\\tdescription=\\\"Allow users to remove the system tags from verses for themselves (only).\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"0|No,1|Yes\\\"\\n\\tdefault=\\\"0\\\"\\n\\tshowon=\\\"activate_tags:1\\\"\\n\\tdisplay=\\\"config\\\"\\n\\/>\"', 1, '2023-07-24 03:06:12', '2023-07-25 10:24:09', 6, '', 1048, 'b786fb35-227b-4bda-bba4-d650c4970695', '', '', '', '', ''),
(3317, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'Show Install Button', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"show_install_button\\\"\\n\\tlabel=\\\"Show Install Button\\\"\\n\\tdescription=\\\"Show install translation button on the Bible app page. This is normally only needed during the setup of your application on your website the first time.\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"1|Yes,0|No\\\"\\n\\tdefault=\\\"0\\\"\\n\\/>\"', 1, '2023-07-24 13:18:00', '2023-07-24 13:54:57', 3, '', 1050, 'aab94069-03da-48d4-a86f-1d5a1632e9df', '', '', '', '', ''),
(3318, '', '', '', '', '', '', '', '', 100, '', 'VARCHAR', 2, '', '', 'Default Translation (getBible)', 'NOT NULL', '', 6, '\"<field\\n\\ttype=\\\"translations\\\"\\n\\tname=\\\"default_translation\\\"\\n\\tlabel=\\\"System Default Translation\\\"\\n\\tdescription=\\\"Select the Default Bible Translation\\\"\\n\\tclass=\\\"list_class\\\"\\n\\tmultiple=\\\"false\\\"\\n\\tdefault=\\\"kjv\\\"\\n\\trequired=\\\"true\\\"\\n\\textends=\\\"list\\\"\\n\\ttable=\\\"#__###component###_translation\\\"\\n\\tcomponent=\\\"com_###component###\\\"\\n\\tview=\\\"translation\\\"\\n\\tviews=\\\"translations\\\"\\n\\tvalue_field=\\\"translation\\\"\\n\\tkey_field=\\\"abbreviation\\\"\\n\\ttype_php_1=\\\"__.o0=base64=Oo.__Ly8gR2V0IHRoZSB1c2VyIG9iamVjdC4NCgkJJHVzZXIgPSBKRmFjdG9yeTo6Z2V0VXNlcigpOw0KCQkvLyBHZXQgdGhlIGRhdGFic2Ugb2JqZWN0Lg0KCQkkZGIgPSBKRmFjdG9yeTo6Z2V0REJPKCk7DQoJCSRxdWVyeSA9ICRkYi0+Z2V0UXVlcnkodHJ1ZSk7DQoJCSRxdWVyeS0+c2VsZWN0KCRkYi0+cXVvdGVOYW1lKGFycmF5KCdhLiMjI0lEIyMjJywnYS4jIyNURVhUIyMjJyksYXJyYXkoJyMjI0lEIyMjJywnIyMjQ09ERV9URVhUIyMjJykpKTsNCgkJJHF1ZXJ5LT5mcm9tKCRkYi0+cXVvdGVOYW1lKCcjIyNUQUJMRSMjIycsICdhJykpOw0KCQkkcXVlcnktPndoZXJlKCRkYi0+cXVvdGVOYW1lKCdhLnB1Ymxpc2hlZCcpIC4gJyA9IDEnKTsNCgkJJHF1ZXJ5LT5vcmRlcignYS4jIyNURVhUIyMjIEFTQycpOw0KCQkvLyBJbXBsZW1lbnQgVmlldyBMZXZlbCBBY2Nlc3MgKGlmIHNldCBpbiB0YWJsZSkNCgkJaWYgKCEkdXNlci0+YXV0aG9yaXNlKCdjb3JlLm9wdGlvbnMnLCAnW1tbY29tX2NvbXBvbmVudF1dXScpKQ0KCQl7DQoJCQkkY29sdW1ucyA9ICRkYi0+Z2V0VGFibGVDb2x1bW5zKCcjIyNUQUJMRSMjIycpOw0KCQkJaWYoaXNzZXQoJGNvbHVtbnNbJ2FjY2VzcyddKSkNCgkJCXsNCgkJCQkkZ3JvdXBzID0gaW1wbG9kZSgnLCcsICR1c2VyLT5nZXRBdXRob3Jpc2VkVmlld0xldmVscygpKTsNCgkJCQkkcXVlcnktPndoZXJlKCdhLmFjY2VzcyBJTiAoJyAuICRncm91cHMgLiAnKScpOw0KCQkJfQ0KCQl9DQoJCSRkYi0+c2V0UXVlcnkoKHN0cmluZykkcXVlcnkpOw0KCQkkaXRlbXMgPSAkZGItPmxvYWRPYmplY3RMaXN0KCk7DQoJCSRvcHRpb25zID0gW107DQoJCWlmICghZW1wdHkoJGl0ZW1zKSkNCgkJew0KCQkJaWYgKCR0aGlzLT5tdWx0aXBsZSA9PT0gZmFsc2UpDQoJCQl7DQoJCQkJJG9wdGlvbnNbXSA9IEpIdG1sOjpfKCdzZWxlY3Qub3B0aW9uJywgJycsIEpUZXh0OjpfKCdTZWxlY3QgYW4gb3B0aW9uJykpOw0KCQkJfQ0KCQkJZm9yZWFjaCgkaXRlbXMgYXMgJGl0ZW0pDQoJCQl7DQoJCQkJJG9wdGlvbnNbXSA9IEpIdG1sOjpfKCdzZWxlY3Qub3B0aW9uJywgJGl0ZW0tPiMjI0lEIyMjLCAkaXRlbS0+IyMjQ09ERV9URVhUIyMjLicgKCcgLiRpdGVtLT4jIyNJRCMjIy4nKScpOw0KCQkJfQ0KCQl9DQoNCgkJLy8gaWYgbm9uZSB3YXMgZm91bmQgd2UgbG9hZCB0aGUgS0pWIGFzIHRoZSBkZWZhdWx0DQoJCWlmIChlbXB0eSgkb3B0aW9ucykpDQoJCXsNCgkJCSRvcHRpb25zID0gW107DQoJCQlpZiAoJHRoaXMtPm11bHRpcGxlID09PSBmYWxzZSkNCgkJCXsNCgkJCQkkb3B0aW9uc1tdID0gSkh0bWw6Ol8oJ3NlbGVjdC5vcHRpb24nLCAnJywgSlRleHQ6Ol8oJ1NlbGVjdCBhbiBvcHRpb24nKSk7DQoJCQl9DQoJCQkkb3B0aW9uc1tdID0gSkh0bWw6Ol8oJ3NlbGVjdC5vcHRpb24nLCAna2p2JywgJ0tpbmcgSmFtZXMgVmVyc2lvbiAoa2p2KScpOyAvLyB0aGlzIGlzIHRoZSBkZWZhdWx0IGF0IGFsbCB0aW1lcy4NCgkJfQ0KDQoJCXJldHVybiAkb3B0aW9uczs=\\\"\\n\\/>\"', 1, '2023-07-26 19:40:48', '2023-07-26 19:41:23', 2, '', 819, '75ac9bce-d7d4-44ce-80ad-b423675572b9', '', '', '', '', ''),
(3319, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Public Tagged Verses', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"public_tagged_verses\\\"\\n\\tlabel=\\\"Public Tagged Verses\\\"\\n\\tdescription=\\\"Linker can make their tagged verses public.\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"1|Yes,0|No\\\"\\n\\tdefault=\\\"0\\\"\\n\\/>\"', 1, '2023-08-05 20:47:13', '2023-08-05 20:48:31', 2, '', 1051, '78abc255-ee4b-432b-86e9-c793b2ed45ad', '', '', '', '', ''),
(3320, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Public Notes', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"public_notes\\\"\\n\\tlabel=\\\"Public Notes\\\"\\n\\tdescription=\\\"Linker can make their notes public.\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"1|Yes,0|No\\\"\\n\\tdefault=\\\"0\\\"\\n\\/>\"', 1, '2023-08-05 20:48:06', '2023-08-05 20:48:22', 2, '', 1051, '1cbd3fa9-431e-43d5-b3ad-375e7c798b95', '', '', '', '', ''),
(3321, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Bottom Tag Positions', 'NOT NULL', '', 35, '\"<field\\n\\ttype=\\\"subform\\\"\\n\\tname=\\\"bottom_tag_position\\\"\\n\\tlabel=\\\"Bottom Tag Positions\\\"\\n\\tlayout=\\\"joomla.form.field.subform.repeatable-table\\\"\\n\\tmultiple=\\\"true\\\"\\n\\tbuttons=\\\"add,remove,move\\\"\\n\\tfields=\\\"3158,3160,3161\\\"\\n\\ticon=\\\"list\\\"\\n\\tmax=\\\"5\\\"\\n\\tshowon=\\\"activate_tags:1\\\"\\n\\tdisplay=\\\"config\\\"\\n\\/>\"', 1, '2023-08-08 05:09:37', '2023-08-08 05:16:49', 2, '', 1037, '544b08ff-ccae-4c2c-b04f-e4b8028325c4', '', '', '', '', ''),
(3322, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Bottom Search Positions', 'NOT NULL', '', 35, '\"<field\\n\\ttype=\\\"subform\\\"\\n\\tname=\\\"bottom_search_position\\\"\\n\\tlabel=\\\"Bottom Search Positions\\\"\\n\\tlayout=\\\"joomla.form.field.subform.repeatable-table\\\"\\n\\tmultiple=\\\"true\\\"\\n\\tbuttons=\\\"add,remove,move\\\"\\n\\tfields=\\\"3158,3160,3161\\\"\\n\\ticon=\\\"list\\\"\\n\\tmax=\\\"5\\\"\\n\\tshowon=\\\"activate_search:1\\\"\\n\\tdisplay=\\\"config\\\"\\n\\/>\"', 1, '2023-08-08 05:10:03', '2023-08-08 05:16:10', 2, '', 1037, 'f03e4e4f-b527-43c5-b903-3f31c82bb258', '', '', '', '', ''),
(3323, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Bottom AI Positions', 'NOT NULL', '', 35, '\"<field\\n\\ttype=\\\"subform\\\"\\n\\tname=\\\"bottom_ai_position\\\"\\n\\tlabel=\\\"Bottom AI Positions\\\"\\n\\tlayout=\\\"joomla.form.field.subform.repeatable-table\\\"\\n\\tmultiple=\\\"true\\\"\\n\\tbuttons=\\\"add,remove,move\\\"\\n\\tfields=\\\"3158,3160,3161\\\"\\n\\ticon=\\\"list\\\"\\n\\tmax=\\\"5\\\"\\n\\tshowon=\\\"enable_open_ai:1\\\"\\n\\tdisplay=\\\"config\\\"\\n\\/>\"', 1, '2023-08-08 05:10:32', '2023-08-08 05:14:51', 2, '', 1037, '33e1883e-5736-4c41-b19f-6a44d75ed9ff', '', '', '', '', ''),
(3324, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Bottom Bible Positions', 'NOT NULL', '', 35, '\"<field\\n\\ttype=\\\"subform\\\"\\n\\tname=\\\"bottom_app_position\\\"\\n\\tlabel=\\\"Bottom Bible Positions\\\"\\n\\tlayout=\\\"joomla.form.field.subform.repeatable-table\\\"\\n\\tmultiple=\\\"true\\\"\\n\\tbuttons=\\\"add,remove,move\\\"\\n\\tfields=\\\"3158,3160,3161\\\"\\n\\ticon=\\\"list\\\"\\n\\tmax=\\\"5\\\"\\n\\tdisplay=\\\"config\\\"\\n\\/>\"', 1, '2023-08-08 05:11:00', '2023-07-01 18:31:30', 1, '', 1037, 'f54dd035-b5cf-4c64-9b0a-ae3f6bc47043', '', '', '', '', ''),
(3325, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Show Bottom Tag Position Card', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"show_bottom_tag_position_card\\\"\\n\\tlabel=\\\"Show Bottom Tag Position Card\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"1|Yes,0|No\\\"\\n\\tdefault=\\\"1\\\"\\n\\tshowon=\\\"activate_tags:1\\\"\\n\\/>\"', 1, '2023-08-09 15:33:10', '2023-06-25 17:08:58', 1, '', 1036, 'b517a240-d2ff-452e-bbd9-99085884f79c', '', '', '', '', ''),
(3326, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Show Bottom Search Position Card', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"show_bottom_search_position_card\\\"\\n\\tlabel=\\\"Show Bottom Search Position Card\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"1|Yes,0|No\\\"\\n\\tdefault=\\\"1\\\"\\n\\tshowon=\\\"activate_search:1\\\"\\n\\/>\"', 1, '2023-08-09 15:33:49', '2023-06-25 17:08:58', 1, '', 1036, 'baa5dcee-16f7-408d-876d-cde108b5210f', '', '', '', '', ''),
(3327, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Show Bottom AI Position Card', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"show_bottom_ai_position_card\\\"\\n\\tlabel=\\\"Show Bottom AI Position Card\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"1|Yes,0|No\\\"\\n\\tdefault=\\\"1\\\"\\n\\tshowon=\\\"enable_open_ai:1\\\"\\n\\/>\"', 1, '2023-08-09 15:34:16', '2023-06-25 17:08:58', 1, '', 1036, '47a32e31-d83d-4c9d-87e7-f6e4adb2f88a', '', '', '', '', ''),
(3328, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Show Bottom APP Position Card', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"show_bottom_app_position_card\\\"\\n\\tlabel=\\\"Show Bottom APP Position Card\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"1|Yes,0|No\\\"\\n\\tdefault=\\\"1\\\"\\n\\/>\"', 1, '2023-08-09 15:34:36', '2023-06-25 17:08:58', 1, '', 1036, '567a77f1-ef29-4c96-b43d-7d6d04b88635', '', '', '', '', ''),
(3329, '', '', '', '', '', '', '', '', 255, '', 'CHAR', '', '', '', 'Bottom Tag Position Card Style', 'NOT NULL', '', 11, '\"<field\\n\\ttype=\\\"list\\\"\\n\\tname=\\\"bottom_tag_position_card_style\\\"\\n\\tlabel=\\\"Bottom Tag Position Card Style\\\"\\n\\tclass=\\\"list_class\\\"\\n\\toption=\\\"default,primary,secondary\\\"\\n\\tdefault=\\\"default\\\"\\n\\tshowon=\\\"activate_tags:1[AND]show_bottom_tag_position_card:1\\\"\\n\\/>\"', 1, '2023-08-09 15:37:20', '2023-06-25 17:06:24', 1, '', 1038, '0b1b64e9-2236-4d7d-a310-2f3c440dfd8c', '', '', '', '', ''),
(3330, '', '', '', '', '', '', '', '', 255, '', 'CHAR', '', '', '', 'Bottom Search Position Card Style', 'NOT NULL', '', 11, '\"<field\\n\\ttype=\\\"list\\\"\\n\\tname=\\\"bottom_search_position_card_style\\\"\\n\\tlabel=\\\"Bottom Search Position Card Style\\\"\\n\\tclass=\\\"list_class\\\"\\n\\toption=\\\"default,primary,secondary\\\"\\n\\tdefault=\\\"default\\\"\\n\\tshowon=\\\"activate_search:1[AND]show_bottom_search_position_card:1\\\"\\n\\/>\"', 1, '2023-08-09 15:38:02', '2023-08-09 15:38:18', 2, '', 1038, '2fefd6df-ddb1-406a-9d5a-ee792f9b7912', '', '', '', '', ''),
(3331, '', '', '', '', '', '', '', '', 255, '', 'CHAR', '', '', '', 'Bottom AI Position Card Style', 'NOT NULL', '', 11, '\"<field\\n\\ttype=\\\"list\\\"\\n\\tname=\\\"bottom_ai_position_card_style\\\"\\n\\tlabel=\\\"Bottom AI Position Card Style\\\"\\n\\tclass=\\\"list_class\\\"\\n\\toption=\\\"default,primary,secondary\\\"\\n\\tdefault=\\\"default\\\"\\n\\tshowon=\\\"enable_open_ai:1[AND]show_bottom_ai_position_card:1\\\"\\n\\/>\"', 1, '2023-08-09 15:38:50', '2023-08-09 15:38:18', 1, '', 1038, '9442ed07-e83d-4fd3-b752-0c036ea6a06a', '', '', '', '', ''),
(3332, '', '', '', '', '', '', '', '', 255, '', 'CHAR', '', '', '', 'Bottom APP Position Card Style', 'NOT NULL', '', 11, '\"<field\\n\\ttype=\\\"list\\\"\\n\\tname=\\\"bottom_app_position_card_style\\\"\\n\\tlabel=\\\"Bottom APP Position Card Style\\\"\\n\\tclass=\\\"list_class\\\"\\n\\toption=\\\"default,primary,secondary\\\"\\n\\tdefault=\\\"default\\\"\\n\\tshowon=\\\"show_bottom_app_position_card:1\\\"\\n\\/>\"', 1, '2023-08-09 15:39:29', '2023-08-09 15:38:18', 1, '', 1038, 'f055d817-8df7-411d-baf3-d13404e2fab8', '', '', '', '', ''),
(3333, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'Show Legend', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"show_legend\\\"\\n\\tlabel=\\\"Show Legend\\\"\\n\\tdescription=\\\"Allow the legend to be shown below the calendar.\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"1|Yes,0|No\\\"\\n\\tdefault=\\\"1\\\"\\n\\/>\"', 1, '2023-08-10 15:24:54', '2023-08-10 15:25:08', 2, '', 1052, 'dc416a4a-a19f-4ef5-a703-e2334df42efd', '', '', '', '', ''),
(3334, '', '', '', '', '', '', '', '', 10, '', 'VARCHAR', '', '', '', 'Legend Background Colour', 'NOT NULL', '', 5, '\"<field\\n\\ttype=\\\"color\\\"\\n\\tname=\\\"legend_background_color\\\"\\n\\tdefault=\\\"#494444\\\"\\n\\tlabel=\\\"Legend Background Colour\\\"\\n\\tshowon=\\\"show_legend:1\\\"\\n\\/>\"', 1, '2023-08-10 15:26:17', '2023-08-10 15:26:28', 2, '', 1027, '8f1c9c1f-9d64-4f6c-9066-777665c7dcac', '', '', '', '', ''),
(3335, '', '', '', '', '', '', '', '', 10, '', 'VARCHAR', '', '', '', 'Legend Text Colour', 'NOT NULL', '', 5, '\"<field\\n\\ttype=\\\"color\\\"\\n\\tname=\\\"legend_text_color\\\"\\n\\tdefault=\\\"#fbf3ef\\\"\\n\\tlabel=\\\"Legend Text Colour\\\"\\n\\tshowon=\\\"show_legend:1\\\"\\n\\/>\"', 1, '2023-08-10 15:26:44', '2023-08-10 15:27:14', 2, '', 1027, '11bf8b86-99ad-4003-82eb-c55c16d0a041', '', '', '', '', ''),
(3336, '', '', '', '', 'LnN1YmZvcm0tdGFibGUtbGF5b3V0IGlucHV0IHsNCgltYXgtd2lkdGg6IDkwJTsNCn0=', '', '', '', '', '', 'TEXT', '', '', '', 'Version Dates', 'NOT NULL', '', 35, '\"<field\\n\\ttype=\\\"subform\\\"\\n\\tname=\\\"dates\\\"\\n\\tlabel=\\\"Dates\\\"\\n\\tlayout=\\\"joomla.form.field.subform.repeatable\\\"\\n\\tmultiple=\\\"true\\\"\\n\\tbuttons=\\\"add,remove,move\\\"\\n\\tfields=\\\"3062,3068,3338,3067,3070,3069\\\"\\n\\ticon=\\\"list\\\"\\n\\tmax=\\\"10\\\"\\n\\tmin=\\\"1\\\"\\n\\/>\"', 1, '2023-08-11 06:18:36', '2023-08-11 09:53:16', 8, '', 1028, '7bb0cce1-9a1d-4f38-9f94-4585eaabcdcd', '', '', '', '', ''),
(3337, '', '', '', '', '', '', '', '', 10, '', 'VARCHAR', '', '', '', 'Future Text Colour', 'NOT NULL', '', 5, '\"<field\\n\\ttype=\\\"color\\\"\\n\\tname=\\\"future_text_color\\\"\\n\\tlabel=\\\"Future Text Colour\\\"\\n\\tdefault=\\\"#fbf3ef\\\"\\n\\trequired=\\\"true\\\"\\n\\/>\"', 1, '2023-08-11 06:48:59', '2023-08-11 06:49:21', 2, '', 1027, '1805a9da-75bf-41d6-b120-4c021fd93d8d', '', '', '', '', ''),
(3338, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Description', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"description\\\"\\n\\tlabel=\\\"Description\\\"\\n\\tsize=\\\"50\\\"\\n\\tmaxlength=\\\"150\\\"\\n\\tclass=\\\"text_area\\\"\\n\\trequired=\\\"false\\\"\\n\\tfilter=\\\"STRING\\\"\\n\\thint=\\\"Describe the state\\\"\\n\\tautocomplete=\\\"on\\\"\\n\\/>\"', 1, '2023-08-11 09:48:31', '2023-08-11 09:50:33', 3, '', 155, '450075e1-bb88-44ab-b14c-ac619e20fab8', '', '', '', '', ''),
(3339, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'Class Property (powers)', 'NOT NULL', '', 6, '\"<field\\n\\ttype=\\\"powersclassproperties\\\"\\n\\tname=\\\"property\\\"\\n\\tlabel=\\\"Properties\\\"\\n\\tclass=\\\"list_class span12 property_selection_list\\\"\\n\\tmultiple=\\\"false\\\"\\n\\tdefault=\\\"0\\\"\\n\\tonchange=\\\"getClassCode(this, \'property\');\\\"\\n\\textends=\\\"list\\\"\\n\\tbutton=\\\"true\\\"\\n\\ttable=\\\"#__###component###_class_property\\\"\\n\\tcomponent=\\\"com_###component###\\\"\\n\\tview=\\\"class_property\\\"\\n\\tviews=\\\"class_properties\\\"\\n\\tvalue_field=\\\"name\\\"\\n\\tkey_field=\\\"id\\\"\\n\\tprime_php=\\\"1\\\"\\n\\ttype_php_1=\\\"__.o0=base64=Oo.__W0NVU1RPTUNPREU9Y2xhc3NQcm9wZXJ0eU1ldGhvZEZpZWxkK3Bvd2Vycyxwcm9wZXJ0eV0=\\\"\\n\\/>\"', 1, '2023-08-22 03:59:05', '2023-08-22 04:01:03', 2, '', 937, '997771c8-892b-4b33-8a25-5251a9581867', '', '', '', '', ''),
(3340, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Property Selection (power)', 'NULL', '', 35, '\"<field\\n\\ttype=\\\"subform\\\"\\n\\tname=\\\"property_selection\\\"\\n\\tlabel=\\\"Property Selection\\\"\\n\\tlayout=\\\"joomla.form.field.subform.repeatable-table\\\"\\n\\tmultiple=\\\"true\\\"\\n\\tbuttons=\\\"add,remove,move\\\"\\n\\tfields=\\\"3339\\\"\\n\\tdescription=\\\"Select properties you want to use in your field.\\\"\\n\\ticon=\\\"list\\\"\\n\\tmax=\\\"150\\\"\\n\\tmin=\\\"0\\\"\\n\\/>\"', 1, '2023-08-22 03:59:41', '2024-03-06 15:52:17', 3, '', 938, 'bdd69212-bb69-40b1-8a16-6b665ae94a36', '', '', '', '', ''),
(3341, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Method Selection (powers)', 'NULL', '', 35, '\"<field\\n\\ttype=\\\"subform\\\"\\n\\tname=\\\"method_selection\\\"\\n\\tlabel=\\\"Method Selection\\\"\\n\\tlayout=\\\"joomla.form.field.subform.repeatable-table\\\"\\n\\tmultiple=\\\"true\\\"\\n\\tbuttons=\\\"add,remove,move\\\"\\n\\tfields=\\\"3342\\\"\\n\\tdescription=\\\"Select methods you want to use in your field.\\\"\\n\\ticon=\\\"list\\\"\\n\\tmax=\\\"150\\\"\\n\\tmin=\\\"0\\\"\\n\\/>\"', 1, '2023-08-22 04:01:27', '2024-03-06 15:52:11', 3, '', 938, '645ed24e-5159-40a2-bd50-4aa26e625848', '', '', '', '', ''),
(3342, '', '', '', '', '', '', '', '', 11, '', 'INT', 2, '', '', 'Class Method (powers)', 'NOT NULL', '', 6, '\"<field\\n\\ttype=\\\"powersclassmethods\\\"\\n\\tname=\\\"method\\\"\\n\\tlabel=\\\"Methods\\\"\\n\\tclass=\\\"list_class span12 method_selection_list\\\"\\n\\tmultiple=\\\"false\\\"\\n\\tdefault=\\\"0\\\"\\n\\tonchange=\\\"getClassCode(this, \'method\');\\\"\\n\\textends=\\\"list\\\"\\n\\tbutton=\\\"true\\\"\\n\\ttable=\\\"#__###component###_class_method\\\"\\n\\tcomponent=\\\"com_###component###\\\"\\n\\tview=\\\"class_method\\\"\\n\\tviews=\\\"class_methods\\\"\\n\\tvalue_field=\\\"name\\\"\\n\\tkey_field=\\\"id\\\"\\n\\tprime_php=\\\"1\\\"\\n\\ttype_php_1=\\\"__.o0=base64=Oo.__W0NVU1RPTUNPREU9Y2xhc3NQcm9wZXJ0eU1ldGhvZEZpZWxkK3Bvd2VycyxtZXRob2Rd\\\"\\n\\/>\"', 1, '2023-08-22 04:02:01', '2019-07-15 00:26:13', 1, '', 937, 'dfe24fe5-cbb8-4600-8a19-1ab9d9fac7f0', '', '', '', '', ''),
(3343, '', '', '', '', '', '', '', '', '', '', 'MEDIUMTEXT', '', '', '', 'Foundation', 'NOT NULL', 2, 8, '\"<field\\n\\ttype=\\\"editor\\\"\\n\\tname=\\\"foundation\\\"\\n\\tlabel=\\\"Foundation\\\"\\n\\tdescription=\\\"Add the full foundation template here, with all placeholders and needed hard coded details.\\\"\\n\\twidth=\\\"100%\\\"\\n\\theight=\\\"800px\\\"\\n\\tcols=\\\"40\\\"\\n\\trows=\\\"300\\\"\\n\\tbuttons=\\\"no\\\"\\n\\teditor=\\\"codemirror|none\\\"\\n\\tfilter=\\\"raw\\\"\\n\\tvalidate=\\\"code\\\"\\n\\/>\"', 1, '2023-08-28 14:22:58', '2023-08-29 07:09:55', 2, '', 366, 'e75d9a3c-2bf2-4357-882c-840f4c61c4e6', '', '', '', '', ''),
(3344, '', '', '', '', '', '', '', '', '', '', '', '', '', '', 'Basic Encryption Note', 'NOT NULL', '', 14, '\"<field\\n\\ttype=\\\"note\\\"\\n\\tname=\\\"basic_encryption_note\\\"\\n\\tlabel=\\\"Basic Encryption\\\"\\n\\tdescription=\\\"<p>Since <b>basic encryption<\\/b> makes use of the FOF encryption suite, we need to <b>deprecate<\\/b> this method.<br \\/>Hence, please refrain from using this method in new projects!<\\/p>\\r\\n<p>Removing this basic encryption method from an existing project is challenging, and incorrect removal may result in data loss, or breach. For this reason, we\'ve ported the <b>FOF encryption suite<\\/b> into JCB powers, enabling its use in PHP 8+ and Joomla 4.<\\/p>\\r\\n<p>As a result, you should be able to continue using it in existing projects.<\\/p>\\r\\n<p>We plan to establish a migration path to another encryption option, like <b>PHPSecLib<\\/b>, in the future. We will announce the removal date of the <b>Basic Encryption<\\/b> feature only after this migration path is in place.<\\/p>\\\"\\n\\theading=\\\"h4\\\"\\n\\tclass=\\\"alert alert-error\\\"\\n\\tshowon=\\\"store:3\\\"\\n\\/>\"', 1, '2023-10-10 07:57:04', '2023-10-10 08:00:55', 4, '', 1053, '36a2d9bd-c0ae-4d3b-8184-907ffcb688f1', '', '', '', '', ''),
(3345, '', '', '', '', '', '', '', '', '', '', '', '', '', '', 'Medium Encryption Note', 'NOT NULL', '', 14, '\"<field\\n\\ttype=\\\"note\\\"\\n\\tname=\\\"medium_encryption_note\\\"\\n\\tlabel=\\\"Medium Encryption\\\"\\n\\tdescription=\\\"<p>Since <b>medium encryption<\\/b> makes use of the FOF encryption suite, we need to <b>deprecate<\\/b> this method.<br \\/>Hence, please refrain from using this method in new projects!<\\/p>\\r\\n<p>Removing this medium encryption method from an existing project is challenging, and incorrect removal may result in data loss, or breach. For this reason, we\'ve ported the <b>FOF encryption suite<\\/b> into JCB powers, enabling its use in PHP 8+ and Joomla 4.<\\/p>\\r\\n<p>As a result, you should be able to continue using it in existing projects.<\\/p>\\r\\n<p>We plan to establish a migration path to another encryption option, like <b>PHPSecLib<\\/b>, in the future. We will announce the removal date of the <b>Medium Encryption<\\/b> feature only after this migration path is in place.<\\/p>\\\"\\n\\theading=\\\"h4\\\"\\n\\tclass=\\\"alert alert-error\\\"\\n\\tshowon=\\\"store:5\\\"\\n\\/>\"', 1, '2023-10-10 07:59:58', '2023-10-10 07:59:37', 1, '', 1053, '2e02cc2e-fcaa-4e21-b88b-3e71f25cab1c', '', '', '', '', ''),
(3346, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Super Powers Core Organisation', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"super_powers_core_organisation\\\"\\n\\tlabel=\\\"Gitea Core Organisation\\\"\\n\\tsize=\\\"70\\\"\\n\\tmaxlength=\\\"150\\\"\\n\\tdefault=\\\"joomla\\\"\\n\\tdescription=\\\"Set the organisation on your Gitea system where all the JCB core super powers repositories can be found.\\\"\\n\\tclass=\\\"text_area\\\"\\n\\tfilter=\\\"WORD\\\"\\n\\thint=\\\"joomla\\\"\\n\\tautocomplete=\\\"on\\\"\\n\\tshowon=\\\"add_custom_gitea_url:2\\\"\\n\\/>\"', 1, '2023-10-20 17:00:27', '2023-10-20 17:27:22', 3, '', 641, 'e2021962-8714-42cc-8750-afb9eef014c8', '', '', '', '', ''),
(3347, '', '', '', '', '', '', '', '', '', '', '', '', '', '', 'Super Powers Core Organisation Note', 'NOT NULL', '', 14, '\"<field\\n\\ttype=\\\"note\\\"\\n\\tname=\\\"super_powers_core_organisation_note\\\"\\n\\tlabel=\\\"Gitea Core Organisation\\\"\\n\\tdescription=\\\"<p>The organisation on your Gitea system where all the core super powers repositories can be found.<br \\/>\\r\\nExample: https:\\/\\/your.gitea.system.com\\/<b>[core-org]<\\/b>\\/super-powers<\\/p>\\r\\n<small>These are the core super powers:<\\/small>\\r\\n<ul>\\r\\n<li>https:\\/\\/git.vdm.dev\\/joomla\\/super-powers (required)<\\/li>\\r\\n<li>https:\\/\\/git.vdm.dev\\/joomla\\/phpseclib (encryption)<\\/li>\\r\\n<li>https:\\/\\/git.vdm.dev\\/joomla\\/fof (legacy encryption)<\\/li>\\r\\n<li>https:\\/\\/git.vdm.dev\\/joomla\\/gitea (Easy Gitea classes)<\\/li>\\r\\n<li>https:\\/\\/git.vdm.dev\\/joomla\\/openai (Easy Openai classes)<\\/li>\\r\\n<li>https:\\/\\/git.vdm.dev\\/joomla\\/minify (not usually required)<\\/li>\\r\\n<li>https:\\/\\/git.vdm.dev\\/joomla\\/psr (not usually required)<\\/li>\\r\\n<li>https:\\/\\/git.vdm.dev\\/joomla\\/jcb-compiler (not usually required)<\\/li>\\r\\n<li>https:\\/\\/git.vdm.dev\\/joomla\\/jcb-packager (not usually required)<\\/li>\\r\\n<li>https:\\/\\/git.vdm.dev\\/joomla\\/search (not usually required)<\\/li>\\r\\n<\\/ul>\\r\\n<p>You <b>should mirror<\\/b> theses repositories to your Gitea system. Depending on your extension setup JCB may need these repositories to effectively build your extension.<\\/p>\\\"\\n\\theading=\\\"h4\\\"\\n\\tclass=\\\"alert alert-success\\\"\\n\\tshowon=\\\"add_custom_gitea_url:2\\\"\\n\\/>\"', 1, '2023-10-20 17:26:22', '2023-10-20 17:43:08', 2, '', 641, '0ce6c528-ce31-4365-bbdf-5c202400865e', '', '', '', '', ''),
(3348, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Add Backup Folder Path', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"add_backup_folder_path\\\"\\n\\tlabel=\\\"Backup Folder Path\\\"\\n\\tdescription=\\\"Would you like to override the global backup folder path for this component?\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"|Global,1|Override\\\"\\n\\tdefault=\\\"\\\"\\n\\/>\"', 1, '2023-10-23 09:08:19', '2023-10-23 10:38:11', 7, '', 192, '46bd236f-7d43-4038-ac40-936dfd18e910', '', '', '', '', ''),
(3349, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', 2, '', '', 'Add Git Folder Path', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"add_git_folder_path\\\"\\n\\tlabel=\\\"Git Folder Path\\\"\\n\\tdescription=\\\"Would you like to override the global git folder path for this component?\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"|Global,1|Override\\\"\\n\\tdefault=\\\"\\\"\\n\\/>\"', 1, '2023-10-23 09:09:38', '2023-10-23 10:36:09', 4, '', 192, 'eac7c528-4764-45e8-8304-4b8701e10915', '', '', '', '', ''),
(3350, '', '', '', '', '', '', '', '', '', '', '', '', '', '', 'Backup Folder Path - Note (add)', 'NOT NULL', '', 14, '\"<field\\n\\ttype=\\\"note\\\"\\n\\tname=\\\"note_backup_folder_path\\\"\\n\\tlabel=\\\"Adding a backup folder export option\\\"\\n\\tdescription=\\\"You component, and all other linked extensions will be placed as zip files inside this folder.\\\"\\n\\theading=\\\"h4\\\"\\n\\tclass=\\\"alert alert-info\\\"\\n\\tshowon=\\\"add_backup_folder_path:1\\\"\\n\\/>\"', 1, '2023-10-23 09:13:22', '2016-01-06 09:29:07', 1, '', 642, 'c133e221-f034-4f6e-9635-006d0c59b54a', '', '', '', '', ''),
(3351, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Backup Folder Path (add)', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"backup_folder_path\\\"\\n\\tlabel=\\\"Backup Folder Path\\\"\\n\\tsize=\\\"70\\\"\\n\\tmaxlength=\\\"150\\\"\\n\\tdescription=\\\"Here you can set the path to the backup folder.\\\"\\n\\tclass=\\\"text_area\\\"\\n\\treadonly=\\\"false\\\"\\n\\tdisabled=\\\"false\\\"\\n\\trequired=\\\"false\\\"\\n\\tfilter=\\\"PATH\\\"\\n\\tmessage=\\\"Error! Please add folder path here.\\\"\\n\\thint=\\\"\\/home\\/user\\/backup\\\"\\n\\tautocomplete=\\\"on\\\"\\n\\tshowon=\\\"add_backup_folder_path:1\\\"\\n\\/>\"', 1, '2023-10-23 09:14:26', '2023-10-23 10:23:47', 2, '', 641, '58525d14-8cbf-49fc-8d8e-50a9ba0e846a', '', '', '', '', ''),
(3352, '', '', '', '', '', '', '', '', '', '', '', '', '', '', 'Git Folder Path - Note (add)', 'NOT NULL', '', 14, '\"<field\\n\\ttype=\\\"note\\\"\\n\\tname=\\\"note_git_folder_path\\\"\\n\\tlabel=\\\"Adding a git path to your component\\\"\\n\\tdescription=\\\"You must set the folder where the component and all linked extensions should be deployed for git. You will have to still do your git commit and other git commands yourself. Each extension will create their own folder inside this git folder.\\\"\\n\\theading=\\\"h4\\\"\\n\\tclass=\\\"alert alert-info\\\"\\n\\tshowon=\\\"add_git_folder_path:1\\\"\\n\\/>\"', 1, '2023-10-23 09:16:56', '2023-10-23 09:17:24', 2, '', 642, '32f1aa40-a21f-4c16-b0de-279f961183d0', '', '', '', '', ''),
(3353, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Git Folder Path (add)', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"git_folder_path\\\"\\n\\tlabel=\\\"Git Folder Path\\\"\\n\\tsize=\\\"70\\\"\\n\\tmaxlength=\\\"150\\\"\\n\\tdescription=\\\"Here you can set the path to the git folder.\\\"\\n\\tclass=\\\"text_area\\\"\\n\\treadonly=\\\"false\\\"\\n\\tdisabled=\\\"false\\\"\\n\\trequired=\\\"false\\\"\\n\\tfilter=\\\"PATH\\\"\\n\\tmessage=\\\"Error! Please add folder path here.\\\"\\n\\thint=\\\"\\/home\\/user\\/git\\\"\\n\\tautocomplete=\\\"on\\\"\\n\\tshowon=\\\"add_git_folder_path:1\\\"\\n\\/>\"', 1, '2023-10-23 09:18:11', '2021-12-01 00:50:45', 1, '', 641, '7b181242-b4bc-4261-87cb-6210ec8b5af5', '', '', '', '', ''),
(3354, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', '', '', '', 'Local getBible Link', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"local_link\\\"\\n\\tlabel=\\\"Local getBible Link\\\"\\n\\tsize=\\\"50\\\"\\n\\tmaxlength=\\\"150\\\"\\n\\tdescription=\\\"The link to the local getBible app page.\\\"\\n\\tclass=\\\"text_area\\\"\\n\\tfilter=\\\"STRING\\\"\\n\\tmessage=\\\"Error! Please add some local getBible link here.\\\"\\n\\thint=\\\"https:\\/\\/truechristian.church\\/scriptures\\\"\\n\\tautocomplete=\\\"on\\\"\\n\\tshowon=\\\"type:1[AND]link:3\\\"\\n\\/>\"', 1, '2023-11-10 08:16:28', '2023-11-10 08:19:14', 3, '', 1054, 'f73e0d97-6d17-4a18-a159-565e6f0eafd0', '', '', '', '', ''),
(3355, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'Show Link (Github - Daily Light)', 'NOT NULL', '', 11, '\"<field\\n\\ttype=\\\"list\\\"\\n\\tname=\\\"link\\\"\\n\\tlabel=\\\"Show Link\\\"\\n\\tdescription=\\\"Should we show a link.\\\"\\n\\tclass=\\\"list_class\\\"\\n\\tmultiple=\\\"false\\\"\\n\\toption=\\\"1|Telegram,0|None\\\"\\n\\tdefault=\\\"1\\\"\\n\\tshowon=\\\"type:1\\\"\\n\\/>\"', 1, '2023-11-10 08:25:39', '2023-11-10 08:25:59', 2, '', 1017, 'de0d7224-dcf9-42bc-87ed-05914555b027', '', '', '', '', ''),
(3356, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', 2, '', '', 'Namespace Prefix', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"namespace_prefix\\\"\\n\\tlabel=\\\"Namespace Prefix\\\"\\n\\tsize=\\\"250\\\"\\n\\tmaxlength=\\\"250\\\"\\n\\tdefault=\\\"JCB\\\"\\n\\tdescription=\\\"Add the namespace prefix. Like your company name in a code formate. So it will have no spaces and starting with an uppercase letter, and only be alphabetical characters.<br \\/>Example: <code>VastDevelopmentMethod<\\/code><br \\/>This will be used as a prefix to namespacing when targeting Joomla 4 and above.\\\"\\n\\tclass=\\\"text_area\\\"\\n\\trequired=\\\"true\\\"\\n\\tfilter=\\\"WORD\\\"\\n\\tmessage=\\\"Error! Please add namespace prefix here.\\\"\\n\\thint=\\\"VastDevelopmentMethod\\\"\\n\\tautocomplete=\\\"on\\\"\\n\\tescape=\\\"false\\\"\\n\\/>\"', 1, '2023-12-16 10:37:47', '2023-12-16 11:15:24', 5, '', 1013, 'd6bb0ff7-799a-40f0-829d-c6d5837978a4', '', '', '', '', ''),
(3357, '', '', '', '', '', '', '', '', 1, '', 'CHAR', 2, '', '', 'Add Namespace Prefix (component)', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"add_namespace_prefix\\\"\\n\\tlabel=\\\"Add Namespace Prefix\\\"\\n\\tdescription=\\\"Override the namespace prefix, or use the global value found under the component builder global option under the compiler tab.\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"|Use Global,1|Override\\\"\\n\\tdefault=\\\"\\\"\\n\\/>\"', 1, '2023-12-16 10:44:49', '2018-09-20 20:00:06', 1, '', 855, '50d55392-74b6-43e2-9b16-37c7f95a7402', '', '', '', '', ''),
(3358, '', '', '', '', '', '', '', '', 255, '', 'VARCHAR', 2, '', '', 'Namespace Prefix (component)', 'NOT NULL', '', 24, '\"<field\\n\\ttype=\\\"text\\\"\\n\\tname=\\\"namespace_prefix\\\"\\n\\tlabel=\\\"Namespace Prefix\\\"\\n\\tsize=\\\"250\\\"\\n\\tmaxlength=\\\"250\\\"\\n\\tdefault=\\\"JCB\\\"\\n\\tdescription=\\\"Add the namespace prefix. Like your company name in a code formate. So it will have no spaces and starting with an uppercase letter, and only be alphabetical characters.<br \\/>Example: <code>VastDevelopmentMethod<\\/code><br \\/>This will be used as a prefix to namespacing when targeting Joomla 4 and above.\\\"\\n\\tclass=\\\"text_area\\\"\\n\\trequired=\\\"true\\\"\\n\\tfilter=\\\"WORD\\\"\\n\\tmessage=\\\"Error! Please add namespace prefix here.\\\"\\n\\thint=\\\"VastDevelopmentMethod\\\"\\n\\tautocomplete=\\\"on\\\"\\n\\tshowon=\\\"add_namespace_prefix:1\\\"\\n\\tescape=\\\"false\\\"\\n\\/>\"', 1, '2023-12-16 10:45:36', '2023-12-16 11:15:16', 2, '', 1013, 'b742dcb4-0d29-4a4a-88f9-eca218d79a19', '', '', '', '', ''),
(3359, '', '', '', '', '', '', 'Other', 3, 11, '', 'INT', '', '', '', 'Joomla Version', 'NOT NULL', '', 15, '\"<field\\n\\ttype=\\\"number\\\"\\n\\tname=\\\"joomla_version\\\"\\n\\tlabel=\\\"Joomla Version\\\"\\n\\tdefault=\\\"3\\\"\\n\\tclass=\\\"text_area\\\"\\n\\tmin=\\\"3\\\"\\n\\tmax=\\\"5\\\"\\n\\tstep=\\\"1\\\"\\n\\tshowon=\\\"target:1\\\"\\n\\/>\"', 1, '2024-01-12 11:24:27', '2024-01-12 11:26:35', 4, '', 1055, 'a6c87660-f1fe-490d-b1c5-9755e6db1e19', '', '', '', '', ''),
(3360, '', '', '', '', '', '', '', '', '', '', '', '', '', '', 'Notice - JComponentRouterBase', 'NOT NULL', '', 14, '\"<field\\n\\ttype=\\\"note\\\"\\n\\tname=\\\"php_router_parse_notice\\\"\\n\\tlabel=\\\"Joomla 4++\\\"\\n\\tdescription=\\\"For Joomla 4 and above we move the <b>router related<\\/b> settings to the <b>the Component Site Router<\\/b> area. This can be found in the <em>Joomla Components<\\/em> list view, next to the [add site views button] you will see a <a class=\'hasTooltip btn btn-mini\' href=\'#\'><span class=\'icon-tree-2\'><\\/span><\\/a> button that opens this new <b>Site Router<\\/b> view.\\\"\\n\\theading=\\\"h3\\\"\\n\\tclass=\\\"alert alert-info\\\"\\n\\/>\"', 1, '2024-01-26 06:02:56', '2024-02-01 04:53:09', 7, '', 119, 'a744f5b0-e6a6-4e83-a252-a4c6bf7479d2', '', '', '', '', ''),
(3361, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'Router Mode [constructor_before_parent]', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"mode_constructor_before_parent\\\"\\n\\tlabel=\\\"Router Mode<br \\/><small>[constructor_before_parent]<\\/small>\\\"\\n\\tdescription=\\\"You can set your router constructor before parent mode here for only Joomla 4 and above.\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"1|Default,2|Manual,3|Code\\\"\\n\\tdefault=\\\"1\\\"\\n\\/>\"', 1, '2024-01-26 09:43:47', '2024-01-27 18:41:56', 5, '', 1056, '4582a192-d46e-4dd9-9bbd-ee2e2ddd20e5', '', '', '', '', ''),
(3362, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'Router Mode [constructor_after_parent]', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"mode_constructor_after_parent\\\"\\n\\tlabel=\\\"Router Mode<br \\/><small>[constructor_after_parent]<\\/small>\\\"\\n\\tdescription=\\\"You can set your router constructor after parent mode here for only Joomla 4 and above.\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"1|None,3|Code\\\"\\n\\tdefault=\\\"1\\\"\\n\\/>\"', 1, '2024-01-27 18:39:20', '2024-01-27 18:41:16', 3, '', 1056, '2b31ca2e-11ff-4f57-8c90-2b9bed743202', '', '', '', '', ''),
(3363, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'Router Mode [methods]', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"mode_methods\\\"\\n\\tlabel=\\\"Router Mode<br \\/><small>[methods]<\\/small>\\\"\\n\\tdescription=\\\"You can set your router methods mode here for only Joomla 4 and above.\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"0|None,1|Default,3|Code\\\"\\n\\tdefault=\\\"1\\\"\\n\\/>\"', 1, '2024-01-27 18:40:14', '2024-02-16 19:52:03', 5, '', 1056, '25fead1f-bb12-40e6-9e03-4e31b236f2e1', '', '', '', '', ''),
(3364, '', '', '', '', '', '', '', '', '', '', 'MEDIUMTEXT', '', '', '', 'Constructor Before Parent Code', 'NOT NULL', 2, 8, '\"<field\\n\\ttype=\\\"editor\\\"\\n\\tname=\\\"constructor_before_parent_code\\\"\\n\\tlabel=\\\"Constructor Before Parent<br \\/><small>Code<\\/small>\\\"\\n\\tdescription=\\\"Here you can add the code to use in the constructor before parent class is called.\\\"\\n\\twidth=\\\"100%\\\"\\n\\theight=\\\"800px\\\"\\n\\tcols=\\\"40\\\"\\n\\trows=\\\"300\\\"\\n\\tbuttons=\\\"no\\\"\\n\\tsyntax=\\\"php\\\"\\n\\teditor=\\\"codemirror|none\\\"\\n\\tfilter=\\\"raw\\\"\\n\\tvalidate=\\\"code\\\"\\n\\tshowon=\\\"mode_constructor_before_parent:3\\\"\\n\\/>\"', 1, '2024-01-27 18:46:17', '2024-01-27 20:04:21', 2, '', 366, '65544263-3215-4574-a977-dbf8ac2ce72a', '', '', '', '', ''),
(3365, '', '', '', '', '', '', '', '', '', '', 'MEDIUMTEXT', '', '', '', 'Constructor After Parent Code', 'NOT NULL', 2, 8, '\"<field\\n\\ttype=\\\"editor\\\"\\n\\tname=\\\"constructor_after_parent_code\\\"\\n\\tlabel=\\\"Constructor After Parent<br \\/><small>Code<\\/small>\\\"\\n\\tdescription=\\\"Here you can add the code to use in the constructor after parent class is called.\\\"\\n\\twidth=\\\"100%\\\"\\n\\theight=\\\"800px\\\"\\n\\tcols=\\\"40\\\"\\n\\trows=\\\"300\\\"\\n\\tbuttons=\\\"no\\\"\\n\\tsyntax=\\\"php\\\"\\n\\teditor=\\\"codemirror|none\\\"\\n\\tfilter=\\\"raw\\\"\\n\\tvalidate=\\\"code\\\"\\n\\tshowon=\\\"mode_constructor_after_parent:3\\\"\\n\\/>\"', 1, '2024-01-27 18:46:59', '2024-01-27 20:04:37', 2, '', 366, 'a411a365-69c8-4f70-a734-25956a9f3393', '', '', '', '', ''),
(3366, '', '', '', '', '', '', '', '', '', '', 'MEDIUMTEXT', '', '', '', 'Methods Code', 'NOT NULL', 2, 8, '\"<field\\n\\ttype=\\\"editor\\\"\\n\\tname=\\\"methods_code\\\"\\n\\tlabel=\\\"Methods<br \\/><small>Code<\\/small>\\\"\\n\\tdescription=\\\"Here you can add the methods to add to the router class.\\\"\\n\\twidth=\\\"100%\\\"\\n\\theight=\\\"800px\\\"\\n\\tcols=\\\"40\\\"\\n\\trows=\\\"300\\\"\\n\\tbuttons=\\\"no\\\"\\n\\tsyntax=\\\"php\\\"\\n\\teditor=\\\"codemirror|none\\\"\\n\\tfilter=\\\"raw\\\"\\n\\tvalidate=\\\"code\\\"\\n\\tshowon=\\\"mode_methods:3\\\"\\n\\/>\"', 1, '2024-01-27 18:48:12', '2024-01-27 20:04:51', 2, '', 366, '3ab69198-0827-452b-93a4-6c7bb02ae7ae', '', '', '', '', ''),
(3367, '', '', '', '', '', '', '', '', '', '', 'TEXT', '', '', '', 'Manual Setup of View Configuration', 'NOT NULL', '', 35, '\"<field\\n\\ttype=\\\"subform\\\"\\n\\tname=\\\"constructor_before_parent_manual\\\"\\n\\tlabel=\\\"Manual Setup of View Configuration\\\"\\n\\tlayout=\\\"repeatablejcb\\\"\\n\\tmultiple=\\\"true\\\"\\n\\tfields=\\\"557\\\"\\n\\tdescription=\\\"Setup the site views router configuration for this component.\\\"\\n\\ticon=\\\"list\\\"\\n\\tshowon=\\\"mode_constructor_before_parent:2\\\"\\n\\/>\"', 1, '2024-01-27 20:09:25', '2024-01-27 20:12:43', 3, '', 537, '2321b486-80c4-4e24-81c5-6ddd205592ac', '', '', '', '', ''),
(3368, '', '', '', '', '', '', '', '', '', '', '', '', '', '', 'Note - Router Settings (basic)', 'NOT NULL', '', 14, '\"<field\\n\\ttype=\\\"note\\\"\\n\\tname=\\\"note_router_settings\\\"\\n\\tlabel=\\\"Site Router Settings\\\"\\n\\tdescription=\\\"Extending the `RouterView` class in a Joomla 3rd party extension enables developers to intricately manage and customize URLs, significantly enhancing user navigation and SEO. This approach allows for defining clean, search-engine-friendly routes for component views, dynamic handling of query variables, and seamless integration with Joomla\'s menu system for automatic route adjustments. Additionally, it supports the implementation of custom routing rules, including support for multilingual sites, and sophisticated error handling and redirects. By leveraging `RouterView`, developers can craft a more intuitive and efficient URL structure, ensuring a smoother user experience and improved visibility on search engines.\\\"\\n\\theading=\\\"h4\\\"\\n\\tclass=\\\"alert alert-info\\\"\\n\\tshowon=\\\"router_settings_details_switch:2\\\"\\n\\/>\"', 1, '2024-01-27 20:23:55', '2024-01-27 21:20:33', 3, '', 25, 'cfbb24d7-82eb-499c-b1fb-b5d0ae3f9467', '', '', '', '', ''),
(3369, '', '', '', '', '', '', '', '', '', '', '', '', '', '', 'Note - Router Settings (advance)', 'NOT NULL', '', 14, '\"<field\\n\\ttype=\\\"note\\\"\\n\\tname=\\\"note_router_settings_advance\\\"\\n\\tlabel=\\\"Understanding the Site RouterView Class.\\\"\\n\\tdescription=\\\"<p>The <code>RouterView<\\/code> class in Joomla is designed to manage the routing process, translating human-readable URLs into query variables and vice versa. This functionality is crucial for creating search engine friendly (SEF) URLs and ensuring that requests within the Joomla application are directed to the appropriate components and views.<\\/p>\\r\\n\\r\\n<h2>Key Responsibilities<\\/h2>\\r\\n<ul>\\r\\n <li><strong>URL Building:<\\/strong> Converts query information into SEF URLs. This process involves taking the query parameters associated with a particular route and constructing a URL that is both user-friendly and optimized for search engines.<\\/li>\\r\\n <li><strong>URL Parsing:<\\/strong> Interprets SEF URLs back into query parameters. When a request is made to Joomla with an SEF URL, the RouterView class parses this URL to determine the component, view, and other request variables required to fulfill the request.<\\/li>\\r\\n<\\/ul>\\r\\n\\r\\n<h2>How to Use RouterView in a 3rd Party Extension<\\/h2>\\r\\n<p>To leverage the <code>RouterView<\\/code> class in a 3rd party Joomla extension, follow these steps:<\\/p>\\r\\n<ol>\\r\\n <li><strong>Extend RouterView:<\\/strong> Create a new router class in your component that extends <code>RouterView<\\/code>. This class will define the routing rules specific to your component.<\\/li>\\r\\n <li><strong>Define Routes:<\\/strong> Within your router class, define routes by mapping URL patterns to query parameters. This involves specifying how URL segments correspond to the component\\u2019s views and tasks.<\\/li>\\r\\n <li><strong>Register the Router:<\\/strong> Ensure that Joomla is aware of your custom router by registering it with the application. This is typically done within the component\\u2019s entry point file.<\\/li>\\r\\n<\\/ol>\\r\\n\\r\\n<h2>Benefits of Using RouterView<\\/h2>\\r\\n<ul>\\r\\n <li><strong>SEO Optimization:<\\/strong> By enabling the creation of human-readable URLs, RouterView helps improve the SEO of your Joomla site.<\\/li>\\r\\n <li><strong>Improved User Experience:<\\/strong> SEF URLs are easier for users to understand and remember, enhancing the overall user experience.<\\/li>\\r\\n <li><strong>Flexibility:<\\/strong> Custom routers allow for granular control over URL structure, making it possible to tailor URLs to match the needs of your extension and its audience.<\\/li>\\r\\n<\\/ul>\\r\\n\\r\\n<p>The basic structure of a custom router class for a Joomla 3rd party extension highlights the need to implement the <code>build<\\/code> and <code>parse<\\/code> methods, which handle the conversion between query parameters and SEF URLs.<\\/p>\\\"\\n\\theading=\\\"h1\\\"\\n\\tclass=\\\"alert alert-info\\\"\\n\\tshowon=\\\"router_settings_details_switch:3\\\"\\n\\/>\"', 1, '2024-01-27 20:26:52', '2024-01-27 21:22:30', 3, '', 25, '00f9d3c7-9399-41dc-98de-df6e49f73b1b', '', '', '', '', ''),
(3370, '', '', '', '', '', '', '', '', 1, '', 'TINYINT', '', '', '', 'Router Settings Details Switch', 'NOT NULL', '', 17, '\"<field\\n\\ttype=\\\"radio\\\"\\n\\tname=\\\"router_settings_details_switch\\\"\\n\\tlabel=\\\"Documentation\\\"\\n\\tclass=\\\"btn-group btn-group-yesno\\\"\\n\\toption=\\\"1|None,2|Basic,3|Details\\\"\\n\\tdefault=\\\"1\\\"\\n\\/>\"', 1, '2024-01-27 20:28:46', '2024-01-27 20:29:12', 2, '', 1056, '68ee2a4b-15ee-4ba7-8fbe-9408779f66f3', '', '', '', '', ''),
(3371, '', '', '', '', '', '', '', '', '', '', '', '', '', '', 'Note - Router Mode (Manual)', 'NOT NULL', '', 14, '\"<field\\n\\ttype=\\\"note\\\"\\n\\tname=\\\"note_mode_constructor_before_parent_manual\\\"\\n\\tlabel=\\\"Manual Mode\\\"\\n\\tdescription=\\\"This feature is not yet ready (SOON)\\\"\\n\\theading=\\\"h4\\\"\\n\\tclass=\\\"alert alert-error\\\"\\n\\tshowon=\\\"mode_constructor_before_parent:2\\\"\\n\\/>\"', 1, '2024-02-01 05:27:01', '2024-01-27 21:20:33', 1, '', 25, 'e3ae9a2d-2e9f-4910-9fda-632732ac0737', '', '', '', '', ''),
(3372, '', '', '', '', '', '', 'Other', 3, 11, '', 'INT', '', '', '', 'Preferred Joomla Version', 'NOT NULL', '', 15, '\"<field\\n\\ttype=\\\"number\\\"\\n\\tname=\\\"preferred_joomla_version\\\"\\n\\tlabel=\\\"Preferred Joomla Version\\\"\\n\\tdefault=\\\"3\\\"\\n\\tclass=\\\"text_area\\\"\\n\\tmin=\\\"3\\\"\\n\\tmax=\\\"5\\\"\\n\\tstep=\\\"1\\\"\\n\\/>\"', 1, '2024-03-07 13:11:01', '2024-03-07 13:12:26', 2, '', 1055, 'e30ca545-0ccd-4925-b34d-96bc27d6a27c', '', '', '', '', ''),
(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', '', '', '', '', '');
--
-- Dumping data for table `#__componentbuilder_fieldtype`
--
INSERT INTO `#__componentbuilder_fieldtype` (`id`, `description`, `name`, `properties`, `short_description`, `params`, `published`, `version`, `hits`, `ordering`, `guid`) VALUES
(1, 'The calendar form field type provides a text box for entry of a date. An icon next to the text box provides a link to a pop-up calendar, which can also be used to enter the date value. If the field has a saved value this is shown in the text box. Otherwis', 'Calendar', '{\"properties0\":{\"name\":\"type\",\"example\":\"calendar\",\"mandatory\":\"1\",\"description\":\"(mandatory) must be calendar.\"},\"properties1\":{\"name\":\"name\",\"example\":\"date\",\"adjustable\":\"1\",\"mandatory\":\"1\",\"description\":\"(mandatory) is the unique name of the field.\"},\"properties2\":{\"name\":\"label\",\"example\":\"Select a date\",\"adjustable\":\"1\",\"mandatory\":\"1\",\"translatable\":\"1\",\"description\":\"(mandatory) (translatable) is the descriptive title of the field.\"},\"properties3\":{\"name\":\"default\",\"example\":\"NOW\",\"adjustable\":\"1\",\"description\":\"(optional) is the default date. This must be given in the same format as specified by the format argument. You can put \\\"NOW\\\" to have current time.\"},\"properties4\":{\"name\":\"description\",\"example\":\"\",\"adjustable\":\"1\",\"translatable\":\"1\",\"description\":\"(optional) (translatable) is text that will be shown as a tooltip when the user moves the mouse over the text box.\"},\"properties5\":{\"name\":\"readonly\",\"example\":\"\",\"adjustable\":\"1\",\"description\":\"(optional) is whether the text box is read-only (true or false). If the text box is read-only, the date cannot be changed, but can be selected and copied. No calendar icon will be shown.\"},\"properties6\":{\"name\":\"disabled\",\"example\":\"\",\"adjustable\":\"1\",\"description\":\"(optional) is whether the text box is disabled (true or false). If the text box is disabled, the date cannot be changed, selected or copied.\"},\"properties7\":{\"name\":\"class\",\"example\":\"\",\"adjustable\":\"1\",\"description\":\"(optional) is a CSS class name for the HTML form field.\"},\"properties8\":{\"name\":\"format\",\"example\":\"%d-%m-%Y\",\"adjustable\":\"1\",\"description\":\"(optional) is the date format to be used. This is in the format used by PHP to specify date string formats (see below). If no format argument is given, \'%Y-%m-%d\' is assumed (giving dates like \'2008-04-16\').\"},\"properties9\":{\"name\":\"filter\",\"example\":\"\",\"adjustable\":\"1\",\"description\":\"(optional) is time zone to be used. There are two values; server_utc and user_utc. The first one is server time zone and the later is user time zone as configured in global configuration and user information respectively.\"},\"properties10\":{\"name\":\"validate\",\"example\":\"\",\"adjustable\":\"1\",\"description\":\"(optional) The validation method for the form field. This value will determine which method is used to validate the value for a field.\"},\"properties23\":{\"name\":\"message\",\"example\":\"Error! Please add some text here.\",\"adjustable\":\"1\",\"translatable\":\"1\",\"description\":\"(optional) The error message that will be displayed instead of the default message.\"},\"properties11\":{\"name\":\"size\",\"example\":\"\",\"adjustable\":\"1\",\"description\":\"(optional)\"},\"properties12\":{\"name\":\"required\",\"example\":\"\",\"adjustable\":\"1\",\"description\":\"(optional) The field must be filled before submitting the form.\"},\"properties13\":{\"name\":\"showon\",\"example\":\"\",\"adjustable\":\"1\",\"description\":\"(optional) show this field on the bases of the value in another field. https:\\/\\/joomla.stackexchange.com\\/a\\/17682\\/2166\"},\"properties14\":{\"name\":\"translateformat\",\"example\":\"\",\"adjustable\":\"1\",\"description\":\"(optional): If set to true, the calendar will use a language string to determine the format. The `format` attribute is ignored. If false, the `format` attribute is used (same behaviour as today). (starting with 3.7.0)\"},\"properties15\":{\"name\":\"showtime\",\"example\":\"\",\"adjustable\":\"1\",\"description\":\"(optional): If set to true and translateformat is true, the language key DATE_FORMAT_CALENDAR_DATETIME is used, otherwise DATE_FORMAT_CALENDAR_DATE. (starting with 3.7.0)\"},\"properties16\":{\"name\":\"timeformat\",\"example\":\"\",\"adjustable\":\"1\",\"description\":\"(optional): can be set to 12 (and specify AM or PM) or 24 (starting with 3.7.0)\"},\"properties17\":{\"name\":\"singleheader\",\"example\":\"\",\"adjustable\":\"1\",\"description\":\"(optional): if set to false, the year and the month selection will be set on two separates lines, with independant selection (starting with 3.7.0)\"},\"properties18\":{\"name\":\"todaybutton\",\"example\":\"\",\"adjustable\":\"1\",\"description\":\"(optional): if set to true, a button is added at the bottom of the datePicker to select the date of the current day (starting with 3.7.0)\"},\"properties19\":{\"name\":\"weeknumbers\",\"example\":\"\",\"adjustable\":\"1\",\"description\":\"(optional): if set to true, a column is added at the left of the datePicker to display the number of the week in the current year (starting with 3.7.0)\"},\"properties20\":{\"name\":\"filltable\",\"example\":\"\",\"adjustable\":\"1\",\"description\":\"(optional): if set to true, dates of the previous and next month is added at the top and the bottom of the current month to fill the grid (starting with 3.7.0)\"},\"properties21\":{\"name\":\"minyear\",\"example\":\"\",\"adjustable\":\"1\",\"description\":\"(optional): set a signed integer for a number of years (-10, -2, 0, 7, 12, ...) to define the relative lower limit for the year selection. The user could not select a year before your limit (starting with 3.7.0)\"},\"properties22\":{\"name\":\"maxyear\",\"example\":\"\",\"adjustable\":\"1\",\"description\":\"(optional): set a signed integer for a number of years (-10, -2, 0, 7, 12, ...) to define the relative upper limit for the year selection. The user could not select a year after your limit (starting with 3.7.0)\"}}', 'provides a text box for entry of a date. An icon next to the text box provides a link to a pop-up calendar, which can also be used to enter the date value.', '', 1, 9, '', '', '6cf5a33f-cb25-4a58-bfec-7e1511896402'),
(2, 'The category form field type provides a drop down list of all published categories for a certain extension. If the parameter has a saved value this is selected when the page is first loaded. If not, the default value (if any) is selected. If the show_root', 'Category', '{\"properties0\":{\"name\":\"type\",\"example\":\"category\",\"mandatory\":\"1\",\"description\":\"(mandatory) must be category.\"},\"properties1\":{\"name\":\"name\",\"example\":\"mycategory\",\"adjustable\":\"1\",\"mandatory\":\"1\",\"description\":\"(mandatory) is the unique name of the parameter.\"},\"properties2\":{\"name\":\"label\",\"example\":\"Select a category\",\"adjustable\":\"1\",\"mandatory\":\"1\",\"translatable\":\"1\",\"description\":\"(mandatory) (translatable) is the descriptive title of the field.\"},\"properties3\":{\"name\":\"extension\",\"example\":\"com_content\",\"adjustable\":\"1\",\"mandatory\":\"1\",\"description\":\"(mandatory) is the name of the extension for which the categories will be retrieved. For example, to list content categories, use the value \'com_content\'. You can add also target one view, use the value \'com_component.view\'.\"},\"properties4\":{\"name\":\"scope\",\"example\":\"\",\"adjustable\":\"1\",\"description\":\"(optional) is an alias for extension.\"},\"properties5\":{\"name\":\"required\",\"example\":\"true\",\"adjustable\":\"1\",\"description\":\"(optional) The field must be filled before submitting the form.\"},\"properties6\":{\"name\":\"show_root\",\"example\":\"true\",\"adjustable\":\"1\",\"description\":\"(optional) is whether a choice representing the root category will be shown. Remove completely if it is not to be shown.\"},\"properties7\":{\"name\":\"default\",\"example\":\"\",\"adjustable\":\"1\",\"description\":\"(optional) is the default category ID number.\"},\"properties8\":{\"name\":\"description\",\"example\":\"select one of the following categories\",\"adjustable\":\"1\",\"translatable\":\"1\",\"description\":\"(optional) (translatable) is text that will be shown as a tooltip when the user moves the mouse over the drop-down box.\"},\"properties9\":{\"name\":\"class\",\"example\":\"inputbox\",\"adjustable\":\"1\",\"description\":\"(optional) is a CSS class name for the HTML form field. If omitted this will default to \'inputbox\'.\"},\"properties10\":{\"name\":\"published\",\"example\":\"1\",\"adjustable\":\"1\",\"description\":\"(optional) (1\\/0\\/2\\/-2) is whether the drop down will show only published (1), unpublished (0), archived (2) or trashed (-2) categories. It is possible to combine different publishing status by entering the list of the corresponding numbers separated by comma (e.g. \\\"0,2,-2\\\" will display only unpublished, archived and trashed categories in the drop-down).\"},\"properties11\":{\"name\":\"multiple\",\"example\":\"false\",\"adjustable\":\"1\",\"description\":\"(optional) is whether multiple items can be selected at the same time (true or false).\"},\"properties12\":{\"name\":\"showon\",\"example\":\"\",\"adjustable\":\"1\",\"description\":\"(optional) show this field on the bases of the value in another field. https:\\/\\/joomla.stackexchange.com\\/a\\/17682\\/2166\"}}', 'provides a drop down list of categories for an extension.', '', 1, 13, '', '', 'f70346b3-2096-4f44-8b26-01ab87da7d1e'),
(3, 'The checkbox form field type provides a single checkbox. If the parameter has a saved value this is selected when the page is first loaded. If not, the default value (if any) is selected.', 'Checkbox', '{\"properties0\":{\"name\":\"type\",\"example\":\"checkbox\",\"mandatory\":\"1\",\"description\":\"(mandatory) must be checkbox\"},\"properties1\":{\"name\":\"name\",\"example\":\"show_title\",\"adjustable\":\"1\",\"mandatory\":\"1\",\"description\":\"(mandatory) is the unique name of the parameter.\"},\"properties2\":{\"name\":\"label\",\"example\":\"Show title\",\"adjustable\":\"1\",\"mandatory\":\"1\",\"translatable\":\"1\",\"description\":\"(mandatory) (translatable) is the descriptive title of the field.\"},\"properties3\":{\"name\":\"value\",\"example\":\"1\",\"adjustable\":\"1\",\"description\":\"(optional) is the value of the parameter if this checkbox is set (usually 1).\"},\"properties4\":{\"name\":\"default\",\"example\":\"\",\"adjustable\":\"1\",\"description\":\"(optional) is the default value (usually 0 or 1).\"},\"properties5\":{\"name\":\"required\",\"example\":\"\",\"adjustable\":\"1\",\"description\":\"(optional) The field must be filled before submitting the form.\"},\"properties6\":{\"name\":\"description\",\"example\":\"Show the title of the item\",\"adjustable\":\"1\",\"translatable\":\"1\",\"description\":\"(optional) (translatable) is text that will be shown as a tooltip when the user moves the mouse over the label.\"},\"properties7\":{\"name\":\"class\",\"example\":\"inputbox\",\"adjustable\":\"1\",\"description\":\"(optional) is a CSS class name for the HTML form field. If omitted this will default to \'inputbox\'.\"},\"properties8\":{\"name\":\"showon\",\"example\":\"\",\"adjustable\":\"1\",\"description\":\"(optional) show this field on the bases of the value in another field. https:\\/\\/joomla.stackexchange.com\\/a\\/17682\\/2166\"},\"properties9\":{\"name\":\"onchange\",\"example\":\"\",\"adjustable\":\"1\",\"description\":\"(optional) HTML equivalent attribute (JavaScript use)\"}}', 'provides a single checkbox to be checked or unchecked', '', 1, 7, '', '', '10066262-b6e3-4f82-941e-cbe4f61ddd6c'),
(4, 'The checkboxes form field type provides a set of checkboxes. Note: unlike most standard form field types, such as textfield or checkbox, this field is not an \"out of the box\" solution. It will create checkboxes for you, and submit their values in form of ', 'Checkboxes', '{\"properties0\":{\"name\":\"type\",\"example\":\"checkboxes\",\"mandatory\":\"1\",\"description\":\"(mandatory) must be checkboxs\"},\"properties1\":{\"name\":\"name\",\"example\":\"toppings\",\"adjustable\":\"1\",\"mandatory\":\"1\",\"description\":\"(mandatory) is the unique name of the parameter.\"},\"properties2\":{\"name\":\"label\",\"example\":\"Select Toppings\",\"adjustable\":\"1\",\"translatable\":\"1\",\"description\":\"(optional) (translatable) is the descriptive title of the field.\"},\"properties3\":{\"name\":\"option\",\"example\":\"anch|Anchovies,chor|Chorizo,on|Onions,mush|Mushrooms\",\"adjustable\":\"1\",\"mandatory\":\"1\",\"description\":\"(mandatory) set the options of this radio. Separate options with commas and use the pipe symbol to separate value from text.\"},\"properties4\":{\"name\":\"default\",\"example\":\"\",\"adjustable\":\"1\",\"description\":\"(optional) is the default value.\"},\"properties5\":{\"name\":\"description\",\"example\":\"Select the topping of your choice\",\"adjustable\":\"1\",\"translatable\":\"1\",\"description\":\"(optional) (translatable) is text that will be shown as a tooltip when the user moves the mouse over the label.\"},\"properties6\":{\"name\":\"required\",\"example\":\"\",\"adjustable\":\"1\",\"description\":\"(optional) The field must be filled before submitting the form.\"},\"properties7\":{\"name\":\"class\",\"example\":\"\",\"adjustable\":\"1\",\"description\":\"(optional) is a CSS class name for the HTML form field. If omitted this will default to \'inputbox\'.\"},\"properties8\":{\"name\":\"showon\",\"example\":\"\",\"adjustable\":\"1\",\"description\":\"(optional) show this field on the bases of the value in another field. https:\\/\\/joomla.stackexchange.com\\/a\\/17682\\/2166\"}}', 'provides unlimited checkboxes that can be used for multi-select.', '', 1, 4, '', '', 'ac10859b-58da-4584-9682-36a6c2c8d04d'),
(5, 'Provides a color picker. Enter the color as #ff00ff or pick it from the palet.', 'Color', '{\"properties0\":{\"name\":\"type\",\"example\":\"color\",\"mandatory\":\"1\",\"description\":\"(mandatory) must be color.\"},\"properties1\":{\"name\":\"name\",\"example\":\"backgroundcolor\",\"adjustable\":\"1\",\"mandatory\":\"1\",\"description\":\"(mandatory) is the unique name of the parameter.\"},\"properties2\":{\"name\":\"default\",\"example\":\"#FFFFFF\",\"adjustable\":\"1\",\"description\":\"(optional) provides a color when not set.\"},\"properties3\":{\"name\":\"label\",\"example\":\"Background\",\"adjustable\":\"1\",\"mandatory\":\"1\",\"translatable\":\"1\",\"description\":\"(mandatory) (translatable) is the descriptive title of the field.\"},\"properties4\":{\"name\":\"description\",\"example\":\"Select the background color here.\",\"adjustable\":\"1\",\"translatable\":\"1\",\"description\":\"(optional) (translatable) tooltip for the form field.\"},\"properties5\":{\"name\":\"required\",\"example\":\"\",\"adjustable\":\"1\",\"description\":\"(optional) The field must be filled before submitting the form.\"},\"properties6\":{\"name\":\"showon\",\"example\":\"\",\"adjustable\":\"1\",\"description\":\"(optional) show this field on the bases of the value in another field. https:\\/\\/joomla.stackexchange.com\\/a\\/17682\\/2166\"}}', 'provides a color picker when clicking the input box.', '', 1, 5, '', '', '7f60f198-53e7-4fe9-813f-d1b6c553680e'),
(6, 'The list form field type provides a drop down list or a list box of other current component table entries. If the field has a saved value this is selected when the page is first loaded. If not, the default value (if any) is selected.', 'Custom', '{\"properties0\":{\"name\":\"type\",\"example\":\"subjects\",\"mandatory\":\"1\",\"description\":\"(mandatory) can be anything, just not the same as any other default Joomla field type. You can also not use the \\\"_\\\" (underscore) or \\\"-\\\" (hyphen) in the type name, and no spaces.\"},\"properties1\":{\"name\":\"name\",\"example\":\"subject\",\"adjustable\":\"1\",\"mandatory\":\"1\",\"description\":\"(mandatory) is the unique name of the field.\"},\"properties2\":{\"name\":\"label\",\"example\":\"Select a Subject\",\"adjustable\":\"1\",\"mandatory\":\"1\",\"translatable\":\"1\",\"description\":\"(mandatory) (translatable) is the descriptive title of the field.\"},\"properties3\":{\"name\":\"description\",\"example\":\"\",\"adjustable\":\"1\",\"translatable\":\"1\",\"description\":\"(optional) (translatable) is text that will be shown as a tooltip when the user moves the mouse over the drop-down box.\"},\"properties4\":{\"name\":\"message\",\"example\":\"\",\"adjustable\":\"1\",\"translatable\":\"1\",\"description\":\"(optional) (translatable) is text that will be shown as error on validation.\"},\"properties5\":{\"name\":\"class\",\"example\":\"list_class\",\"adjustable\":\"1\",\"description\":\"(optional) is a CSS class name for the HTML form field. If omitted this will default to \'inputbox\'.\"},\"properties24\":{\"name\":\"layout\",\"example\":\"joomla.form.field.list-fancy-select\",\"adjustable\":\"1\",\"description\":\"(optional) New layout field added in Joomla 4\"},\"properties6\":{\"name\":\"multiple\",\"example\":\"false\",\"adjustable\":\"1\",\"description\":\"(optional) is whether multiple items can be selected at the same time (true or false).\"},\"properties7\":{\"name\":\"default\",\"example\":\"0\",\"adjustable\":\"1\",\"description\":\"(optional) (not translatable) is the default value.\"},\"properties8\":{\"name\":\"required\",\"example\":\"\",\"adjustable\":\"1\",\"description\":\"(optional) The field must be filled before submitting the form.\"},\"properties9\":{\"name\":\"validate\",\"example\":\"\",\"adjustable\":\"1\",\"description\":\"(optional) The validation method for the form field. This value will determine which method is used to validate the value for a field.\"},\"properties10\":{\"name\":\"readonly\",\"example\":\"\",\"adjustable\":\"1\",\"description\":\"(optional) The field cannot be changed and will automatically inherit the default value\"},\"properties11\":{\"name\":\"disabled\",\"example\":\"\",\"adjustable\":\"1\",\"description\":\"(optional) The field cannot be changed and will automatically inherit the default value - it will also not submit\"},\"properties12\":{\"name\":\"showon\",\"example\":\"\",\"adjustable\":\"1\",\"description\":\"(optional) show this field on the bases of the value in another field. https:\\/\\/joomla.stackexchange.com\\/a\\/17682\\/2166\"},\"properties13\":{\"name\":\"onchange\",\"example\":\"\",\"adjustable\":\"1\",\"description\":\"(optional) HTML equivalent attribute (javascript use)\"},\"properties14\":{\"name\":\"extends\",\"example\":\"list\",\"adjustable\":\"1\",\"mandatory\":\"1\",\"description\":\"The JFormField sub class that should be extended. The options are (\'list\',\'radio\',\'checkboxes\')\"},\"properties15\":{\"name\":\"button\",\"example\":\"true\",\"adjustable\":\"1\",\"description\":\"(optional) to add new button next to field in edit view\"},\"properties16\":{\"name\":\"table\",\"example\":\"#__###component###_subject\",\"adjustable\":\"1\",\"mandatory\":\"1\",\"description\":\"(mandatory) The table being linked to. The ###TABLE### placeholder holds the table in the php.\"},\"properties17\":{\"name\":\"component\",\"example\":\"com_###component###\",\"mandatory\":\"1\",\"description\":\"(mandatory) The name of the component where this table is found. Must be com_users\"},\"properties18\":{\"name\":\"view\",\"example\":\"subject\",\"adjustable\":\"1\",\"mandatory\":\"1\",\"description\":\"(mandatory) The single view name if the place this field is added.\"},\"properties19\":{\"name\":\"views\",\"example\":\"subjects\",\"adjustable\":\"1\",\"mandatory\":\"1\",\"description\":\"(mandatory) The list view name if the place this field is added.\"},\"properties20\":{\"name\":\"value_field\",\"example\":\"name\",\"adjustable\":\"1\",\"mandatory\":\"1\",\"description\":\"(mandatory) The name of the text field in table linked to. The ###TEXT### placeholder holds the value_field in the php.\"},\"properties21\":{\"name\":\"key_field\",\"example\":\"id\",\"adjustable\":\"1\",\"mandatory\":\"1\",\"description\":\"(mandatory) The field from the linked table to save in this table as the unique key. The ###ID### placeholder holds the key_field in the php.\"},\"properties22\":{\"name\":\"prime_php\",\"example\":\"1\",\"adjustable\":\"1\",\"description\":\"This field makes sure that the PHP used here is used to build the field type, and other are custom fields with the same field type are ignored. So to avoid that they over write the PHP added here. You should only have one prime per\\/type. To disable remove the field or set to 0\"},\"properties23\":{\"name\":\"type_php_1\",\"example\":\"\\/\\/ Get the user object.\\r\\n\\t\\t$user = Factory::getUser();\\r\\n\\t\\t\\/\\/ Get the databse object.\\r\\n\\t\\t$db = Factory::getDBO();\\r\\n\\t\\t$query = $db->getQuery(true);\\r\\n\\t\\t$query->select($db->quoteName(array(\'a.###ID###\',\'a.###TEXT###\'),array(\'###ID###\',\'###CODE_TEXT###\')));\\r\\n\\t\\t$query->from($db->quoteName(\'###TABLE###\', \'a\'));\\r\\n\\t\\t$query->where($db->quoteName(\'a.published\') . \' = 1\');\\r\\n\\t\\t$query->order(\'a.###TEXT### ASC\');\\r\\n\\t\\t\\/\\/ Implement View Level Access (if set in table)\\r\\n\\t\\tif (!$user->authorise(\'core.options\', \'[[[com_component]]]\'))\\r\\n\\t\\t{\\r\\n\\t\\t\\t$columns = $db->getTableColumns(\'###TABLE###\');\\r\\n\\t\\t\\tif(isset($columns[\'access\']))\\r\\n\\t\\t\\t{\\r\\n\\t\\t\\t\\t$groups = implode(\',\', $user->getAuthorisedViewLevels());\\r\\n\\t\\t\\t\\t$query->where(\'a.access IN (\' . $groups . \')\');\\r\\n\\t\\t\\t}\\r\\n\\t\\t}\\r\\n\\t\\t$db->setQuery((string)$query);\\r\\n\\t\\t$items = $db->loadObjectList();\\r\\n\\t\\t$options = [];\\r\\n\\t\\tif ($items)\\r\\n\\t\\t{\\r\\n\\t\\t\\tif ($this->multiple === false)\\r\\n\\t\\t\\t{\\r\\n\\t\\t\\t\\t$options[] = Html::_(\'select.option\', \'\', Text::_(\'Select an option\'));\\r\\n\\t\\t\\t}\\r\\n\\t\\t\\tforeach($items as $item)\\r\\n\\t\\t\\t{\\r\\n\\t\\t\\t\\t$options[] = Html::_(\'select.option\', $item->###ID###, $item->###CODE_TEXT###);\\r\\n\\t\\t\\t}\\r\\n\\t\\t}\\r\\n\\t\\treturn $options;\",\"adjustable\":\"1\",\"description\":\"The php for the getOptions method.\"}}', 'provides a drop down list of items entries.', '', 1, 30, '', '', 'dd2e1f4b-f5db-45e8-85fa-efd27bae7b6a'),
(7, 'The a list of users that can be targeting one or more groups and excluded users that already belongs to an item in a view.', 'CustomUser', '{\"properties0\":{\"name\":\"type\",\"example\":\"staffusers\",\"mandatory\":\"1\",\"description\":\"(mandatory) can be anything, just not the same as any other default Joomla field type.\"},\"properties1\":{\"name\":\"name\",\"example\":\"staff\",\"adjustable\":\"1\",\"mandatory\":\"1\",\"description\":\"(mandatory) is the unique name of the field.\"},\"properties2\":{\"name\":\"label\",\"example\":\"Staff\",\"adjustable\":\"1\",\"mandatory\":\"1\",\"translatable\":\"1\",\"description\":\"(mandatory) (translatable) is the descriptive title of the field.\"},\"properties3\":{\"name\":\"description\",\"example\":\"\",\"adjustable\":\"1\",\"translatable\":\"1\",\"description\":\"(optional) (translatable) is text that will be shown as a tooltip when the user moves the mouse over the drop-down box.\"},\"properties4\":{\"name\":\"class\",\"example\":\"\",\"adjustable\":\"1\",\"description\":\"(optional) is a CSS class name for the HTML form field. If omitted this will default to \'inputbox\'.\"},\"properties5\":{\"name\":\"multiple\",\"example\":\"false\",\"adjustable\":\"1\",\"description\":\"(optional) is whether multiple items can be selected at the same time (true or false).\"},\"properties6\":{\"name\":\"required\",\"example\":\"\",\"adjustable\":\"1\",\"description\":\"(optional) The field must be filled before submitting the form.\"},\"properties7\":{\"name\":\"readonly\",\"example\":\"\",\"adjustable\":\"1\",\"description\":\"(optional) The field cannot be changed and will automatically inherit the default value\"},\"properties8\":{\"name\":\"disabled\",\"example\":\"\",\"adjustable\":\"1\",\"description\":\"(optional) The field cannot be changed and will automatically inherit the default value - it will also not submit\"},\"properties9\":{\"name\":\"default\",\"example\":\"\",\"adjustable\":\"1\",\"translatable\":\"1\",\"description\":\"\"},\"properties10\":{\"name\":\"hint\",\"example\":\"select a user\",\"adjustable\":\"1\",\"translatable\":\"1\",\"description\":\"\"},\"properties11\":{\"name\":\"showon\",\"example\":\"\",\"adjustable\":\"1\",\"description\":\"(optional) show this field on the bases of the value in another field. https:\\/\\/joomla.stackexchange.com\\/a\\/17682\\/2166\"},\"properties12\":{\"name\":\"extends\",\"example\":\"user\",\"adjustable\":\"1\",\"mandatory\":\"1\",\"description\":\"The JFormField sub class that should be extended. The options are (\'list\',\'radio\',\'checkboxes\')\"},\"properties13\":{\"name\":\"table\",\"example\":\"#__users\",\"mandatory\":\"1\",\"description\":\"(mandatory) The table being linked to. Must be #__users\"},\"properties14\":{\"name\":\"component\",\"example\":\"com_users\",\"mandatory\":\"1\",\"description\":\"(mandatory) The name of the component where this table is found. Must be com_users\"},\"properties15\":{\"name\":\"view\",\"example\":\"###view###\",\"adjustable\":\"1\",\"mandatory\":\"1\",\"description\":\"(mandatory) The single view name if the place this field is added.\"},\"properties16\":{\"name\":\"views\",\"example\":\"###views###\",\"adjustable\":\"1\",\"mandatory\":\"1\",\"description\":\"(mandatory) The list view name if the place this field is added.\"},\"properties17\":{\"name\":\"value_field\",\"example\":\"name\",\"adjustable\":\"1\",\"mandatory\":\"1\",\"description\":\"(mandatory) The name of the text field in table linked to.\"},\"properties18\":{\"name\":\"key_field\",\"example\":\"id\",\"adjustable\":\"1\",\"mandatory\":\"1\",\"description\":\"(mandatory) The field from the linked table to save in this table as the unique key.\"},\"properties19\":{\"name\":\"type_php_1\",\"example\":\"\\t\\t\\/\\/ set the groups array\\r\\n\\t\\treturn \\\\JComponentHelper::getParams(\'com_###component###\')->get(\'###type###\');\",\"adjustable\":\"1\",\"description\":\"The php for the getGroups method.\"},\"properties22\":{\"name\":\"type_phpx_1\",\"example\":\"\\t\\t\\/\\/ To ensure that there is only one record per user\\r\\n\\t\\t\\/\\/ Get a db connection.\\r\\n\\t\\t$db = Factory::getDbo();\\r\\n\\t\\t\\/\\/ Create a new query object.\\r\\n\\t\\t$query = $db->getQuery(true);\\r\\n\\t\\t\\/\\/ Select all records from the #__###component###_###view### table from ###CODE### column\\\".\\r\\n\\t\\t$query->select($db->quoteName(\'###CODE###\'));\\r\\n\\t\\t$query->from($db->quoteName(\'#__###component###_###view###\'));\\r\\n\\t\\t$db->setQuery($query);\\r\\n\\t\\t$db->execute();\\r\\n\\t\\t$found = $db->getNumRows();\\r\\n\\t\\tif ($found)\\r\\n\\t\\t{\\r\\n\\t\\t\\t\\/\\/ return all users already used\\r\\n\\t\\t\\treturn array_unique($db->loadColumn());\\r\\n\\t\\t}\\r\\n\\t\\treturn null;\",\"adjustable\":\"1\",\"description\":\"The php for the getExcluded method.\"}}', 'Provides list of users.', '', 1, 6, '', '', 'a4a39f70-070f-459c-be4b-0ac103a29b9a'),
(8, 'The Editor field type provides a WYSIWYG editor.', 'Editor', '{\"properties0\":{\"name\":\"type\",\"example\":\"editor\",\"mandatory\":\"1\",\"description\":\"(mandatory) must be editor.\"},\"properties1\":{\"name\":\"name\",\"example\":\"mytextblock\",\"adjustable\":\"1\",\"mandatory\":\"1\",\"description\":\"(mandatory) is the unique name of the parameter.\"},\"properties2\":{\"name\":\"label\",\"example\":\"Test Field\",\"adjustable\":\"1\",\"mandatory\":\"1\",\"translatable\":\"1\",\"description\":\"(mandatory) (translatable) is the descriptive title of the field.\"},\"properties3\":{\"name\":\"default\",\"example\":\"Some text\",\"adjustable\":\"1\",\"description\":\"(optional) (not translatable) is the default value.\"},\"properties4\":{\"name\":\"description\",\"example\":\"\",\"adjustable\":\"1\",\"translatable\":\"1\",\"description\":\"(optional) (translatable) is text that will be shown as a tooltip when the user moves the mouse over the label.\"},\"properties5\":{\"name\":\"message\",\"example\":\"\",\"adjustable\":\"1\",\"translatable\":\"1\",\"description\":\"(optional) (translatable) is text that will be shown as error on validation.\"},\"properties6\":{\"name\":\"width\",\"example\":\"\",\"adjustable\":\"1\",\"description\":\"(optional) defines the width (in pixels) of the wysiwyg editor and defaults to 100%.\"},\"properties7\":{\"name\":\"height\",\"example\":\"\",\"adjustable\":\"1\",\"description\":\"(optional) defines the height (in pixels) of the wysiwyg editor and defaults to 250px.\"},\"properties8\":{\"name\":\"cols\",\"example\":\"\",\"adjustable\":\"1\",\"description\":\"(optional) defines the width of the editor (in columns).\"},\"properties9\":{\"name\":\"rows\",\"example\":\"\",\"adjustable\":\"1\",\"description\":\"(optional) defines the height of the editor (in rows).\"},\"properties10\":{\"name\":\"buttons\",\"example\":\"no\",\"adjustable\":\"1\",\"description\":\"(optional) can be an array of plugin buttons to be excluded or set to false. The default editors-xtd are: article, image, pagebreak and readmore.\"},\"properties11\":{\"name\":\"syntax\",\"example\":\"\",\"adjustable\":\"1\",\"description\":\"(optional) can be used to set the code syntax matching for this field.\"},\"properties12\":{\"name\":\"hide\",\"example\":\"\",\"adjustable\":\"1\",\"description\":\"(optional) array of plugin buttons to be hidden. eg... set buttons=\\\"true\\\" hide=\\\"readmore,pagebreak\\\"\"},\"properties13\":{\"name\":\"editor\",\"example\":\"codemirror|none\",\"adjustable\":\"1\",\"description\":\"specifies the editor to be used and can include two options (editor=\\\"desired|alternative\\\")\"},\"properties14\":{\"name\":\"filter\",\"example\":\"safehtml\",\"adjustable\":\"1\",\"description\":\"(optional) allow the system to save certain html tags or raw data.\"},\"properties15\":{\"name\":\"required\",\"example\":\"\",\"adjustable\":\"1\",\"description\":\"(optional) The field must be filled before submitting the form.\"},\"properties16\":{\"name\":\"validate\",\"example\":\"\",\"adjustable\":\"1\",\"description\":\"(optional) The validation method for the form field. This value will determine which method is used to validate the value for a field.\"},\"properties17\":{\"name\":\"showon\",\"example\":\"\",\"adjustable\":\"1\",\"description\":\"(optional) show this field on the bases of the value in another field. https:\\/\\/joomla.stackexchange.com\\/a\\/17682\\/2166\"}}', 'provides an editor area field.', '', 1, 11, '', '', '51f288d2-6eaa-42bc-a182-a6f69b3032b8'),
(9, 'The hidden form field type provides a hidden field for saving a field whose value cannot be altered directly by a user in the Administrator (it can be altered in code or by editing the params.ini file). If the parameter has a saved value this is entered i', 'Hidden', '{\"properties0\":{\"name\":\"type\",\"example\":\"hidden\",\"mandatory\":\"1\",\"description\":\"(mandatory) must be hidden.\"},\"properties1\":{\"name\":\"name\",\"example\":\"mysecretvariable\",\"adjustable\":\"1\",\"mandatory\":\"1\",\"description\":\"(mandatory) is the unique name of the field.\"},\"properties2\":{\"name\":\"default\",\"example\":\"1\",\"adjustable\":\"1\",\"mandatory\":\"1\",\"description\":\"(mandatory) is the data which needs to be collected.\"},\"properties5\":{\"name\":\"filter\",\"example\":\"STRING\",\"adjustable\":\"1\",\"description\":\"(optional) allow the system to save certain html tags or raw data.\"},\"properties4\":{\"name\":\"validate\",\"example\":\"\",\"adjustable\":\"1\",\"description\":\"(optional) The validation method for the form field. This value will determine which method is used to validate the value for a field.\"}}', 'provides a hidden field for saving a form field whose value cannot be altered directly by a user.', '', 1, 2, '', '', '82f1b5ca-bb9b-44d7-9a7a-9a03fb2a31dd'),
(10, 'The integer form field type provides a select box with a range of integer values. If the field has a value saved, this value is displayed when the page is first loaded. If not, the default value (if any) is selected.', 'Integer', '{\"properties0\":{\"name\":\"type\",\"example\":\"integer\",\"mandatory\":\"1\",\"description\":\"(mandatory) must be integer.\"},\"properties1\":{\"name\":\"name\",\"example\":\"size\",\"adjustable\":\"1\",\"mandatory\":\"1\",\"description\":\"(mandatory) is the unique name of the field.\"},\"properties2\":{\"name\":\"label\",\"example\":\"Size\",\"adjustable\":\"1\",\"mandatory\":\"1\",\"translatable\":\"1\",\"description\":\"(mandatory) (translatable) is the descriptive title of the field.\"},\"properties3\":{\"name\":\"default\",\"example\":\"\",\"adjustable\":\"1\",\"description\":\"(optional) is the default value.\"},\"properties4\":{\"name\":\"message\",\"example\":\"\",\"adjustable\":\"1\",\"translatable\":\"1\",\"description\":\"(optional) (translatable) is text that will be shown as error on validation.\"},\"properties5\":{\"name\":\"description\",\"example\":\"\",\"adjustable\":\"1\",\"translatable\":\"1\",\"description\":\"(optional) (translatable) is text that will be shown as a tooltip when the user moves the mouse over the drop-down box.\"},\"properties6\":{\"name\":\"class\",\"example\":\"text_area\",\"adjustable\":\"1\",\"description\":\"(optional) is a CSS class name for the HTML form field. If omitted this will default to \'text_area\'.\"},\"properties7\":{\"name\":\"required\",\"example\":\"\",\"adjustable\":\"1\",\"description\":\"(optional) The field must be filled before submitting the form.\"},\"properties8\":{\"name\":\"validate\",\"example\":\"\",\"adjustable\":\"1\",\"description\":\"(optional) The validation method for the form field. This value will determine which method is used to validate the value for a field.\"},\"properties9\":{\"name\":\"first\",\"example\":\"1\",\"adjustable\":\"1\",\"mandatory\":\"1\",\"description\":\"(mandatory) this value is the lowest on the list.\"},\"properties10\":{\"name\":\"last\",\"example\":\"20\",\"adjustable\":\"1\",\"mandatory\":\"1\",\"description\":\"(mandatory) this value is the highest on the list.\"},\"properties11\":{\"name\":\"step\",\"example\":\"5\",\"adjustable\":\"1\",\"mandatory\":\"1\",\"description\":\"(mandatory) each option will be the previous option incremented by this integer, starting with the first value until the last value is reached.\"},\"properties12\":{\"name\":\"showon\",\"example\":\"\",\"adjustable\":\"1\",\"description\":\"(optional) show this field on the bases of the value in another field. https:\\/\\/joomla.stackexchange.com\\/a\\/17682\\/2166\"},\"properties13\":{\"name\":\"onchange\",\"example\":\"\",\"adjustable\":\"1\",\"description\":\"(optional) HTML equivalent attribute (javascript use)\"}}', 'provides a drop down list of integers between a minimum and maximum.', '', 1, 6, '', '', 'fdbb50ea-35d2-45b2-a0bc-076fdf1544b8'),
(11, 'The list form field type provides a drop down list or a list box of custom-defined entries. If the field has a saved value this is selected when the page is first loaded. If not, the default value (if any) is selected.', 'List', '{\"properties0\":{\"name\":\"type\",\"example\":\"list\",\"mandatory\":\"1\",\"description\":\"(mandatory) must be list.\"},\"properties1\":{\"name\":\"name\",\"example\":\"mylist\",\"adjustable\":\"1\",\"mandatory\":\"1\",\"description\":\"(mandatory) is the unique name of the field.\"},\"properties2\":{\"name\":\"label\",\"example\":\"Select an option\",\"adjustable\":\"1\",\"mandatory\":\"1\",\"translatable\":\"1\",\"description\":\"(mandatory) (translatable) is the descriptive title of the field.\"},\"properties3\":{\"name\":\"description\",\"example\":\"\",\"adjustable\":\"1\",\"translatable\":\"1\",\"description\":\"(optional) (translatable) is text that will be shown as a tooltip when the user moves the mouse over the drop-down box.\"},\"properties4\":{\"name\":\"message\",\"example\":\"\",\"adjustable\":\"1\",\"translatable\":\"1\",\"description\":\"(optional) (translatable) is text that will be shown as error on validation.\"},\"properties5\":{\"name\":\"class\",\"example\":\"list_class\",\"adjustable\":\"1\",\"description\":\"(optional) is a CSS class name for the HTML form field. If omitted this will default to \'inputbox\'.\"},\"properties6\":{\"name\":\"layout\",\"example\":\"joomla.form.field.list-fancy-select\",\"adjustable\":\"1\",\"description\":\"(optional) New layout field added in Joomla 4\"},\"properties7\":{\"name\":\"multiple\",\"example\":\"false\",\"adjustable\":\"1\",\"description\":\"(optional) is whether multiple items can be selected at the same time (true or false).\"},\"properties8\":{\"name\":\"filter\",\"example\":\"\",\"adjustable\":\"1\",\"description\":\"(optional) filter options\"},\"properties9\":{\"name\":\"required\",\"example\":\"\",\"adjustable\":\"1\",\"description\":\"(optional) The field must be filled before submitting the form.\"},\"properties10\":{\"name\":\"validate\",\"example\":\"\",\"adjustable\":\"1\",\"description\":\"(optional) The validation method for the form field. This value will determine which method is used to validate the value for a field.\"},\"properties11\":{\"name\":\"option\",\"example\":\"0|Option 1,1|Option 2,2|Option 1\",\"adjustable\":\"1\",\"mandatory\":\"1\",\"description\":\"(mandatory) set the options of this radio. Separate options with commas and use the pipe symbol to separate value from text.\"},\"properties12\":{\"name\":\"useglobal\",\"example\":\"\",\"adjustable\":\"1\",\"description\":\"(optional) if set to true, it will show the value that is set in the global configuration if found in the database.\"},\"properties13\":{\"name\":\"default\",\"example\":\"0\",\"adjustable\":\"1\",\"description\":\"(optional) is the default list item value.\"},\"properties14\":{\"name\":\"showon\",\"example\":\"\",\"adjustable\":\"1\",\"description\":\"(optional) Allows you to hide the field based on the value(s) of another field; for Joomla 3.2.4+ https:\\/\\/joomla.stackexchange.com\\/a\\/17682\\/2166\"},\"properties15\":{\"name\":\"onchange\",\"example\":\"\",\"adjustable\":\"1\",\"description\":\"(optional) HTML equivalent attribute (javascript use)\"}}', 'provides a drop down list of custom-defined entries.', '', 1, 12, '', '', 'a51dfc06-1b9b-4d0a-86ba-f705bcd40d4d'),
(12, 'The media form field type provides modal access to the media manager for the choice of an image. Users with appropriate permissions will be able to upload files.', 'Media', '{\"properties0\":{\"name\":\"type\",\"example\":\"media\",\"mandatory\":\"1\",\"description\":\"(mandatory) must be media.\"},\"properties1\":{\"name\":\"name\",\"example\":\"media\",\"adjustable\":\"1\",\"mandatory\":\"1\",\"description\":\"(mandatory) is the unique name of the field.\"},\"properties2\":{\"name\":\"label\",\"example\":\"Media\",\"adjustable\":\"1\",\"mandatory\":\"1\",\"translatable\":\"1\",\"description\":\"(mandatory) (translatable) is the descriptive title of the field.\"},\"properties3\":{\"name\":\"description\",\"example\":\"\",\"adjustable\":\"1\",\"translatable\":\"1\",\"description\":\"(optional) (translatable) is text that will be shown as a tooltip when the user moves the mouse over the drop-down box.\"},\"properties4\":{\"name\":\"directory\",\"example\":\"\",\"adjustable\":\"1\",\"mandatory\":\"1\",\"description\":\"(mandatory) is the directory from which the user will be able to choose a file. This attribute should be relative to the top level \\/images\\/ folder.\"},\"properties5\":{\"name\":\"preview\",\"example\":\"false\",\"adjustable\":\"1\",\"description\":\"(optional) shows or hides the preview of the currently chosen image. (\\\"true\\\": Show always, \\\"tooltip\\\": Show as tooltip, \\\"false\\\": Show never) (since Joomla! 2.5.5)\"},\"properties6\":{\"name\":\"showon\",\"example\":\"\",\"adjustable\":\"1\",\"description\":\"(optional) show this field on the bases of the value in another field. https:\\/\\/joomla.stackexchange.com\\/a\\/17682\\/2166\"}}', 'provides modal access to the media manager for insertion of images with upload for users with appropriate permissions.', '', 1, 4, '', '', '69957007-e3d4-4976-a32b-611d02dbad71'),
(13, 'Provides a meter to show value in a range, updated with jQuery if needed or simply a fixed value.', 'Meter', '{\"properties0\":{\"name\":\"type\",\"example\":\"meter\",\"mandatory\":\"1\",\"description\":\"(mandatory) must be meter.\"},\"properties1\":{\"name\":\"name\",\"example\":\"meter\",\"adjustable\":\"1\",\"mandatory\":\"1\",\"description\":\"(mandatory) is the unique name of the field.\"},\"properties2\":{\"name\":\"label\",\"example\":\"Meter\",\"adjustable\":\"1\",\"mandatory\":\"1\",\"translatable\":\"1\",\"description\":\"(mandatory) (translatable) is the descriptive title of the field.\"},\"properties3\":{\"name\":\"width\",\"example\":\"330px\",\"adjustable\":\"1\",\"description\":\"(optional) is the width of meter box\"},\"properties4\":{\"name\":\"color\",\"example\":\"\",\"adjustable\":\"1\",\"description\":\"(optional) The background color\"},\"properties5\":{\"name\":\"default\",\"example\":\"9\",\"adjustable\":\"1\",\"description\":\"(optional) (not translatable) is the default value.\"},\"properties6\":{\"name\":\"animated\",\"example\":\"1\",\"adjustable\":\"1\",\"description\":\"(optional) lets the bar have strips\"},\"properties7\":{\"name\":\"active\",\"example\":\"1\",\"adjustable\":\"1\",\"description\":\"(optional) lets the strips on the bar move\"},\"properties8\":{\"name\":\"description\",\"example\":\"Enter some description\",\"adjustable\":\"1\",\"translatable\":\"1\",\"description\":\"(optional) (translatable) is text that will be shown as a tooltip when the user moves the mouse over the drop-down box.\"},\"properties9\":{\"name\":\"class\",\"example\":\"\",\"adjustable\":\"1\",\"description\":\"(optional) is a CSS class name for the HTML form field. If omitted this will default to \'text_area\'.\"},\"properties10\":{\"name\":\"min\",\"example\":\"1\",\"adjustable\":\"1\",\"description\":\"(mandatory) this value is the min on the meter.\"},\"properties11\":{\"name\":\"max\",\"example\":\"20\",\"adjustable\":\"1\",\"description\":\"(mandatory) this value is the max on meter.\"},\"properties12\":{\"name\":\"step\",\"example\":\"1\",\"adjustable\":\"1\",\"mandatory\":\"1\",\"description\":\"(mandatory) each option will be the previous option incremented by this integer, starting with the first value until the last value is reached.\"},\"properties13\":{\"name\":\"showon\",\"example\":\"\",\"adjustable\":\"1\",\"description\":\"(optional) show this field on the bases of the value in another field. https:\\/\\/joomla.stackexchange.com\\/a\\/17682\\/2166\"}}', 'Provides a meter to show value in a range.', '', 1, 3, '', '', '81668284-e572-4e17-927b-ba697fc64bd0'),
(14, 'This form field makes it possible to create titles, texts, descriptions and even alert boxes. It also allows you to bring order in the settings for extensions, by separating them with useful titles. Or adding descriptions for certain settings (without having to rely on the tooltips). Or adding any other text you want.', 'Note', '{\"properties0\":{\"name\":\"type\",\"example\":\"note\",\"mandatory\":\"1\",\"description\":\"(mandatory) must be note\"},\"properties1\":{\"name\":\"name\",\"example\":\"note_one\",\"adjustable\":\"1\",\"mandatory\":\"1\",\"description\":\"(mandatory) is the unique name of the field.\"},\"properties2\":{\"name\":\"label\",\"example\":\"The notice\",\"adjustable\":\"1\",\"translatable\":\"1\",\"description\":\"(mandatory or optional if using description) (translatable) is the descriptive title of the note \"},\"properties3\":{\"name\":\"description\",\"example\":\"The notice description\",\"adjustable\":\"1\",\"translatable\":\"1\",\"description\":\"(optional if using label)(translatable) the description\\/text of the note \"},\"properties4\":{\"name\":\"heading\",\"example\":\"h4\",\"adjustable\":\"1\",\"description\":\"(optional) the type of heading element to use for the label (default: h4)\"},\"properties5\":{\"name\":\"class\",\"example\":\"alert\",\"adjustable\":\"1\",\"description\":\"(optional) a class name (or class names), like these examples ( alert, alert alert-info, alert alert-success, alert alert-error )\"},\"properties6\":{\"name\":\"close\",\"example\":\"true\",\"adjustable\":\"1\",\"description\":\"(optional) a value of \'true\' (for alerts) or the value for the data-dismiss of the bootstrap close icon\"},\"properties7\":{\"name\":\"showon\",\"example\":\"\",\"adjustable\":\"1\",\"description\":\"(optional) Allows you to hide the field based on the value(s) of another field; for Joomla 3.2.4+ https:\\/\\/joomla.stackexchange.com\\/a\\/17682\\/2166\"}}', 'supports a one line text field.', '', 1, 5, '', '', 'f9ecacd0-8481-4157-8c71-d7aaefc2b7c3'),
(15, 'Provides a one line text box with up-down handles to set a number in the field.', 'Number', '{\"properties0\":{\"name\":\"type\",\"example\":\"number\",\"mandatory\":\"1\",\"description\":\"(mandatory) must be number.\"},\"properties1\":{\"name\":\"name\",\"example\":\"number\",\"adjustable\":\"1\",\"mandatory\":\"1\",\"description\":\"(mandatory) is the unique name of the field.\"},\"properties2\":{\"name\":\"label\",\"example\":\"Number\",\"adjustable\":\"1\",\"mandatory\":\"1\",\"translatable\":\"1\",\"description\":\"(mandatory) (translatable) is the descriptive title of the field.\"},\"properties3\":{\"name\":\"default\",\"example\":\"\",\"adjustable\":\"1\",\"description\":\"(optional) is the default value.\"},\"properties4\":{\"name\":\"description\",\"example\":\"\",\"adjustable\":\"1\",\"translatable\":\"1\",\"description\":\"(optional) (translatable) is text that will be shown as a tooltip when the user moves the mouse over the drop-down box.\"},\"properties5\":{\"name\":\"class\",\"example\":\"text_area\",\"adjustable\":\"1\",\"description\":\"(optional) is a CSS class name for the HTML form field. If omitted this will default to \'text_area\'.\"},\"properties6\":{\"name\":\"required\",\"example\":\"\",\"adjustable\":\"1\",\"description\":\"(optional) The field must be filled before submitting the form.\"},\"properties7\":{\"name\":\"min\",\"example\":\"1\",\"adjustable\":\"1\",\"mandatory\":\"1\",\"description\":\"(mandatory) this value is the lowest on the list.\"},\"properties8\":{\"name\":\"max\",\"example\":\"40\",\"mandatory\":\"1\",\"description\":\"(mandatory) this value is the highest on the list.\"},\"properties9\":{\"name\":\"step\",\"example\":\"5\",\"adjustable\":\"1\",\"mandatory\":\"1\",\"description\":\"(mandatory) each option will be the previous option incremented by this integer, starting with the first value until the last value is reached.\"},\"properties10\":{\"name\":\"onchange\",\"example\":\"\",\"adjustable\":\"1\",\"description\":\"(optional) Javascript that should run on changing of the value.\"},\"properties11\":{\"name\":\"showon\",\"example\":\"\",\"adjustable\":\"1\",\"description\":\"(optional) show this field on the bases of the value in another field. https:\\/\\/joomla.stackexchange.com\\/a\\/17682\\/2166\"}}', 'Provides a one line text box with up-down handles to set a number in the field.', '', 1, 4, '', '', '5abd2b73-643b-4273-841a-787991aad968'),
(16, 'The password form field type provides a text box for entry of a password. The password characters will be obscured as they are entered. If the field has a saved value this is entered (in obscured form) into the text box. If not, the default value (if any)', 'Password', '{\"properties0\":{\"name\":\"type\",\"example\":\"password\",\"mandatory\":\"1\",\"description\":\"(mandatory) must be password.\"},\"properties1\":{\"name\":\"name\",\"example\":\"mypassword\",\"adjustable\":\"1\",\"mandatory\":\"1\",\"description\":\"(mandatory) is the unique name of the field.\"},\"properties2\":{\"name\":\"label\",\"example\":\"Enter A Password\",\"adjustable\":\"1\",\"mandatory\":\"1\",\"translatable\":\"1\",\"description\":\"(mandatory) (translatable) is the descriptive title of the field.\"},\"properties3\":{\"name\":\"size\",\"example\":\"10\",\"adjustable\":\"1\",\"description\":\"(optional) 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.\"},\"properties4\":{\"name\":\"default\",\"example\":\"secret\",\"adjustable\":\"1\",\"description\":\"(optional) is the default password.\"},\"properties5\":{\"name\":\"description\",\"example\":\"\",\"adjustable\":\"1\",\"translatable\":\"1\",\"description\":\"(optional) (translatable) is text that will be shown as a tooltip when the user moves the mouse over the drop-down box.\"},\"properties6\":{\"name\":\"message\",\"example\":\"Error! Please add password here.\",\"adjustable\":\"1\",\"description\":\"(optional) The error message that will be displayed instead of the default message.\"},\"properties7\":{\"name\":\"class\",\"example\":\"text_area\",\"adjustable\":\"1\",\"description\":\"(optional) is a CSS class name for the HTML form field. If omitted this will default to \'text_area\'.\"},\"properties8\":{\"name\":\"readonly\",\"example\":\"false\",\"adjustable\":\"1\",\"description\":\"(optional) The field cannot be changed and will automatically inherit the default value\"},\"properties9\":{\"name\":\"disabled\",\"example\":\"false\",\"adjustable\":\"1\",\"description\":\"(optional) The field cannot be changed and will automatically inherit the default value - it will also not submit\"},\"properties10\":{\"name\":\"required\",\"example\":\"false\",\"adjustable\":\"1\",\"description\":\"(optional) The field must be filled before submitting the form.\"},\"properties11\":{\"name\":\"validate\",\"example\":\"\",\"adjustable\":\"1\",\"description\":\"(optional) The validation method for the form field. This value will determine which method is used to validate the value for a field.\"},\"properties12\":{\"name\":\"field\",\"example\":\"\",\"adjustable\":\"1\",\"description\":\"(optional) used in validation of \\\"equals\\\" to link the field to match.\"},\"properties13\":{\"name\":\"filter\",\"example\":\"raw\",\"adjustable\":\"1\",\"description\":\"(optional) allow the system to save certain html tags or raw data.\"},\"properties14\":{\"name\":\"hint\",\"example\":\"Password Here\",\"adjustable\":\"1\",\"translatable\":\"1\",\"description\":\"(optional) The placeholder to display inside the text box.\"},\"properties15\":{\"name\":\"autocomplete\",\"example\":\"off\",\"adjustable\":\"1\",\"description\":\"(optional) The autocomplete state for the form field. If \'off\' element will not be automatically completed by browser.\"},\"properties16\":{\"name\":\"showon\",\"example\":\"\",\"adjustable\":\"1\",\"description\":\"(optional) show this field on the bases of the value in another field. https:\\/\\/joomla.stackexchange.com\\/a\\/17682\\/2166\"},\"properties17\":{\"name\":\"onchange\",\"example\":\"\",\"adjustable\":\"1\",\"description\":\"(optional) HTML equivalent attribute (javascript use)\"}}', 'provides a text box for entry of a password. The password characters will be obscured as they are entered.', '', 1, 10, '', '', '0022598d-0ee1-44f2-aa94-c2eb47595f73'),
(17, 'The radio form field type provides radio buttons to select different options. If the field has a saved value this is selected when the page is first loaded. If not, the default value (if any) is selected.', 'Radio', '{\"properties0\":{\"name\":\"type\",\"example\":\"radio\",\"mandatory\":\"1\",\"description\":\"(mandatory) must be radio.\"},\"properties1\":{\"name\":\"name\",\"example\":\"myradiovalue\",\"adjustable\":\"1\",\"mandatory\":\"1\",\"description\":\"(mandatory) is the unique name of the field.\"},\"properties2\":{\"name\":\"label\",\"example\":\"Select an option\",\"adjustable\":\"1\",\"mandatory\":\"1\",\"translatable\":\"1\",\"description\":\"(mandatory) (translatable) is the descriptive title of the field.\"},\"properties3\":{\"name\":\"description\",\"example\":\"\",\"adjustable\":\"1\",\"translatable\":\"1\",\"description\":\"(optional) (translatable) is text that will be shown as a tooltip when the user moves the mouse over the drop-down box.\"},\"properties4\":{\"name\":\"class\",\"example\":\"btn-group btn-group-yesno\",\"adjustable\":\"1\",\"description\":\"(optional) New in Joomla 3, if set to class=\\\"btn-group btn-group-yesno\\\" will show the nice coloured buttons\"},\"properties5\":{\"name\":\"option\",\"example\":\"1|Yes,0|No\",\"adjustable\":\"1\",\"description\":\"(mandatory) set the options of this radio. Separate options with commas and use the pipe symbol to separate value from text.\"},\"properties6\":{\"name\":\"default\",\"example\":\"0\",\"adjustable\":\"1\",\"description\":\"(optional) is the default radio button item value.\"},\"properties7\":{\"name\":\"message\",\"example\":\"\",\"adjustable\":\"1\",\"translatable\":\"1\",\"description\":\"(optional) (translatable) is text that will be shown as error on validation.\"},\"properties8\":{\"name\":\"required\",\"example\":\"\",\"adjustable\":\"1\",\"description\":\"(optional) The field must be filled before submitting the form.\"},\"properties9\":{\"name\":\"validate\",\"example\":\"\",\"adjustable\":\"1\",\"description\":\"(optional) The validation method for the form field. This value will determine which method is used to validate the value for a field.\"},\"properties10\":{\"name\":\"readonly\",\"example\":\"false\",\"adjustable\":\"1\",\"description\":\"(optional) The field cannot be changed and will automatically inherit the default value\"},\"properties11\":{\"name\":\"disabled\",\"example\":\"false\",\"adjustable\":\"1\",\"description\":\"(optional) The field cannot be changed and will automatically inherit the default value - it will also not submit\"},\"properties12\":{\"name\":\"showon\",\"example\":\"\",\"adjustable\":\"1\",\"description\":\"(optional) Allows you to hide the field based on the value(s) of another field; for Joomla 3.2.4+ https:\\/\\/joomla.stackexchange.com\\/a\\/17682\\/2166\"},\"properties13\":{\"name\":\"onchange\",\"example\":\"\",\"adjustable\":\"1\",\"description\":\"(optional) HTML equivalent attribute (javascript use)\"}}', 'provides radio buttons to select different options.', '', 1, 18, '', '', 'b868ed59-4208-4206-8504-95a35a74a11c'),
(18, 'Provides a horizontal scroll bar to specify a value in a range.', 'Range', '{\"properties0\":{\"name\":\"type\",\"example\":\"range\",\"mandatory\":\"1\",\"description\":\"(mandatory) must be range.\"},\"properties1\":{\"name\":\"name\",\"example\":\"range\",\"adjustable\":\"1\",\"mandatory\":\"1\",\"description\":\"(mandatory) is the unique name of the field.\"},\"properties2\":{\"name\":\"label\",\"example\":\"Range\",\"adjustable\":\"1\",\"mandatory\":\"1\",\"translatable\":\"1\",\"description\":\"(mandatory) (translatable) is the descriptive title of the field.\"},\"properties3\":{\"name\":\"default\",\"example\":\"9\",\"adjustable\":\"1\",\"description\":\"(optional) (not translatable) is the default value.\"},\"properties4\":{\"name\":\"description\",\"example\":\"Enter some description\",\"adjustable\":\"1\",\"translatable\":\"1\",\"description\":\"(optional) (translatable) is text that will be shown as a tooltip when the user moves the mouse over the drop-down box.\"},\"properties5\":{\"name\":\"message\",\"example\":\"\",\"adjustable\":\"1\",\"translatable\":\"1\",\"description\":\"(optional) (translatable) is text that will be shown as error on validation.\"},\"properties6\":{\"name\":\"class\",\"example\":\"\",\"adjustable\":\"1\",\"description\":\"(optional) is a CSS class name for the HTML form field. If omitted this will default to \'text_area\'.\"},\"properties7\":{\"name\":\"min\",\"example\":\"1\",\"adjustable\":\"1\",\"description\":\"(mandatory) this value is the min on the meter.\"},\"properties8\":{\"name\":\"max\",\"example\":\"20\",\"adjustable\":\"1\",\"description\":\"(mandatory) this value is the max on meter.\"},\"properties9\":{\"name\":\"step\",\"example\":\"1\",\"adjustable\":\"1\",\"mandatory\":\"1\",\"description\":\"(mandatory) each option will be the previous option incremented by this integer, starting with the first value until the last value is reached.\"},\"properties10\":{\"name\":\"required\",\"example\":\"false\",\"adjustable\":\"1\",\"description\":\"(optional) The field must be filled before submitting the form.\"},\"properties11\":{\"name\":\"validate\",\"example\":\"\",\"adjustable\":\"1\",\"description\":\"(optional) The validation method for the form field. This value will determine which method is used to validate the value for a field.\"},\"properties12\":{\"name\":\"onchange\",\"example\":\"jQuery(\'#jform_range\').closest(\'.controls\').find(\'span\').remove(); var value = jQuery(\'#jform_range\').val();jQuery(\'#jform_range\').closest(\'.controls\').append(\' \'+value+\'\');\",\"adjustable\":\"1\",\"description\":\"(optional) javascript to run when the range is changed\"},\"properties13\":{\"name\":\"showon\",\"example\":\"\",\"adjustable\":\"1\",\"description\":\"(optional) show this field on the bases of the value in another field. https:\\/\\/joomla.stackexchange.com\\/a\\/17682\\/2166\"}}', 'Provides a horizontal scroll bar to specify a value in a range.', '', 1, 5, '', '', '627d3845-7273-4f75-8e63-7b3a319a42c8'),
(19, 'Provides a modal with rows of formfields that you specify. As many options can be added as desired. Note this form field has a jQuery based javascript file as a dependency.', 'Repeatable', '{\"properties0\":{\"name\":\"type\",\"example\":\"repeatable\",\"adjustable\":\"1\",\"description\":\"(mandatory) must be repeatable.\"},\"properties1\":{\"name\":\"name\",\"example\":\"repeatable_list\",\"adjustable\":\"1\",\"description\":\"(mandatory) is the unique name of the parameter\"},\"properties2\":{\"name\":\"label\",\"example\":\"The Repeatable List\",\"adjustable\":\"1\",\"translatable\":\"1\",\"description\":\"(mandatory) (translatable) is the descriptive title of the field.\"},\"properties3\":{\"name\":\"description\",\"example\":\"\",\"adjustable\":\"1\",\"translatable\":\"1\",\"description\":\"(optional) (translatable) description text for the form field. Displays at the top of the modal with the name as well as in the usual position in the form\"},\"properties4\":{\"name\":\"default\",\"example\":\"\",\"adjustable\":\"1\",\"description\":\"(optional) The default value for the form field if the field is left empty. Note this has to be a json string compatible with the contents of the form field.\"},\"properties5\":{\"name\":\"id\",\"example\":\"aid\",\"adjustable\":\"1\",\"mandatory\":\"1\",\"description\":\"(mandatory) id of the hidden from field. (the modal will have this id with an added suffix of \\\"_modal\\\" and the table within the modal will have this id with a suffix of _modal_table\\\")\"},\"properties6\":{\"name\":\"class\",\"example\":\"\",\"adjustable\":\"1\",\"description\":\"(optional) class of the table.\"},\"properties7\":{\"name\":\"select\",\"example\":\"Click here\",\"adjustable\":\"1\",\"translatable\":\"1\",\"description\":\"(optional) (translatable) The text to show on the modal button.\"},\"properties8\":{\"name\":\"icon\",\"example\":\"list\",\"adjustable\":\"1\",\"description\":\"(optional) The icon to show on the select button (is prefixed with \\\"icon-\\\").\"},\"properties9\":{\"name\":\"maximum\",\"example\":\"50\",\"adjustable\":\"1\",\"description\":\"(optional) The maximum number of rows of fields allowed (by default 999 to be effectively infinite)\"},\"properties10\":{\"name\":\"fields\",\"example\":\"1,2,3\",\"adjustable\":\"1\",\"mandatory\":\"1\",\"description\":\"(mandatory) The fields to add to the modal. All fields must first be created in component builder as a field before you can add them here, since you must use the id of the field. Separate the field ids with commas. Do not add custom fields that are not also used in this component.\"},\"properties11\":{\"name\":\"filter\",\"example\":\"\",\"adjustable\":\"1\",\"description\":\"(optional) Use only if you would like to save raw data, since the default is best.\"},\"properties12\":{\"name\":\"showon\",\"example\":\"\",\"adjustable\":\"1\",\"description\":\"(optional) show this field on the bases of the value in another field. https:\\/\\/joomla.stackexchange.com\\/a\\/17682\\/2166\"}}', 'Allows form fields which can have as many options as the user desires.', '', 1, 5, '', '', '05bf68d4-52f9-4705-8ae7-cba137fce0ad'),
(20, 'The spacer form field type provides a visual separator between parameter field elements. It is purely a visual aid and no field value is stored.', 'Spacer', '{\"properties0\":{\"name\":\"type\",\"example\":\"spacer\",\"adjustable\":\"0\",\"mandatory\":\"1\",\"translatable\":\"0\",\"description\":\"(mandatory) must be spacer.\"},\"properties1\":{\"name\":\"name\",\"example\":\"myspacer\",\"adjustable\":\"1\",\"mandatory\":\"1\",\"translatable\":\"0\",\"description\":\"(mandatory) is the unique name of the field.\"},\"properties2\":{\"name\":\"label\",\"example\":\"The notice\",\"adjustable\":\"1\",\"mandatory\":\"0\",\"translatable\":\"1\",\"description\":\"(optional) (translatable) is the text to use as a spacer.\"},\"properties3\":{\"name\":\"description\",\"example\":\"The notice description\",\"adjustable\":\"1\",\"mandatory\":\"0\",\"translatable\":\"1\",\"description\":\"(optional) (translatable) is text that will be shown as a tooltip when the user moves the mouse over the drop-down box.\"},\"properties4\":{\"name\":\"hr\",\"example\":\"\",\"adjustable\":\"1\",\"mandatory\":\"0\",\"translatable\":\"0\",\"description\":\"(optional) is whether to display a horizontal rule (\'true\' or \'false\'). If this attribute is \'true\', the label attribute will be ignored.\"},\"properties5\":{\"name\":\"class\",\"example\":\"\",\"adjustable\":\"1\",\"mandatory\":\"0\",\"translatable\":\"0\",\"description\":\"(optional) is a CSS class name for the HTML form field.\"}}', 'provides a visual separator between form fields. It is purely a visual aid and no value is stored.', '', 1, 1, '', '', '626d0cba-a908-4a4f-a447-96d781aeaa0b'),
(21, 'Using this generic form field type forces you to write SQL in an XML file and is rather limited. For more flexibility, consider using Custom FieldType.\r\n\r\nThe sql form field type provides a drop down list of entries obtained by running a query on the Joom', 'SQL', '{\"properties0\":{\"name\":\"type\",\"example\":\"sql\",\"mandatory\":\"1\",\"description\":\"(mandatory) must be sql.\"},\"properties1\":{\"name\":\"name\",\"example\":\"title\",\"adjustable\":\"1\",\"mandatory\":\"1\",\"description\":\"(mandatory) is the unique name of the field. This must match the name of the query results column that contains the values that will be shown to the user in the drop-down list, unless a different name is specified in the value_field attribute.\"},\"properties2\":{\"name\":\"label\",\"example\":\"Select an article\",\"adjustable\":\"1\",\"mandatory\":\"1\",\"translatable\":\"1\",\"description\":\"(mandatory) (translatable) is the descriptive title of the field.\"},\"properties3\":{\"name\":\"query\",\"example\":\"SELECT id, concat( title, \' (\', created, \')\') AS title FROM #__content\",\"adjustable\":\"1\",\"mandatory\":\"1\",\"description\":\"(mandatory) is the SQL query which will provide the data for the drop-down list. The query must return two columns; one called \'value\' (unless overridden by the key_field attribute) which will hold the values of the list items; the other called the same as the value of the name attribute (unless overridden by the value_field attribute) containing the text to be shown in the drop-down list.\"},\"properties4\":{\"name\":\"default\",\"example\":\"10\",\"adjustable\":\"1\",\"description\":\"(optional) is the default value. This is the value of the \'value\' field, unless overridden by the key_field attribute.\"},\"properties5\":{\"name\":\"required\",\"example\":\"\",\"adjustable\":\"1\",\"description\":\"(optional) The field must be filled before submitting the form.\"},\"properties6\":{\"name\":\"readonly\",\"example\":\"\",\"adjustable\":\"1\",\"description\":\"(optional) The field cannot be changed and will automatically inherit the default value\"},\"properties7\":{\"name\":\"disabled\",\"example\":\"\",\"adjustable\":\"1\",\"description\":\"(optional) The field cannot be changed and will automatically inherit the default value - it will also not submit\"},\"properties8\":{\"name\":\"description\",\"example\":\"\",\"adjustable\":\"1\",\"translatable\":\"1\",\"description\":\"(optional) (translatable) is text that will be shown as a tooltip when the user moves the mouse over the drop-down box.\"},\"properties9\":{\"name\":\"key_field\",\"example\":\"id\",\"adjustable\":\"1\",\"description\":\"(optional) is the name of the column that will contain values for the parameter. If omitted then the column called \'value\' will be used, if it exists.\"},\"properties10\":{\"name\":\"value_field\",\"example\":\"title\",\"adjustable\":\"1\",\"description\":\"(optional) is the name of the column that will contain values to be shown to the user in the drop-down list. If omitted then the column with the same name as the name attribute will be used, if it exists.\"},\"properties11\":{\"name\":\"translate\",\"example\":\"\",\"adjustable\":\"1\",\"description\":\"(optional) will translate the output of the value_field if set to true. It defaults to false.\"},\"properties12\":{\"name\":\"showon\",\"example\":\"\",\"adjustable\":\"1\",\"description\":\"(optional) show this field on the bases of the value in another field. https:\\/\\/joomla.stackexchange.com\\/a\\/17682\\/2166\"}}', 'provides a drop down list of entries obtained by running a query on the Joomla Database. The first results column returned by the query provides the values for the drop down box.', '', 1, 3, '', '', 'd4c16f1e-fd6e-4714-90eb-f9d97edd9c32'),
(22, 'The Tag field type provides a point where you can enter tags - this is either AJAX or nested.', 'Tag', '{\"properties0\":{\"name\":\"type\",\"example\":\"tag\",\"mandatory\":\"1\",\"description\":\"(mandatory) must be tag.\"},\"properties1\":{\"name\":\"name\",\"example\":\"tags\",\"adjustable\":\"1\",\"mandatory\":\"1\",\"description\":\"(mandatory) is the unique name of the parameter.\"},\"properties2\":{\"name\":\"mode\",\"example\":\"ajax\",\"adjustable\":\"1\",\"mandatory\":\"1\",\"description\":\"(mandatory) is the way the tags will be loaded, the options are ( ajax or nested )\"},\"properties3\":{\"name\":\"label\",\"example\":\"Tags\",\"adjustable\":\"1\",\"mandatory\":\"1\",\"translatable\":\"1\",\"description\":\"(mandatory) (translatable) is the descriptive title of the field.\"},\"properties4\":{\"name\":\"description\",\"example\":\"Assign tags to ###VIEW### items. Tag names must be unique.\",\"adjustable\":\"1\",\"translatable\":\"1\",\"description\":\"(optional) (translatable) is the description of the field.\"},\"properties5\":{\"name\":\"id\",\"example\":\"\",\"adjustable\":\"1\",\"description\":\"(optional) is the id to add to the field. Note if none is set this will be the name of the field.\"},\"properties6\":{\"name\":\"class\",\"example\":\"inputbox small\",\"adjustable\":\"1\",\"description\":\"(optional) is the class to add to the field.\"},\"properties7\":{\"name\":\"published\",\"example\":\"\",\"adjustable\":\"1\",\"description\":\"(optional) determines if non published tags should be allowed.\"},\"properties8\":{\"name\":\"language\",\"example\":\"\",\"adjustable\":\"1\",\"description\":\"(optional) is language to filter the existing tags by.\"},\"properties9\":{\"name\":\"multiple\",\"example\":\"true\",\"adjustable\":\"1\",\"description\":\"(optional) is the ability to add more than 1 tag to the form field.\"},\"properties10\":{\"name\":\"custom\",\"example\":\"\",\"adjustable\":\"1\",\"description\":\"(optional) if the ajax mode is chosen setting this to [deny] will prevent users from adding in new tags.\"},\"properties11\":{\"name\":\"showon\",\"example\":\"\",\"adjustable\":\"1\",\"description\":\"(optional) show this field on the bases of the value in another field. https:\\/\\/joomla.stackexchange.com\\/a\\/17682\\/2166\"}}', 'provides an entry point for tags (either AJAX or Nested).', '', 1, 3, '', '', '48cba89e-8fcb-481e-a7d3-2e41773e452d'),
(23, 'The tel field type is an alias for a text field. Telephone numbers can be validated using the tel rule and filtered using the tel input filter.', 'Tel', '{\"properties0\":{\"name\":\"type\",\"example\":\"text\",\"mandatory\":\"1\",\"description\":\"(mandatory) must be text.\"},\"properties1\":{\"name\":\"name\",\"example\":\"phone\",\"adjustable\":\"1\",\"mandatory\":\"1\",\"description\":\"(mandatory) is the unique name of the field.\"},\"properties2\":{\"name\":\"label\",\"example\":\"Phone\",\"adjustable\":\"1\",\"mandatory\":\"1\",\"translatable\":\"1\",\"description\":\"(mandatory) (translatable) is the descriptive title of the field.\"},\"properties3\":{\"name\":\"size\",\"example\":\"10\",\"adjustable\":\"1\",\"description\":\"(optional) 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.\"},\"properties4\":{\"name\":\"maxlength\",\"example\":\"50\",\"adjustable\":\"1\",\"description\":\"(optional) limits the number of characters that may be entered.\"},\"properties5\":{\"name\":\"default\",\"example\":\"\",\"adjustable\":\"1\",\"description\":\"(optional) (not translatable) is the default value.\"},\"properties6\":{\"name\":\"description\",\"example\":\"Enter phone number\",\"adjustable\":\"1\",\"translatable\":\"1\",\"description\":\"(optional) (translatable) is text that will be shown as a tooltip when the user moves the mouse over the drop-down box.\"},\"properties7\":{\"name\":\"class\",\"example\":\"text_area\",\"adjustable\":\"1\",\"description\":\"(optional) is a CSS class name for the HTML form field. If omitted this will default to \'text_area\'.\"},\"properties8\":{\"name\":\"readonly\",\"example\":\"false\",\"adjustable\":\"1\",\"description\":\"(optional) The field cannot be changed and will automatically inherit the default value\"},\"properties9\":{\"name\":\"disabled\",\"example\":\"false\",\"adjustable\":\"1\",\"description\":\"(optional) The field cannot be changed and will automatically inherit the default value - it will also not submit\"},\"properties10\":{\"name\":\"required\",\"example\":\"false\",\"adjustable\":\"1\",\"description\":\"(optional) The field must be filled before submitting the form.\"},\"properties11\":{\"name\":\"filter\",\"example\":\"tel\",\"adjustable\":\"1\",\"description\":\"(optional) allow the system to save certain html tags or raw data.\"},\"properties12\":{\"name\":\"validated\",\"example\":\"tel\",\"adjustable\":\"1\",\"description\":\"(optional) allow the system to validated the input data.\"},\"properties13\":{\"name\":\"message\",\"example\":\"Error! Please add phone number here.\",\"adjustable\":\"1\",\"translatable\":\"1\",\"description\":\"(optional) The error message that will be displayed instead of the default message.\"},\"properties14\":{\"name\":\"hint\",\"example\":\"Your Phone Number\",\"adjustable\":\"1\",\"translatable\":\"1\",\"description\":\"(optional) The placeholder to display inside the text box.\"},\"properties15\":{\"name\":\"showon\",\"example\":\"\",\"adjustable\":\"1\",\"description\":\"(optional) Allows you to hide the field based on the value(s) of another field; for Joomla 3.2.4+ https:\\/\\/joomla.stackexchange.com\\/a\\/17682\\/2166\"},\"properties16\":{\"name\":\"onchange\",\"example\":\"\",\"adjustable\":\"1\",\"description\":\"(optional) HTML equivalent attribute (javascript use)\"}}', 'provides an input field for a telephone number.', '', 1, 6, '', '', '1c6c519c-3bc8-4914-8940-3e9591b0bce6'),
(24, 'The text form field type provides a text box for data entry. If the field has a value saved, this value is displayed when the page is first loaded. If not, the default value (if any) is selected.', 'Text', '{\"properties0\":{\"name\":\"type\",\"example\":\"text\",\"mandatory\":\"1\",\"description\":\"(mandatory) must be text.\"},\"properties1\":{\"name\":\"name\",\"example\":\"mytextvalue\",\"adjustable\":\"1\",\"mandatory\":\"1\",\"description\":\"(mandatory) is the unique name of the field.\"},\"properties2\":{\"name\":\"label\",\"example\":\"Enter some text\",\"adjustable\":\"1\",\"mandatory\":\"1\",\"translatable\":\"1\",\"description\":\"(mandatory) (translatable) is the descriptive title of the field.\"},\"properties3\":{\"name\":\"size\",\"example\":\"10\",\"adjustable\":\"1\",\"description\":\"(optional) 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.\"},\"properties4\":{\"name\":\"maxlength\",\"example\":\"50\",\"adjustable\":\"1\",\"description\":\"(optional) limits the number of characters that may be entered.\"},\"properties5\":{\"name\":\"default\",\"example\":\"Some text\",\"adjustable\":\"1\",\"description\":\"(optional) (not translatable) is the default value.\"},\"properties6\":{\"name\":\"description\",\"example\":\"Enter some description\",\"adjustable\":\"1\",\"translatable\":\"1\",\"description\":\"(optional) (translatable) is text that will be shown as a tooltip when the user moves the mouse over the drop-down box.\"},\"properties7\":{\"name\":\"class\",\"example\":\"text_area\",\"adjustable\":\"1\",\"description\":\"(optional) is a CSS class name for the HTML form field. If omitted this will default to \'text_area\'.\"},\"properties8\":{\"name\":\"readonly\",\"example\":\"false\",\"adjustable\":\"1\",\"description\":\"(optional) The field cannot be changed and will automatically inherit the default value\"},\"properties9\":{\"name\":\"disabled\",\"example\":\"false\",\"adjustable\":\"1\",\"description\":\"(optional) The field cannot be changed and will automatically inherit the default value - it will also not submit\"},\"properties10\":{\"name\":\"required\",\"example\":\"false\",\"adjustable\":\"1\",\"description\":\"(optional) The field must be filled before submitting the form.\"},\"properties11\":{\"name\":\"filter\",\"example\":\"STRING\",\"adjustable\":\"1\",\"description\":\"(optional) allow the system to save certain html tags or raw data.\"},\"properties12\":{\"name\":\"validate\",\"example\":\"\",\"adjustable\":\"1\",\"description\":\"(optional) The validation method for the form field. This value will determine which method is used to validate the value for a field.\"},\"properties13\":{\"name\":\"field\",\"example\":\"\",\"adjustable\":\"1\",\"description\":\"(optional) used in validation of \\\"equals\\\" to link the field to match.\"},\"properties14\":{\"name\":\"message\",\"example\":\"Error! Please add some text here.\",\"adjustable\":\"1\",\"translatable\":\"1\",\"description\":\"(optional) The error message that will be displayed instead of the default message.\"},\"properties15\":{\"name\":\"hint\",\"example\":\"Your Name Here\",\"adjustable\":\"1\",\"translatable\":\"1\",\"description\":\"(optional) The placeholder to display inside the text box.\"},\"properties16\":{\"name\":\"autocomplete\",\"example\":\"on\",\"adjustable\":\"1\",\"description\":\"(optional) The autocomplete state for the form field. If \'off\' element will not be automatically completed by browser.\"},\"properties17\":{\"name\":\"showon\",\"example\":\"\",\"adjustable\":\"1\",\"description\":\"(optional) Allows you to hide the field based on the value(s) of another field; for Joomla 3.2.4+ https:\\/\\/joomla.stackexchange.com\\/a\\/17682\\/2166\"},\"properties18\":{\"name\":\"onchange\",\"example\":\"\",\"adjustable\":\"1\",\"description\":\"(optional) HTML equivalent attribute (javascript use)\"}}', 'provides a text box for data entry.', '', 1, 10, '', '', '201327fe-3067-4316-a155-3fe2a52e05c0'),
(25, 'The textarea form field type provides a text area for entry of multi-line text. If the field has a value saved, this value is displayed when the page is first loaded. If not, the default value (if any) is selected.', 'Textarea', '{\"properties0\":{\"name\":\"type\",\"example\":\"textarea\",\"mandatory\":\"1\",\"description\":\"(mandatory) must be textarea.\"},\"properties1\":{\"name\":\"name\",\"example\":\"mytextarea\",\"adjustable\":\"1\",\"mandatory\":\"1\",\"description\":\"(mandatory) is the unique name of the field.\"},\"properties2\":{\"name\":\"label\",\"example\":\"Enter some text\",\"adjustable\":\"1\",\"mandatory\":\"1\",\"translatable\":\"1\",\"description\":\"(mandatory) (translatable) is the descriptive title of the field.\"},\"properties3\":{\"name\":\"rows\",\"example\":\"10\",\"adjustable\":\"1\",\"mandatory\":\"1\",\"description\":\"(mandatory) is the height of the visible text area in lines. If omitted the width is determined by the browser. The value of rows does not limit the number of lines that may be entered.\"},\"properties4\":{\"name\":\"cols\",\"example\":\"5\",\"adjustable\":\"1\",\"mandatory\":\"1\",\"description\":\"(mandatory) is the width of the visible text area in characters. If omitted the width is determined by the browser. The value of cols does not limit the number of characters that may be entered.\"},\"properties5\":{\"name\":\"default\",\"example\":\"default text\",\"adjustable\":\"1\",\"description\":\"(optional) (not translatable) is the default value.\"},\"properties6\":{\"name\":\"description\",\"example\":\"Text Area\",\"adjustable\":\"1\",\"translatable\":\"1\",\"description\":\"(optional) (translatable) is text that will be shown as a tooltip when the user moves the mouse over the label.\"},\"properties7\":{\"name\":\"message\",\"example\":\"\",\"adjustable\":\"1\",\"translatable\":\"1\",\"description\":\"(optional) (translatable) is text that will be shown as error on validation.\"},\"properties8\":{\"name\":\"class\",\"example\":\"text_area\",\"adjustable\":\"1\",\"description\":\"(optional) is a CSS class name for the HTML form field. If omitted this will default to \'text_area\'.\"},\"properties9\":{\"name\":\"filter\",\"example\":\"raw\",\"adjustable\":\"1\",\"description\":\"(optional) allow the system to save certain html tags or raw data.\"},\"properties10\":{\"name\":\"hint\",\"example\":\"\",\"adjustable\":\"1\",\"translatable\":\"1\",\"description\":\"(optional) The placeholder to display inside the textarea.\"},\"properties11\":{\"name\":\"required\",\"example\":\"false\",\"adjustable\":\"1\",\"description\":\"(optional) The field must be filled before submitting the form.\"},\"properties12\":{\"name\":\"validate\",\"example\":\"\",\"adjustable\":\"1\",\"description\":\"(optional) The validation method for the form field. This value will determine which method is used to validate the value for a field.\"},\"properties13\":{\"name\":\"readonly\",\"example\":\"false\",\"adjustable\":\"1\",\"description\":\"(optional) The field cannot be changed and will automatically inherit the default value\"},\"properties14\":{\"name\":\"disabled\",\"example\":\"false\",\"adjustable\":\"1\",\"description\":\"(optional) The field cannot be changed and will automatically inherit the default value - it will also not submit\"},\"properties15\":{\"name\":\"showon\",\"example\":\"\",\"adjustable\":\"1\",\"description\":\"(optional) Allows you to hide the field based on the value(s) of another field; for Joomla 3.2.4+ https:\\/\\/joomla.stackexchange.com\\/a\\/17682\\/2166\"},\"properties16\":{\"name\":\"onchange\",\"example\":\"\",\"adjustable\":\"1\",\"description\":\"(optional) HTML equivalent attribute (javascript use)\"}}', 'provides a text area for entry of multi-line text.', '', 1, 9, '', '', '76fe1250-6fa7-49e5-a0ee-f06d8d4c9f99'),
(26, 'The timezones form field type provides a drop down list of time zones. If the field has a value saved, this value is displayed when the page is first loaded. If not, the default value (if any) is selected.', 'Timezone', '{\"properties0\":{\"name\":\"type\",\"example\":\"timezone\",\"mandatory\":\"1\",\"description\":\"(mandatory) must be timezone.\"},\"properties1\":{\"name\":\"name\",\"example\":\"timezone\",\"adjustable\":\"1\",\"mandatory\":\"1\",\"description\":\"(mandatory) is the unique name of the field.\"},\"properties2\":{\"name\":\"label\",\"example\":\"Timezone\",\"adjustable\":\"1\",\"mandatory\":\"1\",\"translatable\":\"1\",\"description\":\"(mandatory) (translatable) is the descriptive title of the field.\"},\"properties3\":{\"name\":\"default\",\"example\":\"\",\"adjustable\":\"1\",\"description\":\"(optional) is the default time zone. For example, use \'-10\' for \'(UTC -10:00) Hawaii\'.\"},\"properties4\":{\"name\":\"description\",\"example\":\"\",\"adjustable\":\"1\",\"translatable\":\"1\",\"description\":\"(optional) (translatable) is text that will be shown as a tooltip when the user moves the mouse over the drop-down box.\"},\"properties5\":{\"name\":\"showon\",\"example\":\"\",\"adjustable\":\"1\",\"description\":\"(optional) show this field on the bases of the value in another field. https:\\/\\/joomla.stackexchange.com\\/a\\/17682\\/2166\"}}', 'provides a drop down list of time zones.', '', 1, 3, '', '', 'ed8d8cf4-cb05-49cc-95ef-4ef275f539f9'),
(27, 'This field essentially is a text field with the type of url. If a fully qualified url (that is one with a scheme and domain such as http://example.com) is entered and it uses idn (that is uses characters that are non ascii such as ê or Ψ) it will translat', 'URL', '{\"properties0\":{\"name\":\"type\",\"example\":\"url\",\"mandatory\":\"1\",\"description\":\"(mandatory) must be url.\"},\"properties1\":{\"name\":\"name\",\"example\":\"website\",\"adjustable\":\"1\",\"mandatory\":\"1\",\"description\":\"(mandatory) is the unique name of the field.\"},\"properties2\":{\"name\":\"label\",\"example\":\"Website\",\"adjustable\":\"1\",\"mandatory\":\"1\",\"translatable\":\"1\",\"description\":\"(mandatory) (translatable) is the descriptive title of the field.\"},\"properties3\":{\"name\":\"size\",\"example\":\"10\",\"adjustable\":\"1\",\"description\":\"(optional) 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.\"},\"properties4\":{\"name\":\"maxlength\",\"example\":\"50\",\"adjustable\":\"1\",\"description\":\"(optional) limits the number of characters that may be entered.\"},\"properties5\":{\"name\":\"default\",\"example\":\"\",\"adjustable\":\"1\",\"description\":\"(optional) (not translatable) is the default value.\"},\"properties6\":{\"name\":\"description\",\"example\":\"Enter website address\",\"adjustable\":\"1\",\"translatable\":\"1\",\"description\":\"(optional) (translatable) is text that will be shown as a tooltip when the user moves the mouse over the drop-down box.\"},\"properties7\":{\"name\":\"class\",\"example\":\"text_area\",\"adjustable\":\"1\",\"description\":\"(optional) is a CSS class name for the HTML form field. If omitted this will default to \'text_area\'.\"},\"properties8\":{\"name\":\"readonly\",\"example\":\"\",\"adjustable\":\"1\",\"description\":\"(optional) The field cannot be changed and will automatically inherit the default value\"},\"properties9\":{\"name\":\"disabled\",\"example\":\"\",\"adjustable\":\"1\",\"description\":\"(optional) The field cannot be changed and will automatically inherit the default value - it will also not submit\"},\"properties10\":{\"name\":\"required\",\"example\":\"\",\"adjustable\":\"1\",\"description\":\"(optional) The field must be filled before submitting the form.\"},\"properties11\":{\"name\":\"relative\",\"example\":\"false\",\"adjustable\":\"1\",\"description\":\"(optional) set to true for relative URLs\"},\"properties12\":{\"name\":\"filter\",\"example\":\"url\",\"adjustable\":\"1\",\"description\":\"(optional) allow the system to save certain html tags or raw data.\"},\"properties13\":{\"name\":\"validated\",\"example\":\"url\",\"adjustable\":\"1\",\"description\":\"(optional) The validation method for the form field. This value will determine which method is used to validate the value for a field.\"},\"properties14\":{\"name\":\"scheme\",\"example\":\"http,https,mailto\",\"adjustable\":\"1\",\"description\":\"(optional) Validates that the value is a URL with a valid scheme (which can be restricted by the optional comma-separated field \'scheme\'), and passes a basic syntax check.\"},\"properties15\":{\"name\":\"message\",\"example\":\"Error! Please add website here.\",\"adjustable\":\"1\",\"translatable\":\"1\",\"description\":\"(optional) (translatable) is text that will be shown as error on validation.\"},\"properties16\":{\"name\":\"hint\",\"example\":\"Your Website Here\",\"adjustable\":\"1\",\"translatable\":\"1\",\"description\":\"(optional) The placeholder to display inside the text box.\"},\"properties19\":{\"name\":\"autocomplete\",\"example\":\"on\",\"adjustable\":\"1\",\"description\":\"(optional) The autocomplete state for the form field. If \'off\' element will not be automatically completed by browser.\"},\"properties17\":{\"name\":\"showon\",\"example\":\"\",\"adjustable\":\"1\",\"description\":\"(optional) Allows you to hide the field based on the value(s) of another field; for Joomla 3.2.4+ https:\\/\\/joomla.stackexchange.com\\/a\\/17682\\/2166\"},\"properties18\":{\"name\":\"onchange\",\"example\":\"\",\"adjustable\":\"1\",\"description\":\"(optional) HTML equivalent attribute (javascript use)\"}}', 'provides a URL text input field.', '', 1, 10, '', '', '8df6e07e-2b16-43ed-a18d-2059fa44cdf1'),
(28, 'The user form field type provides a modal select box of users.', 'User', '{\"properties0\":{\"name\":\"type\",\"example\":\"user\",\"mandatory\":\"1\",\"description\":\"(mandatory) must be user.\"},\"properties1\":{\"name\":\"name\",\"example\":\"user\",\"adjustable\":\"1\",\"mandatory\":\"1\",\"description\":\"(mandatory) is the unique name of the field. This must match the name of the query results column that contains the values that will be shown to the user in the drop-down list, unless a different name is specified in the value_field attribute.\"},\"properties2\":{\"name\":\"label\",\"example\":\"User\",\"adjustable\":\"1\",\"mandatory\":\"1\",\"translatable\":\"1\",\"description\":\"(mandatory) (translatable) is the descriptive title of the field.\"},\"properties3\":{\"name\":\"description\",\"example\":\"\",\"adjustable\":\"1\",\"translatable\":\"1\",\"description\":\"(optional) (translatable) is text that will be shown as a tooltip when the user moves the mouse over the drop-down box.\"},\"properties4\":{\"name\":\"class\",\"example\":\"\",\"adjustable\":\"1\",\"description\":\"(optional) is a CSS class name for the HTML form field.\"},\"properties5\":{\"name\":\"size\",\"example\":\"\",\"adjustable\":\"1\",\"description\":\"(optional) 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.\"},\"properties6\":{\"name\":\"required\",\"example\":\"\",\"adjustable\":\"1\",\"description\":\"(optional) The field must be filled before submitting the form.\"},\"properties7\":{\"name\":\"showon\",\"example\":\"\",\"adjustable\":\"1\",\"description\":\"(optional) show this field on the bases of the value in another field. https:\\/\\/joomla.stackexchange.com\\/a\\/17682\\/2166\"}}', 'provides a modal list of users.', '', 1, 4, '', '', 'b0641980-5e78-42f6-972f-86aa607db23e'),
(29, 'The usergroup form field type provides a modal select box of user groups.', 'Usergrouplist', '{\"properties0\":{\"name\":\"type\",\"example\":\"usergrouplist\",\"mandatory\":\"1\",\"description\":\"(mandatory) must be usergroup.\"},\"properties1\":{\"name\":\"name\",\"example\":\"usergroup\",\"adjustable\":\"1\",\"mandatory\":\"1\",\"description\":\"(mandatory) is the unique name of the field. This must match the name of the query results column that contains the values that will be shown to the user in the drop-down list, unless a different name is specified in the value_field attribute.\"},\"properties2\":{\"name\":\"label\",\"example\":\"Group\",\"adjustable\":\"1\",\"mandatory\":\"1\",\"translatable\":\"1\",\"description\":\"(mandatory) (translatable) is the descriptive title of the field.\"},\"properties3\":{\"name\":\"description\",\"example\":\"Select a group\",\"adjustable\":\"1\",\"translatable\":\"1\",\"description\":\"(optional) (translatable) is text that will be shown as a tooltip when the user moves the mouse over the drop-down box.\"},\"properties4\":{\"name\":\"class\",\"example\":\"\",\"adjustable\":\"1\",\"description\":\"(optional) is a CSS class name for the HTML form field.\"},\"properties5\":{\"name\":\"size\",\"example\":\"\",\"adjustable\":\"1\",\"description\":\"(optional) 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.\"},\"properties6\":{\"name\":\"required\",\"example\":\"\",\"adjustable\":\"1\",\"description\":\"(optional) is the field required true if yes.\"},\"properties7\":{\"name\":\"multiple\",\"example\":\"\",\"adjustable\":\"1\",\"description\":\"(optional) If set to multiple then allows more than one usergroup to be selected.\"},\"properties8\":{\"name\":\"showon\",\"example\":\"\",\"adjustable\":\"1\",\"description\":\"(optional) show this field on the bases of the value in another field. https:\\/\\/joomla.stackexchange.com\\/a\\/17682\\/2166\"}}', 'provides a drop down list of user groups.', '', 1, 4, '', '', 'e2f31181-fbb3-4c3a-859d-72b6b0cff308'),
(30, 'The filelist form field type provides a drop down list of files from a specified directory. If the field has a saved value this is selected when the page is first loaded. If not, the default value (if any) is selected.\r\n\r\nBy default, the first item on the', 'Filelist', '{\"properties0\":{\"name\":\"type\",\"example\":\"filelist\",\"mandatory\":\"1\",\"description\":\"(mandatory) must be filelist.\"},\"properties1\":{\"name\":\"name\",\"example\":\"myfile\",\"adjustable\":\"1\",\"mandatory\":\"1\",\"description\":\"(mandatory) is the unique name of the field.\"},\"properties2\":{\"name\":\"label\",\"example\":\"Select a file\",\"adjustable\":\"1\",\"mandatory\":\"1\",\"translatable\":\"1\",\"description\":\"(mandatory) (translatable) is the descriptive title of the field.\"},\"properties3\":{\"name\":\"directory\",\"example\":\"images\\/stories\",\"adjustable\":\"1\",\"description\":\"(optional) is the filesystem path to the directory containing the files to be listed. If omitted the directory given by JPATH_ROOT is assumed.\"},\"properties4\":{\"name\":\"default\",\"example\":\"\",\"adjustable\":\"1\",\"description\":\"(optional) is the default file name.\"},\"properties5\":{\"name\":\"description\",\"example\":\"\",\"adjustable\":\"1\",\"translatable\":\"1\",\"description\":\"(optional) (translatable) is text that will be shown as a tooltip when the user moves the mouse over the drop-down box.\"},\"properties6\":{\"name\":\"filter\",\"example\":\"\",\"adjustable\":\"1\",\"description\":\"(optional) is a regular expression string which is used to filter the list of files selected for inclusion in the drop-down list. If omitted, all files in the directory are included. The filter argument expression is applied before the exclude argument expression. For information on constructing regular expressions see Regular expressions in parameter arguments.\"},\"properties7\":{\"name\":\"exclude\",\"example\":\"\",\"adjustable\":\"1\",\"description\":\"(optional) is a regular expression string which is used to exclude files from the list. The exclude argument expression is applied after the filter argument expression. For information on constructing regular expressions see Regular expressions in parameter arguments.\"},\"properties8\":{\"name\":\"stripext\",\"example\":\"\",\"adjustable\":\"1\",\"description\":\"(optional) is a Boolean argument. If true then file name extensions will be stripped from the file names listed. Also note that the file name will be saved without the extension too.\"},\"properties9\":{\"name\":\"hide_none\",\"example\":\"\",\"adjustable\":\"1\",\"description\":\"(optional) is a Boolean argument. If true, the \'- Do not use -\' item is omitted from the drop-down list.\"},\"properties10\":{\"name\":\"hide_default\",\"example\":\"\",\"adjustable\":\"1\",\"description\":\"(optional) is a Boolean argument. If true, the \'- Use default -\' item is omitted from the drop-down list.\"},\"properties11\":{\"name\":\"showon\",\"example\":\"\",\"adjustable\":\"1\",\"description\":\"(optional) show this field on the bases of the value in another field. https:\\/\\/joomla.stackexchange.com\\/a\\/17682\\/2166\"}}', 'Provides a drop down list of files from a specified directory.', '', 1, 4, '', 1, '0c80df15-52c6-4647-983b-4bb4888a2edf'),
(31, 'The folderlist form field type provides a drop down list of folders from a specfied directory. If the field has a saved value this is selected when the page is first loaded. If not, the default value (if any) is selected.\r\n\r\nBy default, the first item on ', 'Folderlist', '{\"properties0\":{\"name\":\"type\",\"example\":\"folderlist\",\"mandatory\":\"1\",\"description\":\"(mandatory) must be folderlist.\"},\"properties1\":{\"name\":\"name\",\"example\":\"myfolder\",\"adjustable\":\"1\",\"mandatory\":\"1\",\"description\":\"(mandatory) is the unique name of the field.\"},\"properties2\":{\"name\":\"label\",\"example\":\"Select a folder\",\"adjustable\":\"1\",\"mandatory\":\"1\",\"translatable\":\"1\",\"description\":\"(mandatory) (translatable) is the descriptive title of the field.\"},\"properties3\":{\"name\":\"directory\",\"example\":\"images\",\"adjustable\":\"1\",\"mandatory\":\"1\",\"description\":\"(mandatory) is the filesystem path to the directory containing the folders to be listed.\"},\"properties4\":{\"name\":\"default\",\"example\":\"\",\"adjustable\":\"1\",\"description\":\"(optional) is the default folder name.\"},\"properties5\":{\"name\":\"description\",\"example\":\"\",\"adjustable\":\"1\",\"translatable\":\"1\",\"description\":\"(optional) (translatable) is text that will be shown as a tooltip when the user moves the mouse over the drop-down box.\"},\"properties6\":{\"name\":\"filter\",\"example\":\"\",\"adjustable\":\"1\",\"description\":\"(optional) is a regular expression string which is used to filter the list of folders selected for inclusion in the drop-down list. If omitted, all folders in the directory are included. The filter argument expression is applied before the exclude argument expression. For information on constructing regular expressions see Regular expressions in parameter arguments.\"},\"properties7\":{\"name\":\"exclude\",\"example\":\"\",\"adjustable\":\"1\",\"description\":\"(optional) is a regular expression string which is used to exclude folders from the list. The exclude argument expression is applied after the filter argument expression. For information on constructing regular expressions see Regular expressions in parameter arguments.\"},\"properties8\":{\"name\":\"hide_none\",\"example\":\"\",\"adjustable\":\"1\",\"description\":\"(optional) is a Boolean argument. If true, the \'- Do not use -\' item is omitted from the drop-down list.\"},\"properties9\":{\"name\":\"hide_default\",\"example\":\"\",\"adjustable\":\"1\",\"description\":\"(optional) is a Boolean argument. If true, the \'- Use default -\' item is omitted from the drop-down list.\"},\"properties10\":{\"name\":\"showon\",\"example\":\"\",\"adjustable\":\"1\",\"description\":\"(optional) show this field on the bases of the value in another field. https:\\/\\/joomla.stackexchange.com\\/a\\/17682\\/2166\"}}', 'Provides a drop down list of folders from a specified directory.', '', 1, 4, '', 2, 'd3ab2ae4-9370-4497-ae6d-dee2e0b74b7a'),
(32, 'Note: When using the file input type you should always add the attribute enctype=\"multipart/form-data\" to your form tag. Otherwise, the uploaded files will not be attached correctly.\r\n\r\nNote 2: You can put a soft limit file size by adding a hidden field with name=\"MAX_FILE_SIZE\" and value the maximum allowed bytes which is handled by php, but you must also handle it in your code with or without it.', 'File', '{\"properties0\":{\"name\":\"type\",\"example\":\"file\",\"mandatory\":\"1\",\"description\":\"(mandatory) must be file.\"},\"properties1\":{\"name\":\"name\",\"example\":\"myfilevalue\",\"adjustable\":\"1\",\"mandatory\":\"1\",\"description\":\"(mandatory) is the unique name of the field.\"},\"properties2\":{\"name\":\"label\",\"example\":\"Enter some text\",\"adjustable\":\"1\",\"mandatory\":\"1\",\"translatable\":\"1\",\"description\":\"(mandatory) (translatable) is the descriptive title of the field.\"},\"properties3\":{\"name\":\"description\",\"example\":\"Choose an image from your computer with maximum 100KB\",\"adjustable\":\"1\",\"translatable\":\"1\",\"description\":\"(optional) (translatable) is text that will be shown as a tooltip when the user moves the mouse over the drop-down box.\"},\"properties4\":{\"name\":\"default\",\"example\":\"\",\"adjustable\":\"1\",\"description\":\"(optional) (not translatable) is the default value, but doesn\'t mean much for a file.\"},\"properties5\":{\"name\":\"size\",\"example\":\"10\",\"adjustable\":\"1\",\"description\":\"(optional) is the width of the file box in characters.\"},\"properties6\":{\"name\":\"accept\",\"example\":\"image\\/*\",\"adjustable\":\"1\",\"description\":\"(optional) Tells the browser what MIME types your form will allow to be uploaded.\"},\"properties7\":{\"name\":\"class\",\"example\":\"\",\"adjustable\":\"1\",\"description\":\"(optional) is a CSS class name for the HTML form field.\"},\"properties8\":{\"name\":\"labelclass\",\"example\":\"\",\"adjustable\":\"1\",\"description\":\"(optional) adds a CSS class for form field\'s label; for Joomla 2.5.4+\"},\"properties9\":{\"name\":\"disabled\",\"example\":\"\",\"adjustable\":\"1\",\"description\":\"(optional) HTML equivalent attribute\"},\"properties10\":{\"name\":\"onchange\",\"example\":\"\",\"adjustable\":\"1\",\"description\":\"(optional) HTML equivalent attribute (javascript use)\"},\"properties11\":{\"name\":\"required\",\"example\":\"\",\"adjustable\":\"1\",\"description\":\"(optional) For Joomla form validating it to be filled in\"},\"properties12\":{\"name\":\"validate\",\"example\":\"\",\"adjustable\":\"1\",\"description\":\"(optional) Whether to Joomla validate the field according to rules\"},\"properties13\":{\"name\":\"showon\",\"example\":\"\",\"adjustable\":\"1\",\"description\":\"(optional) Allows you to hide the field based on the value(s) of another field; for Joomla 3.2.4+ https:\\/\\/joomla.stackexchange.com\\/a\\/17682\\/2166\"}}', 'Provides an input field for files', '', 1, 9, '', 3, '6da71c1e-119c-4e0d-a309-f3e52ecfa1d1'),
(33, 'The menuitem form field type provides a drop down grouped list of the available menu items from your Joomla site.', 'menuitem', '{\"properties0\":{\"name\":\"type\",\"example\":\"menuitem\",\"mandatory\":\"1\",\"description\":\"(mandatory) must be menuitem.\"},\"properties1\":{\"name\":\"name\",\"example\":\"mymenuitem\",\"adjustable\":\"1\",\"mandatory\":\"1\",\"description\":\"(mandatory) is the unique name of the field.\"},\"properties2\":{\"name\":\"label\",\"example\":\"Select a menu item\",\"adjustable\":\"1\",\"mandatory\":\"1\",\"translatable\":\"1\",\"description\":\"(mandatory) (translatable) is the descriptive title of the field.\"},\"properties3\":{\"name\":\"default\",\"example\":\"\",\"adjustable\":\"1\",\"description\":\"(optional) is the default menu item. Note that this is the ItemID number of the menu item.\"},\"properties4\":{\"name\":\"description\",\"example\":\"\",\"adjustable\":\"1\",\"translatable\":\"1\",\"description\":\"(optional) (translatable) is text that will be shown as a tooltip when the user moves the mouse over the drop-down box.\"},\"properties5\":{\"name\":\"published\",\"example\":\"\",\"adjustable\":\"1\",\"description\":\"(optional) determines whether all menu items are listed or only published menu items. If state is \'0\' then all menu items will be listed. If state is \'1\' then only published menu items will be listed.\"},\"properties6\":{\"name\":\"filter\",\"example\":\"int\",\"adjustable\":\"1\",\"mandatory\":\"1\",\"description\":\"(optional) allow the system to save certain html tags or raw data.\"},\"properties7\":{\"name\":\"showon\",\"example\":\"\",\"adjustable\":\"1\",\"description\":\"(optional) Allows you to hide the field based on the value(s) of another field; for Joomla 3.2.4+ https:\\/\\/joomla.stackexchange.com\\/a\\/17682\\/2166\"}}', 'provides a drop down list of the available menu items from your Joomla site.', '', 1, 5, '', 4, 'f183b0e2-017f-48bd-8dba-d332ce1b8d9e'),
(34, 'Remember all views already have [accesslevel] added by default, only add this if you need more custom access selection! Provides a dropdown list of accesslevel options with the current option selected.', 'Accesslevel', '{\"properties0\":{\"name\":\"type\",\"example\":\"accesslevel\",\"mandatory\":\"1\",\"description\":\"(mandatory) must be accesslevel\"},\"properties1\":{\"name\":\"name\",\"example\":\"accesstwo\",\"adjustable\":\"1\",\"mandatory\":\"1\",\"description\":\"(mandatory) is the unique name of the field. This must match the name of the query results column that contains the values that will be shown to the user in the drop-down list, unless a different name is specified in the value_field attribute. \"},\"properties2\":{\"name\":\"label\",\"example\":\"Access Two\",\"adjustable\":\"1\",\"mandatory\":\"1\",\"translatable\":\"1\",\"description\":\"(mandatory) (translatable) is the descriptive title of the field.\"},\"properties3\":{\"name\":\"description\",\"example\":\"Select an access level to this concept.\",\"adjustable\":\"1\",\"translatable\":\"1\",\"description\":\"(optional) (translatable) is text that will be shown as a tooltip when the user moves the mouse over the drop-down box.\"},\"properties4\":{\"name\":\"class\",\"example\":\"\",\"adjustable\":\"1\",\"description\":\"(optional) is a CSS class name for the HTML form field.\"},\"properties5\":{\"name\":\"required\",\"example\":\"\",\"adjustable\":\"1\",\"description\":\"(optional) is the field required true if yes.\"},\"properties6\":{\"name\":\"multiple\",\"example\":\"\",\"adjustable\":\"1\",\"description\":\"(optional) If set to multiple then allows more than one usergroup to be selected.\"},\"properties7\":{\"name\":\"showon\",\"example\":\"\",\"adjustable\":\"1\",\"description\":\"(optional) show this field on the bases of the value in another field. https:\\/\\/joomla.stackexchange.com\\/a\\/17682\\/2166\"}}', 'List of accesslevels', '', 1, 4, '', 5, '913ed2ce-836c-48e8-97af-e482441f47df'),
(35, 'Provides a form with rows of fields that you specify. As many options can be added as desired. Note this form field has a jQuery based javascript file as a dependency.', 'Subform', '{\"properties0\":{\"name\":\"type\",\"example\":\"subform\",\"description\":\"(mandatory) must be subform.\"},\"properties1\":{\"name\":\"name\",\"example\":\"options\",\"adjustable\":\"1\",\"description\":\"(mandatory) is the unique name of the parameter\"},\"properties2\":{\"name\":\"label\",\"example\":\"The Option List\",\"adjustable\":\"1\",\"translatable\":\"1\",\"description\":\"(mandatory) (translatable) is the descriptive title of the field.\"},\"properties3\":{\"name\":\"layout\",\"example\":\"joomla.form.field.subform.repeatable-table\",\"adjustable\":\"1\",\"description\":\"(mandatory) The layout for the repeatable table.\"},\"properties4\":{\"name\":\"component\",\"example\":\"\",\"adjustable\":\"1\",\"description\":\"(optional) To change the component where it should search for layout\"},\"properties5\":{\"name\":\"client\",\"example\":\"\",\"adjustable\":\"1\",\"description\":\"(optional) Function to initialise the application clientFrontend: site or 0Backend: admin or 1\"},\"properties6\":{\"name\":\"multiple\",\"example\":\"true\",\"adjustable\":\"1\",\"mandatory\":\"1\",\"description\":\"(mandatory) The rows to be multiple.\"},\"properties7\":{\"name\":\"buttons\",\"example\":\"add,remove,move\",\"adjustable\":\"1\",\"description\":\"(optional) Which buttons to show if multiple mode is true.Options: add,remove,move\"},\"properties8\":{\"name\":\"fields\",\"example\":\"1,2,3\",\"adjustable\":\"1\",\"description\":\"(mandatory) The fields to add to the modal. All fields must first be created in component builder as a field before you can add them here, since you must use the id of the field. Separate the field ids with commas. Do not add custom fields that are not also used in this component.\"},\"properties9\":{\"name\":\"formsource\",\"example\":\"\",\"adjustable\":\"1\",\"description\":\"(optional) you can add a path to a xml file containing the fields.\"},\"properties10\":{\"name\":\"description\",\"example\":\"\",\"adjustable\":\"1\",\"translatable\":\"1\",\"description\":\"(optional) (translatable) description text for the form field. Displays at the top of the modal with the name as well as in the usual position in the form\"},\"properties11\":{\"name\":\"default\",\"example\":\"\",\"adjustable\":\"1\",\"description\":\"(optional) The default value for the form field if the field is left empty. Note this has to be a json string compatible with the contents of the form field.\"},\"properties12\":{\"name\":\"icon\",\"example\":\"list\",\"adjustable\":\"1\",\"description\":\"(optional) The icon to show on the select button (is prefixed with \\\"icon-\\\").\"},\"properties13\":{\"name\":\"max\",\"example\":\"50\",\"adjustable\":\"1\",\"description\":\"(optional) The maximum number of rows of fields allowed (by default 999 to be effectively infinite)\"},\"properties14\":{\"name\":\"min\",\"example\":\"\",\"adjustable\":\"1\",\"description\":\"(optional) The minimum number of rows of fields required\"},\"properties15\":{\"name\":\"filter\",\"example\":\"\",\"adjustable\":\"1\",\"description\":\"(optional) Use only if you would like to save raw data, since the default is best.\"},\"properties16\":{\"name\":\"showon\",\"example\":\"\",\"adjustable\":\"1\",\"description\":\"(optional) show this field on the bases of the value in another field. https:\\/\\/joomla.stackexchange.com\\/a\\/17682\\/2166\"}}', 'Allows form fields which can have as many options as the user desires.', '', 1, 14, '', 6, '7139f2c8-a70a-46a6-bbe3-4eefe54ca515'),
(36, 'Provides an input field for an email address.', 'Email', '{\"properties0\":{\"name\":\"type\",\"example\":\"email\",\"mandatory\":\"1\",\"description\":\"(mandatory) must be email.\"},\"properties1\":{\"name\":\"name\",\"example\":\"email\",\"adjustable\":\"1\",\"mandatory\":\"1\",\"description\":\"(mandatory) is the unique name of the field.\"},\"properties2\":{\"name\":\"label\",\"example\":\"Email Address\",\"adjustable\":\"1\",\"mandatory\":\"1\",\"translatable\":\"1\",\"description\":\"(mandatory) (translatable) is the descriptive title of the field.\"},\"properties3\":{\"name\":\"size\",\"example\":\"10\",\"adjustable\":\"1\",\"description\":\"(optional) 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.\"},\"properties4\":{\"name\":\"maxlength\",\"example\":\"50\",\"adjustable\":\"1\",\"description\":\"(optional) limits the number of characters that may be entered.\"},\"properties5\":{\"name\":\"default\",\"example\":\"\",\"adjustable\":\"1\",\"description\":\"(optional) (not translatable) is the default value.\"},\"properties6\":{\"name\":\"description\",\"example\":\"Enter some description\",\"adjustable\":\"1\",\"translatable\":\"1\",\"description\":\"(optional) (translatable) is text that will be shown as a tooltip when the user moves the mouse over the drop-down box.\"},\"properties7\":{\"name\":\"class\",\"example\":\"inputbox\",\"adjustable\":\"1\",\"description\":\"(optional) is a CSS class name for the HTML form field. If omitted this will default to \'text_area\'.\"},\"properties8\":{\"name\":\"readonly\",\"example\":\"false\",\"adjustable\":\"1\",\"description\":\"(optional) The field cannot be changed and will automatically inherit the default value\"},\"properties9\":{\"name\":\"disabled\",\"example\":\"false\",\"adjustable\":\"1\",\"description\":\"(optional) The field cannot be changed and will automatically inherit the default value - it will also not submit\"},\"properties10\":{\"name\":\"required\",\"example\":\"false\",\"adjustable\":\"1\",\"description\":\"(optional) The field must be filled before submitting the form.\"},\"properties11\":{\"name\":\"filter\",\"example\":\"STRING\",\"adjustable\":\"1\",\"description\":\"(optional) allow the system to save certain html tags or raw data.\"},\"properties12\":{\"name\":\"validate\",\"example\":\"email\",\"adjustable\":\"1\",\"description\":\"(optional) The validation method for the form field. This value will determine which method is used to validate the value for a field.\"},\"properties13\":{\"name\":\"unique\",\"example\":\"false\",\"adjustable\":\"1\",\"description\":\"(optional) Used in validation, to check if we should test for uniqueness, to insure that this email does not already belong to another user. Check line 99 in \\/libraries\\/src\\/Form\\/Rule\\/EmailRule.php\"},\"properties14\":{\"name\":\"field\",\"example\":\"\",\"adjustable\":\"1\",\"description\":\"(optional) used in validation of \\\"equals\\\" to link the field to match.\"},\"properties15\":{\"name\":\"message\",\"example\":\"Error! Please add some text here.\",\"adjustable\":\"1\",\"translatable\":\"1\",\"description\":\"(optional) The error message that will be displayed instead of the default message.\"},\"properties16\":{\"name\":\"hint\",\"example\":\"your@email.com\",\"adjustable\":\"1\",\"translatable\":\"1\",\"description\":\"(optional) The placeholder to display inside the text box.\"},\"properties17\":{\"name\":\"autocomplete\",\"example\":\"on\",\"adjustable\":\"1\",\"description\":\"(optional) The autocomplete state for the form field. If \'off\' element will not be automatically completed by browser.\"},\"properties18\":{\"name\":\"showon\",\"example\":\"\",\"adjustable\":\"1\",\"description\":\"(optional) Allows you to hide the field based on the value(s) of another field; for Joomla 3.2.4+ https:\\/\\/joomla.stackexchange.com\\/a\\/17682\\/2166\"},\"properties19\":{\"name\":\"onchange\",\"example\":\"\",\"adjustable\":\"1\",\"description\":\"(optional) HTML equivalent attribute (javascript use)\"}}', 'Email form field type', '', 1, 7, '', 7, '35948af5-9e79-4454-8dfa-682ee4fdf650'),
(37, 'Provides a dropdown list of plugin options from the folder.', 'Plugins', '{\"properties0\":{\"name\":\"type\",\"example\":\"plugins\",\"mandatory\":\"1\",\"description\":\"(mandatory) must be editors.\"},\"properties1\":{\"name\":\"name\",\"example\":\"editor\",\"adjustable\":\"1\",\"mandatory\":\"1\",\"description\":\"(mandatory) is the unique name of the parameter.\"},\"properties2\":{\"name\":\"label\",\"example\":\"Select an editor\",\"adjustable\":\"1\",\"mandatory\":\"1\",\"translatable\":\"1\",\"description\":\"(mandatory) (translatable) is the descriptive title of the field.\"},\"properties3\":{\"name\":\"default\",\"example\":\"\",\"adjustable\":\"1\",\"description\":\"(optional) (not translatable) is the default value.\"},\"properties4\":{\"name\":\"description\",\"example\":\"\",\"adjustable\":\"1\",\"translatable\":\"1\",\"description\":\"(optional) (translatable) is text that will be shown as a tooltip when the user moves the mouse over the label.\"},\"properties5\":{\"name\":\"multiple\",\"example\":\"false\",\"adjustable\":\"1\",\"description\":\"(optional) is whether multiple items can be selected at the same time (true or false).\"},\"properties6\":{\"name\":\"folder\",\"example\":\"editors\",\"adjustable\":\"1\",\"mandatory\":\"1\",\"description\":\"(mandatory) editors or captcha.\"},\"properties7\":{\"name\":\"filter\",\"example\":\"cmd\",\"adjustable\":\"1\",\"description\":\"(optional) allow the system to save certain html tags or raw data.\"},\"properties8\":{\"name\":\"showon\",\"example\":\"\",\"adjustable\":\"1\",\"description\":\"(optional) show this field on the bases of the value in another field. https:\\/\\/joomla.stackexchange.com\\/a\\/17682\\/2166\"}}', 'Provides a dropdown list of plugin options from the folder.', '', 1, 8, '', 8, '37fa4e1d-b7ca-4a8f-aa4b-d8085c135233'),
(38, 'Provides the use of a captcha plugin.', 'Captcha', '{\"properties0\":{\"name\":\"type\",\"example\":\"captcha\",\"mandatory\":\"1\",\"description\":\"(mandatory) must be captcha.\"},\"properties3\":{\"name\":\"name\",\"example\":\"captcha\",\"adjustable\":\"1\",\"mandatory\":\"1\",\"description\":\"(mandatory) is the unique name of the field.\"},\"properties2\":{\"name\":\"validate\",\"example\":\"captcha\",\"mandatory\":\"1\",\"description\":\"(mandatory) must be captcha.\"},\"properties1\":{\"name\":\"label\",\"example\":\"Captcha\",\"mandatory\":\"1\",\"translatable\":\"1\",\"description\":\"(mandatory) (translatable) is the descriptive title of the field.\"},\"properties4\":{\"name\":\"description\",\"example\":\"We do not like spam, please show us you are human\",\"translatable\":\"1\",\"description\":\"(optional) (translatable) is text that will be shown as a tooltip when the user moves the mouse over the drop-down box.\"},\"properties5\":{\"name\":\"namespace\",\"example\":\"componentbuilder\",\"description\":\"(optional) the component name seems to work\"}}', 'Captcha robot check.', '', 1, 2, '', 9, '206fdad4-14d0-45f1-9c84-3d09abf48a39'),
(39, 'The list form field type provides a drop down list or a list box of custom-defined entries. If the field has a saved value this is selected when the page is first loaded. If not, the default value (if any) is selected.', 'Groupedlist', '{\"properties0\":{\"name\":\"type\",\"example\":\"groupedlist\",\"mandatory\":\"1\",\"description\":\"(mandatory) must be groupedlist.\"},\"properties1\":{\"name\":\"name\",\"example\":\"mygrouplist\",\"adjustable\":\"1\",\"mandatory\":\"1\",\"description\":\"(mandatory) is the unique name of the field.\"},\"properties2\":{\"name\":\"label\",\"example\":\"Select an option\",\"adjustable\":\"1\",\"mandatory\":\"1\",\"translatable\":\"1\",\"description\":\"(mandatory) (translatable) is the descriptive title of the field.\"},\"properties3\":{\"name\":\"description\",\"example\":\"\",\"adjustable\":\"1\",\"translatable\":\"1\",\"description\":\"(optional) (translatable) is text that will be shown as a tooltip when the user moves the mouse over the drop-down box.\"},\"properties4\":{\"name\":\"message\",\"example\":\"\",\"adjustable\":\"1\",\"translatable\":\"1\",\"description\":\"(optional) (translatable) is text that will be shown as error on validation.\"},\"properties5\":{\"name\":\"class\",\"example\":\"list_class\",\"adjustable\":\"1\",\"description\":\"(optional) is a CSS class name for the HTML form field. If omitted this will default to \'inputbox\'.\"},\"properties6\":{\"name\":\"multiple\",\"example\":\"false\",\"adjustable\":\"1\",\"description\":\"(optional) is whether multiple items can be selected at the same time (true or false).\"},\"properties7\":{\"name\":\"filter\",\"example\":\"\",\"adjustable\":\"1\",\"description\":\"(optional) filter options\"},\"properties8\":{\"name\":\"required\",\"example\":\"\",\"adjustable\":\"1\",\"description\":\"(optional) The field must be filled before submitting the form.\"},\"properties9\":{\"name\":\"validate\",\"example\":\"\",\"adjustable\":\"1\",\"description\":\"(optional) The validation method for the form field. This value will determine which method is used to validate the value for a field.\"},\"properties10\":{\"name\":\"option\",\"example\":\"Group Name@@1,1|Option 1|1,2|Option 2|1,Group Name 2@@2,3|Option 3|2\",\"adjustable\":\"1\",\"description\":\"(mandatory) set the options of this radio. Separate options with commas and use the pipe symbol to separate value from text.\"},\"properties11\":{\"name\":\"useglobal\",\"example\":\"false\",\"adjustable\":\"1\",\"description\":\"(optional) if set to true, it will show the value that is set in the global configuration if found in the database.\"},\"properties12\":{\"name\":\"default\",\"example\":\"0\",\"adjustable\":\"1\",\"description\":\"(optional) is the default list item value.\"},\"properties13\":{\"name\":\"showon\",\"example\":\"\",\"adjustable\":\"1\",\"description\":\"(optional) Allows you to hide the field based on the value(s) of another field; for Joomla 3.2.4+ https:\\/\\/joomla.stackexchange.com\\/a\\/17682\\/2166\"},\"properties14\":{\"name\":\"onchange\",\"example\":\"\",\"adjustable\":\"1\",\"description\":\"(optional) HTML equivalent attribute (javascript use)\"}}', 'provides a drop down list of custom-defined entries.', '', 1, 2, '', 10, '088d47c0-b058-4894-b92e-dcf1b9d5a722'),
(40, 'The modulelayout form field type provides a drop down list of all available layouts for a module, grouped by core and template. If the parameter has a saved value this is selected when the page is first loaded. If not, the default value (if any) is selected.', 'Modulelayout', '{\"properties0\":{\"name\":\"type\",\"example\":\"modulelayout\",\"mandatory\":\"1\",\"description\":\"(mandatory) must be modulelayout.\"},\"properties1\":{\"name\":\"name\",\"example\":\"layout\",\"adjustable\":\"1\",\"mandatory\":\"1\",\"description\":\"(mandatory) is the unique name of the parameter.\"},\"properties2\":{\"name\":\"label\",\"example\":\"Layout\",\"adjustable\":\"1\",\"mandatory\":\"1\",\"translatable\":\"1\",\"description\":\"(mandatory) (translatable) is the descriptive title of the field.\"},\"properties3\":{\"name\":\"description\",\"example\":\"Module layout\",\"adjustable\":\"1\",\"translatable\":\"1\",\"description\":\"(optional) (translatable) is text that will be shown as a tooltip when the user moves the mouse over the drop-down box.\"},\"properties4\":{\"name\":\"module\",\"example\":\"\",\"adjustable\":\"1\",\"description\":\"(optional) is a specific module name (e.g. mod_articles_category).\"},\"properties5\":{\"name\":\"client_id\",\"example\":\"\",\"adjustable\":\"1\",\"description\":\"(optional). If 0 (site): Forces searching for layouts only in directories \\/modules\\/[MODULENAME]\\/tmpl\\/ and all \\/templates\\/[TEMPLATENAME]\\/html\\/[MODULENAME]\\/. If 1 (administrator): Forces searching for layouts only in directories \\/administrator\\/modules\\/[MODULENAME]\\/tmpl\\/ and all \\/administrator\\/templates\\/[TEMPLATENAME]\\/html\\/[MODULENAME]\\/.\\r\\n\"},\"properties6\":{\"name\":\"template\",\"example\":\"\",\"adjustable\":\"1\",\"description\":\"(optional) is a template name (e.g. protostar or isis). If set forces searching for module template overrides only in this template.\"}}', 'modulelayout', '', 1, 1, '', 11, '7520c8f4-543d-4c7a-8e4f-e2da71c3b1cd'),
(41, 'Joomla Privacy Field Type', 'Privacy@', '{\"properties0\":{\"name\":\"type\",\"example\":\"privacy\",\"mandatory\":\"1\",\"description\":\"(mandatory) can be anything, just not the same as any other default Joomla field type. You can also not use the \\\"_\\\" (underscore) or \\\"-\\\" (hyphen) in the type name, and no spaces.\"},\"properties1\":{\"name\":\"name\",\"example\":\"privacy\",\"adjustable\":\"1\",\"mandatory\":\"1\",\"description\":\"(mandatory) is the unique name of the field.\"},\"properties2\":{\"name\":\"label\",\"example\":\"Privacy Policy\",\"adjustable\":\"1\",\"mandatory\":\"1\",\"translatable\":\"1\",\"description\":\"(mandatory) (translatable) is the descriptive title of the field.\"},\"properties3\":{\"name\":\"description\",\"example\":\"Read the full privacy policy.\",\"adjustable\":\"1\",\"translatable\":\"1\",\"description\":\"(optional) (translatable) is text that will be shown as a tooltip when the user moves the mouse over the drop-down box.\"},\"properties4\":{\"name\":\"filter\",\"example\":\"integer\",\"adjustable\":\"1\",\"description\":\"(optional) is a CSS class name for the HTML form field. If omitted this will default to \'inputbox\'.\"},\"properties5\":{\"name\":\"option\",\"example\":\"1|I agree,0|No\",\"adjustable\":\"1\",\"mandatory\":\"1\",\"description\":\"(mandatory) set the options of this radio. Separate options with commas and use the pipe symbol to separate value from text.\"},\"properties6\":{\"name\":\"default\",\"example\":\"0\",\"adjustable\":\"1\",\"description\":\"(optional) (not translatable) is the default value.\"},\"properties7\":{\"name\":\"required\",\"example\":\"true\",\"adjustable\":\"1\",\"description\":\"(optional) The field must be filled before submitting the form.\"},\"properties8\":{\"name\":\"showon\",\"example\":\"\",\"adjustable\":\"1\",\"description\":\"(optional) show this field on the bases of the value in another field. https:\\/\\/joomla.stackexchange.com\\/a\\/17682\\/2166\"},\"properties9\":{\"name\":\"onchange\",\"example\":\"\",\"adjustable\":\"1\",\"description\":\"(optional) HTML equivalent attribute (javascript use)\"},\"properties10\":{\"name\":\"extends\",\"example\":\"radio\",\"mandatory\":\"1\",\"description\":\"Must be radio\"},\"properties11\":{\"name\":\"type_phpHEADER_1\",\"example\":\"use Joomla\\\\CMS\\\\Factory;\\r\\nuse Joomla\\\\CMS\\\\Language\\\\Text;\",\"adjustable\":\"1\",\"mandatory\":\"1\",\"description\":\"The Header USE options\"},\"properties12\":{\"name\":\"type_php_1\",\"example\":\"\\t\\/**\\r\\n\\t * Method to get the field input markup.\\r\\n\\t *\\r\\n\\t * @return string The field input markup.\\r\\n\\t *\\r\\n\\t * @since 3.9.0\\r\\n\\t *\\/\\r\\n\\tprotected function getInput()\\r\\n\\t{\\r\\n\\t\\t\\/\\/ Display the message before the field\\r\\n\\t\\techo $this->getRenderer(\'plugins.system.privacyconsent.message\')->render($this->getLayoutData());\\r\\n\\r\\n\\t\\treturn parent::getInput();\\r\\n\\t}\",\"adjustable\":\"1\",\"mandatory\":\"1\",\"description\":\"The php for the getInput method.\"},\"properties13\":{\"name\":\"type_phpa_1\",\"example\":\"\\t\\/**\\r\\n\\t * Method to get the field label markup.\\r\\n\\t *\\r\\n\\t * @return string The field label markup.\\r\\n\\t *\\r\\n\\t * @since 3.9.0\\r\\n\\t *\\/\\r\\n\\tprotected function getLabel()\\r\\n\\t{\\r\\n\\t\\tif ($this->hidden)\\r\\n\\t\\t{\\r\\n\\t\\t\\treturn \'\';\\r\\n\\t\\t}\\r\\n\\r\\n\\t\\treturn $this->getRenderer(\'plugins.system.privacyconsent.label\')->render($this->getLayoutData());\\r\\n\\r\\n\\t}\",\"adjustable\":\"1\",\"mandatory\":\"1\",\"description\":\"The php for the getLabel method.\"},\"properties14\":{\"name\":\"type_phpb_1\",\"example\":\"\\t\\/**\\r\\n\\t * Method to get the data to be passed to the layout for rendering.\\r\\n\\t *\\r\\n\\t * @return array\\r\\n\\t *\\r\\n\\t * @since 3.9.4\\r\\n\\t *\\/\\r\\n\\tprotected function getLayoutData()\\r\\n\\t{\\r\\n\\t\\t$data = parent::getLayoutData();\\r\\n\\r\\n\\t\\t$article = false;\\r\\n\\t\\t$privacyArticle = $this->element[\'article\'] > 0 ? (int) $this->element[\'article\'] : 0;\\r\\n\\r\\n\\t\\tif ($privacyArticle && Factory::getApplication()->isClient(\'site\'))\\r\\n\\t\\t{\\r\\n\\t\\t\\t$db = Factory::getDbo();\\r\\n\\t\\t\\t$query = $db->getQuery(true)\\r\\n\\t\\t\\t\\t->select($db->quoteName(array(\'id\', \'alias\', \'catid\', \'language\')))\\r\\n\\t\\t\\t\\t->from($db->quoteName(\'#__content\'))\\r\\n\\t\\t\\t\\t->where($db->quoteName(\'id\') . \' = \' . (int) $privacyArticle);\\r\\n\\t\\t\\t$db->setQuery($query);\\r\\n\\t\\t\\t$article = $db->loadObject();\\r\\n\\r\\n\\t\\t\\tJLoader::register(\'ContentHelperRoute\', JPATH_BASE . \'\\/components\\/com_content\\/helpers\\/route.php\');\\r\\n\\r\\n\\t\\t\\t$slug = $article->alias ? ($article->id . \':\' . $article->alias) : $article->id;\\r\\n\\t\\t\\t$article->link = ContentHelperRoute::getArticleRoute($slug, $article->catid, $article->language);\\r\\n\\t\\t}\\r\\n\\r\\n\\t\\t$extraData = array(\\r\\n\\t\\t\\t\'privacynote\' => !empty($this->element[\'note\']) ? $this->element[\'note\'] : Text::_(\'By signing up to this web site and agreeing to the Privacy Policy you agree to this web site storing your information.\'),\\r\\n\\t\\t\\t\'options\' => $this->getOptions(),\\r\\n\\t\\t\\t\'value\' => (string) $this->value,\\r\\n\\t\\t\\t\'translateLabel\' => $this->translateLabel,\\r\\n\\t\\t\\t\'translateDescription\' => $this->translateDescription,\\r\\n\\t\\t\\t\'translateHint\' => $this->translateHint,\\r\\n\\t\\t\\t\'privacyArticle\' => $privacyArticle,\\r\\n\\t\\t\\t\'article\' => $article,\\r\\n\\t\\t);\\r\\n\\r\\n\\t\\treturn array_merge($data, $extraData);\\r\\n\\t}\",\"adjustable\":\"1\",\"mandatory\":\"1\",\"description\":\"The php for the getLayoutData method.\"}}', 'Joomla Privacy Field', '', 1, 6, '', 12, '60c1d674-8bb7-4b31-97ed-ee1f16bc412a'),
(42, 'Joomla Terms Field Type', 'Terms@', '{\"properties0\":{\"name\":\"type\",\"example\":\"terms\",\"mandatory\":\"1\",\"description\":\"(mandatory) can be anything, just not the same as any other default Joomla field type. You can also not use the \\\"_\\\" (underscore) or \\\"-\\\" (hyphen) in the type name, and no spaces.\"},\"properties1\":{\"name\":\"name\",\"example\":\"terms\",\"adjustable\":\"1\",\"mandatory\":\"1\",\"description\":\"(mandatory) is the unique name of the field.\"},\"properties2\":{\"name\":\"label\",\"example\":\"Terms & Conditions\",\"adjustable\":\"1\",\"mandatory\":\"1\",\"translatable\":\"1\",\"description\":\"(mandatory) (translatable) is the descriptive title of the field.\"},\"properties3\":{\"name\":\"description\",\"example\":\"Read the full terms and conditions.\",\"adjustable\":\"1\",\"translatable\":\"1\",\"description\":\"(optional) (translatable) is text that will be shown as a tooltip when the user moves the mouse over the drop-down box.\"},\"properties4\":{\"name\":\"filter\",\"example\":\"integer\",\"adjustable\":\"1\",\"description\":\"(optional) is a CSS class name for the HTML form field. If omitted this will default to \'inputbox\'.\"},\"properties5\":{\"name\":\"option\",\"example\":\"1|I agree,0|No\",\"adjustable\":\"1\",\"mandatory\":\"1\",\"description\":\"(mandatory) set the options of this radio. Separate options with commas and use the pipe symbol to separate value from text.\"},\"properties6\":{\"name\":\"default\",\"example\":\"0\",\"adjustable\":\"1\",\"description\":\"(optional) (not translatable) is the default value.\"},\"properties7\":{\"name\":\"required\",\"example\":\"true\",\"adjustable\":\"1\",\"description\":\"(optional) The field must be filled before submitting the form.\"},\"properties8\":{\"name\":\"showon\",\"example\":\"\",\"adjustable\":\"1\",\"description\":\"(optional) show this field on the bases of the value in another field. https:\\/\\/joomla.stackexchange.com\\/a\\/17682\\/2166\"},\"properties9\":{\"name\":\"onchange\",\"example\":\"\",\"adjustable\":\"1\",\"description\":\"(optional) HTML equivalent attribute (javascript use)\"},\"properties10\":{\"name\":\"extends\",\"example\":\"radio\",\"mandatory\":\"1\",\"description\":\"Must be radio\"},\"properties11\":{\"name\":\"type_phpHEADER_1\",\"example\":\"use Joomla\\\\CMS\\\\Factory;\\r\\nuse Joomla\\\\CMS\\\\Form\\\\FormHelper;\\r\\nuse Joomla\\\\CMS\\\\Language\\\\Associations;\\r\\nuse Joomla\\\\CMS\\\\Language\\\\Text;\",\"adjustable\":\"1\",\"mandatory\":\"1\",\"description\":\"The Header USE options\"},\"properties12\":{\"name\":\"type_php_1\",\"example\":\"\\t\\/**\\r\\n\\t * Method to get the field input markup.\\r\\n\\t *\\r\\n\\t * @return string The field input markup.\\r\\n\\t *\\r\\n\\t * @since 3.9.0\\r\\n\\t *\\/\\r\\n\\tprotected function getInput()\\r\\n\\t{\\r\\n\\t\\t\\/\\/ Display the message before the field\\r\\n\\t\\techo $this->getRenderer(\'plugins.user.terms.message\')->render($this->getLayoutData());\\r\\n\\r\\n\\t\\treturn parent::getInput();\\r\\n\\t}\",\"adjustable\":\"1\",\"mandatory\":\"1\",\"description\":\"The php for the getInput method.\"},\"properties13\":{\"name\":\"type_phpa_1\",\"example\":\"\\t\\/**\\r\\n\\t * Method to get the field label markup.\\r\\n\\t *\\r\\n\\t * @return string The field label markup.\\r\\n\\t *\\r\\n\\t * @since 3.9.0\\r\\n\\t *\\/\\r\\n\\tprotected function getLabel()\\r\\n\\t{\\r\\n\\t\\tif ($this->hidden)\\r\\n\\t\\t{\\r\\n\\t\\t\\treturn \'\';\\r\\n\\t\\t}\\r\\n\\r\\n\\t\\treturn $this->getRenderer(\'plugins.user.terms.label\')->render($this->getLayoutData());\\r\\n\\t}\",\"adjustable\":\"1\",\"mandatory\":\"1\",\"description\":\"The php for the getLabel method.\"},\"properties14\":{\"name\":\"type_phpb_1\",\"example\":\"\\t\\/**\\r\\n\\t * Method to get the data to be passed to the layout for rendering.\\r\\n\\t *\\r\\n\\t * @return array\\r\\n\\t *\\r\\n\\t * @since 3.9.4\\r\\n\\t *\\/\\r\\n\\tprotected function getLayoutData()\\r\\n\\t{\\r\\n\\t\\t$data = parent::getLayoutData();\\r\\n\\r\\n\\t\\t$article = false;\\r\\n\\t\\t$termsArticle = $this->element[\'article\'] > 0 ? (int) $this->element[\'article\'] : 0;\\r\\n\\r\\n\\t\\tif ($termsArticle && Factory::getApplication()->isClient(\'site\'))\\r\\n\\t\\t{\\r\\n\\t\\t\\t$db = Factory::getDbo();\\r\\n\\t\\t\\t$query = $db->getQuery(true)\\r\\n\\t\\t\\t\\t->select($db->quoteName(array(\'id\', \'alias\', \'catid\', \'language\')))\\r\\n\\t\\t\\t\\t->from($db->quoteName(\'#__content\'))\\r\\n\\t\\t\\t\\t->where($db->quoteName(\'id\') . \' = \' . (int) $termsArticle);\\r\\n\\t\\t\\t$db->setQuery($query);\\r\\n\\t\\t\\t$article = $db->loadObject();\\r\\n\\r\\n\\t\\t\\tJLoader::register(\'ContentHelperRoute\', JPATH_BASE . \'\\/components\\/com_content\\/helpers\\/route.php\');\\r\\n\\r\\n\\t\\t\\tif (Associations::isEnabled())\\r\\n\\t\\t\\t{\\r\\n\\t\\t\\t\\t$termsAssociated = Associations::getAssociations(\'com_content\', \'#__content\', \'com_content.item\', $termsArticle);\\r\\n\\t\\t\\t}\\r\\n\\r\\n\\t\\t\\t$currentLang = Factory::getLanguage()->getTag();\\r\\n\\r\\n\\t\\t\\tif (isset($termsAssociated) && $currentLang !== $article->language && array_key_exists($currentLang, $termsAssociated))\\r\\n\\t\\t\\t{\\r\\n\\t\\t\\t\\t$article->link = ContentHelperRoute::getArticleRoute(\\r\\n\\t\\t\\t\\t\\t$termsAssociated[$currentLang]->id,\\r\\n\\t\\t\\t\\t\\t$termsAssociated[$currentLang]->catid,\\r\\n\\t\\t\\t\\t\\t$termsAssociated[$currentLang]->language\\r\\n\\t\\t\\t\\t);\\r\\n\\t\\t\\t}\\r\\n\\t\\t\\telse\\r\\n\\t\\t\\t{\\r\\n\\t\\t\\t\\t$slug = $article->alias ? ($article->id . \':\' . $article->alias) : $article->id;\\r\\n\\t\\t\\t\\t$article->link = ContentHelperRoute::getArticleRoute($slug, $article->catid, $article->language);\\r\\n\\t\\t\\t}\\r\\n\\t\\t}\\r\\n\\r\\n\\t\\t$extraData = array(\\r\\n\\t\\t\\t\'termsnote\' => !empty($this->element[\'note\']) ? $this->element[\'note\'] : Text::_(\'By signing up to this web site you accept the Terms & Conditions.\'),\\r\\n\\t\\t\\t\'options\' => $this->getOptions(),\\r\\n\\t\\t\\t\'value\' => (string) $this->value,\\r\\n\\t\\t\\t\'translateLabel\' => $this->translateLabel,\\r\\n\\t\\t\\t\'translateDescription\' => $this->translateDescription,\\r\\n\\t\\t\\t\'translateHint\' => $this->translateHint,\\r\\n\\t\\t\\t\'termsArticle\' => $termsArticle,\\r\\n\\t\\t\\t\'article\' => $article,\\r\\n\\t\\t);\\r\\n\\r\\n\\t\\treturn array_merge($data, $extraData);\\r\\n\\t}\",\"adjustable\":\"1\",\"mandatory\":\"1\",\"description\":\"The php for the getLayoutData method.\"}}', 'Joomla Terms Field', '', 1, 6, '', 12, '20e88943-08db-49e6-a571-dba70cdf4cca'),
(43, 'Provides a combobox field, which offers a list like the List Form Field Type, but additionally allows free text.', 'Combo', '{\"properties0\":{\"name\":\"type\",\"example\":\"combo\",\"mandatory\":\"1\",\"description\":\"(mandatory) must be combo.\"},\"properties1\":{\"name\":\"name\",\"example\":\"type\",\"adjustable\":\"1\",\"mandatory\":\"1\",\"description\":\"(mandatory) is the unique name of the parameter.\"},\"properties2\":{\"name\":\"label\",\"example\":\"Type\",\"adjustable\":\"1\",\"mandatory\":\"1\",\"translatable\":\"1\",\"description\":\"(mandatory) (translatable) is the descriptive title of the field.\"},\"properties3\":{\"name\":\"description\",\"example\":\"\",\"adjustable\":\"1\",\"translatable\":\"1\",\"description\":\"(optional) (translatable) tooltip for the form field.\"},\"properties4\":{\"name\":\"message\",\"example\":\"\",\"adjustable\":\"1\",\"translatable\":\"1\",\"description\":\"(optional) (translatable) is text that will be shown as error on validation.\"},\"properties5\":{\"name\":\"class\",\"example\":\"combobox\",\"adjustable\":\"1\",\"description\":\"(optional) specify your own classes for additonal markup, defaults to \\\"combobox\\\".\"},\"properties6\":{\"name\":\"filter\",\"example\":\"\",\"adjustable\":\"1\",\"description\":\"(optional) filter options\"},\"properties7\":{\"name\":\"required\",\"example\":\"\",\"adjustable\":\"1\",\"description\":\"(optional) The field must be filled before submitting the form.\"},\"properties8\":{\"name\":\"validate\",\"example\":\"\",\"adjustable\":\"1\",\"description\":\"(optional) The validation method for the form field. This value will determine which method is used to validate the value for a field.\"},\"properties9\":{\"name\":\"option\",\"example\":\"0|Option 1,1|Option 2,2|Option 1\",\"adjustable\":\"1\",\"mandatory\":\"1\",\"description\":\"(mandatory) set the options of this radio. Separate options with commas and use the pipe symbol to separate value from text.\"},\"properties10\":{\"name\":\"default\",\"example\":\"0\",\"adjustable\":\"1\",\"description\":\"(optional) is the default list item value.\"},\"properties11\":{\"name\":\"showon\",\"example\":\"\",\"adjustable\":\"1\",\"description\":\"(optional) Allows you to hide the field based on the value(s) of another field; for Joomla 3.2.4+ https:\\/\\/joomla.stackexchange.com\\/a\\/17682\\/2166\"},\"properties12\":{\"name\":\"onchange\",\"example\":\"\",\"adjustable\":\"1\",\"description\":\"(optional) HTML equivalent attribute (javascript use)\"}}', 'Provides a combobox list field, allows free text.', '', 1, 2, '', 13, '2c8b128f-7da2-4f55-b1d7-3613f902f590'),
(44, 'The imagelist form field type provides a drop down list of image files in a specified directory. Only files with .png, .gif, .jpg, .bmp, .ico extensions are listed. If the field has a saved value this is selected when the page is first loaded. If not, the default value (if any) is selected.\r\n\r\nBy default, the first item on the list is \'- Do not use -\' (which is translatable) and is given the value \'-1\' and this is followed by \'- Use default -\' (also translatable) given the value \'0\'.', 'Imagelist', '{\"properties0\":{\"name\":\"type\",\"example\":\"imagelist\",\"mandatory\":\"1\",\"description\":\"(mandatory) must be imagelist.\"},\"properties6\":{\"name\":\"name\",\"example\":\"myimagelist\",\"adjustable\":\"1\",\"mandatory\":\"1\",\"description\":\"(mandatory) is the unique name of the field.\"},\"properties5\":{\"name\":\"label\",\"example\":\"Select an image\",\"adjustable\":\"1\",\"mandatory\":\"1\",\"translatable\":\"1\",\"description\":\"(mandatory) (translatable) is the descriptive title of the field.\"},\"properties4\":{\"name\":\"directory\",\"example\":\"images\\/stories\",\"adjustable\":\"1\",\"description\":\"(optional) is the filesystem path to the directory containing the image files to be listed. If omitted the directory given by JPATH_ROOT is assumed.\"},\"properties3\":{\"name\":\"default\",\"example\":\"\",\"adjustable\":\"1\",\"description\":\"(optional) is the default image file name.\"},\"properties2\":{\"name\":\"description\",\"example\":\"\",\"adjustable\":\"1\",\"translatable\":\"1\",\"description\":\"(optional) (translatable) is text that will be shown as a tooltip when the user moves the mouse over the drop-down box.\"},\"properties1\":{\"name\":\"filter\",\"example\":\"\",\"adjustable\":\"1\",\"description\":\"(optional) is a regular expression string which is used to filter the list of image files selected for inclusion in the drop-down list. If omitted, all image files in the directory are included. The filter argument expression is applied before the exclude argument expression. For information on constructing regular expressions see Regular expressions in parameter arguments.\"},\"properties9\":{\"name\":\"exclude\",\"example\":\"\",\"adjustable\":\"1\",\"description\":\"(optional) is a regular expression string which is used to exclude image files from the list. The exclude argument expression is applied after the filter argument expression. For information on constructing regular expressions see Regular expressions in parameter arguments.\"},\"properties8\":{\"name\":\"stripext\",\"example\":\"\",\"adjustable\":\"1\",\"description\":\"(optional) is a Boolean argument. If true then file name extensions will be stripped from the image file names listed. Also note that the file name will be saved without the extension too.\"},\"properties7\":{\"name\":\"hide_none\",\"example\":\"\",\"adjustable\":\"1\",\"description\":\"(optional) is a Boolean argument. If true, the \'- Do not use -\' item is omitted from the drop-down list.\"},\"properties10\":{\"name\":\"hide_default\",\"example\":\"\",\"adjustable\":\"1\",\"description\":\"(optional) is a Boolean argument. If true, the \'- Use default -\' item is omitted from the drop-down list.\"},\"properties11\":{\"name\":\"showon\",\"example\":\"\",\"adjustable\":\"1\",\"description\":\"(optional) show this field on the bases of the value in another field. https:\\/\\/joomla.stackexchange.com\\/a\\/17682\\/2166\"}}', 'Provides a drop down list of image files from a specified directory.', '', 1, 1, '', 14, '72680e92-2859-49c6-ad92-c2329c52f9f8'),
(45, '', 'Modal Menu', '{\"properties0\":{\"name\":\"type\",\"example\":\"modal_menu\",\"mandatory\":\"1\",\"description\":\"(mandatory) must be modal_menu.\"},\"properties1\":{\"name\":\"name\",\"example\":\"base\",\"adjustable\":\"1\",\"mandatory\":\"1\",\"description\":\"(mandatory) is the unique name of the field.\"},\"properties2\":{\"name\":\"label\",\"example\":\"Base Item\",\"adjustable\":\"1\",\"mandatory\":\"1\",\"translatable\":\"1\",\"description\":\"(mandatory) (translatable) is the descriptive title of the field.\"},\"properties3\":{\"name\":\"option\",\"example\":\"Current\",\"adjustable\":\"1\",\"mandatory\":\"1\",\"translatable\":\"1\",\"description\":\"(mandatory) set the options of this radio. Separate options with commas and use the pipe symbol to separate value from text.\"},\"properties4\":{\"name\":\"select\",\"example\":\"true\",\"adjustable\":\"1\",\"mandatory\":\"1\",\"description\":\"(mandatory) show select options\"},\"properties5\":{\"name\":\"new\",\"example\":\"true\",\"adjustable\":\"1\",\"mandatory\":\"1\",\"description\":\"(mandatory)\"},\"properties6\":{\"name\":\"edit\",\"example\":\"true\",\"adjustable\":\"1\",\"mandatory\":\"1\",\"description\":\"(mandatory)\"},\"properties7\":{\"name\":\"description\",\"example\":\"Select a menu item to always be used as the base for the menu display. You must set the Start Level to the same level or higher than the level of the base item. This will cause the module to be displayed on all assigned pages. If Current is selected the active item is used as the base. This causes the module to only display when the parent menu item is active.\",\"adjustable\":\"1\",\"translatable\":\"1\",\"description\":\"(optional) (translatable) is text that will be shown as a tooltip when the user moves the mouse over the drop-down box.\"},\"properties8\":{\"name\":\"clear\",\"example\":\"true\",\"adjustable\":\"1\",\"mandatory\":\"1\",\"description\":\"(mandatory)\"},\"properties9\":{\"name\":\"disable\",\"example\":\"separator,alias,heading,url\",\"adjustable\":\"1\",\"description\":\"(optional)\"},\"properties10\":{\"name\":\"filter\",\"example\":\"integer\",\"adjustable\":\"1\",\"description\":\"(optional) is a regular expression string which is used to filter the list of image files selected for inclusion in the drop-down list. If omitted, all image files in the directory are included. The filter argument expression is applied before the exclude argument expression. For information on constructing regular expressions see Regular expressions in parameter arguments.\"},\"properties11\":{\"name\":\"showon\",\"example\":\"\",\"adjustable\":\"1\",\"description\":\"(optional) show this field on the bases of the value in another field. https:\\/\\/joomla.stackexchange.com\\/a\\/17682\\/2166\\r\\n\"}}', 'Modal Menu', '', 1, 6, '', 15, '715256a4-8cc2-4d66-9d08-31e58ca5b036'),
(46, 'The menu form field type provides a drop down list of the available menus from your Joomla! site. If the field has a saved value this is selected when the page is first loaded. If not, the default value (if any) is selected. ', 'Menu', '{\"properties0\":{\"name\":\"type\",\"example\":\"menu\",\"mandatory\":\"1\",\"description\":\"(mandatory) must be menu.\"},\"properties1\":{\"name\":\"name\",\"example\":\"menutype\",\"adjustable\":\"1\",\"mandatory\":\"1\",\"description\":\"(mandatory) is the unique name of the filed.\"},\"properties2\":{\"name\":\"label\",\"example\":\"Menu to Show\",\"adjustable\":\"1\",\"mandatory\":\"1\",\"translatable\":\"1\",\"description\":\"(mandatory) (translatable) is the descriptive title of the field.\"},\"properties3\":{\"name\":\"description\",\"example\":\"Choose which menu should be rendered with this instance of module.\",\"adjustable\":\"1\",\"translatable\":\"1\",\"description\":\"(optional) (translatable) tooltip for the form field.\"},\"properties4\":{\"name\":\"clientid\",\"example\":\"0\",\"adjustable\":\"1\",\"description\":\"\"},\"properties7\":{\"name\":\"default\",\"example\":\"\",\"adjustable\":\"1\",\"description\":\"(optional) is the default menu. Note that this is the name of the menu shown in the Type column on the Menu Manager screen and not the menu ID number.\"},\"properties5\":{\"name\":\"showon\",\"example\":\"\",\"adjustable\":\"1\",\"description\":\"(optional) Allows you to hide the field based on the value(s) of another field; for Joomla 3.2.4+ https:\\/\\/joomla.stackexchange.com\\/a\\/17682\\/2166\"},\"properties6\":{\"name\":\"onchange\",\"example\":\"\",\"adjustable\":\"1\",\"description\":\"(optional) HTML equivalent attribute (javascript use)\"}}', 'Menu Type', '', 1, 3, '', 16, '6349f152-8ef5-43bd-a89b-ce18f33ac5e5'),
(47, 'Dynamic Checkboxes', 'DynamicCheckboxes@', '{\"properties0\":{\"name\":\"type\",\"example\":\"change_this\",\"adjustable\":\"1\",\"mandatory\":\"1\",\"description\":\"(mandatory) can be anything, just not the same as any other default Joomla field type. You can also not use the \\\"_\\\" (underscore) or \\\"-\\\" (hyphen) in the type name, and no spaces.\"},\"properties1\":{\"name\":\"name\",\"example\":\"dynamic_checkboxes\",\"adjustable\":\"1\",\"mandatory\":\"1\",\"description\":\"(mandatory) is the unique name of the field.\"},\"properties2\":{\"name\":\"label\",\"example\":\"Dynamic Checkboxes\",\"adjustable\":\"1\",\"mandatory\":\"1\",\"translatable\":\"1\",\"description\":\"(mandatory) (translatable) is the descriptive title of the field.\"},\"properties3\":{\"name\":\"description\",\"example\":\"The checkbox linked to global subform of the same name\",\"adjustable\":\"1\",\"translatable\":\"1\",\"description\":\"(optional) (translatable) is text that will be shown as a tooltip when the user moves the mouse over the drop-down box.\"},\"properties4\":{\"name\":\"option\",\"example\":\"1|Default\",\"adjustable\":\"1\",\"mandatory\":\"1\",\"description\":\"(mandatory) set the options of this checkboxes. Separate options with commas and use the pipe symbol to separate value from text.\"},\"properties5\":{\"name\":\"default\",\"example\":\"1\",\"adjustable\":\"1\",\"description\":\"(optional) (not translatable) is the default value.\"},\"properties6\":{\"name\":\"required\",\"example\":\"true\",\"adjustable\":\"1\",\"description\":\"(optional) The field must be filled before submitting the form.\"},\"properties7\":{\"name\":\"showon\",\"example\":\"\",\"adjustable\":\"1\",\"description\":\"(optional) show this field on the bases of the value in another field. https:\\/\\/joomla.stackexchange.com\\/a\\/17682\\/2166\"},\"properties8\":{\"name\":\"onchange\",\"example\":\"\",\"adjustable\":\"1\",\"description\":\"(optional) HTML equivalent attribute (javascript use)\"},\"properties9\":{\"name\":\"extends\",\"example\":\"checkboxes\",\"mandatory\":\"1\",\"description\":\"Must be checkboxes\"},\"properties10\":{\"name\":\"type_phpHEADER_1\",\"example\":\"\\\\JFormHelper::loadFieldClass(\'checkboxes\');\\r\\nuse VDM\\\\Joomla\\\\Utilities\\\\Component\\\\Helper;\",\"adjustable\":\"1\",\"mandatory\":\"1\",\"description\":\"The Header USE options\"},\"properties11\":{\"name\":\"type_php_1\",\"example\":\"\\t\\/**\\r\\n\\t * Method to get the data to be passed to the layout for rendering.\\r\\n\\t *\\r\\n\\t * @return array\\r\\n\\t *\\r\\n\\t * @since 3.5\\r\\n\\t *\\/\\r\\n\\tprotected function getLayoutData()\\r\\n\\t{\\r\\n\\t\\t$data = parent::getLayoutData();\\r\\n\\r\\n\\t\\t\\/\\/ True if the field has \'value\' set. In other words, it has been stored, don\'t use the default values.\\r\\n\\t\\t$hasValue = (isset($this->value) && !empty($this->value));\\r\\n\\r\\n\\t\\t\\/\\/ If a value has been stored, use it. Otherwise, use the defaults.\\r\\n\\t\\t$checkedOptions = $hasValue ? $this->value : $this->checkedOptions;\\r\\n\\r\\n\\t\\t\\/\\/ get the form options\\r\\n\\t\\t$options = $this->getOptions();\\r\\n\\r\\n\\t\\t\\/\\/ get the component params\\r\\n\\t\\t$params = Helper::getParams();\\r\\n\\t\\t$subform = $params->get($this->fieldname);\\r\\n\\r\\n\\t\\t\\/\\/ add the paths found in global settings\\r\\n\\t\\tif (is_array($subform) && $subform !== [])\\r\\n\\t\\t{\\r\\n\\t\\t\\tforeach ($subform as $value)\\r\\n\\t\\t\\t{\\r\\n\\t\\t\\t\\tif (isset($value->path) && strlen($value->path) > 3)\\r\\n\\t\\t\\t\\t{\\r\\n\\t\\t\\t\\t\\t$tmp = new \\\\stdClass;\\r\\n\\t\\t\\t\\t\\t$tmp->value = $value->set_me;\\r\\n\\t\\t\\t\\t\\t$tmp->text = $value->set_me;\\r\\n\\t\\t\\t\\t\\t$tmp->checked = false;\\r\\n\\r\\n\\t\\t\\t\\t\\t$options[] = $tmp;\\r\\n\\t\\t\\t\\t}\\r\\n\\t\\t\\t}\\r\\n\\t\\t}\\r\\n\\r\\n\\t\\t$extraData = array(\\r\\n\\t\\t\\t\'checkedOptions\' => is_array($checkedOptions) ? $checkedOptions : explode(\',\', (string) $checkedOptions),\\r\\n\\t\\t\\t\'hasValue\' => $hasValue,\\r\\n\\t\\t\\t\'options\' => $options\\r\\n\\t\\t);\\r\\n\\r\\n\\t\\treturn array_merge($data, $extraData);\\r\\n\\t}\",\"adjustable\":\"1\",\"mandatory\":\"1\",\"description\":\"The php for the getLayoutData method.\"}}', 'Super Power Repository Paths', '', 1, 13, '', 12, '7ed21e79-cbc5-48e3-9ed0-ca72b0f2f1a1');
--
-- Dumping data for table `#__componentbuilder_language`
--
INSERT INTO `#__componentbuilder_language` (`id`, `langtag`, `name`, `params`, `published`, `created`, `modified`, `version`, `hits`, `ordering`) VALUES
(1, 'af-ZA', 'Afrikaans', '', 1, '2018-04-19 13:43:44', '2023-12-26 07:40:20', 5, '', 1),
(2, 'sq-AL', 'Albanian', '', 2, '2018-04-19 13:43:44', '2023-12-26 07:40:20', 5, '', 1),
(3, 'ar-AA', 'Arabic Unitag', '', 2, '2018-04-19 13:43:44', '2023-12-26 07:40:20', 5, '', 1),
(4, 'hy-AM', 'Armenian', '', 2, '2018-04-19 13:43:44', '2023-12-26 07:40:20', 5, '', 1),
(5, 'id-ID', 'Indonesian, Bahasa Indonesia', '', 2, '2018-04-19 13:43:44', '2023-12-26 07:40:20', 5, '', 1),
(6, 'eu-ES', 'Basque', '', 2, '2018-04-19 13:43:44', '2023-12-26 07:40:20', 5, '', 1),
(7, 'be-BY', 'Belarusian', '', 2, '2018-04-19 13:43:44', '2023-12-26 07:40:20', 5, '', 1),
(8, 'bn-BD', 'Bengali, Bangladesh', '', 2, '2018-04-19 13:43:44', '2023-12-26 07:40:20', 5, '', 1),
(9, 'bs-BA', 'Bosnian', '', 2, '2018-04-19 13:43:44', '2023-12-26 07:40:20', 5, '', 1),
(10, 'bg-BG', 'Bulgarian', '', 2, '2018-04-19 13:43:44', '2023-12-26 07:40:20', 5, '', 1),
(11, 'ca-ES', 'Catalan', '', 2, '2018-04-19 13:43:44', '2023-12-26 07:40:20', 5, '', 1),
(12, 'zh-CN', 'Chinese, Simplified', '', 2, '2018-04-19 13:43:44', '2023-12-26 07:40:20', 5, '', 1),
(13, 'zh-TW', 'Chinese, Traditional', '', 2, '2018-04-19 13:43:44', '2023-12-26 07:40:20', 5, '', 1),
(14, 'hr-HR', 'Croatian', '', 2, '2018-04-19 13:43:44', '2023-12-26 07:40:20', 5, '', 1),
(15, 'cs-CZ', 'Czech', '', 2, '2018-04-19 13:43:44', '2023-12-26 07:40:20', 5, '', 1),
(16, 'da-DK', 'Danish', '', 2, '2018-04-19 13:43:44', '2023-12-26 07:40:20', 5, '', 1),
(17, 'prs-AF', 'Dari Persian', '', 2, '2018-04-19 13:43:44', '2023-12-26 07:40:20', 5, '', 1),
(18, 'nl-NL', 'Dutch', '', 2, '2018-04-19 13:43:44', '2023-12-26 07:40:20', 5, '', 1),
(19, 'dz-BT', 'Dzongkha', '', 2, '2018-04-19 13:43:44', '2023-12-26 07:40:20', 5, '', 1),
(20, 'en-AU', 'English, Australia', '', 2, '2018-04-19 13:43:44', '2023-12-26 07:40:20', 5, '', 1),
(21, 'en-CA', 'English, Canada', '', 2, '2018-04-19 13:43:44', '2023-12-26 07:40:20', 5, '', 1),
(22, 'en-GB', 'English GB', '', 2, '2018-04-19 13:43:44', '2023-12-26 07:40:20', 5, '', 1),
(23, 'en-NZ', 'English, New Zealand', '', 2, '2018-04-19 13:43:44', '2023-12-26 07:40:20', 5, '', 1),
(24, 'en-US', 'English, USA', '', 2, '2018-04-19 13:43:44', '2023-12-26 07:40:20', 5, '', 1),
(25, 'eo-XX', 'Esperanto', '', 2, '2018-04-19 13:43:44', '2023-12-26 07:40:20', 5, '', 1),
(26, 'et-EE', 'Estonian', '', 2, '2018-04-19 13:43:44', '2023-12-26 07:40:20', 5, '', 1),
(27, 'fi-FI', 'Finnish', '', 2, '2018-04-19 13:43:44', '2023-12-26 07:40:20', 5, '', 1),
(28, 'nl-BE', 'Flemish', '', 2, '2018-04-19 13:43:44', '2023-12-26 07:40:20', 5, '', 1),
(29, 'fr-FR', 'French', '', 1, '2018-04-19 13:43:44', '2023-12-26 07:40:20', 5, '', 1),
(30, 'fr-CA', 'French, Canada', '', 2, '2018-04-19 13:43:44', '2023-12-26 07:40:20', 5, '', 1),
(31, 'gl-ES', 'Galician', '', 2, '2018-04-19 13:43:44', '2023-12-26 07:40:20', 5, '', 1),
(32, 'ka-GE', 'Georgian', '', 2, '2018-04-19 13:43:44', '2023-12-26 07:40:20', 5, '', 1),
(33, 'de-AT', 'German, Austria', '', 2, '2018-04-19 13:43:44', '2023-12-26 07:40:20', 5, '', 1),
(34, 'de-CH', 'German, Switzerland', '', 2, '2018-04-19 13:43:44', '2023-12-26 07:40:20', 5, '', 1),
(35, 'de-DE', 'German', '', 1, '2018-04-19 13:43:44', '2023-12-26 07:40:20', 5, '', 1),
(36, 'de-LI', 'German, Liechtenstein', '', 2, '2018-04-19 13:43:44', '2023-12-26 07:40:20', 5, '', 1),
(37, 'de-LU', 'German, Luxembourg', '', 2, '2018-04-19 13:43:44', '2023-12-26 07:40:20', 5, '', 1),
(38, 'el-GR', 'Greek', '', 2, '2018-04-19 13:43:44', '2023-12-26 07:40:20', 5, '', 1),
(39, 'he-IL', 'Hebrew', '', 2, '2018-04-19 13:43:44', '2023-12-26 07:40:20', 5, '', 1),
(40, 'hi-IN', 'Hindi, India', '', 2, '2018-04-19 13:43:44', '2023-12-26 07:40:20', 5, '', 1),
(41, 'hu-HU', 'Hungarian', '', 2, '2018-04-19 13:43:44', '2023-12-26 07:40:20', 5, '', 1),
(42, 'ga-IE', 'Irish', '', 2, '2018-04-19 13:43:44', '2023-12-26 07:40:20', 5, '', 1),
(43, 'it-IT', 'Italian', '', 2, '2018-04-19 13:43:44', '2023-12-26 07:40:20', 5, '', 1),
(44, 'ja-JP', 'Japanese', '', 2, '2018-04-19 13:43:44', '2023-12-26 07:40:20', 5, '', 1),
(45, 'km-KH', 'Khmer', '', 2, '2018-04-19 13:43:44', '2023-12-26 07:40:20', 5, '', 1),
(46, 'ko-KR', 'Korean', '', 2, '2018-04-19 13:43:44', '2023-12-26 07:40:20', 5, '', 1),
(47, 'lv-LV', 'Latvian', '', 2, '2018-04-19 13:43:44', '2023-12-26 07:40:20', 5, '', 1),
(48, 'mk-MK', 'Macedonian', '', 2, '2018-04-19 13:43:44', '2023-12-26 07:40:20', 5, '', 1),
(49, 'ms-MY', 'Malay', '', 2, '2018-04-19 13:43:44', '2023-12-26 07:40:20', 5, '', 1),
(50, 'srp-ME', 'Montenegrin', '', 2, '2018-04-19 13:43:44', '2023-12-26 07:40:20', 5, '', 1),
(51, 'nb-NO', 'Norwegian Bokmål', '', 2, '2018-04-19 13:43:44', '2023-12-26 07:40:20', 5, '', 1),
(52, 'nn-NO', 'Norwegian Nynorsk', '', 2, '2018-04-19 13:43:44', '2023-12-26 07:40:20', 5, '', 1),
(53, 'fa-IR', 'Persian Farsi', '', 2, '2018-04-19 13:43:44', '2023-12-26 07:40:20', 5, '', 1),
(54, 'pl-PL', 'Polish', '', 2, '2018-04-19 13:43:44', '2023-12-26 07:40:20', 5, '', 1),
(55, 'pt-PT', 'Portuguese, Portugal', '', 1, '2018-04-19 13:43:44', '2023-12-26 07:40:20', 5, '', 1),
(56, 'pt-BR', 'Portuguese, Brazil', '', 2, '2018-04-19 13:43:44', '2023-12-26 07:40:20', 5, '', 1),
(57, 'ro-RO', 'Romanian', '', 2, '2018-04-19 13:43:44', '2023-12-26 07:40:20', 5, '', 1),
(58, 'ru-RU', 'Russian', '', 1, '2018-04-19 13:43:44', '2023-12-26 07:40:20', 6, '', 1),
(59, 'sr-RS', 'Serbian, Cyrillic', '', 2, '2018-04-19 13:43:44', '2023-12-26 07:40:20', 5, '', 1),
(60, 'sr-YU', 'Serbian, Latin', '', 2, '2018-04-19 13:43:44', '2023-12-26 07:40:20', 5, '', 1),
(61, 'si-LK', 'Sinhala', '', 2, '2018-04-19 13:43:44', '2023-12-26 07:40:20', 5, '', 1),
(62, 'sk-SK', 'Slovak', '', 2, '2018-04-19 13:43:44', '2023-12-26 07:40:20', 5, '', 1),
(63, 'sl-SI', 'Slovenian', '', 2, '2018-04-19 13:43:44', '2023-12-26 07:40:20', 5, '', 1),
(64, 'es-ES', 'Spanish', '', 2, '2018-04-19 13:43:44', '2023-12-26 07:40:20', 5, '', 1),
(65, 'es-CO', 'Spanish, Colombia', '', 2, '2018-04-19 13:43:44', '2023-12-26 07:40:20', 5, '', 1),
(66, 'sw-KE', 'Swahili', '', 2, '2018-04-19 13:43:44', '2023-12-26 07:40:20', 5, '', 1),
(67, 'sv-SE', 'Swedish', '', 2, '2018-04-19 13:43:44', '2023-12-26 07:40:20', 5, '', 1),
(68, 'sy-IQ', 'Syriac, East', '', 2, '2018-04-19 13:43:44', '2023-12-26 07:40:20', 5, '', 1),
(69, 'ta-IN', 'Tamil, India', '', 2, '2018-04-19 13:43:44', '2023-12-26 07:40:20', 5, '', 1),
(70, 'th-TH', 'Thai', '', 2, '2018-04-19 13:43:44', '2023-12-26 07:40:20', 5, '', 1),
(71, 'tr-TR', 'Turkish', '', 2, '2018-04-19 13:43:44', '2023-12-26 07:40:20', 5, '', 1),
(72, 'tk-TM', 'Turkmen', '', 2, '2018-04-19 13:43:44', '2023-12-26 07:40:20', 5, '', 1),
(73, 'uk-UA', 'Ukrainian', '', 2, '2018-04-19 13:43:44', '2023-12-26 07:40:20', 5, '', 1),
(74, 'ug-CN', 'Uyghur', '', 2, '2018-04-19 13:43:44', '2023-12-26 07:40:20', 5, '', 1),
(75, 'vi-VN', 'Vietnamese', '', 2, '2018-04-19 13:43:44', '2023-12-26 07:40:20', 5, '', 1),
(76, 'cy-GB', 'Welsh', '', 2, '2018-04-19 13:43:44', '2023-12-26 07:40:20', 5, '', 1),
(77, 'lt-LT', 'Lithuanian', '', 2, '2018-09-14 10:39:11', '2023-12-26 07:40:20', 4, '', 2),
(78, 'kk-KZ', 'Kazakh', '', 2, '2020-03-19 13:41:00', '2023-12-26 07:40:20', 3, '', 3);
--
-- Dumping data for table `#__componentbuilder_help_document`
--
INSERT INTO `#__componentbuilder_help_document` (`id`, `admin_view`, `alias`, `article`, `content`, `groups`, `location`, `site_view`, `target`, `title`, `type`, `url`, `params`, `published`, `version`, `hits`, `ordering`) VALUES
(1, 'components', '2016-03-04-02-31-55', '', '<p>Here as in all Joomla backend list views you can perform all the common tasks, and more.</p>\r\n<h3>Create</h3>\r\n<p>You can create a component by clicking on the\r\n <button>New</button>button in the toolbar, this will open a window where you can add all the needed values to create a new component.</p>\r\n<h3>Edit</h3>\r\n<p>You can edit components in two ways.</p>\r\n<ul>\r\n <li>You can click on the box next to the component name and then click on the\r\n <button>Edit</button>button in the toolbar; this will open the component and if you have permission it will give you access to edit the values of a component.</li>\r\n <li>You can simply click on the component name; this will open the component and if you have permission it will give you access to edit the values of a component.</li>\r\n</ul>\r\n<h3>Edit State</h3>\r\n<p>You can publish, unpublish, archive, and trash any component by clicking in the boxes next the component names and then click on the corresponding button of the task you want to perform. This will change the state of all the components youve selected.</p>\r\n<p>If you have trashed a component it is in the trash and can still be found in the database. To view items that are still in the trash change the “- Select Status –“ filter to Trashed. Here you will see the list of trashed components. To completely remove these components from your system do the following: first select all the components you want to permanently delete by clicking in the boxes next to the component names and then click on the\r\n <button>Empty trash</button>button in the toolbar. This will permanently delete the components from the database. On the other hand if you would like to change the status of the component to publish, unpublish or archive, click in the boxes next to the component names and then click on the corresponding button of the task you want to perform. This will change the state of all the components youve selected.</p>\r\n<h3>Check-in</h3>\r\n<p>When another user on your Joomla website opens a component the system checks the component out to that user. A little lock will show up next to the component name. When you hover over the lock it will show to you who checked it out and when.</p>\r\n<p>Component builder adds a nice feature to all its components that is called the auto check-in feature. This feature has a time setting that you can update in the component\'s global settings.</p>\r\n<p>If this feature has not yet checked-in any of the components that you as the administrator wants to open you can force a check-in by clicking in the boxes next to the component names and then click on the\r\n <button>Check-in</button>button in the toolbar, or simply click on the little lock. This will then check in the component, which will mean that it removes the component from the user who checked it out before you. Remember that they will lose all changes they have made if they have not yet clicked save. This can cause very unpleasant circumstances, so only use this feature if you are absolutely sure you know what you are doing.</p>\r\n<h3>Batch Feature</h3>\r\n<p>You can use the Batch feature to update or copy many components at once by clicking in the boxes next the component names and then click on the\r\n <button>Batch</button>button in the toolbar. This will open a popup window with multiple dropdown options of fields you can change with the batch feature. You can then select update or copy depending of your desired task and finally click on the\r\n <button>Process</button>button. Once completed this batch feature will have either copied or updated all the components according to the task you selected.</p>\r\n<h3>Export & Import</h3>\r\n<p>The export and import feature is some of the most exciting features to the list view of components. With them you can update and create many components at once.</p>\r\n<h3>Export</h3>\r\n<p>The export option only exports the components selected. So to export all components you must change the limited number of components that are being loaded to \"All\". The box that limits the number of components being loaded is found on the right top corner of the page. Simply change it from the number to “All” and the page should now reload with all the component records from the database, excluding those in trash. If you want those also to load you must change the “- Select Status –“ filter to “All” as well. Now you can click on the tick box at the very top of the table. This should select all the components. Next click on the\r\n <button>Export Date</button>button in the toolbar. This should open a download window and you can select to save the excel file to your computer.</p>\r\n<h3>Import</h3>\r\n<p>The import option can be used to create components or update existing components. The way to update existing components is to use the same id as the component you want to update. Best way to do this is to first export the components you want to update and then make the changes you have in mind in the excel document without removing or changing the id. To instead create new components via an import, simple leave the id field empty.</p>\r\n<p>So once you have your excel document ready you will again open the list view of components and click on the\r\n <button>Import Data</button>button in the toolbar. This will open a page where you can select the excel file on your computer as an upload, or on the server in a directory, or at any direct url to the excel document.</p>\r\n<p>Once you have the file selected you can click on the\r\n <button>Upload File</button> or\r\n <button>Get File</button>button depending on the method you have chosen. When file has successfully been uploaded or retrieved a new window will open where you can map the excel document headers of each column to the field names used in the database. Usually if youre using an exported version of the excel document this mapping will be done for you, yet if you have changed any of the header names you may need to set these field relationships manually. There is an option to ignore a column in the case when you want to leave a field totally unchanged.</p>\r\n<p>When the field to column relationship has correctly been mapped you can click on the\r\n <button>continue</button>button at the bottom of the page. This should return you to the list view of components with a success message.</p>\r\n<h3>Debug</h3>\r\n<p>In the event that any of the above features did not work as expected, please read the error message carefully since it should usually give you enough information to why your request could not be processed. Subsequently if you are still not able to perform the request after making all needed corrections according to the error messages, then please contact your system administrator.</p>', '\"\"', 1, '', 2, 'Welcome to the List view of Components', 2, '', '', 1, 12, '', 1),
(2, 'admin_views', 'welcome-to-the-list-view-of-admin-views', '', '<p>Here as in all Joomla backend list views you can perform all the common tasks, and more.</p> <h3>Create</h3> <p>You can create an admin view by clicking on the <button>New</button> button in the toolbar, this will open a window where you can add all the needed values to create a new admin view.</p> <h3>Edit</h3> <p>You can edit admin views in two ways.</p> <ul> <li>You can click on the box next to the admin view name and then click on the <button>Edit</button> button in the toolbar; this will open the admin view and if you have permission it will give you access to edit the values of an admin view.</li> <li>You can simply click on the admin view name; this will open the admin view and if you have permission it will give you access to edit the values of an admin view.</li> </ul> <h3>Edit State</h3> <p>You can publish, unpublish, archive, and trash any admin view by clicking in the boxes next the admin view names and then click on the corresponding button of the task you want to perform. This will change the state of all the admin views youve selected.</p> <p>If you have trashed an admin view it is in the trash and can still be found in the database. To view items that are still in the trash change the “- Select Status –“ filter to Trashed. Here you will see the list of trashed admin views. To completely remove these admin views from your system do the following: first select all the admin views you want to permanently delete by clicking in the boxes next to the admin view names and then click on the <button>Empty trash</button> button in the toolbar. This will permanently delete the admin views from the database. On the other hand if you would like to change the status of the admin view to publish, unpublish or archive, click in the boxes next to the admin view names and then click on the corresponding button of the task you want to perform. This will change the state of all the admin views youve selected.</p> <h3>Check-in</h3> <p>When another user on your Joomla website opens an admin view the system checks the admin view out to that user. A little lock will show up next to the admin view name. When you hover over the lock it will show to you who checked it out and when.</p> <p>Component builder adds a nice feature to all its components that is called the auto check-in feature. This feature has a time setting that you can update in the component\'s global settings.</p> <p>If this feature has not yet checked-in any of the admin views that you as the administrator wants to open you can force a check-in by clicking in the boxes next to the admin view names and then click on the <button>Check-in</button> button in the toolbar, or simply click on the little lock. This will then check in the admin view, which will mean that it removes the admin view from the user who checked it out before you. Remember that they will lose all changes they have made if they have not yet clicked save. This can cause very unpleasant circumstances, so only use this feature if you are absolutely sure you know what you are doing.</p> <h3>Batch Feature</h3> <p>You can use the Batch feature to update or copy many admin views at once by clicking in the boxes next the admin view names and then click on the <button>Batch</button> button in the toolbar. This will open a popup window with multiple dropdown options of fields you can change with the batch feature. You can then select update or copy depending of your desired task and finally click on the <button>Process</button> button. Once completed this batch feature will have either copied or updated all the admin views according to the task you selected.</p> <h3>Export & Import</h3> <p>The export and import feature is some of the most exciting features to the list view of admin views. With them you can update and create many admin views at once.</p> <h3>Export</h3> <p>The export option only exports the admin views selected. So to export all admin views you must change the limited number of admin views that are being loaded to \"All\". The box that limits the number of admin views being loaded is found on the right top corner of the page. Simply change it from the number to “All” and the page should now reload with all the admin view records from the database, excluding those in trash. If you want those also to load you must change the “- Select Status –“ filter to “All” as well. Now you can click on the tick box at the very top of the table. This should select all the admin views. Next click on the <button>Export Date</button> button in the toolbar. This should open a download window and you can select to save the excel file to your computer.</p> <h3>Import</h3> <p>The import option can be used to create admin views or update existing admin views. The way to update existing admin views is to use the same id as the admin view you want to update. Best way to do this is to first export the admin views you want to update and then make the changes you have in mind in the excel document without removing or changing the id. To instead create new admin views via an import, simple leave the id field empty.</p> <p>So once you have your excel document ready you will again open the list view of admin views and click on the <button>Import Data</button> button in the toolbar. This will open a page where you can select the excel file on your computer as an upload, or on the server in a directory, or at any direct url to the excel document.</p> <p>Once you have the file selected you can click on the <button>Upload File</button> or <button>Get File</button> button depending on the method you have chosen. When file has successfully been uploaded or retrieved a new window will open where you can map the excel document headers of each column to the field names used in the database. Usually if youre using an exported version of the excel document this mapping will be done for you, yet if you have changed any of the header names you may need to set these field relationships manually. There is an option to ignore a column in the case when you want to leave a field totally unchanged.</p> <p>When the field to column relationship has correctly been mapped you can click on the <button>continue</button> button at the bottom of the page. This should return you to the list view of admin views with a success message.</p> <h3>Debug</h3> <p>In the event that any of the above features did not work as expected, please read the error message carefully since it should usually give you enough information to why your request could not be processed. Subsequently if you are still not able to perform the request after making all needed corrections according to the error messages, then please contact your system administrator.</p>', '\"\"', 1, '', 2, 'Welcome to the List view of Admin Views', 2, '', '', 1, 5, '', 2),
(3, 'custom_admin_views', 'welcome-to-the-list-view-of-custom-admin-views', '', '<p>Here as in all Joomla backend list views you can perform all the common tasks, and more.</p> <h3>Create</h3> <p>You can create a custom admin view by clicking on the <button>New</button> button in the toolbar, this will open a window where you can add all the needed values to create a new custom admin view.</p> <h3>Edit</h3> <p>You can edit custom admin views in two ways.</p> <ul> <li>You can click on the box next to the custom admin view name and then click on the <button>Edit</button> button in the toolbar; this will open the custom admin view and if you have permission it will give you access to edit the values of a custom admin view.</li> <li>You can simply click on the custom admin view name; this will open the custom admin view and if you have permission it will give you access to edit the values of a custom admin view.</li> </ul> <h3>Edit State</h3> <p>You can publish, unpublish, archive, and trash any custom admin view by clicking in the boxes next the custom admin view names and then click on the corresponding button of the task you want to perform. This will change the state of all the custom admin views youve selected.</p> <p>If you have trashed a custom admin view it is in the trash and can still be found in the database. To view items that are still in the trash change the “- Select Status –“ filter to Trashed. Here you will see the list of trashed custom admin views. To completely remove these custom admin views from your system do the following: first select all the custom admin views you want to permanently delete by clicking in the boxes next to the custom admin view names and then click on the <button>Empty trash</button> button in the toolbar. This will permanently delete the custom admin views from the database. On the other hand if you would like to change the status of the custom admin view to publish, unpublish or archive, click in the boxes next to the custom admin view names and then click on the corresponding button of the task you want to perform. This will change the state of all the custom admin views youve selected.</p> <h3>Check-in</h3> <p>When another user on your Joomla website opens a custom admin view the system checks the custom admin view out to that user. A little lock will show up next to the custom admin view name. When you hover over the lock it will show to you who checked it out and when.</p> <p>Component builder adds a nice feature to all its components that is called the auto check-in feature. This feature has a time setting that you can update in the component\'s global settings.</p> <p>If this feature has not yet checked-in any of the custom admin views that you as the administrator wants to open you can force a check-in by clicking in the boxes next to the custom admin view names and then click on the <button>Check-in</button> button in the toolbar, or simply click on the little lock. This will then check in the custom admin view, which will mean that it removes the custom admin view from the user who checked it out before you. Remember that they will lose all changes they have made if they have not yet clicked save. This can cause very unpleasant circumstances, so only use this feature if you are absolutely sure you know what you are doing.</p> <h3>Batch Feature</h3> <p>You can use the Batch feature to update or copy many custom admin views at once by clicking in the boxes next the custom admin view names and then click on the <button>Batch</button> button in the toolbar. This will open a popup window with multiple dropdown options of fields you can change with the batch feature. You can then select update or copy depending of your desired task and finally click on the <button>Process</button> button. Once completed this batch feature will have either copied or updated all the custom admin views according to the task you selected.</p> <h3>Export & Import</h3> <p>The export and import feature is some of the most exciting features to the list view of custom admin views. With them you can update and create many custom admin views at once.</p> <h3>Export</h3> <p>The export option only exports the custom admin views selected. So to export all custom admin views you must change the limited number of custom admin views that are being loaded to \"All\". The box that limits the number of custom admin views being loaded is found on the right top corner of the page. Simply change it from the number to “All” and the page should now reload with all the custom admin view records from the database, excluding those in trash. If you want those also to load you must change the “- Select Status –“ filter to “All” as well. Now you can click on the tick box at the very top of the table. This should select all the custom admin views. Next click on the <button>Export Date</button> button in the toolbar. This should open a download window and you can select to save the excel file to your computer.</p> <h3>Import</h3> <p>The import option can be used to create custom admin views or update existing custom admin views. The way to update existing custom admin views is to use the same id as the custom admin view you want to update. Best way to do this is to first export the custom admin views you want to update and then make the changes you have in mind in the excel document without removing or changing the id. To instead create new custom admin views via an import, simple leave the id field empty.</p> <p>So once you have your excel document ready you will again open the list view of custom admin views and click on the <button>Import Data</button> button in the toolbar. This will open a page where you can select the excel file on your computer as an upload, or on the server in a directory, or at any direct url to the excel document.</p> <p>Once you have the file selected you can click on the <button>Upload File</button> or <button>Get File</button> button depending on the method you have chosen. When file has successfully been uploaded or retrieved a new window will open where you can map the excel document headers of each column to the field names used in the database. Usually if youre using an exported version of the excel document this mapping will be done for you, yet if you have changed any of the header names you may need to set these field relationships manually. There is an option to ignore a column in the case when you want to leave a field totally unchanged.</p> <p>When the field to column relationship has correctly been mapped you can click on the <button>continue</button> button at the bottom of the page. This should return you to the list view of custom admin views with a success message.</p> <h3>Debug</h3> <p>In the event that any of the above features did not work as expected, please read the error message carefully since it should usually give you enough information to why your request could not be processed. Subsequently if you are still not able to perform the request after making all needed corrections according to the error messages, then please contact your system administrator.</p>', '\"\"', 1, '', 2, 'Welcome to the List view of Custom Admin Views', 2, '', '', 1, 4, '', 3),
(4, 'site_views', 'welcome-to-the-list-view-of-site-views', '', '<p>Here as in all Joomla backend list views you can perform all the common tasks, and more.</p> <h3>Create</h3> <p>You can create a site view by clicking on the <button>New</button> button in the toolbar, this will open a window where you can add all the needed values to create a new site view.</p> <h3>Edit</h3> <p>You can edit site views in two ways.</p> <ul> <li>You can click on the box next to the site view name and then click on the <button>Edit</button> button in the toolbar; this will open the site view and if you have permission it will give you access to edit the values of a site view.</li> <li>You can simply click on the site view name; this will open the site view and if you have permission it will give you access to edit the values of a site view.</li> </ul> <h3>Edit State</h3> <p>You can publish, unpublish, archive, and trash any site view by clicking in the boxes next the site view names and then click on the corresponding button of the task you want to perform. This will change the state of all the site views youve selected.</p> <p>If you have trashed a site view it is in the trash and can still be found in the database. To view items that are still in the trash change the “- Select Status –“ filter to Trashed. Here you will see the list of trashed site views. To completely remove these site views from your system do the following: first select all the site views you want to permanently delete by clicking in the boxes next to the site view names and then click on the <button>Empty trash</button> button in the toolbar. This will permanently delete the site views from the database. On the other hand if you would like to change the status of the site view to publish, unpublish or archive, click in the boxes next to the site view names and then click on the corresponding button of the task you want to perform. This will change the state of all the site views youve selected.</p> <h3>Check-in</h3> <p>When another user on your Joomla website opens a site view the system checks the site view out to that user. A little lock will show up next to the site view name. When you hover over the lock it will show to you who checked it out and when.</p> <p>Component builder adds a nice feature to all its components that is called the auto check-in feature. This feature has a time setting that you can update in the component\'s global settings.</p> <p>If this feature has not yet checked-in any of the site views that you as the administrator wants to open you can force a check-in by clicking in the boxes next to the site view names and then click on the <button>Check-in</button> button in the toolbar, or simply click on the little lock. This will then check in the site view, which will mean that it removes the site view from the user who checked it out before you. Remember that they will lose all changes they have made if they have not yet clicked save. This can cause very unpleasant circumstances, so only use this feature if you are absolutely sure you know what you are doing.</p> <h3>Batch Feature</h3> <p>You can use the Batch feature to update or copy many site views at once by clicking in the boxes next the site view names and then click on the <button>Batch</button> button in the toolbar. This will open a popup window with multiple dropdown options of fields you can change with the batch feature. You can then select update or copy depending of your desired task and finally click on the <button>Process</button> button. Once completed this batch feature will have either copied or updated all the site views according to the task you selected.</p> <h3>Export & Import</h3> <p>The export and import feature is some of the most exciting features to the list view of site views. With them you can update and create many site views at once.</p> <h3>Export</h3> <p>The export option only exports the site views selected. So to export all site views you must change the limited number of site views that are being loaded to \"All\". The box that limits the number of site views being loaded is found on the right top corner of the page. Simply change it from the number to “All” and the page should now reload with all the site view records from the database, excluding those in trash. If you want those also to load you must change the “- Select Status –“ filter to “All” as well. Now you can click on the tick box at the very top of the table. This should select all the site views. Next click on the <button>Export Date</button> button in the toolbar. This should open a download window and you can select to save the excel file to your computer.</p> <h3>Import</h3> <p>The import option can be used to create site views or update existing site views. The way to update existing site views is to use the same id as the site view you want to update. Best way to do this is to first export the site views you want to update and then make the changes you have in mind in the excel document without removing or changing the id. To instead create new site views via an import, simple leave the id field empty.</p> <p>So once you have your excel document ready you will again open the list view of site views and click on the <button>Import Data</button> button in the toolbar. This will open a page where you can select the excel file on your computer as an upload, or on the server in a directory, or at any direct url to the excel document.</p> <p>Once you have the file selected you can click on the <button>Upload File</button> or <button>Get File</button> button depending on the method you have chosen. When file has successfully been uploaded or retrieved a new window will open where you can map the excel document headers of each column to the field names used in the database. Usually if youre using an exported version of the excel document this mapping will be done for you, yet if you have changed any of the header names you may need to set these field relationships manually. There is an option to ignore a column in the case when you want to leave a field totally unchanged.</p> <p>When the field to column relationship has correctly been mapped you can click on the <button>continue</button> button at the bottom of the page. This should return you to the list view of site views with a success message.</p> <h3>Debug</h3> <p>In the event that any of the above features did not work as expected, please read the error message carefully since it should usually give you enough information to why your request could not be processed. Subsequently if you are still not able to perform the request after making all needed corrections according to the error messages, then please contact your system administrator.</p>', '\"\"', 1, '', 2, 'Welcome to the List view of Site Views', 2, '', '', 1, 3, '', 4),
(5, 'templates', 'welcome-to-the-list-view-of-templates', '', '<p>Here as in all Joomla backend list views you can perform all the common tasks, and more.</p> <h3>Create</h3> <p>You can create a template by clicking on the <button>New</button> button in the toolbar, this will open a window where you can add all the needed values to create a new template.</p> <h3>Edit</h3> <p>You can edit templates in two ways.</p> <ul> <li>You can click on the box next to the template name and then click on the <button>Edit</button> button in the toolbar; this will open the template and if you have permission it will give you access to edit the values of a template.</li> <li>You can simply click on the template name; this will open the template and if you have permission it will give you access to edit the values of a template.</li> </ul> <h3>Edit State</h3> <p>You can publish, unpublish, archive, and trash any template by clicking in the boxes next the template names and then click on the corresponding button of the task you want to perform. This will change the state of all the templates youve selected.</p> <p>If you have trashed a template it is in the trash and can still be found in the database. To view items that are still in the trash change the “- Select Status –“ filter to Trashed. Here you will see the list of trashed templates. To completely remove these templates from your system do the following: first select all the templates you want to permanently delete by clicking in the boxes next to the template names and then click on the <button>Empty trash</button> button in the toolbar. This will permanently delete the templates from the database. On the other hand if you would like to change the status of the template to publish, unpublish or archive, click in the boxes next to the template names and then click on the corresponding button of the task you want to perform. This will change the state of all the templates youve selected.</p> <h3>Check-in</h3> <p>When another user on your Joomla website opens a template the system checks the template out to that user. A little lock will show up next to the template name. When you hover over the lock it will show to you who checked it out and when.</p> <p>Component builder adds a nice feature to all its components that is called the auto check-in feature. This feature has a time setting that you can update in the component\'s global settings.</p> <p>If this feature has not yet checked-in any of the templates that you as the administrator wants to open you can force a check-in by clicking in the boxes next to the template names and then click on the <button>Check-in</button> button in the toolbar, or simply click on the little lock. This will then check in the template, which will mean that it removes the template from the user who checked it out before you. Remember that they will lose all changes they have made if they have not yet clicked save. This can cause very unpleasant circumstances, so only use this feature if you are absolutely sure you know what you are doing.</p> <h3>Batch Feature</h3> <p>You can use the Batch feature to update or copy many templates at once by clicking in the boxes next the template names and then click on the <button>Batch</button> button in the toolbar. This will open a popup window with multiple dropdown options of fields you can change with the batch feature. You can then select update or copy depending of your desired task and finally click on the <button>Process</button> button. Once completed this batch feature will have either copied or updated all the templates according to the task you selected.</p> <h3>Export & Import</h3> <p>The export and import feature is some of the most exciting features to the list view of templates. With them you can update and create many templates at once.</p> <h3>Export</h3> <p>The export option only exports the templates selected. So to export all templates you must change the limited number of templates that are being loaded to \"All\". The box that limits the number of templates being loaded is found on the right top corner of the page. Simply change it from the number to “All” and the page should now reload with all the template records from the database, excluding those in trash. If you want those also to load you must change the “- Select Status –“ filter to “All” as well. Now you can click on the tick box at the very top of the table. This should select all the templates. Next click on the <button>Export Date</button> button in the toolbar. This should open a download window and you can select to save the excel file to your computer.</p> <h3>Import</h3> <p>The import option can be used to create templates or update existing templates. The way to update existing templates is to use the same id as the template you want to update. Best way to do this is to first export the templates you want to update and then make the changes you have in mind in the excel document without removing or changing the id. To instead create new templates via an import, simple leave the id field empty.</p> <p>So once you have your excel document ready you will again open the list view of templates and click on the <button>Import Data</button> button in the toolbar. This will open a page where you can select the excel file on your computer as an upload, or on the server in a directory, or at any direct url to the excel document.</p> <p>Once you have the file selected you can click on the <button>Upload File</button> or <button>Get File</button> button depending on the method you have chosen. When file has successfully been uploaded or retrieved a new window will open where you can map the excel document headers of each column to the field names used in the database. Usually if youre using an exported version of the excel document this mapping will be done for you, yet if you have changed any of the header names you may need to set these field relationships manually. There is an option to ignore a column in the case when you want to leave a field totally unchanged.</p> <p>When the field to column relationship has correctly been mapped you can click on the <button>continue</button> button at the bottom of the page. This should return you to the list view of templates with a success message.</p> <h3>Debug</h3> <p>In the event that any of the above features did not work as expected, please read the error message carefully since it should usually give you enough information to why your request could not be processed. Subsequently if you are still not able to perform the request after making all needed corrections according to the error messages, then please contact your system administrator.</p>', '\"\"', 1, '', 2, 'Welcome to the List view of Templates', 2, '', '', 1, 4, '', 5),
(6, 'layouts', 'welcome-to-the-list-view-of-layouts', '', '<p>Here as in all Joomla backend list views you can perform all the common tasks, and more.</p> <h3>Create</h3> <p>You can create a layout by clicking on the <button>New</button> button in the toolbar, this will open a window where you can add all the needed values to create a new layout.</p> <h3>Edit</h3> <p>You can edit layouts in two ways.</p> <ul> <li>You can click on the box next to the layout name and then click on the <button>Edit</button> button in the toolbar; this will open the layout and if you have permission it will give you access to edit the values of a layout.</li> <li>You can simply click on the layout name; this will open the layout and if you have permission it will give you access to edit the values of a layout.</li> </ul> <h3>Edit State</h3> <p>You can publish, unpublish, archive, and trash any layout by clicking in the boxes next the layout names and then click on the corresponding button of the task you want to perform. This will change the state of all the layouts youve selected.</p> <p>If you have trashed a layout it is in the trash and can still be found in the database. To view items that are still in the trash change the “- Select Status –“ filter to Trashed. Here you will see the list of trashed layouts. To completely remove these layouts from your system do the following: first select all the layouts you want to permanently delete by clicking in the boxes next to the layout names and then click on the <button>Empty trash</button> button in the toolbar. This will permanently delete the layouts from the database. On the other hand if you would like to change the status of the layout to publish, unpublish or archive, click in the boxes next to the layout names and then click on the corresponding button of the task you want to perform. This will change the state of all the layouts youve selected.</p> <h3>Check-in</h3> <p>When another user on your Joomla website opens a layout the system checks the layout out to that user. A little lock will show up next to the layout name. When you hover over the lock it will show to you who checked it out and when.</p> <p>Component builder adds a nice feature to all its components that is called the auto check-in feature. This feature has a time setting that you can update in the component\'s global settings.</p> <p>If this feature has not yet checked-in any of the layouts that you as the administrator wants to open you can force a check-in by clicking in the boxes next to the layout names and then click on the <button>Check-in</button> button in the toolbar, or simply click on the little lock. This will then check in the layout, which will mean that it removes the layout from the user who checked it out before you. Remember that they will lose all changes they have made if they have not yet clicked save. This can cause very unpleasant circumstances, so only use this feature if you are absolutely sure you know what you are doing.</p> <h3>Batch Feature</h3> <p>You can use the Batch feature to update or copy many layouts at once by clicking in the boxes next the layout names and then click on the <button>Batch</button> button in the toolbar. This will open a popup window with multiple dropdown options of fields you can change with the batch feature. You can then select update or copy depending of your desired task and finally click on the <button>Process</button> button. Once completed this batch feature will have either copied or updated all the layouts according to the task you selected.</p> <h3>Export & Import</h3> <p>The export and import feature is some of the most exciting features to the list view of layouts. With them you can update and create many layouts at once.</p> <h3>Export</h3> <p>The export option only exports the layouts selected. So to export all layouts you must change the limited number of layouts that are being loaded to \"All\". The box that limits the number of layouts being loaded is found on the right top corner of the page. Simply change it from the number to “All” and the page should now reload with all the layout records from the database, excluding those in trash. If you want those also to load you must change the “- Select Status –“ filter to “All” as well. Now you can click on the tick box at the very top of the table. This should select all the layouts. Next click on the <button>Export Date</button> button in the toolbar. This should open a download window and you can select to save the excel file to your computer.</p> <h3>Import</h3> <p>The import option can be used to create layouts or update existing layouts. The way to update existing layouts is to use the same id as the layout you want to update. Best way to do this is to first export the layouts you want to update and then make the changes you have in mind in the excel document without removing or changing the id. To instead create new layouts via an import, simple leave the id field empty.</p> <p>So once you have your excel document ready you will again open the list view of layouts and click on the <button>Import Data</button> button in the toolbar. This will open a page where you can select the excel file on your computer as an upload, or on the server in a directory, or at any direct url to the excel document.</p> <p>Once you have the file selected you can click on the <button>Upload File</button> or <button>Get File</button> button depending on the method you have chosen. When file has successfully been uploaded or retrieved a new window will open where you can map the excel document headers of each column to the field names used in the database. Usually if youre using an exported version of the excel document this mapping will be done for you, yet if you have changed any of the header names you may need to set these field relationships manually. There is an option to ignore a column in the case when you want to leave a field totally unchanged.</p> <p>When the field to column relationship has correctly been mapped you can click on the <button>continue</button> button at the bottom of the page. This should return you to the list view of layouts with a success message.</p> <h3>Debug</h3> <p>In the event that any of the above features did not work as expected, please read the error message carefully since it should usually give you enough information to why your request could not be processed. Subsequently if you are still not able to perform the request after making all needed corrections according to the error messages, then please contact your system administrator.</p>', '\"\"', 1, '', 2, 'Welcome to the List view of Layouts', 2, '', '', 1, 3, '', 6),
(7, 'dynamic_gets', 'welcome-to-the-list-view-of-dynamic-gets', '', '<p>Here as in all Joomla backend list views you can perform all the common tasks, and more.</p> <h3>Create</h3> <p>You can create a dynamic get by clicking on the <button>New</button> button in the toolbar, this will open a window where you can add all the needed values to create a new dynamic get.</p> <h3>Edit</h3> <p>You can edit dynamic gets in two ways.</p> <ul> <li>You can click on the box next to the dynamic get name and then click on the <button>Edit</button> button in the toolbar; this will open the dynamic get and if you have permission it will give you access to edit the values of a dynamic get.</li> <li>You can simply click on the dynamic get name; this will open the dynamic get and if you have permission it will give you access to edit the values of a dynamic get.</li> </ul> <h3>Edit State</h3> <p>You can publish, unpublish, archive, and trash any dynamic get by clicking in the boxes next the dynamic get names and then click on the corresponding button of the task you want to perform. This will change the state of all the dynamic gets youve selected.</p> <p>If you have trashed a dynamic get it is in the trash and can still be found in the database. To view items that are still in the trash change the “- Select Status –“ filter to Trashed. Here you will see the list of trashed dynamic gets. To completely remove these dynamic gets from your system do the following: first select all the dynamic gets you want to permanently delete by clicking in the boxes next to the dynamic get names and then click on the <button>Empty trash</button> button in the toolbar. This will permanently delete the dynamic gets from the database. On the other hand if you would like to change the status of the dynamic get to publish, unpublish or archive, click in the boxes next to the dynamic get names and then click on the corresponding button of the task you want to perform. This will change the state of all the dynamic gets youve selected.</p> <h3>Check-in</h3> <p>When another user on your Joomla website opens a dynamic get the system checks the dynamic get out to that user. A little lock will show up next to the dynamic get name. When you hover over the lock it will show to you who checked it out and when.</p> <p>Component builder adds a nice feature to all its components that is called the auto check-in feature. This feature has a time setting that you can update in the component\'s global settings.</p> <p>If this feature has not yet checked-in any of the dynamic gets that you as the administrator wants to open you can force a check-in by clicking in the boxes next to the dynamic get names and then click on the <button>Check-in</button> button in the toolbar, or simply click on the little lock. This will then check in the dynamic get, which will mean that it removes the dynamic get from the user who checked it out before you. Remember that they will lose all changes they have made if they have not yet clicked save. This can cause very unpleasant circumstances, so only use this feature if you are absolutely sure you know what you are doing.</p> <h3>Batch Feature</h3> <p>You can use the Batch feature to update or copy many dynamic gets at once by clicking in the boxes next the dynamic get names and then click on the <button>Batch</button> button in the toolbar. This will open a popup window with multiple dropdown options of fields you can change with the batch feature. You can then select update or copy depending of your desired task and finally click on the <button>Process</button> button. Once completed this batch feature will have either copied or updated all the dynamic gets according to the task you selected.</p> <h3>Export & Import</h3> <p>The export and import feature is some of the most exciting features to the list view of dynamic gets. With them you can update and create many dynamic gets at once.</p> <h3>Export</h3> <p>The export option only exports the dynamic gets selected. So to export all dynamic gets you must change the limited number of dynamic gets that are being loaded to \"All\". The box that limits the number of dynamic gets being loaded is found on the right top corner of the page. Simply change it from the number to “All” and the page should now reload with all the dynamic get records from the database, excluding those in trash. If you want those also to load you must change the “- Select Status –“ filter to “All” as well. Now you can click on the tick box at the very top of the table. This should select all the dynamic gets. Next click on the <button>Export Date</button> button in the toolbar. This should open a download window and you can select to save the excel file to your computer.</p> <h3>Import</h3> <p>The import option can be used to create dynamic gets or update existing dynamic gets. The way to update existing dynamic gets is to use the same id as the dynamic get you want to update. Best way to do this is to first export the dynamic gets you want to update and then make the changes you have in mind in the excel document without removing or changing the id. To instead create new dynamic gets via an import, simple leave the id field empty.</p> <p>So once you have your excel document ready you will again open the list view of dynamic gets and click on the <button>Import Data</button> button in the toolbar. This will open a page where you can select the excel file on your computer as an upload, or on the server in a directory, or at any direct url to the excel document.</p> <p>Once you have the file selected you can click on the <button>Upload File</button> or <button>Get File</button> button depending on the method you have chosen. When file has successfully been uploaded or retrieved a new window will open where you can map the excel document headers of each column to the field names used in the database. Usually if youre using an exported version of the excel document this mapping will be done for you, yet if you have changed any of the header names you may need to set these field relationships manually. There is an option to ignore a column in the case when you want to leave a field totally unchanged.</p> <p>When the field to column relationship has correctly been mapped you can click on the <button>continue</button> button at the bottom of the page. This should return you to the list view of dynamic gets with a success message.</p> <h3>Debug</h3> <p>In the event that any of the above features did not work as expected, please read the error message carefully since it should usually give you enough information to why your request could not be processed. Subsequently if you are still not able to perform the request after making all needed corrections according to the error messages, then please contact your system administrator.</p>', '\"\"', 1, '', 2, 'Welcome to the List view of Dynamic Gets', 2, '', '', 1, 3, '', 7),
(8, 'snippets', 'welcome-to-the-list-view-of-snippets', '', '<p>Here as in all Joomla backend list views you can perform all the common tasks, and more.</p> <h3>Create</h3> <p>You can create a snippet by clicking on the <button>New</button> button in the toolbar, this will open a window where you can add all the needed values to create a new snippet.</p> <h3>Edit</h3> <p>You can edit snippets in two ways.</p> <ul> <li>You can click on the box next to the snippet name and then click on the <button>Edit</button> button in the toolbar; this will open the snippet and if you have permission it will give you access to edit the values of a snippet.</li> <li>You can simply click on the snippet name; this will open the snippet and if you have permission it will give you access to edit the values of a snippet.</li> </ul> <h3>Edit State</h3> <p>You can publish, unpublish, archive, and trash any snippet by clicking in the boxes next the snippet names and then click on the corresponding button of the task you want to perform. This will change the state of all the snippets youve selected.</p> <p>If you have trashed a snippet it is in the trash and can still be found in the database. To view items that are still in the trash change the “- Select Status –“ filter to Trashed. Here you will see the list of trashed snippets. To completely remove these snippets from your system do the following: first select all the snippets you want to permanently delete by clicking in the boxes next to the snippet names and then click on the <button>Empty trash</button> button in the toolbar. This will permanently delete the snippets from the database. On the other hand if you would like to change the status of the snippet to publish, unpublish or archive, click in the boxes next to the snippet names and then click on the corresponding button of the task you want to perform. This will change the state of all the snippets youve selected.</p> <h3>Check-in</h3> <p>When another user on your Joomla website opens a snippet the system checks the snippet out to that user. A little lock will show up next to the snippet name. When you hover over the lock it will show to you who checked it out and when.</p> <p>Component builder adds a nice feature to all its components that is called the auto check-in feature. This feature has a time setting that you can update in the component\'s global settings.</p> <p>If this feature has not yet checked-in any of the snippets that you as the administrator wants to open you can force a check-in by clicking in the boxes next to the snippet names and then click on the <button>Check-in</button> button in the toolbar, or simply click on the little lock. This will then check in the snippet, which will mean that it removes the snippet from the user who checked it out before you. Remember that they will lose all changes they have made if they have not yet clicked save. This can cause very unpleasant circumstances, so only use this feature if you are absolutely sure you know what you are doing.</p> <h3>Batch Feature</h3> <p>You can use the Batch feature to update or copy many snippets at once by clicking in the boxes next the snippet names and then click on the <button>Batch</button> button in the toolbar. This will open a popup window with multiple dropdown options of fields you can change with the batch feature. You can then select update or copy depending of your desired task and finally click on the <button>Process</button> button. Once completed this batch feature will have either copied or updated all the snippets according to the task you selected.</p> <h3>Export & Import</h3> <p>The export and import feature is some of the most exciting features to the list view of snippets. With them you can update and create many snippets at once.</p> <h3>Export</h3> <p>The export option only exports the snippets selected. So to export all snippets you must change the limited number of snippets that are being loaded to \"All\". The box that limits the number of snippets being loaded is found on the right top corner of the page. Simply change it from the number to “All” and the page should now reload with all the snippet records from the database, excluding those in trash. If you want those also to load you must change the “- Select Status –“ filter to “All” as well. Now you can click on the tick box at the very top of the table. This should select all the snippets. Next click on the <button>Export Date</button> button in the toolbar. This should open a download window and you can select to save the excel file to your computer.</p> <h3>Import</h3> <p>The import option can be used to create snippets or update existing snippets. The way to update existing snippets is to use the same id as the snippet you want to update. Best way to do this is to first export the snippets you want to update and then make the changes you have in mind in the excel document without removing or changing the id. To instead create new snippets via an import, simple leave the id field empty.</p> <p>So once you have your excel document ready you will again open the list view of snippets and click on the <button>Import Data</button> button in the toolbar. This will open a page where you can select the excel file on your computer as an upload, or on the server in a directory, or at any direct url to the excel document.</p> <p>Once you have the file selected you can click on the <button>Upload File</button> or <button>Get File</button> button depending on the method you have chosen. When file has successfully been uploaded or retrieved a new window will open where you can map the excel document headers of each column to the field names used in the database. Usually if youre using an exported version of the excel document this mapping will be done for you, yet if you have changed any of the header names you may need to set these field relationships manually. There is an option to ignore a column in the case when you want to leave a field totally unchanged.</p> <p>When the field to column relationship has correctly been mapped you can click on the <button>continue</button> button at the bottom of the page. This should return you to the list view of snippets with a success message.</p> <h3>Debug</h3> <p>In the event that any of the above features did not work as expected, please read the error message carefully since it should usually give you enough information to why your request could not be processed. Subsequently if you are still not able to perform the request after making all needed corrections according to the error messages, then please contact your system administrator.</p>', '\"\"', 1, '', 2, 'Welcome to the List view of Snippets', 2, '', '', 1, 3, '', 8),
(9, 'fields', 'welcome-to-the-list-view-of-fields', '', '<p>Here as in all Joomla backend list views you can perform all the common tasks, and more.</p> <h3>Create</h3> <p>You can create a field by clicking on the <button>New</button> button in the toolbar, this will open a window where you can add all the needed values to create a new field.</p> <h3>Edit</h3> <p>You can edit fields in two ways.</p> <ul> <li>You can click on the box next to the field name and then click on the <button>Edit</button> button in the toolbar; this will open the field and if you have permission it will give you access to edit the values of a field.</li> <li>You can simply click on the field name; this will open the field and if you have permission it will give you access to edit the values of a field.</li> </ul> <h3>Edit State</h3> <p>You can publish, unpublish, archive, and trash any field by clicking in the boxes next the field names and then click on the corresponding button of the task you want to perform. This will change the state of all the fields youve selected.</p> <p>If you have trashed a field it is in the trash and can still be found in the database. To view items that are still in the trash change the “- Select Status –“ filter to Trashed. Here you will see the list of trashed fields. To completely remove these fields from your system do the following: first select all the fields you want to permanently delete by clicking in the boxes next to the field names and then click on the <button>Empty trash</button> button in the toolbar. This will permanently delete the fields from the database. On the other hand if you would like to change the status of the field to publish, unpublish or archive, click in the boxes next to the field names and then click on the corresponding button of the task you want to perform. This will change the state of all the fields youve selected.</p> <h3>Check-in</h3> <p>When another user on your Joomla website opens a field the system checks the field out to that user. A little lock will show up next to the field name. When you hover over the lock it will show to you who checked it out and when.</p> <p>Component builder adds a nice feature to all its components that is called the auto check-in feature. This feature has a time setting that you can update in the component\'s global settings.</p> <p>If this feature has not yet checked-in any of the fields that you as the administrator wants to open you can force a check-in by clicking in the boxes next to the field names and then click on the <button>Check-in</button> button in the toolbar, or simply click on the little lock. This will then check in the field, which will mean that it removes the field from the user who checked it out before you. Remember that they will lose all changes they have made if they have not yet clicked save. This can cause very unpleasant circumstances, so only use this feature if you are absolutely sure you know what you are doing.</p> <h3>Batch Feature</h3> <p>You can use the Batch feature to update or copy many fields at once by clicking in the boxes next the field names and then click on the <button>Batch</button> button in the toolbar. This will open a popup window with multiple dropdown options of fields you can change with the batch feature. You can then select update or copy depending of your desired task and finally click on the <button>Process</button> button. Once completed this batch feature will have either copied or updated all the fields according to the task you selected.</p> <h3>Export & Import</h3> <p>The export and import feature is some of the most exciting features to the list view of fields. With them you can update and create many fields at once.</p> <h3>Export</h3> <p>The export option only exports the fields selected. So to export all fields you must change the limited number of fields that are being loaded to \"All\". The box that limits the number of fields being loaded is found on the right top corner of the page. Simply change it from the number to “All” and the page should now reload with all the field records from the database, excluding those in trash. If you want those also to load you must change the “- Select Status –“ filter to “All” as well. Now you can click on the tick box at the very top of the table. This should select all the fields. Next click on the <button>Export Date</button> button in the toolbar. This should open a download window and you can select to save the excel file to your computer.</p> <h3>Import</h3> <p>The import option can be used to create fields or update existing fields. The way to update existing fields is to use the same id as the field you want to update. Best way to do this is to first export the fields you want to update and then make the changes you have in mind in the excel document without removing or changing the id. To instead create new fields via an import, simple leave the id field empty.</p> <p>So once you have your excel document ready you will again open the list view of fields and click on the <button>Import Data</button> button in the toolbar. This will open a page where you can select the excel file on your computer as an upload, or on the server in a directory, or at any direct url to the excel document.</p> <p>Once you have the file selected you can click on the <button>Upload File</button> or <button>Get File</button> button depending on the method you have chosen. When file has successfully been uploaded or retrieved a new window will open where you can map the excel document headers of each column to the field names used in the database. Usually if youre using an exported version of the excel document this mapping will be done for you, yet if you have changed any of the header names you may need to set these field relationships manually. There is an option to ignore a column in the case when you want to leave a field totally unchanged.</p> <p>When the field to column relationship has correctly been mapped you can click on the <button>continue</button> button at the bottom of the page. This should return you to the list view of fields with a success message.</p> <h3>Debug</h3> <p>In the event that any of the above features did not work as expected, please read the error message carefully since it should usually give you enough information to why your request could not be processed. Subsequently if you are still not able to perform the request after making all needed corrections according to the error messages, then please contact your system administrator.</p>', '\"\"', 1, '', 2, 'Welcome to the List view of Fields', 2, '', '', 1, 3, '', 9),
(10, 'fieldtypes', 'welcome-to-the-list-view-of-fieldtypes', '', '<p>Here as in all Joomla backend list views you can perform all the common tasks, and more.</p> <h3>Create</h3> <p>You can create a fieldtype by clicking on the <button>New</button> button in the toolbar, this will open a window where you can add all the needed values to create a new fieldtype.</p> <h3>Edit</h3> <p>You can edit fieldtypes in two ways.</p> <ul> <li>You can click on the box next to the fieldtype name and then click on the <button>Edit</button> button in the toolbar; this will open the fieldtype and if you have permission it will give you access to edit the values of a fieldtype.</li> <li>You can simply click on the fieldtype name; this will open the fieldtype and if you have permission it will give you access to edit the values of a fieldtype.</li> </ul> <h3>Edit State</h3> <p>You can publish, unpublish, archive, and trash any fieldtype by clicking in the boxes next the fieldtype names and then click on the corresponding button of the task you want to perform. This will change the state of all the fieldtypes youve selected.</p> <p>If you have trashed a fieldtype it is in the trash and can still be found in the database. To view items that are still in the trash change the “- Select Status –“ filter to Trashed. Here you will see the list of trashed fieldtypes. To completely remove these fieldtypes from your system do the following: first select all the fieldtypes you want to permanently delete by clicking in the boxes next to the fieldtype names and then click on the <button>Empty trash</button> button in the toolbar. This will permanently delete the fieldtypes from the database. On the other hand if you would like to change the status of the fieldtype to publish, unpublish or archive, click in the boxes next to the fieldtype names and then click on the corresponding button of the task you want to perform. This will change the state of all the fieldtypes youve selected.</p> <h3>Check-in</h3> <p>When another user on your Joomla website opens a fieldtype the system checks the fieldtype out to that user. A little lock will show up next to the fieldtype name. When you hover over the lock it will show to you who checked it out and when.</p> <p>Component builder adds a nice feature to all its components that is called the auto check-in feature. This feature has a time setting that you can update in the component\'s global settings.</p> <p>If this feature has not yet checked-in any of the fieldtypes that you as the administrator wants to open you can force a check-in by clicking in the boxes next to the fieldtype names and then click on the <button>Check-in</button> button in the toolbar, or simply click on the little lock. This will then check in the fieldtype, which will mean that it removes the fieldtype from the user who checked it out before you. Remember that they will lose all changes they have made if they have not yet clicked save. This can cause very unpleasant circumstances, so only use this feature if you are absolutely sure you know what you are doing.</p> <h3>Batch Feature</h3> <p>You can use the Batch feature to update or copy many fieldtypes at once by clicking in the boxes next the fieldtype names and then click on the <button>Batch</button> button in the toolbar. This will open a popup window with multiple dropdown options of fields you can change with the batch feature. You can then select update or copy depending of your desired task and finally click on the <button>Process</button> button. Once completed this batch feature will have either copied or updated all the fieldtypes according to the task you selected.</p> <h3>Export & Import</h3> <p>The export and import feature is some of the most exciting features to the list view of fieldtypes. With them you can update and create many fieldtypes at once.</p> <h3>Export</h3> <p>The export option only exports the fieldtypes selected. So to export all fieldtypes you must change the limited number of fieldtypes that are being loaded to \"All\". The box that limits the number of fieldtypes being loaded is found on the right top corner of the page. Simply change it from the number to “All” and the page should now reload with all the fieldtype records from the database, excluding those in trash. If you want those also to load you must change the “- Select Status –“ filter to “All” as well. Now you can click on the tick box at the very top of the table. This should select all the fieldtypes. Next click on the <button>Export Date</button> button in the toolbar. This should open a download window and you can select to save the excel file to your computer.</p> <h3>Import</h3> <p>The import option can be used to create fieldtypes or update existing fieldtypes. The way to update existing fieldtypes is to use the same id as the fieldtype you want to update. Best way to do this is to first export the fieldtypes you want to update and then make the changes you have in mind in the excel document without removing or changing the id. To instead create new fieldtypes via an import, simple leave the id field empty.</p> <p>So once you have your excel document ready you will again open the list view of fieldtypes and click on the <button>Import Data</button> button in the toolbar. This will open a page where you can select the excel file on your computer as an upload, or on the server in a directory, or at any direct url to the excel document.</p> <p>Once you have the file selected you can click on the <button>Upload File</button> or <button>Get File</button> button depending on the method you have chosen. When file has successfully been uploaded or retrieved a new window will open where you can map the excel document headers of each column to the field names used in the database. Usually if youre using an exported version of the excel document this mapping will be done for you, yet if you have changed any of the header names you may need to set these field relationships manually. There is an option to ignore a column in the case when you want to leave a field totally unchanged.</p> <p>When the field to column relationship has correctly been mapped you can click on the <button>continue</button> button at the bottom of the page. This should return you to the list view of fieldtypes with a success message.</p> <h3>Debug</h3> <p>In the event that any of the above features did not work as expected, please read the error message carefully since it should usually give you enough information to why your request could not be processed. Subsequently if you are still not able to perform the request after making all needed corrections according to the error messages, then please contact your system administrator.</p>', '\"\"', 1, '', 2, 'Welcome to the List view of Fieldtypes', 2, '', '', 1, 3, '', 10),
(11, 'help_documents', 'welcome-to-the-list-view-of-help-documents', '', '<p>Here as in all Joomla backend list views you can perform all the common tasks, and more.</p> <h3>Create</h3> <p>You can create a help document by clicking on the <button>New</button> button in the toolbar, this will open a window where you can add all the needed values to create a new help document.</p> <h3>Edit</h3> <p>You can edit help documents in two ways.</p> <ul> <li>You can click on the box next to the help document name and then click on the <button>Edit</button> button in the toolbar; this will open the help document and if you have permission it will give you access to edit the values of a help document.</li> <li>You can simply click on the help document name; this will open the help document and if you have permission it will give you access to edit the values of a help document.</li> </ul> <h3>Edit State</h3> <p>You can publish, unpublish, archive, and trash any help document by clicking in the boxes next the help document names and then click on the corresponding button of the task you want to perform. This will change the state of all the help documents youve selected.</p> <p>If you have trashed a help document it is in the trash and can still be found in the database. To view items that are still in the trash change the “- Select Status –“ filter to Trashed. Here you will see the list of trashed help documents. To completely remove these help documents from your system do the following: first select all the help documents you want to permanently delete by clicking in the boxes next to the help document names and then click on the <button>Empty trash</button> button in the toolbar. This will permanently delete the help documents from the database. On the other hand if you would like to change the status of the help document to publish, unpublish or archive, click in the boxes next to the help document names and then click on the corresponding button of the task you want to perform. This will change the state of all the help documents youve selected.</p> <h3>Check-in</h3> <p>When another user on your Joomla website opens a help document the system checks the help document out to that user. A little lock will show up next to the help document name. When you hover over the lock it will show to you who checked it out and when.</p> <p>Component builder adds a nice feature to all its components that is called the auto check-in feature. This feature has a time setting that you can update in the component\'s global settings.</p> <p>If this feature has not yet checked-in any of the help documents that you as the administrator wants to open you can force a check-in by clicking in the boxes next to the help document names and then click on the <button>Check-in</button> button in the toolbar, or simply click on the little lock. This will then check in the help document, which will mean that it removes the help document from the user who checked it out before you. Remember that they will lose all changes they have made if they have not yet clicked save. This can cause very unpleasant circumstances, so only use this feature if you are absolutely sure you know what you are doing.</p> <h3>Batch Feature</h3> <p>You can use the Batch feature to update or copy many help documents at once by clicking in the boxes next the help document names and then click on the <button>Batch</button> button in the toolbar. This will open a popup window with multiple dropdown options of fields you can change with the batch feature. You can then select update or copy depending of your desired task and finally click on the <button>Process</button> button. Once completed this batch feature will have either copied or updated all the help documents according to the task you selected.</p> <h3>Export & Import</h3> <p>The export and import feature is some of the most exciting features to the list view of help documents. With them you can update and create many help documents at once.</p> <h3>Export</h3> <p>The export option only exports the help documents selected. So to export all help documents you must change the limited number of help documents that are being loaded to \"All\". The box that limits the number of help documents being loaded is found on the right top corner of the page. Simply change it from the number to “All” and the page should now reload with all the help document records from the database, excluding those in trash. If you want those also to load you must change the “- Select Status –“ filter to “All” as well. Now you can click on the tick box at the very top of the table. This should select all the help documents. Next click on the <button>Export Date</button> button in the toolbar. This should open a download window and you can select to save the excel file to your computer.</p> <h3>Import</h3> <p>The import option can be used to create help documents or update existing help documents. The way to update existing help documents is to use the same id as the help document you want to update. Best way to do this is to first export the help documents you want to update and then make the changes you have in mind in the excel document without removing or changing the id. To instead create new help documents via an import, simple leave the id field empty.</p> <p>So once you have your excel document ready you will again open the list view of help documents and click on the <button>Import Data</button> button in the toolbar. This will open a page where you can select the excel file on your computer as an upload, or on the server in a directory, or at any direct url to the excel document.</p> <p>Once you have the file selected you can click on the <button>Upload File</button> or <button>Get File</button> button depending on the method you have chosen. When file has successfully been uploaded or retrieved a new window will open where you can map the excel document headers of each column to the field names used in the database. Usually if youre using an exported version of the excel document this mapping will be done for you, yet if you have changed any of the header names you may need to set these field relationships manually. There is an option to ignore a column in the case when you want to leave a field totally unchanged.</p> <p>When the field to column relationship has correctly been mapped you can click on the <button>continue</button> button at the bottom of the page. This should return you to the list view of help documents with a success message.</p> <h3>Debug</h3> <p>In the event that any of the above features did not work as expected, please read the error message carefully since it should usually give you enough information to why your request could not be processed. Subsequently if you are still not able to perform the request after making all needed corrections according to the error messages, then please contact your system administrator.</p>', '\"\"', 1, '', 2, 'Welcome to the List view of Help Documents', 2, '', '', 1, 3, '', 11);
--
-- Dumping data for table `#__componentbuilder_admin_fields`
--
INSERT INTO `#__componentbuilder_admin_fields` (`id`, `addfields`, `admin_view`, `published`, `created`, `modified`, `version`, `hits`, `ordering`, `params`) VALUES
(111, '{\"0\":{\"field\":\"84\",\"list\":\"1\",\"order_list\":\"2\",\"sort\":\"1\",\"search\":\"1\",\"tab\":\"1\",\"alignment\":\"3\",\"order_edit\":\"1\"},\"1\":{\"field\":\"199\",\"list\":\"1\",\"order_list\":\"1\",\"title\":\"1\",\"sort\":\"1\",\"search\":\"1\",\"link\":\"1\",\"tab\":\"1\",\"alignment\":\"4\",\"order_edit\":\"1\"},\"2\":{\"field\":\"23\",\"list\":\"\",\"order_list\":\"0\",\"alias\":\"1\",\"search\":\"1\",\"tab\":\"1\",\"alignment\":\"4\",\"order_edit\":\"2\"},\"3\":{\"field\":\"203\",\"list\":\"2\",\"order_list\":\"0\",\"tab\":\"1\",\"alignment\":\"5\",\"order_edit\":\"1\"},\"4\":{\"field\":\"682\",\"list\":\"\",\"order_list\":\"0\",\"sort\":\"1\",\"search\":\"1\",\"filter\":\"1\",\"tab\":\"2\",\"alignment\":\"1\",\"order_edit\":\"1\"},\"5\":{\"field\":\"100\",\"list\":\"\",\"order_list\":\"0\",\"tab\":\"2\",\"alignment\":\"2\",\"order_edit\":\"1\"},\"6\":{\"field\":\"196\",\"list\":\"\",\"order_list\":\"0\",\"tab\":\"2\",\"alignment\":\"2\",\"order_edit\":\"2\"},\"7\":{\"field\":\"1011\",\"list\":\"\",\"order_list\":\"0\",\"tab\":\"2\",\"alignment\":\"2\",\"order_edit\":\"3\"},\"8\":{\"field\":\"158\",\"list\":\"\",\"order_list\":\"0\",\"tab\":\"2\",\"alignment\":\"2\",\"order_edit\":\"4\"},\"9\":{\"field\":\"280\",\"list\":\"\",\"order_list\":\"0\",\"tab\":\"2\",\"alignment\":\"2\",\"order_edit\":\"5\"}}', 109, 1, '2017-10-12 19:52:03', '2019-01-28 16:27:19', 7, '', '', '');
--
-- Dumping data for table `#__componentbuilder_admin_fields_conditions`
--
INSERT INTO `#__componentbuilder_admin_fields_conditions` (`id`, `addconditions`, `admin_view`, `published`, `created`, `modified`, `version`, `hits`, `ordering`, `params`) VALUES
(111, '{\"addconditions0\":{\"target_field\":[\"1011\",\"100\",\"158\",\"196\",\"280\"],\"target_behavior\":\"1\",\"target_relation\":\"0\",\"match_field\":\"682\",\"match_behavior\":\"1\",\"match_options\":\"1|Yes\"}}', 109, 1, '2017-10-12 21:36:00', '0000-00-00 00:00:00', 2, '', '', '');
--
-- Dumping data for table `#__componentbuilder_component_admin_views`
--
INSERT INTO `#__componentbuilder_component_admin_views` (`id`, `addadmin_views`, `joomla_component`, `published`, `created`, `modified`, `version`, `hits`, `ordering`, `params`) VALUES
(27, '{\"addadmin_views0\":{\"adminview\":\"109\",\"icomoon\":\"eye-open\",\"mainmenu\":\"1\",\"dashboard_add\":\"1\",\"dashboard_list\":\"1\",\"submenu\":\"1\",\"checkin\":\"1\",\"history\":\"1\",\"joomla_fields\":\"1\",\"metadata\":\"1\",\"access\":\"1\",\"port\":\"1\",\"filter\":\"2\",\"edit_create_site_view\":\"1\",\"order\":\"1\"}}', 25, 1, '2017-10-28 03:56:26', '2021-02-08 10:32:04', 7, '', '', '');
--
-- Dumping data for table `#__componentbuilder_component_site_views`
--
INSERT INTO `#__componentbuilder_component_site_views` (`id`, `addsite_views`, `joomla_component`, `published`, `created`, `modified`, `version`, `hits`, `ordering`, `params`) VALUES
(27, '{\"addsite_views0\":{\"siteview\":\"23\",\"menu\":\"1\",\"metadata\":\"1\",\"default_view\":\"1\",\"access\":\"1\",\"public_access\":\"1\"},\"addsite_views1\":{\"siteview\":\"25\",\"metadata\":\"1\",\"access\":\"1\"}}', 25, 1, '2017-10-28 03:56:26', '2020-02-27 21:32:04', 4, '', '', '');
--
-- Dumping data for table `#__componentbuilder_component_custom_admin_views`
--
INSERT INTO `#__componentbuilder_component_custom_admin_views` (`id`, `addcustom_admin_views`, `joomla_component`, `published`, `created`, `modified`, `version`, `hits`, `ordering`, `params`) VALUES
(27, '', 25, 1, '2017-10-28 03:56:26', '0000-00-00 00:00:00', 2, '', '', '');
--
-- Dumping data for table `#__componentbuilder_component_updates`
--
INSERT INTO `#__componentbuilder_component_updates` (`id`, `joomla_component`, `version_update`, `published`, `created`, `modified`, `version`, `hits`, `ordering`, `params`) VALUES
(27, 25, '{\"version_update0\":{\"version\":\"2.0.0\",\"mysql\":\"ALTER TABLE `#__demo_look` ENGINE = InnoDB;\\r\\n\\r\\nALTER TABLE `#__demo_look` CONVERT TO CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;\",\"url\":\"https:\\/\\/git.vdm.dev\\/joomla\\/Demo-Component\\/archive\\/v2.0.0.zip\",\"update_server_adv\":\"0\",\"update_server_type\":\"component\",\"update_element\":\"\",\"update_state\":\"stable\",\"update_target_version\":\"3.*\",\"change_log\":\"\",\"update_client\":\"site\"},\"version_update1\":{\"version\":\"2.0.2\",\"mysql\":\"ALTER TABLE `#__demo_look` CHANGE `image` `image` VARCHAR(255) NOT NULL DEFAULT \'\';\",\"url\":\"https:\\/\\/git.vdm.dev\\/joomla\\/Demo-Component\\/archive\\/v2.0.2.zip\",\"update_server_adv\":\"0\",\"update_server_type\":\"component\",\"update_element\":\"\",\"update_state\":\"stable\",\"update_target_version\":\"3.*\",\"change_log\":\"\",\"update_client\":\"site\"},\"version_update2\":{\"version\":\"2.0.3\",\"mysql\":\"\",\"url\":\"https:\\/\\/git.vdm.dev\\/joomla\\/Demo-Component\\/archive\\/v2.0.3.zip\",\"update_server_adv\":\"0\",\"update_server_type\":\"component\",\"update_element\":\"\",\"update_state\":\"stable\",\"update_target_version\":\"3.*\",\"change_log\":\"\",\"update_client\":\"site\"},\"version_update3\":{\"version\":\"2.1.0\",\"mysql\":\"\",\"url\":\"https:\\/\\/git.vdm.dev\\/joomla\\/Demo-Component\\/archive\\/v2.1.0.zip\",\"update_server_adv\":\"0\",\"update_server_type\":\"component\",\"update_element\":\"\",\"update_state\":\"stable\",\"update_target_version\":\"3.*\",\"change_log\":\"\",\"update_client\":\"site\"}}', 1, '2017-10-28 03:56:26', '2022-05-27 05:23:46', 9, '', '', '');
--
-- Dumping data for table `#__componentbuilder_component_mysql_tweaks`
--
INSERT INTO `#__componentbuilder_component_mysql_tweaks` (`id`, `joomla_component`, `sql_tweak`, `published`, `created`, `modified`, `version`, `hits`, `ordering`, `params`) VALUES
(27, 25, '', 1, '2017-10-28 03:56:26', '0000-00-00 00:00:00', 2, '', '', '');
--
-- Dumping data for table `#__componentbuilder_component_custom_admin_menus`
--
INSERT INTO `#__componentbuilder_component_custom_admin_menus` (`id`, `addcustommenus`, `joomla_component`, `published`, `created`, `modified`, `version`, `hits`, `ordering`, `params`) VALUES
(27, '', 25, 1, '2017-10-28 03:56:26', '0000-00-00 00:00:00', 2, '', '', '');
--
-- Dumping data for table `#__componentbuilder_component_config`
--
INSERT INTO `#__componentbuilder_component_config` (`id`, `addconfig`, `joomla_component`, `published`, `created`, `modified`, `version`, `hits`, `ordering`, `params`) VALUES
(27, '', 25, 1, '2017-10-28 03:56:26', '0000-00-00 00:00:00', 2, '', '', '');
--
-- Dumping data for table `#__componentbuilder_component_dashboard`
--
INSERT INTO `#__componentbuilder_component_dashboard` (`id`, `dashboard_tab`, `joomla_component`, `php_dashboard_methods`, `published`, `created`, `modified`, `version`, `hits`, `ordering`, `params`) VALUES
(27, '', 25, '', 1, '2017-10-28 03:56:26', '0000-00-00 00:00:00', 2, '', '', '');
--
-- Dumping data for table `#__componentbuilder_component_files_folders`
--
INSERT INTO `#__componentbuilder_component_files_folders` (`id`, `addfiles`, `addfolders`, `joomla_component`, `params`, `published`, `created`, `modified`, `version`, `hits`, `ordering`, `addfilesfullpath`, `addfoldersfullpath`) VALUES
(27, '', '', 25, '', 1, '2017-10-28 03:56:26', '0000-00-00 00:00:00', 2, '', '', '', '');
--
-- Dumping data for table `#__componentbuilder_snippet_type`
--
INSERT INTO `#__componentbuilder_snippet_type` (`id`, `name`, `description`, `params`, `published`, `created`, `modified`, `version`, `hits`, `ordering`) VALUES
(1, 'Layout', '', '', 1, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 1, '', 1),
(2, 'Navigations', '', '', 1, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 1, '', 2),
(3, 'Elements', '', '', 1, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 1, '', 3),
(4, 'Common', '', '', 1, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 1, '', 4),
(5, 'JavaScript', '', '', 1, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 1, '', 5),
(6, 'Charts', '', '', 1, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 1, '', 6),
(7, 'Alerts', '', '', 1, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 1, '', 7),
(8, 'Badges', '', '', 1, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 1, '', 8),
(9, 'Breadcrumbs', '', '', 1, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 1, '', 9),
(10, 'Buttons', '', '', 1, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 1, '', 10),
(11, 'Button Groups', '', '', 1, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 1, '', 11),
(12, 'Button Modifiers', '', '', 1, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 1, '', 12),
(13, 'Cards', '', '', 1, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 1, '', 13),
(14, 'Carousel', '', '', 1, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 1, '', 14),
(15, 'Collapse', '', '', 1, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 1, '', 15),
(16, 'Dropdowns', '', '', 1, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 1, '', 16),
(17, 'Forms', '', '', 1, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 1, '', 17),
(18, 'Form Input Groups', '', '', 1, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 1, '', 18),
(19, 'Custom Forms', '', '', 1, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 1, '', 19),
(20, 'Grid', '', '', 1, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 1, '', 20),
(21, 'Images', '', '', 1, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 1, '', 21),
(22, 'Jumbotron', '', '', 1, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 1, '', 22),
(23, 'List Group', '', '', 1, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 1, '', 23),
(24, 'Media Objects', '', '', 1, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 1, '', 24),
(25, 'Modal', '', '', 1, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 1, '', 25),
(26, 'Navs', '', '', 1, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 1, '', 26),
(27, 'Navbar', '', '', 1, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 1, '', 27),
(28, 'Pagination', '', '', 1, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 1, '', 28),
(29, 'Popover', '', '', 1, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 1, '', 29),
(30, 'Progress', '', '', 1, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 1, '', 30),
(31, 'Scrollspy', '', '', 1, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 1, '', 31),
(32, 'Tables', '', '', 1, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 1, '', 32),
(33, 'Tooltips', '', '', 1, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 1, '', 33),
(34, 'Typography', '', '', 1, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 1, '', 34),
(35, 'Utility: Borders', '', '', 1, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 1, '', 35),
(36, 'Utility: Colors', '', '', 1, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 1, '', 36),
(37, 'Utility: Display', '', '', 1, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 1, '', 37),
(38, 'Utility: Flexbox', '', '', 1, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 1, '', 38),
(39, 'Utility: Misc', '', '', 1, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 1, '', 39),
(40, 'Utility: Positioning', '', '', 1, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 1, '', 40),
(41, 'Utility: Sizing', '', '', 1, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 1, '', 41),
(42, 'Utility: Spacing', '', '', 1, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 1, '', 42),
(43, 'Utility: Text', '', '', 1, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 1, '', 43);
--
-- Dumping data for table `#__componentbuilder_library_config`
--
INSERT INTO `#__componentbuilder_library_config` (`id`, `addconfig`, `library`, `params`, `published`, `created`, `modified`, `version`, `hits`, `ordering`) VALUES
(1, '{\"addconfig0\":{\"field\":\"2635\",\"custom_value\":\"\",\"tabname\":\"Icon Settings\"},\"addconfig1\":{\"field\":\"2636\",\"custom_value\":\"\",\"tabname\":\"Icon Settings\"},\"addconfig2\":{\"field\":\"2639\",\"custom_value\":\"\",\"tabname\":\"Icon Settings\"},\"addconfig3\":{\"field\":\"2637\",\"custom_value\":\"\",\"tabname\":\"Icon Settings\"},\"addconfig4\":{\"field\":\"2638\",\"custom_value\":\"\",\"tabname\":\"Icon Settings\"},\"addconfig7\":{\"field\":\"2640\",\"custom_value\":\"\",\"tabname\":\"Icon Settings\"},\"addconfig6\":{\"field\":\"2641\",\"custom_value\":\"\",\"tabname\":\"Icon Settings\"},\"addconfig5\":{\"field\":\"2642\",\"custom_value\":\"\",\"tabname\":\"Icon Settings\"}}', 7, '', 1, '2019-10-03 09:55:37', '2019-10-03 16:41:01', 2, '', 1);
--
-- Dumping data for table `#__componentbuilder_library_files_folders_urls`
--
INSERT INTO `#__componentbuilder_library_files_folders_urls` (`id`, `addfiles`, `addfolders`, `addurls`, `library`, `params`, `published`, `created`, `modified`, `version`, `hits`, `ordering`) VALUES
(2, '', '', '{\"addurls0\":{\"url\":\"https:\\/\\/maxcdn.bootstrapcdn.com\\/bootstrap\\/4.0.0-alpha.6\\/js\\/bootstrap.min.js\",\"type\":\"2\"},\"addurls1\":{\"url\":\"https:\\/\\/maxcdn.bootstrapcdn.com\\/bootstrap\\/4.0.0-alpha.6\\/css\\/bootstrap.min.css\",\"type\":\"2\"}}', 2, '', 1, '2017-11-25 16:17:36', '2018-05-02 23:29:05', 11, '', 2),
(3, '{}', '{}', '{\"addurls2\":{\"url\":\"https:\\/\\/cdn.jsdelivr.net\\/npm\\/uikit@3.6.22\\/dist\\/css\\/uikit.min.css\",\"type\":2},\"addurls0\":{\"url\":\"https:\\/\\/cdn.jsdelivr.net\\/npm\\/uikit@3.6.22\\/dist\\/js\\/uikit.min.js\",\"type\":2},\"addurls1\":{\"url\":\"https:\\/\\/cdn.jsdelivr.net\\/npm\\/uikit@3.6.22\\/dist\\/js\\/uikit-icons.min.js\",\"type\":2}}', 3, '', 1, '2017-11-25 21:47:40', '2021-05-27 00:16:34', 11, '', 3),
(4, '{}', '{\"addfolders0\":{\"folder\":\"file_icon_vectors\",\"path\":\"\\/media\\/vector\",\"rename\":\"1\"}}', '{}', 7, '', 1, '2019-10-03 09:24:30', '2019-10-03 09:25:39', 2, '', 4),
(5, '{}', '{}', '{\"addurls0\":{\"url\":\"https:\\/\\/cdnjs.cloudflare.com\\/ajax\\/libs\\/grapesjs\\/0.14.15\\/css\\/grapes.min.css\",\"type\":2},\"addurls2\":{\"url\":\"https:\\/\\/cdnjs.cloudflare.com\\/ajax\\/libs\\/grapesjs\\/0.14.15\\/grapes.min.js\",\"type\":2}}', 8, '', 1, '2020-02-10 21:34:33', '2020-02-18 21:12:35', 5, '', 5),
(6, '{}', '{}', '{\"addurls0\":{\"url\":\"https:\\/\\/raw.githubusercontent.com\\/artf\\/grapesjs-preset-webpage\\/master\\/dist\\/grapesjs-preset-webpage.min.css\",\"type\":2},\"addurls1\":{\"url\":\"https:\\/\\/raw.githubusercontent.com\\/artf\\/grapesjs-preset-webpage\\/master\\/dist\\/grapesjs-preset-webpage.min.js\",\"type\":2},\"addurls2\":{\"url\":\"https:\\/\\/static.filestackapi.com\\/v3\\/filestack-0.1.10.js\",\"type\":2}}', 9, '', 1, '2020-02-18 21:13:16', '2020-02-18 21:14:11', 2, '', 5),
(7, '{}', '{}', '{\"addurls0\":{\"url\":\"https:\\/\\/cdn.jsdelivr.net\\/npm\\/vue\",\"type\":3}}', 10, '', 1, '2020-06-05 13:11:54', '0000-00-00 00:00:00', 1, '', 6),
(8, '{}', '{}', '{\"addurls2\":{\"url\":\"https:\\/\\/cdn.datatables.net\\/1.10.21\\/js\\/jquery.dataTables.min.js\",\"type\":2},\"addurls1\":{\"url\":\"https:\\/\\/cdn.datatables.net\\/1.10.21\\/css\\/dataTables.uikit.min.css\",\"type\":2}}', 11, '', 1, '2020-06-27 21:34:44', '0000-00-00 00:00:00', 1, '', 7),
(9, '{}', '{}', '{\"addurls3\":{\"url\":\"http:\\/\\/code.jquery.com\\/ui\\/1.11.1\\/themes\\/smoothness\\/jquery-ui.css\",\"type\":2},\"addurls0\":{\"url\":\"https:\\/\\/cdnjs.cloudflare.com\\/ajax\\/libs\\/jquery-ui-timepicker-addon\\/1.6.3\\/jquery-ui-timepicker-addon.min.css\",\"type\":2},\"addurls1\":{\"url\":\"http:\\/\\/code.jquery.com\\/ui\\/1.11.1\\/jquery-ui.min.js\",\"type\":2},\"addurls2\":{\"url\":\"https:\\/\\/cdnjs.cloudflare.com\\/ajax\\/libs\\/jquery-ui-timepicker-addon\\/1.6.3\\/jquery-ui-timepicker-addon.min.js\",\"type\":2}}', 12, '', 1, '2020-06-29 00:00:44', '2020-06-29 04:32:57', 4, '', 8),
(10, '{}', '{}', '{\"addurls0\":{\"url\":\"https:\\/\\/cdn.datatables.net\\/v\\/dt\\/jszip-2.5.0\\/dt-1.11.5\\/b-2.2.2\\/b-colvis-2.2.2\\/b-html5-2.2.2\\/b-print-2.2.2\\/cr-1.5.5\\/date-1.1.2\\/fc-4.0.2\\/fh-3.2.2\\/kt-2.6.4\\/r-2.2.9\\/rg-1.1.4\\/rr-1.2.8\\/sc-2.0.5\\/sb-1.3.2\\/sp-2.0.0\\/sl-1.3.4\\/sr-1.1.0\\/datatables.min.css\",\"type\":3},\"addurls1\":{\"url\":\"https:\\/\\/cdnjs.cloudflare.com\\/ajax\\/libs\\/pdfmake\\/0.1.36\\/pdfmake.min.js\",\"type\":3},\"addurls2\":{\"url\":\"https:\\/\\/cdnjs.cloudflare.com\\/ajax\\/libs\\/pdfmake\\/0.1.36\\/vfs_fonts.js\",\"type\":3},\"addurls3\":{\"url\":\"https:\\/\\/cdn.datatables.net\\/v\\/dt\\/jszip-2.5.0\\/dt-1.11.5\\/b-2.2.2\\/b-colvis-2.2.2\\/b-html5-2.2.2\\/b-print-2.2.2\\/cr-1.5.5\\/date-1.1.2\\/fc-4.0.2\\/fh-3.2.2\\/kt-2.6.4\\/r-2.2.9\\/rg-1.1.4\\/rr-1.2.8\\/sc-2.0.5\\/sb-1.3.2\\/sp-2.0.0\\/sl-1.3.4\\/sr-1.1.0\\/datatables.min.js\",\"type\":3}}', 13, '', 1, '2022-10-17 20:56:24', '0000-00-00 00:00:00', 1, '', 9),
(11, '{}', '{}', '{\"addurls0\":{\"url\":\"https:\\/\\/cdn.jsdelivr.net\\/npm\\/nouislider\\/dist\\/nouislider.min.css\",\"type\":2},\"addurls1\":{\"url\":\"https:\\/\\/cdn.jsdelivr.net\\/npm\\/nouislider\\/dist\\/nouislider.min.js\",\"type\":2}}', 14, '', 1, '2023-06-26 15:02:42', '2023-07-24 18:11:41', 3, '', 10),
(12, '{}', '{}', '{\"addurls4\":{\"url\":\"https:\\/\\/cdn.datatables.net\\/v\\/bs5\\/jszip-3.10.1\\/dt-2.0.2\\/b-3.0.1\\/b-colvis-3.0.1\\/b-html5-3.0.1\\/b-print-3.0.1\\/cr-2.0.0\\/date-1.5.2\\/fc-5.0.0\\/fh-4.0.1\\/kt-2.12.0\\/r-3.0.0\\/rg-1.5.0\\/rr-1.5.0\\/sc-2.4.1\\/sb-1.7.0\\/sp-2.3.0\\/sl-2.0.0\\/sr-1.4.0\\/datatables.min.css\",\"type\":3},\"addurls1\":{\"url\":\"https:\\/\\/cdnjs.cloudflare.com\\/ajax\\/libs\\/pdfmake\\/0.2.7\\/pdfmake.min.js\",\"type\":3},\"addurls2\":{\"url\":\"https:\\/\\/cdnjs.cloudflare.com\\/ajax\\/libs\\/pdfmake\\/0.2.7\\/vfs_fonts.js\",\"type\":3},\"addurls3\":{\"url\":\"https:\\/\\/cdn.datatables.net\\/v\\/bs5\\/jszip-3.10.1\\/dt-2.0.2\\/b-3.0.1\\/b-colvis-3.0.1\\/b-html5-3.0.1\\/b-print-3.0.1\\/cr-2.0.0\\/date-1.5.2\\/fc-5.0.0\\/fh-4.0.1\\/kt-2.12.0\\/r-3.0.0\\/rg-1.5.0\\/rr-1.5.0\\/sc-2.4.1\\/sb-1.7.0\\/sp-2.3.0\\/sl-2.0.0\\/sr-1.4.0\\/datatables.min.js\",\"type\":3}}', 15, '', 1, '2024-03-09 16:27:28', '2024-03-09 16:29:30', 2, '', 9);
--
-- Always insure this column name is large enough for long component and view names.
--
ALTER TABLE `#__assets` CHANGE `name` `name` VARCHAR(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'The unique name for the asset.';