@qhealth-design-system/core 1.0.38
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.babelrc +15 -0
- package/.browserslistrc +5 -0
- package/.editorconfig +19 -0
- package/.eslintignore +1 -0
- package/.eslintrc +25 -0
- package/.gitattributes +2 -0
- package/.github/workflows/release_package.yml +103 -0
- package/CHANGELOG.md +14 -0
- package/README.md +534 -0
- package/dist/api/service_finder/schemas.json +1 -0
- package/dist/component-abstract.html +884 -0
- package/dist/component-accordion.html +1157 -0
- package/dist/component-banner.html +928 -0
- package/dist/component-banner_advanced.html +1524 -0
- package/dist/component-banner_basic.html +1189 -0
- package/dist/component-banner_intermediate.html +1288 -0
- package/dist/component-body.html +919 -0
- package/dist/component-breadcrumbs.html +881 -0
- package/dist/component-btn.html +829 -0
- package/dist/component-callout.html +964 -0
- package/dist/component-card_feature.html +1805 -0
- package/dist/component-card_multi_action.html +1965 -0
- package/dist/component-card_no_action.html +1632 -0
- package/dist/component-card_single_action.html +1772 -0
- package/dist/component-code.html +928 -0
- package/dist/component-footer.html +1131 -0
- package/dist/component-forms.html +1297 -0
- package/dist/component-global-elements.html +1243 -0
- package/dist/component-global_alert.html +891 -0
- package/dist/component-header.html +1155 -0
- package/dist/component-in_page_navigation.html +920 -0
- package/dist/component-internal_navigation.html +1097 -0
- package/dist/component-left_hand_navigation.html +995 -0
- package/dist/component-main_navigation.html +999 -0
- package/dist/component-mega_main_navigation.html +1145 -0
- package/dist/component-multi_column.html +1116 -0
- package/dist/component-page_alert.html +911 -0
- package/dist/component-pagination.html +971 -0
- package/dist/component-tag_list.html +979 -0
- package/dist/component-updated_date.html +778 -0
- package/dist/component-widgets.html +851 -0
- package/dist/components/_global/import.xml +95 -0
- package/dist/components/_global/manifest.json +11 -0
- package/dist/components/_global/presentation.js +50 -0
- package/dist/components/_global/static.html +30 -0
- package/dist/components/_template/import.xml +299 -0
- package/dist/components/_template/manifest.json +40 -0
- package/dist/components/_template/presentation.js +12 -0
- package/dist/components/_template/static.html +4 -0
- package/dist/components/abstract/import.xml +231 -0
- package/dist/components/abstract/manifest.json +29 -0
- package/dist/components/abstract/presentation.js +33 -0
- package/dist/components/abstract/static.html +9 -0
- package/dist/components/accordion/import.xml +1929 -0
- package/dist/components/accordion/manifest.json +427 -0
- package/dist/components/accordion/presentation.js +112 -0
- package/dist/components/accordion/static.html +56 -0
- package/dist/components/banner/import.xml +95 -0
- package/dist/components/banner/manifest.json +11 -0
- package/dist/components/banner/presentation.js +138 -0
- package/dist/components/banner/static.html +39 -0
- package/dist/components/banner_advanced/import.xml +1969 -0
- package/dist/components/banner_advanced/manifest.json +1450 -0
- package/dist/components/banner_advanced/presentation.js +564 -0
- package/dist/components/banner_advanced/static.html +159 -0
- package/dist/components/banner_basic/import.xml +907 -0
- package/dist/components/banner_basic/manifest.json +151 -0
- package/dist/components/banner_basic/presentation.js +325 -0
- package/dist/components/banner_basic/static.html +86 -0
- package/dist/components/banner_intermediate/import.xml +1473 -0
- package/dist/components/banner_intermediate/manifest.json +248 -0
- package/dist/components/banner_intermediate/presentation.js +410 -0
- package/dist/components/banner_intermediate/static.html +102 -0
- package/dist/components/body/import.xml +343 -0
- package/dist/components/body/manifest.json +46 -0
- package/dist/components/body/presentation.js +37 -0
- package/dist/components/body/static.html +5 -0
- package/dist/components/breadcrumbs/import.xml +95 -0
- package/dist/components/breadcrumbs/manifest.json +9 -0
- package/dist/components/breadcrumbs/presentation.js +99 -0
- package/dist/components/breadcrumbs/static.html +21 -0
- package/dist/components/callout/import.xml +953 -0
- package/dist/components/callout/manifest.json +121 -0
- package/dist/components/callout/presentation.js +103 -0
- package/dist/components/callout/static.html +10 -0
- package/dist/components/card_feature/import.xml +2355 -0
- package/dist/components/card_feature/manifest.json +1390 -0
- package/dist/components/card_feature/presentation.js +365 -0
- package/dist/components/card_feature/static.html +80 -0
- package/dist/components/card_multi_action/import.xml +1539 -0
- package/dist/components/card_multi_action/manifest.json +1314 -0
- package/dist/components/card_multi_action/presentation.js +638 -0
- package/dist/components/card_multi_action/static.html +120 -0
- package/dist/components/card_no_action/import.xml +1449 -0
- package/dist/components/card_no_action/manifest.json +1264 -0
- package/dist/components/card_no_action/presentation.js +454 -0
- package/dist/components/card_no_action/static.html +94 -0
- package/dist/components/card_single_action/import.xml +1539 -0
- package/dist/components/card_single_action/manifest.json +1273 -0
- package/dist/components/card_single_action/presentation.js +498 -0
- package/dist/components/card_single_action/static.html +103 -0
- package/dist/components/code/import.xml +569 -0
- package/dist/components/code/manifest.json +112 -0
- package/dist/components/code/presentation.js +124 -0
- package/dist/components/code/static.html +15 -0
- package/dist/components/footer/import.xml +95 -0
- package/dist/components/footer/manifest.json +9 -0
- package/dist/components/footer/presentation.js +409 -0
- package/dist/components/footer/static.html +146 -0
- package/dist/components/global_alert/import.xml +95 -0
- package/dist/components/global_alert/manifest.json +9 -0
- package/dist/components/global_alert/presentation.js +81 -0
- package/dist/components/global_alert/static.html +26 -0
- package/dist/components/header/import.xml +95 -0
- package/dist/components/header/manifest.json +11 -0
- package/dist/components/header/presentation.js +190 -0
- package/dist/components/header/static.html +158 -0
- package/dist/components/horizontal_rule/import.xml +547 -0
- package/dist/components/horizontal_rule/manifest.json +69 -0
- package/dist/components/horizontal_rule/presentation.js +50 -0
- package/dist/components/horizontal_rule/static.html +4 -0
- package/dist/components/in_page_navigation/import.xml +253 -0
- package/dist/components/in_page_navigation/manifest.json +35 -0
- package/dist/components/in_page_navigation/presentation.js +14 -0
- package/dist/components/in_page_navigation/static.html +13 -0
- package/dist/components/internal_navigation/import.xml +95 -0
- package/dist/components/internal_navigation/manifest.json +11 -0
- package/dist/components/internal_navigation/presentation.js +165 -0
- package/dist/components/internal_navigation/static.html +130 -0
- package/dist/components/left_hand_navigation/import.xml +299 -0
- package/dist/components/left_hand_navigation/manifest.json +40 -0
- package/dist/components/left_hand_navigation/presentation.js +178 -0
- package/dist/components/left_hand_navigation/static.html +64 -0
- package/dist/components/main_navigation/import.xml +95 -0
- package/dist/components/main_navigation/manifest.json +11 -0
- package/dist/components/main_navigation/presentation.js +150 -0
- package/dist/components/main_navigation/static.html +80 -0
- package/dist/components/mega_main_navigation/import.xml +95 -0
- package/dist/components/mega_main_navigation/manifest.json +9 -0
- package/dist/components/mega_main_navigation/presentation.js +380 -0
- package/dist/components/mega_main_navigation/static.html +153 -0
- package/dist/components/multi_column/import.xml +1631 -0
- package/dist/components/multi_column/manifest.json +233 -0
- package/dist/components/multi_column/presentation.js +249 -0
- package/dist/components/multi_column/static.html +36 -0
- package/dist/components/page_alert/import.xml +479 -0
- package/dist/components/page_alert/manifest.json +63 -0
- package/dist/components/page_alert/presentation.js +67 -0
- package/dist/components/page_alert/static.html +8 -0
- package/dist/components/pagination/import.xml +95 -0
- package/dist/components/pagination/manifest.json +42 -0
- package/dist/components/pagination/presentation.js +84 -0
- package/dist/components/pagination/static.html +5 -0
- package/dist/components/updated_date/import.xml +95 -0
- package/dist/components/updated_date/manifest.json +9 -0
- package/dist/components/updated_date/presentation.js +34 -0
- package/dist/components/updated_date/static.html +6 -0
- package/dist/components/widgets/import.xml +95 -0
- package/dist/components/widgets/manifest.json +9 -0
- package/dist/components/widgets/presentation.js +40 -0
- package/dist/components/widgets/static.html +0 -0
- package/dist/components.html +790 -0
- package/dist/externals/componentPreview.js +101 -0
- package/dist/externals/dsComponentLoader.js +410 -0
- package/dist/externals/esri-leaflet-vector.js +5 -0
- package/dist/externals/esri-leaflet.js +12 -0
- package/dist/externals/fb-handlebars.min.js +29 -0
- package/dist/externals/fb-typeahead.bundle.min.js +6 -0
- package/dist/externals/funnelback.autocompletion-2.6.0.js +678 -0
- package/dist/externals/getPagination.js +62 -0
- package/dist/externals/handlebars.min-v4.7.6.js +29 -0
- package/dist/externals/leaflet.js +6 -0
- package/dist/externals/populateDatastoreSim.js +381 -0
- package/dist/externals/tinymce_classes.css +62 -0
- package/dist/home.html +694 -0
- package/dist/index.html +710 -0
- package/dist/inner-with-nav.html +1853 -0
- package/dist/inner.html +671 -0
- package/dist/js/helpers.js +892 -0
- package/dist/js/main.js +55 -0
- package/dist/js/main.js.map +1 -0
- package/dist/js/runtime.js +2 -0
- package/dist/js/runtime.js.map +1 -0
- package/dist/main.css +918 -0
- package/dist/main.css.map +1 -0
- package/dist/mysource_files/ajax-loader.gif +0 -0
- package/dist/mysource_files/favicons/favicon.ico +0 -0
- package/dist/mysource_files/img/100x100.jpg +0 -0
- package/dist/mysource_files/img/600x260.jpg +0 -0
- package/dist/mysource_files/img/Heart-Pattern-Dark.png +0 -0
- package/dist/mysource_files/img/Heart-Pattern.png +0 -0
- package/dist/mysource_files/img/banner-background--desktop.png +0 -0
- package/dist/mysource_files/img/banner-background--mobile.png +0 -0
- package/dist/mysource_files/img/banner-bg.png +0 -0
- package/dist/mysource_files/img/banner.png +0 -0
- package/dist/mysource_files/img/card--brand.png +0 -0
- package/dist/mysource_files/img/card--components.png +0 -0
- package/dist/mysource_files/img/card--content.png +0 -0
- package/dist/mysource_files/img/header-logo-agov.png +0 -0
- package/dist/mysource_files/img/header-logo-qgov--dark.svg +63 -0
- package/dist/mysource_files/img/header-logo-qgov--light.svg +56 -0
- package/dist/mysource_files/img/header-logo-qgov--pre-dark.svg +56 -0
- package/dist/mysource_files/img/header-search.svg +3 -0
- package/dist/mysource_files/img/layers-2x.png +0 -0
- package/dist/mysource_files/img/layers.png +0 -0
- package/dist/mysource_files/img/marker-icon.png +0 -0
- package/dist/mysource_files/img/svg-icons.svg +155 -0
- package/dist/mysource_files/img/video-play.svg +3 -0
- package/dist/mysource_files/slick.eot +0 -0
- package/dist/mysource_files/slick.svg +14 -0
- package/dist/mysource_files/slick.ttf +0 -0
- package/dist/mysource_files/slick.woff +0 -0
- package/package-lock.json +14276 -0
- package/package.json +79 -0
- package/scripts/add_component.sh +109 -0
- package/src/assets/favicons/favicon.ico +0 -0
- package/src/assets/img/100x100.jpg +0 -0
- package/src/assets/img/600x260.jpg +0 -0
- package/src/assets/img/Heart-Pattern-Dark.png +0 -0
- package/src/assets/img/Heart-Pattern.png +0 -0
- package/src/assets/img/banner-background--desktop.png +0 -0
- package/src/assets/img/banner-background--mobile.png +0 -0
- package/src/assets/img/banner-bg.png +0 -0
- package/src/assets/img/banner.png +0 -0
- package/src/assets/img/card--brand.png +0 -0
- package/src/assets/img/card--components.png +0 -0
- package/src/assets/img/card--content.png +0 -0
- package/src/assets/img/header-logo-agov.png +0 -0
- package/src/assets/img/header-logo-qgov--dark.svg +63 -0
- package/src/assets/img/header-logo-qgov--light.svg +56 -0
- package/src/assets/img/header-logo-qgov--pre-dark.svg +56 -0
- package/src/assets/img/header-search.svg +3 -0
- package/src/assets/img/layers-2x.png +0 -0
- package/src/assets/img/layers.png +0 -0
- package/src/assets/img/marker-icon.png +0 -0
- package/src/assets/img/svg-icons.svg +155 -0
- package/src/assets/img/video-play.svg +3 -0
- package/src/components/_global/css/admin/component.scss +71 -0
- package/src/components/_global/css/body/component.scss +897 -0
- package/src/components/_global/css/btn/component.scss +564 -0
- package/src/components/_global/css/cta_links/component.scss +121 -0
- package/src/components/_global/css/direction_links/component.scss +196 -0
- package/src/components/_global/css/example/component.scss +54 -0
- package/src/components/_global/css/forms/control_inputs/component.scss +349 -0
- package/src/components/_global/css/forms/general/component.scss +298 -0
- package/src/components/_global/css/forms/select/component.scss +230 -0
- package/src/components/_global/css/forms/text/component.scss +402 -0
- package/src/components/_global/css/global.scss +42 -0
- package/src/components/_global/css/grid-12/component.scss +331 -0
- package/src/components/_global/css/headings/component.scss +172 -0
- package/src/components/_global/css/icons/component.scss +29 -0
- package/src/components/_global/css/link_columns/component.scss +194 -0
- package/src/components/_global/css/link_list/component.scss +37 -0
- package/src/components/_global/css/modal/component.scss +182 -0
- package/src/components/_global/css/slick/component.scss +25 -0
- package/src/components/_global/css/table/component.scss +211 -0
- package/src/components/_global/css/tabs/component.scss +43 -0
- package/src/components/_global/css/tags/component.scss +272 -0
- package/src/components/_global/css/user_location/component.scss +38 -0
- package/src/components/_global/css/version/component.scss +47 -0
- package/src/components/_global/html/component.hbs +108 -0
- package/src/components/_global/html/ds_component.hbs +30 -0
- package/src/components/_global/html/head.html +63 -0
- package/src/components/_global/html/scripts.html +58 -0
- package/src/components/_global/js/_polyfills/global.js +18 -0
- package/src/components/_global/js/animate/global.js +324 -0
- package/src/components/_global/js/forms/global.js +182 -0
- package/src/components/_global/js/global.js +302 -0
- package/src/components/_global/js/manifest.json +11 -0
- package/src/components/_global/js/modal/global.js +236 -0
- package/src/components/_global/js/slick/global.js +153 -0
- package/src/components/_global/js/tabs/global.js +305 -0
- package/src/components/_global/js/user_location/global.js +116 -0
- package/src/components/_template/css/component.scss +22 -0
- package/src/components/_template/html/component-page.html +85 -0
- package/src/components/_template/html/component.hbs +4 -0
- package/src/components/_template/js/global.js +6 -0
- package/src/components/_template/js/manifest.json +40 -0
- package/src/components/abstract/css/component.scss +91 -0
- package/src/components/abstract/html/component.hbs +9 -0
- package/src/components/abstract/js/manifest.json +29 -0
- package/src/components/accordion/css/component.scss +329 -0
- package/src/components/accordion/html/accordion-group.html +157 -0
- package/src/components/accordion/html/component.hbs +46 -0
- package/src/components/accordion/html/default.html +92 -0
- package/src/components/accordion/js/global.js +413 -0
- package/src/components/accordion/js/manifest.json +427 -0
- package/src/components/banner/css/component.scss +664 -0
- package/src/components/banner/html/component.hbs +52 -0
- package/src/components/banner/js/manifest.json +11 -0
- package/src/components/banner_advanced/css/component.scss +7 -0
- package/src/components/banner_advanced/html/component.hbs +213 -0
- package/src/components/banner_advanced/js/global.js +6 -0
- package/src/components/banner_advanced/js/manifest.json +1450 -0
- package/src/components/banner_basic/css/component.scss +52 -0
- package/src/components/banner_basic/html/component.hbs +130 -0
- package/src/components/banner_basic/js/global.js +6 -0
- package/src/components/banner_basic/js/manifest.json +151 -0
- package/src/components/banner_intermediate/css/component.scss +276 -0
- package/src/components/banner_intermediate/html/component.hbs +165 -0
- package/src/components/banner_intermediate/js/global.js +6 -0
- package/src/components/banner_intermediate/js/manifest.json +248 -0
- package/src/components/body/css/component.scss +16 -0
- package/src/components/body/html/component.hbs +5 -0
- package/src/components/body/js/manifest.json +46 -0
- package/src/components/breadcrumbs/css/component.scss +236 -0
- package/src/components/breadcrumbs/html/component.hbs +29 -0
- package/src/components/breadcrumbs/js/manifest.json +9 -0
- package/src/components/callout/css/component.scss +146 -0
- package/src/components/callout/html/component.hbs +28 -0
- package/src/components/callout/js/manifest.json +121 -0
- package/src/components/card_feature/css/component.scss +224 -0
- package/src/components/card_feature/html/component.hbs +129 -0
- package/src/components/card_feature/js/manifest.json +1390 -0
- package/src/components/card_multi_action/css/component.scss +229 -0
- package/src/components/card_multi_action/html/component.hbs +192 -0
- package/src/components/card_multi_action/js/manifest.json +1314 -0
- package/src/components/card_no_action/css/component.scss +551 -0
- package/src/components/card_no_action/html/component.hbs +127 -0
- package/src/components/card_no_action/js/global.js +6 -0
- package/src/components/card_no_action/js/manifest.json +1264 -0
- package/src/components/card_single_action/css/component.scss +164 -0
- package/src/components/card_single_action/html/component.hbs +161 -0
- package/src/components/card_single_action/js/manifest.json +1273 -0
- package/src/components/code/css/component.scss +355 -0
- package/src/components/code/html/component.hbs +84 -0
- package/src/components/code/js/global.js +160 -0
- package/src/components/code/js/manifest.json +112 -0
- package/src/components/footer/css/component.scss +437 -0
- package/src/components/footer/html/component.hbs +177 -0
- package/src/components/footer/js/manifest.json +9 -0
- package/src/components/global_alert/css/component.scss +169 -0
- package/src/components/global_alert/html/component.hbs +38 -0
- package/src/components/global_alert/js/global.js +39 -0
- package/src/components/global_alert/js/manifest.json +9 -0
- package/src/components/header/css/component.scss +697 -0
- package/src/components/header/html/component.hbs +186 -0
- package/src/components/header/js/global.js +188 -0
- package/src/components/header/js/manifest.json +11 -0
- package/src/components/horizontal_rule/css/component.scss +37 -0
- package/src/components/horizontal_rule/html/component.hbs +6 -0
- package/src/components/horizontal_rule/js/manifest.json +69 -0
- package/src/components/in_page_navigation/css/component.scss +54 -0
- package/src/components/in_page_navigation/html/component.hbs +17 -0
- package/src/components/in_page_navigation/js/global.js +51 -0
- package/src/components/in_page_navigation/js/manifest.json +35 -0
- package/src/components/internal_navigation/css/component.scss +437 -0
- package/src/components/internal_navigation/html/component.hbs +57 -0
- package/src/components/internal_navigation/js/manifest.json +11 -0
- package/src/components/left_hand_navigation/css/component.scss +280 -0
- package/src/components/left_hand_navigation/html/component.hbs +77 -0
- package/src/components/left_hand_navigation/js/global.js +36 -0
- package/src/components/left_hand_navigation/js/manifest.json +40 -0
- package/src/components/main_navigation/css/component.scss +706 -0
- package/src/components/main_navigation/html/component.hbs +87 -0
- package/src/components/main_navigation/js/global.js +373 -0
- package/src/components/main_navigation/js/manifest.json +11 -0
- package/src/components/mega_main_navigation/css/component.scss +535 -0
- package/src/components/mega_main_navigation/html/component.hbs +157 -0
- package/src/components/mega_main_navigation/js/global.js +170 -0
- package/src/components/mega_main_navigation/js/manifest.json +9 -0
- package/src/components/multi_column/css/component.scss +11 -0
- package/src/components/multi_column/html/component.hbs +98 -0
- package/src/components/multi_column/js/manifest.json +233 -0
- package/src/components/page_alert/css/component.scss +132 -0
- package/src/components/page_alert/html/component.hbs +26 -0
- package/src/components/page_alert/js/manifest.json +63 -0
- package/src/components/pagination/css/component.scss +196 -0
- package/src/components/pagination/html/component.hbs +41 -0
- package/src/components/pagination/html/default.html +30 -0
- package/src/components/pagination/js/manifest.json +42 -0
- package/src/components/search_box/css/component.scss +48 -0
- package/src/components/search_box/html/component.html +11 -0
- package/src/components/search_box/js/manifest.json +73 -0
- package/src/components/updated_date/css/component.scss +0 -0
- package/src/components/updated_date/html/component.hbs +31 -0
- package/src/components/updated_date/js/manifest.json +9 -0
- package/src/components/widgets/css/component.scss +82 -0
- package/src/components/widgets/html/component.hbs +19 -0
- package/src/components/widgets/html/default.html +4 -0
- package/src/components/widgets/js/current.json +483 -0
- package/src/components/widgets/js/manifest.json +9 -0
- package/src/components/widgets/js/site.json +358 -0
- package/src/data/current.json +522 -0
- package/src/data/current_admin.json +305 -0
- package/src/data/model_component.js +14 -0
- package/src/data/site.json +762 -0
- package/src/externals/componentPreview.js +101 -0
- package/src/externals/dsComponentLoader.js +410 -0
- package/src/externals/esri-leaflet-vector.js +5 -0
- package/src/externals/esri-leaflet.js +12 -0
- package/src/externals/fb-handlebars.min.js +29 -0
- package/src/externals/fb-typeahead.bundle.min.js +6 -0
- package/src/externals/funnelback.autocompletion-2.6.0.js +678 -0
- package/src/externals/getPagination.js +62 -0
- package/src/externals/handlebars.min-v4.7.6.js +29 -0
- package/src/externals/leaflet.js +6 -0
- package/src/externals/populateDatastoreSim.js +381 -0
- package/src/externals/tinymce_classes.css +62 -0
- package/src/helpers/Handlebars/appendIf.js +6 -0
- package/src/helpers/Handlebars/arrayLength.js +3 -0
- package/src/helpers/Handlebars/arrayWith.js +13 -0
- package/src/helpers/Handlebars/capitaliseFirst.js +8 -0
- package/src/helpers/Handlebars/charMax.js +8 -0
- package/src/helpers/Handlebars/checkIf.js +20 -0
- package/src/helpers/Handlebars/columnWidth.js +39 -0
- package/src/helpers/Handlebars/contains.js +7 -0
- package/src/helpers/Handlebars/createMap.js +19 -0
- package/src/helpers/Handlebars/dsMapFromID.js +8 -0
- package/src/helpers/Handlebars/dsMapFromProp.js +8 -0
- package/src/helpers/Handlebars/eachByName.js +18 -0
- package/src/helpers/Handlebars/eachDS.js +7 -0
- package/src/helpers/Handlebars/eachFrom.js +13 -0
- package/src/helpers/Handlebars/eachUpTo.js +8 -0
- package/src/helpers/Handlebars/eachWhen.js +33 -0
- package/src/helpers/Handlebars/formatDate.js +62 -0
- package/src/helpers/Handlebars/generateDates.js +74 -0
- package/src/helpers/Handlebars/getDistance.js +40 -0
- package/src/helpers/Handlebars/getObject.js +3 -0
- package/src/helpers/Handlebars/getParamaterByName.js +11 -0
- package/src/helpers/Handlebars/getPossibleValues.js +13 -0
- package/src/helpers/Handlebars/getProp.js +3 -0
- package/src/helpers/Handlebars/getTags.js +20 -0
- package/src/helpers/Handlebars/getTitle.js +4 -0
- package/src/helpers/Handlebars/ifAny.js +9 -0
- package/src/helpers/Handlebars/ifArray.js +3 -0
- package/src/helpers/Handlebars/ifCond.js +31 -0
- package/src/helpers/Handlebars/ifEqualsOrChained.js +12 -0
- package/src/helpers/Handlebars/ifProp.js +3 -0
- package/src/helpers/Handlebars/if_eq.js +9 -0
- package/src/helpers/Handlebars/inArray.js +8 -0
- package/src/helpers/Handlebars/isPage.js +7 -0
- package/src/helpers/Handlebars/itemAt.js +11 -0
- package/src/helpers/Handlebars/jsonParse.js +8 -0
- package/src/helpers/Handlebars/jsonStringify.js +3 -0
- package/src/helpers/Handlebars/listAZ.js +51 -0
- package/src/helpers/Handlebars/listAZOptions.js +34 -0
- package/src/helpers/Handlebars/listByClosest.js +60 -0
- package/src/helpers/Handlebars/listByClosestWithOffset.js +63 -0
- package/src/helpers/Handlebars/math.js +11 -0
- package/src/helpers/Handlebars/newLineToBreak.js +6 -0
- package/src/helpers/Handlebars/nonBreakingSpaces.js +6 -0
- package/src/helpers/Handlebars/objectFromSelect.js +21 -0
- package/src/helpers/Handlebars/partialReplace.js +9 -0
- package/src/helpers/Handlebars/printAccordion.js +24 -0
- package/src/helpers/Handlebars/replace.js +8 -0
- package/src/helpers/Handlebars/replaceMany.js +5 -0
- package/src/helpers/Handlebars/sizeFormat.js +11 -0
- package/src/helpers/Handlebars/split.js +6 -0
- package/src/helpers/Handlebars/toUpperCase.js +7 -0
- package/src/helpers/Handlebars/urldecode.js +3 -0
- package/src/helpers/Handlebars/urlencode.js +3 -0
- package/src/helpers/Handlebars/withinObject.js +13 -0
- package/src/html/component-abstract.html +86 -0
- package/src/html/component-accordion.html +87 -0
- package/src/html/component-banner.html +84 -0
- package/src/html/component-banner_advanced.html +97 -0
- package/src/html/component-banner_basic.html +163 -0
- package/src/html/component-banner_intermediate.html +91 -0
- package/src/html/component-body.html +116 -0
- package/src/html/component-breadcrumbs.html +88 -0
- package/src/html/component-btn.html +117 -0
- package/src/html/component-callout.html +86 -0
- package/src/html/component-card_feature.html +631 -0
- package/src/html/component-card_multi_action.html +793 -0
- package/src/html/component-card_no_action.html +521 -0
- package/src/html/component-card_single_action.html +631 -0
- package/src/html/component-code.html +84 -0
- package/src/html/component-footer.html +87 -0
- package/src/html/component-forms.html +585 -0
- package/src/html/component-global-elements.html +531 -0
- package/src/html/component-global_alert.html +87 -0
- package/src/html/component-header.html +88 -0
- package/src/html/component-in_page_navigation.html +109 -0
- package/src/html/component-internal_navigation.html +87 -0
- package/src/html/component-left_hand_navigation.html +85 -0
- package/src/html/component-main_navigation.html +87 -0
- package/src/html/component-mega_main_navigation.html +88 -0
- package/src/html/component-multi_column.html +86 -0
- package/src/html/component-page_alert.html +86 -0
- package/src/html/component-pagination.html +86 -0
- package/src/html/component-tag_list.html +340 -0
- package/src/html/component-updated_date.html +88 -0
- package/src/html/component-widgets.html +90 -0
- package/src/html/components.html +136 -0
- package/src/html/home.html +126 -0
- package/src/html/index.html +142 -0
- package/src/html/inner-with-nav.html +1126 -0
- package/src/html/inner.html +107 -0
- package/src/index.js +12 -0
- package/src/styles/global.scss +120 -0
- package/src/styles/imports/figma.scss +0 -0
- package/src/styles/imports/functions.scss +519 -0
- package/src/styles/imports/mixins.scss +658 -0
- package/src/styles/imports/placeholders.scss +68 -0
- package/src/styles/imports/utilities.scss +185 -0
- package/src/styles/imports/variables.scss +484 -0
- package/src/styles/postcss.config.js +4 -0
- package/webpack/JsonMergePlugin.js +35 -0
- package/webpack/PrecompilePlugin.js +369 -0
- package/webpack/webpack.common.js +151 -0
- package/webpack/webpack.dev.js +54 -0
- package/webpack/webpack.prod.js +70 -0
|
@@ -0,0 +1,1539 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
|
2
|
+
<actions>
|
|
3
|
+
<action>
|
|
4
|
+
<action_id>create_Content_Container_Template_4666491277</action_id>
|
|
5
|
+
<action_type>create_asset</action_type>
|
|
6
|
+
<type_code>Content_Container_Template</type_code>
|
|
7
|
+
<link_type>1</link_type>
|
|
8
|
+
<parentid>1</parentid>
|
|
9
|
+
<value></value>
|
|
10
|
+
<is_dependant>0</is_dependant>
|
|
11
|
+
<is_exclusive>0</is_exclusive>
|
|
12
|
+
</action>
|
|
13
|
+
<action>
|
|
14
|
+
<action_id>set_Content_Container_Template_4666491277_name</action_id>
|
|
15
|
+
<action_type>set_attribute_value</action_type>
|
|
16
|
+
<asset>[[output://create_Content_Container_Template_4666491277.assetid]]</asset>
|
|
17
|
+
<attribute>name</attribute>
|
|
18
|
+
<value><![CDATA[Cards]]></value>
|
|
19
|
+
</action>
|
|
20
|
+
|
|
21
|
+
<action>
|
|
22
|
+
<action_id>set_Content_Container_Template_4666491277_edit_interface_in_admin</action_id>
|
|
23
|
+
<action_type>set_attribute_value</action_type>
|
|
24
|
+
<asset>[[output://create_Content_Container_Template_4666491277.assetid]]</asset>
|
|
25
|
+
<attribute>edit_interface_in_admin</attribute>
|
|
26
|
+
<value><![CDATA[1]]></value>
|
|
27
|
+
</action>
|
|
28
|
+
|
|
29
|
+
<action>
|
|
30
|
+
<action_id>set_Content_Container_Template_4666491277_icon_color</action_id>
|
|
31
|
+
<action_type>set_attribute_value</action_type>
|
|
32
|
+
<asset>[[output://create_Content_Container_Template_4666491277.assetid]]</asset>
|
|
33
|
+
<attribute>icon_color</attribute>
|
|
34
|
+
<value><![CDATA[blue]]></value>
|
|
35
|
+
</action>
|
|
36
|
+
|
|
37
|
+
<action>
|
|
38
|
+
<action_id>create_Metadata_Schema_2658337520</action_id>
|
|
39
|
+
<action_type>create_asset</action_type>
|
|
40
|
+
<type_code>Metadata_Schema</type_code>
|
|
41
|
+
<link_type>1</link_type>
|
|
42
|
+
<parentid>[[output://create_Content_Container_Template_4666491277.assetid]]</parentid>
|
|
43
|
+
<value></value>
|
|
44
|
+
<is_dependant>0</is_dependant>
|
|
45
|
+
<is_exclusive>0</is_exclusive>
|
|
46
|
+
</action>
|
|
47
|
+
<action>
|
|
48
|
+
<action_id>set_Metadata_Schema_2658337520_name</action_id>
|
|
49
|
+
<action_type>set_attribute_value</action_type>
|
|
50
|
+
<asset>[[output://create_Metadata_Schema_2658337520.assetid]]</asset>
|
|
51
|
+
<attribute>name</attribute>
|
|
52
|
+
<value><![CDATA[Cards]]></value>
|
|
53
|
+
</action>
|
|
54
|
+
<action>
|
|
55
|
+
<action_id>set_permission_2658337520_read_5</action_id>
|
|
56
|
+
<action_type>set_permission</action_type>
|
|
57
|
+
<asset>[[output://create_Metadata_Schema_2658337520.assetid]]</asset>
|
|
58
|
+
<permission>1</permission>
|
|
59
|
+
<granted>1</granted>
|
|
60
|
+
<userid>[[system://public_user]]</userid>
|
|
61
|
+
</action>
|
|
62
|
+
|
|
63
|
+
<action>
|
|
64
|
+
<action_id>create_Metadata_Section_691774053</action_id>
|
|
65
|
+
<action_type>create_asset</action_type>
|
|
66
|
+
<type_code>Metadata_Section</type_code>
|
|
67
|
+
<link_type>2</link_type>
|
|
68
|
+
<parentid>[[output://create_Metadata_Schema_2658337520.assetid]]</parentid>
|
|
69
|
+
<value></value>
|
|
70
|
+
<is_dependant>1</is_dependant>
|
|
71
|
+
<is_exclusive>0</is_exclusive>
|
|
72
|
+
</action>
|
|
73
|
+
<action>
|
|
74
|
+
<action_id>add_Metadata_Section_691774053_path</action_id>
|
|
75
|
+
<action_type>add_web_path</action_type>
|
|
76
|
+
<asset>[[output://create_Metadata_Section_691774053.assetid]]</asset>
|
|
77
|
+
<parent_asset>[[output://create_Metadata_Schema_2658337520.assetid]]</parent_asset>
|
|
78
|
+
<path>settings</path>
|
|
79
|
+
</action>
|
|
80
|
+
<action>
|
|
81
|
+
<action_id>set_Metadata_Section_691774053_name</action_id>
|
|
82
|
+
<action_type>set_attribute_value</action_type>
|
|
83
|
+
<asset>[[output://create_Metadata_Section_691774053.assetid]]</asset>
|
|
84
|
+
<attribute>name</attribute>
|
|
85
|
+
<value><![CDATA[Settings]]></value>
|
|
86
|
+
</action>
|
|
87
|
+
<action>
|
|
88
|
+
<action_id>set_permission_691774053_read_5</action_id>
|
|
89
|
+
<action_type>set_permission</action_type>
|
|
90
|
+
<asset>[[output://create_Metadata_Section_691774053.assetid]]</asset>
|
|
91
|
+
<permission>1</permission>
|
|
92
|
+
<granted>1</granted>
|
|
93
|
+
<userid>[[system://public_user]]</userid>
|
|
94
|
+
</action>
|
|
95
|
+
|
|
96
|
+
<action>
|
|
97
|
+
<action_id>create_metadata_field_related_asset_7433924581</action_id>
|
|
98
|
+
<action_type>create_asset</action_type>
|
|
99
|
+
<type_code>metadata_field_related_asset</type_code>
|
|
100
|
+
<link_type>2</link_type>
|
|
101
|
+
<parentid>[[output://create_Metadata_Section_691774053.assetid]]</parentid>
|
|
102
|
+
<value></value>
|
|
103
|
+
<is_dependant>1</is_dependant>
|
|
104
|
+
<is_exclusive>0</is_exclusive>
|
|
105
|
+
</action>
|
|
106
|
+
<action>
|
|
107
|
+
<action_id>set_metadata_field_related_asset_7433924581_name</action_id>
|
|
108
|
+
<action_type>set_attribute_value</action_type>
|
|
109
|
+
<asset>[[output://create_metadata_field_related_asset_7433924581.assetid]]</asset>
|
|
110
|
+
<attribute>name</attribute>
|
|
111
|
+
<value><![CDATA[root_node]]></value>
|
|
112
|
+
</action>
|
|
113
|
+
<action>
|
|
114
|
+
<action_id>set_metadata_field_related_asset_7433924581_friendly_name</action_id>
|
|
115
|
+
<action_type>set_attribute_value</action_type>
|
|
116
|
+
<asset>[[output://create_metadata_field_related_asset_7433924581.assetid]]</asset>
|
|
117
|
+
<attribute>friendly_name</attribute>
|
|
118
|
+
<value><![CDATA[Parent asset]]></value>
|
|
119
|
+
</action>
|
|
120
|
+
<action>
|
|
121
|
+
<action_id>set_metadata_field_related_asset_7433924581_default</action_id>
|
|
122
|
+
<action_type>set_attribute_value</action_type>
|
|
123
|
+
<asset>[[output://create_metadata_field_related_asset_7433924581.assetid]]</asset>
|
|
124
|
+
<attribute>default</attribute>
|
|
125
|
+
<value><![CDATA[]]></value>
|
|
126
|
+
</action>
|
|
127
|
+
<action>
|
|
128
|
+
<action_id>set_metadata_field_related_asset_7433924581_description</action_id>
|
|
129
|
+
<action_type>set_attribute_value</action_type>
|
|
130
|
+
<asset>[[output://create_metadata_field_related_asset_7433924581.assetid]]</asset>
|
|
131
|
+
<attribute>description</attribute>
|
|
132
|
+
<value><![CDATA[]]></value>
|
|
133
|
+
</action>
|
|
134
|
+
<action>
|
|
135
|
+
<action_id>set_metadata_field_related_asset_7433924581_editable</action_id>
|
|
136
|
+
<action_type>set_attribute_value</action_type>
|
|
137
|
+
<asset>[[output://create_metadata_field_related_asset_7433924581.assetid]]</asset>
|
|
138
|
+
<attribute>editable</attribute>
|
|
139
|
+
<value><![CDATA[1]]></value>
|
|
140
|
+
</action>
|
|
141
|
+
<action>
|
|
142
|
+
<action_id>set_metadata_field_related_asset_7433924581_editable</action_id>
|
|
143
|
+
<action_type>set_attribute_value</action_type>
|
|
144
|
+
<asset>[[output://create_metadata_field_related_asset_7433924581.assetid]]</asset>
|
|
145
|
+
<attribute>editable</attribute>
|
|
146
|
+
<value><![CDATA[1]]></value>
|
|
147
|
+
</action>
|
|
148
|
+
<action>
|
|
149
|
+
<action_id>set_metadata_field_related_asset_7433924581_required</action_id>
|
|
150
|
+
<action_type>set_attribute_value</action_type>
|
|
151
|
+
<asset>[[output://create_metadata_field_related_asset_7433924581.assetid]]</asset>
|
|
152
|
+
<attribute>required</attribute>
|
|
153
|
+
<value><![CDATA[0]]></value>
|
|
154
|
+
</action>
|
|
155
|
+
<action>
|
|
156
|
+
<action_id>set_permission_7433924581_read_5</action_id>
|
|
157
|
+
<action_type>set_permission</action_type>
|
|
158
|
+
<asset>[[output://create_metadata_field_related_asset_7433924581.assetid]]</asset>
|
|
159
|
+
<permission>1</permission>
|
|
160
|
+
<granted>1</granted>
|
|
161
|
+
<userid>[[system://public_user]]</userid>
|
|
162
|
+
</action>
|
|
163
|
+
|
|
164
|
+
<action>
|
|
165
|
+
<action_id>create_metadata_field_select_2176613324</action_id>
|
|
166
|
+
<action_type>create_asset</action_type>
|
|
167
|
+
<type_code>metadata_field_select</type_code>
|
|
168
|
+
<link_type>2</link_type>
|
|
169
|
+
<parentid>[[output://create_Metadata_Section_691774053.assetid]]</parentid>
|
|
170
|
+
<value></value>
|
|
171
|
+
<is_dependant>1</is_dependant>
|
|
172
|
+
<is_exclusive>0</is_exclusive>
|
|
173
|
+
</action>
|
|
174
|
+
<action>
|
|
175
|
+
<action_id>set_metadata_field_select_2176613324_name</action_id>
|
|
176
|
+
<action_type>set_attribute_value</action_type>
|
|
177
|
+
<asset>[[output://create_metadata_field_select_2176613324.assetid]]</asset>
|
|
178
|
+
<attribute>name</attribute>
|
|
179
|
+
<value><![CDATA[col_width]]></value>
|
|
180
|
+
</action>
|
|
181
|
+
<action>
|
|
182
|
+
<action_id>set_metadata_field_select_2176613324_friendly_name</action_id>
|
|
183
|
+
<action_type>set_attribute_value</action_type>
|
|
184
|
+
<asset>[[output://create_metadata_field_select_2176613324.assetid]]</asset>
|
|
185
|
+
<attribute>friendly_name</attribute>
|
|
186
|
+
<value><![CDATA[Number of columns]]></value>
|
|
187
|
+
</action>
|
|
188
|
+
<action>
|
|
189
|
+
<action_id>set_metadata_field_select_2176613324_default</action_id>
|
|
190
|
+
<action_type>set_attribute_value</action_type>
|
|
191
|
+
<asset>[[output://create_metadata_field_select_2176613324.assetid]]</asset>
|
|
192
|
+
<attribute>default</attribute>
|
|
193
|
+
<value><![CDATA[col-xs-12]]></value>
|
|
194
|
+
</action>
|
|
195
|
+
<action>
|
|
196
|
+
<action_id>set_metadata_field_select_2176613324_description</action_id>
|
|
197
|
+
<action_type>set_attribute_value</action_type>
|
|
198
|
+
<asset>[[output://create_metadata_field_select_2176613324.assetid]]</asset>
|
|
199
|
+
<attribute>description</attribute>
|
|
200
|
+
<value><![CDATA[]]></value>
|
|
201
|
+
</action>
|
|
202
|
+
<action>
|
|
203
|
+
<action_id>set_metadata_field_select_2176613324_editable</action_id>
|
|
204
|
+
<action_type>set_attribute_value</action_type>
|
|
205
|
+
<asset>[[output://create_metadata_field_select_2176613324.assetid]]</asset>
|
|
206
|
+
<attribute>editable</attribute>
|
|
207
|
+
<value><![CDATA[1]]></value>
|
|
208
|
+
</action>
|
|
209
|
+
<action>
|
|
210
|
+
<action_id>set_metadata_field_select_2176613324_editable</action_id>
|
|
211
|
+
<action_type>set_attribute_value</action_type>
|
|
212
|
+
<asset>[[output://create_metadata_field_select_2176613324.assetid]]</asset>
|
|
213
|
+
<attribute>editable</attribute>
|
|
214
|
+
<value><![CDATA[1]]></value>
|
|
215
|
+
</action>
|
|
216
|
+
<action>
|
|
217
|
+
<action_id>set_metadata_field_select_2176613324_required</action_id>
|
|
218
|
+
<action_type>set_attribute_value</action_type>
|
|
219
|
+
<asset>[[output://create_metadata_field_select_2176613324.assetid]]</asset>
|
|
220
|
+
<attribute>required</attribute>
|
|
221
|
+
<value><![CDATA[0]]></value>
|
|
222
|
+
</action>
|
|
223
|
+
<action>
|
|
224
|
+
<action_id>set_permission_2176613324_read_5</action_id>
|
|
225
|
+
<action_type>set_permission</action_type>
|
|
226
|
+
<asset>[[output://create_metadata_field_select_2176613324.assetid]]</asset>
|
|
227
|
+
<permission>1</permission>
|
|
228
|
+
<granted>1</granted>
|
|
229
|
+
<userid>[[system://public_user]]</userid>
|
|
230
|
+
</action>
|
|
231
|
+
|
|
232
|
+
<action>
|
|
233
|
+
<action_id>set_metadata_field_select_2176613324_select_options</action_id>
|
|
234
|
+
<action_type>set_attribute_value</action_type>
|
|
235
|
+
<asset>[[output://create_metadata_field_select_2176613324.assetid]]</asset>
|
|
236
|
+
<attribute>select_options</attribute>
|
|
237
|
+
<value><![CDATA[array ('col-xs-12' => 'One','col-lg-6' => 'Two','col-lg-4' => 'Three','col-lg-3' => 'Four',);]]></value>
|
|
238
|
+
</action>
|
|
239
|
+
<action>
|
|
240
|
+
<action_id>set_{f.type}_2176613324_edit_params</action_id>
|
|
241
|
+
<action_type>set_attribute_value</action_type>
|
|
242
|
+
<asset>[[output://create_metadata_field_select_2176613324.assetid]]</asset>
|
|
243
|
+
<attribute>edit_params</attribute>
|
|
244
|
+
<value><![CDATA[array (
|
|
245
|
+
'style' => 'list',
|
|
246
|
+
'type' => 'table',
|
|
247
|
+
'height' => '',
|
|
248
|
+
'columns' => '1',
|
|
249
|
+
'empty_text' => '',
|
|
250
|
+
'extras' => '',
|
|
251
|
+
);]]></value>
|
|
252
|
+
</action>
|
|
253
|
+
|
|
254
|
+
<action>
|
|
255
|
+
<action_id>create_metadata_field_select_9892225809</action_id>
|
|
256
|
+
<action_type>create_asset</action_type>
|
|
257
|
+
<type_code>metadata_field_select</type_code>
|
|
258
|
+
<link_type>2</link_type>
|
|
259
|
+
<parentid>[[output://create_Metadata_Section_691774053.assetid]]</parentid>
|
|
260
|
+
<value></value>
|
|
261
|
+
<is_dependant>1</is_dependant>
|
|
262
|
+
<is_exclusive>0</is_exclusive>
|
|
263
|
+
</action>
|
|
264
|
+
<action>
|
|
265
|
+
<action_id>set_metadata_field_select_9892225809_name</action_id>
|
|
266
|
+
<action_type>set_attribute_value</action_type>
|
|
267
|
+
<asset>[[output://create_metadata_field_select_9892225809.assetid]]</asset>
|
|
268
|
+
<attribute>name</attribute>
|
|
269
|
+
<value><![CDATA[card_type]]></value>
|
|
270
|
+
</action>
|
|
271
|
+
<action>
|
|
272
|
+
<action_id>set_metadata_field_select_9892225809_friendly_name</action_id>
|
|
273
|
+
<action_type>set_attribute_value</action_type>
|
|
274
|
+
<asset>[[output://create_metadata_field_select_9892225809.assetid]]</asset>
|
|
275
|
+
<attribute>friendly_name</attribute>
|
|
276
|
+
<value><![CDATA[Card type]]></value>
|
|
277
|
+
</action>
|
|
278
|
+
<action>
|
|
279
|
+
<action_id>set_metadata_field_select_9892225809_default</action_id>
|
|
280
|
+
<action_type>set_attribute_value</action_type>
|
|
281
|
+
<asset>[[output://create_metadata_field_select_9892225809.assetid]]</asset>
|
|
282
|
+
<attribute>default</attribute>
|
|
283
|
+
<value><![CDATA[text]]></value>
|
|
284
|
+
</action>
|
|
285
|
+
<action>
|
|
286
|
+
<action_id>set_metadata_field_select_9892225809_description</action_id>
|
|
287
|
+
<action_type>set_attribute_value</action_type>
|
|
288
|
+
<asset>[[output://create_metadata_field_select_9892225809.assetid]]</asset>
|
|
289
|
+
<attribute>description</attribute>
|
|
290
|
+
<value><![CDATA[]]></value>
|
|
291
|
+
</action>
|
|
292
|
+
<action>
|
|
293
|
+
<action_id>set_metadata_field_select_9892225809_editable</action_id>
|
|
294
|
+
<action_type>set_attribute_value</action_type>
|
|
295
|
+
<asset>[[output://create_metadata_field_select_9892225809.assetid]]</asset>
|
|
296
|
+
<attribute>editable</attribute>
|
|
297
|
+
<value><![CDATA[0]]></value>
|
|
298
|
+
</action>
|
|
299
|
+
<action>
|
|
300
|
+
<action_id>set_metadata_field_select_9892225809_editable</action_id>
|
|
301
|
+
<action_type>set_attribute_value</action_type>
|
|
302
|
+
<asset>[[output://create_metadata_field_select_9892225809.assetid]]</asset>
|
|
303
|
+
<attribute>editable</attribute>
|
|
304
|
+
<value><![CDATA[0]]></value>
|
|
305
|
+
</action>
|
|
306
|
+
<action>
|
|
307
|
+
<action_id>set_metadata_field_select_9892225809_required</action_id>
|
|
308
|
+
<action_type>set_attribute_value</action_type>
|
|
309
|
+
<asset>[[output://create_metadata_field_select_9892225809.assetid]]</asset>
|
|
310
|
+
<attribute>required</attribute>
|
|
311
|
+
<value><![CDATA[0]]></value>
|
|
312
|
+
</action>
|
|
313
|
+
<action>
|
|
314
|
+
<action_id>set_permission_9892225809_read_5</action_id>
|
|
315
|
+
<action_type>set_permission</action_type>
|
|
316
|
+
<asset>[[output://create_metadata_field_select_9892225809.assetid]]</asset>
|
|
317
|
+
<permission>1</permission>
|
|
318
|
+
<granted>1</granted>
|
|
319
|
+
<userid>[[system://public_user]]</userid>
|
|
320
|
+
</action>
|
|
321
|
+
|
|
322
|
+
<action>
|
|
323
|
+
<action_id>set_metadata_field_select_9892225809_select_options</action_id>
|
|
324
|
+
<action_type>set_attribute_value</action_type>
|
|
325
|
+
<asset>[[output://create_metadata_field_select_9892225809.assetid]]</asset>
|
|
326
|
+
<attribute>select_options</attribute>
|
|
327
|
+
<value><![CDATA[array ('text' => 'Text only','image' => 'Image','icon' => 'Icon',);]]></value>
|
|
328
|
+
</action>
|
|
329
|
+
<action>
|
|
330
|
+
<action_id>set_{f.type}_9892225809_edit_params</action_id>
|
|
331
|
+
<action_type>set_attribute_value</action_type>
|
|
332
|
+
<asset>[[output://create_metadata_field_select_9892225809.assetid]]</asset>
|
|
333
|
+
<attribute>edit_params</attribute>
|
|
334
|
+
<value><![CDATA[array (
|
|
335
|
+
'style' => 'list',
|
|
336
|
+
'type' => 'table',
|
|
337
|
+
'height' => '',
|
|
338
|
+
'columns' => '1',
|
|
339
|
+
'empty_text' => '',
|
|
340
|
+
'extras' => '',
|
|
341
|
+
);]]></value>
|
|
342
|
+
</action>
|
|
343
|
+
|
|
344
|
+
<action>
|
|
345
|
+
<action_id>create_metadata_field_select_8079539557</action_id>
|
|
346
|
+
<action_type>create_asset</action_type>
|
|
347
|
+
<type_code>metadata_field_select</type_code>
|
|
348
|
+
<link_type>2</link_type>
|
|
349
|
+
<parentid>[[output://create_Metadata_Section_691774053.assetid]]</parentid>
|
|
350
|
+
<value></value>
|
|
351
|
+
<is_dependant>1</is_dependant>
|
|
352
|
+
<is_exclusive>0</is_exclusive>
|
|
353
|
+
</action>
|
|
354
|
+
<action>
|
|
355
|
+
<action_id>set_metadata_field_select_8079539557_name</action_id>
|
|
356
|
+
<action_type>set_attribute_value</action_type>
|
|
357
|
+
<asset>[[output://create_metadata_field_select_8079539557.assetid]]</asset>
|
|
358
|
+
<attribute>name</attribute>
|
|
359
|
+
<value><![CDATA[icon_align]]></value>
|
|
360
|
+
</action>
|
|
361
|
+
<action>
|
|
362
|
+
<action_id>set_metadata_field_select_8079539557_friendly_name</action_id>
|
|
363
|
+
<action_type>set_attribute_value</action_type>
|
|
364
|
+
<asset>[[output://create_metadata_field_select_8079539557.assetid]]</asset>
|
|
365
|
+
<attribute>friendly_name</attribute>
|
|
366
|
+
<value><![CDATA[Icon alignment]]></value>
|
|
367
|
+
</action>
|
|
368
|
+
<action>
|
|
369
|
+
<action_id>set_metadata_field_select_8079539557_default</action_id>
|
|
370
|
+
<action_type>set_attribute_value</action_type>
|
|
371
|
+
<asset>[[output://create_metadata_field_select_8079539557.assetid]]</asset>
|
|
372
|
+
<attribute>default</attribute>
|
|
373
|
+
<value><![CDATA[]]></value>
|
|
374
|
+
</action>
|
|
375
|
+
<action>
|
|
376
|
+
<action_id>set_metadata_field_select_8079539557_description</action_id>
|
|
377
|
+
<action_type>set_attribute_value</action_type>
|
|
378
|
+
<asset>[[output://create_metadata_field_select_8079539557.assetid]]</asset>
|
|
379
|
+
<attribute>description</attribute>
|
|
380
|
+
<value><![CDATA[]]></value>
|
|
381
|
+
</action>
|
|
382
|
+
<action>
|
|
383
|
+
<action_id>set_metadata_field_select_8079539557_editable</action_id>
|
|
384
|
+
<action_type>set_attribute_value</action_type>
|
|
385
|
+
<asset>[[output://create_metadata_field_select_8079539557.assetid]]</asset>
|
|
386
|
+
<attribute>editable</attribute>
|
|
387
|
+
<value><![CDATA[1]]></value>
|
|
388
|
+
</action>
|
|
389
|
+
<action>
|
|
390
|
+
<action_id>set_metadata_field_select_8079539557_editable</action_id>
|
|
391
|
+
<action_type>set_attribute_value</action_type>
|
|
392
|
+
<asset>[[output://create_metadata_field_select_8079539557.assetid]]</asset>
|
|
393
|
+
<attribute>editable</attribute>
|
|
394
|
+
<value><![CDATA[1]]></value>
|
|
395
|
+
</action>
|
|
396
|
+
<action>
|
|
397
|
+
<action_id>set_metadata_field_select_8079539557_required</action_id>
|
|
398
|
+
<action_type>set_attribute_value</action_type>
|
|
399
|
+
<asset>[[output://create_metadata_field_select_8079539557.assetid]]</asset>
|
|
400
|
+
<attribute>required</attribute>
|
|
401
|
+
<value><![CDATA[0]]></value>
|
|
402
|
+
</action>
|
|
403
|
+
<action>
|
|
404
|
+
<action_id>set_permission_8079539557_read_5</action_id>
|
|
405
|
+
<action_type>set_permission</action_type>
|
|
406
|
+
<asset>[[output://create_metadata_field_select_8079539557.assetid]]</asset>
|
|
407
|
+
<permission>1</permission>
|
|
408
|
+
<granted>1</granted>
|
|
409
|
+
<userid>[[system://public_user]]</userid>
|
|
410
|
+
</action>
|
|
411
|
+
|
|
412
|
+
<action>
|
|
413
|
+
<action_id>set_metadata_field_select_8079539557_select_options</action_id>
|
|
414
|
+
<action_type>set_attribute_value</action_type>
|
|
415
|
+
<asset>[[output://create_metadata_field_select_8079539557.assetid]]</asset>
|
|
416
|
+
<attribute>select_options</attribute>
|
|
417
|
+
<value><![CDATA[array ('top' => 'Top','left' => 'Left',);]]></value>
|
|
418
|
+
</action>
|
|
419
|
+
<action>
|
|
420
|
+
<action_id>set_{f.type}_8079539557_edit_params</action_id>
|
|
421
|
+
<action_type>set_attribute_value</action_type>
|
|
422
|
+
<asset>[[output://create_metadata_field_select_8079539557.assetid]]</asset>
|
|
423
|
+
<attribute>edit_params</attribute>
|
|
424
|
+
<value><![CDATA[array (
|
|
425
|
+
'style' => 'list',
|
|
426
|
+
'type' => 'table',
|
|
427
|
+
'height' => '',
|
|
428
|
+
'columns' => '1',
|
|
429
|
+
'empty_text' => '',
|
|
430
|
+
'extras' => '',
|
|
431
|
+
);]]></value>
|
|
432
|
+
</action>
|
|
433
|
+
|
|
434
|
+
<action>
|
|
435
|
+
<action_id>create_metadata_field_select_2571175630</action_id>
|
|
436
|
+
<action_type>create_asset</action_type>
|
|
437
|
+
<type_code>metadata_field_select</type_code>
|
|
438
|
+
<link_type>2</link_type>
|
|
439
|
+
<parentid>[[output://create_Metadata_Section_691774053.assetid]]</parentid>
|
|
440
|
+
<value></value>
|
|
441
|
+
<is_dependant>1</is_dependant>
|
|
442
|
+
<is_exclusive>0</is_exclusive>
|
|
443
|
+
</action>
|
|
444
|
+
<action>
|
|
445
|
+
<action_id>set_metadata_field_select_2571175630_name</action_id>
|
|
446
|
+
<action_type>set_attribute_value</action_type>
|
|
447
|
+
<asset>[[output://create_metadata_field_select_2571175630.assetid]]</asset>
|
|
448
|
+
<attribute>name</attribute>
|
|
449
|
+
<value><![CDATA[show_arrow]]></value>
|
|
450
|
+
</action>
|
|
451
|
+
<action>
|
|
452
|
+
<action_id>set_metadata_field_select_2571175630_friendly_name</action_id>
|
|
453
|
+
<action_type>set_attribute_value</action_type>
|
|
454
|
+
<asset>[[output://create_metadata_field_select_2571175630.assetid]]</asset>
|
|
455
|
+
<attribute>friendly_name</attribute>
|
|
456
|
+
<value><![CDATA[Show card arrow?]]></value>
|
|
457
|
+
</action>
|
|
458
|
+
<action>
|
|
459
|
+
<action_id>set_metadata_field_select_2571175630_default</action_id>
|
|
460
|
+
<action_type>set_attribute_value</action_type>
|
|
461
|
+
<asset>[[output://create_metadata_field_select_2571175630.assetid]]</asset>
|
|
462
|
+
<attribute>default</attribute>
|
|
463
|
+
<value><![CDATA[false]]></value>
|
|
464
|
+
</action>
|
|
465
|
+
<action>
|
|
466
|
+
<action_id>set_metadata_field_select_2571175630_description</action_id>
|
|
467
|
+
<action_type>set_attribute_value</action_type>
|
|
468
|
+
<asset>[[output://create_metadata_field_select_2571175630.assetid]]</asset>
|
|
469
|
+
<attribute>description</attribute>
|
|
470
|
+
<value><![CDATA[]]></value>
|
|
471
|
+
</action>
|
|
472
|
+
<action>
|
|
473
|
+
<action_id>set_metadata_field_select_2571175630_editable</action_id>
|
|
474
|
+
<action_type>set_attribute_value</action_type>
|
|
475
|
+
<asset>[[output://create_metadata_field_select_2571175630.assetid]]</asset>
|
|
476
|
+
<attribute>editable</attribute>
|
|
477
|
+
<value><![CDATA[1]]></value>
|
|
478
|
+
</action>
|
|
479
|
+
<action>
|
|
480
|
+
<action_id>set_metadata_field_select_2571175630_editable</action_id>
|
|
481
|
+
<action_type>set_attribute_value</action_type>
|
|
482
|
+
<asset>[[output://create_metadata_field_select_2571175630.assetid]]</asset>
|
|
483
|
+
<attribute>editable</attribute>
|
|
484
|
+
<value><![CDATA[1]]></value>
|
|
485
|
+
</action>
|
|
486
|
+
<action>
|
|
487
|
+
<action_id>set_metadata_field_select_2571175630_required</action_id>
|
|
488
|
+
<action_type>set_attribute_value</action_type>
|
|
489
|
+
<asset>[[output://create_metadata_field_select_2571175630.assetid]]</asset>
|
|
490
|
+
<attribute>required</attribute>
|
|
491
|
+
<value><![CDATA[0]]></value>
|
|
492
|
+
</action>
|
|
493
|
+
<action>
|
|
494
|
+
<action_id>set_permission_2571175630_read_5</action_id>
|
|
495
|
+
<action_type>set_permission</action_type>
|
|
496
|
+
<asset>[[output://create_metadata_field_select_2571175630.assetid]]</asset>
|
|
497
|
+
<permission>1</permission>
|
|
498
|
+
<granted>1</granted>
|
|
499
|
+
<userid>[[system://public_user]]</userid>
|
|
500
|
+
</action>
|
|
501
|
+
|
|
502
|
+
<action>
|
|
503
|
+
<action_id>set_metadata_field_select_2571175630_select_options</action_id>
|
|
504
|
+
<action_type>set_attribute_value</action_type>
|
|
505
|
+
<asset>[[output://create_metadata_field_select_2571175630.assetid]]</asset>
|
|
506
|
+
<attribute>select_options</attribute>
|
|
507
|
+
<value><![CDATA[array ('true' => 'True','false' => 'False',);]]></value>
|
|
508
|
+
</action>
|
|
509
|
+
<action>
|
|
510
|
+
<action_id>set_{f.type}_2571175630_edit_params</action_id>
|
|
511
|
+
<action_type>set_attribute_value</action_type>
|
|
512
|
+
<asset>[[output://create_metadata_field_select_2571175630.assetid]]</asset>
|
|
513
|
+
<attribute>edit_params</attribute>
|
|
514
|
+
<value><![CDATA[array (
|
|
515
|
+
'style' => 'list',
|
|
516
|
+
'type' => 'table',
|
|
517
|
+
'height' => '',
|
|
518
|
+
'columns' => '1',
|
|
519
|
+
'empty_text' => '',
|
|
520
|
+
'extras' => '',
|
|
521
|
+
);]]></value>
|
|
522
|
+
</action>
|
|
523
|
+
|
|
524
|
+
<action>
|
|
525
|
+
<action_id>create_metadata_field_select_1230678039</action_id>
|
|
526
|
+
<action_type>create_asset</action_type>
|
|
527
|
+
<type_code>metadata_field_select</type_code>
|
|
528
|
+
<link_type>2</link_type>
|
|
529
|
+
<parentid>[[output://create_Metadata_Section_691774053.assetid]]</parentid>
|
|
530
|
+
<value></value>
|
|
531
|
+
<is_dependant>1</is_dependant>
|
|
532
|
+
<is_exclusive>0</is_exclusive>
|
|
533
|
+
</action>
|
|
534
|
+
<action>
|
|
535
|
+
<action_id>set_metadata_field_select_1230678039_name</action_id>
|
|
536
|
+
<action_type>set_attribute_value</action_type>
|
|
537
|
+
<asset>[[output://create_metadata_field_select_1230678039.assetid]]</asset>
|
|
538
|
+
<attribute>name</attribute>
|
|
539
|
+
<value><![CDATA[background]]></value>
|
|
540
|
+
</action>
|
|
541
|
+
<action>
|
|
542
|
+
<action_id>set_metadata_field_select_1230678039_friendly_name</action_id>
|
|
543
|
+
<action_type>set_attribute_value</action_type>
|
|
544
|
+
<asset>[[output://create_metadata_field_select_1230678039.assetid]]</asset>
|
|
545
|
+
<attribute>friendly_name</attribute>
|
|
546
|
+
<value><![CDATA[Card background]]></value>
|
|
547
|
+
</action>
|
|
548
|
+
<action>
|
|
549
|
+
<action_id>set_metadata_field_select_1230678039_default</action_id>
|
|
550
|
+
<action_type>set_attribute_value</action_type>
|
|
551
|
+
<asset>[[output://create_metadata_field_select_1230678039.assetid]]</asset>
|
|
552
|
+
<attribute>default</attribute>
|
|
553
|
+
<value><![CDATA[]]></value>
|
|
554
|
+
</action>
|
|
555
|
+
<action>
|
|
556
|
+
<action_id>set_metadata_field_select_1230678039_description</action_id>
|
|
557
|
+
<action_type>set_attribute_value</action_type>
|
|
558
|
+
<asset>[[output://create_metadata_field_select_1230678039.assetid]]</asset>
|
|
559
|
+
<attribute>description</attribute>
|
|
560
|
+
<value><![CDATA[]]></value>
|
|
561
|
+
</action>
|
|
562
|
+
<action>
|
|
563
|
+
<action_id>set_metadata_field_select_1230678039_editable</action_id>
|
|
564
|
+
<action_type>set_attribute_value</action_type>
|
|
565
|
+
<asset>[[output://create_metadata_field_select_1230678039.assetid]]</asset>
|
|
566
|
+
<attribute>editable</attribute>
|
|
567
|
+
<value><![CDATA[1]]></value>
|
|
568
|
+
</action>
|
|
569
|
+
<action>
|
|
570
|
+
<action_id>set_metadata_field_select_1230678039_editable</action_id>
|
|
571
|
+
<action_type>set_attribute_value</action_type>
|
|
572
|
+
<asset>[[output://create_metadata_field_select_1230678039.assetid]]</asset>
|
|
573
|
+
<attribute>editable</attribute>
|
|
574
|
+
<value><![CDATA[1]]></value>
|
|
575
|
+
</action>
|
|
576
|
+
<action>
|
|
577
|
+
<action_id>set_metadata_field_select_1230678039_required</action_id>
|
|
578
|
+
<action_type>set_attribute_value</action_type>
|
|
579
|
+
<asset>[[output://create_metadata_field_select_1230678039.assetid]]</asset>
|
|
580
|
+
<attribute>required</attribute>
|
|
581
|
+
<value><![CDATA[0]]></value>
|
|
582
|
+
</action>
|
|
583
|
+
<action>
|
|
584
|
+
<action_id>set_permission_1230678039_read_5</action_id>
|
|
585
|
+
<action_type>set_permission</action_type>
|
|
586
|
+
<asset>[[output://create_metadata_field_select_1230678039.assetid]]</asset>
|
|
587
|
+
<permission>1</permission>
|
|
588
|
+
<granted>1</granted>
|
|
589
|
+
<userid>[[system://public_user]]</userid>
|
|
590
|
+
</action>
|
|
591
|
+
|
|
592
|
+
<action>
|
|
593
|
+
<action_id>set_metadata_field_select_1230678039_select_options</action_id>
|
|
594
|
+
<action_type>set_attribute_value</action_type>
|
|
595
|
+
<asset>[[output://create_metadata_field_select_1230678039.assetid]]</asset>
|
|
596
|
+
<attribute>select_options</attribute>
|
|
597
|
+
<value><![CDATA[array ('' => 'Light','qld__card--alt' => 'Alternate','qld__card--dark' => 'Dark','qld__card--dark-alt' => 'Dark Alternate',);]]></value>
|
|
598
|
+
</action>
|
|
599
|
+
<action>
|
|
600
|
+
<action_id>set_{f.type}_1230678039_edit_params</action_id>
|
|
601
|
+
<action_type>set_attribute_value</action_type>
|
|
602
|
+
<asset>[[output://create_metadata_field_select_1230678039.assetid]]</asset>
|
|
603
|
+
<attribute>edit_params</attribute>
|
|
604
|
+
<value><![CDATA[array (
|
|
605
|
+
'style' => 'list',
|
|
606
|
+
'type' => 'table',
|
|
607
|
+
'height' => '',
|
|
608
|
+
'columns' => '1',
|
|
609
|
+
'empty_text' => '',
|
|
610
|
+
'extras' => '',
|
|
611
|
+
);]]></value>
|
|
612
|
+
</action>
|
|
613
|
+
|
|
614
|
+
<action>
|
|
615
|
+
<action_id>create_metadata_field_select_4567702015</action_id>
|
|
616
|
+
<action_type>create_asset</action_type>
|
|
617
|
+
<type_code>metadata_field_select</type_code>
|
|
618
|
+
<link_type>2</link_type>
|
|
619
|
+
<parentid>[[output://create_Metadata_Section_691774053.assetid]]</parentid>
|
|
620
|
+
<value></value>
|
|
621
|
+
<is_dependant>1</is_dependant>
|
|
622
|
+
<is_exclusive>0</is_exclusive>
|
|
623
|
+
</action>
|
|
624
|
+
<action>
|
|
625
|
+
<action_id>set_metadata_field_select_4567702015_name</action_id>
|
|
626
|
+
<action_type>set_attribute_value</action_type>
|
|
627
|
+
<asset>[[output://create_metadata_field_select_4567702015.assetid]]</asset>
|
|
628
|
+
<attribute>name</attribute>
|
|
629
|
+
<value><![CDATA[card_heading_level]]></value>
|
|
630
|
+
</action>
|
|
631
|
+
<action>
|
|
632
|
+
<action_id>set_metadata_field_select_4567702015_friendly_name</action_id>
|
|
633
|
+
<action_type>set_attribute_value</action_type>
|
|
634
|
+
<asset>[[output://create_metadata_field_select_4567702015.assetid]]</asset>
|
|
635
|
+
<attribute>friendly_name</attribute>
|
|
636
|
+
<value><![CDATA[Intro heading level]]></value>
|
|
637
|
+
</action>
|
|
638
|
+
<action>
|
|
639
|
+
<action_id>set_metadata_field_select_4567702015_default</action_id>
|
|
640
|
+
<action_type>set_attribute_value</action_type>
|
|
641
|
+
<asset>[[output://create_metadata_field_select_4567702015.assetid]]</asset>
|
|
642
|
+
<attribute>default</attribute>
|
|
643
|
+
<value><![CDATA[h3]]></value>
|
|
644
|
+
</action>
|
|
645
|
+
<action>
|
|
646
|
+
<action_id>set_metadata_field_select_4567702015_description</action_id>
|
|
647
|
+
<action_type>set_attribute_value</action_type>
|
|
648
|
+
<asset>[[output://create_metadata_field_select_4567702015.assetid]]</asset>
|
|
649
|
+
<attribute>description</attribute>
|
|
650
|
+
<value><![CDATA[]]></value>
|
|
651
|
+
</action>
|
|
652
|
+
<action>
|
|
653
|
+
<action_id>set_metadata_field_select_4567702015_editable</action_id>
|
|
654
|
+
<action_type>set_attribute_value</action_type>
|
|
655
|
+
<asset>[[output://create_metadata_field_select_4567702015.assetid]]</asset>
|
|
656
|
+
<attribute>editable</attribute>
|
|
657
|
+
<value><![CDATA[0]]></value>
|
|
658
|
+
</action>
|
|
659
|
+
<action>
|
|
660
|
+
<action_id>set_metadata_field_select_4567702015_editable</action_id>
|
|
661
|
+
<action_type>set_attribute_value</action_type>
|
|
662
|
+
<asset>[[output://create_metadata_field_select_4567702015.assetid]]</asset>
|
|
663
|
+
<attribute>editable</attribute>
|
|
664
|
+
<value><![CDATA[0]]></value>
|
|
665
|
+
</action>
|
|
666
|
+
<action>
|
|
667
|
+
<action_id>set_metadata_field_select_4567702015_required</action_id>
|
|
668
|
+
<action_type>set_attribute_value</action_type>
|
|
669
|
+
<asset>[[output://create_metadata_field_select_4567702015.assetid]]</asset>
|
|
670
|
+
<attribute>required</attribute>
|
|
671
|
+
<value><![CDATA[0]]></value>
|
|
672
|
+
</action>
|
|
673
|
+
<action>
|
|
674
|
+
<action_id>set_permission_4567702015_read_5</action_id>
|
|
675
|
+
<action_type>set_permission</action_type>
|
|
676
|
+
<asset>[[output://create_metadata_field_select_4567702015.assetid]]</asset>
|
|
677
|
+
<permission>1</permission>
|
|
678
|
+
<granted>1</granted>
|
|
679
|
+
<userid>[[system://public_user]]</userid>
|
|
680
|
+
</action>
|
|
681
|
+
|
|
682
|
+
<action>
|
|
683
|
+
<action_id>set_metadata_field_select_4567702015_select_options</action_id>
|
|
684
|
+
<action_type>set_attribute_value</action_type>
|
|
685
|
+
<asset>[[output://create_metadata_field_select_4567702015.assetid]]</asset>
|
|
686
|
+
<attribute>select_options</attribute>
|
|
687
|
+
<value><![CDATA[array ('h2' => 'h2','h3' => 'h3','h4' => 'h4','h5' => 'h5','h6' => 'h6',);]]></value>
|
|
688
|
+
</action>
|
|
689
|
+
<action>
|
|
690
|
+
<action_id>set_{f.type}_4567702015_edit_params</action_id>
|
|
691
|
+
<action_type>set_attribute_value</action_type>
|
|
692
|
+
<asset>[[output://create_metadata_field_select_4567702015.assetid]]</asset>
|
|
693
|
+
<attribute>edit_params</attribute>
|
|
694
|
+
<value><![CDATA[array (
|
|
695
|
+
'style' => 'list',
|
|
696
|
+
'type' => 'table',
|
|
697
|
+
'height' => '',
|
|
698
|
+
'columns' => '1',
|
|
699
|
+
'empty_text' => '',
|
|
700
|
+
'extras' => '',
|
|
701
|
+
);]]></value>
|
|
702
|
+
</action>
|
|
703
|
+
|
|
704
|
+
<action>
|
|
705
|
+
<action_id>create_metadata_field_select_8757054262</action_id>
|
|
706
|
+
<action_type>create_asset</action_type>
|
|
707
|
+
<type_code>metadata_field_select</type_code>
|
|
708
|
+
<link_type>2</link_type>
|
|
709
|
+
<parentid>[[output://create_Metadata_Section_691774053.assetid]]</parentid>
|
|
710
|
+
<value></value>
|
|
711
|
+
<is_dependant>1</is_dependant>
|
|
712
|
+
<is_exclusive>0</is_exclusive>
|
|
713
|
+
</action>
|
|
714
|
+
<action>
|
|
715
|
+
<action_id>set_metadata_field_select_8757054262_name</action_id>
|
|
716
|
+
<action_type>set_attribute_value</action_type>
|
|
717
|
+
<asset>[[output://create_metadata_field_select_8757054262.assetid]]</asset>
|
|
718
|
+
<attribute>name</attribute>
|
|
719
|
+
<value><![CDATA[body_background]]></value>
|
|
720
|
+
</action>
|
|
721
|
+
<action>
|
|
722
|
+
<action_id>set_metadata_field_select_8757054262_friendly_name</action_id>
|
|
723
|
+
<action_type>set_attribute_value</action_type>
|
|
724
|
+
<asset>[[output://create_metadata_field_select_8757054262.assetid]]</asset>
|
|
725
|
+
<attribute>friendly_name</attribute>
|
|
726
|
+
<value><![CDATA[Background colour]]></value>
|
|
727
|
+
</action>
|
|
728
|
+
<action>
|
|
729
|
+
<action_id>set_metadata_field_select_8757054262_default</action_id>
|
|
730
|
+
<action_type>set_attribute_value</action_type>
|
|
731
|
+
<asset>[[output://create_metadata_field_select_8757054262.assetid]]</asset>
|
|
732
|
+
<attribute>default</attribute>
|
|
733
|
+
<value><![CDATA[qld__body--light]]></value>
|
|
734
|
+
</action>
|
|
735
|
+
<action>
|
|
736
|
+
<action_id>set_metadata_field_select_8757054262_description</action_id>
|
|
737
|
+
<action_type>set_attribute_value</action_type>
|
|
738
|
+
<asset>[[output://create_metadata_field_select_8757054262.assetid]]</asset>
|
|
739
|
+
<attribute>description</attribute>
|
|
740
|
+
<value><![CDATA[]]></value>
|
|
741
|
+
</action>
|
|
742
|
+
<action>
|
|
743
|
+
<action_id>set_metadata_field_select_8757054262_editable</action_id>
|
|
744
|
+
<action_type>set_attribute_value</action_type>
|
|
745
|
+
<asset>[[output://create_metadata_field_select_8757054262.assetid]]</asset>
|
|
746
|
+
<attribute>editable</attribute>
|
|
747
|
+
<value><![CDATA[1]]></value>
|
|
748
|
+
</action>
|
|
749
|
+
<action>
|
|
750
|
+
<action_id>set_metadata_field_select_8757054262_editable</action_id>
|
|
751
|
+
<action_type>set_attribute_value</action_type>
|
|
752
|
+
<asset>[[output://create_metadata_field_select_8757054262.assetid]]</asset>
|
|
753
|
+
<attribute>editable</attribute>
|
|
754
|
+
<value><![CDATA[1]]></value>
|
|
755
|
+
</action>
|
|
756
|
+
<action>
|
|
757
|
+
<action_id>set_metadata_field_select_8757054262_required</action_id>
|
|
758
|
+
<action_type>set_attribute_value</action_type>
|
|
759
|
+
<asset>[[output://create_metadata_field_select_8757054262.assetid]]</asset>
|
|
760
|
+
<attribute>required</attribute>
|
|
761
|
+
<value><![CDATA[0]]></value>
|
|
762
|
+
</action>
|
|
763
|
+
<action>
|
|
764
|
+
<action_id>set_permission_8757054262_read_5</action_id>
|
|
765
|
+
<action_type>set_permission</action_type>
|
|
766
|
+
<asset>[[output://create_metadata_field_select_8757054262.assetid]]</asset>
|
|
767
|
+
<permission>1</permission>
|
|
768
|
+
<granted>1</granted>
|
|
769
|
+
<userid>[[system://public_user]]</userid>
|
|
770
|
+
</action>
|
|
771
|
+
|
|
772
|
+
<action>
|
|
773
|
+
<action_id>set_metadata_field_select_8757054262_select_options</action_id>
|
|
774
|
+
<action_type>set_attribute_value</action_type>
|
|
775
|
+
<asset>[[output://create_metadata_field_select_8757054262.assetid]]</asset>
|
|
776
|
+
<attribute>select_options</attribute>
|
|
777
|
+
<value><![CDATA[array ('qld__body--light' => 'Light','qld__body--alt' => 'Alternate','qld__body--dark' => 'Dark','qld__body--dark-alt' => 'Alternate Dark',);]]></value>
|
|
778
|
+
</action>
|
|
779
|
+
<action>
|
|
780
|
+
<action_id>set_{f.type}_8757054262_edit_params</action_id>
|
|
781
|
+
<action_type>set_attribute_value</action_type>
|
|
782
|
+
<asset>[[output://create_metadata_field_select_8757054262.assetid]]</asset>
|
|
783
|
+
<attribute>edit_params</attribute>
|
|
784
|
+
<value><![CDATA[array (
|
|
785
|
+
'style' => 'list',
|
|
786
|
+
'type' => 'table',
|
|
787
|
+
'height' => '',
|
|
788
|
+
'columns' => '1',
|
|
789
|
+
'empty_text' => '',
|
|
790
|
+
'extras' => '',
|
|
791
|
+
);]]></value>
|
|
792
|
+
</action>
|
|
793
|
+
|
|
794
|
+
<action>
|
|
795
|
+
<action_id>create_metadata_field_select_3924294638</action_id>
|
|
796
|
+
<action_type>create_asset</action_type>
|
|
797
|
+
<type_code>metadata_field_select</type_code>
|
|
798
|
+
<link_type>2</link_type>
|
|
799
|
+
<parentid>[[output://create_Metadata_Section_691774053.assetid]]</parentid>
|
|
800
|
+
<value></value>
|
|
801
|
+
<is_dependant>1</is_dependant>
|
|
802
|
+
<is_exclusive>0</is_exclusive>
|
|
803
|
+
</action>
|
|
804
|
+
<action>
|
|
805
|
+
<action_id>set_metadata_field_select_3924294638_name</action_id>
|
|
806
|
+
<action_type>set_attribute_value</action_type>
|
|
807
|
+
<asset>[[output://create_metadata_field_select_3924294638.assetid]]</asset>
|
|
808
|
+
<attribute>name</attribute>
|
|
809
|
+
<value><![CDATA[body_background_type]]></value>
|
|
810
|
+
</action>
|
|
811
|
+
<action>
|
|
812
|
+
<action_id>set_metadata_field_select_3924294638_friendly_name</action_id>
|
|
813
|
+
<action_type>set_attribute_value</action_type>
|
|
814
|
+
<asset>[[output://create_metadata_field_select_3924294638.assetid]]</asset>
|
|
815
|
+
<attribute>friendly_name</attribute>
|
|
816
|
+
<value><![CDATA[Background Type]]></value>
|
|
817
|
+
</action>
|
|
818
|
+
<action>
|
|
819
|
+
<action_id>set_metadata_field_select_3924294638_default</action_id>
|
|
820
|
+
<action_type>set_attribute_value</action_type>
|
|
821
|
+
<asset>[[output://create_metadata_field_select_3924294638.assetid]]</asset>
|
|
822
|
+
<attribute>default</attribute>
|
|
823
|
+
<value><![CDATA[qld__card--wrapper-bg-image]]></value>
|
|
824
|
+
</action>
|
|
825
|
+
<action>
|
|
826
|
+
<action_id>set_metadata_field_select_3924294638_description</action_id>
|
|
827
|
+
<action_type>set_attribute_value</action_type>
|
|
828
|
+
<asset>[[output://create_metadata_field_select_3924294638.assetid]]</asset>
|
|
829
|
+
<attribute>description</attribute>
|
|
830
|
+
<value><![CDATA[]]></value>
|
|
831
|
+
</action>
|
|
832
|
+
<action>
|
|
833
|
+
<action_id>set_metadata_field_select_3924294638_editable</action_id>
|
|
834
|
+
<action_type>set_attribute_value</action_type>
|
|
835
|
+
<asset>[[output://create_metadata_field_select_3924294638.assetid]]</asset>
|
|
836
|
+
<attribute>editable</attribute>
|
|
837
|
+
<value><![CDATA[1]]></value>
|
|
838
|
+
</action>
|
|
839
|
+
<action>
|
|
840
|
+
<action_id>set_metadata_field_select_3924294638_editable</action_id>
|
|
841
|
+
<action_type>set_attribute_value</action_type>
|
|
842
|
+
<asset>[[output://create_metadata_field_select_3924294638.assetid]]</asset>
|
|
843
|
+
<attribute>editable</attribute>
|
|
844
|
+
<value><![CDATA[1]]></value>
|
|
845
|
+
</action>
|
|
846
|
+
<action>
|
|
847
|
+
<action_id>set_metadata_field_select_3924294638_required</action_id>
|
|
848
|
+
<action_type>set_attribute_value</action_type>
|
|
849
|
+
<asset>[[output://create_metadata_field_select_3924294638.assetid]]</asset>
|
|
850
|
+
<attribute>required</attribute>
|
|
851
|
+
<value><![CDATA[0]]></value>
|
|
852
|
+
</action>
|
|
853
|
+
<action>
|
|
854
|
+
<action_id>set_permission_3924294638_read_5</action_id>
|
|
855
|
+
<action_type>set_permission</action_type>
|
|
856
|
+
<asset>[[output://create_metadata_field_select_3924294638.assetid]]</asset>
|
|
857
|
+
<permission>1</permission>
|
|
858
|
+
<granted>1</granted>
|
|
859
|
+
<userid>[[system://public_user]]</userid>
|
|
860
|
+
</action>
|
|
861
|
+
|
|
862
|
+
<action>
|
|
863
|
+
<action_id>set_metadata_field_select_3924294638_select_options</action_id>
|
|
864
|
+
<action_type>set_attribute_value</action_type>
|
|
865
|
+
<asset>[[output://create_metadata_field_select_3924294638.assetid]]</asset>
|
|
866
|
+
<attribute>select_options</attribute>
|
|
867
|
+
<value><![CDATA[array ('qld__card--wrapper-bg-image' => 'Image','qld__card--wrapper-bg-pattern' => 'Pattern','qld__card--wrapper-bg-colour' => 'Colour',);]]></value>
|
|
868
|
+
</action>
|
|
869
|
+
<action>
|
|
870
|
+
<action_id>set_{f.type}_3924294638_edit_params</action_id>
|
|
871
|
+
<action_type>set_attribute_value</action_type>
|
|
872
|
+
<asset>[[output://create_metadata_field_select_3924294638.assetid]]</asset>
|
|
873
|
+
<attribute>edit_params</attribute>
|
|
874
|
+
<value><![CDATA[array (
|
|
875
|
+
'style' => 'list',
|
|
876
|
+
'type' => 'table',
|
|
877
|
+
'height' => '',
|
|
878
|
+
'columns' => '1',
|
|
879
|
+
'empty_text' => '',
|
|
880
|
+
'extras' => '',
|
|
881
|
+
);]]></value>
|
|
882
|
+
</action>
|
|
883
|
+
|
|
884
|
+
<action>
|
|
885
|
+
<action_id>create_metadata_field_related_asset_2488156240</action_id>
|
|
886
|
+
<action_type>create_asset</action_type>
|
|
887
|
+
<type_code>metadata_field_related_asset</type_code>
|
|
888
|
+
<link_type>2</link_type>
|
|
889
|
+
<parentid>[[output://create_Metadata_Section_691774053.assetid]]</parentid>
|
|
890
|
+
<value></value>
|
|
891
|
+
<is_dependant>1</is_dependant>
|
|
892
|
+
<is_exclusive>0</is_exclusive>
|
|
893
|
+
</action>
|
|
894
|
+
<action>
|
|
895
|
+
<action_id>set_metadata_field_related_asset_2488156240_name</action_id>
|
|
896
|
+
<action_type>set_attribute_value</action_type>
|
|
897
|
+
<asset>[[output://create_metadata_field_related_asset_2488156240.assetid]]</asset>
|
|
898
|
+
<attribute>name</attribute>
|
|
899
|
+
<value><![CDATA[body_background_image]]></value>
|
|
900
|
+
</action>
|
|
901
|
+
<action>
|
|
902
|
+
<action_id>set_metadata_field_related_asset_2488156240_friendly_name</action_id>
|
|
903
|
+
<action_type>set_attribute_value</action_type>
|
|
904
|
+
<asset>[[output://create_metadata_field_related_asset_2488156240.assetid]]</asset>
|
|
905
|
+
<attribute>friendly_name</attribute>
|
|
906
|
+
<value><![CDATA[Background Image]]></value>
|
|
907
|
+
</action>
|
|
908
|
+
<action>
|
|
909
|
+
<action_id>set_metadata_field_related_asset_2488156240_default</action_id>
|
|
910
|
+
<action_type>set_attribute_value</action_type>
|
|
911
|
+
<asset>[[output://create_metadata_field_related_asset_2488156240.assetid]]</asset>
|
|
912
|
+
<attribute>default</attribute>
|
|
913
|
+
<value><![CDATA[/mysource_files/img/card--content.png]]></value>
|
|
914
|
+
</action>
|
|
915
|
+
<action>
|
|
916
|
+
<action_id>set_metadata_field_related_asset_2488156240_description</action_id>
|
|
917
|
+
<action_type>set_attribute_value</action_type>
|
|
918
|
+
<asset>[[output://create_metadata_field_related_asset_2488156240.assetid]]</asset>
|
|
919
|
+
<attribute>description</attribute>
|
|
920
|
+
<value><![CDATA[]]></value>
|
|
921
|
+
</action>
|
|
922
|
+
<action>
|
|
923
|
+
<action_id>set_metadata_field_related_asset_2488156240_editable</action_id>
|
|
924
|
+
<action_type>set_attribute_value</action_type>
|
|
925
|
+
<asset>[[output://create_metadata_field_related_asset_2488156240.assetid]]</asset>
|
|
926
|
+
<attribute>editable</attribute>
|
|
927
|
+
<value><![CDATA[1]]></value>
|
|
928
|
+
</action>
|
|
929
|
+
<action>
|
|
930
|
+
<action_id>set_metadata_field_related_asset_2488156240_editable</action_id>
|
|
931
|
+
<action_type>set_attribute_value</action_type>
|
|
932
|
+
<asset>[[output://create_metadata_field_related_asset_2488156240.assetid]]</asset>
|
|
933
|
+
<attribute>editable</attribute>
|
|
934
|
+
<value><![CDATA[1]]></value>
|
|
935
|
+
</action>
|
|
936
|
+
<action>
|
|
937
|
+
<action_id>set_metadata_field_related_asset_2488156240_required</action_id>
|
|
938
|
+
<action_type>set_attribute_value</action_type>
|
|
939
|
+
<asset>[[output://create_metadata_field_related_asset_2488156240.assetid]]</asset>
|
|
940
|
+
<attribute>required</attribute>
|
|
941
|
+
<value><![CDATA[0]]></value>
|
|
942
|
+
</action>
|
|
943
|
+
<action>
|
|
944
|
+
<action_id>set_permission_2488156240_read_5</action_id>
|
|
945
|
+
<action_type>set_permission</action_type>
|
|
946
|
+
<asset>[[output://create_metadata_field_related_asset_2488156240.assetid]]</asset>
|
|
947
|
+
<permission>1</permission>
|
|
948
|
+
<granted>1</granted>
|
|
949
|
+
<userid>[[system://public_user]]</userid>
|
|
950
|
+
</action>
|
|
951
|
+
|
|
952
|
+
<action>
|
|
953
|
+
<action_id>create_metadata_field_related_asset_2363406900</action_id>
|
|
954
|
+
<action_type>create_asset</action_type>
|
|
955
|
+
<type_code>metadata_field_related_asset</type_code>
|
|
956
|
+
<link_type>2</link_type>
|
|
957
|
+
<parentid>[[output://create_Metadata_Section_691774053.assetid]]</parentid>
|
|
958
|
+
<value></value>
|
|
959
|
+
<is_dependant>1</is_dependant>
|
|
960
|
+
<is_exclusive>0</is_exclusive>
|
|
961
|
+
</action>
|
|
962
|
+
<action>
|
|
963
|
+
<action_id>set_metadata_field_related_asset_2363406900_name</action_id>
|
|
964
|
+
<action_type>set_attribute_value</action_type>
|
|
965
|
+
<asset>[[output://create_metadata_field_related_asset_2363406900.assetid]]</asset>
|
|
966
|
+
<attribute>name</attribute>
|
|
967
|
+
<value><![CDATA[body_background_pattern]]></value>
|
|
968
|
+
</action>
|
|
969
|
+
<action>
|
|
970
|
+
<action_id>set_metadata_field_related_asset_2363406900_friendly_name</action_id>
|
|
971
|
+
<action_type>set_attribute_value</action_type>
|
|
972
|
+
<asset>[[output://create_metadata_field_related_asset_2363406900.assetid]]</asset>
|
|
973
|
+
<attribute>friendly_name</attribute>
|
|
974
|
+
<value><![CDATA[Background Pattern]]></value>
|
|
975
|
+
</action>
|
|
976
|
+
<action>
|
|
977
|
+
<action_id>set_metadata_field_related_asset_2363406900_default</action_id>
|
|
978
|
+
<action_type>set_attribute_value</action_type>
|
|
979
|
+
<asset>[[output://create_metadata_field_related_asset_2363406900.assetid]]</asset>
|
|
980
|
+
<attribute>default</attribute>
|
|
981
|
+
<value><![CDATA[/mysource_files/img/banner-bg.png]]></value>
|
|
982
|
+
</action>
|
|
983
|
+
<action>
|
|
984
|
+
<action_id>set_metadata_field_related_asset_2363406900_description</action_id>
|
|
985
|
+
<action_type>set_attribute_value</action_type>
|
|
986
|
+
<asset>[[output://create_metadata_field_related_asset_2363406900.assetid]]</asset>
|
|
987
|
+
<attribute>description</attribute>
|
|
988
|
+
<value><![CDATA[]]></value>
|
|
989
|
+
</action>
|
|
990
|
+
<action>
|
|
991
|
+
<action_id>set_metadata_field_related_asset_2363406900_editable</action_id>
|
|
992
|
+
<action_type>set_attribute_value</action_type>
|
|
993
|
+
<asset>[[output://create_metadata_field_related_asset_2363406900.assetid]]</asset>
|
|
994
|
+
<attribute>editable</attribute>
|
|
995
|
+
<value><![CDATA[1]]></value>
|
|
996
|
+
</action>
|
|
997
|
+
<action>
|
|
998
|
+
<action_id>set_metadata_field_related_asset_2363406900_editable</action_id>
|
|
999
|
+
<action_type>set_attribute_value</action_type>
|
|
1000
|
+
<asset>[[output://create_metadata_field_related_asset_2363406900.assetid]]</asset>
|
|
1001
|
+
<attribute>editable</attribute>
|
|
1002
|
+
<value><![CDATA[1]]></value>
|
|
1003
|
+
</action>
|
|
1004
|
+
<action>
|
|
1005
|
+
<action_id>set_metadata_field_related_asset_2363406900_required</action_id>
|
|
1006
|
+
<action_type>set_attribute_value</action_type>
|
|
1007
|
+
<asset>[[output://create_metadata_field_related_asset_2363406900.assetid]]</asset>
|
|
1008
|
+
<attribute>required</attribute>
|
|
1009
|
+
<value><![CDATA[0]]></value>
|
|
1010
|
+
</action>
|
|
1011
|
+
<action>
|
|
1012
|
+
<action_id>set_permission_2363406900_read_5</action_id>
|
|
1013
|
+
<action_type>set_permission</action_type>
|
|
1014
|
+
<asset>[[output://create_metadata_field_related_asset_2363406900.assetid]]</asset>
|
|
1015
|
+
<permission>1</permission>
|
|
1016
|
+
<granted>1</granted>
|
|
1017
|
+
<userid>[[system://public_user]]</userid>
|
|
1018
|
+
</action>
|
|
1019
|
+
|
|
1020
|
+
<action>
|
|
1021
|
+
<action_id>create_metadata_field_select_8622649757</action_id>
|
|
1022
|
+
<action_type>create_asset</action_type>
|
|
1023
|
+
<type_code>metadata_field_select</type_code>
|
|
1024
|
+
<link_type>2</link_type>
|
|
1025
|
+
<parentid>[[output://create_Metadata_Section_691774053.assetid]]</parentid>
|
|
1026
|
+
<value></value>
|
|
1027
|
+
<is_dependant>1</is_dependant>
|
|
1028
|
+
<is_exclusive>0</is_exclusive>
|
|
1029
|
+
</action>
|
|
1030
|
+
<action>
|
|
1031
|
+
<action_id>set_metadata_field_select_8622649757_name</action_id>
|
|
1032
|
+
<action_type>set_attribute_value</action_type>
|
|
1033
|
+
<asset>[[output://create_metadata_field_select_8622649757.assetid]]</asset>
|
|
1034
|
+
<attribute>name</attribute>
|
|
1035
|
+
<value><![CDATA[intro_width]]></value>
|
|
1036
|
+
</action>
|
|
1037
|
+
<action>
|
|
1038
|
+
<action_id>set_metadata_field_select_8622649757_friendly_name</action_id>
|
|
1039
|
+
<action_type>set_attribute_value</action_type>
|
|
1040
|
+
<asset>[[output://create_metadata_field_select_8622649757.assetid]]</asset>
|
|
1041
|
+
<attribute>friendly_name</attribute>
|
|
1042
|
+
<value><![CDATA[Intro width]]></value>
|
|
1043
|
+
</action>
|
|
1044
|
+
<action>
|
|
1045
|
+
<action_id>set_metadata_field_select_8622649757_default</action_id>
|
|
1046
|
+
<action_type>set_attribute_value</action_type>
|
|
1047
|
+
<asset>[[output://create_metadata_field_select_8622649757.assetid]]</asset>
|
|
1048
|
+
<attribute>default</attribute>
|
|
1049
|
+
<value><![CDATA[col-md-6]]></value>
|
|
1050
|
+
</action>
|
|
1051
|
+
<action>
|
|
1052
|
+
<action_id>set_metadata_field_select_8622649757_description</action_id>
|
|
1053
|
+
<action_type>set_attribute_value</action_type>
|
|
1054
|
+
<asset>[[output://create_metadata_field_select_8622649757.assetid]]</asset>
|
|
1055
|
+
<attribute>description</attribute>
|
|
1056
|
+
<value><![CDATA[]]></value>
|
|
1057
|
+
</action>
|
|
1058
|
+
<action>
|
|
1059
|
+
<action_id>set_metadata_field_select_8622649757_editable</action_id>
|
|
1060
|
+
<action_type>set_attribute_value</action_type>
|
|
1061
|
+
<asset>[[output://create_metadata_field_select_8622649757.assetid]]</asset>
|
|
1062
|
+
<attribute>editable</attribute>
|
|
1063
|
+
<value><![CDATA[1]]></value>
|
|
1064
|
+
</action>
|
|
1065
|
+
<action>
|
|
1066
|
+
<action_id>set_metadata_field_select_8622649757_editable</action_id>
|
|
1067
|
+
<action_type>set_attribute_value</action_type>
|
|
1068
|
+
<asset>[[output://create_metadata_field_select_8622649757.assetid]]</asset>
|
|
1069
|
+
<attribute>editable</attribute>
|
|
1070
|
+
<value><![CDATA[1]]></value>
|
|
1071
|
+
</action>
|
|
1072
|
+
<action>
|
|
1073
|
+
<action_id>set_metadata_field_select_8622649757_required</action_id>
|
|
1074
|
+
<action_type>set_attribute_value</action_type>
|
|
1075
|
+
<asset>[[output://create_metadata_field_select_8622649757.assetid]]</asset>
|
|
1076
|
+
<attribute>required</attribute>
|
|
1077
|
+
<value><![CDATA[0]]></value>
|
|
1078
|
+
</action>
|
|
1079
|
+
<action>
|
|
1080
|
+
<action_id>set_permission_8622649757_read_5</action_id>
|
|
1081
|
+
<action_type>set_permission</action_type>
|
|
1082
|
+
<asset>[[output://create_metadata_field_select_8622649757.assetid]]</asset>
|
|
1083
|
+
<permission>1</permission>
|
|
1084
|
+
<granted>1</granted>
|
|
1085
|
+
<userid>[[system://public_user]]</userid>
|
|
1086
|
+
</action>
|
|
1087
|
+
|
|
1088
|
+
<action>
|
|
1089
|
+
<action_id>set_metadata_field_select_8622649757_select_options</action_id>
|
|
1090
|
+
<action_type>set_attribute_value</action_type>
|
|
1091
|
+
<asset>[[output://create_metadata_field_select_8622649757.assetid]]</asset>
|
|
1092
|
+
<attribute>select_options</attribute>
|
|
1093
|
+
<value><![CDATA[array ('col-md-6' => 'Half width','col-md-12' => 'Full width',);]]></value>
|
|
1094
|
+
</action>
|
|
1095
|
+
<action>
|
|
1096
|
+
<action_id>set_{f.type}_8622649757_edit_params</action_id>
|
|
1097
|
+
<action_type>set_attribute_value</action_type>
|
|
1098
|
+
<asset>[[output://create_metadata_field_select_8622649757.assetid]]</asset>
|
|
1099
|
+
<attribute>edit_params</attribute>
|
|
1100
|
+
<value><![CDATA[array (
|
|
1101
|
+
'style' => 'list',
|
|
1102
|
+
'type' => 'table',
|
|
1103
|
+
'height' => '',
|
|
1104
|
+
'columns' => '1',
|
|
1105
|
+
'empty_text' => '',
|
|
1106
|
+
'extras' => '',
|
|
1107
|
+
);]]></value>
|
|
1108
|
+
</action>
|
|
1109
|
+
|
|
1110
|
+
<action>
|
|
1111
|
+
<action_id>create_metadata_field_text_558694519</action_id>
|
|
1112
|
+
<action_type>create_asset</action_type>
|
|
1113
|
+
<type_code>metadata_field_text</type_code>
|
|
1114
|
+
<link_type>2</link_type>
|
|
1115
|
+
<parentid>[[output://create_Metadata_Section_691774053.assetid]]</parentid>
|
|
1116
|
+
<value></value>
|
|
1117
|
+
<is_dependant>1</is_dependant>
|
|
1118
|
+
<is_exclusive>0</is_exclusive>
|
|
1119
|
+
</action>
|
|
1120
|
+
<action>
|
|
1121
|
+
<action_id>set_metadata_field_text_558694519_name</action_id>
|
|
1122
|
+
<action_type>set_attribute_value</action_type>
|
|
1123
|
+
<asset>[[output://create_metadata_field_text_558694519.assetid]]</asset>
|
|
1124
|
+
<attribute>name</attribute>
|
|
1125
|
+
<value><![CDATA[intro_heading]]></value>
|
|
1126
|
+
</action>
|
|
1127
|
+
<action>
|
|
1128
|
+
<action_id>set_metadata_field_text_558694519_friendly_name</action_id>
|
|
1129
|
+
<action_type>set_attribute_value</action_type>
|
|
1130
|
+
<asset>[[output://create_metadata_field_text_558694519.assetid]]</asset>
|
|
1131
|
+
<attribute>friendly_name</attribute>
|
|
1132
|
+
<value><![CDATA[Intro heading]]></value>
|
|
1133
|
+
</action>
|
|
1134
|
+
<action>
|
|
1135
|
+
<action_id>set_metadata_field_text_558694519_default</action_id>
|
|
1136
|
+
<action_type>set_attribute_value</action_type>
|
|
1137
|
+
<asset>[[output://create_metadata_field_text_558694519.assetid]]</asset>
|
|
1138
|
+
<attribute>default</attribute>
|
|
1139
|
+
<value><![CDATA[Intro heading]]></value>
|
|
1140
|
+
</action>
|
|
1141
|
+
<action>
|
|
1142
|
+
<action_id>set_metadata_field_text_558694519_description</action_id>
|
|
1143
|
+
<action_type>set_attribute_value</action_type>
|
|
1144
|
+
<asset>[[output://create_metadata_field_text_558694519.assetid]]</asset>
|
|
1145
|
+
<attribute>description</attribute>
|
|
1146
|
+
<value><![CDATA[]]></value>
|
|
1147
|
+
</action>
|
|
1148
|
+
<action>
|
|
1149
|
+
<action_id>set_metadata_field_text_558694519_editable</action_id>
|
|
1150
|
+
<action_type>set_attribute_value</action_type>
|
|
1151
|
+
<asset>[[output://create_metadata_field_text_558694519.assetid]]</asset>
|
|
1152
|
+
<attribute>editable</attribute>
|
|
1153
|
+
<value><![CDATA[1]]></value>
|
|
1154
|
+
</action>
|
|
1155
|
+
<action>
|
|
1156
|
+
<action_id>set_metadata_field_text_558694519_editable</action_id>
|
|
1157
|
+
<action_type>set_attribute_value</action_type>
|
|
1158
|
+
<asset>[[output://create_metadata_field_text_558694519.assetid]]</asset>
|
|
1159
|
+
<attribute>editable</attribute>
|
|
1160
|
+
<value><![CDATA[1]]></value>
|
|
1161
|
+
</action>
|
|
1162
|
+
<action>
|
|
1163
|
+
<action_id>set_metadata_field_text_558694519_required</action_id>
|
|
1164
|
+
<action_type>set_attribute_value</action_type>
|
|
1165
|
+
<asset>[[output://create_metadata_field_text_558694519.assetid]]</asset>
|
|
1166
|
+
<attribute>required</attribute>
|
|
1167
|
+
<value><![CDATA[0]]></value>
|
|
1168
|
+
</action>
|
|
1169
|
+
<action>
|
|
1170
|
+
<action_id>set_permission_558694519_read_5</action_id>
|
|
1171
|
+
<action_type>set_permission</action_type>
|
|
1172
|
+
<asset>[[output://create_metadata_field_text_558694519.assetid]]</asset>
|
|
1173
|
+
<permission>1</permission>
|
|
1174
|
+
<granted>1</granted>
|
|
1175
|
+
<userid>[[system://public_user]]</userid>
|
|
1176
|
+
</action>
|
|
1177
|
+
|
|
1178
|
+
<action>
|
|
1179
|
+
<action_id>create_metadata_field_select_5135147951</action_id>
|
|
1180
|
+
<action_type>create_asset</action_type>
|
|
1181
|
+
<type_code>metadata_field_select</type_code>
|
|
1182
|
+
<link_type>2</link_type>
|
|
1183
|
+
<parentid>[[output://create_Metadata_Section_691774053.assetid]]</parentid>
|
|
1184
|
+
<value></value>
|
|
1185
|
+
<is_dependant>1</is_dependant>
|
|
1186
|
+
<is_exclusive>0</is_exclusive>
|
|
1187
|
+
</action>
|
|
1188
|
+
<action>
|
|
1189
|
+
<action_id>set_metadata_field_select_5135147951_name</action_id>
|
|
1190
|
+
<action_type>set_attribute_value</action_type>
|
|
1191
|
+
<asset>[[output://create_metadata_field_select_5135147951.assetid]]</asset>
|
|
1192
|
+
<attribute>name</attribute>
|
|
1193
|
+
<value><![CDATA[intro_heading_level]]></value>
|
|
1194
|
+
</action>
|
|
1195
|
+
<action>
|
|
1196
|
+
<action_id>set_metadata_field_select_5135147951_friendly_name</action_id>
|
|
1197
|
+
<action_type>set_attribute_value</action_type>
|
|
1198
|
+
<asset>[[output://create_metadata_field_select_5135147951.assetid]]</asset>
|
|
1199
|
+
<attribute>friendly_name</attribute>
|
|
1200
|
+
<value><![CDATA[Intro heading level]]></value>
|
|
1201
|
+
</action>
|
|
1202
|
+
<action>
|
|
1203
|
+
<action_id>set_metadata_field_select_5135147951_default</action_id>
|
|
1204
|
+
<action_type>set_attribute_value</action_type>
|
|
1205
|
+
<asset>[[output://create_metadata_field_select_5135147951.assetid]]</asset>
|
|
1206
|
+
<attribute>default</attribute>
|
|
1207
|
+
<value><![CDATA[h2]]></value>
|
|
1208
|
+
</action>
|
|
1209
|
+
<action>
|
|
1210
|
+
<action_id>set_metadata_field_select_5135147951_description</action_id>
|
|
1211
|
+
<action_type>set_attribute_value</action_type>
|
|
1212
|
+
<asset>[[output://create_metadata_field_select_5135147951.assetid]]</asset>
|
|
1213
|
+
<attribute>description</attribute>
|
|
1214
|
+
<value><![CDATA[]]></value>
|
|
1215
|
+
</action>
|
|
1216
|
+
<action>
|
|
1217
|
+
<action_id>set_metadata_field_select_5135147951_editable</action_id>
|
|
1218
|
+
<action_type>set_attribute_value</action_type>
|
|
1219
|
+
<asset>[[output://create_metadata_field_select_5135147951.assetid]]</asset>
|
|
1220
|
+
<attribute>editable</attribute>
|
|
1221
|
+
<value><![CDATA[0]]></value>
|
|
1222
|
+
</action>
|
|
1223
|
+
<action>
|
|
1224
|
+
<action_id>set_metadata_field_select_5135147951_editable</action_id>
|
|
1225
|
+
<action_type>set_attribute_value</action_type>
|
|
1226
|
+
<asset>[[output://create_metadata_field_select_5135147951.assetid]]</asset>
|
|
1227
|
+
<attribute>editable</attribute>
|
|
1228
|
+
<value><![CDATA[0]]></value>
|
|
1229
|
+
</action>
|
|
1230
|
+
<action>
|
|
1231
|
+
<action_id>set_metadata_field_select_5135147951_required</action_id>
|
|
1232
|
+
<action_type>set_attribute_value</action_type>
|
|
1233
|
+
<asset>[[output://create_metadata_field_select_5135147951.assetid]]</asset>
|
|
1234
|
+
<attribute>required</attribute>
|
|
1235
|
+
<value><![CDATA[0]]></value>
|
|
1236
|
+
</action>
|
|
1237
|
+
<action>
|
|
1238
|
+
<action_id>set_permission_5135147951_read_5</action_id>
|
|
1239
|
+
<action_type>set_permission</action_type>
|
|
1240
|
+
<asset>[[output://create_metadata_field_select_5135147951.assetid]]</asset>
|
|
1241
|
+
<permission>1</permission>
|
|
1242
|
+
<granted>1</granted>
|
|
1243
|
+
<userid>[[system://public_user]]</userid>
|
|
1244
|
+
</action>
|
|
1245
|
+
|
|
1246
|
+
<action>
|
|
1247
|
+
<action_id>set_metadata_field_select_5135147951_select_options</action_id>
|
|
1248
|
+
<action_type>set_attribute_value</action_type>
|
|
1249
|
+
<asset>[[output://create_metadata_field_select_5135147951.assetid]]</asset>
|
|
1250
|
+
<attribute>select_options</attribute>
|
|
1251
|
+
<value><![CDATA[array ('h2' => 'h2','h3' => 'h3','h4' => 'h4','h5' => 'h5',);]]></value>
|
|
1252
|
+
</action>
|
|
1253
|
+
<action>
|
|
1254
|
+
<action_id>set_{f.type}_5135147951_edit_params</action_id>
|
|
1255
|
+
<action_type>set_attribute_value</action_type>
|
|
1256
|
+
<asset>[[output://create_metadata_field_select_5135147951.assetid]]</asset>
|
|
1257
|
+
<attribute>edit_params</attribute>
|
|
1258
|
+
<value><![CDATA[array (
|
|
1259
|
+
'style' => 'list',
|
|
1260
|
+
'type' => 'table',
|
|
1261
|
+
'height' => '',
|
|
1262
|
+
'columns' => '1',
|
|
1263
|
+
'empty_text' => '',
|
|
1264
|
+
'extras' => '',
|
|
1265
|
+
);]]></value>
|
|
1266
|
+
</action>
|
|
1267
|
+
|
|
1268
|
+
<action>
|
|
1269
|
+
<action_id>create_metadata_field_wysiwyg_8429717249</action_id>
|
|
1270
|
+
<action_type>create_asset</action_type>
|
|
1271
|
+
<type_code>metadata_field_wysiwyg</type_code>
|
|
1272
|
+
<link_type>2</link_type>
|
|
1273
|
+
<parentid>[[output://create_Metadata_Section_691774053.assetid]]</parentid>
|
|
1274
|
+
<value></value>
|
|
1275
|
+
<is_dependant>1</is_dependant>
|
|
1276
|
+
<is_exclusive>0</is_exclusive>
|
|
1277
|
+
</action>
|
|
1278
|
+
<action>
|
|
1279
|
+
<action_id>set_metadata_field_wysiwyg_8429717249_name</action_id>
|
|
1280
|
+
<action_type>set_attribute_value</action_type>
|
|
1281
|
+
<asset>[[output://create_metadata_field_wysiwyg_8429717249.assetid]]</asset>
|
|
1282
|
+
<attribute>name</attribute>
|
|
1283
|
+
<value><![CDATA[intro_body]]></value>
|
|
1284
|
+
</action>
|
|
1285
|
+
<action>
|
|
1286
|
+
<action_id>set_metadata_field_wysiwyg_8429717249_friendly_name</action_id>
|
|
1287
|
+
<action_type>set_attribute_value</action_type>
|
|
1288
|
+
<asset>[[output://create_metadata_field_wysiwyg_8429717249.assetid]]</asset>
|
|
1289
|
+
<attribute>friendly_name</attribute>
|
|
1290
|
+
<value><![CDATA[Intro body]]></value>
|
|
1291
|
+
</action>
|
|
1292
|
+
<action>
|
|
1293
|
+
<action_id>set_metadata_field_wysiwyg_8429717249_default</action_id>
|
|
1294
|
+
<action_type>set_attribute_value</action_type>
|
|
1295
|
+
<asset>[[output://create_metadata_field_wysiwyg_8429717249.assetid]]</asset>
|
|
1296
|
+
<attribute>default</attribute>
|
|
1297
|
+
<value><![CDATA[Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.]]></value>
|
|
1298
|
+
</action>
|
|
1299
|
+
<action>
|
|
1300
|
+
<action_id>set_metadata_field_wysiwyg_8429717249_description</action_id>
|
|
1301
|
+
<action_type>set_attribute_value</action_type>
|
|
1302
|
+
<asset>[[output://create_metadata_field_wysiwyg_8429717249.assetid]]</asset>
|
|
1303
|
+
<attribute>description</attribute>
|
|
1304
|
+
<value><![CDATA[]]></value>
|
|
1305
|
+
</action>
|
|
1306
|
+
<action>
|
|
1307
|
+
<action_id>set_metadata_field_wysiwyg_8429717249_editable</action_id>
|
|
1308
|
+
<action_type>set_attribute_value</action_type>
|
|
1309
|
+
<asset>[[output://create_metadata_field_wysiwyg_8429717249.assetid]]</asset>
|
|
1310
|
+
<attribute>editable</attribute>
|
|
1311
|
+
<value><![CDATA[1]]></value>
|
|
1312
|
+
</action>
|
|
1313
|
+
<action>
|
|
1314
|
+
<action_id>set_metadata_field_wysiwyg_8429717249_editable</action_id>
|
|
1315
|
+
<action_type>set_attribute_value</action_type>
|
|
1316
|
+
<asset>[[output://create_metadata_field_wysiwyg_8429717249.assetid]]</asset>
|
|
1317
|
+
<attribute>editable</attribute>
|
|
1318
|
+
<value><![CDATA[1]]></value>
|
|
1319
|
+
</action>
|
|
1320
|
+
<action>
|
|
1321
|
+
<action_id>set_metadata_field_wysiwyg_8429717249_required</action_id>
|
|
1322
|
+
<action_type>set_attribute_value</action_type>
|
|
1323
|
+
<asset>[[output://create_metadata_field_wysiwyg_8429717249.assetid]]</asset>
|
|
1324
|
+
<attribute>required</attribute>
|
|
1325
|
+
<value><![CDATA[0]]></value>
|
|
1326
|
+
</action>
|
|
1327
|
+
<action>
|
|
1328
|
+
<action_id>set_permission_8429717249_read_5</action_id>
|
|
1329
|
+
<action_type>set_permission</action_type>
|
|
1330
|
+
<asset>[[output://create_metadata_field_wysiwyg_8429717249.assetid]]</asset>
|
|
1331
|
+
<permission>1</permission>
|
|
1332
|
+
<granted>1</granted>
|
|
1333
|
+
<userid>[[system://public_user]]</userid>
|
|
1334
|
+
</action>
|
|
1335
|
+
|
|
1336
|
+
<action>
|
|
1337
|
+
<action_id>create_metadata_field_text_736363261</action_id>
|
|
1338
|
+
<action_type>create_asset</action_type>
|
|
1339
|
+
<type_code>metadata_field_text</type_code>
|
|
1340
|
+
<link_type>2</link_type>
|
|
1341
|
+
<parentid>[[output://create_Metadata_Section_691774053.assetid]]</parentid>
|
|
1342
|
+
<value></value>
|
|
1343
|
+
<is_dependant>1</is_dependant>
|
|
1344
|
+
<is_exclusive>0</is_exclusive>
|
|
1345
|
+
</action>
|
|
1346
|
+
<action>
|
|
1347
|
+
<action_id>set_metadata_field_text_736363261_name</action_id>
|
|
1348
|
+
<action_type>set_attribute_value</action_type>
|
|
1349
|
+
<asset>[[output://create_metadata_field_text_736363261.assetid]]</asset>
|
|
1350
|
+
<attribute>name</attribute>
|
|
1351
|
+
<value><![CDATA[all_link_name]]></value>
|
|
1352
|
+
</action>
|
|
1353
|
+
<action>
|
|
1354
|
+
<action_id>set_metadata_field_text_736363261_friendly_name</action_id>
|
|
1355
|
+
<action_type>set_attribute_value</action_type>
|
|
1356
|
+
<asset>[[output://create_metadata_field_text_736363261.assetid]]</asset>
|
|
1357
|
+
<attribute>friendly_name</attribute>
|
|
1358
|
+
<value><![CDATA[Footer link name]]></value>
|
|
1359
|
+
</action>
|
|
1360
|
+
<action>
|
|
1361
|
+
<action_id>set_metadata_field_text_736363261_default</action_id>
|
|
1362
|
+
<action_type>set_attribute_value</action_type>
|
|
1363
|
+
<asset>[[output://create_metadata_field_text_736363261.assetid]]</asset>
|
|
1364
|
+
<attribute>default</attribute>
|
|
1365
|
+
<value><![CDATA[All cards]]></value>
|
|
1366
|
+
</action>
|
|
1367
|
+
<action>
|
|
1368
|
+
<action_id>set_metadata_field_text_736363261_description</action_id>
|
|
1369
|
+
<action_type>set_attribute_value</action_type>
|
|
1370
|
+
<asset>[[output://create_metadata_field_text_736363261.assetid]]</asset>
|
|
1371
|
+
<attribute>description</attribute>
|
|
1372
|
+
<value><![CDATA[]]></value>
|
|
1373
|
+
</action>
|
|
1374
|
+
<action>
|
|
1375
|
+
<action_id>set_metadata_field_text_736363261_editable</action_id>
|
|
1376
|
+
<action_type>set_attribute_value</action_type>
|
|
1377
|
+
<asset>[[output://create_metadata_field_text_736363261.assetid]]</asset>
|
|
1378
|
+
<attribute>editable</attribute>
|
|
1379
|
+
<value><![CDATA[1]]></value>
|
|
1380
|
+
</action>
|
|
1381
|
+
<action>
|
|
1382
|
+
<action_id>set_metadata_field_text_736363261_editable</action_id>
|
|
1383
|
+
<action_type>set_attribute_value</action_type>
|
|
1384
|
+
<asset>[[output://create_metadata_field_text_736363261.assetid]]</asset>
|
|
1385
|
+
<attribute>editable</attribute>
|
|
1386
|
+
<value><![CDATA[1]]></value>
|
|
1387
|
+
</action>
|
|
1388
|
+
<action>
|
|
1389
|
+
<action_id>set_metadata_field_text_736363261_required</action_id>
|
|
1390
|
+
<action_type>set_attribute_value</action_type>
|
|
1391
|
+
<asset>[[output://create_metadata_field_text_736363261.assetid]]</asset>
|
|
1392
|
+
<attribute>required</attribute>
|
|
1393
|
+
<value><![CDATA[0]]></value>
|
|
1394
|
+
</action>
|
|
1395
|
+
<action>
|
|
1396
|
+
<action_id>set_permission_736363261_read_5</action_id>
|
|
1397
|
+
<action_type>set_permission</action_type>
|
|
1398
|
+
<asset>[[output://create_metadata_field_text_736363261.assetid]]</asset>
|
|
1399
|
+
<permission>1</permission>
|
|
1400
|
+
<granted>1</granted>
|
|
1401
|
+
<userid>[[system://public_user]]</userid>
|
|
1402
|
+
</action>
|
|
1403
|
+
|
|
1404
|
+
<action>
|
|
1405
|
+
<action_id>create_metadata_field_related_asset_9523440854</action_id>
|
|
1406
|
+
<action_type>create_asset</action_type>
|
|
1407
|
+
<type_code>metadata_field_related_asset</type_code>
|
|
1408
|
+
<link_type>2</link_type>
|
|
1409
|
+
<parentid>[[output://create_Metadata_Section_691774053.assetid]]</parentid>
|
|
1410
|
+
<value></value>
|
|
1411
|
+
<is_dependant>1</is_dependant>
|
|
1412
|
+
<is_exclusive>0</is_exclusive>
|
|
1413
|
+
</action>
|
|
1414
|
+
<action>
|
|
1415
|
+
<action_id>set_metadata_field_related_asset_9523440854_name</action_id>
|
|
1416
|
+
<action_type>set_attribute_value</action_type>
|
|
1417
|
+
<asset>[[output://create_metadata_field_related_asset_9523440854.assetid]]</asset>
|
|
1418
|
+
<attribute>name</attribute>
|
|
1419
|
+
<value><![CDATA[all_link]]></value>
|
|
1420
|
+
</action>
|
|
1421
|
+
<action>
|
|
1422
|
+
<action_id>set_metadata_field_related_asset_9523440854_friendly_name</action_id>
|
|
1423
|
+
<action_type>set_attribute_value</action_type>
|
|
1424
|
+
<asset>[[output://create_metadata_field_related_asset_9523440854.assetid]]</asset>
|
|
1425
|
+
<attribute>friendly_name</attribute>
|
|
1426
|
+
<value><![CDATA[Footer link]]></value>
|
|
1427
|
+
</action>
|
|
1428
|
+
<action>
|
|
1429
|
+
<action_id>set_metadata_field_related_asset_9523440854_default</action_id>
|
|
1430
|
+
<action_type>set_attribute_value</action_type>
|
|
1431
|
+
<asset>[[output://create_metadata_field_related_asset_9523440854.assetid]]</asset>
|
|
1432
|
+
<attribute>default</attribute>
|
|
1433
|
+
<value><![CDATA[#]]></value>
|
|
1434
|
+
</action>
|
|
1435
|
+
<action>
|
|
1436
|
+
<action_id>set_metadata_field_related_asset_9523440854_description</action_id>
|
|
1437
|
+
<action_type>set_attribute_value</action_type>
|
|
1438
|
+
<asset>[[output://create_metadata_field_related_asset_9523440854.assetid]]</asset>
|
|
1439
|
+
<attribute>description</attribute>
|
|
1440
|
+
<value><![CDATA[]]></value>
|
|
1441
|
+
</action>
|
|
1442
|
+
<action>
|
|
1443
|
+
<action_id>set_metadata_field_related_asset_9523440854_editable</action_id>
|
|
1444
|
+
<action_type>set_attribute_value</action_type>
|
|
1445
|
+
<asset>[[output://create_metadata_field_related_asset_9523440854.assetid]]</asset>
|
|
1446
|
+
<attribute>editable</attribute>
|
|
1447
|
+
<value><![CDATA[1]]></value>
|
|
1448
|
+
</action>
|
|
1449
|
+
<action>
|
|
1450
|
+
<action_id>set_metadata_field_related_asset_9523440854_editable</action_id>
|
|
1451
|
+
<action_type>set_attribute_value</action_type>
|
|
1452
|
+
<asset>[[output://create_metadata_field_related_asset_9523440854.assetid]]</asset>
|
|
1453
|
+
<attribute>editable</attribute>
|
|
1454
|
+
<value><![CDATA[1]]></value>
|
|
1455
|
+
</action>
|
|
1456
|
+
<action>
|
|
1457
|
+
<action_id>set_metadata_field_related_asset_9523440854_required</action_id>
|
|
1458
|
+
<action_type>set_attribute_value</action_type>
|
|
1459
|
+
<asset>[[output://create_metadata_field_related_asset_9523440854.assetid]]</asset>
|
|
1460
|
+
<attribute>required</attribute>
|
|
1461
|
+
<value><![CDATA[0]]></value>
|
|
1462
|
+
</action>
|
|
1463
|
+
<action>
|
|
1464
|
+
<action_id>set_permission_9523440854_read_5</action_id>
|
|
1465
|
+
<action_type>set_permission</action_type>
|
|
1466
|
+
<asset>[[output://create_metadata_field_related_asset_9523440854.assetid]]</asset>
|
|
1467
|
+
<permission>1</permission>
|
|
1468
|
+
<granted>1</granted>
|
|
1469
|
+
<userid>[[system://public_user]]</userid>
|
|
1470
|
+
</action>
|
|
1471
|
+
|
|
1472
|
+
<action>
|
|
1473
|
+
<action_id>create_metadata_field_text_1247534747</action_id>
|
|
1474
|
+
<action_type>create_asset</action_type>
|
|
1475
|
+
<type_code>metadata_field_text</type_code>
|
|
1476
|
+
<link_type>2</link_type>
|
|
1477
|
+
<parentid>[[output://create_Metadata_Section_691774053.assetid]]</parentid>
|
|
1478
|
+
<value></value>
|
|
1479
|
+
<is_dependant>1</is_dependant>
|
|
1480
|
+
<is_exclusive>0</is_exclusive>
|
|
1481
|
+
</action>
|
|
1482
|
+
<action>
|
|
1483
|
+
<action_id>set_metadata_field_text_1247534747_name</action_id>
|
|
1484
|
+
<action_type>set_attribute_value</action_type>
|
|
1485
|
+
<asset>[[output://create_metadata_field_text_1247534747.assetid]]</asset>
|
|
1486
|
+
<attribute>name</attribute>
|
|
1487
|
+
<value><![CDATA[id_field]]></value>
|
|
1488
|
+
</action>
|
|
1489
|
+
<action>
|
|
1490
|
+
<action_id>set_metadata_field_text_1247534747_friendly_name</action_id>
|
|
1491
|
+
<action_type>set_attribute_value</action_type>
|
|
1492
|
+
<asset>[[output://create_metadata_field_text_1247534747.assetid]]</asset>
|
|
1493
|
+
<attribute>friendly_name</attribute>
|
|
1494
|
+
<value><![CDATA[Id field]]></value>
|
|
1495
|
+
</action>
|
|
1496
|
+
<action>
|
|
1497
|
+
<action_id>set_metadata_field_text_1247534747_default</action_id>
|
|
1498
|
+
<action_type>set_attribute_value</action_type>
|
|
1499
|
+
<asset>[[output://create_metadata_field_text_1247534747.assetid]]</asset>
|
|
1500
|
+
<attribute>default</attribute>
|
|
1501
|
+
<value><![CDATA[]]></value>
|
|
1502
|
+
</action>
|
|
1503
|
+
<action>
|
|
1504
|
+
<action_id>set_metadata_field_text_1247534747_description</action_id>
|
|
1505
|
+
<action_type>set_attribute_value</action_type>
|
|
1506
|
+
<asset>[[output://create_metadata_field_text_1247534747.assetid]]</asset>
|
|
1507
|
+
<attribute>description</attribute>
|
|
1508
|
+
<value><![CDATA[]]></value>
|
|
1509
|
+
</action>
|
|
1510
|
+
<action>
|
|
1511
|
+
<action_id>set_metadata_field_text_1247534747_editable</action_id>
|
|
1512
|
+
<action_type>set_attribute_value</action_type>
|
|
1513
|
+
<asset>[[output://create_metadata_field_text_1247534747.assetid]]</asset>
|
|
1514
|
+
<attribute>editable</attribute>
|
|
1515
|
+
<value><![CDATA[1]]></value>
|
|
1516
|
+
</action>
|
|
1517
|
+
<action>
|
|
1518
|
+
<action_id>set_metadata_field_text_1247534747_editable</action_id>
|
|
1519
|
+
<action_type>set_attribute_value</action_type>
|
|
1520
|
+
<asset>[[output://create_metadata_field_text_1247534747.assetid]]</asset>
|
|
1521
|
+
<attribute>editable</attribute>
|
|
1522
|
+
<value><![CDATA[1]]></value>
|
|
1523
|
+
</action>
|
|
1524
|
+
<action>
|
|
1525
|
+
<action_id>set_metadata_field_text_1247534747_required</action_id>
|
|
1526
|
+
<action_type>set_attribute_value</action_type>
|
|
1527
|
+
<asset>[[output://create_metadata_field_text_1247534747.assetid]]</asset>
|
|
1528
|
+
<attribute>required</attribute>
|
|
1529
|
+
<value><![CDATA[0]]></value>
|
|
1530
|
+
</action>
|
|
1531
|
+
<action>
|
|
1532
|
+
<action_id>set_permission_1247534747_read_5</action_id>
|
|
1533
|
+
<action_type>set_permission</action_type>
|
|
1534
|
+
<asset>[[output://create_metadata_field_text_1247534747.assetid]]</asset>
|
|
1535
|
+
<permission>1</permission>
|
|
1536
|
+
<granted>1</granted>
|
|
1537
|
+
<userid>[[system://public_user]]</userid>
|
|
1538
|
+
</action>
|
|
1539
|
+
</actions>
|