diff --git a/.lando.base.yml b/.lando.base.yml new file mode 100644 index 000000000..83197147e --- /dev/null +++ b/.lando.base.yml @@ -0,0 +1,160 @@ +name: unity_base +recipe: drupal9 +config: + webroot: web + database: mariadb + php: '8.1' + composer_version: '2.0.7' + config: + php: .lando/config/php.ini + database: .lando/config/my.cnf +compose: + - docker-compose.yml +env_file: + - .env +services: + appserver: + xdebug: debug + build_as_root: + - /app/.lando/scripts/appserver_build.sh + database: + build_as_root: + - "sh /app/.lando/scripts/create_databases.sh" + redis: + type: redis:5.0 + persist: true + config: + server: .lando/config/redis.conf + mailhog: + type: mailhog + portforward: true + hogfrom: + - appserver +tooling: + drupal: + cmd: "/app/vendor/bin/drupal --root=/app/web" + xdebug-on: + service: appserver + description: Enable xdebug + cmd: "docker-php-ext-enable xdebug && /etc/init.d/apache2 reload" + user: root + xdebug-off: + service: appserver + description: Disable xdebug + cmd: "rm /usr/local/etc/php/conf.d/docker-php-ext-xdebug.ini && /etc/init.d/apache2 reload" + user: root + npm: + service: appserver + cmd: /usr/bin/npm + yarn: + service: appserver + cmd: yarn + 'nightwatch [site] [test]': + service: appserver + description: "Run Nightwatch.js functional tests.\n\n + Usage:\n + > Run a specific test with tag\n + lando nightwatch --tag your-tag\n + > Run a single test suite file, relative to Drupal core location\n + lando nightwatch ../modules/custom/modulename/tests/src/Nightwatch/Tests/yourTestSuite.js\n + > Run all tests except Core\n + lando nightwatch --skiptags core\n" + cmd: "sh /app/.lando/scripts/run_nightwatch.sh" + options: + site: + passthrough: true + description: Multisite to run tests on + alias: + - s + interactive: + type: input + message: Which Unity site (e.g. uregni) ? + weight: 1 + test: + passthrough: true + phpunit: + description: "Run PHPUnit tests. You can pass options, e.g. --group=unity, as you require" + service: appserver + cmd: cd /app/web/core && /app/vendor/bin/phpunit -c /app/web/core/phpunit.xml + phpcs: + description: Run PHPCS checks against all custom Drupal 8 code + service: appserver + cmd: /app/phpcs.sh "/app" "/app/web/sites /app/web/modules/origins /app/web/modules/custom /app/web/themes/custom /app/web/profiles/unity" + drck: + description: Run drupal-check for Drupal 9 compatibility e.g. 'lando drck ./' + service: appserver + cmd: /app/vendor/bin/drupal-check + drush: + server: appserver + cmd: drush -r /app/web + 'db-export [file]': disabled + 'db-import ': disabled + 'db-export [name]': + service: database + description: Exports database to a file. To export all databases, don't provide the name' + cmd: "sh /app/.lando/scripts/export_database.sh" + user: root + options: + name: + description: Database to export + alias: + - n + 'db-import [database] [file]': + service: database + description: Import file to database + cmd: "sh /app/.lando/scripts/import_database.sh" + user: root + options: + database: + passthrough: true + description: Database to import to + alias: + - d + interactive: + type: input + message: Which database to import to? + weight: 1 + file: + passthrough: true + description: File to import + alias: + - f + interactive: + type: input + message: Which file to import? + weight: 2 + 'db-create [name]': + service: database + description: Create a new database + cmd: "sh /app/.lando/scripts/create_database.sh" + user: root + options: + name: + passthrough: true + description: Name of the database to create + alias: + - n + interactive: + type: input + message: What do you want to call this database? + weight: 1 + 'db-delete [name]': + service: database + description: Delete a database + cmd: "sh /app/.lando/scripts/delete_database.sh" + user: root + options: + name: + passthrough: true + description: Name of the database to delete + alias: + - n + interactive: + type: input + message: Which database do you want to delete? + weight: 1 + db-list: + service: database + description: List all databases + cmd: mysql -uroot -e "SHOW DATABASES;" + user: root \ No newline at end of file diff --git a/.lando/config/my.cnf b/.lando/config/my.cnf new file mode 100644 index 000000000..65455a504 --- /dev/null +++ b/.lando/config/my.cnf @@ -0,0 +1,4 @@ +[mysqld] +max_allowed_packet=32M +innodb_locks_unsafe_for_binlog = 1 +transaction-isolation=REPEATABLE-READ diff --git a/.lando/config/php.ini b/.lando/config/php.ini new file mode 100644 index 000000000..80b9d30ee --- /dev/null +++ b/.lando/config/php.ini @@ -0,0 +1,45 @@ +[PHP] + +;;;;;;;;;;;;;;; +; PHP Globals ; +;;;;;;;;;;;;;;; + +short_open_tag = Off +output_buffering = 4096 +allow_call_time_pass_reference = Off +request_order = "GP" +register_long_arrays = Off +register_argc_argv = Off +magic_quotes_gpc = Off +enable_dl = Off +allow_url_fopen = On +realpath_cache_size = "800K" +realpath_cache_ttl = "86400" +disable_functions = +sendmail_path=/bin/true + +[Date] +date.timezone = "UTC" + +;;;;;;;;;;;;;;;;;;;;;; +;; PACKAGE SETTINGS ;; +;;;;;;;;;;;;;;;;;;;;;; + +; Xdebug +xdebug.start_with_request=yes +xdebug.max_nesting_level = 512 +xdebug.client_host="${LANDO_HOST_IP}" + +; Globals +expose_php = on +max_execution_time = 180 +max_input_time = 900 +max_input_vars = 10000 +memory_limit = -1 +upload_max_filesize = 100M +post_max_size = 200M +error_reporting = E_ALL & ~E_DEPRECATED +ignore_repeated_errors = on +html_errors = off +display_errors = on +log_errors = on diff --git a/.lando/config/redis.conf b/.lando/config/redis.conf new file mode 100644 index 000000000..843107c40 --- /dev/null +++ b/.lando/config/redis.conf @@ -0,0 +1,3 @@ +databases 17 +maxmemory 64mb +maxmemory-policy volatile-lru \ No newline at end of file diff --git a/.lando/config/solr/7.x/default/accents_en.txt b/.lando/config/solr/7.x/default/accents_en.txt new file mode 100755 index 000000000..bed051477 --- /dev/null +++ b/.lando/config/solr/7.x/default/accents_en.txt @@ -0,0 +1,164 @@ +# À => A +"\u00C0" => "A" +# Á => A +"\u00C1" => "A" +#  => A +"\u00C2" => "A" +# à => A +"\u00C3" => "A" +# Ä => A +"\u00C4" => "A" +# Å => A +"\u00C5" => "A" +# Ą => A +"\u0104" => "A" +# Æ => AE +"\u00C6" => "AE" +# Ç => C +"\u00C7" => "C" +# Ć => C +"\U0106" => "C" +# È => E +"\u00C8" => "E" +# É => E +"\u00C9" => "E" +# Ê => E +"\u00CA" => "E" +# Ë => E +"\u00CB" => "E" +# Ę => E +"\u0118" => "E" +# Ì => I +"\u00CC" => "I" +# Í => I +"\u00CD" => "I" +# Î => I +"\u00CE" => "I" +# Ï => I +"\u00CF" => "I" +# IJ => IJ +"\u0132" => "IJ" +# Ð => D +"\u00D0" => "D" +# Ł => L +"\u0141" => "L" +# Ñ => N +"\u00D1" => "N" +# Ń => N +"\u0143" => "N" +# Ò => O +"\u00D2" => "O" +# Ó => O +"\u00D3" => "O" +# Ô => O +"\u00D4" => "O" +# Õ => O +"\u00D5" => "O" +# Ö => O +"\u00D6" => "O" +# Ø => O +"\u00D8" => "O" +# Œ => OE +"\u0152" => "OE" +# Þ +"\u00DE" => "TH" +# Ù => U +"\u00D9" => "U" +# Ú => U +"\u00DA" => "U" +# Û => U +"\u00DB" => "U" +# Ü => U +"\u00DC" => "U" +# Ý => Y +"\u00DD" => "Y" +# Ÿ => Y +"\u0178" => "Y" +# à => a +"\u00E0" => "a" +# á => a +"\u00E1" => "a" +# â => a +"\u00E2" => "a" +# ã => a +"\u00E3" => "a" +# ä => a +"\u00E4" => "a" +# å => a +"\u00E5" => "a" +# æ => ae +"\u00E6" => "ae" +# ç => c +"\u00E7" => "c" +# è => e +"\u00E8" => "e" +# é => e +"\u00E9" => "e" +# ê => e +"\u00EA" => "e" +# ë => e +"\u00EB" => "e" +# ì => i +"\u00EC" => "i" +# í => i +"\u00ED" => "i" +# î => i +"\u00EE" => "i" +# ï => i +"\u00EF" => "i" +# ij => ij +"\u0133" => "ij" +# ð => d +"\u00F0" => "d" +# ñ => n +"\u00F1" => "n" +# ò => o +"\u00F2" => "o" +# ó => o +"\u00F3" => "o" +# ô => o +"\u00F4" => "o" +# õ => o +"\u00F5" => "o" +# ö => o +"\u00F6" => "o" +# ø => o +"\u00F8" => "o" +# œ => oe +"\u0153" => "oe" +# ß => ss +"\u00DF" => "ss" +# Ś => S +"\u015a" => "S" +# þ => th +"\u00FE" => "th" +# ù => u +"\u00F9" => "u" +# ú => u +"\u00FA" => "u" +# û => u +"\u00FB" => "u" +# ü => u +"\u00FC" => "u" +# ý => y +"\u00FD" => "y" +# ÿ => y +"\u00FF" => "y" +# Ź => Z +"\u0179" => "Z" +# Ż => Z +"\u017b" => "Z" +# ff => ff +"\uFB00" => "ff" +# fi => fi +"\uFB01" => "fi" +# fl => fl +"\uFB02" => "fl" +# ffi => ffi +"\uFB03" => "ffi" +# ffl => ffl +"\uFB04" => "ffl" +# ſt => st +"\uFB05" => "st" +# st => st +"\uFB06" => "st" diff --git a/.lando/config/solr/7.x/default/accents_und.txt b/.lando/config/solr/7.x/default/accents_und.txt new file mode 100755 index 000000000..7c883f87a --- /dev/null +++ b/.lando/config/solr/7.x/default/accents_und.txt @@ -0,0 +1,148 @@ +# À => A +"\u00C0" => "A" +# Á => A +"\u00C1" => "A" +#  => A +"\u00C2" => "A" +# à => A +"\u00C3" => "A" +# Ä => A +"\u00C4" => "A" +# Å => A +"\u00C5" => "A" +# Æ => AE +"\u00C6" => "AE" +# Ç => C +"\u00C7" => "C" +# È => E +"\u00C8" => "E" +# É => E +"\u00C9" => "E" +# Ê => E +"\u00CA" => "E" +# Ë => E +"\u00CB" => "E" +# Ì => I +"\u00CC" => "I" +# Í => I +"\u00CD" => "I" +# Î => I +"\u00CE" => "I" +# Ï => I +"\u00CF" => "I" +# IJ => IJ +"\u0132" => "IJ" +# Ð => D +"\u00D0" => "D" +# Ñ => N +"\u00D1" => "N" +# Ò => O +"\u00D2" => "O" +# Ó => O +"\u00D3" => "O" +# Ô => O +"\u00D4" => "O" +# Õ => O +"\u00D5" => "O" +# Ö => O +"\u00D6" => "O" +# Ø => O +"\u00D8" => "O" +# Œ => OE +"\u0152" => "OE" +# Þ +"\u00DE" => "TH" +# Ù => U +"\u00D9" => "U" +# Ú => U +"\u00DA" => "U" +# Û => U +"\u00DB" => "U" +# Ü => U +"\u00DC" => "U" +# Ý => Y +"\u00DD" => "Y" +# Ÿ => Y +"\u0178" => "Y" +# à => a +"\u00E0" => "a" +# á => a +"\u00E1" => "a" +# â => a +"\u00E2" => "a" +# ã => a +"\u00E3" => "a" +# ä => a +"\u00E4" => "a" +# å => a +"\u00E5" => "a" +# æ => ae +"\u00E6" => "ae" +# ç => c +"\u00E7" => "c" +# è => e +"\u00E8" => "e" +# é => e +"\u00E9" => "e" +# ê => e +"\u00EA" => "e" +# ë => e +"\u00EB" => "e" +# ì => i +"\u00EC" => "i" +# í => i +"\u00ED" => "i" +# î => i +"\u00EE" => "i" +# ï => i +"\u00EF" => "i" +# ij => ij +"\u0133" => "ij" +# ð => d +"\u00F0" => "d" +# ñ => n +"\u00F1" => "n" +# ò => o +"\u00F2" => "o" +# ó => o +"\u00F3" => "o" +# ô => o +"\u00F4" => "o" +# õ => o +"\u00F5" => "o" +# ö => o +"\u00F6" => "o" +# ø => o +"\u00F8" => "o" +# œ => oe +"\u0153" => "oe" +# ß => ss +"\u00DF" => "ss" +# þ => th +"\u00FE" => "th" +# ù => u +"\u00F9" => "u" +# ú => u +"\u00FA" => "u" +# û => u +"\u00FB" => "u" +# ü => u +"\u00FC" => "u" +# ý => y +"\u00FD" => "y" +# ÿ => y +"\u00FF" => "y" +# ff => ff +"\uFB00" => "ff" +# fi => fi +"\uFB01" => "fi" +# fl => fl +"\uFB02" => "fl" +# ffi => ffi +"\uFB03" => "ffi" +# ffl => ffl +"\uFB04" => "ffl" +# ſt => st +"\uFB05" => "st" +# st => st +"\uFB06" => "st" diff --git a/.lando/config/solr/7.x/default/elevate.xml b/.lando/config/solr/7.x/default/elevate.xml new file mode 100755 index 000000000..193a0e727 --- /dev/null +++ b/.lando/config/solr/7.x/default/elevate.xml @@ -0,0 +1,27 @@ + + + + + + + + + + diff --git a/.lando/config/solr/7.x/default/protwords_en.txt b/.lando/config/solr/7.x/default/protwords_en.txt new file mode 100755 index 000000000..8b1378917 --- /dev/null +++ b/.lando/config/solr/7.x/default/protwords_en.txt @@ -0,0 +1 @@ + diff --git a/.lando/config/solr/7.x/default/protwords_und.txt b/.lando/config/solr/7.x/default/protwords_und.txt new file mode 100755 index 000000000..8b1378917 --- /dev/null +++ b/.lando/config/solr/7.x/default/protwords_und.txt @@ -0,0 +1 @@ + diff --git a/.lando/config/solr/7.x/default/schema.xml b/.lando/config/solr/7.x/default/schema.xml new file mode 100644 index 000000000..80567fa8a --- /dev/null +++ b/.lando/config/solr/7.x/default/schema.xml @@ -0,0 +1,478 @@ + + + + +]> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + &extrafields; + + + &extratypes; + + + id + + + + + diff --git a/.lando/config/solr/7.x/default/schema_extra_fields.xml b/.lando/config/solr/7.x/default/schema_extra_fields.xml new file mode 100755 index 000000000..f5d74188a --- /dev/null +++ b/.lando/config/solr/7.x/default/schema_extra_fields.xml @@ -0,0 +1,89 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/.lando/config/solr/7.x/default/schema_extra_types.xml b/.lando/config/solr/7.x/default/schema_extra_types.xml new file mode 100755 index 000000000..46a81379b --- /dev/null +++ b/.lando/config/solr/7.x/default/schema_extra_types.xml @@ -0,0 +1,252 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/.lando/config/solr/7.x/default/solrconfig.xml b/.lando/config/solr/7.x/default/solrconfig.xml new file mode 100644 index 000000000..2cca95fcd --- /dev/null +++ b/.lando/config/solr/7.x/default/solrconfig.xml @@ -0,0 +1,811 @@ + + + + + + +]> + + + + + + + ${solr.abortOnConfigurationError:true} + + + ${solr.luceneMatchVersion:7.0} + + + + + + + + + + + + + + + + + + + + + ${solr.data.dir:} + + + + + + + + + ${solr.hdfs.home:} + + ${solr.hdfs.confdir:} + + ${solr.hdfs.blockcache.enabled:true} + + ${solr.hdfs.blockcache.global:true} + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ${solr.lock.type:native} + + + + + + + + + + + + + true + + + &index; + + + + + + + + + ${solr.ulog.dir:} + + + + + ${solr.autoCommit.MaxDocs:-1} + ${solr.autoCommit.MaxTime:15000} + false + + + + + + ${solr.autoSoftCommit.MaxDocs:-1} + ${solr.autoSoftCommit.MaxTime:-1} + + + + + + + + + + + + + + + + &query; + + + + + + + + + + + + static firstSearcher warming in solrconfig.xml + + + + + + false + + + + + + + + + &requestdispatcher; + + + + + + + &extra; + + + + + + + + + 100 + + + + + + + + 70 + + 0.5 + + [-\w ,/\n\"']{20,200} + + + + + + + ]]> + ]]> + + + + + + + + + + + + + + + + + + + + + + + + ,, + ,, + ,, + ,, + ,]]> + ]]> + + + + + + 10 + .,!? + + + + + + + WORD + + + en + US + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 5 + + + + + + + + + + + + + + + diff --git a/.lando/config/solr/7.x/default/solrconfig_extra.xml b/.lando/config/solr/7.x/default/solrconfig_extra.xml new file mode 100755 index 000000000..2bae3c950 --- /dev/null +++ b/.lando/config/solr/7.x/default/solrconfig_extra.xml @@ -0,0 +1,203 @@ + + + en + spellcheck_en + solr.DirectSolrSpellChecker + internal + 0.01 + 2 + 3 + 10 + 3 + 0.1 + .0001 + false + + + + und + spellcheck_und + solr.DirectSolrSpellChecker + internal + 0.01 + 2 + 3 + 10 + 3 + 0.1 + .0001 + false + + + + + en + AnalyzingInfixLookupFactory + DocumentDictionaryFactory + twm_suggest + text_en + sm_context_tags + true + false + + + + und + AnalyzingInfixLookupFactory + DocumentDictionaryFactory + twm_suggest + text_und + sm_context_tags + true + false + + + + + + false + false + false + true + false + 1 + false + 10 + + + terms + spellcheck + suggest + + + + + + + explicit + id + + + elevator + + + + + + + true + ignored_ + true + links + ignored_ + + + + + + + 1 + 1 + false + ${solr.mlt.timeAllowed:2000} + + + + + + + lucene + id + explicit + true + ${solr.selectSearchHandler.timeAllowed:-1} + true + + + spellcheck + elevator + + + + + + + id + und + wordbreak + on + false + false + 1 + 5 + 5 + true + true + 10 + 5 + + + spellcheck + + + + + + + true + und + 10 + + + suggest + + + + + + + id + true + + + tvComponent + + + + + + string + elevate.xml + + + diff --git a/.lando/config/solr/7.x/default/solrconfig_index.xml b/.lando/config/solr/7.x/default/solrconfig_index.xml new file mode 100755 index 000000000..e69de29bb diff --git a/.lando/config/solr/7.x/default/solrconfig_query.xml b/.lando/config/solr/7.x/default/solrconfig_query.xml new file mode 100755 index 000000000..5bdd69690 --- /dev/null +++ b/.lando/config/solr/7.x/default/solrconfig_query.xml @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + true + + false + + 20 + 200 + 1024 diff --git a/.lando/config/solr/7.x/default/solrconfig_requestdispatcher.xml b/.lando/config/solr/7.x/default/solrconfig_requestdispatcher.xml new file mode 100755 index 000000000..3a3f17d1c --- /dev/null +++ b/.lando/config/solr/7.x/default/solrconfig_requestdispatcher.xml @@ -0,0 +1,6 @@ + + + diff --git a/.lando/config/solr/7.x/default/solrcore.properties b/.lando/config/solr/7.x/default/solrcore.properties new file mode 100755 index 000000000..c24f6d97f --- /dev/null +++ b/.lando/config/solr/7.x/default/solrcore.properties @@ -0,0 +1,14 @@ +solr.replication.master=false +solr.replication.slave=false +solr.replication.pollInterval=00:00:60 +solr.replication.masterUrl=http://localhost:8983/solr +solr.replication.confFiles=schema.xml,schema_extra_types.xml,schema_extra_fields.xml,elevate.xml,stopwords_en.txt,synonyms_en.txt,protwords_en.txt,accents_en.txt,stopwords_und.txt,synonyms_und.txt,protwords_und.txt,accents_und.txt +solr.mlt.timeAllowed=2000 +solr.luceneMatchVersion=7.7 +solr.selectSearchHandler.timeAllowed=-1 +solr.autoCommit.MaxDocs=-1 +solr.autoCommit.MaxTime=15000 +solr.autoSoftCommit.MaxDocs=-1 +solr.autoSoftCommit.MaxTime=-1 +solr.install.dir=../../.. +solr.install.dir=/opt/solr diff --git a/.lando/config/solr/7.x/default/solrcore.properties.old b/.lando/config/solr/7.x/default/solrcore.properties.old new file mode 100755 index 000000000..a13ec539d --- /dev/null +++ b/.lando/config/solr/7.x/default/solrcore.properties.old @@ -0,0 +1,13 @@ +solr.replication.master=false +solr.replication.slave=false +solr.replication.pollInterval=00:00:60 +solr.replication.masterUrl=http://localhost:8983/solr +solr.replication.confFiles=schema.xml,schema_extra_types.xml,schema_extra_fields.xml,elevate.xml,stopwords_en.txt,synonyms_en.txt,protwords_en.txt,accents_en.txt,stopwords_und.txt,synonyms_und.txt,protwords_und.txt,accents_und.txt +solr.mlt.timeAllowed=2000 +solr.luceneMatchVersion=7.7 +solr.selectSearchHandler.timeAllowed=-1 +solr.autoCommit.MaxDocs=-1 +solr.autoCommit.MaxTime=15000 +solr.autoSoftCommit.MaxDocs=-1 +solr.autoSoftCommit.MaxTime=-1 +solr.install.dir=../../.. diff --git a/.lando/config/solr/7.x/default/stopwords_en.txt b/.lando/config/solr/7.x/default/stopwords_en.txt new file mode 100755 index 000000000..698105071 --- /dev/null +++ b/.lando/config/solr/7.x/default/stopwords_en.txt @@ -0,0 +1,35 @@ +a +an +and +are +as +at +be +but +by +for +if +in +into +is +it +no +not +of +on +or +s +such +t +that +the +their +then +there +these +they +this +to +was +will +with diff --git a/.lando/config/solr/7.x/default/stopwords_und.txt b/.lando/config/solr/7.x/default/stopwords_und.txt new file mode 100755 index 000000000..084397b6d --- /dev/null +++ b/.lando/config/solr/7.x/default/stopwords_und.txt @@ -0,0 +1,36 @@ +a +an +and +are +as +at +be +but +by +for +if +in +into +is +it +no +not +of +on +or +s +such +t +that +the +their +then +there +these +they +this +to +was +will +with + diff --git a/.lando/config/solr/7.x/default/synonyms_en.txt b/.lando/config/solr/7.x/default/synonyms_en.txt new file mode 100755 index 000000000..91689ff92 --- /dev/null +++ b/.lando/config/solr/7.x/default/synonyms_en.txt @@ -0,0 +1 @@ +drupal, durpal diff --git a/.lando/config/solr/7.x/default/synonyms_und.txt b/.lando/config/solr/7.x/default/synonyms_und.txt new file mode 100755 index 000000000..91689ff92 --- /dev/null +++ b/.lando/config/solr/7.x/default/synonyms_und.txt @@ -0,0 +1 @@ +drupal, durpal diff --git a/.lando/scripts/appserver_build.sh b/.lando/scripts/appserver_build.sh new file mode 100755 index 000000000..f5edee963 --- /dev/null +++ b/.lando/scripts/appserver_build.sh @@ -0,0 +1,62 @@ +#!/usr/bin/env bash + +# Variables to indicate key settings files or directories for Drupal. +DRUPAL_ROOT=/app/web +DRUPAL_CUSTOM_CODE=$DRUPAL_ROOT/modules/custom + +# Semaphore files to control whether we need to trigger an install +# of supporting software or config files. +NODE_YARN_INSTALLED=/etc/NODE_YARN_INSTALLED + +# Set Simple test variables and put PHPUnit config in place. +if [ ! -f "${DRUPAL_ROOT}/core/phpunit.xml" ]; then + echo "Adding localised PHPUnit config to Drupal webroot" + cp $DRUPAL_ROOT/core/phpunit.xml.dist $DRUPAL_ROOT/core/phpunit.xml + # Fix bootstrap path + sed -i -e "s|bootstrap=\"tests/bootstrap.php\"|bootstrap=\"${DRUPAL_ROOT}/core/tests/bootstrap.php\"|g" $DRUPAL_ROOT/core/phpunit.xml + # Inject database params for kernel tests. + sed -i -e "s|name=\"SIMPLETEST_DB\" value=\"\"|name=\"SIMPLETEST_DB\" value=\"${DB_DRIVER}://${DB_USER}:${DB_PASS}@${DB_HOST}/${DB_NAME}\"|g" $DRUPAL_ROOT/core/phpunit.xml + # Uncomment option to switch off Symfony deprecatons helper (we use drupal-check for this). + sed -i -e "s|||g" $DRUPAL_ROOT/core/phpunit.xml + # Set the base URL for kernel tests. + sed -i -e "s|name=\"SIMPLETEST_BASE_URL\" value=\"\"|name=\"SIMPLETEST_BASE_URL\" value=\"http:\/\/${LANDO_APP_NAME}.${LANDO_DOMAIN}\"|g" $DRUPAL_ROOT/core/phpunit.xml +fi + +# Add yarn/nodejs packages to allow functional testing on this service. +if [ ! -f "$NODE_YARN_INSTALLED" ]; then + # Update packages and add gnupg and https for apt to fetch yarn packages. + apt update + apt install -y gnupg apt-transport-https + # Add yarn deb repo. + curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | apt-key add - + echo "deb https://dl.yarnpkg.com/debian/ stable main" | tee /etc/apt/sources.list.d/yarn.list + apt update + apt install -y yarn + # Add and fetch up to date nodejs to allow yarn to run correctly. + curl -sL https://deb.nodesource.com/setup_14.x | bash - + apt install -y nodejs + + # Copy Drupal .env.example file, inject Lando vars and set in place for use by Nightwatch conf. + cat $DRUPAL_ROOT/core/.env.example | sed -e "s|\(^DRUPAL_TEST_BASE_URL\)\(.\+\)|\1=http:\/\/${LANDO_APP_NAME}.${LANDO_DOMAIN}|g" > $DRUPAL_ROOT/core/.env + # Alter a few more variables. + sed -i -e "s|\(#\)\(DRUPAL_NIGHTWATCH_SEARCH_DIRECTORY\)=|\2=../|g" $DRUPAL_ROOT/core/.env + sed -i -e "s|sqlite:\/\/localhost\/sites\/default\/files/db.sqlite|${DB_DRIVER}://${DB_USER}:${DB_PASS}@${DB_HOST}/${DB_NAME}|g" $DRUPAL_ROOT/core/.env + sed -i -e "s|\(^DRUPAL_TEST_WEBDRIVER_HOSTNAME\)=localhost|\1=chromedriver|g" $DRUPAL_ROOT/core/.env + sed -i -e "s|^DRUPAL_TEST_CHROMEDRIVER_AUTOSTART=true|DRUPAL_TEST_CHROMEDRIVER_AUTOSTART=false|g" $DRUPAL_ROOT/core/.env + sed -i -e "s|\(#\)\(DRUPAL_TEST_WEBDRIVER_CHROME_ARGS\)=|\2=\"--disable-gpu --headless --no-sandbox\"|g" $DRUPAL_ROOT/core/.env + sed -i -e "s|\(^DRUPAL_NIGHTWATCH_OUTPUT\)=reports/nightwatch|\1=/app/.lando/exports/nightwatch-reports|g" $DRUPAL_ROOT/core/.env + + # Fetch and install node packages if they're not already present. + if [ ! -d "${DRUPAL_ROOT}/core/node_modules" ]; then + cd $DRUPAL_ROOT/core && yarn install + fi + + # Install any known extra npm packges for, eg: migrations. + if [ ! -d "${DRUPAL_CUSTOM_CODE}/node_modules" ]; then + cd $DRUPAL_CUSTOM_CODE + npm install + fi + + touch $NODE_YARN_INSTALLED + +fi diff --git a/.lando/scripts/create_database.sh b/.lando/scripts/create_database.sh new file mode 100644 index 000000000..e64c795d9 --- /dev/null +++ b/.lando/scripts/create_database.sh @@ -0,0 +1,24 @@ +#!/bin/bash + +. /helpers/log.sh + +# Parse command options & flags. +for i in "$@" +do +case $i in + -n=*|--name=*) + database="${i#*=}" + shift # past argument=value. + ;; + *) + # unknown option. + ;; +esac +done + +lando_green "Creating database: ${database}"; + +# Create the database with the default Lando database credentials if +# it doesn't already exist. +mysql -uroot -e "CREATE DATABASE IF NOT EXISTS ${database}; \ + GRANT ALL PRIVILEGES ON ${database}.* TO 'drupal8'@'%' IDENTIFIED by 'drupal8';" diff --git a/.lando/scripts/create_databases.sh b/.lando/scripts/create_databases.sh new file mode 100644 index 000000000..060d3cf8e --- /dev/null +++ b/.lando/scripts/create_databases.sh @@ -0,0 +1,20 @@ +#!/bin/bash + +. /helpers/log.sh + +# Iterate every symlink (which web create for each site) under web/sites and create a database with the default +# Lando database credentials if it doesn't already exist. +for dir in $(find /app/web/sites/ -mindepth 1 -maxdepth 1 -type l) ; do + database=${dir##*/} ; + + # Ignore the standard 'default' folder under web/sites. + if [ $database != 'default' ]; then + lando_green "Creating databases ${database} and ${database}_legacy"; + # Create the Drupal 9 and Drupal 7 legacy databases with the default Lando + # credentials if they don't already exist. + mysql -uroot -e "CREATE DATABASE IF NOT EXISTS $database; \ + GRANT ALL PRIVILEGES ON $database.* TO 'drupal9'@'%' IDENTIFIED by 'drupal9'; \ + CREATE DATABASE IF NOT EXISTS ${database}_legacy; \ + GRANT ALL PRIVILEGES ON ${database}_legacy.* TO 'drupal9'@'%' IDENTIFIED by 'drupal9';" | cut -f1 -d":"; + fi +done diff --git a/.lando/scripts/delete_database.sh b/.lando/scripts/delete_database.sh new file mode 100644 index 000000000..3cd323913 --- /dev/null +++ b/.lando/scripts/delete_database.sh @@ -0,0 +1,27 @@ +#!/bin/bash + +. /helpers/log.sh + +# Parse command options & flags. +for i in "$@" +do +case $i in + -n=*|--name=*) + database="${i#*=}" + shift # past argument=value + ;; + *) + # unknown option + ;; +esac +done + +# Ensure we are not deleting anything critical! +if { [ $database = 'mysql' ] || [ $database = 'information_schema' ] || [ $database = 'performance_schema' ]; }; then + lando_red "I'm sorry Dave, I'm afraid I can't do that" +else + lando_green "Deleting database: ${database}"; + + # Drop the database if it exists. + mysql -uroot -e "DROP DATABASE IF EXISTS ${database}"; +fi diff --git a/.lando/scripts/export_database.sh b/.lando/scripts/export_database.sh new file mode 100644 index 000000000..a76543485 --- /dev/null +++ b/.lando/scripts/export_database.sh @@ -0,0 +1,23 @@ +#!/bin/bash + +. /helpers/log.sh + +# If the first command option is missing then dump every database. +if [ -z "$1" ]; then + for dir in $(find /app/web/sites/ -mindepth 1 -maxdepth 1 -type l) ; do + database=${dir##*/} ; + + # Ignore the standard 'default' folder under web/sites. + if [ $database != 'default' ]; then + lando_green "Exporting database: ${database}" + mysqldump --opt --user=${USER} --host=${HOST} --port=${PORT} --databases $database > `date +%Y-%m-%d`.$database.sql + fi + done +else + # Export a single database. + lando_green "Exporting database: ${1}" + mysqldump --opt --user=${USER} --host=${HOST} --port=${PORT} --databases ${1} > `date +%Y-%m-%d`.${1}.sql +fi + + + diff --git a/.lando/scripts/import_database.sh b/.lando/scripts/import_database.sh new file mode 100644 index 000000000..199e74292 --- /dev/null +++ b/.lando/scripts/import_database.sh @@ -0,0 +1,42 @@ +#!/bin/bash + +. /helpers/log.sh + +# Parse command options & flags. +for i in "$@" +do +case $i in + -d=*|--database=*) + database="${i#*=}" + shift # past argument=value + ;; + -f=*|--file=*) + file="${i#*=}" + shift # past argument=value + ;; + *) + # unknown option + ;; +esac +done + +# Check the dump file is present on the filesystem. +if [ -f "$file" ]; then + + # Reusable database connection. + sqlconn="mysql -u root -h $DB_HOST -D $database" + + # Fetch all the tables for this database. + tables=$($sqlconn -e 'SHOW TABLES' | awk '{ print $1}' | grep -v '^Tables' || true) + + # We drop each table to cleanup the database before import. + for t in $tables; do + lando_yellow "Dropping $t table from $database database..." + $sqlconn -e "DROP TABLE $t" + done + + lando_green "Importing to $database" + $sqlconn < $file +else + lando_red "File '$file' does not exist. Aborting import" +fi diff --git a/.lando/scripts/run_nightwatch.sh b/.lando/scripts/run_nightwatch.sh new file mode 100644 index 000000000..4425a6a3b --- /dev/null +++ b/.lando/scripts/run_nightwatch.sh @@ -0,0 +1,42 @@ +#!/bin/bash + +. /helpers/log.sh + +# Parse command options & flags. +for i in "$@" +do +case $i in + -s=*|--site=*) + site="${i#*=}" + shift # past argument=value + ;; + -t=*|--test=*) + test="${i#*=}" + shift # past argument=value + ;; + *) + # unknown option + ;; +esac +done + +lando_green "Running Nightwatch test for site: $site"; + +# Will need to add more sites in here as we go, code could +# possibly be improved to derive site URL from site name (as the +# database name is predictable) ? +if [ $site = "uregni" ]; then +export DRUPAL_TEST_BASE_URL=http://uregni.gov.uk.lndo.site +export DRUPAL_TEST_DB_URL=mysql://drupal8:drupal8@database/uregni +elif [ $site = "liofa" ]; then +export DRUPAL_TEST_BASE_URL=http://liofa.eu.lndo.site +export DRUPAL_TEST_DB_URL=mysql://drupal8:drupal8@database/liofa +elif [ $site = "fictcommission" ]; then +export DRUPAL_TEST_BASE_URL=http://fictcommission.org.lndo.site +export DRUPAL_TEST_DB_URL=mysql://drupal8:drupal8@database/fictcommission +else +lando_red "Please specify a valid Unity site in which to run the tests" +exit 1 +fi + +yarn --cwd=/app/web/core test:nightwatch $test diff --git a/.platform.app.yaml b/.platform.app.yaml new file mode 100644 index 000000000..6d8d63786 --- /dev/null +++ b/.platform.app.yaml @@ -0,0 +1,136 @@ +############################################################################# +### --== IMPORTANT ==-- ### +############################################################################# +# If you require changes to this file you must edit the file within the # +# original repository.Any changes here will be overwritten when the project # +# is built. # +############################################################################# +name: unity_svr_3 +type: 'php:8.1' +dependencies: + php: + composer/composer: ^2 +runtime: + extensions: + - apcu + - redis +disk: 25000 +mounts: + /web/files: + source: local + source_path: files + /tmp: + source: local + source_path: tmp + /private: + source: local + source_path: private + /.drush: + source: local + source_path: drush + /drush-backups: + source: local + source_path: drush-backups + /.console: + source: local + source_path: console + /log: + source: local + source_path: log +build: + flavor: composer +hooks: + build: "set -e\necho \"Update robots.txt with Unity customisations\"\ncp -f web/robots_unity.txt web/robots.txt\n" + post_deploy: "set -e\n\n# Save the Fastly service value and overwrite with a dummy one in order to break\n# the connection to Fastly, otherwise any cache clear of any site will purge the\n# entire Fastly cache - we don't want this to happen as we'd like Fastly to continue\n# serving the sites to anonymous users during a release.\necho \"***** Breaking connection to Fastly ******\"\ntemp=$FASTLY_API_SERVICE\nexport FASTLY_API_SERVICE=dummyservice\n\n# For each multi site - run db-updates and import config.\nfor site in pacni judiciaryni boundarycommission industrialcourt interchangeni infolibrarynics pressclippingsnics parolecomni lgbcni semcommittee nibureau\ndo\n result=$(drush -l $site st | grep \"Drupal bootstrap : Successful\" | awk {'print $4'})\n if [ \"$result\" = \"Successful\" ]; then\n echo \"****** $site deployment ******\"\n cd /app/web/sites/$site\n # Disable Fastly logging\n drush -l $site disable-fastly-logging\n # Readonlymode module should be installed on all sites,\n # but we'll just make sure.\n drush en readonlymode -l $site -y\n # Set site to readonly just in case editors are logged on.\n drush -l $site cset readonlymode.settings enabled 1 -y\n drush -l $site -y cache-rebuild\n drush -l $site -y updatedb\n drush -l $site -y config-import\n drush -l $site import-all-if-installed safe\n if [ \"$PLATFORM_ENVIRONMENT_TYPE\" = production ]; then\n # Disable QA logons\n drush -l $site bulk_update_qa_accounts disable\n else\n # Enable QA logons\n drush -l $site bulk_update_qa_accounts enable\n fi\n # Turn off readonly mode.\n drush -l $site cset readonlymode.settings enabled 0 -y\n else\n echo \"****** Skipping $site as there is no database ******\"\n echo \"\"\n fi\ndone\n\n# Reconnect to Fastly\necho \"***** Reinstate connection to Fastly ******\"\nexport FASTLY_API_SERVICE=$temp\n\n# For each multi site - clear cache (including Fastly cache)\nfor site in pacni judiciaryni boundarycommission industrialcourt interchangeni infolibrarynics pressclippingsnics parolecomni lgbcni semcommittee nibureau\ndo\n result=$(drush -l $site st | grep \"Drupal bootstrap : Successful\" | awk {'print $4'})\n if [ \"$result\" = \"Successful\" ]; then\n echo \"****** $site cache clear ******\"\n cd /app/web/sites/$site\n drush -l $site -y cache-rebuild\n # Enable Fastly logging\n drush -l $site enable-fastly-logging\n fi\ndone\n" +web: + locations: + /: + root: web + expires: 5m + passthru: /index.php + allow: false + rules: + '\.(jpe?g|png|gif|svgz?|css|js|map|ico|bmp|eot|woff2?|otf|ttf)$': + allow: true + ^/robots\.txt$: + allow: true + ^/sitemap\.xml$: + allow: true + ^\/sites\/.+\/themes\/.+\/images\/favicons\/.+\.webmanifest$: + allow: true + expires: 2w + ^/sites/sites\.php$: + scripts: false + '^/sites/[^/]+/settings.*?\.php$': + scripts: false + /files: + allow: true + expires: 1d + passthru: /index.php + root: web/files + scripts: false + rules: + ^/sites/default/files/(css|js): + expires: 2w +relationships: + redis: 'redis:redis' + pacni: 'db:pacni' + pacni_solr: 'solr:pacni' + judiciaryni: 'db:judiciaryni' + judiciaryni_solr: 'solr:judiciaryni' + boundarycommission: 'db:boundarycommission' + boundarycommission_solr: 'solr:boundarycommission' + industrialcourt: 'db:industrialcourt' + industrialcourt_solr: 'solr:industrialcourt' + interchangeni: 'db:interchangeni' + interchangeni_solr: 'solr:interchangeni' + infolibrarynics: 'db:infolibrarynics' + pressclippingsnics: 'db:pressclippingsnics' + pressclippingsnics_solr: 'solr:pressclippingsnics' + parolecomni: 'db:parolecomni' + parolecomni_solr: 'solr:parolecomni' + lgbcni: 'db:lgbcni' + lgbcni_solr: 'solr:lgbcni' + semcommittee: 'db:semcommittee' + semcommittee_solr: 'solr:semcommittee' + nibureau: 'db:nibureau' + nibureau_solr: 'solr:nibureau' +crons: + pacni: + spec: '10 * * * *' + cmd: 'cd web/sites/pacni ; drush core-cron' + logging: + spec: '*/5 * * * *' + commands: + start: '/bin/bash /app/cronjob.sh' + shutdown_timeout: 290 + judiciaryni: + spec: '10 * * * *' + cmd: 'cd web/sites/judiciaryni ; drush core-cron' + boundarycommission: + spec: '10 * * * *' + cmd: 'cd web/sites/boundarycommission ; drush core-cron' + industrialcourt: + spec: '10 * * * *' + cmd: 'cd web/sites/industrialcourt ; drush core-cron' + interchangeni: + spec: '10 * * * *' + cmd: 'cd web/sites/interchangeni ; drush core-cron' + infolibrarynics: + spec: '10 * * * *' + cmd: 'cd web/sites/infolibrarynics ; drush core-cron' + pressclippingsnics: + spec: '10 * * * *' + cmd: 'cd web/sites/pressclippingsnics ; drush core-cron' + parolecomni: + spec: '10 * * * *' + cmd: 'cd web/sites/parolecomni ; drush core-cron' + lgbcni: + spec: '10 * * * *' + cmd: 'cd web/sites/lgbcni ; drush core-cron' + semcommittee: + spec: '10 * * * *' + cmd: 'cd web/sites/semcommittee ; drush core-cron' + nibureau: + spec: '10 * * * *' + cmd: 'cd web/sites/nibureau ; drush core-cron' diff --git a/.platform/routes.yaml b/.platform/routes.yaml new file mode 100644 index 000000000..95c119bf2 --- /dev/null +++ b/.platform/routes.yaml @@ -0,0 +1,103 @@ +############################################################################# +### --== IMPORTANT ==-- ### +############################################################################# +# If you require changes to this file you must edit the file within the # +# original repository.Any changes here will be overwritten when the project # +# is built. # +############################################################################# +'https://www.pacni.gov.uk/': + type: upstream + upstream: 'unity_svr_3:http' + cache: + enabled: 'false' +'https://pacni.gov.uk/': + type: redirect + to: 'https://www.pacni.gov.uk/' +'https://www.judiciaryni.uk/': + type: upstream + upstream: 'unity_svr_3:http' + cache: + enabled: 'false' +'https://judiciaryni.uk/': + type: redirect + to: 'https://www.judiciaryni.uk/' +'https://www.boundarycommission.org.uk.{default}/': + type: upstream + upstream: 'unity_svr_3:http' + cache: + enabled: 'false' +'https://boundarycommission.org.uk.{default}/': + type: redirect + to: 'https://www.boundarycommission.org.uk.{default}/' +'https://www.industrialcourt.gov.uk/': + type: upstream + upstream: 'unity_svr_3:http' + cache: + enabled: 'false' +'https://industrialcourt.gov.uk/': + type: redirect + to: 'https://www.industrialcourt.gov.uk/' +'https://www.interchangeni.org.uk/': + type: upstream + upstream: 'unity_svr_3:http' + cache: + enabled: 'false' +'https://interchangeni.org.uk/': + type: redirect + to: 'https://www.interchangeni.org.uk/' +'https://www.info.library.nics.gov.uk/': + type: upstream + upstream: 'unity_svr_3:http' + cache: + enabled: 'false' +'https://info.library.nics.gov.uk/': + type: redirect + to: 'https://www.info.library.nics.gov.uk/' +'https://www.pressclippings.nics.gov.uk/': + type: upstream + upstream: 'unity_svr_3:http' + cache: + enabled: 'false' +'https://pressclippings.nics.gov.uk/': + type: redirect + to: 'https://www.pressclippings.nics.gov.uk/' +'https://www.parolecomni.org.uk/': + type: upstream + upstream: 'unity_svr_3:http' + cache: + enabled: 'false' +'https://parolecomni.org.uk/': + type: redirect + to: 'https://www.parolecomni.org.uk/' +'https://www.lgbc-ni.org.uk/': + type: upstream + upstream: 'unity_svr_3:http' + cache: + enabled: 'false' +'https://lgbc-ni.org.uk/': + type: redirect + to: 'https://www.lgbc-ni.org.uk/' +'https://www.semcommittee.com/': + type: upstream + upstream: 'unity_svr_3:http' + cache: + enabled: 'false' +'https://semcommittee.com/': + type: redirect + to: 'https://www.semcommittee.com/' +'https://www.nibureau.com/': + type: upstream + upstream: 'unity_svr_3:http' + cache: + enabled: 'false' +'https://nibureau.com/': + type: redirect + to: 'https://www.nibureau.com/' +'https://www.{all}/': + type: upstream + upstream: 'unity_svr_3:http' + cache: + enabled: 'false' +'https://{all}/': + type: redirect + to: 'https://www.{all}/' diff --git a/.platform/services.yaml b/.platform/services.yaml new file mode 100644 index 000000000..8ec1bdd9f --- /dev/null +++ b/.platform/services.yaml @@ -0,0 +1,116 @@ +############################################################################# +### --== IMPORTANT ==-- ### +############################################################################# +# If you require changes to this file you must edit the file within the # +# original repository.Any changes here will be overwritten when the project # +# is built. # +############################################################################# +db: + type: 'mariadb:10.4' + disk: 14000 + configuration: + schemas: + - pacnidb + - judiciarynidb + - boundarycommissiondb + - industrialcourtdb + - interchangenidb + - infolibrarynicsdb + - pressclippingsnicsdb + - parolecomnidb + - lgbcnidb + - semcommitteedb + - nibureaudb + endpoints: + pacni: + default_schema: pacnidb + privileges: + pacnidb: admin + judiciaryni: + default_schema: judiciarynidb + privileges: + judiciarynidb: admin + boundarycommission: + default_schema: boundarycommissiondb + privileges: + boundarycommissiondb: admin + industrialcourt: + default_schema: industrialcourtdb + privileges: + industrialcourtdb: admin + interchangeni: + default_schema: interchangenidb + privileges: + interchangenidb: admin + infolibrarynics: + default_schema: infolibrarynicsdb + privileges: + infolibrarynicsdb: admin + pressclippingsnics: + default_schema: pressclippingsnicsdb + privileges: + pressclippingsnicsdb: admin + parolecomni: + default_schema: parolecomnidb + privileges: + parolecomnidb: admin + lgbcni: + default_schema: lgbcnidb + privileges: + lgbcnidb: admin + semcommittee: + default_schema: semcommitteedb + privileges: + semcommitteedb: admin + nibureau: + default_schema: nibureaudb + privileges: + nibureaudb: admin +solr: + type: 'solr:7.7' + disk: 1024 + configuration: + cores: + pacni_index: + conf_dir: !archive solr_config/ + judiciaryni_index: + conf_dir: !archive solr_config/ + boundarycommission_index: + conf_dir: !archive solr_config/ + industrialcourt_index: + conf_dir: !archive solr_config/ + interchangeni_index: + conf_dir: !archive solr_config/ + pressclippingsnics_index: + conf_dir: !archive solr_config/ + parolecomni_index: + conf_dir: !archive solr_config/ + lgbcni_index: + conf_dir: !archive solr_config/ + semcommittee_index: + conf_dir: !archive solr_config/ + nibureau_index: + conf_dir: !archive solr_config/ + endpoints: + pacni: + core: pacni_index + judiciaryni: + core: judiciaryni_index + boundarycommission: + core: boundarycommission_index + industrialcourt: + core: industrialcourt_index + interchangeni: + core: interchangeni_index + pressclippingsnics: + core: pressclippingsnics_index + parolecomni: + core: parolecomni_index + lgbcni: + core: lgbcni_index + semcommittee: + core: semcommittee_index + nibureau: + core: nibureau_index +redis: + type: 'redis:6.0' diff --git a/.platform/solr_config/.gitkeep b/.platform/solr_config/.gitkeep new file mode 100644 index 000000000..e69de29bb diff --git a/.platform/solr_config/accents_en.txt b/.platform/solr_config/accents_en.txt new file mode 100755 index 000000000..bed051477 --- /dev/null +++ b/.platform/solr_config/accents_en.txt @@ -0,0 +1,164 @@ +# À => A +"\u00C0" => "A" +# Á => A +"\u00C1" => "A" +#  => A +"\u00C2" => "A" +# à => A +"\u00C3" => "A" +# Ä => A +"\u00C4" => "A" +# Å => A +"\u00C5" => "A" +# Ą => A +"\u0104" => "A" +# Æ => AE +"\u00C6" => "AE" +# Ç => C +"\u00C7" => "C" +# Ć => C +"\U0106" => "C" +# È => E +"\u00C8" => "E" +# É => E +"\u00C9" => "E" +# Ê => E +"\u00CA" => "E" +# Ë => E +"\u00CB" => "E" +# Ę => E +"\u0118" => "E" +# Ì => I +"\u00CC" => "I" +# Í => I +"\u00CD" => "I" +# Î => I +"\u00CE" => "I" +# Ï => I +"\u00CF" => "I" +# IJ => IJ +"\u0132" => "IJ" +# Ð => D +"\u00D0" => "D" +# Ł => L +"\u0141" => "L" +# Ñ => N +"\u00D1" => "N" +# Ń => N +"\u0143" => "N" +# Ò => O +"\u00D2" => "O" +# Ó => O +"\u00D3" => "O" +# Ô => O +"\u00D4" => "O" +# Õ => O +"\u00D5" => "O" +# Ö => O +"\u00D6" => "O" +# Ø => O +"\u00D8" => "O" +# Œ => OE +"\u0152" => "OE" +# Þ +"\u00DE" => "TH" +# Ù => U +"\u00D9" => "U" +# Ú => U +"\u00DA" => "U" +# Û => U +"\u00DB" => "U" +# Ü => U +"\u00DC" => "U" +# Ý => Y +"\u00DD" => "Y" +# Ÿ => Y +"\u0178" => "Y" +# à => a +"\u00E0" => "a" +# á => a +"\u00E1" => "a" +# â => a +"\u00E2" => "a" +# ã => a +"\u00E3" => "a" +# ä => a +"\u00E4" => "a" +# å => a +"\u00E5" => "a" +# æ => ae +"\u00E6" => "ae" +# ç => c +"\u00E7" => "c" +# è => e +"\u00E8" => "e" +# é => e +"\u00E9" => "e" +# ê => e +"\u00EA" => "e" +# ë => e +"\u00EB" => "e" +# ì => i +"\u00EC" => "i" +# í => i +"\u00ED" => "i" +# î => i +"\u00EE" => "i" +# ï => i +"\u00EF" => "i" +# ij => ij +"\u0133" => "ij" +# ð => d +"\u00F0" => "d" +# ñ => n +"\u00F1" => "n" +# ò => o +"\u00F2" => "o" +# ó => o +"\u00F3" => "o" +# ô => o +"\u00F4" => "o" +# õ => o +"\u00F5" => "o" +# ö => o +"\u00F6" => "o" +# ø => o +"\u00F8" => "o" +# œ => oe +"\u0153" => "oe" +# ß => ss +"\u00DF" => "ss" +# Ś => S +"\u015a" => "S" +# þ => th +"\u00FE" => "th" +# ù => u +"\u00F9" => "u" +# ú => u +"\u00FA" => "u" +# û => u +"\u00FB" => "u" +# ü => u +"\u00FC" => "u" +# ý => y +"\u00FD" => "y" +# ÿ => y +"\u00FF" => "y" +# Ź => Z +"\u0179" => "Z" +# Ż => Z +"\u017b" => "Z" +# ff => ff +"\uFB00" => "ff" +# fi => fi +"\uFB01" => "fi" +# fl => fl +"\uFB02" => "fl" +# ffi => ffi +"\uFB03" => "ffi" +# ffl => ffl +"\uFB04" => "ffl" +# ſt => st +"\uFB05" => "st" +# st => st +"\uFB06" => "st" diff --git a/.platform/solr_config/accents_und.txt b/.platform/solr_config/accents_und.txt new file mode 100755 index 000000000..7c883f87a --- /dev/null +++ b/.platform/solr_config/accents_und.txt @@ -0,0 +1,148 @@ +# À => A +"\u00C0" => "A" +# Á => A +"\u00C1" => "A" +#  => A +"\u00C2" => "A" +# à => A +"\u00C3" => "A" +# Ä => A +"\u00C4" => "A" +# Å => A +"\u00C5" => "A" +# Æ => AE +"\u00C6" => "AE" +# Ç => C +"\u00C7" => "C" +# È => E +"\u00C8" => "E" +# É => E +"\u00C9" => "E" +# Ê => E +"\u00CA" => "E" +# Ë => E +"\u00CB" => "E" +# Ì => I +"\u00CC" => "I" +# Í => I +"\u00CD" => "I" +# Î => I +"\u00CE" => "I" +# Ï => I +"\u00CF" => "I" +# IJ => IJ +"\u0132" => "IJ" +# Ð => D +"\u00D0" => "D" +# Ñ => N +"\u00D1" => "N" +# Ò => O +"\u00D2" => "O" +# Ó => O +"\u00D3" => "O" +# Ô => O +"\u00D4" => "O" +# Õ => O +"\u00D5" => "O" +# Ö => O +"\u00D6" => "O" +# Ø => O +"\u00D8" => "O" +# Œ => OE +"\u0152" => "OE" +# Þ +"\u00DE" => "TH" +# Ù => U +"\u00D9" => "U" +# Ú => U +"\u00DA" => "U" +# Û => U +"\u00DB" => "U" +# Ü => U +"\u00DC" => "U" +# Ý => Y +"\u00DD" => "Y" +# Ÿ => Y +"\u0178" => "Y" +# à => a +"\u00E0" => "a" +# á => a +"\u00E1" => "a" +# â => a +"\u00E2" => "a" +# ã => a +"\u00E3" => "a" +# ä => a +"\u00E4" => "a" +# å => a +"\u00E5" => "a" +# æ => ae +"\u00E6" => "ae" +# ç => c +"\u00E7" => "c" +# è => e +"\u00E8" => "e" +# é => e +"\u00E9" => "e" +# ê => e +"\u00EA" => "e" +# ë => e +"\u00EB" => "e" +# ì => i +"\u00EC" => "i" +# í => i +"\u00ED" => "i" +# î => i +"\u00EE" => "i" +# ï => i +"\u00EF" => "i" +# ij => ij +"\u0133" => "ij" +# ð => d +"\u00F0" => "d" +# ñ => n +"\u00F1" => "n" +# ò => o +"\u00F2" => "o" +# ó => o +"\u00F3" => "o" +# ô => o +"\u00F4" => "o" +# õ => o +"\u00F5" => "o" +# ö => o +"\u00F6" => "o" +# ø => o +"\u00F8" => "o" +# œ => oe +"\u0153" => "oe" +# ß => ss +"\u00DF" => "ss" +# þ => th +"\u00FE" => "th" +# ù => u +"\u00F9" => "u" +# ú => u +"\u00FA" => "u" +# û => u +"\u00FB" => "u" +# ü => u +"\u00FC" => "u" +# ý => y +"\u00FD" => "y" +# ÿ => y +"\u00FF" => "y" +# ff => ff +"\uFB00" => "ff" +# fi => fi +"\uFB01" => "fi" +# fl => fl +"\uFB02" => "fl" +# ffi => ffi +"\uFB03" => "ffi" +# ffl => ffl +"\uFB04" => "ffl" +# ſt => st +"\uFB05" => "st" +# st => st +"\uFB06" => "st" diff --git a/.platform/solr_config/elevate.xml b/.platform/solr_config/elevate.xml new file mode 100755 index 000000000..193a0e727 --- /dev/null +++ b/.platform/solr_config/elevate.xml @@ -0,0 +1,27 @@ + + + + + + + + + + diff --git a/.platform/solr_config/protwords_en.txt b/.platform/solr_config/protwords_en.txt new file mode 100755 index 000000000..cda858149 --- /dev/null +++ b/.platform/solr_config/protwords_en.txt @@ -0,0 +1,7 @@ +#----------------------------------------------------------------------- +# This file blocks words from being operated on by the stemmer and word delimiter. +& +< +> +' +" diff --git a/.platform/solr_config/protwords_und.txt b/.platform/solr_config/protwords_und.txt new file mode 100755 index 000000000..cda858149 --- /dev/null +++ b/.platform/solr_config/protwords_und.txt @@ -0,0 +1,7 @@ +#----------------------------------------------------------------------- +# This file blocks words from being operated on by the stemmer and word delimiter. +& +< +> +' +" diff --git a/.platform/solr_config/schema.xml b/.platform/solr_config/schema.xml new file mode 100644 index 000000000..80567fa8a --- /dev/null +++ b/.platform/solr_config/schema.xml @@ -0,0 +1,478 @@ + + + + +]> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + &extrafields; + + + &extratypes; + + + id + + + + + diff --git a/.platform/solr_config/schema_extra_fields.xml b/.platform/solr_config/schema_extra_fields.xml new file mode 100755 index 000000000..f5d74188a --- /dev/null +++ b/.platform/solr_config/schema_extra_fields.xml @@ -0,0 +1,89 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/.platform/solr_config/schema_extra_types.xml b/.platform/solr_config/schema_extra_types.xml new file mode 100755 index 000000000..46a81379b --- /dev/null +++ b/.platform/solr_config/schema_extra_types.xml @@ -0,0 +1,252 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/.platform/solr_config/solrconfig.xml b/.platform/solr_config/solrconfig.xml new file mode 100644 index 000000000..2cca95fcd --- /dev/null +++ b/.platform/solr_config/solrconfig.xml @@ -0,0 +1,811 @@ + + + + + + +]> + + + + + + + ${solr.abortOnConfigurationError:true} + + + ${solr.luceneMatchVersion:7.0} + + + + + + + + + + + + + + + + + + + + + ${solr.data.dir:} + + + + + + + + + ${solr.hdfs.home:} + + ${solr.hdfs.confdir:} + + ${solr.hdfs.blockcache.enabled:true} + + ${solr.hdfs.blockcache.global:true} + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ${solr.lock.type:native} + + + + + + + + + + + + + true + + + &index; + + + + + + + + + ${solr.ulog.dir:} + + + + + ${solr.autoCommit.MaxDocs:-1} + ${solr.autoCommit.MaxTime:15000} + false + + + + + + ${solr.autoSoftCommit.MaxDocs:-1} + ${solr.autoSoftCommit.MaxTime:-1} + + + + + + + + + + + + + + + + &query; + + + + + + + + + + + + static firstSearcher warming in solrconfig.xml + + + + + + false + + + + + + + + + &requestdispatcher; + + + + + + + &extra; + + + + + + + + + 100 + + + + + + + + 70 + + 0.5 + + [-\w ,/\n\"']{20,200} + + + + + + + ]]> + ]]> + + + + + + + + + + + + + + + + + + + + + + + + ,, + ,, + ,, + ,, + ,]]> + ]]> + + + + + + 10 + .,!? + + + + + + + WORD + + + en + US + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 5 + + + + + + + + + + + + + + + diff --git a/.platform/solr_config/solrconfig_extra.xml b/.platform/solr_config/solrconfig_extra.xml new file mode 100755 index 000000000..2bae3c950 --- /dev/null +++ b/.platform/solr_config/solrconfig_extra.xml @@ -0,0 +1,203 @@ + + + en + spellcheck_en + solr.DirectSolrSpellChecker + internal + 0.01 + 2 + 3 + 10 + 3 + 0.1 + .0001 + false + + + + und + spellcheck_und + solr.DirectSolrSpellChecker + internal + 0.01 + 2 + 3 + 10 + 3 + 0.1 + .0001 + false + + + + + en + AnalyzingInfixLookupFactory + DocumentDictionaryFactory + twm_suggest + text_en + sm_context_tags + true + false + + + + und + AnalyzingInfixLookupFactory + DocumentDictionaryFactory + twm_suggest + text_und + sm_context_tags + true + false + + + + + + false + false + false + true + false + 1 + false + 10 + + + terms + spellcheck + suggest + + + + + + + explicit + id + + + elevator + + + + + + + true + ignored_ + true + links + ignored_ + + + + + + + 1 + 1 + false + ${solr.mlt.timeAllowed:2000} + + + + + + + lucene + id + explicit + true + ${solr.selectSearchHandler.timeAllowed:-1} + true + + + spellcheck + elevator + + + + + + + id + und + wordbreak + on + false + false + 1 + 5 + 5 + true + true + 10 + 5 + + + spellcheck + + + + + + + true + und + 10 + + + suggest + + + + + + + id + true + + + tvComponent + + + + + + string + elevate.xml + + + diff --git a/.platform/solr_config/solrconfig_index.xml b/.platform/solr_config/solrconfig_index.xml new file mode 100755 index 000000000..e69de29bb diff --git a/.platform/solr_config/solrconfig_query.xml b/.platform/solr_config/solrconfig_query.xml new file mode 100755 index 000000000..5bdd69690 --- /dev/null +++ b/.platform/solr_config/solrconfig_query.xml @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + true + + false + + 20 + 200 + 1024 diff --git a/.platform/solr_config/solrconfig_requestdispatcher.xml b/.platform/solr_config/solrconfig_requestdispatcher.xml new file mode 100755 index 000000000..3a3f17d1c --- /dev/null +++ b/.platform/solr_config/solrconfig_requestdispatcher.xml @@ -0,0 +1,6 @@ + + + diff --git a/.platform/solr_config/solrcore.properties b/.platform/solr_config/solrcore.properties new file mode 100755 index 000000000..c8c04f06c --- /dev/null +++ b/.platform/solr_config/solrcore.properties @@ -0,0 +1,16 @@ +solr.replication.master=false +solr.replication.slave=false +solr.replication.pollInterval=00:00:60 +solr.replication.masterUrl=http://solr.internal:8080/solr +solr.replication.confFiles=schema.xml,schema_extra_types.xml,schema_extra_fields.xml,elevate.xml,stopwords_en.txt,synonyms_en.txt,protwords_en.txt,accents_en.txt,stopwords_und.txt,synonyms_und.txt,protwords_und.txt,accents_und.txt +solr.mlt.timeAllowed=2000 +solr.luceneMatchVersion=7.7 +solr.selectSearchHandler.timeAllowed=-1 +# autoCommit after 10000 docs +solr.autoCommit.MaxDocs=10000 +# autoCommit after 2 minutes +solr.autoCommit.MaxTime=120000 +# autoSoftCommit after 2000 docs +solr.autoSoftCommit.MaxDocs=2000 +# autoSoftCommit after 10 seconds +solr.autoSoftCommit.MaxTime=10000 diff --git a/.platform/solr_config/stopwords_en.txt b/.platform/solr_config/stopwords_en.txt new file mode 100755 index 000000000..698105071 --- /dev/null +++ b/.platform/solr_config/stopwords_en.txt @@ -0,0 +1,35 @@ +a +an +and +are +as +at +be +but +by +for +if +in +into +is +it +no +not +of +on +or +s +such +t +that +the +their +then +there +these +they +this +to +was +will +with diff --git a/.platform/solr_config/stopwords_und.txt b/.platform/solr_config/stopwords_und.txt new file mode 100755 index 000000000..084397b6d --- /dev/null +++ b/.platform/solr_config/stopwords_und.txt @@ -0,0 +1,36 @@ +a +an +and +are +as +at +be +but +by +for +if +in +into +is +it +no +not +of +on +or +s +such +t +that +the +their +then +there +these +they +this +to +was +will +with + diff --git a/.platform/solr_config/synonyms_en.txt b/.platform/solr_config/synonyms_en.txt new file mode 100755 index 000000000..91689ff92 --- /dev/null +++ b/.platform/solr_config/synonyms_en.txt @@ -0,0 +1 @@ +drupal, durpal diff --git a/.platform/solr_config/synonyms_und.txt b/.platform/solr_config/synonyms_und.txt new file mode 100755 index 000000000..91689ff92 --- /dev/null +++ b/.platform/solr_config/synonyms_und.txt @@ -0,0 +1 @@ +drupal, durpal diff --git a/README.md b/README.md index 232bf812a..bc8fa37fd 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,7 @@ deployed direct to a hosting environment and instead is used to create 'server s When a core or contrib update is required for Unity sites it is first performed against this repository, pushed to Github and then each 'server instance' fork will pull from this upstream source. It is imperative that any changes to the files within this repository are not altered directly on the server instance fork as any future pulls -could possibly overwrite those changes. +could possibly overwrite those changes. ## Structure diff --git a/cronjob.sh b/cronjob.sh new file mode 100644 index 000000000..29b40206d --- /dev/null +++ b/cronjob.sh @@ -0,0 +1,21 @@ +#!/usr/bin/env bash +# +# nicsdru-logging/scripts/example.cronjob.sh +# +# Calls shiplog.sh to ship latest log entries from various logs +# to logz.io. + +# /bin/bash /app/nicsdru-logging/scripts/shiplog.sh "[LOG_NAME]" "[LOG_PATH]" "[LOG_DATE_PATTERN]" "[LOG_TYPE]" + +# Ship /var/log/access.log generated by nginx. +/bin/bash /app/nicsdru-logging/scripts/shiplog.sh "access" "/var/log/access.log" "$(date +%d/%b/%Y:)" "nginx_access" + +# Uncomment following line to ship drupal.log generated by D9 filelog module. +/bin/bash /app/nicsdru-logging/scripts/shiplog.sh "drupal-infolibrarynics" "/app/log/infolibrarynics/drupal.log" "$(date +'%a, %d/%m/%Y -')" "drupal" +/bin/bash /app/nicsdru-logging/scripts/shiplog.sh "drupal-pressclippingsnics" "/app/log/pressclippingsnics/drupal.log" "$(date +'%a, %d/%m/%Y -')" "drupal" +/bin/bash /app/nicsdru-logging/scripts/shiplog.sh "drupal-parolecomni" "/app/log/parolecomni/drupal.log" "$(date +'%a, %d/%m/%Y -')" "drupal" +/bin/bash /app/nicsdru-logging/scripts/shiplog.sh "drupal-lgbcni" "/app/log/lgbcni/drupal.log" "$(date +'%a, %d/%m/%Y -')" "drupal" +/bin/bash /app/nicsdru-logging/scripts/shiplog.sh "drupal-semcommittee" "/app/log/semcommittee/drupal.log" "$(date +'%a, %d/%m/%Y -')" "drupal" +/bin/bash /app/nicsdru-logging/scripts/shiplog.sh "drupal-boundarycommission" "/app/log/boundarycommission/drupal.log" "$(date +'%a, %d/%m/%Y -')" "drupal" +/bin/bash /app/nicsdru-logging/scripts/shiplog.sh "drupal-pacni" "/app/log/pacni/drupal.log" "$(date +'%a, %d/%m/%Y -')" "drupal" +/bin/bash /app/nicsdru-logging/scripts/shiplog.sh "drupal-interchangeni" "/app/log/interchangeni/drupal.log" "$(date +'%a, %d/%m/%Y -')" "drupal" diff --git a/maestro.yml b/maestro.yml new file mode 100644 index 000000000..52d3d6fd7 --- /dev/null +++ b/maestro.yml @@ -0,0 +1,16 @@ +# Add additional hosting providers to the services below or comment out to prevent a +# defined provider from running. +services: + hosting.platformSH: + class: 'Maestro\Hosting\Provider\PlatformSH' + tags: + - { name: maestro.hosting } + hosting.lando: + class: 'Maestro\Hosting\Provider\Lando' + tags: + - { name: maestro.hosting } + hosting.common: + class: 'Maestro\Hosting\Provider\Common' + tags: + - { name: maestro.hosting } + diff --git a/nicsdru-logging/LICENSE b/nicsdru-logging/LICENSE new file mode 100644 index 000000000..dc63df57d --- /dev/null +++ b/nicsdru-logging/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2022 Digital Shared Services + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/nicsdru-logging/README.md b/nicsdru-logging/README.md new file mode 100644 index 000000000..6f1d38d10 --- /dev/null +++ b/nicsdru-logging/README.md @@ -0,0 +1,263 @@ +# Send Platform.sh logs to Logz.io + +Platform.sh log files are stored on disk (in /var/log) and trimmed +to 100 MB automatically. For busy environments this means that logs +may only contain entries for the last 24 hours or even less +depending on the volume of log entries an environment is generating. +By shipping logs to a centralised logging service like Logz.io, it +makes it possible to retain logs for a longer period as well as +having nice tools to search through the logs. + +Platform.sh grid hosted environments currently do not support +installation of logging services or daemons. For example, syslog nor +rsyslog are available. To get around this, we can use cron to run a +script which periodically uploads batches of log entries using cURL. + +This solution is loosely based on +[this solution for uploading logs to Amazon S3 storage](https://gitlab.com/contextualcode/platformsh-store-logs-at-s3/). + +The solution only ever uploads the newest +log entries rather than uploading an entire log file. This is +necessary because log management solutions set a maximum limit on +the size of files that can be uploaded in a single request. + +## 1. Add nicsdru-logging repo to the project root using `git subtree` + +[git subtree](https://www.atlassian.com/git/tutorials/git-subtree) lets you nest one repository inside another as a +sub-directory. + +In your local copy of a platform hosted Drupal project, +run the following command in the project root (which should contain +the `.platform/` directory and the `.platform.app.yaml` file): + +```shell +git subtree add --prefix nicsdru-logging git@github.com:dof-dss/nicsdru-logging.git main --squash +``` + +This will generate a couple of new commits into your project repo. + +### Updating the repo + +If you want to later update to the latest version of the nicsdru-logging +repo, run the following command in the project root: + +```shell +git subtree pull --prefix nicsdru-logging git@github.com:dof-dss/nicsdru-logging.git main --squash +``` + +## 2. Copy example.cronjob.sh to cronjob.sh + +Copy `nicsdru-logging/scripts/example.cronjob.sh` into the project root renaming to `cronjob.sh`. + +```shell +cp nicsdru-logging/scripts/example.cronjob.sh cronjob.sh +``` + +The directory structure for a typical dof-dss D9 project should +end up looking something like this: + +``` +├── .circleci/ +├── .platform/ +│ ├── solr_config +│ ├── routes.yaml +│ └── services.yaml +├── config/ +├── drush/ +├── nicsdru-logging/ +│ └── scripts/ +│ │ ├── example.cronjob.sh +│ │ └── shiplog.sh +│ └── README.md +├── private/ +├── vendor/ +├── web/ +├── .platform.app.yaml +├── composer.json +├── composer.lock +├── cronjob.sh +├── LICENSE +├── phpcs.sh +└── README.md +``` + + +## 3. Make the new `cronjob.sh` file executable + +```shell +chmod +x cronjob.sh +``` + +## 4. Edit `cronjob.sh` to configure log files to be shipped + +`cronjob.sh` contains calls to `shiplog.sh` to ship specifc logs in the following format: + +```shell +/bin/bash /app/nicsdru-logging/scripts/shiplog.sh "LOG_NAME" "LOG_PATH" "LOG_DATE_PATTERN" "LOG_TYPE" +``` + +Where: + +- `LOG_NAME` is unique name of a log (e.g "access"). NO SPACES! +- `LOG_PATH` is the full path to source log file to be shipped (e.g. "/var/log/access.log") +- `LOG_DATE_PATTERN` is a date formatted to match datetime stamps in individual log entries +(e.g. "$(date +%d/%b/%Y:)") +- `LOG_TYPE` identifies [the type of log file to Logz.io](https://docs.logz.io/user-guide/log-shipping/built-in-log-types.html) (e.g. "nginx_access"). NO SPACES! + +For example, the following line ships the /var/log/access.log generated by nginx. + +```shell +/bin/bash /app/nicsdru-logging/scripts/shiplog.sh "access" "/var/log/access.log" "$(date +%d/%b/%Y:)" "nginx_access" +``` + +*For D9 sites*, with the [filelog contrib module](https://www.drupal.org/project/filelog) +installed, ensure the module is configured to write to logs to `/app/log` and then +uncomment or add the following line to `cronjob.sh`: + +```shell +/bin/bash /app/nicsdru-logging/scripts/shiplog.sh "drupal" "/app/log/drupal.log" "$(date +'%a, %d/%m/%Y -')" "drupal" +``` + +(Note the LOG_TYPE specified is "drupal" which is a custom log type we have asked +Logz.io to configure for us.) + +*For D9 multisite projects* using the [filelog contrib module](https://www.drupal.org/project/filelog), +ensure the module is configured on each site to write to logs to a sub-directory of +`/app/log` - for example `/app/log/sitename` and then add a line like the +following to ship the drupal.log for that specific site: + +```shell +/bin/bash /app/nicsdru-logging/scripts/shiplog.sh "drupal-sitename" "/app/log/sitename/drupal.log" "$(date +'%a, %d/%m/%Y -')" "drupal" +``` + +## 5. Create a writable mount in .platform.app.yaml for storing logs + +The normal log directory `/var/log` is not writeable. So we create +a writeable mount in `.platform.app.yaml` for the shiplog script to write logs to: + +```yaml +mounts: + '/log': + source: local + source_path: 'log' +``` + +## 6. Add cron job in .platform.app.yaml + +```yaml +crons: + # Log shipping cron. + logging: + spec: '*/5 * * * *' + commands: + start: '/bin/bash /app/cronjob.sh' + shutdown_timeout: 290 +``` + +## 7. Create LOGZ_TOKEN and LOGZ_URL environment variables + +Obtain an account token from Logz.io. Then create a project +environment variable LOGZ_TOKEN to store the token securely. + +```shell +platform variable:create -l environment -e [ENVIRONMENT_NAME] --prefix env: --name LOGZ_TOKEN --value '[LOGZ_IO_TOKEN]' --visible-runtime true --inheritable false --sensitive true +``` + +**Optionally**, set the "listener URL" for sending logs to +Logz.io. By default the URL is `https://listener-uk.logz.io:8022` +You can override this by setting the project environment variable +LOGZ_URL. The URL should begin with "https://" with no end +forward slash. + +```shell +platform variable:create -l environment -e [ENVIRONMENT_NAME] --prefix env: --name LOGZ_URL --value 'https://listener-uk.logz.io:8022' --visible-runtime true --inheritable true --sensitive false +``` + +## 8. Deploy to Platform.sh and verify logs are being shipped + +Cron will run cronjob.sh to ship latest log entries to Logz.io. +You should start to see log entries arrive in Logz.io's Kibana +interface. If you don't, there are a number of things to check. + +### Check cron is running + +Run this platform CLI command +```shell +$ platform activity:list +``` +And gives output like this ... + +```shell +Activities on the project NIDirect-D8 (wcjm3mu7bacfm), environment logz (type: development): ++---------------+---------------------------+----------------------------------+----------+----------+---------+ +| ID | Created | Description | Progress | State | Result | ++---------------+---------------------------+----------------------------------+----------+----------+---------+ +| cc3s4jkfkb5ke | 2022-05-11T16:01:27+00:00 | Platform.sh Bot ran cron logging | 100% | complete | success | +| yado3ie3w4rqu | 2022-05-11T15:56:27+00:00 | Platform.sh Bot ran cron logging | 100% | complete | success | +| tuckl2vxeecss | 2022-05-11T15:51:27+00:00 | Platform.sh Bot ran cron logging | 100% | complete | success | +| z7jx33erazc3a | 2022-05-11T15:46:27+00:00 | Platform.sh Bot ran cron logging | 100% | complete | success | +| iq43xajukyn5e | 2022-05-11T15:41:27+00:00 | Platform.sh Bot ran cron logging | 100% | complete | success | +| q64gu6qqiw6s4 | 2022-05-11T15:36:27+00:00 | Platform.sh Bot ran cron logging | 100% | complete | success | +| dc2hifwrzgm6y | 2022-05-11T15:31:27+00:00 | Platform.sh Bot ran cron logging | 100% | complete | success | +| 3l737f5rmp6m4 | 2022-05-11T15:26:27+00:00 | Platform.sh Bot ran cron logging | 100% | complete | success | +| kuydxo23aeczy | 2022-05-11T15:21:27+00:00 | Platform.sh Bot ran cron logging | 100% | complete | success | +| 6jnwgge2ufivk | 2022-05-11T15:16:27+00:00 | Platform.sh Bot ran cron logging | 100% | complete | success | ++---------------+---------------------------+----------------------------------+----------+----------+---------+ +``` + +### SSH onto the environment and check logs are being generated in the `/app/log` mount + +The logging scripts create and rotate their own log files in the `/app/log` +mounted directory. + +If the project is a D9 project with the filelog module enabled and you +have configured `cronjob.sh` to ship the access and drupal logs (as described above), +then you should see something like the following in `/app/log`: + +```shell +web@nidirect.0:~$ cd /app/log +web@nidirect.0:~/log$ ls -al +total 88 +drwxr-xr-x 2 web web 4096 May 11 16:26 . +drwxr-xr-x 18 web web 514 May 11 12:21 .. +-r--r--r-- 1 web web 686 Apr 13 16:41 .htaccess +-rw-r--r-- 1 web web 15743 May 11 12:31 2022-05-11-access.log +-rw-r--r-- 1 web web 8038 May 11 12:31 2022-05-11-drupal.log +-rw-rw-r-- 1 web web 51256 May 11 12:29 drupal.log +web@nidirect.0:~/log$ +``` + +The logs prefixed with a YYYY-MM-DD format date are created by `shiplog.sh` +and rotated daily. The drupal.log is created by the filelog module which +can also be rotated daily (depending on module settings). + +### If all else fails, run `cronjob.sh` from the command-line and check the output + +```shell +/bin/bash /app/cronjob.sh +``` + +Healthy output looks like this ... + +```shell +web@nidirect.0:~$ /bin/bash /app/cronjob.sh +Shipping log ... +Shipping today's newest log entries from /var/log/access.log ... +Creating 2022-05-11-access.log ... +2022-05-11-access.log already exists +Deleting 2022-05-10-access.log ... +2022-05-10-access.log does not exist +Retrieving latest log entries from /var/log/access.log and writing to 2022-05-11-access.log +Shipping latest log entries from 2022-05-11-access.log to Logz.io using cURL +Log shipping succeeded with: 200 +Shipping log ... +Shipping today's newest log entries from /app/log/drupal.log ... +Creating 2022-05-11-drupal.log ... +2022-05-11-drupal.log already exists +Deleting 2022-05-10-drupal.log ... +2022-05-10-drupal.log does not exist +Retrieving latest log entries from /app/log/drupal.log and writing to 2022-05-11-drupal.log +Shipping latest log entries from 2022-05-11-drupal.log to Logz.io using cURL +Log shipping succeeded with: 200 +``` + diff --git a/nicsdru-logging/scripts/example.cronjob.sh b/nicsdru-logging/scripts/example.cronjob.sh new file mode 100755 index 000000000..6f5e7835c --- /dev/null +++ b/nicsdru-logging/scripts/example.cronjob.sh @@ -0,0 +1,14 @@ +#!/usr/bin/env bash +# +# nicsdru-logging/scripts/example.cronjob.sh +# +# Calls shiplog.sh to ship latest log entries from various logs +# to logz.io. + +# /bin/bash /app/nicsdru-logging/scripts/shiplog.sh "[LOG_NAME]" "[LOG_PATH]" "[LOG_DATE_PATTERN]" "[LOG_TYPE]" + +# Ship /var/log/access.log generated by nginx. +/bin/bash /app/nicsdru-logging/scripts/shiplog.sh "access" "/var/log/access.log" "$(date +%d/%b/%Y:)" "nginx_access" + +# Uncomment following line to ship drupal.log generated by D9 filelog module. +# /bin/bash /app/nicsdru-logging/scripts/shiplog.sh "drupal" "/app/log/drupal.log" "$(date +'%a, %d/%m/%Y -')" "drupal" diff --git a/nicsdru-logging/scripts/shiplog.sh b/nicsdru-logging/scripts/shiplog.sh new file mode 100755 index 000000000..1f0b6f5f9 --- /dev/null +++ b/nicsdru-logging/scripts/shiplog.sh @@ -0,0 +1,96 @@ +#!/usr/bin/env bash +# +# logging/scripts/shiplog.sh +# +# Ship today's log entries from a specified log to logz.io +# Usage: /bin/bash /app/logging/scripts/shiplog.sh [LOG_NAME] [LOG_PATH] [LOG_DATE_PATTERN] [LOG_TYPE] +# eg: /bin/bash /app/logging/scripts/shiplog.sh "access" "/var/log/access.log" "$(date +%d/%b/%Y:)" "nginx_access"' + +echo "Shipping log ..." + +# LOGZ_TOKEN environment variable is required for this script to run. +if [ -z "$LOGZ_TOKEN" ]; then + echo "LOGZ_TOKEN is not set - exiting" + exit 1 +fi + +# Set LOGZ_URL if environment variable is not set. +if [ -z "$LOGZ_URL" ]; then + LOGZ_URL="https://listener-uk.logz.io:8022" +fi + +# Mount for logs must exist or exit script. +cd /app/log || exit + +LOG_NAME=$1 +LOG_PATH=$2 +LOG_DATE_PATTERN=$3 +LOG_TYPE=$4 + +# Script will be creating logs for today and removing yesterday's logs +TODAY_DATE=$(date +%Y-%m-%d) +YESTERDAY_DATE=$(date --date="yesterday" +%Y-%m-%d) + +# Check 4 arguments passed. +if [ $# -ne 4 ]; then + echo "shiplog called with incorrect number of arguments. Expected 4, got $#." + echo 'Usage: ./shiplog.sh [LOG_NAME] [LOG_PATH] [LOG_DATE_PATTERN] [LOG_TYPE]' + echo ' eg: ./shiplog.sh "access" "/var/log/access.log" "$(date +%d/%b/%Y:)" "nginx_access"' + exit 1 +fi + +if [ -f "$LOG_PATH" ]; then + + echo "Shipping today's newest log entries from $LOG_PATH ..." + + # Create today's log file. + todays_log="${TODAY_DATE}-${LOG_NAME}.log" + echo "Creating ${todays_log} ..." + if [ ! -f ./"${todays_log}" ]; then + touch ./"${todays_log}" + echo "${todays_log} created" + else + echo "${todays_log} already exists" + fi + + # Delete yesterdays log files. + yesterdays_log="${YESTERDAY_DATE}-${LOG_NAME}.log" + + echo "Deleting ${yesterdays_log} ..." + + if [ -f ./"${yesterdays_log}" ]; then + rm "${yesterdays_log}" + echo "${yesterdays_log} deleted" + else + echo "${yesterdays_log} does not exist" + fi + + # Get latest log entries and ship to logz.io. + echo "Retrieving latest log entries from ${LOG_PATH} and writing to ${todays_log}" + cat "$LOG_PATH" | grep "$LOG_DATE_PATTERN" > ./"$LOG_NAME"-latest.log + diff --changed-group-format='%>' --unchanged-group-format='' "$todays_log" "$LOG_NAME-latest.log" > "$LOG_NAME-new.log" + cat "$LOG_NAME-new.log" >> "$todays_log" + echo "Shipping latest log entries from ${todays_log} to Logz.io using cURL" + http_response=$(curl -T "$LOG_NAME-new.log" -s -w "%{response_code}" $LOGZ_URL/file_upload/"${LOGZ_TOKEN}"/"${LOG_TYPE}") + exit_code=$? + + # Clean up temporary log files. + rm "$LOG_NAME-latest.log" "$LOG_NAME-new.log" + + if [ "$exit_code" != "0" ]; then + echo "The cURL command failed with: $exit_code" + elif [ "$http_response" != "200" ]; then + echo "Log shipping failed with: $http_response" + fi + + if [ "$exit_code" != "0" ] || [ "$http_response" != "200" ]; then + exit 1 + fi + + echo "Log shipping succeeded with: $http_response" +else + echo "${LOG_PATH} does not exist" + exit 1 +fi + +exit 0 diff --git a/package-lock.json b/package-lock.json new file mode 100644 index 000000000..48e341a09 --- /dev/null +++ b/package-lock.json @@ -0,0 +1,3 @@ +{ + "lockfileVersion": 1 +} diff --git a/project/config/boundarycommission/.gitkeep b/project/config/boundarycommission/.gitkeep new file mode 100644 index 000000000..e69de29bb diff --git a/project/config/boundarycommission/config/.htaccess b/project/config/boundarycommission/config/.htaccess new file mode 100644 index 000000000..d43687965 --- /dev/null +++ b/project/config/boundarycommission/config/.htaccess @@ -0,0 +1,27 @@ +# Deny all requests from Apache 2.4+. + + Require all denied + + +# Deny all requests from Apache 2.0-2.2. + + Deny from all + + +# Turn off all options we don't need. +Options -Indexes -ExecCGI -Includes -MultiViews + +# Set the catch-all handler to prevent scripts from being executed. +SetHandler Drupal_Security_Do_Not_Remove_See_SA_2006_006 + + # Override the handler again if we're run later in the evaluation list. + SetHandler Drupal_Security_Do_Not_Remove_See_SA_2013_003 + + +# If we know how to do it safely, disable the PHP engine entirely. + + php_flag engine off + + + php_flag engine off + \ No newline at end of file diff --git a/project/config/boundarycommission/config/adminimal_theme.settings.yml b/project/config/boundarycommission/config/adminimal_theme.settings.yml new file mode 100644 index 000000000..375ca570d --- /dev/null +++ b/project/config/boundarycommission/config/adminimal_theme.settings.yml @@ -0,0 +1,11 @@ +features: + node_user_picture: 1 + comment_user_picture: true + comment_user_verification: true + favicon: 1 +logo: + use_default: 1 +favicon: + use_default: 1 +custom_css: 1 +disable_google_fonts: 0 diff --git a/project/config/boundarycommission/config/automated_cron.settings.yml b/project/config/boundarycommission/config/automated_cron.settings.yml new file mode 100644 index 000000000..3fc5821fe --- /dev/null +++ b/project/config/boundarycommission/config/automated_cron.settings.yml @@ -0,0 +1,3 @@ +_core: + default_config_hash: fUksROt4FfkAU9BV4hV2XvhTBSS2nTNrZS4U7S-tKrs +interval: 10800 diff --git a/project/config/boundarycommission/config/blazy.settings.yml b/project/config/boundarycommission/config/blazy.settings.yml new file mode 100644 index 000000000..c9577327a --- /dev/null +++ b/project/config/boundarycommission/config/blazy.settings.yml @@ -0,0 +1,21 @@ +_core: + default_config_hash: hQu_5Svi0TQ5SE3dzjC55vecrEOKTYurvK-K7IJ8oXk +admin_css: true +fx: '' +noscript: false +responsive_image: false +one_pixel: true +placeholder: '' +extras: { } +blazy: + loadInvisible: false + offset: 100 + saveViewportOffsetDelay: 50 + validateDelay: 25 + container: '' +io: + enabled: false + unblazy: false + rootMargin: 0px + threshold: '0' + disconnect: false diff --git a/project/config/boundarycommission/config/block.block.adminimal_theme_breadcrumbs.yml b/project/config/boundarycommission/config/block.block.adminimal_theme_breadcrumbs.yml new file mode 100644 index 000000000..bd358adb3 --- /dev/null +++ b/project/config/boundarycommission/config/block.block.adminimal_theme_breadcrumbs.yml @@ -0,0 +1,22 @@ +uuid: fa57551b-e824-48f9-bdd0-ce9ab02a7ccc +langcode: en +status: true +dependencies: + module: + - system + theme: + - adminimal_theme +_core: + default_config_hash: 8by5KRsb7ZpmjHj0ms1d7xAG_xH54AWsOX6spDLJ59U +id: adminimal_theme_breadcrumbs +theme: adminimal_theme +region: breadcrumb +weight: 0 +provider: null +plugin: system_breadcrumb_block +settings: + id: system_breadcrumb_block + label: Breadcrumbs + label_display: '0' + provider: system +visibility: { } diff --git a/project/config/boundarycommission/config/block.block.adminimal_theme_content.yml b/project/config/boundarycommission/config/block.block.adminimal_theme_content.yml new file mode 100644 index 000000000..386b17680 --- /dev/null +++ b/project/config/boundarycommission/config/block.block.adminimal_theme_content.yml @@ -0,0 +1,22 @@ +uuid: 3aa53339-89d5-453d-8169-f0250990d76b +langcode: en +status: true +dependencies: + module: + - system + theme: + - adminimal_theme +_core: + default_config_hash: 80N66GdzEvwqi1m-_GZ-ulkk8AJG9beoXcZ4-pMVKjI +id: adminimal_theme_content +theme: adminimal_theme +region: content +weight: 0 +provider: null +plugin: system_main_block +settings: + id: system_main_block + label: 'Main page content' + label_display: '0' + provider: system +visibility: { } diff --git a/project/config/boundarycommission/config/block.block.adminimal_theme_help.yml b/project/config/boundarycommission/config/block.block.adminimal_theme_help.yml new file mode 100644 index 000000000..fc558151f --- /dev/null +++ b/project/config/boundarycommission/config/block.block.adminimal_theme_help.yml @@ -0,0 +1,22 @@ +uuid: c27f0f09-7d43-4832-935a-474c330e4697 +langcode: en +status: true +dependencies: + module: + - help + theme: + - adminimal_theme +_core: + default_config_hash: PfozGAnWQRNy00G6KEnZjIu9b2lGuWg-j-GT_-Ejglc +id: adminimal_theme_help +theme: adminimal_theme +region: help +weight: 0 +provider: null +plugin: help_block +settings: + id: help_block + label: Help + label_display: '0' + provider: help +visibility: { } diff --git a/project/config/boundarycommission/config/block.block.adminimal_theme_local_actions.yml b/project/config/boundarycommission/config/block.block.adminimal_theme_local_actions.yml new file mode 100644 index 000000000..249017858 --- /dev/null +++ b/project/config/boundarycommission/config/block.block.adminimal_theme_local_actions.yml @@ -0,0 +1,20 @@ +uuid: 173c908e-68bf-47f8-a80c-f53c69502e70 +langcode: en +status: true +dependencies: + theme: + - adminimal_theme +_core: + default_config_hash: ik4PTMlBD0MWansnSMpSXq5SUlWRJ1IVVt6C7AIbQmc +id: adminimal_theme_local_actions +theme: adminimal_theme +region: content +weight: -10 +provider: null +plugin: local_actions_block +settings: + id: local_actions_block + label: 'Primary admin actions' + label_display: '0' + provider: core +visibility: { } diff --git a/project/config/boundarycommission/config/block.block.adminimal_theme_login.yml b/project/config/boundarycommission/config/block.block.adminimal_theme_login.yml new file mode 100644 index 000000000..9a6948d6c --- /dev/null +++ b/project/config/boundarycommission/config/block.block.adminimal_theme_login.yml @@ -0,0 +1,22 @@ +uuid: bd629e25-ccab-4a81-81ec-c6fd2a851680 +langcode: en +status: true +dependencies: + module: + - user + theme: + - adminimal_theme +_core: + default_config_hash: 862sIulDdHmF0vBU1s2j2_a_CwkxursrL0pIrMDzzOg +id: adminimal_theme_login +theme: adminimal_theme +region: content +weight: 10 +provider: null +plugin: user_login_block +settings: + id: user_login_block + label: 'User login' + label_display: visible + provider: user +visibility: { } diff --git a/project/config/boundarycommission/config/block.block.adminimal_theme_messages.yml b/project/config/boundarycommission/config/block.block.adminimal_theme_messages.yml new file mode 100644 index 000000000..221c0b596 --- /dev/null +++ b/project/config/boundarycommission/config/block.block.adminimal_theme_messages.yml @@ -0,0 +1,22 @@ +uuid: b08cae97-fbfc-4f36-9eaf-2929a867dd50 +langcode: en +status: true +dependencies: + module: + - system + theme: + - adminimal_theme +_core: + default_config_hash: YqKTtloWJ8FjLtfVNfrHaK6kVgxT67lC1cJ3j6i6WLo +id: adminimal_theme_messages +theme: adminimal_theme +region: highlighted +weight: 0 +provider: null +plugin: system_messages_block +settings: + id: system_messages_block + label: 'Status messages' + label_display: '0' + provider: system +visibility: { } diff --git a/project/config/boundarycommission/config/block.block.adminimal_theme_page_title.yml b/project/config/boundarycommission/config/block.block.adminimal_theme_page_title.yml new file mode 100644 index 000000000..a080ed0aa --- /dev/null +++ b/project/config/boundarycommission/config/block.block.adminimal_theme_page_title.yml @@ -0,0 +1,20 @@ +uuid: 47a5c8ac-32f5-482b-bc5a-e81f8a781164 +langcode: en +status: true +dependencies: + theme: + - adminimal_theme +_core: + default_config_hash: Z3nlZUh2mSJP3apMrJWt-duS-aLyP79rcfu_0wpPmDs +id: adminimal_theme_page_title +theme: adminimal_theme +region: header +weight: -30 +provider: null +plugin: page_title_block +settings: + id: page_title_block + label: 'Page title' + label_display: '0' + provider: core +visibility: { } diff --git a/project/config/boundarycommission/config/block.block.adminimal_theme_primary_local_tasks.yml b/project/config/boundarycommission/config/block.block.adminimal_theme_primary_local_tasks.yml new file mode 100644 index 000000000..30426cec2 --- /dev/null +++ b/project/config/boundarycommission/config/block.block.adminimal_theme_primary_local_tasks.yml @@ -0,0 +1,22 @@ +uuid: c216517d-b43a-49b2-901f-d599fc752abd +langcode: en +status: true +dependencies: + theme: + - adminimal_theme +_core: + default_config_hash: CyX_aDKAka2_eihevNLscCHDYrzDgIqwWzFVEFRKIww +id: adminimal_theme_primary_local_tasks +theme: adminimal_theme +region: header +weight: 0 +provider: null +plugin: local_tasks_block +settings: + id: local_tasks_block + label: 'Primary tabs' + label_display: '0' + provider: core + primary: true + secondary: false +visibility: { } diff --git a/project/config/boundarycommission/config/block.block.adminimal_theme_secondary_local_tasks.yml b/project/config/boundarycommission/config/block.block.adminimal_theme_secondary_local_tasks.yml new file mode 100644 index 000000000..b6c5f25ae --- /dev/null +++ b/project/config/boundarycommission/config/block.block.adminimal_theme_secondary_local_tasks.yml @@ -0,0 +1,22 @@ +uuid: c5070e32-91ad-4a5f-9973-dba20e15c4f4 +langcode: en +status: true +dependencies: + theme: + - adminimal_theme +_core: + default_config_hash: DJ7Om1C2xWr2GI8CjZaZtyWpP-0S3hRR3oROZl1oesc +id: adminimal_theme_secondary_local_tasks +theme: adminimal_theme +region: pre_content +weight: 0 +provider: null +plugin: local_tasks_block +settings: + id: local_tasks_block + label: 'Secondary tabs' + label_display: '0' + provider: core + primary: false + secondary: true +visibility: { } diff --git a/project/config/boundarycommission/config/block.block.breadcrumbs.yml b/project/config/boundarycommission/config/block.block.breadcrumbs.yml new file mode 100644 index 000000000..46091512b --- /dev/null +++ b/project/config/boundarycommission/config/block.block.breadcrumbs.yml @@ -0,0 +1,24 @@ +uuid: a854a1da-d141-468c-ab8e-9dd46fd681af +langcode: en +status: true +dependencies: + module: + - system + theme: + - boundarycommission_theme +id: breadcrumbs +theme: boundarycommission_theme +region: breadcrumb +weight: 0 +provider: null +plugin: system_breadcrumb_block +settings: + id: system_breadcrumb_block + label: Breadcrumbs + label_display: '0' + provider: system +visibility: + request_path: + id: request_path + negate: true + pages: '' diff --git a/project/config/boundarycommission/config/block.block.contactinformation.yml b/project/config/boundarycommission/config/block.block.contactinformation.yml new file mode 100644 index 000000000..5a3fa71e6 --- /dev/null +++ b/project/config/boundarycommission/config/block.block.contactinformation.yml @@ -0,0 +1,25 @@ +uuid: 8010f069-0b84-4a33-8b38-319b44c4bd0b +langcode: en +status: true +dependencies: + content: + - 'block_content:basic_block:e8393aa3-c868-4d44-8f46-4f60aa59fb48' + module: + - block_content + theme: + - boundarycommission_theme +id: contactinformation +theme: boundarycommission_theme +region: footer_first +weight: 0 +provider: null +plugin: 'block_content:e8393aa3-c868-4d44-8f46-4f60aa59fb48' +settings: + id: 'block_content:e8393aa3-c868-4d44-8f46-4f60aa59fb48' + label: 'Contact Information' + label_display: '0' + provider: block_content + status: true + info: '' + view_mode: full +visibility: { } diff --git a/project/config/boundarycommission/config/block.block.datepublished.yml b/project/config/boundarycommission/config/block.block.datepublished.yml new file mode 100644 index 000000000..cee74f352 --- /dev/null +++ b/project/config/boundarycommission/config/block.block.datepublished.yml @@ -0,0 +1,29 @@ +uuid: ab89ccd3-e373-4e95-8af6-12cf8d2560f0 +langcode: en +status: true +dependencies: + config: + - facets.facet.date_published + module: + - facets + - system + theme: + - boundarycommission_theme +id: datepublished +theme: boundarycommission_theme +region: search_facets +weight: -7 +provider: null +plugin: 'facet_block:date_published' +settings: + id: 'facet_block:date_published' + label: Date + label_display: visible + provider: facets + context_mapping: { } + block_id: datepublished +visibility: + request_path: + id: request_path + negate: false + pages: "/publications\r\n/publications/date/*\r\n/publications/type/*" diff --git a/project/config/boundarycommission/config/block.block.exposedformconsultations_searchconsultations_search_page.yml b/project/config/boundarycommission/config/block.block.exposedformconsultations_searchconsultations_search_page.yml new file mode 100644 index 000000000..5b78e72d4 --- /dev/null +++ b/project/config/boundarycommission/config/block.block.exposedformconsultations_searchconsultations_search_page.yml @@ -0,0 +1,28 @@ +uuid: f4f53fdd-0c0d-414f-b003-fe156d9c3cfb +langcode: en +status: true +dependencies: + config: + - views.view.consultations_search + module: + - system + - views + theme: + - boundarycommission_theme +id: exposedformconsultations_searchconsultations_search_page +theme: boundarycommission_theme +region: search_facets +weight: -5 +provider: null +plugin: 'views_exposed_filter_block:consultations_search-consultations_search_page' +settings: + id: 'views_exposed_filter_block:consultations_search-consultations_search_page' + label: '' + label_display: '0' + provider: views + views_label: '' +visibility: + request_path: + id: request_path + negate: false + pages: "/representations-received\r\n/representations-received/type/*\r\n/representations-received/stage/*" diff --git a/project/config/boundarycommission/config/block.block.exposedformnews_searchnews_search_page.yml b/project/config/boundarycommission/config/block.block.exposedformnews_searchnews_search_page.yml new file mode 100644 index 000000000..1fd76cf89 --- /dev/null +++ b/project/config/boundarycommission/config/block.block.exposedformnews_searchnews_search_page.yml @@ -0,0 +1,28 @@ +uuid: 7c4c62a1-ecfc-4137-b4c5-04b8519bb2da +langcode: en +status: true +dependencies: + config: + - views.view.news_search + module: + - system + - views + theme: + - boundarycommission_theme +id: exposedformnews_searchnews_search_page +theme: boundarycommission_theme +region: search_facets +weight: -10 +provider: null +plugin: 'views_exposed_filter_block:news_search-news_search_page' +settings: + id: 'views_exposed_filter_block:news_search-news_search_page' + label: '' + label_display: '0' + provider: views + views_label: '' +visibility: + request_path: + id: request_path + negate: false + pages: "/news\r\n/news/date/*" diff --git a/project/config/boundarycommission/config/block.block.exposedformpublications_searchpublication_search_page.yml b/project/config/boundarycommission/config/block.block.exposedformpublications_searchpublication_search_page.yml new file mode 100644 index 000000000..875106e0b --- /dev/null +++ b/project/config/boundarycommission/config/block.block.exposedformpublications_searchpublication_search_page.yml @@ -0,0 +1,28 @@ +uuid: 8af8683e-6fd8-4319-99d3-da0432c1fd74 +langcode: en +status: true +dependencies: + config: + - views.view.publications_search + module: + - system + - views + theme: + - boundarycommission_theme +id: exposedformpublications_searchpublication_search_page +theme: boundarycommission_theme +region: search_facets +weight: -9 +provider: null +plugin: 'views_exposed_filter_block:publications_search-publication_search_page' +settings: + id: 'views_exposed_filter_block:publications_search-publication_search_page' + label: '' + label_display: '0' + provider: views + views_label: '' +visibility: + request_path: + id: request_path + negate: false + pages: "/publications\r\n/publications/date/*\r\n/publications/type/*\r\n" diff --git a/project/config/boundarycommission/config/block.block.footerlinks.yml b/project/config/boundarycommission/config/block.block.footerlinks.yml new file mode 100644 index 000000000..ac79995fe --- /dev/null +++ b/project/config/boundarycommission/config/block.block.footerlinks.yml @@ -0,0 +1,25 @@ +uuid: c4fdb151-7684-45d8-b314-46dd998c80e5 +langcode: en +status: true +dependencies: + config: + - system.menu.menu-footer-links + module: + - system + theme: + - boundarycommission_theme +id: footerlinks +theme: boundarycommission_theme +region: footer +weight: 0 +provider: null +plugin: 'system_menu_block:menu-footer-links' +settings: + id: 'system_menu_block:menu-footer-links' + label: 'Footer links' + label_display: '0' + provider: system + level: 1 + depth: 0 + expand_all_items: false +visibility: { } diff --git a/project/config/boundarycommission/config/block.block.frontpagebanner.yml b/project/config/boundarycommission/config/block.block.frontpagebanner.yml new file mode 100644 index 000000000..5e9463190 --- /dev/null +++ b/project/config/boundarycommission/config/block.block.frontpagebanner.yml @@ -0,0 +1,30 @@ +uuid: e57efed0-6c53-4e31-b23b-2d6c17916733 +langcode: en +status: true +dependencies: + content: + - 'block_content:basic_block:15b55800-aab3-47f2-b57a-6824374d853a' + module: + - block_content + - system + theme: + - boundarycommission_theme +id: frontpagebanner +theme: boundarycommission_theme +region: slideshow +weight: 0 +provider: null +plugin: 'block_content:15b55800-aab3-47f2-b57a-6824374d853a' +settings: + id: 'block_content:15b55800-aab3-47f2-b57a-6824374d853a' + label: 'Frontpage banner' + label_display: '0' + provider: block_content + status: true + info: '' + view_mode: full +visibility: + request_path: + id: request_path + negate: false + pages: '' diff --git a/project/config/boundarycommission/config/block.block.homepageinformation.yml b/project/config/boundarycommission/config/block.block.homepageinformation.yml new file mode 100644 index 000000000..bb7330fe5 --- /dev/null +++ b/project/config/boundarycommission/config/block.block.homepageinformation.yml @@ -0,0 +1,30 @@ +uuid: 4f0cef44-5fb8-4348-8d08-4d143a3bb38f +langcode: en +status: true +dependencies: + content: + - 'block_content:basic_block:884a631b-c029-4ac8-b27f-c654882aae71' + module: + - block_content + - system + theme: + - boundarycommission_theme +id: homepageinformation +theme: boundarycommission_theme +region: front_welcome +weight: -10 +provider: null +plugin: 'block_content:884a631b-c029-4ac8-b27f-c654882aae71' +settings: + id: 'block_content:884a631b-c029-4ac8-b27f-c654882aae71' + label: 'Homepage information' + label_display: '0' + provider: block_content + status: true + info: '' + view_mode: full +visibility: + request_path: + id: request_path + negate: false + pages: '' diff --git a/project/config/boundarycommission/config/block.block.mainmenu.yml b/project/config/boundarycommission/config/block.block.mainmenu.yml new file mode 100644 index 000000000..3b03a3742 --- /dev/null +++ b/project/config/boundarycommission/config/block.block.mainmenu.yml @@ -0,0 +1,25 @@ +uuid: 800e9d83-4771-4f1d-863f-c74987961133 +langcode: en +status: true +dependencies: + config: + - system.menu.main + module: + - system + theme: + - boundarycommission_theme +id: mainmenu +theme: boundarycommission_theme +region: primary_menu +weight: 0 +provider: null +plugin: 'system_menu_block:main' +settings: + id: 'system_menu_block:main' + label: 'Main menu' + label_display: '0' + provider: system + level: 1 + depth: 2 + expand_all_items: true +visibility: { } diff --git a/project/config/boundarycommission/config/block.block.mainpagecontent.yml b/project/config/boundarycommission/config/block.block.mainpagecontent.yml new file mode 100644 index 000000000..d6f9dd619 --- /dev/null +++ b/project/config/boundarycommission/config/block.block.mainpagecontent.yml @@ -0,0 +1,20 @@ +uuid: 58c4feeb-3d84-49a1-9529-35a77b7aa497 +langcode: en +status: true +dependencies: + module: + - system + theme: + - boundarycommission_theme +id: mainpagecontent +theme: boundarycommission_theme +region: content +weight: -9 +provider: null +plugin: system_main_block +settings: + id: system_main_block + label: 'Main page content' + label_display: '0' + provider: system +visibility: { } diff --git a/project/config/boundarycommission/config/block.block.map.yml b/project/config/boundarycommission/config/block.block.map.yml new file mode 100644 index 000000000..ea1cdd3bb --- /dev/null +++ b/project/config/boundarycommission/config/block.block.map.yml @@ -0,0 +1,30 @@ +uuid: 63bc7fad-1d86-42ed-9834-207a071b05da +langcode: en +status: true +dependencies: + content: + - 'block_content:map:3030f42e-8410-4e83-9dfd-368e573a1def' + module: + - block_content + - system + theme: + - boundarycommission_theme +id: map +theme: boundarycommission_theme +region: content +weight: -8 +provider: null +plugin: 'block_content:3030f42e-8410-4e83-9dfd-368e573a1def' +settings: + id: 'block_content:3030f42e-8410-4e83-9dfd-368e573a1def' + label: Map + label_display: '0' + provider: block_content + status: true + info: '' + view_mode: full +visibility: + request_path: + id: request_path + negate: false + pages: /contact-us diff --git a/project/config/boundarycommission/config/block.block.pagetitle.yml b/project/config/boundarycommission/config/block.block.pagetitle.yml new file mode 100644 index 000000000..7bade1e8d --- /dev/null +++ b/project/config/boundarycommission/config/block.block.pagetitle.yml @@ -0,0 +1,24 @@ +uuid: db5729d6-f980-4f79-89be-a68b42cbf2b6 +langcode: en +status: true +dependencies: + module: + - system + theme: + - boundarycommission_theme +id: pagetitle +theme: boundarycommission_theme +region: content +weight: -10 +provider: null +plugin: page_title_block +settings: + id: page_title_block + label: 'Page title' + label_display: '0' + provider: core +visibility: + request_path: + id: request_path + negate: true + pages: "\r\n/search\r\n/news\r\n/news/date/*\r\n/node/*/revisions/view/*\r\n/publications\r\n/publications/date/*\r\n/publications/type/*\r\n/representations-received\r\n/representations-received/type/*\r\n/representations-received/stage/*" diff --git a/project/config/boundarycommission/config/block.block.publicationtype.yml b/project/config/boundarycommission/config/block.block.publicationtype.yml new file mode 100644 index 000000000..3db2c99ef --- /dev/null +++ b/project/config/boundarycommission/config/block.block.publicationtype.yml @@ -0,0 +1,28 @@ +uuid: 89207389-a430-4125-9d77-5c1677cede28 +langcode: en +status: true +dependencies: + config: + - facets.facet.publication_type + module: + - facets + - system + theme: + - boundarycommission_theme +id: publicationtype +theme: boundarycommission_theme +region: search_facets +weight: -6 +provider: null +plugin: 'facet_block:publication_type' +settings: + id: 'facet_block:publication_type' + label: Type + label_display: visible + provider: facets + block_id: publicationtype +visibility: + request_path: + id: request_path + negate: false + pages: "/publications\r\n/publications/date/*\r\n/publications/type/*" diff --git a/project/config/boundarycommission/config/block.block.publisheddate.yml b/project/config/boundarycommission/config/block.block.publisheddate.yml new file mode 100644 index 000000000..7ffd56104 --- /dev/null +++ b/project/config/boundarycommission/config/block.block.publisheddate.yml @@ -0,0 +1,28 @@ +uuid: 7d969be6-0dfd-4762-8683-bf5397b71932 +langcode: en +status: true +dependencies: + config: + - facets.facet.published_date + module: + - facets + - system + theme: + - boundarycommission_theme +id: publisheddate +theme: boundarycommission_theme +region: search_facets +weight: -8 +provider: null +plugin: 'facet_block:published_date' +settings: + id: 'facet_block:published_date' + label: 'Published Date' + label_display: visible + provider: facets + block_id: publisheddate +visibility: + request_path: + id: request_path + negate: false + pages: "/news\r\n/news/date/*" diff --git a/project/config/boundarycommission/config/block.block.responsetype.yml b/project/config/boundarycommission/config/block.block.responsetype.yml new file mode 100644 index 000000000..517a0531b --- /dev/null +++ b/project/config/boundarycommission/config/block.block.responsetype.yml @@ -0,0 +1,28 @@ +uuid: ef3c8b1e-3875-4118-b77d-eb008a94aeb6 +langcode: en +status: true +dependencies: + config: + - facets.facet.response_type + module: + - facets + - system + theme: + - boundarycommission_theme +id: responsetype +theme: boundarycommission_theme +region: search_facets +weight: -3 +provider: null +plugin: 'facet_block:response_type' +settings: + id: 'facet_block:response_type' + label: 'Response Type' + label_display: visible + provider: facets + block_id: responsetype +visibility: + request_path: + id: request_path + negate: false + pages: "/representations-received\r\n/representations-received/type/*\r\n/representations-received/stage/*" diff --git a/project/config/boundarycommission/config/block.block.sidemenu.yml b/project/config/boundarycommission/config/block.block.sidemenu.yml new file mode 100644 index 000000000..2b2cbebae --- /dev/null +++ b/project/config/boundarycommission/config/block.block.sidemenu.yml @@ -0,0 +1,37 @@ +uuid: c5dbaa8e-670b-447e-b082-c26ac5ab544c +langcode: en +status: true +dependencies: + config: + - system.menu.main + module: + - node + - system + theme: + - boundarycommission_theme +id: sidemenu +theme: boundarycommission_theme +region: sidebar_second +weight: 0 +provider: null +plugin: 'system_menu_block:main' +settings: + id: 'system_menu_block:main' + label: 'In this section' + label_display: visible + provider: system + level: 1 + depth: 0 + expand_all_items: false +visibility: + 'entity_bundle:node': + id: 'entity_bundle:node' + negate: false + context_mapping: + node: '@node.node_route_context:node' + bundles: + basic_page: basic_page + request_path: + id: request_path + negate: true + pages: '' diff --git a/project/config/boundarycommission/config/block.block.sitebranding.yml b/project/config/boundarycommission/config/block.block.sitebranding.yml new file mode 100644 index 000000000..bc1e3574f --- /dev/null +++ b/project/config/boundarycommission/config/block.block.sitebranding.yml @@ -0,0 +1,23 @@ +uuid: cd3f231d-d768-4ee8-bf34-020d1e9a244b +langcode: en +status: true +dependencies: + module: + - system + theme: + - boundarycommission_theme +id: sitebranding +theme: boundarycommission_theme +region: header +weight: 0 +provider: null +plugin: system_branding_block +settings: + id: system_branding_block + label: 'Site branding' + label_display: '0' + provider: system + use_site_logo: true + use_site_name: true + use_site_slogan: true +visibility: { } diff --git a/project/config/boundarycommission/config/block.block.sitesearchblock.yml b/project/config/boundarycommission/config/block.block.sitesearchblock.yml new file mode 100644 index 000000000..a90ba77f9 --- /dev/null +++ b/project/config/boundarycommission/config/block.block.sitesearchblock.yml @@ -0,0 +1,25 @@ +uuid: 9da0f185-5759-41b9-97b5-40766f4ac4ce +langcode: en +status: true +dependencies: + module: + - system + - unity_search_pages + theme: + - boundarycommission_theme +id: sitesearchblock +theme: boundarycommission_theme +region: search +weight: 0 +provider: null +plugin: site_search_block +settings: + id: site_search_block + label: 'Site search block' + label_display: '0' + provider: unity_search_pages +visibility: + request_path: + id: request_path + negate: true + pages: '/search*' diff --git a/project/config/boundarycommission/config/block.block.sociallinks.yml b/project/config/boundarycommission/config/block.block.sociallinks.yml new file mode 100644 index 000000000..44296d315 --- /dev/null +++ b/project/config/boundarycommission/config/block.block.sociallinks.yml @@ -0,0 +1,25 @@ +uuid: 191aa288-44f9-4645-9731-afc7b403ee2b +langcode: en +status: true +dependencies: + content: + - 'block_content:basic_block:b6a703fd-211c-4fc0-bff6-828afc8c567a' + module: + - block_content + theme: + - boundarycommission_theme +id: sociallinks +theme: boundarycommission_theme +region: footer_second +weight: 0 +provider: null +plugin: 'block_content:b6a703fd-211c-4fc0-bff6-828afc8c567a' +settings: + id: 'block_content:b6a703fd-211c-4fc0-bff6-828afc8c567a' + label: 'Social links' + label_display: '0' + provider: block_content + status: true + info: '' + view_mode: full +visibility: { } diff --git a/project/config/boundarycommission/config/block.block.stage.yml b/project/config/boundarycommission/config/block.block.stage.yml new file mode 100644 index 000000000..98b8b1bbe --- /dev/null +++ b/project/config/boundarycommission/config/block.block.stage.yml @@ -0,0 +1,28 @@ +uuid: 82f0dc8b-eedc-4339-931b-07add23c363d +langcode: en +status: true +dependencies: + config: + - facets.facet.stage + module: + - facets + - system + theme: + - boundarycommission_theme +id: stage +theme: boundarycommission_theme +region: search_facets +weight: -4 +provider: null +plugin: 'facet_block:stage' +settings: + id: 'facet_block:stage' + label: Stage + label_display: visible + provider: facets + block_id: stage +visibility: + request_path: + id: request_path + negate: false + pages: "/representations-received\r\n/representations-received/type/*\r\n/representations-received/stage/*" diff --git a/project/config/boundarycommission/config/block.block.views_block__featured_content_featured_content_first.yml b/project/config/boundarycommission/config/block.block.views_block__featured_content_featured_content_first.yml new file mode 100644 index 000000000..057876f92 --- /dev/null +++ b/project/config/boundarycommission/config/block.block.views_block__featured_content_featured_content_first.yml @@ -0,0 +1,24 @@ +uuid: baa5d503-e691-48d6-9dcd-0ef0ceb3a0fc +langcode: en +status: true +dependencies: + config: + - views.view.featured_content + module: + - views + theme: + - boundarycommission_theme +id: views_block__featured_content_featured_content_first +theme: boundarycommission_theme +region: top_first +weight: 0 +provider: null +plugin: 'views_block:featured_content-featured_content_first' +settings: + id: 'views_block:featured_content-featured_content_first' + label: '' + label_display: '0' + provider: views + views_label: '' + items_per_page: none +visibility: { } diff --git a/project/config/boundarycommission/config/block.block.views_block__featured_content_featured_content_last.yml b/project/config/boundarycommission/config/block.block.views_block__featured_content_featured_content_last.yml new file mode 100644 index 000000000..63061cb5a --- /dev/null +++ b/project/config/boundarycommission/config/block.block.views_block__featured_content_featured_content_last.yml @@ -0,0 +1,24 @@ +uuid: 5f3d5a26-bd8d-4afd-84b1-4f54fe6988f5 +langcode: en +status: true +dependencies: + config: + - views.view.featured_content + module: + - views + theme: + - boundarycommission_theme +id: views_block__featured_content_featured_content_last +theme: boundarycommission_theme +region: top_third +weight: 0 +provider: null +plugin: 'views_block:featured_content-featured_content_last' +settings: + id: 'views_block:featured_content-featured_content_last' + label: '' + label_display: '0' + provider: views + views_label: '' + items_per_page: none +visibility: { } diff --git a/project/config/boundarycommission/config/block.block.views_block__latest_news_latest_news.yml b/project/config/boundarycommission/config/block.block.views_block__latest_news_latest_news.yml new file mode 100644 index 000000000..1ed4bb89e --- /dev/null +++ b/project/config/boundarycommission/config/block.block.views_block__latest_news_latest_news.yml @@ -0,0 +1,32 @@ +uuid: 41c6a808-048d-4fc0-8e22-ce72b4d3a7f6 +langcode: en +status: true +dependencies: + config: + - views.view.latest_news + module: + - node + - views + theme: + - boundarycommission_theme +id: views_block__latest_news_latest_news +theme: boundarycommission_theme +region: sidebar_second +weight: 0 +provider: null +plugin: 'views_block:latest_news-latest_news' +settings: + id: 'views_block:latest_news-latest_news' + label: 'Latest news' + label_display: visible + provider: views + views_label: 'Latest news' + items_per_page: none +visibility: + 'entity_bundle:node': + id: 'entity_bundle:node' + negate: false + context_mapping: + node: '@node.node_route_context:node' + bundles: + news: news diff --git a/project/config/boundarycommission/config/block.block.views_block__latest_news_latest_news_home.yml b/project/config/boundarycommission/config/block.block.views_block__latest_news_latest_news_home.yml new file mode 100644 index 000000000..422ed54e3 --- /dev/null +++ b/project/config/boundarycommission/config/block.block.views_block__latest_news_latest_news_home.yml @@ -0,0 +1,24 @@ +uuid: d19f3d32-5962-41be-8ccd-7bab727cd258 +langcode: en +status: true +dependencies: + config: + - views.view.latest_news + module: + - views + theme: + - boundarycommission_theme +id: views_block__latest_news_latest_news_home +theme: boundarycommission_theme +region: top_second +weight: 0 +provider: null +plugin: 'views_block:latest_news-latest_news_home' +settings: + id: 'views_block:latest_news-latest_news_home' + label: '' + label_display: '0' + provider: views + views_label: '' + items_per_page: none +visibility: { } diff --git a/project/config/boundarycommission/config/block_content.type.basic_block.yml b/project/config/boundarycommission/config/block_content.type.basic_block.yml new file mode 100644 index 000000000..2d01f0d82 --- /dev/null +++ b/project/config/boundarycommission/config/block_content.type.basic_block.yml @@ -0,0 +1,10 @@ +uuid: 78f278c4-0bbf-4548-9a8d-26c56af91da2 +langcode: en +status: true +dependencies: { } +_core: + default_config_hash: oUH6Xz_hNkIKG9YbG6r_gUVjT5dVA6_x4PI8V_cqCHY +id: basic_block +label: 'Basic block' +revision: 1 +description: 'A basic block contains a title and a body.' diff --git a/project/config/boundarycommission/config/block_content.type.map.yml b/project/config/boundarycommission/config/block_content.type.map.yml new file mode 100644 index 000000000..886fc61bb --- /dev/null +++ b/project/config/boundarycommission/config/block_content.type.map.yml @@ -0,0 +1,10 @@ +uuid: 4b209e3a-d971-4f37-b3e9-a3436820523f +langcode: en +status: true +dependencies: { } +_core: + default_config_hash: Gwz8hrs1QN0Okrhsi6BAtHsoP9abgs2XRHZJ5j-cvJA +id: map +label: Map +revision: 0 +description: 'Custom block type designed to contain a map to be embedded anywhere on the site.' diff --git a/project/config/boundarycommission/config/boundarycommission_theme.settings.yml b/project/config/boundarycommission/config/boundarycommission_theme.settings.yml new file mode 100644 index 000000000..34373e9e3 --- /dev/null +++ b/project/config/boundarycommission/config/boundarycommission_theme.settings.yml @@ -0,0 +1,17 @@ +features: + node_user_picture: 1 + comment_user_picture: true + comment_user_verification: true + favicon: 1 +logo: + use_default: 0 + path: sites/boundarycommission/themes/boundarycommission_theme/logo.png +favicon: + use_default: 1 +basic_page_structure: 0 +twitter_profile_url: 'https://twitter.com/BCommNI' +facebook_profile_url: '' +linkedin_profile_url: '' +pinterest_profile_url: '' +youtube_profile_url: '' +instagram_profile_url: '' diff --git a/project/config/boundarycommission/config/clientside_validation_jquery.settings.yml b/project/config/boundarycommission/config/clientside_validation_jquery.settings.yml new file mode 100644 index 000000000..1c68f90ce --- /dev/null +++ b/project/config/boundarycommission/config/clientside_validation_jquery.settings.yml @@ -0,0 +1,6 @@ +_core: + default_config_hash: 3YUV4RQQ4k8drO7uzYJ7lNc5Az0iDAH5YW8KbZVxjeY +use_cdn: false +cdn_base_url: 'https://cdn.jsdelivr.net/npm/jquery-validation@1.17.0/dist/' +validate_all_ajax_forms: 2 +force_validate_on_blur: 0 diff --git a/project/config/boundarycommission/config/config_ignore.settings.yml b/project/config/boundarycommission/config/config_ignore.settings.yml new file mode 100644 index 000000000..fd5281745 --- /dev/null +++ b/project/config/boundarycommission/config/config_ignore.settings.yml @@ -0,0 +1,3 @@ +_core: + default_config_hash: UVH1aJ4b44UM-VdPVN7hNNuuVqfReJxwfVeDQH1Hvsk +ignored_config_entities: { } diff --git a/project/config/boundarycommission/config/config_split.config_split.hosted.yml b/project/config/boundarycommission/config/config_split.config_split.hosted.yml new file mode 100644 index 000000000..b3d0a0746 --- /dev/null +++ b/project/config/boundarycommission/config/config_split.config_split.hosted.yml @@ -0,0 +1,15 @@ +uuid: 6298720f-a280-4061-83e5-073d6c09276c +langcode: en +status: true +dependencies: { } +id: hosted +label: hosted +description: '' +weight: 0 +folder: ../project/config/boundarycommission/hosted +module: { } +theme: { } +blacklist: { } +graylist: { } +graylist_dependents: true +graylist_skip_equal: true diff --git a/project/config/boundarycommission/config/config_split.config_split.local.yml b/project/config/boundarycommission/config/config_split.config_split.local.yml new file mode 100644 index 000000000..5beb51186 --- /dev/null +++ b/project/config/boundarycommission/config/config_split.config_split.local.yml @@ -0,0 +1,29 @@ +uuid: db88c4ca-04f1-40b3-a1aa-ff4deb778bd6 +langcode: en +status: true +dependencies: { } +id: local +label: local +description: '' +weight: 0 +folder: ../project/config/boundarycommission/local +module: + boundarycommission_migrations: 0 + clone_nodes: 0 + dblog: 0 + devel: 0 + easy_install: 0 + migrate: 0 + migrate_absolute_links: 0 + migrate_drupal: 0 + migrate_drupal_ui: 0 + migrate_plus: 0 + migrate_tools: 0 + migrate_upgrade: 0 + unity_file_migrations: 0 + views_ui: 0 +theme: { } +blacklist: { } +graylist: { } +graylist_dependents: true +graylist_skip_equal: true diff --git a/project/config/boundarycommission/config/config_split.config_split.production.yml b/project/config/boundarycommission/config/config_split.config_split.production.yml new file mode 100644 index 000000000..0e2f04679 --- /dev/null +++ b/project/config/boundarycommission/config/config_split.config_split.production.yml @@ -0,0 +1,17 @@ +uuid: fd21b68e-2eec-4f36-8c0c-497ee2092f4d +langcode: en +status: true +dependencies: { } +id: production +label: production +description: '' +weight: 0 +folder: ../project/config/boundarycommission/production +module: + fastly: 0 +theme: { } +blacklist: + - fastly.settings +graylist: { } +graylist_dependents: true +graylist_skip_equal: true diff --git a/project/config/boundarycommission/config/content_lock.settings.yml b/project/config/boundarycommission/config/content_lock.settings.yml new file mode 100644 index 000000000..7afcb8d2a --- /dev/null +++ b/project/config/boundarycommission/config/content_lock.settings.yml @@ -0,0 +1,72 @@ +_core: + default_config_hash: 5ZR2rETEQeI922jZ_ObHCnuueEJHgU7_vyBgdP0q7Ls +verbose: 1 +types: + block_content: { } + contact_message: { } + content_moderation_state: { } + entity_embed_fake_entity: { } + file: { } + media: { } + node: + '*': '*' + path_alias: { } + redirect: { } + search_api_task: { } + taxonomy_term: { } + user: { } + webform_submission: { } + menu_link_content: { } + paragraph: { } +types_translation_lock: { } +types_js_lock: { } +form_op_lock: + block_content: + mode: 0 + values: { } + contact_message: + mode: 0 + values: { } + content_moderation_state: + mode: 0 + values: { } + entity_embed_fake_entity: + mode: 0 + values: { } + file: + mode: 0 + values: { } + media: + mode: 0 + values: { } + node: + mode: 0 + values: + default: default + delete: delete + edit: edit + delete-multiple-confirm: delete-multiple-confirm + path_alias: + mode: 0 + values: { } + redirect: + mode: 0 + values: { } + search_api_task: + mode: 0 + values: { } + taxonomy_term: + mode: 0 + values: { } + user: + mode: 0 + values: { } + webform_submission: + mode: 0 + values: { } + menu_link_content: + mode: 0 + values: { } + paragraph: + mode: 0 + values: { } diff --git a/project/config/boundarycommission/config/content_lock_timeout.settings.yml b/project/config/boundarycommission/config/content_lock_timeout.settings.yml new file mode 100644 index 000000000..bfa0a1a5c --- /dev/null +++ b/project/config/boundarycommission/config/content_lock_timeout.settings.yml @@ -0,0 +1,4 @@ +_core: + default_config_hash: 1mYaOX9NF2F6npKhATt6_IBIXSKJxuVAcDnR6LZ9hGw +content_lock_timeout_minutes: '30' +content_lock_timeout_on_edit: 0 diff --git a/project/config/boundarycommission/config/cookie_content_blocker.settings.yml b/project/config/boundarycommission/config/cookie_content_blocker.settings.yml new file mode 100644 index 000000000..6b8077ca4 --- /dev/null +++ b/project/config/boundarycommission/config/cookie_content_blocker.settings.yml @@ -0,0 +1,27 @@ +_core: + default_config_hash: plsmi8E9YAENMTe8EnsLZDQu6oyG1_FCcR4xyn8GAnQ +blocked_message: 'You have not yet given permission to place the required cookies. Accept the required cookies to view this content.' +show_button: true +button_text: 'Show content' +enable_click_consent_change: true +consent_awareness: + accepted: + event: + name: click + selector: .agree-button + cookie: + operator: '===' + name: cookie-agreed + value: '2' + declined: + event: + name: click + selector: .decline-button + cookie: + operator: '===' + name: cookie-agreed + value: '0' + change: + event: + name: click + selector: .agree-button diff --git a/project/config/boundarycommission/config/core.base_field_override.node.basic_page.promote.yml b/project/config/boundarycommission/config/core.base_field_override.node.basic_page.promote.yml new file mode 100644 index 000000000..df2995e5b --- /dev/null +++ b/project/config/boundarycommission/config/core.base_field_override.node.basic_page.promote.yml @@ -0,0 +1,24 @@ +uuid: beced680-d0e8-436c-90f4-f4f61a73c953 +langcode: en +status: true +dependencies: + config: + - node.type.basic_page +_core: + default_config_hash: OPP8wTm5eAK142vOGHGG2hOtPMwKQo9FAFYzQd82bdY +id: node.basic_page.promote +field_name: promote +entity_type: node +bundle: basic_page +label: 'Promoted to front page' +description: '' +required: false +translatable: true +default_value: + - + value: 0 +default_value_callback: '' +settings: + on_label: 'On' + off_label: 'Off' +field_type: boolean diff --git a/project/config/boundarycommission/config/core.base_field_override.node.basic_page.status.yml b/project/config/boundarycommission/config/core.base_field_override.node.basic_page.status.yml new file mode 100644 index 000000000..fe68241d1 --- /dev/null +++ b/project/config/boundarycommission/config/core.base_field_override.node.basic_page.status.yml @@ -0,0 +1,24 @@ +uuid: 48a5720b-69da-4d0a-8487-851043ab553f +langcode: en +status: true +dependencies: + config: + - node.type.basic_page +_core: + default_config_hash: ST8TFV1_eDhaoSpXCUhCIq8uih1sGLcDRrY0-8rO6TU +id: node.basic_page.status +field_name: status +entity_type: node +bundle: basic_page +label: Published +description: '' +required: false +translatable: true +default_value: + - + value: 0 +default_value_callback: '' +settings: + on_label: 'On' + off_label: 'Off' +field_type: boolean diff --git a/project/config/boundarycommission/config/core.base_field_override.node.news.promote.yml b/project/config/boundarycommission/config/core.base_field_override.node.news.promote.yml new file mode 100644 index 000000000..e85c9b00b --- /dev/null +++ b/project/config/boundarycommission/config/core.base_field_override.node.news.promote.yml @@ -0,0 +1,24 @@ +uuid: 39033f44-6535-40f1-98cd-190b33512d72 +langcode: en +status: true +dependencies: + config: + - node.type.news +_core: + default_config_hash: YFOOXDA1pcVKf_Ne7yI6zdqX4q_ZToJYroeAgmQRtEk +id: node.news.promote +field_name: promote +entity_type: node +bundle: news +label: 'Promoted to front page' +description: '' +required: false +translatable: true +default_value: + - + value: 0 +default_value_callback: '' +settings: + on_label: 'On' + off_label: 'Off' +field_type: boolean diff --git a/project/config/boundarycommission/config/core.base_field_override.node.news.status.yml b/project/config/boundarycommission/config/core.base_field_override.node.news.status.yml new file mode 100644 index 000000000..731cafcfa --- /dev/null +++ b/project/config/boundarycommission/config/core.base_field_override.node.news.status.yml @@ -0,0 +1,24 @@ +uuid: 2c788a3a-194b-4597-8032-bc191f3f16e2 +langcode: en +status: true +dependencies: + config: + - node.type.news +_core: + default_config_hash: 6TLpJasXIYoKxuaDwrqfE0zc4dgMLh0X27CVf0ItDb8 +id: node.news.status +field_name: status +entity_type: node +bundle: news +label: Published +description: '' +required: false +translatable: true +default_value: + - + value: 0 +default_value_callback: '' +settings: + on_label: 'On' + off_label: 'Off' +field_type: boolean diff --git a/project/config/boundarycommission/config/core.base_field_override.node.news.title.yml b/project/config/boundarycommission/config/core.base_field_override.node.news.title.yml new file mode 100644 index 000000000..c7779670a --- /dev/null +++ b/project/config/boundarycommission/config/core.base_field_override.node.news.title.yml @@ -0,0 +1,20 @@ +uuid: 3186301f-5942-4a1b-89e8-598c0c7c0b69 +langcode: en +status: true +dependencies: + config: + - node.type.news +_core: + default_config_hash: MU9Gxb3GoC55bh-2Fwx5VG4fOn4X7N77V2kul4V__gU +id: node.news.title +field_name: title +entity_type: node +bundle: news +label: 'News title' +description: '' +required: true +translatable: true +default_value: { } +default_value_callback: '' +settings: { } +field_type: string diff --git a/project/config/boundarycommission/config/core.base_field_override.node.publication.promote.yml b/project/config/boundarycommission/config/core.base_field_override.node.publication.promote.yml new file mode 100644 index 000000000..b4712bce2 --- /dev/null +++ b/project/config/boundarycommission/config/core.base_field_override.node.publication.promote.yml @@ -0,0 +1,24 @@ +uuid: 916d6a9d-3c0f-45ff-9463-79e44afcd5a6 +langcode: en +status: true +dependencies: + config: + - node.type.publication +_core: + default_config_hash: RZReXxGt6xMN6rIDO654C-FmUbPmLjNOLeddn_iFPTc +id: node.publication.promote +field_name: promote +entity_type: node +bundle: publication +label: 'Promoted to front page' +description: '' +required: false +translatable: true +default_value: + - + value: 0 +default_value_callback: '' +settings: + on_label: 'On' + off_label: 'Off' +field_type: boolean diff --git a/project/config/boundarycommission/config/core.base_field_override.node.publication.status.yml b/project/config/boundarycommission/config/core.base_field_override.node.publication.status.yml new file mode 100644 index 000000000..c1756f80b --- /dev/null +++ b/project/config/boundarycommission/config/core.base_field_override.node.publication.status.yml @@ -0,0 +1,24 @@ +uuid: cba32026-c9c4-40f4-89db-f24bde401c5b +langcode: en +status: true +dependencies: + config: + - node.type.publication +_core: + default_config_hash: 1HLk4vmREHFzbl4xVRha0kyCmXxeDsq80xH4fvdF1vI +id: node.publication.status +field_name: status +entity_type: node +bundle: publication +label: Published +description: '' +required: false +translatable: true +default_value: + - + value: 0 +default_value_callback: '' +settings: + on_label: 'On' + off_label: 'Off' +field_type: boolean diff --git a/project/config/boundarycommission/config/core.base_field_override.node.publication.title.yml b/project/config/boundarycommission/config/core.base_field_override.node.publication.title.yml new file mode 100644 index 000000000..3de662e59 --- /dev/null +++ b/project/config/boundarycommission/config/core.base_field_override.node.publication.title.yml @@ -0,0 +1,20 @@ +uuid: 6f3e4dc5-8d0d-4d91-b2a1-a2f565a4e6b1 +langcode: en +status: true +dependencies: + config: + - node.type.publication +_core: + default_config_hash: USjGaGaX9G_QemgClQu6ZkK6BZs2zqoZp9A7uzNQRKo +id: node.publication.title +field_name: title +entity_type: node +bundle: publication +label: 'Publication title' +description: '' +required: true +translatable: true +default_value: { } +default_value_callback: '' +settings: { } +field_type: string diff --git a/project/config/boundarycommission/config/core.base_field_override.node.webform.promote.yml b/project/config/boundarycommission/config/core.base_field_override.node.webform.promote.yml new file mode 100644 index 000000000..8d06e36de --- /dev/null +++ b/project/config/boundarycommission/config/core.base_field_override.node.webform.promote.yml @@ -0,0 +1,24 @@ +uuid: ffab36d7-ec89-47fb-88f5-9a2ba61b0233 +langcode: en +status: true +dependencies: + config: + - node.type.webform +_core: + default_config_hash: FvXJkxryo6J_0TQRlb5Z77Ge-sim5GHzCI1Ft3kZu-4 +id: node.webform.promote +field_name: promote +entity_type: node +bundle: webform +label: 'Promoted to front page' +description: '' +required: false +translatable: true +default_value: + - + value: 0 +default_value_callback: '' +settings: + on_label: 'On' + off_label: 'Off' +field_type: boolean diff --git a/project/config/boundarycommission/config/core.date_format.fallback.yml b/project/config/boundarycommission/config/core.date_format.fallback.yml new file mode 100644 index 000000000..bd596f966 --- /dev/null +++ b/project/config/boundarycommission/config/core.date_format.fallback.yml @@ -0,0 +1,10 @@ +uuid: 80eabe66-510a-4ee7-9227-b93bf3ca20c0 +langcode: en +status: true +dependencies: { } +_core: + default_config_hash: 7klS5IWXrwzVaPpYZFAs6wcx8U2FF1X73OfrtTsvuvE +id: fallback +label: 'Fallback date format' +locked: true +pattern: 'D, m/d/Y - H:i' diff --git a/project/config/boundarycommission/config/core.date_format.html_date.yml b/project/config/boundarycommission/config/core.date_format.html_date.yml new file mode 100644 index 000000000..689e516f7 --- /dev/null +++ b/project/config/boundarycommission/config/core.date_format.html_date.yml @@ -0,0 +1,10 @@ +uuid: 76bef3cf-dbe8-45c4-b732-2e526f435fd6 +langcode: en +status: true +dependencies: { } +_core: + default_config_hash: EOQltUQPmgc6UQ2rcJ4Xi_leCEJj5ui0TR-12duS-Tk +id: html_date +label: 'HTML Date' +locked: true +pattern: Y-m-d diff --git a/project/config/boundarycommission/config/core.date_format.html_datetime.yml b/project/config/boundarycommission/config/core.date_format.html_datetime.yml new file mode 100644 index 000000000..95b8c2b11 --- /dev/null +++ b/project/config/boundarycommission/config/core.date_format.html_datetime.yml @@ -0,0 +1,10 @@ +uuid: ce094140-be26-45f5-868d-0911c4020ccb +langcode: en +status: true +dependencies: { } +_core: + default_config_hash: jxfClwZIRXIdcvMrE--WkcZxDGUVoOIE3Sm2NRZlFuE +id: html_datetime +label: 'HTML Datetime' +locked: true +pattern: 'Y-m-d\TH:i:sO' diff --git a/project/config/boundarycommission/config/core.date_format.html_month.yml b/project/config/boundarycommission/config/core.date_format.html_month.yml new file mode 100644 index 000000000..238ae510e --- /dev/null +++ b/project/config/boundarycommission/config/core.date_format.html_month.yml @@ -0,0 +1,10 @@ +uuid: b96d0622-bde7-4f38-a405-3568cd36dcb7 +langcode: en +status: true +dependencies: { } +_core: + default_config_hash: Z7KuCUwM_WdTNvLcoltuX3_8d-s-8FZkTN6KgNwF0eM +id: html_month +label: 'HTML Month' +locked: true +pattern: Y-m diff --git a/project/config/boundarycommission/config/core.date_format.html_time.yml b/project/config/boundarycommission/config/core.date_format.html_time.yml new file mode 100644 index 000000000..2f1a7dd80 --- /dev/null +++ b/project/config/boundarycommission/config/core.date_format.html_time.yml @@ -0,0 +1,10 @@ +uuid: a620e8d7-e87d-4596-b110-6bbe07914018 +langcode: en +status: true +dependencies: { } +_core: + default_config_hash: M7yqicYkU36hRy5p9drAaGBBihhUD1OyujFrAaQ93ZE +id: html_time +label: 'HTML Time' +locked: true +pattern: 'H:i:s' diff --git a/project/config/boundarycommission/config/core.date_format.html_week.yml b/project/config/boundarycommission/config/core.date_format.html_week.yml new file mode 100644 index 000000000..b9602e882 --- /dev/null +++ b/project/config/boundarycommission/config/core.date_format.html_week.yml @@ -0,0 +1,10 @@ +uuid: c5e1e889-bc53-4fdc-82a2-0cda71eea718 +langcode: en +status: true +dependencies: { } +_core: + default_config_hash: wKD4WsoV_wFgv2vgI4mcAAFSIzrye17ykzdwrnApkfY +id: html_week +label: 'HTML Week' +locked: true +pattern: Y-\WW diff --git a/project/config/boundarycommission/config/core.date_format.html_year.yml b/project/config/boundarycommission/config/core.date_format.html_year.yml new file mode 100644 index 000000000..c5e16c383 --- /dev/null +++ b/project/config/boundarycommission/config/core.date_format.html_year.yml @@ -0,0 +1,10 @@ +uuid: a86ed5fa-9aef-47f7-bf35-037f33f1c896 +langcode: en +status: true +dependencies: { } +_core: + default_config_hash: OjekiQuX9RbVQ2_8jOHBL94RgYLePqX7wpfNGgcQzrk +id: html_year +label: 'HTML Year' +locked: true +pattern: 'Y' diff --git a/project/config/boundarycommission/config/core.date_format.html_yearless_date.yml b/project/config/boundarycommission/config/core.date_format.html_yearless_date.yml new file mode 100644 index 000000000..d4552796f --- /dev/null +++ b/project/config/boundarycommission/config/core.date_format.html_yearless_date.yml @@ -0,0 +1,10 @@ +uuid: f4c344d3-5351-4e04-a12c-61125f70ae78 +langcode: en +status: true +dependencies: { } +_core: + default_config_hash: 5VpawMrKPEPCkoO4YpPa0TDFO2dgiIHfTziJtwlmUxc +id: html_yearless_date +label: 'HTML Yearless date' +locked: true +pattern: m-d diff --git a/project/config/boundarycommission/config/core.date_format.long.yml b/project/config/boundarycommission/config/core.date_format.long.yml new file mode 100644 index 000000000..c443fa5a5 --- /dev/null +++ b/project/config/boundarycommission/config/core.date_format.long.yml @@ -0,0 +1,10 @@ +uuid: bcad5b73-de67-41d8-b5d5-9b27aabf737e +langcode: en +status: true +dependencies: { } +_core: + default_config_hash: IVWwO2Y8HMqFIXk8p3qL4G64We5zyrzquZlYsNJh-qw +id: long +label: 'Default long date' +locked: false +pattern: 'j F, Y - H:i' diff --git a/project/config/boundarycommission/config/core.date_format.medium.yml b/project/config/boundarycommission/config/core.date_format.medium.yml new file mode 100644 index 000000000..ec33660f8 --- /dev/null +++ b/project/config/boundarycommission/config/core.date_format.medium.yml @@ -0,0 +1,10 @@ +uuid: 883869f7-5ea9-44d4-9e16-ee585e2179cf +langcode: en +status: true +dependencies: { } +_core: + default_config_hash: 2WSttLLDgv2MtXe1t7b4M2iUf9IaRD88VyVz5P5OinE +id: medium +label: 'Default medium date' +locked: false +pattern: 'D, d/m/Y - H:i' diff --git a/project/config/boundarycommission/config/core.date_format.short.yml b/project/config/boundarycommission/config/core.date_format.short.yml new file mode 100644 index 000000000..21c7ec9ed --- /dev/null +++ b/project/config/boundarycommission/config/core.date_format.short.yml @@ -0,0 +1,10 @@ +uuid: 5b6f7c0d-f63d-4395-bd2d-a0c1dfeb98d9 +langcode: en +status: true +dependencies: { } +_core: + default_config_hash: C1UvSU4BIh9EE2KOGMDRrIlIq28SBBsHRB6aX5ypi7g +id: short +label: 'Default short date' +locked: false +pattern: 'd/m/Y - H:i' diff --git a/project/config/boundarycommission/config/core.date_format.unity_date.yml b/project/config/boundarycommission/config/core.date_format.unity_date.yml new file mode 100644 index 000000000..7feefd285 --- /dev/null +++ b/project/config/boundarycommission/config/core.date_format.unity_date.yml @@ -0,0 +1,10 @@ +uuid: ddc31e53-f6ed-4f2b-b98f-6de2e711f2fe +langcode: en +status: true +dependencies: { } +_core: + default_config_hash: n5SoPUrV3_e4spmi22hPxqNj7GV0WZ1Of-t01shiwUU +id: unity_date +label: 'Unity date' +locked: false +pattern: 'd F Y' diff --git a/project/config/boundarycommission/config/core.entity_form_display.block_content.basic_block.default.yml b/project/config/boundarycommission/config/core.entity_form_display.block_content.basic_block.default.yml new file mode 100644 index 000000000..77c87b124 --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_form_display.block_content.basic_block.default.yml @@ -0,0 +1,42 @@ +uuid: b741a95f-10b9-4f71-a22d-48b09fe906c1 +langcode: en +status: true +dependencies: + config: + - block_content.type.basic_block + - field.field.block_content.basic_block.body + module: + - text +_core: + default_config_hash: GD880flQeJoPpR_zxH3Frk7HebQehHfCzZGG_Tc0A2Y +id: block_content.basic_block.default +targetEntityType: block_content +bundle: basic_block +mode: default +content: + body: + type: text_textarea_with_summary + weight: 1 + settings: + rows: 9 + summary_rows: 3 + placeholder: '' + show_summary: false + third_party_settings: { } + region: content + info: + type: string_textfield + weight: 0 + region: content + settings: + size: 60 + placeholder: '' + third_party_settings: { } + langcode: + type: language_select + weight: 2 + region: content + settings: + include_locked: true + third_party_settings: { } +hidden: { } diff --git a/project/config/boundarycommission/config/core.entity_form_display.block_content.map.default.yml b/project/config/boundarycommission/config/core.entity_form_display.block_content.map.default.yml new file mode 100644 index 000000000..a100482b2 --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_form_display.block_content.map.default.yml @@ -0,0 +1,67 @@ +uuid: 7388c76d-5876-462d-aeb5-d5d7d0f188f6 +langcode: en +status: true +dependencies: + config: + - block_content.type.map + - field.field.block_content.map.field_map + module: + - geolocation_google_maps +_core: + default_config_hash: j6e2YAuifJODJHOh4oaxJd74SONb2u10TeMkZxePkMM +id: block_content.map.default +targetEntityType: block_content +bundle: map +mode: default +content: + field_map: + type: geolocation_googlegeocoder + weight: 27 + region: content + settings: + auto_client_location: '' + auto_client_location_marker: '' + allow_override_map_settings: 0 + hide_textfield_form: false + centre: + fit_bounds: + enable: true + google_map_settings: + map_features: + marker_infowindow: + enabled: true + control_locate: + enabled: true + control_zoom: + enabled: true + control_maptype: + enabled: true + control_geocoder: + weight: -100 + enabled: true + control_recenter: + enabled: true + type: ROADMAP + zoom: 10 + minZoom: 0 + maxZoom: 20 + height: 400px + width: 100% + gestureHandling: auto + third_party_settings: { } + info: + type: string_textfield + weight: -5 + region: content + settings: + size: 60 + placeholder: '' + third_party_settings: { } + langcode: + type: language_select + weight: 2 + region: content + settings: + include_locked: true + third_party_settings: { } +hidden: { } diff --git a/project/config/boundarycommission/config/core.entity_form_display.media.audio.default.yml b/project/config/boundarycommission/config/core.entity_form_display.media.audio.default.yml new file mode 100644 index 000000000..f39c09ba1 --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_form_display.media.audio.default.yml @@ -0,0 +1,69 @@ +uuid: ecec4e43-1efc-4559-92d7-abd98aacdbdc +langcode: en +status: true +dependencies: + config: + - field.field.media.audio.field_media_audio_file + - media.type.audio + module: + - file + - path +_core: + default_config_hash: NHLFZuY0ePU1dzAsaSKAKDn8vHxVDuefg29vrHYojoE +id: media.audio.default +targetEntityType: media +bundle: audio +mode: default +content: + created: + type: datetime_timestamp + weight: 4 + region: content + settings: { } + third_party_settings: { } + field_media_audio_file: + weight: 1 + settings: + progress_indicator: throbber + third_party_settings: { } + type: file_generic + region: content + langcode: + type: language_select + weight: 2 + region: content + settings: + include_locked: true + third_party_settings: { } + name: + type: string_textfield + weight: 0 + region: content + settings: + size: 60 + placeholder: '' + third_party_settings: { } + path: + type: path + weight: 5 + region: content + settings: { } + third_party_settings: { } + status: + type: boolean_checkbox + settings: + display_label: true + weight: 6 + region: content + third_party_settings: { } + uid: + type: entity_reference_autocomplete + weight: 3 + settings: + match_operator: CONTAINS + size: 60 + placeholder: '' + match_limit: 10 + region: content + third_party_settings: { } +hidden: { } diff --git a/project/config/boundarycommission/config/core.entity_form_display.media.audio.media_library.yml b/project/config/boundarycommission/config/core.entity_form_display.media.audio.media_library.yml new file mode 100644 index 000000000..2eed69811 --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_form_display.media.audio.media_library.yml @@ -0,0 +1,30 @@ +uuid: 1dce5d72-875b-4e4c-a5ea-a338a009238e +langcode: en +status: true +dependencies: + config: + - core.entity_form_mode.media.media_library + - field.field.media.audio.field_media_audio_file + - media.type.audio +_core: + default_config_hash: wptdBDEYP0HJlQK2264EhoYVWmjIVc1sHzKnC4p9Zz8 +id: media.audio.media_library +targetEntityType: media +bundle: audio +mode: media_library +content: + name: + type: string_textfield + weight: 0 + region: content + settings: + size: 60 + placeholder: '' + third_party_settings: { } +hidden: + created: true + field_media_audio_file: true + langcode: true + path: true + status: true + uid: true diff --git a/project/config/boundarycommission/config/core.entity_form_display.media.document.default.yml b/project/config/boundarycommission/config/core.entity_form_display.media.document.default.yml new file mode 100644 index 000000000..8d1d4a665 --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_form_display.media.document.default.yml @@ -0,0 +1,69 @@ +uuid: fceb2807-ff3b-4c6e-ba30-d3e422d6d254 +langcode: en +status: true +dependencies: + config: + - field.field.media.document.field_media_file + - media.type.document + module: + - file + - path +_core: + default_config_hash: 334GzowYbhWsuFG0vdQTiN5cn8NomyeUpoTLrAfAZ7A +id: media.document.default +targetEntityType: media +bundle: document +mode: default +content: + created: + type: datetime_timestamp + weight: 10 + region: content + settings: { } + third_party_settings: { } + field_media_file: + weight: 0 + settings: + progress_indicator: throbber + third_party_settings: { } + type: file_generic + region: content + langcode: + type: language_select + weight: 2 + region: content + settings: + include_locked: true + third_party_settings: { } + name: + type: string_textfield + weight: -5 + region: content + settings: + size: 60 + placeholder: '' + third_party_settings: { } + path: + type: path + weight: 30 + region: content + settings: { } + third_party_settings: { } + status: + type: boolean_checkbox + settings: + display_label: true + weight: 100 + region: content + third_party_settings: { } + uid: + type: entity_reference_autocomplete + weight: 5 + settings: + match_operator: CONTAINS + size: 60 + placeholder: '' + match_limit: 10 + region: content + third_party_settings: { } +hidden: { } diff --git a/project/config/boundarycommission/config/core.entity_form_display.media.document.media_library.yml b/project/config/boundarycommission/config/core.entity_form_display.media.document.media_library.yml new file mode 100644 index 000000000..c24630b1f --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_form_display.media.document.media_library.yml @@ -0,0 +1,30 @@ +uuid: a9120b9d-0840-4062-8c78-b9d7c26d5303 +langcode: en +status: true +dependencies: + config: + - core.entity_form_mode.media.media_library + - field.field.media.document.field_media_file + - media.type.document +_core: + default_config_hash: Eot-dNu4hcpMFlIxw3sQ7tErOMKA0PrkXBeZb5249MA +id: media.document.media_library +targetEntityType: media +bundle: document +mode: media_library +content: + name: + type: string_textfield + settings: + size: 60 + placeholder: '' + weight: 0 + third_party_settings: { } + region: content +hidden: + created: true + field_media_file: true + langcode: true + path: true + status: true + uid: true diff --git a/project/config/boundarycommission/config/core.entity_form_display.media.file.default.yml b/project/config/boundarycommission/config/core.entity_form_display.media.file.default.yml new file mode 100644 index 000000000..c4489628c --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_form_display.media.file.default.yml @@ -0,0 +1,69 @@ +uuid: 09868caa-cd51-454b-8aee-a781528f7a9f +langcode: en +status: true +dependencies: + config: + - field.field.media.file.field_media_file + - media.type.file + module: + - file + - path +_core: + default_config_hash: dKVeNywwHJA3SH1n20LPdCo9v9tsQCMoEcFK-FkaPPo +id: media.file.default +targetEntityType: media +bundle: file +mode: default +content: + created: + type: datetime_timestamp + weight: 4 + region: content + settings: { } + third_party_settings: { } + field_media_file: + settings: + progress_indicator: throbber + third_party_settings: { } + type: file_generic + weight: 1 + region: content + langcode: + type: language_select + weight: 2 + region: content + settings: + include_locked: true + third_party_settings: { } + name: + type: string_textfield + weight: 0 + region: content + settings: + size: 60 + placeholder: '' + third_party_settings: { } + path: + type: path + weight: 5 + region: content + settings: { } + third_party_settings: { } + status: + type: boolean_checkbox + settings: + display_label: true + weight: 6 + region: content + third_party_settings: { } + uid: + type: entity_reference_autocomplete + weight: 3 + settings: + match_operator: CONTAINS + size: 60 + placeholder: '' + match_limit: 10 + region: content + third_party_settings: { } +hidden: { } diff --git a/project/config/boundarycommission/config/core.entity_form_display.media.file.media_library.yml b/project/config/boundarycommission/config/core.entity_form_display.media.file.media_library.yml new file mode 100644 index 000000000..102007869 --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_form_display.media.file.media_library.yml @@ -0,0 +1,30 @@ +uuid: 58a80f16-ba4d-42cf-88a1-1bd8ecc1c8ed +langcode: en +status: true +dependencies: + config: + - core.entity_form_mode.media.media_library + - field.field.media.file.field_media_file + - media.type.file +_core: + default_config_hash: JTto574eIgaEDZ_s7GVh0ipF-RLDcBmqHhop7e-VzEo +id: media.file.media_library +targetEntityType: media +bundle: file +mode: media_library +content: + name: + type: string_textfield + weight: 0 + region: content + settings: + size: 60 + placeholder: '' + third_party_settings: { } +hidden: + created: true + field_media_file: true + langcode: true + path: true + status: true + uid: true diff --git a/project/config/boundarycommission/config/core.entity_form_display.media.image.default.yml b/project/config/boundarycommission/config/core.entity_form_display.media.image.default.yml new file mode 100644 index 000000000..d917e0902 --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_form_display.media.image.default.yml @@ -0,0 +1,80 @@ +uuid: 8655ab93-26b7-4bcc-a4c7-85960193c640 +langcode: en +status: true +dependencies: + config: + - field.field.media.image.field_caption + - field.field.media.image.field_media_image + - image.style.thumbnail + - media.type.image + module: + - image + - path +_core: + default_config_hash: q1ZX2xUGLtTUisL_xNznpLOf2c1YgUx6d2F7HfaqU4w +id: media.image.default +targetEntityType: media +bundle: image +mode: default +content: + created: + type: datetime_timestamp + weight: 4 + region: content + settings: { } + third_party_settings: { } + field_caption: + weight: 7 + settings: + size: 60 + placeholder: '' + third_party_settings: { } + type: string_textfield + region: content + field_media_image: + settings: + progress_indicator: throbber + preview_image_style: thumbnail + third_party_settings: { } + type: image_image + weight: 1 + region: content + langcode: + type: language_select + weight: 2 + region: content + settings: + include_locked: true + third_party_settings: { } + name: + type: string_textfield + weight: 0 + region: content + settings: + size: 60 + placeholder: '' + third_party_settings: { } + path: + type: path + weight: 5 + region: content + settings: { } + third_party_settings: { } + status: + type: boolean_checkbox + settings: + display_label: true + weight: 6 + region: content + third_party_settings: { } + uid: + type: entity_reference_autocomplete + weight: 3 + settings: + match_operator: CONTAINS + size: 60 + placeholder: '' + match_limit: 10 + region: content + third_party_settings: { } +hidden: { } diff --git a/project/config/boundarycommission/config/core.entity_form_display.media.image.media_library.yml b/project/config/boundarycommission/config/core.entity_form_display.media.image.media_library.yml new file mode 100644 index 000000000..59c05579a --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_form_display.media.image.media_library.yml @@ -0,0 +1,49 @@ +uuid: 0445a36c-7aed-45ad-83dc-66621485a30e +langcode: en +status: true +dependencies: + config: + - core.entity_form_mode.media.media_library + - field.field.media.image.field_caption + - field.field.media.image.field_media_image + - image.style.thumbnail + - media.type.image + module: + - image +_core: + default_config_hash: fs-w7OTNtuTEifBVAKHPCIuqrmxIQOoMZJ80nJ49mBk +id: media.image.media_library +targetEntityType: media +bundle: image +mode: media_library +content: + field_caption: + type: string_textfield + weight: 1 + region: content + settings: + size: 60 + placeholder: '' + third_party_settings: { } + field_media_image: + weight: 0 + settings: + progress_indicator: throbber + preview_image_style: thumbnail + third_party_settings: { } + type: image_image + region: content + name: + type: string_textfield + weight: 2 + region: content + settings: + size: 60 + placeholder: '' + third_party_settings: { } +hidden: + created: true + langcode: true + path: true + status: true + uid: true diff --git a/project/config/boundarycommission/config/core.entity_form_display.media.remote_video.default.yml b/project/config/boundarycommission/config/core.entity_form_display.media.remote_video.default.yml new file mode 100644 index 000000000..7fffdeeed --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_form_display.media.remote_video.default.yml @@ -0,0 +1,70 @@ +uuid: 187d14a5-87ce-471b-a7d4-f21c8783d7e5 +langcode: en +status: true +dependencies: + config: + - field.field.media.remote_video.field_media_oembed_video + - media.type.remote_video + module: + - media + - path +_core: + default_config_hash: S_X8B5zavbi_F_PrDaNt-pllmj1XIk33JtGZKamibUY +id: media.remote_video.default +targetEntityType: media +bundle: remote_video +mode: default +content: + created: + type: datetime_timestamp + weight: 4 + region: content + settings: { } + third_party_settings: { } + field_media_oembed_video: + type: oembed_textfield + weight: 1 + settings: + size: 60 + placeholder: '' + third_party_settings: { } + region: content + langcode: + type: language_select + weight: 2 + region: content + settings: + include_locked: true + third_party_settings: { } + name: + type: string_textfield + weight: 0 + region: content + settings: + size: 60 + placeholder: '' + third_party_settings: { } + path: + type: path + weight: 5 + region: content + settings: { } + third_party_settings: { } + status: + type: boolean_checkbox + settings: + display_label: true + weight: 6 + region: content + third_party_settings: { } + uid: + type: entity_reference_autocomplete + weight: 3 + settings: + match_operator: CONTAINS + size: 60 + placeholder: '' + match_limit: 10 + region: content + third_party_settings: { } +hidden: { } diff --git a/project/config/boundarycommission/config/core.entity_form_display.media.remote_video.media_library.yml b/project/config/boundarycommission/config/core.entity_form_display.media.remote_video.media_library.yml new file mode 100644 index 000000000..247a051ea --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_form_display.media.remote_video.media_library.yml @@ -0,0 +1,30 @@ +uuid: 6e59120f-6821-436d-9c98-85b746b97f70 +langcode: en +status: true +dependencies: + config: + - core.entity_form_mode.media.media_library + - field.field.media.remote_video.field_media_oembed_video + - media.type.remote_video +_core: + default_config_hash: Ytx6WfIDxRd2ZrtX2sN2ZyJhBxsJPuN85Zk5fCqXReo +id: media.remote_video.media_library +targetEntityType: media +bundle: remote_video +mode: media_library +content: + name: + type: string_textfield + settings: + size: 60 + placeholder: '' + weight: 0 + third_party_settings: { } + region: content +hidden: + created: true + field_media_oembed_video: true + langcode: true + path: true + status: true + uid: true diff --git a/project/config/boundarycommission/config/core.entity_form_display.node.basic_page.default.yml b/project/config/boundarycommission/config/core.entity_form_display.node.basic_page.default.yml new file mode 100644 index 000000000..5d35c2064 --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_form_display.node.basic_page.default.yml @@ -0,0 +1,119 @@ +uuid: 6f54e5bc-192e-4ee6-a69b-56de9b0d91ae +langcode: en +status: true +dependencies: + config: + - field.field.node.basic_page.body + - field.field.node.basic_page.field_meta_tags + - field.field.node.basic_page.field_next_audit_due + - node.type.basic_page + - workflows.workflow.nics_editorial_workflow + module: + - content_moderation + - datetime + - metatag + - path + - text +_core: + default_config_hash: 3nKdxGbLaRFcUfWENur-SrGcJcQmpaJxvq-SgSvv1_w +id: node.basic_page.default +targetEntityType: node +bundle: basic_page +mode: default +content: + body: + type: text_textarea_with_summary + weight: 121 + settings: + rows: 9 + summary_rows: 3 + placeholder: '' + third_party_settings: { } + region: content + created: + type: datetime_timestamp + weight: 10 + region: content + settings: { } + third_party_settings: { } + field_meta_tags: + weight: 122 + settings: + sidebar: true + third_party_settings: { } + type: metatag_firehose + region: content + field_next_audit_due: + weight: 123 + settings: { } + third_party_settings: { } + type: datetime_default + region: content + flag: + weight: 10 + settings: { } + third_party_settings: { } + region: content + langcode: + type: language_select + weight: 2 + region: content + settings: + include_locked: true + third_party_settings: { } + moderation_state: + type: moderation_state_default + weight: 100 + settings: { } + region: content + third_party_settings: { } + path: + type: path + weight: 30 + region: content + settings: { } + third_party_settings: { } + promote: + type: boolean_checkbox + settings: + display_label: true + weight: 15 + region: content + third_party_settings: { } + status: + type: boolean_checkbox + settings: + display_label: true + weight: 120 + region: content + third_party_settings: { } + sticky: + type: boolean_checkbox + settings: + display_label: true + weight: 16 + region: content + third_party_settings: { } + title: + type: string_textfield + weight: -5 + region: content + settings: + size: 60 + placeholder: '' + third_party_settings: { } + uid: + type: entity_reference_autocomplete + weight: 5 + settings: + match_operator: CONTAINS + size: 60 + placeholder: '' + region: content + third_party_settings: { } + url_redirects: + weight: 50 + settings: { } + third_party_settings: { } + region: content +hidden: { } diff --git a/project/config/boundarycommission/config/core.entity_form_display.node.consultation_response.default.yml b/project/config/boundarycommission/config/core.entity_form_display.node.consultation_response.default.yml new file mode 100644 index 000000000..7c3b61c10 --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_form_display.node.consultation_response.default.yml @@ -0,0 +1,117 @@ +uuid: 1f40b4b8-dbbe-4d02-a348-0133f6106ec9 +langcode: en +status: true +dependencies: + config: + - field.field.node.consultation_response.field_attachment + - field.field.node.consultation_response.field_consultation_stage + - field.field.node.consultation_response.field_meta_tags + - field.field.node.consultation_response.field_response_type + - node.type.consultation_response + - workflows.workflow.nics_editorial_workflow + module: + - content_moderation + - media_library + - metatag + - path +id: node.consultation_response.default +targetEntityType: node +bundle: consultation_response +mode: default +content: + created: + type: datetime_timestamp + weight: 6 + region: content + settings: { } + third_party_settings: { } + field_attachment: + type: media_library_widget + weight: 3 + region: content + settings: + media_types: { } + third_party_settings: { } + field_consultation_stage: + type: options_select + weight: 1 + region: content + settings: { } + third_party_settings: { } + field_meta_tags: + type: metatag_firehose + weight: 26 + region: content + settings: + sidebar: true + third_party_settings: { } + field_response_type: + type: options_select + weight: 2 + region: content + settings: { } + third_party_settings: { } + langcode: + type: language_select + weight: 4 + region: content + settings: + include_locked: true + third_party_settings: { } + moderation_state: + type: moderation_state_default + weight: 11 + region: content + settings: { } + third_party_settings: { } + path: + type: path + weight: 9 + region: content + settings: { } + third_party_settings: { } + promote: + type: boolean_checkbox + weight: 7 + region: content + settings: + display_label: true + third_party_settings: { } + status: + type: boolean_checkbox + weight: 12 + region: content + settings: + display_label: true + third_party_settings: { } + sticky: + type: boolean_checkbox + weight: 8 + region: content + settings: + display_label: true + third_party_settings: { } + title: + type: string_textfield + weight: 0 + region: content + settings: + size: 60 + placeholder: '' + third_party_settings: { } + uid: + type: entity_reference_autocomplete + weight: 5 + region: content + settings: + match_operator: CONTAINS + match_limit: 10 + size: 60 + placeholder: '' + third_party_settings: { } + url_redirects: + weight: 10 + region: content + settings: { } + third_party_settings: { } +hidden: { } diff --git a/project/config/boundarycommission/config/core.entity_form_display.node.featured_content.default.yml b/project/config/boundarycommission/config/core.entity_form_display.node.featured_content.default.yml new file mode 100644 index 000000000..024f99129 --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_form_display.node.featured_content.default.yml @@ -0,0 +1,123 @@ +uuid: 97456bc4-cb26-471f-9475-f114a6f49be6 +langcode: en +status: true +dependencies: + config: + - field.field.node.featured_content.field_link + - field.field.node.featured_content.field_meta_tags + - field.field.node.featured_content.field_photo + - field.field.node.featured_content.field_tagline + - node.type.featured_content + - workflows.workflow.nics_editorial_workflow + module: + - content_moderation + - link + - media_library + - metatag + - path + - text +id: node.featured_content.default +targetEntityType: node +bundle: featured_content +mode: default +content: + created: + type: datetime_timestamp + weight: 6 + region: content + settings: { } + third_party_settings: { } + field_link: + type: link_default + weight: 3 + region: content + settings: + placeholder_url: '' + placeholder_title: '' + third_party_settings: { } + field_meta_tags: + type: metatag_firehose + weight: 26 + region: content + settings: + sidebar: true + third_party_settings: { } + field_photo: + type: media_library_widget + weight: 1 + region: content + settings: + media_types: { } + third_party_settings: { } + field_tagline: + type: text_textfield + weight: 2 + region: content + settings: + size: 60 + placeholder: '' + third_party_settings: { } + langcode: + type: language_select + weight: 4 + region: content + settings: + include_locked: true + third_party_settings: { } + moderation_state: + type: moderation_state_default + weight: 11 + region: content + settings: { } + third_party_settings: { } + path: + type: path + weight: 9 + region: content + settings: { } + third_party_settings: { } + promote: + type: boolean_checkbox + weight: 7 + region: content + settings: + display_label: true + third_party_settings: { } + status: + type: boolean_checkbox + weight: 12 + region: content + settings: + display_label: true + third_party_settings: { } + sticky: + type: boolean_checkbox + weight: 8 + region: content + settings: + display_label: true + third_party_settings: { } + title: + type: string_textfield + weight: 0 + region: content + settings: + size: 60 + placeholder: '' + third_party_settings: { } + uid: + type: entity_reference_autocomplete + weight: 5 + region: content + settings: + match_operator: CONTAINS + match_limit: 10 + size: 60 + placeholder: '' + third_party_settings: { } + url_redirects: + weight: 10 + region: content + settings: { } + third_party_settings: { } +hidden: { } diff --git a/project/config/boundarycommission/config/core.entity_form_display.node.news.default.yml b/project/config/boundarycommission/config/core.entity_form_display.node.news.default.yml new file mode 100644 index 000000000..20741a041 --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_form_display.node.news.default.yml @@ -0,0 +1,150 @@ +uuid: dbb240e7-4680-4e25-b226-ca2b1734a1ee +langcode: en +status: true +dependencies: + config: + - field.field.node.news.body + - field.field.node.news.field_archive + - field.field.node.news.field_meta_tags + - field.field.node.news.field_photo + - field.field.node.news.field_published_date + - field.field.node.news.field_teaser + - node.type.news + - workflows.workflow.nics_editorial_workflow + module: + - content_moderation + - datetime + - media_library + - media_library_edit + - metatag + - path + - text +_core: + default_config_hash: OlTwzkcvXeWJ4WGCY1bzVd_jsBob_uikUQvODADN1mw +id: node.news.default +targetEntityType: node +bundle: news +mode: default +content: + body: + type: text_textarea_with_summary + weight: 5 + region: content + settings: + rows: 9 + summary_rows: 3 + placeholder: '' + show_summary: false + third_party_settings: { } + created: + type: datetime_timestamp + weight: 6 + region: content + settings: { } + third_party_settings: { } + field_archive: + type: boolean_checkbox + weight: 1 + region: content + settings: + display_label: true + third_party_settings: { } + field_meta_tags: + type: metatag_firehose + weight: 15 + region: content + settings: + sidebar: true + third_party_settings: { } + field_photo: + type: media_library_widget + weight: 4 + region: content + settings: + media_types: { } + third_party_settings: + media_library_edit: + show_edit: '1' + field_published_date: + type: datetime_default + weight: 2 + region: content + settings: { } + third_party_settings: { } + field_teaser: + type: string_textfield + weight: 3 + region: content + settings: + size: 60 + placeholder: '' + third_party_settings: { } + flag: + weight: 10 + region: content + settings: { } + third_party_settings: { } + langcode: + type: language_select + weight: 7 + region: content + settings: + include_locked: true + third_party_settings: { } + moderation_state: + type: moderation_state_default + weight: 13 + region: content + settings: { } + third_party_settings: { } + path: + type: path + weight: 11 + region: content + settings: { } + third_party_settings: { } + promote: + type: boolean_checkbox + weight: 9 + region: content + settings: + display_label: true + third_party_settings: { } + status: + type: boolean_checkbox + weight: 14 + region: content + settings: + display_label: true + third_party_settings: { } + sticky: + type: boolean_checkbox + weight: 10 + region: content + settings: + display_label: true + third_party_settings: { } + title: + type: string_textfield + weight: 0 + region: content + settings: + size: 60 + placeholder: '' + third_party_settings: { } + uid: + type: entity_reference_autocomplete + weight: 8 + region: content + settings: + match_operator: CONTAINS + match_limit: 10 + size: 60 + placeholder: '' + third_party_settings: { } + url_redirects: + weight: 12 + region: content + settings: { } + third_party_settings: { } +hidden: { } diff --git a/project/config/boundarycommission/config/core.entity_form_display.node.publication.default.yml b/project/config/boundarycommission/config/core.entity_form_display.node.publication.default.yml new file mode 100644 index 000000000..97ec3d4d8 --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_form_display.node.publication.default.yml @@ -0,0 +1,148 @@ +uuid: 02d08785-5c6d-4b49-83dd-46842a881530 +langcode: en +status: true +dependencies: + config: + - field.field.node.publication.body + - field.field.node.publication.field_archive + - field.field.node.publication.field_attachment + - field.field.node.publication.field_meta_tags + - field.field.node.publication.field_publication_type + - field.field.node.publication.field_published_date + - node.type.publication + - workflows.workflow.nics_editorial_workflow + module: + - content_moderation + - datetime + - media_library + - media_library_edit + - metatag + - path + - text +_core: + default_config_hash: 8EG7CL4bkYhCFJykpOT74o26u9Kqd5i5boJpPLhtZWc +id: node.publication.default +targetEntityType: node +bundle: publication +mode: default +content: + body: + type: text_textarea_with_summary + weight: 4 + region: content + settings: + rows: 9 + summary_rows: 3 + placeholder: '' + show_summary: false + third_party_settings: { } + created: + type: datetime_timestamp + weight: 8 + region: content + settings: { } + third_party_settings: { } + field_archive: + type: boolean_checkbox + weight: 1 + region: content + settings: + display_label: true + third_party_settings: { } + field_attachment: + type: media_library_widget + weight: 5 + region: content + settings: + media_types: { } + third_party_settings: + media_library_edit: + show_edit: '1' + field_meta_tags: + type: metatag_firehose + weight: 15 + region: content + settings: + sidebar: true + third_party_settings: { } + field_publication_type: + type: options_select + weight: 3 + region: content + settings: { } + third_party_settings: { } + field_published_date: + type: datetime_default + weight: 2 + region: content + settings: { } + third_party_settings: { } + flag: + weight: 10 + region: content + settings: { } + third_party_settings: { } + langcode: + type: language_select + weight: 6 + region: content + settings: + include_locked: true + third_party_settings: { } + moderation_state: + type: moderation_state_default + weight: 13 + region: content + settings: { } + third_party_settings: { } + path: + type: path + weight: 11 + region: content + settings: { } + third_party_settings: { } + promote: + type: boolean_checkbox + weight: 9 + region: content + settings: + display_label: true + third_party_settings: { } + status: + type: boolean_checkbox + weight: 14 + region: content + settings: + display_label: true + third_party_settings: { } + sticky: + type: boolean_checkbox + weight: 10 + region: content + settings: + display_label: true + third_party_settings: { } + title: + type: string_textfield + weight: 0 + region: content + settings: + size: 60 + placeholder: '' + third_party_settings: { } + uid: + type: entity_reference_autocomplete + weight: 7 + region: content + settings: + match_operator: CONTAINS + match_limit: 10 + size: 60 + placeholder: '' + third_party_settings: { } + url_redirects: + weight: 12 + region: content + settings: { } + third_party_settings: { } +hidden: { } diff --git a/project/config/boundarycommission/config/core.entity_form_display.node.respresentations.default.yml b/project/config/boundarycommission/config/core.entity_form_display.node.respresentations.default.yml new file mode 100644 index 000000000..6c9ff4dee --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_form_display.node.respresentations.default.yml @@ -0,0 +1,122 @@ +uuid: a719c141-3515-4cb1-9ee9-8a3d7d550963 +langcode: en +status: true +dependencies: + config: + - field.field.node.respresentations.field_attachment + - field.field.node.respresentations.field_meta_tags + - field.field.node.respresentations.field_representation_stage + - field.field.node.respresentations.field_response_type + - node.type.respresentations + - workflows.workflow.nics_editorial_workflow + module: + - content_moderation + - media_library + - media_library_edit + - metatag + - path +id: node.respresentations.default +targetEntityType: node +bundle: respresentations +mode: default +content: + created: + type: datetime_timestamp + weight: 3 + region: content + settings: { } + third_party_settings: { } + field_attachment: + type: media_library_widget + weight: 12 + region: content + settings: + media_types: + - document + - file + third_party_settings: + media_library_edit: + show_edit: '1' + field_meta_tags: + type: metatag_firehose + weight: 13 + region: content + settings: + sidebar: true + third_party_settings: { } + field_representation_stage: + type: options_select + weight: 10 + region: content + settings: { } + third_party_settings: { } + field_response_type: + type: options_select + weight: 11 + region: content + settings: { } + third_party_settings: { } + langcode: + type: language_select + weight: 1 + region: content + settings: + include_locked: true + third_party_settings: { } + moderation_state: + type: moderation_state_default + weight: 8 + region: content + settings: { } + third_party_settings: { } + path: + type: path + weight: 6 + region: content + settings: { } + third_party_settings: { } + promote: + type: boolean_checkbox + weight: 4 + region: content + settings: + display_label: true + third_party_settings: { } + status: + type: boolean_checkbox + weight: 9 + region: content + settings: + display_label: true + third_party_settings: { } + sticky: + type: boolean_checkbox + weight: 5 + region: content + settings: + display_label: true + third_party_settings: { } + title: + type: string_textfield + weight: 0 + region: content + settings: + size: 60 + placeholder: '' + third_party_settings: { } + uid: + type: entity_reference_autocomplete + weight: 2 + region: content + settings: + match_operator: CONTAINS + match_limit: 10 + size: 60 + placeholder: '' + third_party_settings: { } + url_redirects: + weight: 7 + region: content + settings: { } + third_party_settings: { } +hidden: { } diff --git a/project/config/boundarycommission/config/core.entity_form_display.node.webform.default.yml b/project/config/boundarycommission/config/core.entity_form_display.node.webform.default.yml new file mode 100644 index 000000000..9aa60867b --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_form_display.node.webform.default.yml @@ -0,0 +1,102 @@ +uuid: 37c8b990-8e33-4ee5-967b-de2d0ab3bce3 +langcode: en +status: true +dependencies: + config: + - field.field.node.webform.body + - field.field.node.webform.webform + - node.type.webform + module: + - path + - text + - webform +_core: + default_config_hash: A3evv2pt6d-bKCPcgjXA5VGTemXWOxG3lSXvWiRWcck +id: node.webform.default +targetEntityType: node +bundle: webform +mode: default +content: + body: + type: text_textarea_with_summary + weight: 0 + settings: + rows: 9 + summary_rows: 3 + placeholder: '' + third_party_settings: { } + region: content + created: + type: datetime_timestamp + weight: 10 + settings: { } + third_party_settings: { } + region: content + flag: + weight: 10 + settings: { } + third_party_settings: { } + region: content + langcode: + type: language_select + weight: 2 + region: content + settings: + include_locked: true + third_party_settings: { } + path: + type: path + weight: 30 + settings: { } + third_party_settings: { } + region: content + promote: + type: boolean_checkbox + settings: + display_label: true + weight: 15 + third_party_settings: { } + region: content + status: + type: boolean_checkbox + settings: + display_label: true + weight: 120 + region: content + third_party_settings: { } + sticky: + type: boolean_checkbox + settings: + display_label: true + weight: 16 + third_party_settings: { } + region: content + title: + type: string_textfield + weight: -5 + settings: + size: 60 + placeholder: '' + third_party_settings: { } + region: content + uid: + type: entity_reference_autocomplete + weight: 5 + settings: + match_operator: CONTAINS + size: 60 + placeholder: '' + third_party_settings: { } + region: content + url_redirects: + weight: 50 + settings: { } + third_party_settings: { } + region: content + webform: + weight: 0 + settings: { } + third_party_settings: { } + type: webform_entity_reference_select + region: content +hidden: { } diff --git a/project/config/boundarycommission/config/core.entity_form_display.paragraph.faq_accordion.default.yml b/project/config/boundarycommission/config/core.entity_form_display.paragraph.faq_accordion.default.yml new file mode 100644 index 000000000..2668892c7 --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_form_display.paragraph.faq_accordion.default.yml @@ -0,0 +1,36 @@ +uuid: ee93e173-f154-475c-9251-6e968493d75c +langcode: en +status: true +dependencies: + config: + - field.field.paragraph.faq_accordion.field_answer + - field.field.paragraph.faq_accordion.field_question + - paragraphs.paragraphs_type.faq_accordion + module: + - text +_core: + default_config_hash: 1SEm1W1dc0VrhYJ8MPthdyrWiP-n44xFZCD2TWvOEug +id: paragraph.faq_accordion.default +targetEntityType: paragraph +bundle: faq_accordion +mode: default +content: + field_answer: + weight: 1 + settings: + rows: 5 + placeholder: '' + third_party_settings: { } + type: text_textarea + region: content + field_question: + weight: 0 + settings: + size: 60 + placeholder: '' + third_party_settings: { } + type: string_textfield + region: content +hidden: + created: true + status: true diff --git a/project/config/boundarycommission/config/core.entity_form_display.user.user.default.yml b/project/config/boundarycommission/config/core.entity_form_display.user.user.default.yml new file mode 100644 index 000000000..74243c104 --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_form_display.user.user.default.yml @@ -0,0 +1,46 @@ +uuid: 8edc5a47-cb9b-4717-a7bd-72755c40d195 +langcode: en +status: true +dependencies: + config: + - field.field.user.user.user_picture + - image.style.thumbnail + module: + - image + - path + - user +_core: + default_config_hash: K-1rBM8mTIkFp9RqOC2tMRUukOQ1xbRCfSKK8dEddnA +id: user.user.default +targetEntityType: user +bundle: user +mode: default +content: + account: + weight: -10 + region: content + contact: + weight: 5 + region: content + language: + weight: 0 + region: content + path: + type: path + weight: 30 + region: content + settings: { } + third_party_settings: { } + timezone: + weight: 6 + region: content + user_picture: + type: image_image + settings: + progress_indicator: throbber + preview_image_style: thumbnail + third_party_settings: { } + weight: -1 + region: content +hidden: + langcode: true diff --git a/project/config/boundarycommission/config/core.entity_form_mode.media.media_library.yml b/project/config/boundarycommission/config/core.entity_form_mode.media.media_library.yml new file mode 100644 index 000000000..64b74c795 --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_form_mode.media.media_library.yml @@ -0,0 +1,15 @@ +uuid: 34c8a95e-1cb2-4bcd-b184-bc4084677b9b +langcode: en +status: true +dependencies: + module: + - media + enforced: + module: + - media_library +_core: + default_config_hash: Tdhz-aDHfDoV1Ul9umtItxGTrjkFzoNAkDw8FWXjYA0 +id: media.media_library +label: 'Media library' +targetEntityType: media +cache: true diff --git a/project/config/boundarycommission/config/core.entity_form_mode.user.register.yml b/project/config/boundarycommission/config/core.entity_form_mode.user.register.yml new file mode 100644 index 000000000..8b2cc5e13 --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_form_mode.user.register.yml @@ -0,0 +1,12 @@ +uuid: a9be4fb0-b0a4-46e0-b472-d502d155ff24 +langcode: en +status: true +dependencies: + module: + - user +_core: + default_config_hash: flXhTcp55yLcyy7ZLOhPGKGZobZQJdkAFVWV3LseiuI +id: user.register +label: Register +targetEntityType: user +cache: true diff --git a/project/config/boundarycommission/config/core.entity_view_display.block_content.basic_block.default.yml b/project/config/boundarycommission/config/core.entity_view_display.block_content.basic_block.default.yml new file mode 100644 index 000000000..1ab490d1a --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_view_display.block_content.basic_block.default.yml @@ -0,0 +1,26 @@ +uuid: 15c3c5cc-6b60-4aaf-813f-0b1ec3cf521a +langcode: en +status: true +dependencies: + config: + - block_content.type.basic_block + - field.field.block_content.basic_block.body + module: + - text +_core: + default_config_hash: BVHx79y9g4xC--XwjHLrLmI0zUxDquJFMsqvPWtPeds +id: block_content.basic_block.default +targetEntityType: block_content +bundle: basic_block +mode: default +content: + body: + label: hidden + type: text_default + weight: 0 + settings: { } + third_party_settings: { } + region: content +hidden: + langcode: true + search_api_excerpt: true diff --git a/project/config/boundarycommission/config/core.entity_view_display.block_content.map.default.yml b/project/config/boundarycommission/config/core.entity_view_display.block_content.map.default.yml new file mode 100644 index 000000000..c8e056c05 --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_view_display.block_content.map.default.yml @@ -0,0 +1,53 @@ +uuid: b7988a63-32bf-4ab7-bc7c-dd92da73c4bd +langcode: en +status: true +dependencies: + config: + - block_content.type.map + - field.field.block_content.map.field_map + - filter.format.plain_text + module: + - geolocation +_core: + default_config_hash: yi9DQ4oT_bjHZ8kSymfpZBui6TYNAnN3P11ZE7S7j7E +id: block_content.map.default +targetEntityType: block_content +bundle: map +mode: default +content: + field_map: + type: geolocation_map + label: hidden + settings: + set_marker: true + show_label: false + common_map: true + show_delta_label: false + use_overridden_map_settings: false + title: '' + info_text: + value: '' + format: plain_text + centre: + fit_bounds: + enable: true + weight: -101 + settings: + reset_zoom: true + map_center_id: fit_bounds + map_provider_id: google_maps + map_provider_settings: + type: ROADMAP + zoom: 15 + minZoom: 0 + maxZoom: 20 + height: 400px + width: 100% + gestureHandling: auto + data_provider_settings: { } + third_party_settings: { } + weight: 1 + region: content +hidden: + langcode: true + search_api_excerpt: true diff --git a/project/config/boundarycommission/config/core.entity_view_display.media.audio.default.yml b/project/config/boundarycommission/config/core.entity_view_display.media.audio.default.yml new file mode 100644 index 000000000..52904493b --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_view_display.media.audio.default.yml @@ -0,0 +1,33 @@ +uuid: c028c527-096d-4579-8084-cab9613cac75 +langcode: en +status: true +dependencies: + config: + - field.field.media.audio.field_media_audio_file + - media.type.audio + module: + - file +_core: + default_config_hash: SWf3MLdbEKvlx4Vs6iPwDHu5pr1aKT0SJmgp8no73-k +id: media.audio.default +targetEntityType: media +bundle: audio +mode: default +content: + field_media_audio_file: + type: file_audio + weight: 0 + label: visually_hidden + settings: + controls: true + autoplay: false + loop: false + multiple_file_display_type: tags + third_party_settings: { } + region: content +hidden: + created: true + langcode: true + name: true + thumbnail: true + uid: true diff --git a/project/config/boundarycommission/config/core.entity_view_display.media.audio.embed.yml b/project/config/boundarycommission/config/core.entity_view_display.media.audio.embed.yml new file mode 100644 index 000000000..6f05c2c23 --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_view_display.media.audio.embed.yml @@ -0,0 +1,39 @@ +uuid: f971f72e-3b3a-412c-a32c-0ac6ef079694 +langcode: en +status: true +dependencies: + config: + - core.entity_view_mode.media.embed + - field.field.media.audio.field_media_audio_file + - media.type.audio + module: + - file + - layout_builder +third_party_settings: + layout_builder: + allow_custom: false + enabled: false +_core: + default_config_hash: _3MAZyasP5vGbSpKJlG1RxKNuMrYwbEK3_20iKfv-bo +id: media.audio.embed +targetEntityType: media +bundle: audio +mode: embed +content: + field_media_audio_file: + type: file_audio + weight: 0 + label: visually_hidden + settings: + controls: true + autoplay: false + loop: false + multiple_file_display_type: tags + third_party_settings: { } + region: content +hidden: + created: true + langcode: true + name: true + thumbnail: true + uid: true diff --git a/project/config/boundarycommission/config/core.entity_view_display.media.audio.media_library.yml b/project/config/boundarycommission/config/core.entity_view_display.media.audio.media_library.yml new file mode 100644 index 000000000..cae770314 --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_view_display.media.audio.media_library.yml @@ -0,0 +1,40 @@ +uuid: 97127229-9fe4-4baa-a3d4-d2b31b1d1382 +langcode: en +status: true +dependencies: + config: + - core.entity_view_mode.media.media_library + - field.field.media.audio.field_media_audio_file + - image.style.medium + - media.type.audio + module: + - image + - layout_builder +third_party_settings: + layout_builder: + allow_custom: false + enabled: false +_core: + default_config_hash: oaY72NXOtY0BXcl72JTo0MFP1tTxAL4WOq1Dn5oCbEI +id: media.audio.media_library +targetEntityType: media +bundle: audio +mode: media_library +content: + thumbnail: + type: image + weight: 0 + region: content + label: hidden + settings: + image_style: medium + image_link: '' + image_loading: + attribute: lazy + third_party_settings: { } +hidden: + created: true + field_media_audio_file: true + langcode: true + name: true + uid: true diff --git a/project/config/boundarycommission/config/core.entity_view_display.media.document.default.yml b/project/config/boundarycommission/config/core.entity_view_display.media.document.default.yml new file mode 100644 index 000000000..9473c2b44 --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_view_display.media.document.default.yml @@ -0,0 +1,30 @@ +uuid: c679f098-ddd4-4021-949b-99f82dcf257d +langcode: en +status: true +dependencies: + config: + - field.field.media.document.field_media_file + - media.type.document + module: + - file +_core: + default_config_hash: lNGxt0E-7ML2forDcjStFn-nY_-Ry6Gcz9FiezjbTN0 +id: media.document.default +targetEntityType: media +bundle: document +mode: default +content: + field_media_file: + type: file_default + weight: 0 + region: content + label: visually_hidden + settings: + use_description_as_link_text: true + third_party_settings: { } +hidden: + created: true + langcode: true + name: true + thumbnail: true + uid: true diff --git a/project/config/boundarycommission/config/core.entity_view_display.media.document.embed.yml b/project/config/boundarycommission/config/core.entity_view_display.media.document.embed.yml new file mode 100644 index 000000000..bb24075a4 --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_view_display.media.document.embed.yml @@ -0,0 +1,36 @@ +uuid: aee13298-9ef7-48a9-acfe-41b2e1b12ed4 +langcode: en +status: true +dependencies: + config: + - core.entity_view_mode.media.embed + - field.field.media.document.field_media_file + - media.type.document + module: + - file + - layout_builder +third_party_settings: + layout_builder: + allow_custom: false + enabled: false +_core: + default_config_hash: peU9aUTP0pJ1UCdZWQMv685MidbkZH1ilC0oiiLHKwc +id: media.document.embed +targetEntityType: media +bundle: document +mode: embed +content: + field_media_file: + type: file_default + weight: 0 + region: content + label: visually_hidden + settings: + use_description_as_link_text: true + third_party_settings: { } +hidden: + created: true + langcode: true + name: true + thumbnail: true + uid: true diff --git a/project/config/boundarycommission/config/core.entity_view_display.media.document.media_library.yml b/project/config/boundarycommission/config/core.entity_view_display.media.document.media_library.yml new file mode 100644 index 000000000..dfafb4953 --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_view_display.media.document.media_library.yml @@ -0,0 +1,40 @@ +uuid: 09b3b89a-219f-4fb9-b52f-88e00a14516f +langcode: en +status: true +dependencies: + config: + - core.entity_view_mode.media.media_library + - field.field.media.document.field_media_file + - image.style.medium + - media.type.document + module: + - image + - layout_builder +third_party_settings: + layout_builder: + allow_custom: false + enabled: false +_core: + default_config_hash: KC7hdDZklJSTH9Lqoud8KjHqBGpQjzt-yNPQ_EaEdzE +id: media.document.media_library +targetEntityType: media +bundle: document +mode: media_library +content: + thumbnail: + type: image + weight: 0 + region: content + label: hidden + settings: + image_style: medium + image_link: '' + image_loading: + attribute: lazy + third_party_settings: { } +hidden: + created: true + field_media_file: true + langcode: true + name: true + uid: true diff --git a/project/config/boundarycommission/config/core.entity_view_display.media.file.default.yml b/project/config/boundarycommission/config/core.entity_view_display.media.file.default.yml new file mode 100644 index 000000000..21a35ad0f --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_view_display.media.file.default.yml @@ -0,0 +1,29 @@ +uuid: 30f5fffd-a86a-4587-b3ef-70a5ca37a03d +langcode: en +status: true +dependencies: + config: + - field.field.media.file.field_media_file + - media.type.file + module: + - file +_core: + default_config_hash: 9s0lWIanCnW5Xrrkmedxohs9F0yk4LO8ZcmVQ9xyuu4 +id: media.file.default +targetEntityType: media +bundle: file +mode: default +content: + field_media_file: + label: visually_hidden + settings: { } + third_party_settings: { } + type: file_default + weight: 1 + region: content +hidden: + created: true + langcode: true + name: true + thumbnail: true + uid: true diff --git a/project/config/boundarycommission/config/core.entity_view_display.media.file.embed.yml b/project/config/boundarycommission/config/core.entity_view_display.media.file.embed.yml new file mode 100644 index 000000000..2e66b80e8 --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_view_display.media.file.embed.yml @@ -0,0 +1,35 @@ +uuid: 1e498b6b-e9ec-405e-9abd-25dcdaae88bc +langcode: en +status: true +dependencies: + config: + - core.entity_view_mode.media.embed + - field.field.media.file.field_media_file + - media.type.file + module: + - file + - layout_builder +third_party_settings: + layout_builder: + allow_custom: false + enabled: false +_core: + default_config_hash: mQ8XylHW2Fnp3dHD_5zW9h1L-e0oWLyLiCUo43jSjr0 +id: media.file.embed +targetEntityType: media +bundle: file +mode: embed +content: + field_media_file: + label: visually_hidden + settings: { } + third_party_settings: { } + type: file_default + weight: 1 + region: content +hidden: + created: true + langcode: true + name: true + thumbnail: true + uid: true diff --git a/project/config/boundarycommission/config/core.entity_view_display.media.file.media_library.yml b/project/config/boundarycommission/config/core.entity_view_display.media.file.media_library.yml new file mode 100644 index 000000000..aff3c2035 --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_view_display.media.file.media_library.yml @@ -0,0 +1,40 @@ +uuid: 4fbb0b4d-5660-4f43-bd4e-b8df0cf5afdf +langcode: en +status: true +dependencies: + config: + - core.entity_view_mode.media.media_library + - field.field.media.file.field_media_file + - image.style.medium + - media.type.file + module: + - image + - layout_builder +third_party_settings: + layout_builder: + allow_custom: false + enabled: false +_core: + default_config_hash: dsIt0z7SQucfb3AnMmOXkbmVVQJQEbdCEANaX1eIj-8 +id: media.file.media_library +targetEntityType: media +bundle: file +mode: media_library +content: + thumbnail: + type: image + weight: 0 + region: content + label: hidden + settings: + image_style: medium + image_link: '' + image_loading: + attribute: lazy + third_party_settings: { } +hidden: + created: true + field_media_file: true + langcode: true + name: true + uid: true diff --git a/project/config/boundarycommission/config/core.entity_view_display.media.image.article_float.yml b/project/config/boundarycommission/config/core.entity_view_display.media.image.article_float.yml new file mode 100644 index 000000000..45dc2fc90 --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_view_display.media.image.article_float.yml @@ -0,0 +1,41 @@ +uuid: f05e4416-b739-4fb2-93c1-53cb11aa1c5b +langcode: en +status: true +dependencies: + config: + - core.entity_view_mode.media.article_float + - field.field.media.image.field_caption + - field.field.media.image.field_media_image + - media.type.image + - responsive_image.styles.inline + module: + - layout_builder + - responsive_image +third_party_settings: + layout_builder: + allow_custom: false + enabled: false +_core: + default_config_hash: Qc84qZsZg9j4C_HhqcJba30UIYiFPs-k8mwZBUHnkhg +id: media.image.article_float +targetEntityType: media +bundle: image +mode: article_float +content: + field_media_image: + label: visually_hidden + settings: + responsive_image_style: inline + image_link: '' + third_party_settings: { } + type: responsive_image + weight: 1 + region: content +hidden: + created: true + field_caption: true + langcode: true + name: true + search_api_excerpt: true + thumbnail: true + uid: true diff --git a/project/config/boundarycommission/config/core.entity_view_display.media.image.article_float_expandable.yml b/project/config/boundarycommission/config/core.entity_view_display.media.image.article_float_expandable.yml new file mode 100644 index 000000000..191135e74 --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_view_display.media.image.article_float_expandable.yml @@ -0,0 +1,41 @@ +uuid: 6029b5b3-d248-47bd-bb5f-33cd2bffd840 +langcode: en +status: true +dependencies: + config: + - core.entity_view_mode.media.article_float_expandable + - field.field.media.image.field_caption + - field.field.media.image.field_media_image + - media.type.image + - responsive_image.styles.inline_expandable + module: + - layout_builder + - responsive_image +third_party_settings: + layout_builder: + allow_custom: false + enabled: false +_core: + default_config_hash: lXvf_LsfdSQCILbHoFEq6v62HST4Tp3exxSnqTLWzz0 +id: media.image.article_float_expandable +targetEntityType: media +bundle: image +mode: article_float_expandable +content: + field_media_image: + label: visually_hidden + settings: + responsive_image_style: inline_expandable + image_link: '' + third_party_settings: { } + type: responsive_image + weight: 1 + region: content +hidden: + created: true + field_caption: true + langcode: true + name: true + search_api_excerpt: true + thumbnail: true + uid: true diff --git a/project/config/boundarycommission/config/core.entity_view_display.media.image.article_full.yml b/project/config/boundarycommission/config/core.entity_view_display.media.image.article_full.yml new file mode 100644 index 000000000..a0c176f31 --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_view_display.media.image.article_full.yml @@ -0,0 +1,41 @@ +uuid: dfa54c5b-eb7f-4b41-b493-e80a70a209a3 +langcode: en +status: true +dependencies: + config: + - core.entity_view_mode.media.article_full + - field.field.media.image.field_caption + - field.field.media.image.field_media_image + - media.type.image + - responsive_image.styles.inline_xl + module: + - layout_builder + - responsive_image +third_party_settings: + layout_builder: + allow_custom: false + enabled: false +_core: + default_config_hash: WiJyWt8e9wuJCQyCd8hMoC84PwDZvegFc3eUum8e_dU +id: media.image.article_full +targetEntityType: media +bundle: image +mode: article_full +content: + field_media_image: + label: visually_hidden + settings: + responsive_image_style: inline_xl + image_link: '' + third_party_settings: { } + type: responsive_image + weight: 1 + region: content +hidden: + created: true + field_caption: true + langcode: true + name: true + search_api_excerpt: true + thumbnail: true + uid: true diff --git a/project/config/boundarycommission/config/core.entity_view_display.media.image.article_full_expandable.yml b/project/config/boundarycommission/config/core.entity_view_display.media.image.article_full_expandable.yml new file mode 100644 index 000000000..f924716c8 --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_view_display.media.image.article_full_expandable.yml @@ -0,0 +1,41 @@ +uuid: 92d3745b-8ab6-41d9-8c1d-86b94e686d0a +langcode: en +status: true +dependencies: + config: + - core.entity_view_mode.media.article_full_expandable + - field.field.media.image.field_caption + - field.field.media.image.field_media_image + - media.type.image + - responsive_image.styles.inline_xl_expandable + module: + - layout_builder + - responsive_image +third_party_settings: + layout_builder: + allow_custom: false + enabled: false +_core: + default_config_hash: BHHXqTGWRoOm9ejVm7lM8VT4iSke3Fo7GQtM2S1z2_Q +id: media.image.article_full_expandable +targetEntityType: media +bundle: image +mode: article_full_expandable +content: + field_media_image: + label: visually_hidden + settings: + responsive_image_style: inline_xl_expandable + image_link: '' + third_party_settings: { } + type: responsive_image + weight: 1 + region: content +hidden: + created: true + field_caption: true + langcode: true + name: true + search_api_excerpt: true + thumbnail: true + uid: true diff --git a/project/config/boundarycommission/config/core.entity_view_display.media.image.banner_deep.yml b/project/config/boundarycommission/config/core.entity_view_display.media.image.banner_deep.yml new file mode 100644 index 000000000..d2e41cff0 --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_view_display.media.image.banner_deep.yml @@ -0,0 +1,41 @@ +uuid: 5c27e75d-301c-4317-af0c-375053c8b77c +langcode: en +status: true +dependencies: + config: + - core.entity_view_mode.media.banner_deep + - field.field.media.image.field_caption + - field.field.media.image.field_media_image + - media.type.image + - responsive_image.styles.deep_banner + module: + - layout_builder + - responsive_image +third_party_settings: + layout_builder: + allow_custom: false + enabled: false +_core: + default_config_hash: 41mw0TPymocs4okh-ufJ7qGHVk0OT2LoUi15XPbO5lA +id: media.image.banner_deep +targetEntityType: media +bundle: image +mode: banner_deep +content: + field_media_image: + label: visually_hidden + settings: + responsive_image_style: deep_banner + image_link: '' + third_party_settings: { } + type: responsive_image + weight: 1 + region: content +hidden: + created: true + field_caption: true + langcode: true + name: true + search_api_excerpt: true + thumbnail: true + uid: true diff --git a/project/config/boundarycommission/config/core.entity_view_display.media.image.banner_thin.yml b/project/config/boundarycommission/config/core.entity_view_display.media.image.banner_thin.yml new file mode 100644 index 000000000..b6078588e --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_view_display.media.image.banner_thin.yml @@ -0,0 +1,41 @@ +uuid: 881be809-97d9-41e7-bd72-e50f739da44e +langcode: en +status: true +dependencies: + config: + - core.entity_view_mode.media.banner_thin + - field.field.media.image.field_caption + - field.field.media.image.field_media_image + - media.type.image + - responsive_image.styles.thin_banner + module: + - layout_builder + - responsive_image +third_party_settings: + layout_builder: + allow_custom: false + enabled: false +_core: + default_config_hash: gr2f1jIzgMhAdnL4kmdCjzvKc8xNGTNzwxNXwc03uHw +id: media.image.banner_thin +targetEntityType: media +bundle: image +mode: banner_thin +content: + field_media_image: + label: visually_hidden + settings: + responsive_image_style: thin_banner + image_link: '' + third_party_settings: { } + type: responsive_image + weight: 1 + region: content +hidden: + created: true + field_caption: true + langcode: true + name: true + search_api_excerpt: true + thumbnail: true + uid: true diff --git a/project/config/boundarycommission/config/core.entity_view_display.media.image.card_large.yml b/project/config/boundarycommission/config/core.entity_view_display.media.image.card_large.yml new file mode 100644 index 000000000..78587ce2a --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_view_display.media.image.card_large.yml @@ -0,0 +1,41 @@ +uuid: 03d17715-6a0c-4961-a640-9619cb4fe9e0 +langcode: en +status: true +dependencies: + config: + - core.entity_view_mode.media.card_large + - field.field.media.image.field_caption + - field.field.media.image.field_media_image + - media.type.image + - responsive_image.styles.card_large + module: + - layout_builder + - responsive_image +third_party_settings: + layout_builder: + allow_custom: false + enabled: false +_core: + default_config_hash: p2gxsFGwzTyWtMNul8UmbFzaZSoR3o_KKB_0LlORMNw +id: media.image.card_large +targetEntityType: media +bundle: image +mode: card_large +content: + field_media_image: + label: visually_hidden + settings: + responsive_image_style: card_large + image_link: '' + third_party_settings: { } + type: responsive_image + weight: 1 + region: content +hidden: + created: true + field_caption: true + langcode: true + name: true + search_api_excerpt: true + thumbnail: true + uid: true diff --git a/project/config/boundarycommission/config/core.entity_view_display.media.image.card_small.yml b/project/config/boundarycommission/config/core.entity_view_display.media.image.card_small.yml new file mode 100644 index 000000000..8331668b2 --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_view_display.media.image.card_small.yml @@ -0,0 +1,41 @@ +uuid: 93687edb-42e0-46f8-90aa-1ed857942cc5 +langcode: en +status: true +dependencies: + config: + - core.entity_view_mode.media.card_small + - field.field.media.image.field_caption + - field.field.media.image.field_media_image + - media.type.image + - responsive_image.styles.card_small + module: + - layout_builder + - responsive_image +third_party_settings: + layout_builder: + allow_custom: false + enabled: false +_core: + default_config_hash: kLQkf7o6L2YDhUnGENm-mYXyJi7JU97qPAUXEcGfCDw +id: media.image.card_small +targetEntityType: media +bundle: image +mode: card_small +content: + field_media_image: + label: visually_hidden + settings: + responsive_image_style: card_small + image_link: '' + third_party_settings: { } + type: responsive_image + weight: 1 + region: content +hidden: + created: true + field_caption: true + langcode: true + name: true + search_api_excerpt: true + thumbnail: true + uid: true diff --git a/project/config/boundarycommission/config/core.entity_view_display.media.image.default.yml b/project/config/boundarycommission/config/core.entity_view_display.media.image.default.yml new file mode 100644 index 000000000..bc2dbdd26 --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_view_display.media.image.default.yml @@ -0,0 +1,37 @@ +uuid: feb2e461-c243-49b8-98d9-6fcc98bdf0b4 +langcode: en +status: true +dependencies: + config: + - field.field.media.image.field_caption + - field.field.media.image.field_media_image + - image.style.large + - media.type.image + module: + - image +_core: + default_config_hash: KjXMi3mwdORBHjhOy4Gr7GjvcDx9ipgdXz-c1w8B3HA +id: media.image.default +targetEntityType: media +bundle: image +mode: default +content: + field_media_image: + label: visually_hidden + settings: + image_style: large + image_link: '' + image_loading: + attribute: lazy + third_party_settings: { } + type: image + weight: 1 + region: content +hidden: + created: true + field_caption: true + langcode: true + name: true + search_api_excerpt: true + thumbnail: true + uid: true diff --git a/project/config/boundarycommission/config/core.entity_view_display.media.image.embed.yml b/project/config/boundarycommission/config/core.entity_view_display.media.image.embed.yml new file mode 100644 index 000000000..80399b10d --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_view_display.media.image.embed.yml @@ -0,0 +1,41 @@ +uuid: 8ebc912c-e181-4ca7-8c8f-6d203c2828f9 +langcode: en +status: true +dependencies: + config: + - core.entity_view_mode.media.embed + - field.field.media.image.field_caption + - field.field.media.image.field_media_image + - media.type.image + - responsive_image.styles.inline + module: + - layout_builder + - responsive_image +third_party_settings: + layout_builder: + allow_custom: false + enabled: false +_core: + default_config_hash: WpUYUOcNZP_vxIPLpZW1INpkWfMC86pYbfS9DU-dKzE +id: media.image.embed +targetEntityType: media +bundle: image +mode: embed +content: + field_media_image: + type: responsive_image + weight: 0 + region: content + label: hidden + settings: + responsive_image_style: inline + image_link: '' + third_party_settings: { } +hidden: + created: true + field_caption: true + langcode: true + name: true + search_api_excerpt: true + thumbnail: true + uid: true diff --git a/project/config/boundarycommission/config/core.entity_view_display.media.image.feature_card.yml b/project/config/boundarycommission/config/core.entity_view_display.media.image.feature_card.yml new file mode 100644 index 000000000..0a063978e --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_view_display.media.image.feature_card.yml @@ -0,0 +1,41 @@ +uuid: 396edee5-8c39-46d8-ac71-81f51c305ec6 +langcode: en +status: true +dependencies: + config: + - core.entity_view_mode.media.feature_card + - field.field.media.image.field_caption + - field.field.media.image.field_media_image + - media.type.image + - responsive_image.styles.feature_card + module: + - layout_builder + - responsive_image +third_party_settings: + layout_builder: + allow_custom: false + enabled: false +_core: + default_config_hash: gP6vNslMIhRpr1qxKQ6flSM0QHD6SuiPKWSrSrQEK2w +id: media.image.feature_card +targetEntityType: media +bundle: image +mode: feature_card +content: + field_media_image: + label: visually_hidden + settings: + responsive_image_style: feature_card + image_link: '' + third_party_settings: { } + type: responsive_image + weight: 1 + region: content +hidden: + created: true + field_caption: true + langcode: true + name: true + search_api_excerpt: true + thumbnail: true + uid: true diff --git a/project/config/boundarycommission/config/core.entity_view_display.media.image.landing_full.yml b/project/config/boundarycommission/config/core.entity_view_display.media.image.landing_full.yml new file mode 100644 index 000000000..fd2258523 --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_view_display.media.image.landing_full.yml @@ -0,0 +1,41 @@ +uuid: caac53eb-6d8a-49a4-9223-4b5a584016d4 +langcode: en +status: true +dependencies: + config: + - core.entity_view_mode.media.landing_full + - field.field.media.image.field_caption + - field.field.media.image.field_media_image + - media.type.image + - responsive_image.styles.landing_full + module: + - layout_builder + - responsive_image +third_party_settings: + layout_builder: + allow_custom: false + enabled: false +_core: + default_config_hash: kRrQsKPDGqQdo9Pv7B1YREHsAPuvGUeFJuOgki7PoL4 +id: media.image.landing_full +targetEntityType: media +bundle: image +mode: landing_full +content: + field_media_image: + label: visually_hidden + settings: + responsive_image_style: landing_full + image_link: '' + third_party_settings: { } + type: responsive_image + weight: 1 + region: content +hidden: + created: true + field_caption: true + langcode: true + name: true + search_api_excerpt: true + thumbnail: true + uid: true diff --git a/project/config/boundarycommission/config/core.entity_view_display.media.image.landscape_float.yml b/project/config/boundarycommission/config/core.entity_view_display.media.image.landscape_float.yml new file mode 100644 index 000000000..81707f7d9 --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_view_display.media.image.landscape_float.yml @@ -0,0 +1,41 @@ +uuid: 99c523d7-283c-42c4-942d-100f00f0dad6 +langcode: en +status: true +dependencies: + config: + - core.entity_view_mode.media.landscape_float + - field.field.media.image.field_caption + - field.field.media.image.field_media_image + - media.type.image + - responsive_image.styles.inline + module: + - layout_builder + - responsive_image +third_party_settings: + layout_builder: + allow_custom: false + enabled: false +_core: + default_config_hash: pWaJlpPLCDQKiaVZcKSXjEaeOrHnqHv5q0SGYo-SZ8s +id: media.image.landscape_float +targetEntityType: media +bundle: image +mode: landscape_float +content: + field_media_image: + type: responsive_image + weight: 0 + region: content + label: hidden + settings: + responsive_image_style: inline + image_link: '' + third_party_settings: { } +hidden: + created: true + field_caption: true + langcode: true + name: true + search_api_excerpt: true + thumbnail: true + uid: true diff --git a/project/config/boundarycommission/config/core.entity_view_display.media.image.landscape_float_xp.yml b/project/config/boundarycommission/config/core.entity_view_display.media.image.landscape_float_xp.yml new file mode 100644 index 000000000..f2d2a18e0 --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_view_display.media.image.landscape_float_xp.yml @@ -0,0 +1,41 @@ +uuid: 8b4719aa-7efe-46dc-a709-aa8a23a5b3c5 +langcode: en +status: true +dependencies: + config: + - core.entity_view_mode.media.landscape_float_xp + - field.field.media.image.field_caption + - field.field.media.image.field_media_image + - media.type.image + - responsive_image.styles.inline_expandable + module: + - layout_builder + - responsive_image +third_party_settings: + layout_builder: + allow_custom: false + enabled: false +_core: + default_config_hash: cTmD6ssXtuitm5nMp8IQpiPT8fS8DYDJzUSpIZJsIXo +id: media.image.landscape_float_xp +targetEntityType: media +bundle: image +mode: landscape_float_xp +content: + field_media_image: + label: visually_hidden + settings: + responsive_image_style: inline_expandable + image_link: '' + third_party_settings: { } + type: responsive_image + weight: 0 + region: content +hidden: + created: true + field_caption: true + langcode: true + name: true + search_api_excerpt: true + thumbnail: true + uid: true diff --git a/project/config/boundarycommission/config/core.entity_view_display.media.image.landscape_full.yml b/project/config/boundarycommission/config/core.entity_view_display.media.image.landscape_full.yml new file mode 100644 index 000000000..798322efa --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_view_display.media.image.landscape_full.yml @@ -0,0 +1,41 @@ +uuid: 1760409b-3157-4175-8535-e0ee367d90d2 +langcode: en +status: true +dependencies: + config: + - core.entity_view_mode.media.landscape_full + - field.field.media.image.field_caption + - field.field.media.image.field_media_image + - media.type.image + - responsive_image.styles.inline_xl + module: + - layout_builder + - responsive_image +third_party_settings: + layout_builder: + allow_custom: false + enabled: false +_core: + default_config_hash: 96tn1v3y9l5NtT-HW-P4H2q9W6Il4KE3J6byKFyHU_s +id: media.image.landscape_full +targetEntityType: media +bundle: image +mode: landscape_full +content: + field_media_image: + label: visually_hidden + settings: + responsive_image_style: inline_xl + image_link: '' + third_party_settings: { } + type: responsive_image + weight: 0 + region: content +hidden: + created: true + field_caption: true + langcode: true + name: true + search_api_excerpt: true + thumbnail: true + uid: true diff --git a/project/config/boundarycommission/config/core.entity_view_display.media.image.landscape_full_xp.yml b/project/config/boundarycommission/config/core.entity_view_display.media.image.landscape_full_xp.yml new file mode 100644 index 000000000..c918bfb1c --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_view_display.media.image.landscape_full_xp.yml @@ -0,0 +1,41 @@ +uuid: e4df9795-59b0-4542-b50a-e17fe97d0c58 +langcode: en +status: true +dependencies: + config: + - core.entity_view_mode.media.landscape_full_xp + - field.field.media.image.field_caption + - field.field.media.image.field_media_image + - media.type.image + - responsive_image.styles.inline_xl_expandable + module: + - layout_builder + - responsive_image +third_party_settings: + layout_builder: + allow_custom: false + enabled: false +_core: + default_config_hash: NHh4MGEbf8wZjJ5_1Tqz_IJqrgAkMaho88bxrPNjHjk +id: media.image.landscape_full_xp +targetEntityType: media +bundle: image +mode: landscape_full_xp +content: + field_media_image: + label: visually_hidden + settings: + responsive_image_style: inline_xl_expandable + image_link: '' + third_party_settings: { } + type: responsive_image + weight: 0 + region: content +hidden: + created: true + field_caption: true + langcode: true + name: true + search_api_excerpt: true + thumbnail: true + uid: true diff --git a/project/config/boundarycommission/config/core.entity_view_display.media.image.media_library.yml b/project/config/boundarycommission/config/core.entity_view_display.media.image.media_library.yml new file mode 100644 index 000000000..66bc5a455 --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_view_display.media.image.media_library.yml @@ -0,0 +1,42 @@ +uuid: 6d2dcde3-62db-4e0e-8473-b28923295393 +langcode: en +status: true +dependencies: + config: + - core.entity_view_mode.media.media_library + - field.field.media.image.field_caption + - field.field.media.image.field_media_image + - image.style.medium + - media.type.image + module: + - image + - layout_builder +third_party_settings: + layout_builder: + allow_custom: false + enabled: false +_core: + default_config_hash: JA8E-4N1UoiyXjLk2lPVpK0EE7cgehKVC6oHCmOrFuk +id: media.image.media_library +targetEntityType: media +bundle: image +mode: media_library +content: + field_media_image: + label: hidden + settings: + image_style: medium + image_link: '' + image_loading: + attribute: lazy + third_party_settings: { } + type: image + weight: 1 + region: content +hidden: + created: true + field_caption: true + langcode: true + name: true + thumbnail: true + uid: true diff --git a/project/config/boundarycommission/config/core.entity_view_display.media.image.news_thumbnail.yml b/project/config/boundarycommission/config/core.entity_view_display.media.image.news_thumbnail.yml new file mode 100644 index 000000000..9b61fe29f --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_view_display.media.image.news_thumbnail.yml @@ -0,0 +1,41 @@ +uuid: 5659ee16-c211-4652-b611-5bcebaa61b4a +langcode: en +status: true +dependencies: + config: + - core.entity_view_mode.media.news_thumbnail + - field.field.media.image.field_caption + - field.field.media.image.field_media_image + - media.type.image + - responsive_image.styles.news_thumbnail + module: + - layout_builder + - responsive_image +third_party_settings: + layout_builder: + allow_custom: false + enabled: false +_core: + default_config_hash: HkefXybTV05o4ma5sBCLcB2qo4o-QkwBdtdINcIga-Q +id: media.image.news_thumbnail +targetEntityType: media +bundle: image +mode: news_thumbnail +content: + field_media_image: + label: visually_hidden + settings: + responsive_image_style: news_thumbnail + image_link: '' + third_party_settings: { } + type: responsive_image + weight: 1 + region: content +hidden: + created: true + field_caption: true + langcode: true + name: true + search_api_excerpt: true + thumbnail: true + uid: true diff --git a/project/config/boundarycommission/config/core.entity_view_display.media.image.portrait_float.yml b/project/config/boundarycommission/config/core.entity_view_display.media.image.portrait_float.yml new file mode 100644 index 000000000..f89a69893 --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_view_display.media.image.portrait_float.yml @@ -0,0 +1,41 @@ +uuid: 6fc2e212-cf16-4fcc-92d2-2d7f7d2be754 +langcode: en +status: true +dependencies: + config: + - core.entity_view_mode.media.portrait_float + - field.field.media.image.field_caption + - field.field.media.image.field_media_image + - media.type.image + - responsive_image.styles.portrait_float + module: + - layout_builder + - responsive_image +third_party_settings: + layout_builder: + allow_custom: false + enabled: false +_core: + default_config_hash: wq-slZgfc1cZGKHX3R1Dj3fvY3Mcy8qDNGViyJlED-4 +id: media.image.portrait_float +targetEntityType: media +bundle: image +mode: portrait_float +content: + field_media_image: + label: visually_hidden + settings: + responsive_image_style: portrait_float + image_link: '' + third_party_settings: { } + type: responsive_image + weight: 0 + region: content +hidden: + created: true + field_caption: true + langcode: true + name: true + search_api_excerpt: true + thumbnail: true + uid: true diff --git a/project/config/boundarycommission/config/core.entity_view_display.media.image.portrait_float_xp.yml b/project/config/boundarycommission/config/core.entity_view_display.media.image.portrait_float_xp.yml new file mode 100644 index 000000000..f14e5f7b8 --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_view_display.media.image.portrait_float_xp.yml @@ -0,0 +1,41 @@ +uuid: aa631d61-c0b0-4e7a-b496-045bb045d284 +langcode: en +status: true +dependencies: + config: + - core.entity_view_mode.media.portrait_float_xp + - field.field.media.image.field_caption + - field.field.media.image.field_media_image + - media.type.image + - responsive_image.styles.portrait_float_expandable + module: + - layout_builder + - responsive_image +third_party_settings: + layout_builder: + allow_custom: false + enabled: false +_core: + default_config_hash: aIZChlQ4tUNkwbt8vT9FkaIyNiLT2AIJFp3GUBOLCxo +id: media.image.portrait_float_xp +targetEntityType: media +bundle: image +mode: portrait_float_xp +content: + field_media_image: + label: visually_hidden + settings: + responsive_image_style: portrait_float_expandable + image_link: '' + third_party_settings: { } + type: responsive_image + weight: 0 + region: content +hidden: + created: true + field_caption: true + langcode: true + name: true + search_api_excerpt: true + thumbnail: true + uid: true diff --git a/project/config/boundarycommission/config/core.entity_view_display.media.image.portrait_full.yml b/project/config/boundarycommission/config/core.entity_view_display.media.image.portrait_full.yml new file mode 100644 index 000000000..8e9dc986d --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_view_display.media.image.portrait_full.yml @@ -0,0 +1,41 @@ +uuid: 3cf80f3f-55ff-49a6-b0a7-23f4c0c215ad +langcode: en +status: true +dependencies: + config: + - core.entity_view_mode.media.portrait_full + - field.field.media.image.field_caption + - field.field.media.image.field_media_image + - media.type.image + - responsive_image.styles.portrait_full_width + module: + - layout_builder + - responsive_image +third_party_settings: + layout_builder: + allow_custom: false + enabled: false +_core: + default_config_hash: K3k7D7D_X7FaBE7eO43FG9ECqUBSprFLTsyjgk3ap0A +id: media.image.portrait_full +targetEntityType: media +bundle: image +mode: portrait_full +content: + field_media_image: + label: visually_hidden + settings: + responsive_image_style: portrait_full_width + image_link: '' + third_party_settings: { } + type: responsive_image + weight: 0 + region: content +hidden: + created: true + field_caption: true + langcode: true + name: true + search_api_excerpt: true + thumbnail: true + uid: true diff --git a/project/config/boundarycommission/config/core.entity_view_display.media.image.slide.yml b/project/config/boundarycommission/config/core.entity_view_display.media.image.slide.yml new file mode 100644 index 000000000..26fccb9de --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_view_display.media.image.slide.yml @@ -0,0 +1,41 @@ +uuid: 5c03a0da-592e-47d1-97cb-a8c3fc6310aa +langcode: en +status: true +dependencies: + config: + - core.entity_view_mode.media.slide + - field.field.media.image.field_caption + - field.field.media.image.field_media_image + - media.type.image + - responsive_image.styles.slideshow + module: + - layout_builder + - responsive_image +third_party_settings: + layout_builder: + allow_custom: false + enabled: false +_core: + default_config_hash: jNaDxp9BRo-GpXBS_FcuXsdr0tjMTbh7D7TLRz7-744 +id: media.image.slide +targetEntityType: media +bundle: image +mode: slide +content: + field_media_image: + label: visually_hidden + settings: + responsive_image_style: slideshow + image_link: '' + third_party_settings: { } + type: responsive_image + weight: 1 + region: content +hidden: + created: true + field_caption: true + langcode: true + name: true + search_api_excerpt: true + thumbnail: true + uid: true diff --git a/project/config/boundarycommission/config/core.entity_view_display.media.image.unity_3_col_images.yml b/project/config/boundarycommission/config/core.entity_view_display.media.image.unity_3_col_images.yml new file mode 100644 index 000000000..bdc7128f7 --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_view_display.media.image.unity_3_col_images.yml @@ -0,0 +1,41 @@ +uuid: 69af3cb7-471d-4c0c-8425-2b59868e45df +langcode: en +status: true +dependencies: + config: + - core.entity_view_mode.media.unity_3_col_images + - field.field.media.image.field_caption + - field.field.media.image.field_media_image + - media.type.image + - responsive_image.styles.unity_3_col_images + module: + - layout_builder + - responsive_image +third_party_settings: + layout_builder: + allow_custom: false + enabled: false +_core: + default_config_hash: 4Ai1EoX1HS4Xlv_-3NJ3lANlA2-FqK-Kzy20ZBYE1no +id: media.image.unity_3_col_images +targetEntityType: media +bundle: image +mode: unity_3_col_images +content: + field_media_image: + label: visually_hidden + settings: + responsive_image_style: unity_3_col_images + image_link: '' + third_party_settings: { } + type: responsive_image + weight: 1 + region: content +hidden: + created: true + field_caption: true + langcode: true + name: true + search_api_excerpt: true + thumbnail: true + uid: true diff --git a/project/config/boundarycommission/config/core.entity_view_display.media.remote_video.default.yml b/project/config/boundarycommission/config/core.entity_view_display.media.remote_video.default.yml new file mode 100644 index 000000000..560de195e --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_view_display.media.remote_video.default.yml @@ -0,0 +1,31 @@ +uuid: e9f54d1b-d149-42d4-9540-f1922f086d34 +langcode: en +status: true +dependencies: + config: + - field.field.media.remote_video.field_media_oembed_video + - media.type.remote_video + module: + - media +_core: + default_config_hash: gUaDZKMQD3lmLKWPn727X3JHVdKJ525g4EJCCcDVAqk +id: media.remote_video.default +targetEntityType: media +bundle: remote_video +mode: default +content: + field_media_oembed_video: + type: oembed + weight: 0 + label: hidden + settings: + max_width: 0 + max_height: 0 + third_party_settings: { } + region: content +hidden: + created: true + langcode: true + name: true + thumbnail: true + uid: true diff --git a/project/config/boundarycommission/config/core.entity_view_display.media.remote_video.embed.yml b/project/config/boundarycommission/config/core.entity_view_display.media.remote_video.embed.yml new file mode 100644 index 000000000..428814d40 --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_view_display.media.remote_video.embed.yml @@ -0,0 +1,38 @@ +uuid: ebf1ad56-6f35-475a-a163-e8bcd7957ef3 +langcode: en +status: true +dependencies: + config: + - core.entity_view_mode.media.embed + - field.field.media.remote_video.field_media_oembed_video + - media.type.remote_video + module: + - layout_builder + - media +third_party_settings: + layout_builder: + allow_custom: false + enabled: false +_core: + default_config_hash: Of8WLiNbeyFRyfnhvONBRETmFUwO9MMsg2zkVInvu_Y +id: media.remote_video.embed +targetEntityType: media +bundle: remote_video +mode: embed +content: + field_media_oembed_video: + type: oembed + weight: 0 + label: hidden + settings: + max_width: 0 + max_height: 0 + third_party_settings: { } + region: content +hidden: + created: true + langcode: true + name: true + search_api_excerpt: true + thumbnail: true + uid: true diff --git a/project/config/boundarycommission/config/core.entity_view_display.media.remote_video.media_library.yml b/project/config/boundarycommission/config/core.entity_view_display.media.remote_video.media_library.yml new file mode 100644 index 000000000..33a71001d --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_view_display.media.remote_video.media_library.yml @@ -0,0 +1,41 @@ +uuid: e25fe54b-c9fd-48d5-8fd4-e41a652e9bfd +langcode: en +status: true +dependencies: + config: + - core.entity_view_mode.media.media_library + - field.field.media.remote_video.field_media_oembed_video + - image.style.medium + - media.type.remote_video + module: + - image + - layout_builder +third_party_settings: + layout_builder: + allow_custom: false + enabled: false +_core: + default_config_hash: s_qSuJ0lKjfrGfrxBFt6CCEL-gANHU5t6QmwwtZqCfc +id: media.remote_video.media_library +targetEntityType: media +bundle: remote_video +mode: media_library +content: + thumbnail: + type: image + weight: 0 + region: content + label: hidden + settings: + image_style: medium + image_link: '' + image_loading: + attribute: lazy + third_party_settings: { } +hidden: + created: true + field_media_oembed_video: true + langcode: true + name: true + search_api_excerpt: true + uid: true diff --git a/project/config/boundarycommission/config/core.entity_view_display.node.basic_page.default.yml b/project/config/boundarycommission/config/core.entity_view_display.node.basic_page.default.yml new file mode 100644 index 000000000..533b52707 --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_view_display.node.basic_page.default.yml @@ -0,0 +1,32 @@ +uuid: 38b5f85f-f3d5-4a70-ac93-f99f2e1cf850 +langcode: en +status: true +dependencies: + config: + - field.field.node.basic_page.body + - field.field.node.basic_page.field_meta_tags + - field.field.node.basic_page.field_next_audit_due + - node.type.basic_page + module: + - text + - user +_core: + default_config_hash: la60ebQM7BAy0G_pimE_s5LAn8J7P64Aznad7Dhvrh0 +id: node.basic_page.default +targetEntityType: node +bundle: basic_page +mode: default +content: + body: + label: hidden + type: text_default + weight: 0 + settings: { } + third_party_settings: { } + region: content +hidden: + content_moderation_control: true + field_meta_tags: true + field_next_audit_due: true + langcode: true + links: true diff --git a/project/config/boundarycommission/config/core.entity_view_display.node.basic_page.diff.yml b/project/config/boundarycommission/config/core.entity_view_display.node.basic_page.diff.yml new file mode 100644 index 000000000..5e8b67d06 --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_view_display.node.basic_page.diff.yml @@ -0,0 +1,75 @@ +uuid: c11e7332-3e70-46af-8ab6-7d7dea428ceb +langcode: en +status: true +dependencies: + config: + - core.entity_view_mode.node.diff + - field.field.node.basic_page.body + - field.field.node.basic_page.field_meta_tags + - field.field.node.basic_page.field_next_audit_due + - node.type.basic_page + module: + - datetime + - field_group + - layout_builder + - metatag + - text + - user +third_party_settings: + layout_builder: + allow_custom: false + enabled: false + field_group: + group_additional_content_details: + children: + - field_next_audit_due + - field_meta_tags + parent_name: '' + weight: 1 + format_type: html_element + region: content + format_settings: + id: '' + classes: field-collection + element: div + show_label: false + label_element: h3 + label_element_classes: '' + attributes: '' + effect: none + speed: fast + label: 'Additional content details' +_core: + default_config_hash: n9P2zod3oHe_I7EbTNUo0aJ9t6Ew9N9BOdYiJGK2-kI +id: node.basic_page.diff +targetEntityType: node +bundle: basic_page +mode: diff +content: + body: + label: hidden + type: text_default + weight: 0 + settings: { } + third_party_settings: { } + region: content + field_meta_tags: + type: metatag_empty_formatter + weight: 1 + region: content + label: inline + settings: { } + third_party_settings: { } + field_next_audit_due: + type: datetime_default + weight: 0 + region: content + label: inline + settings: + timezone_override: '' + format_type: unity_date + third_party_settings: { } +hidden: + content_moderation_control: true + langcode: true + links: true diff --git a/project/config/boundarycommission/config/core.entity_view_display.node.basic_page.teaser.yml b/project/config/boundarycommission/config/core.entity_view_display.node.basic_page.teaser.yml new file mode 100644 index 000000000..b6eb9e212 --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_view_display.node.basic_page.teaser.yml @@ -0,0 +1,42 @@ +uuid: 77da0f4d-943b-4108-a87f-da45fe0c6502 +langcode: en +status: true +dependencies: + config: + - core.entity_view_mode.node.teaser + - field.field.node.basic_page.body + - field.field.node.basic_page.field_meta_tags + - field.field.node.basic_page.field_next_audit_due + - node.type.basic_page + module: + - text + - user +_core: + default_config_hash: J6J57T3VRup2KPkKLsZdXP7DhNjKKTG1vlHkszNcmtE +id: node.basic_page.teaser +targetEntityType: node +bundle: basic_page +mode: teaser +content: + body: + label: hidden + type: text_summary_or_trimmed + weight: 101 + settings: + trim_length: 600 + third_party_settings: { } + region: content + content_moderation_control: + weight: -20 + settings: { } + third_party_settings: { } + region: content + links: + weight: 100 + settings: { } + third_party_settings: { } + region: content +hidden: + field_meta_tags: true + field_next_audit_due: true + langcode: true diff --git a/project/config/boundarycommission/config/core.entity_view_display.node.consultation_response.default.yml b/project/config/boundarycommission/config/core.entity_view_display.node.consultation_response.default.yml new file mode 100644 index 000000000..eb7fdeea9 --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_view_display.node.consultation_response.default.yml @@ -0,0 +1,48 @@ +uuid: 4086b1ca-b7c6-467e-86e1-6d29c0833c6a +langcode: en +status: true +dependencies: + config: + - field.field.node.consultation_response.field_attachment + - field.field.node.consultation_response.field_consultation_stage + - field.field.node.consultation_response.field_meta_tags + - field.field.node.consultation_response.field_response_type + - node.type.consultation_response + module: + - user +id: node.consultation_response.default +targetEntityType: node +bundle: consultation_response +mode: default +content: + field_attachment: + type: entity_reference_entity_view + label: above + settings: + view_mode: embed + link: false + third_party_settings: { } + weight: 2 + region: content + field_consultation_stage: + type: entity_reference_label + label: inline + settings: + link: true + third_party_settings: { } + weight: 0 + region: content + field_response_type: + type: entity_reference_label + label: inline + settings: + link: true + third_party_settings: { } + weight: 1 + region: content +hidden: + content_moderation_control: true + field_meta_tags: true + langcode: true + links: true + search_api_excerpt: true diff --git a/project/config/boundarycommission/config/core.entity_view_display.node.consultation_response.diff.yml b/project/config/boundarycommission/config/core.entity_view_display.node.consultation_response.diff.yml new file mode 100644 index 000000000..f956a6bc6 --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_view_display.node.consultation_response.diff.yml @@ -0,0 +1,82 @@ +uuid: 45040251-1f57-4264-932b-72f48c82118e +langcode: en +status: true +dependencies: + config: + - core.entity_view_mode.node.diff + - field.field.node.consultation_response.field_attachment + - field.field.node.consultation_response.field_consultation_stage + - field.field.node.consultation_response.field_meta_tags + - field.field.node.consultation_response.field_response_type + - node.type.consultation_response + module: + - field_group + - layout_builder + - metatag + - user +third_party_settings: + layout_builder: + enabled: false + allow_custom: false + field_group: + group_additional_content_details: + children: + - field_meta_tags + label: 'Additional content details' + parent_name: '' + region: content + weight: 3 + format_type: html_element + format_settings: + classes: field-collection + show_empty_fields: false + id: '' + element: div + show_label: false + label_element: h3 + label_element_classes: '' + attributes: '' + effect: none + speed: fast +id: node.consultation_response.diff +targetEntityType: node +bundle: consultation_response +mode: diff +content: + field_attachment: + type: entity_reference_entity_view + label: above + settings: + view_mode: embed + link: false + third_party_settings: { } + weight: 2 + region: content + field_consultation_stage: + type: entity_reference_label + label: above + settings: + link: true + third_party_settings: { } + weight: 0 + region: content + field_meta_tags: + type: metatag_empty_formatter + label: inline + settings: { } + third_party_settings: { } + weight: 6 + region: content + field_response_type: + type: entity_reference_label + label: above + settings: + link: true + third_party_settings: { } + weight: 1 + region: content +hidden: + content_moderation_control: true + langcode: true + links: true + search_api_excerpt: true diff --git a/project/config/boundarycommission/config/core.entity_view_display.node.consultation_response.search_result.yml b/project/config/boundarycommission/config/core.entity_view_display.node.consultation_response.search_result.yml new file mode 100644 index 000000000..e9ea24757 --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_view_display.node.consultation_response.search_result.yml @@ -0,0 +1,46 @@ +uuid: d236957a-7889-4430-abef-1665eccfb7d1 +langcode: en +status: true +dependencies: + config: + - core.entity_view_mode.node.search_result + - field.field.node.consultation_response.field_attachment + - field.field.node.consultation_response.field_consultation_stage + - field.field.node.consultation_response.field_meta_tags + - field.field.node.consultation_response.field_response_type + - node.type.consultation_response + module: + - layout_builder + - user +third_party_settings: + layout_builder: + enabled: false + allow_custom: false +id: node.consultation_response.search_result +targetEntityType: node +bundle: consultation_response +mode: search_result +content: + field_consultation_stage: + type: entity_reference_label + label: inline + settings: + link: false + third_party_settings: { } + weight: 1 + region: content + field_response_type: + type: entity_reference_label + label: inline + settings: + link: false + third_party_settings: { } + weight: 0 + region: content +hidden: + content_moderation_control: true + field_attachment: true + field_meta_tags: true + langcode: true + links: true + search_api_excerpt: true diff --git a/project/config/boundarycommission/config/core.entity_view_display.node.featured_content.default.yml b/project/config/boundarycommission/config/core.entity_view_display.node.featured_content.default.yml new file mode 100644 index 000000000..98cf4baeb --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_view_display.node.featured_content.default.yml @@ -0,0 +1,53 @@ +uuid: 63ff0fcf-fe6d-45ab-87f1-9b4d406c73dd +langcode: en +status: true +dependencies: + config: + - field.field.node.featured_content.field_link + - field.field.node.featured_content.field_meta_tags + - field.field.node.featured_content.field_photo + - field.field.node.featured_content.field_tagline + - node.type.featured_content + module: + - link + - text + - user +id: node.featured_content.default +targetEntityType: node +bundle: featured_content +mode: default +content: + field_link: + type: link + label: hidden + settings: + trim_length: 80 + url_only: false + url_plain: false + rel: '' + target: '' + third_party_settings: { } + weight: 2 + region: content + field_photo: + type: entity_reference_entity_view + label: hidden + settings: + view_mode: card_small + link: false + third_party_settings: { } + weight: 0 + region: content + field_tagline: + type: text_default + label: hidden + settings: { } + third_party_settings: { } + weight: 1 + region: content +hidden: + content_moderation_control: true + field_meta_tags: true + langcode: true + links: true + search_api_excerpt: true diff --git a/project/config/boundarycommission/config/core.entity_view_display.node.featured_content.diff.yml b/project/config/boundarycommission/config/core.entity_view_display.node.featured_content.diff.yml new file mode 100644 index 000000000..ec23e164f --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_view_display.node.featured_content.diff.yml @@ -0,0 +1,87 @@ +uuid: ce170f47-c712-451e-9d6e-acede93c67a4 +langcode: en +status: true +dependencies: + config: + - core.entity_view_mode.node.diff + - field.field.node.featured_content.field_link + - field.field.node.featured_content.field_meta_tags + - field.field.node.featured_content.field_photo + - field.field.node.featured_content.field_tagline + - node.type.featured_content + module: + - field_group + - layout_builder + - link + - metatag + - text + - user +third_party_settings: + field_group: + group_additional_content_details: + children: + - field_meta_tags + label: 'Additional content details' + parent_name: '' + region: content + weight: 3 + format_type: html_element + format_settings: + classes: field-collection + show_empty_fields: false + id: '' + element: div + show_label: false + label_element: h3 + label_element_classes: '' + attributes: '' + effect: none + speed: fast + layout_builder: + enabled: false + allow_custom: false +id: node.featured_content.diff +targetEntityType: node +bundle: featured_content +mode: diff +content: + field_link: + type: link + label: hidden + settings: + trim_length: 80 + url_only: false + url_plain: false + rel: '' + target: '' + third_party_settings: { } + weight: 2 + region: content + field_meta_tags: + type: metatag_empty_formatter + label: inline + settings: { } + third_party_settings: { } + weight: 6 + region: content + field_photo: + type: entity_reference_entity_view + label: hidden + settings: + view_mode: card_small + link: false + third_party_settings: { } + weight: 0 + region: content + field_tagline: + type: text_default + label: hidden + settings: { } + third_party_settings: { } + weight: 1 + region: content +hidden: + content_moderation_control: true + langcode: true + links: true + search_api_excerpt: true diff --git a/project/config/boundarycommission/config/core.entity_view_display.node.news.archive.yml b/project/config/boundarycommission/config/core.entity_view_display.node.news.archive.yml new file mode 100644 index 000000000..aa33f6ef9 --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_view_display.node.news.archive.yml @@ -0,0 +1,54 @@ +uuid: 1b86bc65-c522-42ad-ae66-6e4a553d0410 +langcode: en +status: true +dependencies: + config: + - core.entity_view_mode.node.archive + - field.field.node.news.body + - field.field.node.news.field_archive + - field.field.node.news.field_meta_tags + - field.field.node.news.field_photo + - field.field.node.news.field_published_date + - field.field.node.news.field_teaser + - node.type.news + module: + - datetime + - layout_builder + - user +third_party_settings: + layout_builder: + enabled: false + allow_custom: false +_core: + default_config_hash: N-zm1nCnhgYwXANGav75TCg-_kvNUUbT--KKS8PLKgM +id: node.news.archive +targetEntityType: node +bundle: news +mode: archive +content: + field_published_date: + type: datetime_default + label: hidden + settings: + timezone_override: '' + format_type: unity_date + third_party_settings: { } + weight: 0 + region: content + field_teaser: + type: string + label: hidden + settings: + link_to_entity: false + third_party_settings: { } + weight: 1 + region: content +hidden: + body: true + content_moderation_control: true + field_archive: true + field_meta_tags: true + field_photo: true + langcode: true + links: true + search_api_excerpt: true diff --git a/project/config/boundarycommission/config/core.entity_view_display.node.news.default.yml b/project/config/boundarycommission/config/core.entity_view_display.node.news.default.yml new file mode 100644 index 000000000..79e6adaa0 --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_view_display.node.news.default.yml @@ -0,0 +1,56 @@ +uuid: cf9b0e74-96bc-48fc-8048-5f89abded7a6 +langcode: en +status: true +dependencies: + config: + - field.field.node.news.body + - field.field.node.news.field_archive + - field.field.node.news.field_meta_tags + - field.field.node.news.field_photo + - field.field.node.news.field_published_date + - field.field.node.news.field_teaser + - node.type.news + module: + - datetime + - text + - user +_core: + default_config_hash: N-zm1nCnhgYwXANGav75TCg-_kvNUUbT--KKS8PLKgM +id: node.news.default +targetEntityType: node +bundle: news +mode: default +content: + body: + type: text_default + label: hidden + settings: { } + third_party_settings: { } + weight: 2 + region: content + field_photo: + type: entity_reference_entity_view + label: hidden + settings: + view_mode: landscape_float + link: false + third_party_settings: { } + weight: 1 + region: content + field_published_date: + type: datetime_default + label: above + settings: + timezone_override: '' + format_type: unity_date + third_party_settings: { } + weight: 0 + region: content +hidden: + content_moderation_control: true + field_archive: true + field_meta_tags: true + field_teaser: true + langcode: true + links: true + search_api_excerpt: true diff --git a/project/config/boundarycommission/config/core.entity_view_display.node.news.diff.yml b/project/config/boundarycommission/config/core.entity_view_display.node.news.diff.yml new file mode 100644 index 000000000..b8d424618 --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_view_display.node.news.diff.yml @@ -0,0 +1,107 @@ +uuid: 928aba9b-52b4-4d4a-883b-0e684b0d299b +langcode: en +status: true +dependencies: + config: + - core.entity_view_mode.node.diff + - field.field.node.news.body + - field.field.node.news.field_archive + - field.field.node.news.field_meta_tags + - field.field.node.news.field_photo + - field.field.node.news.field_published_date + - field.field.node.news.field_teaser + - node.type.news + module: + - datetime + - field_group + - layout_builder + - metatag + - text + - user +third_party_settings: + layout_builder: + enabled: false + allow_custom: false + field_group: + group_additional_content_details: + children: + - field_archive + - field_teaser + - field_meta_tags + label: 'Additional content details' + parent_name: '' + region: content + weight: 5 + format_type: html_element + format_settings: + classes: field-collection + id: '' + element: div + show_label: false + label_element: h3 + label_element_classes: '' + attributes: '' + effect: none + speed: fast +_core: + default_config_hash: ElksGJzjUxwYGlvHiX7g8ocPamDh8hURTB7lEmD_WIM +id: node.news.diff +targetEntityType: node +bundle: news +mode: diff +content: + body: + type: text_default + label: hidden + settings: { } + third_party_settings: { } + weight: 4 + region: content + field_archive: + type: boolean + label: above + settings: + format: default + format_custom_false: '' + format_custom_true: '' + third_party_settings: { } + weight: 0 + region: content + field_meta_tags: + type: metatag_empty_formatter + label: inline + settings: { } + third_party_settings: { } + weight: 2 + region: content + field_photo: + type: entity_reference_entity_view + label: hidden + settings: + view_mode: landscape_float + link: false + third_party_settings: { } + weight: 3 + region: content + field_published_date: + type: datetime_default + label: inline + settings: + timezone_override: '' + format_type: unity_date + third_party_settings: { } + weight: 1 + region: content + field_teaser: + type: string + label: hidden + settings: + link_to_entity: false + third_party_settings: { } + weight: 1 + region: content +hidden: + content_moderation_control: true + langcode: true + links: true + search_api_excerpt: true diff --git a/project/config/boundarycommission/config/core.entity_view_display.node.news.search_result.yml b/project/config/boundarycommission/config/core.entity_view_display.node.news.search_result.yml new file mode 100644 index 000000000..23751e015 --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_view_display.node.news.search_result.yml @@ -0,0 +1,54 @@ +uuid: b2a35b75-2da4-4f49-ba07-fe05f7db54eb +langcode: en +status: true +dependencies: + config: + - core.entity_view_mode.node.search_result + - field.field.node.news.body + - field.field.node.news.field_archive + - field.field.node.news.field_meta_tags + - field.field.node.news.field_photo + - field.field.node.news.field_published_date + - field.field.node.news.field_teaser + - node.type.news + module: + - datetime + - layout_builder + - user +third_party_settings: + layout_builder: + enabled: false + allow_custom: false +_core: + default_config_hash: N-zm1nCnhgYwXANGav75TCg-_kvNUUbT--KKS8PLKgM +id: node.news.search_result +targetEntityType: node +bundle: news +mode: search_result +content: + field_published_date: + type: datetime_default + label: hidden + settings: + timezone_override: '' + format_type: unity_date + third_party_settings: { } + weight: 0 + region: content + field_teaser: + type: string + label: hidden + settings: + link_to_entity: false + third_party_settings: { } + weight: 1 + region: content +hidden: + body: true + content_moderation_control: true + field_archive: true + field_meta_tags: true + field_photo: true + langcode: true + links: true + search_api_excerpt: true diff --git a/project/config/boundarycommission/config/core.entity_view_display.node.news.teaser.yml b/project/config/boundarycommission/config/core.entity_view_display.node.news.teaser.yml new file mode 100644 index 000000000..1229a4ca9 --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_view_display.node.news.teaser.yml @@ -0,0 +1,56 @@ +uuid: 40995719-29d2-4c90-b306-2f9cdb44c349 +langcode: en +status: true +dependencies: + config: + - core.entity_view_mode.node.teaser + - field.field.node.news.body + - field.field.node.news.field_archive + - field.field.node.news.field_meta_tags + - field.field.node.news.field_photo + - field.field.node.news.field_published_date + - field.field.node.news.field_teaser + - node.type.news + module: + - datetime + - user +_core: + default_config_hash: AF_DHgr-5ZIsJvnD5UmT0RDbIkmWZ0HeItZgySVGGIA +id: node.news.teaser +targetEntityType: node +bundle: news +mode: teaser +content: + field_photo: + type: entity_reference_entity_view + label: hidden + settings: + view_mode: unity_3_col_images + link: false + third_party_settings: { } + weight: 0 + region: content + field_published_date: + type: datetime_default + label: inline + settings: + timezone_override: '' + format_type: unity_date + third_party_settings: { } + weight: 1 + region: content + field_teaser: + type: string + label: hidden + settings: + link_to_entity: false + third_party_settings: { } + weight: 2 + region: content +hidden: + body: true + content_moderation_control: true + field_archive: true + field_meta_tags: true + langcode: true + links: true diff --git a/project/config/boundarycommission/config/core.entity_view_display.node.publication.archive.yml b/project/config/boundarycommission/config/core.entity_view_display.node.publication.archive.yml new file mode 100644 index 000000000..dcab44a26 --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_view_display.node.publication.archive.yml @@ -0,0 +1,47 @@ +uuid: c65bc982-f0c2-4526-a593-a86866368229 +langcode: en +status: true +dependencies: + config: + - core.entity_view_mode.node.archive + - field.field.node.publication.body + - field.field.node.publication.field_archive + - field.field.node.publication.field_attachment + - field.field.node.publication.field_meta_tags + - field.field.node.publication.field_publication_type + - field.field.node.publication.field_published_date + - node.type.publication + module: + - datetime + - layout_builder + - user +third_party_settings: + layout_builder: + enabled: false + allow_custom: false +_core: + default_config_hash: dGe_U65t-a-PtVI1RO755kulh2XfPgvblOXVKquzmyU +id: node.publication.archive +targetEntityType: node +bundle: publication +mode: archive +content: + field_published_date: + type: datetime_default + label: hidden + settings: + timezone_override: '' + format_type: unity_date + third_party_settings: { } + weight: 0 + region: content +hidden: + body: true + content_moderation_control: true + field_archive: true + field_attachment: true + field_meta_tags: true + field_publication_type: true + langcode: true + links: true + search_api_excerpt: true diff --git a/project/config/boundarycommission/config/core.entity_view_display.node.publication.default.yml b/project/config/boundarycommission/config/core.entity_view_display.node.publication.default.yml new file mode 100644 index 000000000..6c7d8415e --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_view_display.node.publication.default.yml @@ -0,0 +1,63 @@ +uuid: c3b7edd6-fe2f-4b3c-ac64-ca9a5f752b21 +langcode: en +status: true +dependencies: + config: + - field.field.node.publication.body + - field.field.node.publication.field_archive + - field.field.node.publication.field_attachment + - field.field.node.publication.field_meta_tags + - field.field.node.publication.field_publication_type + - field.field.node.publication.field_published_date + - node.type.publication + module: + - datetime + - text + - user +_core: + default_config_hash: dGe_U65t-a-PtVI1RO755kulh2XfPgvblOXVKquzmyU +id: node.publication.default +targetEntityType: node +bundle: publication +mode: default +content: + body: + type: text_default + label: above + settings: { } + third_party_settings: { } + weight: 2 + region: content + field_attachment: + type: entity_reference_entity_view + label: above + settings: + view_mode: embed + link: false + third_party_settings: { } + weight: 3 + region: content + field_publication_type: + type: entity_reference_label + label: above + settings: + link: true + third_party_settings: { } + weight: 1 + region: content + field_published_date: + type: datetime_default + label: hidden + settings: + timezone_override: '' + format_type: unity_date + third_party_settings: { } + weight: 0 + region: content +hidden: + content_moderation_control: true + field_archive: true + field_meta_tags: true + langcode: true + links: true + search_api_excerpt: true diff --git a/project/config/boundarycommission/config/core.entity_view_display.node.publication.diff.yml b/project/config/boundarycommission/config/core.entity_view_display.node.publication.diff.yml new file mode 100644 index 000000000..4cb599e81 --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_view_display.node.publication.diff.yml @@ -0,0 +1,106 @@ +uuid: 172a7d77-876c-4b9c-bb7e-c19368a98a2f +langcode: en +status: true +dependencies: + config: + - core.entity_view_mode.node.diff + - field.field.node.publication.body + - field.field.node.publication.field_archive + - field.field.node.publication.field_attachment + - field.field.node.publication.field_meta_tags + - field.field.node.publication.field_publication_type + - field.field.node.publication.field_published_date + - node.type.publication + module: + - datetime + - field_group + - layout_builder + - metatag + - text + - user +third_party_settings: + layout_builder: + enabled: false + allow_custom: false + field_group: + group_additional_content_details: + children: + - field_archive + - field_meta_tags + label: 'Additional content details' + parent_name: '' + region: content + weight: 4 + format_type: html_element + format_settings: + classes: field-collection + id: '' + element: div + show_label: false + label_element: h3 + label_element_classes: '' + attributes: '' + effect: none + speed: fast +_core: + default_config_hash: ALg0vkl0GxZI7rSi5bu_S1YfTFR4tz_BZoE3rau5z88 +id: node.publication.diff +targetEntityType: node +bundle: publication +mode: diff +content: + body: + type: text_default + label: hidden + settings: { } + third_party_settings: { } + weight: 0 + region: content + field_archive: + type: boolean + label: above + settings: + format: default + format_custom_false: '' + format_custom_true: '' + third_party_settings: { } + weight: 0 + region: content + field_attachment: + type: entity_reference_entity_view + label: inline + settings: + view_mode: embed + link: false + third_party_settings: { } + weight: 3 + region: content + field_meta_tags: + type: metatag_empty_formatter + label: inline + settings: { } + third_party_settings: { } + weight: 1 + region: content + field_publication_type: + type: entity_reference_label + label: inline + settings: + link: true + third_party_settings: { } + weight: 2 + region: content + field_published_date: + type: datetime_default + label: inline + settings: + timezone_override: '' + format_type: unity_date + third_party_settings: { } + weight: 1 + region: content +hidden: + content_moderation_control: true + langcode: true + links: true + search_api_excerpt: true diff --git a/project/config/boundarycommission/config/core.entity_view_display.node.publication.search_result.yml b/project/config/boundarycommission/config/core.entity_view_display.node.publication.search_result.yml new file mode 100644 index 000000000..35fd9d7fe --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_view_display.node.publication.search_result.yml @@ -0,0 +1,54 @@ +uuid: 600ef7a6-1482-47d3-830d-ec898c9426cc +langcode: en +status: true +dependencies: + config: + - core.entity_view_mode.node.search_result + - field.field.node.publication.body + - field.field.node.publication.field_archive + - field.field.node.publication.field_attachment + - field.field.node.publication.field_meta_tags + - field.field.node.publication.field_publication_type + - field.field.node.publication.field_published_date + - node.type.publication + module: + - datetime + - layout_builder + - user +third_party_settings: + layout_builder: + enabled: false + allow_custom: false +_core: + default_config_hash: dGe_U65t-a-PtVI1RO755kulh2XfPgvblOXVKquzmyU +id: node.publication.search_result +targetEntityType: node +bundle: publication +mode: search_result +content: + field_publication_type: + type: entity_reference_label + label: hidden + settings: + link: false + third_party_settings: { } + weight: 1 + region: content + field_published_date: + type: datetime_default + label: inline + settings: + timezone_override: '' + format_type: unity_date + third_party_settings: { } + weight: 0 + region: content +hidden: + body: true + content_moderation_control: true + field_archive: true + field_attachment: true + field_meta_tags: true + langcode: true + links: true + search_api_excerpt: true diff --git a/project/config/boundarycommission/config/core.entity_view_display.node.publication.teaser.yml b/project/config/boundarycommission/config/core.entity_view_display.node.publication.teaser.yml new file mode 100644 index 000000000..d02231fb0 --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_view_display.node.publication.teaser.yml @@ -0,0 +1,42 @@ +uuid: c0356e9a-5508-4a7f-8ace-cfaed9158064 +langcode: en +status: true +dependencies: + config: + - core.entity_view_mode.node.teaser + - field.field.node.publication.body + - field.field.node.publication.field_archive + - field.field.node.publication.field_attachment + - field.field.node.publication.field_meta_tags + - field.field.node.publication.field_publication_type + - field.field.node.publication.field_published_date + - node.type.publication + module: + - datetime + - user +_core: + default_config_hash: pADwKkEDzI5AJltJfqCe5pvrW5GX7inMqfLS27hYgxM +id: node.publication.teaser +targetEntityType: node +bundle: publication +mode: teaser +content: + field_published_date: + type: datetime_default + label: inline + settings: + timezone_override: '' + format_type: unity_date + third_party_settings: { } + weight: 0 + region: content +hidden: + body: true + content_moderation_control: true + field_archive: true + field_attachment: true + field_meta_tags: true + field_publication_type: true + langcode: true + links: true + search_api_excerpt: true diff --git a/project/config/boundarycommission/config/core.entity_view_display.node.respresentations.default.yml b/project/config/boundarycommission/config/core.entity_view_display.node.respresentations.default.yml new file mode 100644 index 000000000..7ec909b2b --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_view_display.node.respresentations.default.yml @@ -0,0 +1,48 @@ +uuid: 1ed22e1a-2022-46d8-96c7-f394a6fee730 +langcode: en +status: true +dependencies: + config: + - field.field.node.respresentations.field_attachment + - field.field.node.respresentations.field_meta_tags + - field.field.node.respresentations.field_representation_stage + - field.field.node.respresentations.field_response_type + - node.type.respresentations + module: + - user +id: node.respresentations.default +targetEntityType: node +bundle: respresentations +mode: default +content: + field_attachment: + type: entity_reference_entity_view + label: above + settings: + view_mode: embed + link: false + third_party_settings: { } + weight: 2 + region: content + field_representation_stage: + type: entity_reference_label + label: above + settings: + link: true + third_party_settings: { } + weight: 0 + region: content + field_response_type: + type: entity_reference_label + label: above + settings: + link: true + third_party_settings: { } + weight: 1 + region: content +hidden: + content_moderation_control: true + field_meta_tags: true + langcode: true + links: true + search_api_excerpt: true diff --git a/project/config/boundarycommission/config/core.entity_view_display.node.respresentations.diff.yml b/project/config/boundarycommission/config/core.entity_view_display.node.respresentations.diff.yml new file mode 100644 index 000000000..a8a408f0f --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_view_display.node.respresentations.diff.yml @@ -0,0 +1,81 @@ +uuid: 171c0644-4c8c-4c7b-b4df-5796ab5fd9ae +langcode: en +status: true +dependencies: + config: + - core.entity_view_mode.node.diff + - field.field.node.respresentations.field_attachment + - field.field.node.respresentations.field_meta_tags + - field.field.node.respresentations.field_representation_stage + - field.field.node.respresentations.field_response_type + - node.type.respresentations + module: + - field_group + - layout_builder + - metatag + - user +third_party_settings: + layout_builder: + enabled: false + allow_custom: false + field_group: + group_additional_content_details: + children: + - field_meta_tags + label: 'Additional content details' + parent_name: '' + region: content + weight: 3 + format_type: html_element + format_settings: + classes: field-collection + show_empty_fields: false + id: '' + element: div + show_label: false + label_element: h3 + label_element_classes: '' + attributes: '' + effect: none + speed: fast +id: node.respresentations.diff +targetEntityType: node +bundle: respresentations +mode: diff +content: + field_attachment: + type: entity_reference_label + label: above + settings: + link: true + third_party_settings: { } + weight: 2 + region: content + field_meta_tags: + type: metatag_empty_formatter + label: inline + settings: { } + third_party_settings: { } + weight: 1 + region: content + field_representation_stage: + type: entity_reference_label + label: above + settings: + link: true + third_party_settings: { } + weight: 0 + region: content + field_response_type: + type: entity_reference_label + label: above + settings: + link: true + third_party_settings: { } + weight: 1 + region: content +hidden: + content_moderation_control: true + langcode: true + links: true + search_api_excerpt: true diff --git a/project/config/boundarycommission/config/core.entity_view_display.node.webform.default.yml b/project/config/boundarycommission/config/core.entity_view_display.node.webform.default.yml new file mode 100644 index 000000000..3f1909278 --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_view_display.node.webform.default.yml @@ -0,0 +1,40 @@ +uuid: ec5a946a-47c9-445d-a244-c65fa17fdb6f +langcode: en +status: true +dependencies: + config: + - field.field.node.webform.body + - field.field.node.webform.webform + - node.type.webform + module: + - text + - user + - webform +_core: + default_config_hash: 3r1i0UMUbeNHhvmiqHDYznoS4G9XR1jq6lQ49r80lDE +id: node.webform.default +targetEntityType: node +bundle: webform +mode: default +content: + body: + label: hidden + type: text_default + weight: 101 + settings: { } + third_party_settings: { } + region: content + links: + weight: 100 + settings: { } + third_party_settings: { } + region: content + webform: + weight: 102 + label: hidden + settings: { } + third_party_settings: { } + type: webform_entity_reference_entity_view + region: content +hidden: + langcode: true diff --git a/project/config/boundarycommission/config/core.entity_view_display.node.webform.teaser.yml b/project/config/boundarycommission/config/core.entity_view_display.node.webform.teaser.yml new file mode 100644 index 000000000..d0acfc428 --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_view_display.node.webform.teaser.yml @@ -0,0 +1,35 @@ +uuid: 5bea0fc7-664c-4457-a769-f2e1f1b5600b +langcode: en +status: true +dependencies: + config: + - core.entity_view_mode.node.teaser + - field.field.node.webform.body + - field.field.node.webform.webform + - node.type.webform + module: + - text + - user +_core: + default_config_hash: Ls5l3Xs7-YstJnurxFLKj38Exqr2JMZs1j9YeX1Kh2o +id: node.webform.teaser +targetEntityType: node +bundle: webform +mode: teaser +content: + body: + label: hidden + type: text_summary_or_trimmed + weight: 101 + settings: + trim_length: 600 + third_party_settings: { } + region: content + links: + weight: 100 + settings: { } + third_party_settings: { } + region: content +hidden: + langcode: true + webform: true diff --git a/project/config/boundarycommission/config/core.entity_view_display.paragraph.faq_accordion.default.yml b/project/config/boundarycommission/config/core.entity_view_display.paragraph.faq_accordion.default.yml new file mode 100644 index 000000000..4a779797a --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_view_display.paragraph.faq_accordion.default.yml @@ -0,0 +1,33 @@ +uuid: 509d4407-4964-4577-90c5-4f127eef5ede +langcode: en +status: true +dependencies: + config: + - field.field.paragraph.faq_accordion.field_answer + - field.field.paragraph.faq_accordion.field_question + - paragraphs.paragraphs_type.faq_accordion + module: + - text +_core: + default_config_hash: jV91KjQhsEuLBQeBUY_-SkuQT9kvrNs-VCjY0XjhTfI +id: paragraph.faq_accordion.default +targetEntityType: paragraph +bundle: faq_accordion +mode: default +content: + field_answer: + type: text_default + label: hidden + settings: { } + third_party_settings: { } + weight: 1 + region: content + field_question: + type: string + label: hidden + settings: + link_to_entity: false + third_party_settings: { } + weight: 0 + region: content +hidden: { } diff --git a/project/config/boundarycommission/config/core.entity_view_display.user.user.compact.yml b/project/config/boundarycommission/config/core.entity_view_display.user.user.compact.yml new file mode 100644 index 000000000..9361f815f --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_view_display.user.user.compact.yml @@ -0,0 +1,32 @@ +uuid: d7deaf47-c3ad-4c7e-9680-f038dfb69289 +langcode: en +status: true +dependencies: + config: + - core.entity_view_mode.user.compact + - field.field.user.user.user_picture + - image.style.thumbnail + module: + - image + - user +_core: + default_config_hash: '-cLsS3M3JycipXQt9rEb81_HxKneReoGuRh8ijcOPXs' +id: user.user.compact +targetEntityType: user +bundle: user +mode: compact +content: + user_picture: + type: image + weight: 0 + region: content + settings: + image_style: thumbnail + image_link: content + image_loading: + attribute: lazy + third_party_settings: { } + label: hidden +hidden: + langcode: true + member_for: true diff --git a/project/config/boundarycommission/config/core.entity_view_display.user.user.default.yml b/project/config/boundarycommission/config/core.entity_view_display.user.user.default.yml new file mode 100644 index 000000000..e258e77b5 --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_view_display.user.user.default.yml @@ -0,0 +1,33 @@ +uuid: b8c9bd54-2019-4424-ab4c-e1b9ac4c0f33 +langcode: en +status: true +dependencies: + config: + - field.field.user.user.user_picture + - image.style.thumbnail + module: + - image + - user +_core: + default_config_hash: V51QPCKkgNREKtSmB9Iu2wmAMEpktVpnzklWaZV8UYo +id: user.user.default +targetEntityType: user +bundle: user +mode: default +content: + member_for: + weight: 5 + region: content + user_picture: + type: image + weight: 0 + region: content + settings: + image_style: thumbnail + image_link: content + image_loading: + attribute: lazy + third_party_settings: { } + label: hidden +hidden: + langcode: true diff --git a/project/config/boundarycommission/config/core.entity_view_mode.block.token.yml b/project/config/boundarycommission/config/core.entity_view_mode.block.token.yml new file mode 100644 index 000000000..02f8fb58d --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_view_mode.block.token.yml @@ -0,0 +1,12 @@ +uuid: 119bb2cf-ffcb-4986-a5d3-6ff75933ebfb +langcode: en +status: true +dependencies: + module: + - block +_core: + default_config_hash: AJ4KPUipTz1VsDPfMT_D9pamgbfXUJBgvYVel4P1DHE +id: block.token +label: Token +targetEntityType: block +cache: true diff --git a/project/config/boundarycommission/config/core.entity_view_mode.block_content.full.yml b/project/config/boundarycommission/config/core.entity_view_mode.block_content.full.yml new file mode 100644 index 000000000..4c858e1d0 --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_view_mode.block_content.full.yml @@ -0,0 +1,12 @@ +uuid: bffcdb33-7575-491d-ba0b-b731a4f4c515 +langcode: en +status: false +dependencies: + module: + - block_content +_core: + default_config_hash: 4tedlMuvQjDOdvHdw86_e-2Rt78aR7TGFMfOK8Ejppg +id: block_content.full +label: Full +targetEntityType: block_content +cache: true diff --git a/project/config/boundarycommission/config/core.entity_view_mode.block_content.token.yml b/project/config/boundarycommission/config/core.entity_view_mode.block_content.token.yml new file mode 100644 index 000000000..a90f21d91 --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_view_mode.block_content.token.yml @@ -0,0 +1,12 @@ +uuid: 682dff01-b4c7-40a1-a63e-105e05c5811b +langcode: en +status: true +dependencies: + module: + - block_content +_core: + default_config_hash: JqAPZHEa9m6Cqy0vdpV5Jjdk07YLKkE_EE9ivvB2xhQ +id: block_content.token +label: Token +targetEntityType: block_content +cache: true diff --git a/project/config/boundarycommission/config/core.entity_view_mode.content_moderation_state.token.yml b/project/config/boundarycommission/config/core.entity_view_mode.content_moderation_state.token.yml new file mode 100644 index 000000000..85c1eed63 --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_view_mode.content_moderation_state.token.yml @@ -0,0 +1,10 @@ +uuid: 737eacef-25e3-4afa-b938-811dc1efbb8e +langcode: en +status: true +dependencies: + module: + - content_moderation +id: content_moderation_state.token +label: Token +targetEntityType: content_moderation_state +cache: true diff --git a/project/config/boundarycommission/config/core.entity_view_mode.file.token.yml b/project/config/boundarycommission/config/core.entity_view_mode.file.token.yml new file mode 100644 index 000000000..bd2ce0157 --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_view_mode.file.token.yml @@ -0,0 +1,12 @@ +uuid: add81e94-2d5d-40db-bd46-65688d9b413c +langcode: en +status: true +dependencies: + module: + - file +_core: + default_config_hash: T6IiNXJhdrBudWJ_guxnUz3p71T0lFcidLSTM9VlFl8 +id: file.token +label: Token +targetEntityType: file +cache: true diff --git a/project/config/boundarycommission/config/core.entity_view_mode.media.article_float.yml b/project/config/boundarycommission/config/core.entity_view_mode.media.article_float.yml new file mode 100644 index 000000000..7d4e80041 --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_view_mode.media.article_float.yml @@ -0,0 +1,12 @@ +uuid: faedf619-aaa8-4138-acb0-8cd6e438881a +langcode: en +status: true +dependencies: + module: + - media +_core: + default_config_hash: ZlkfQbuDCyUnju3Tx9rh_7x12YT-Ca3-r3UOxZDgg24 +id: media.article_float +label: 'Article float' +targetEntityType: media +cache: true diff --git a/project/config/boundarycommission/config/core.entity_view_mode.media.article_float_expandable.yml b/project/config/boundarycommission/config/core.entity_view_mode.media.article_float_expandable.yml new file mode 100644 index 000000000..e8f3088da --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_view_mode.media.article_float_expandable.yml @@ -0,0 +1,12 @@ +uuid: 66be2909-76c5-4af9-b105-3db76eb5d5b7 +langcode: en +status: true +dependencies: + module: + - media +_core: + default_config_hash: PmW5AU2JMjCg1OGrVFf8uob72UaRX9EIvpgot1VsVhE +id: media.article_float_expandable +label: 'Article float expandable' +targetEntityType: media +cache: true diff --git a/project/config/boundarycommission/config/core.entity_view_mode.media.article_full.yml b/project/config/boundarycommission/config/core.entity_view_mode.media.article_full.yml new file mode 100644 index 000000000..463979719 --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_view_mode.media.article_full.yml @@ -0,0 +1,12 @@ +uuid: a951f7d9-2d7b-4166-85df-39c9592f0810 +langcode: en +status: true +dependencies: + module: + - media +_core: + default_config_hash: 95EdkutKV-wywHMx7h_A8tIbRDCItQMvrwOijDMm4ps +id: media.article_full +label: 'Article full' +targetEntityType: media +cache: true diff --git a/project/config/boundarycommission/config/core.entity_view_mode.media.article_full_expandable.yml b/project/config/boundarycommission/config/core.entity_view_mode.media.article_full_expandable.yml new file mode 100644 index 000000000..307d8127e --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_view_mode.media.article_full_expandable.yml @@ -0,0 +1,12 @@ +uuid: 44426814-4b4a-4b90-a76b-5ef1bf7212e3 +langcode: en +status: true +dependencies: + module: + - media +_core: + default_config_hash: gUAT_btUjQJnzWkUbTohNOF8oVo3TUP-P9iLP6xWob8 +id: media.article_full_expandable +label: 'Article full expandable' +targetEntityType: media +cache: true diff --git a/project/config/boundarycommission/config/core.entity_view_mode.media.banner_deep.yml b/project/config/boundarycommission/config/core.entity_view_mode.media.banner_deep.yml new file mode 100644 index 000000000..9fb80bec5 --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_view_mode.media.banner_deep.yml @@ -0,0 +1,12 @@ +uuid: df555187-c942-492e-879b-3d9b5a6f2fe1 +langcode: en +status: true +dependencies: + module: + - media +_core: + default_config_hash: TzN92qzn92mnZ7TRoXzOQ-ftgya-5X1W6nysET1jabw +id: media.banner_deep +label: 'Banner deep' +targetEntityType: media +cache: true diff --git a/project/config/boundarycommission/config/core.entity_view_mode.media.banner_thin.yml b/project/config/boundarycommission/config/core.entity_view_mode.media.banner_thin.yml new file mode 100644 index 000000000..de7ed5ec9 --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_view_mode.media.banner_thin.yml @@ -0,0 +1,12 @@ +uuid: 919d7c25-0e28-4dfd-be9a-df7da853a7c9 +langcode: en +status: true +dependencies: + module: + - media +_core: + default_config_hash: DWbuvXsSQKd7FKYsX6COWIZWaC8vgaUmp8C4n2UQZ4Q +id: media.banner_thin +label: 'Banner thin' +targetEntityType: media +cache: true diff --git a/project/config/boundarycommission/config/core.entity_view_mode.media.card_large.yml b/project/config/boundarycommission/config/core.entity_view_mode.media.card_large.yml new file mode 100644 index 000000000..b3c99f939 --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_view_mode.media.card_large.yml @@ -0,0 +1,12 @@ +uuid: fdadbede-c297-4231-abb1-2e8479f7b6e9 +langcode: en +status: true +dependencies: + module: + - media +_core: + default_config_hash: ibgAUwtfWp27wUMO9Witbj-NVffRyJMXHbSskI3DGWs +id: media.card_large +label: 'Card large' +targetEntityType: media +cache: true diff --git a/project/config/boundarycommission/config/core.entity_view_mode.media.card_small.yml b/project/config/boundarycommission/config/core.entity_view_mode.media.card_small.yml new file mode 100644 index 000000000..028fd314b --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_view_mode.media.card_small.yml @@ -0,0 +1,12 @@ +uuid: fa9216bb-2adb-423e-9341-014b5ee2892b +langcode: en +status: true +dependencies: + module: + - media +_core: + default_config_hash: 19qMNh1skJRUBIfjgvS3btWng7iBRpV7icOdUgG5huQ +id: media.card_small +label: 'Card small' +targetEntityType: media +cache: true diff --git a/project/config/boundarycommission/config/core.entity_view_mode.media.embed.yml b/project/config/boundarycommission/config/core.entity_view_mode.media.embed.yml new file mode 100644 index 000000000..cdbef12b8 --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_view_mode.media.embed.yml @@ -0,0 +1,12 @@ +uuid: b1b328c4-6509-4a32-8008-df78a760855f +langcode: en +status: true +dependencies: + module: + - media +_core: + default_config_hash: sLYzJkSFNu-BSmCzg8KgzL96uq3oi0mM45gdrExVOTU +id: media.embed +label: Embed +targetEntityType: media +cache: true diff --git a/project/config/boundarycommission/config/core.entity_view_mode.media.feature_card.yml b/project/config/boundarycommission/config/core.entity_view_mode.media.feature_card.yml new file mode 100644 index 000000000..02f0a05d1 --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_view_mode.media.feature_card.yml @@ -0,0 +1,12 @@ +uuid: cf8a11d9-a966-408f-960b-93e95db508f1 +langcode: en +status: true +dependencies: + module: + - media +_core: + default_config_hash: 47jG0sEt_pH2gOfIDt2IcoyeWIpO62TqybyoDWH8VZI +id: media.feature_card +label: 'Feature card' +targetEntityType: media +cache: true diff --git a/project/config/boundarycommission/config/core.entity_view_mode.media.full.yml b/project/config/boundarycommission/config/core.entity_view_mode.media.full.yml new file mode 100644 index 000000000..8f4e261ef --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_view_mode.media.full.yml @@ -0,0 +1,12 @@ +uuid: 3d3455a3-04aa-4895-abec-23435e48d254 +langcode: en +status: false +dependencies: + module: + - media +_core: + default_config_hash: 6NBUEuGmlkClK8Fb76tSMMpO2eZ4LWCBdbUk4z7CuP0 +id: media.full +label: 'Full content' +targetEntityType: media +cache: true diff --git a/project/config/boundarycommission/config/core.entity_view_mode.media.landing_full.yml b/project/config/boundarycommission/config/core.entity_view_mode.media.landing_full.yml new file mode 100644 index 000000000..a464b3f1d --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_view_mode.media.landing_full.yml @@ -0,0 +1,12 @@ +uuid: 16add8f7-3694-4134-a1df-09131ebf3e52 +langcode: en +status: true +dependencies: + module: + - media +_core: + default_config_hash: y7_NBFP_3eud7oOGM1XQuGIrokEQ_1CyU3iuD6Qln5A +id: media.landing_full +label: 'Landing full' +targetEntityType: media +cache: true diff --git a/project/config/boundarycommission/config/core.entity_view_mode.media.landscape_float.yml b/project/config/boundarycommission/config/core.entity_view_mode.media.landscape_float.yml new file mode 100644 index 000000000..6dfb1325b --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_view_mode.media.landscape_float.yml @@ -0,0 +1,12 @@ +uuid: 6fd6a5b5-7be8-420c-a502-af24b6b1f549 +langcode: en +status: true +dependencies: + module: + - media +_core: + default_config_hash: 6WRwWG7tqHaz5AOyNbueQABixUrDYXRf9k2KJBRV5ZI +id: media.landscape_float +label: 'Landscape float' +targetEntityType: media +cache: true diff --git a/project/config/boundarycommission/config/core.entity_view_mode.media.landscape_float_xp.yml b/project/config/boundarycommission/config/core.entity_view_mode.media.landscape_float_xp.yml new file mode 100644 index 000000000..094cbdfbf --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_view_mode.media.landscape_float_xp.yml @@ -0,0 +1,12 @@ +uuid: 34e74a0b-0223-445b-bc24-fc8e15369374 +langcode: en +status: true +dependencies: + module: + - media +_core: + default_config_hash: k_n39qDDMAHhd_n12Sl1UpEkznOQJ9yAqH4dI0u42zU +id: media.landscape_float_xp +label: 'Landscape float XP' +targetEntityType: media +cache: true diff --git a/project/config/boundarycommission/config/core.entity_view_mode.media.landscape_full.yml b/project/config/boundarycommission/config/core.entity_view_mode.media.landscape_full.yml new file mode 100644 index 000000000..ace6203e9 --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_view_mode.media.landscape_full.yml @@ -0,0 +1,12 @@ +uuid: e76234d7-33b3-44e0-920d-a81967019467 +langcode: en +status: true +dependencies: + module: + - media +_core: + default_config_hash: '-v9hNy-UWfCgOmqvA1U7IkAc_57QyFOkEjRroM1LwvI' +id: media.landscape_full +label: 'Landscape full' +targetEntityType: media +cache: true diff --git a/project/config/boundarycommission/config/core.entity_view_mode.media.landscape_full_xp.yml b/project/config/boundarycommission/config/core.entity_view_mode.media.landscape_full_xp.yml new file mode 100644 index 000000000..3c53f90f4 --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_view_mode.media.landscape_full_xp.yml @@ -0,0 +1,12 @@ +uuid: 025dae35-94c5-4408-8fd6-963aa6d9f7ae +langcode: en +status: true +dependencies: + module: + - media +_core: + default_config_hash: LkLiUexgUuQmCFLrxb-zCgDDsh7886PIA3FaohIHOLc +id: media.landscape_full_xp +label: 'Landscape full XP' +targetEntityType: media +cache: true diff --git a/project/config/boundarycommission/config/core.entity_view_mode.media.media_library.yml b/project/config/boundarycommission/config/core.entity_view_mode.media.media_library.yml new file mode 100644 index 000000000..f8204937c --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_view_mode.media.media_library.yml @@ -0,0 +1,15 @@ +uuid: 3e996809-5922-416c-bc50-817ccf8b3d2f +langcode: en +status: true +dependencies: + module: + - media + enforced: + module: + - media_library +_core: + default_config_hash: Tdhz-aDHfDoV1Ul9umtItxGTrjkFzoNAkDw8FWXjYA0 +id: media.media_library +label: 'Media library' +targetEntityType: media +cache: true diff --git a/project/config/boundarycommission/config/core.entity_view_mode.media.news_thumbnail.yml b/project/config/boundarycommission/config/core.entity_view_mode.media.news_thumbnail.yml new file mode 100644 index 000000000..321187029 --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_view_mode.media.news_thumbnail.yml @@ -0,0 +1,12 @@ +uuid: 522ba3b3-cf2e-4de2-9ead-3c7ed52a57fd +langcode: en +status: true +dependencies: + module: + - media +_core: + default_config_hash: eSfnWXj1W9gy57hiPnIFxtohlr36qJlKgPpcA1lrSjY +id: media.news_thumbnail +label: 'News thumbnail' +targetEntityType: media +cache: true diff --git a/project/config/boundarycommission/config/core.entity_view_mode.media.portrait_float.yml b/project/config/boundarycommission/config/core.entity_view_mode.media.portrait_float.yml new file mode 100644 index 000000000..81daf5ded --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_view_mode.media.portrait_float.yml @@ -0,0 +1,12 @@ +uuid: 1eb869b2-3991-4bd4-afd1-77db2e33caeb +langcode: en +status: true +dependencies: + module: + - media +_core: + default_config_hash: SaPSB_yqm7tmeSPHY51-g6vMkDHcc72DQE1QvvWINK0 +id: media.portrait_float +label: 'Portrait float' +targetEntityType: media +cache: true diff --git a/project/config/boundarycommission/config/core.entity_view_mode.media.portrait_float_xp.yml b/project/config/boundarycommission/config/core.entity_view_mode.media.portrait_float_xp.yml new file mode 100644 index 000000000..4590ce467 --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_view_mode.media.portrait_float_xp.yml @@ -0,0 +1,12 @@ +uuid: 101f6f9f-ec6a-438d-9ffc-6961b17bec7d +langcode: en +status: true +dependencies: + module: + - media +_core: + default_config_hash: hm4ZIMk2klpQE59_KbbSubhWKWNzhbsh6scuNFs1BUI +id: media.portrait_float_xp +label: 'Portrait float XP' +targetEntityType: media +cache: true diff --git a/project/config/boundarycommission/config/core.entity_view_mode.media.portrait_full.yml b/project/config/boundarycommission/config/core.entity_view_mode.media.portrait_full.yml new file mode 100644 index 000000000..a1eac2ba5 --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_view_mode.media.portrait_full.yml @@ -0,0 +1,12 @@ +uuid: 45eddf19-2990-48bc-a865-dac1c6238e3f +langcode: en +status: true +dependencies: + module: + - media +_core: + default_config_hash: 0OPwF1OAUUKWrI9K8a1LWWKit2kgR8e0mzisgI3_9IU +id: media.portrait_full +label: 'Portrait full' +targetEntityType: media +cache: true diff --git a/project/config/boundarycommission/config/core.entity_view_mode.media.slide.yml b/project/config/boundarycommission/config/core.entity_view_mode.media.slide.yml new file mode 100644 index 000000000..d22e1dabd --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_view_mode.media.slide.yml @@ -0,0 +1,12 @@ +uuid: e3c9e01f-8c95-473b-bbe0-8af0e432ec03 +langcode: en +status: true +dependencies: + module: + - media +_core: + default_config_hash: XED0_QBcajoiwqjrbC9gpwP4BzffllaJ2Gg_u59Ewd4 +id: media.slide +label: Slideshow +targetEntityType: media +cache: true diff --git a/project/config/boundarycommission/config/core.entity_view_mode.media.token.yml b/project/config/boundarycommission/config/core.entity_view_mode.media.token.yml new file mode 100644 index 000000000..8e449e081 --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_view_mode.media.token.yml @@ -0,0 +1,10 @@ +uuid: 17d9262d-fc94-4d31-83a4-0a04d7e56830 +langcode: en +status: true +dependencies: + module: + - media +id: media.token +label: Token +targetEntityType: media +cache: true diff --git a/project/config/boundarycommission/config/core.entity_view_mode.media.unity_3_col_images.yml b/project/config/boundarycommission/config/core.entity_view_mode.media.unity_3_col_images.yml new file mode 100644 index 000000000..f5b025d81 --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_view_mode.media.unity_3_col_images.yml @@ -0,0 +1,12 @@ +uuid: a82022d3-a00f-40ec-a33d-6673e16a4917 +langcode: en +status: true +dependencies: + module: + - media +_core: + default_config_hash: hiN1aSgulAlDjkXN_9TLKAFNjY_98GI7Ww46ljmM7bo +id: media.unity_3_col_images +label: 'Unity 3 col images' +targetEntityType: media +cache: true diff --git a/project/config/boundarycommission/config/core.entity_view_mode.menu_link_content.token.yml b/project/config/boundarycommission/config/core.entity_view_mode.menu_link_content.token.yml new file mode 100644 index 000000000..2b1319e0d --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_view_mode.menu_link_content.token.yml @@ -0,0 +1,12 @@ +uuid: e9360167-9554-4404-aadb-01312d9fd649 +langcode: en +status: true +dependencies: + module: + - menu_link_content +_core: + default_config_hash: TTHbJnnmzx02KP2FNkAlzqP_BFdKZwAVb8hfUbRbxuk +id: menu_link_content.token +label: Token +targetEntityType: menu_link_content +cache: true diff --git a/project/config/boundarycommission/config/core.entity_view_mode.node.archive.yml b/project/config/boundarycommission/config/core.entity_view_mode.node.archive.yml new file mode 100644 index 000000000..af5f2f422 --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_view_mode.node.archive.yml @@ -0,0 +1,10 @@ +uuid: 16650976-0788-4d99-975a-39c8de2b07d3 +langcode: en +status: true +dependencies: + module: + - node +id: node.archive +label: Archive +targetEntityType: node +cache: true diff --git a/project/config/boundarycommission/config/core.entity_view_mode.node.diff.yml b/project/config/boundarycommission/config/core.entity_view_mode.node.diff.yml new file mode 100644 index 000000000..ec14d8bbc --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_view_mode.node.diff.yml @@ -0,0 +1,16 @@ +uuid: 785bc23c-0696-4f1b-a59e-f2a4add00c3b +langcode: en +status: false +dependencies: + module: + - node + enforced: + module: + - node + - diff +_core: + default_config_hash: rwHa5SzsLYKZu_czJuibd03MSNwIOLCnX1NTiuehytI +id: node.diff +label: 'Revision comparison' +targetEntityType: node +cache: true diff --git a/project/config/boundarycommission/config/core.entity_view_mode.node.full.yml b/project/config/boundarycommission/config/core.entity_view_mode.node.full.yml new file mode 100644 index 000000000..c57f17603 --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_view_mode.node.full.yml @@ -0,0 +1,12 @@ +uuid: cc5d72fb-9f59-4f37-b676-ab37bf369886 +langcode: en +status: false +dependencies: + module: + - node +_core: + default_config_hash: ElrtInxGjZd7GaapJ5O9n-ugi2hG2IxFivtgn0tHOsk +id: node.full +label: 'Full content' +targetEntityType: node +cache: true diff --git a/project/config/boundarycommission/config/core.entity_view_mode.node.rss.yml b/project/config/boundarycommission/config/core.entity_view_mode.node.rss.yml new file mode 100644 index 000000000..562cdf6bc --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_view_mode.node.rss.yml @@ -0,0 +1,12 @@ +uuid: 04b6b409-1dad-4515-8446-6f58329b24c2 +langcode: en +status: false +dependencies: + module: + - node +_core: + default_config_hash: vlYzr-rp2f9NMp-Qlr4sFjlqRq-90mco5-afLNGwCrU +id: node.rss +label: RSS +targetEntityType: node +cache: true diff --git a/project/config/boundarycommission/config/core.entity_view_mode.node.search_index.yml b/project/config/boundarycommission/config/core.entity_view_mode.node.search_index.yml new file mode 100644 index 000000000..db9efdc29 --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_view_mode.node.search_index.yml @@ -0,0 +1,12 @@ +uuid: d82b92cd-991d-4825-b8e1-9689651a8e07 +langcode: en +status: false +dependencies: + module: + - node +_core: + default_config_hash: fVFfJv_GzBRE-wpRHbfD5a3VjnhbEOXG6lvRd3uaccY +id: node.search_index +label: 'Search index' +targetEntityType: node +cache: true diff --git a/project/config/boundarycommission/config/core.entity_view_mode.node.search_result.yml b/project/config/boundarycommission/config/core.entity_view_mode.node.search_result.yml new file mode 100644 index 000000000..bff7d7f0e --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_view_mode.node.search_result.yml @@ -0,0 +1,12 @@ +uuid: 78369c30-0acf-4bcd-962a-0f666f675cfb +langcode: en +status: false +dependencies: + module: + - node +_core: + default_config_hash: 6GCOQ-jP2RbdbHA5YWQ6bT8CfGbqrBYKOSC_XY4E3ZM +id: node.search_result +label: 'Search result highlighting input' +targetEntityType: node +cache: true diff --git a/project/config/boundarycommission/config/core.entity_view_mode.node.teaser.yml b/project/config/boundarycommission/config/core.entity_view_mode.node.teaser.yml new file mode 100644 index 000000000..d97cee4c2 --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_view_mode.node.teaser.yml @@ -0,0 +1,12 @@ +uuid: d3184b7d-c124-47f6-b263-4051c7dd7bc8 +langcode: en +status: true +dependencies: + module: + - node +_core: + default_config_hash: Mz9qWr1kUYK0mjRAGDsr5XS6PvtZ24en_7ndt-pyWe4 +id: node.teaser +label: Teaser +targetEntityType: node +cache: true diff --git a/project/config/boundarycommission/config/core.entity_view_mode.node.token.yml b/project/config/boundarycommission/config/core.entity_view_mode.node.token.yml new file mode 100644 index 000000000..c3d6a081d --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_view_mode.node.token.yml @@ -0,0 +1,12 @@ +uuid: 60b80f17-e1dc-44f2-a3bd-f373afded581 +langcode: en +status: true +dependencies: + module: + - node +_core: + default_config_hash: vIX64lRX14_lPePewHfWVFSyTfJt0Yh-Lja05UgP8N0 +id: node.token +label: Token +targetEntityType: node +cache: true diff --git a/project/config/boundarycommission/config/core.entity_view_mode.paragraph.preview.yml b/project/config/boundarycommission/config/core.entity_view_mode.paragraph.preview.yml new file mode 100644 index 000000000..afad245b2 --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_view_mode.paragraph.preview.yml @@ -0,0 +1,12 @@ +uuid: e2a491ea-073d-4cb0-842a-7c9e0de60afb +langcode: en +status: true +dependencies: + module: + - paragraphs +_core: + default_config_hash: h3BeHVei4Lnyqbkao3YiF4KqoY-DhRvUNfEgKG8Rgjg +id: paragraph.preview +label: Preview +targetEntityType: paragraph +cache: true diff --git a/project/config/boundarycommission/config/core.entity_view_mode.path_alias.token.yml b/project/config/boundarycommission/config/core.entity_view_mode.path_alias.token.yml new file mode 100644 index 000000000..a2cc1bbbd --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_view_mode.path_alias.token.yml @@ -0,0 +1,12 @@ +uuid: 13bf6133-5d14-4ab5-a1b7-418ed708d736 +langcode: en +status: true +dependencies: + module: + - path_alias +_core: + default_config_hash: GiQY8TcbkMat1Lpyz5z9WMUYl6KWQ46XSdW-b5GOKrQ +id: path_alias.token +label: Token +targetEntityType: path_alias +cache: true diff --git a/project/config/boundarycommission/config/core.entity_view_mode.taxonomy_term.full.yml b/project/config/boundarycommission/config/core.entity_view_mode.taxonomy_term.full.yml new file mode 100644 index 000000000..75dcc3817 --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_view_mode.taxonomy_term.full.yml @@ -0,0 +1,12 @@ +uuid: a0638a93-7cbd-41d3-a883-e5e97a47ea87 +langcode: en +status: true +dependencies: + module: + - taxonomy +_core: + default_config_hash: '-PPKjsNQPvoIDjOuUAvlLocYD976MNjb9Zpgyz5_BWE' +id: taxonomy_term.full +label: 'Taxonomy term page' +targetEntityType: taxonomy_term +cache: true diff --git a/project/config/boundarycommission/config/core.entity_view_mode.taxonomy_term.token.yml b/project/config/boundarycommission/config/core.entity_view_mode.taxonomy_term.token.yml new file mode 100644 index 000000000..7b5acde6b --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_view_mode.taxonomy_term.token.yml @@ -0,0 +1,12 @@ +uuid: 2170f899-dff6-44c0-ac22-3b914b54c4e6 +langcode: en +status: true +dependencies: + module: + - taxonomy +_core: + default_config_hash: AQZt3mTM-HGFLxai2IPOFFyGtOVC-P26IQaOLYmI1b8 +id: taxonomy_term.token +label: Token +targetEntityType: taxonomy_term +cache: true diff --git a/project/config/boundarycommission/config/core.entity_view_mode.user.compact.yml b/project/config/boundarycommission/config/core.entity_view_mode.user.compact.yml new file mode 100644 index 000000000..d72c5f475 --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_view_mode.user.compact.yml @@ -0,0 +1,12 @@ +uuid: 7f8ada7c-54c3-41ba-949b-8b5c74f13838 +langcode: en +status: true +dependencies: + module: + - user +_core: + default_config_hash: 71CSAr_LNPcgu6D6jI4INl1KATkahmeyUFBETAWya8g +id: user.compact +label: Compact +targetEntityType: user +cache: true diff --git a/project/config/boundarycommission/config/core.entity_view_mode.user.full.yml b/project/config/boundarycommission/config/core.entity_view_mode.user.full.yml new file mode 100644 index 000000000..1d372e2e3 --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_view_mode.user.full.yml @@ -0,0 +1,12 @@ +uuid: c0796fed-7968-4708-addf-c4ee664d23a0 +langcode: en +status: false +dependencies: + module: + - user +_core: + default_config_hash: mQIF_foYjmnVSr9MpcD4CTaJE_FpO1AyDd_DskztGhM +id: user.full +label: 'User account' +targetEntityType: user +cache: true diff --git a/project/config/boundarycommission/config/core.entity_view_mode.user.token.yml b/project/config/boundarycommission/config/core.entity_view_mode.user.token.yml new file mode 100644 index 000000000..1258e6bb9 --- /dev/null +++ b/project/config/boundarycommission/config/core.entity_view_mode.user.token.yml @@ -0,0 +1,12 @@ +uuid: 51fd7a03-0629-422f-80e7-3d08841c5895 +langcode: en +status: true +dependencies: + module: + - user +_core: + default_config_hash: Ta5_n_jXyfP3WcRw_Rmp1QPg-aSHbXzg3_Qr5UE1ieY +id: user.token +label: Token +targetEntityType: user +cache: true diff --git a/project/config/boundarycommission/config/core.extension.yml b/project/config/boundarycommission/config/core.extension.yml new file mode 100644 index 000000000..09d62c3f4 --- /dev/null +++ b/project/config/boundarycommission/config/core.extension.yml @@ -0,0 +1,151 @@ +_core: + default_config_hash: R4IF-ClDHXxblLcG0L7MgsLvfBIMAvi_skumNFQwkDc +module: + address: 0 + admin_toolbar: 0 + admin_toolbar_links_access_filter: 0 + admin_toolbar_tools: 0 + allowed_formats: 0 + auto_entityqueue: 0 + automated_cron: 0 + blazy: 0 + block: 0 + block_content: 0 + boundarycommission_breadcrumbs: 0 + breakpoint: 0 + ckeditor: 0 + clientside_validation: 0 + clientside_validation_jquery: 0 + config: 0 + config_filter: 0 + config_ignore: 0 + config_split: 0 + content_lock: 0 + content_lock_timeout: 0 + content_moderation: 0 + contextual: 0 + cookie_content_blocker: 0 + csp: 0 + ctools: 0 + date_facet_drilldown: 0 + datetime: 0 + datetime_range: 0 + diff: 0 + dynamic_entity_reference: 0 + dynamic_page_cache: 0 + editor: 0 + embed: 0 + entity_browser: 0 + entity_browser_entity_form: 0 + entity_embed: 0 + entity_reference_revisions: 0 + entityqueue: 0 + facets: 0 + facets_pretty_paths: 0 + facets_summary: 0 + field: 0 + field_group: 0 + field_ui: 0 + file: 0 + file_delete_ui: 0 + filelog: 0 + filter: 0 + flag: 0 + geolocation: 0 + geolocation_google_maps: 0 + google_tag: 0 + handy_cache_tags: 0 + help: 0 + history: 0 + honeypot: 0 + http_cache_control: 0 + image: 0 + inline_entity_form: 0 + inline_form_errors: 0 + language: 0 + layout_builder: 0 + layout_discovery: 0 + link: 0 + link_fix_absolute_urls: 0 + linkit: 0 + media: 0 + media_file_delete: 0 + media_library: 0 + media_library_edit: 0 + menu_breadcrumb: 0 + menu_link_content: 0 + menu_ui: 0 + metatag: 0 + metatag_open_graph: 0 + metatag_twitter_cards: 0 + metatag_verification: 0 + metatag_views: 0 + moderation_sidebar: 0 + mysql: 0 + node: 0 + node_edit_protection: 0 + noreferrer: 0 + options: 0 + origins_ckeditor_enhancements: 0 + origins_common: 0 + origins_media: 0 + origins_metatag: 0 + origins_qa: 0 + origins_toc: 0 + origins_unique_title: 0 + page_cache: 0 + path: 0 + path_alias: 0 + rdf: 0 + redirect: 0 + redis: 0 + responsive_image: 0 + scheduled_transitions: 0 + search_api: 0 + search_api_autocomplete: 0 + search_api_location: 0 + search_api_location_views: 0 + search_api_solr: 0 + search_api_spellcheck: 0 + simplei: 0 + structure_sync: 0 + system: 0 + taxonomy: 0 + text: 0 + token: 0 + token_filter: 0 + toolbar: 0 + twig_tweak: 0 + ultimate_cron: 0 + unity_breadcrumbs: 0 + unity_common: 0 + unity_eu_cookie_compliance: 0 + unity_frontpage: 0 + unity_image_styles: 0 + unity_internal_link_checker: 0 + unity_map_block: 0 + unity_search_pages: 0 + user: 0 + views_custom_cache_tag: 0 + webform: 0 + webform_access: 0 + webform_node: 0 + webform_ui: 0 + whatlinkshere: 0 + workflows: 0 + menu_admin_per_menu: 1 + pathauto: 1 + origins_workflow: 2 + views: 10 + paragraphs: 11 + nicsdru_unity_profile: 1000 + readonlymode: 9999 + eu_cookie_compliance: 10000 +theme: + stark: 0 + seven: 0 + stable: 0 + adminimal_theme: 0 + nicsdru_unity_theme: 0 + boundarycommission_theme: 0 +profile: nicsdru_unity_profile diff --git a/project/config/boundarycommission/config/core.menu.static_menu_link_overrides.yml b/project/config/boundarycommission/config/core.menu.static_menu_link_overrides.yml new file mode 100644 index 000000000..0a540bedb --- /dev/null +++ b/project/config/boundarycommission/config/core.menu.static_menu_link_overrides.yml @@ -0,0 +1,9 @@ +_core: + default_config_hash: o4bYR9ZupWb3AsOIizTUG4g-nu1mdJqA59UB7QT-ifQ +definitions: + contact__site_page: + enabled: true + menu_name: footer + parent: '' + weight: 0 + expanded: false diff --git a/project/config/boundarycommission/config/csp.settings.yml b/project/config/boundarycommission/config/csp.settings.yml new file mode 100644 index 000000000..4dabf94e3 --- /dev/null +++ b/project/config/boundarycommission/config/csp.settings.yml @@ -0,0 +1,118 @@ +_core: + default_config_hash: 4JpC3F2x_VsACQQuTI4JOMCLDQcjUp0gTMJspJQ2M7s +report-only: + enable: true + directives: + default-src: + base: self + connect-src: + base: self + sources: + - 'https://www.google-analytics.com' + - 'https://region1.google-analytics.com' + - 'https://*.twitter.com' + font-src: + base: self + sources: + - 'https://themes.googleusercontent.com' + - 'https://fonts.gstatic.com' + - 'https://use.fontawesome.com' + - 'https://cdn.jsdelivr.net' + - 'data:' + - '*.typekit.com' + frame-src: + base: self + sources: + - 'https://www.youtube.com' + - 'https://*.twitter.com' + img-src: + base: self + sources: + - 'https://translate.google.com' + - 'https://www.googletagmanager.com' + - 'https://www.google-analytics.com' + - 'https://cdn.jsdelivr.net' + - 'https://i.ytimg.com' + - 'https://www.gstatic.com' + - 'https://maps.gstatic.com' + - 'https://maps.googleapis.com' + - 'data:' + - 'https://*.twitter.com' + manifest-src: + base: self + script-src: + base: self + sources: + - 'https://www.googletagmanager.com' + - 'https://www.google-analytics.com' + - 'https://*.twitter.com' + script-src-attr: + base: self + script-src-elem: + base: self + sources: + - 'https://www.googletagmanager.com' + - 'https://www.google-analytics.com' + - 'https://*.twitter.com' + style-src: + base: self + sources: + - '*.typekit.com' + style-src-attr: + base: self + flags: + - unsafe-inline + style-src-elem: + base: self + block-all-mixed-content: true + reporting: + plugin: none +enforce: + enable: false + directives: + default-src: + base: self + font-src: + base: self + sources: + - 'https://themes.googleusercontent.com' + - 'https://fonts.gstatic.com' + - 'https://use.fontawesome.com' + - 'https://cdn.jsdelivr.net' + - 'data:' + frame-src: + base: self + sources: + - 'https://www.youtube.com' + img-src: + base: self + sources: + - 'https://cdn.jsdelivr.net' + - 'https://i.ytimg.com' + - 'https://maps.gstatic.com' + - 'https://maps.googleapis.com' + - 'data:' + script-src: + base: self + sources: + - 'https://www.googletagmanager.com' + - 'https://www.google-analytics.com' + script-src-elem: + base: self + sources: + - 'https://www.googletagmanager.com' + - 'https://www.google-analytics.com' + style-src: + base: self + style-src-attr: + base: self + flags: + - unsafe-inline + style-src-elem: + base: self + sources: + - 'https://www.googletagmanager.com' + - 'https://www.google-analytics.com' + block-all-mixed-content: true + reporting: + plugin: sitelog diff --git a/project/config/boundarycommission/config/diff.settings.yml b/project/config/boundarycommission/config/diff.settings.yml new file mode 100644 index 000000000..2ce216983 --- /dev/null +++ b/project/config/boundarycommission/config/diff.settings.yml @@ -0,0 +1,18 @@ +_core: + default_config_hash: iVYbo_suWuXk0ofrQB4X2pJ0L8JIvRLvrhnv--YyMD4 +general_settings: + radio_behavior: simple + context_lines_leading: 1 + context_lines_trailing: 1 + revision_pager_limit: 50 + layout_plugins: + visual_inline: + enabled: true + weight: 0 + split_fields: + enabled: true + weight: 1 + unified_fields: + enabled: true + weight: 2 + visual_inline_theme: default diff --git a/project/config/boundarycommission/config/editor.editor.basic_html.yml b/project/config/boundarycommission/config/editor.editor.basic_html.yml new file mode 100644 index 000000000..f2db4703e --- /dev/null +++ b/project/config/boundarycommission/config/editor.editor.basic_html.yml @@ -0,0 +1,72 @@ +uuid: 1bfdfa20-5615-472c-80d5-386a5a82ec3c +langcode: en +status: true +dependencies: + config: + - filter.format.basic_html + module: + - ckeditor +_core: + default_config_hash: mXbCCWtydf0ZX2z0jjz7qVnuy0RgReJ9vCubUr8MMqI +format: basic_html +editor: ckeditor +settings: + toolbar: + rows: + - + - + name: Formatting + items: + - Bold + - Italic + - Blockquote + - Superscript + - RemoveFormat + - + name: 'Block Formatting' + items: + - Format + - Styles + - Table + - + name: Linking + items: + - DrupalLink + - DrupalUnlink + - + name: Lists + items: + - BulletedList + - NumberedList + - + name: Media + items: + - DrupalMediaLibrary + - + name: Tasks + items: + - Undo + - Redo + - + name: Tools + items: + - Cut + - Copy + - PasteText + - PasteFromWord + - SpecialChar + - Maximize + plugins: + drupallink: + linkit_enabled: true + linkit_profile: default + stylescombo: + styles: "p.info-notice|Information notice\r\na.btn|Button" +image_upload: + status: true + scheme: public + directory: inline-images + max_size: '' + max_dimensions: + width: null + height: null diff --git a/project/config/boundarycommission/config/editor.editor.filtered_html.yml b/project/config/boundarycommission/config/editor.editor.filtered_html.yml new file mode 100644 index 000000000..d118cd1aa --- /dev/null +++ b/project/config/boundarycommission/config/editor.editor.filtered_html.yml @@ -0,0 +1,49 @@ +uuid: ebfb7b98-47ce-46aa-98f8-378b4103a4c1 +langcode: en +status: false +dependencies: + config: + - filter.format.filtered_html + module: + - ckeditor +_core: + default_config_hash: bKGBNZh0mMpw42wc3TvYsVbnpjFK_BPEKr26PPkcGr0 +format: filtered_html +editor: ckeditor +settings: + toolbar: + rows: + - + - + name: Formatting + items: + - Bold + - Italic + - + name: Links + items: + - DrupalLink + - DrupalUnlink + - + name: Lists + items: + - BulletedList + - NumberedList + - + name: Media + items: + - Blockquote + - DrupalImage + - + name: Tools + items: + - Source + plugins: { } +image_upload: + status: false + scheme: public + directory: inline-images + max_size: '' + max_dimensions: + width: null + height: null diff --git a/project/config/boundarycommission/config/editor.editor.filtered_html_with_no_images.yml b/project/config/boundarycommission/config/editor.editor.filtered_html_with_no_images.yml new file mode 100644 index 000000000..e618e8347 --- /dev/null +++ b/project/config/boundarycommission/config/editor.editor.filtered_html_with_no_images.yml @@ -0,0 +1,44 @@ +uuid: f649cd0e-1acf-4690-bdbf-381abb65d1d8 +langcode: en +status: false +dependencies: + config: + - filter.format.filtered_html_with_no_images + module: + - ckeditor +_core: + default_config_hash: rTMZLTGOuzRDy5HbwiV421ruaSiIj1vwX8CthjUJ5pk +format: filtered_html_with_no_images +editor: ckeditor +settings: + toolbar: + rows: + - + - + name: Formatting + items: + - Bold + - Italic + - + name: Links + items: + - DrupalLink + - DrupalUnlink + - + name: Lists + items: + - BulletedList + - NumberedList + - + name: Tools + items: + - Source + plugins: { } +image_upload: + status: false + scheme: public + directory: inline-images + max_size: '' + max_dimensions: + width: null + height: null diff --git a/project/config/boundarycommission/config/editor.editor.filtered_html_with_tokens.yml b/project/config/boundarycommission/config/editor.editor.filtered_html_with_tokens.yml new file mode 100644 index 000000000..ec23ae1eb --- /dev/null +++ b/project/config/boundarycommission/config/editor.editor.filtered_html_with_tokens.yml @@ -0,0 +1,49 @@ +uuid: 08020b68-1364-4002-acd5-7f0872b2fb36 +langcode: en +status: false +dependencies: + config: + - filter.format.filtered_html_with_tokens + module: + - ckeditor +_core: + default_config_hash: YKxD0fHVOn4E84Gty7rpkspWwqQdarDI-N4kdSo0PXQ +format: filtered_html_with_tokens +editor: ckeditor +settings: + toolbar: + rows: + - + - + name: Formatting + items: + - Bold + - Italic + - + name: Links + items: + - DrupalLink + - DrupalUnlink + - + name: Lists + items: + - BulletedList + - NumberedList + - + name: Media + items: + - Blockquote + - DrupalImage + - + name: Tools + items: + - Source + plugins: { } +image_upload: + status: false + scheme: public + directory: inline-images + max_size: '' + max_dimensions: + width: null + height: null diff --git a/project/config/boundarycommission/config/editor.editor.full_html.yml b/project/config/boundarycommission/config/editor.editor.full_html.yml new file mode 100644 index 000000000..35b14c546 --- /dev/null +++ b/project/config/boundarycommission/config/editor.editor.full_html.yml @@ -0,0 +1,74 @@ +uuid: 2ef3bcc6-b48f-4a6d-880b-f19a19c1be71 +langcode: en +status: true +dependencies: + config: + - filter.format.full_html + module: + - ckeditor +_core: + default_config_hash: kmvRxbwKE0FRWCwWZeyskrdtewzUb1HbZ9eERJDwBwE +format: full_html +editor: ckeditor +settings: + toolbar: + rows: + - + - + name: Formatting + items: + - Bold + - Italic + - Blockquote + - Superscript + - '-' + - RemoveFormat + - + name: 'Block Formatting' + items: + - Format + - Styles + - Table + - + name: Linking + items: + - DrupalLink + - DrupalUnlink + - + name: Lists + items: + - BulletedList + - NumberedList + - + name: Media + items: + - DrupalMediaLibrary + - + name: Tasks + items: + - Undo + - Redo + - + name: Tools + items: + - Cut + - Copy + - PasteText + - PasteFromWord + - SpecialChar + - Maximize + - Source + plugins: + drupallink: + linkit_enabled: true + linkit_profile: default + stylescombo: + styles: '' +image_upload: + status: true + scheme: public + directory: inline-images + max_size: '' + max_dimensions: + width: null + height: null diff --git a/project/config/boundarycommission/config/embed.button.node.yml b/project/config/boundarycommission/config/embed.button.node.yml new file mode 100644 index 000000000..21fa38303 --- /dev/null +++ b/project/config/boundarycommission/config/embed.button.node.yml @@ -0,0 +1,18 @@ +uuid: b8419fdb-a810-45bd-97fa-722bd6ea20f6 +langcode: en +status: true +dependencies: + module: + - entity_embed + - node +_core: + default_config_hash: xgvZUh-eaMilacE1XYCQ9nLH-2-meOjCyofXSO82gqg +label: Node +id: node +type_id: entity +type_settings: + entity_type: node + bundles: { } + display_plugins: { } +icon: { } +icon_uuid: null diff --git a/project/config/boundarycommission/config/embed.settings.yml b/project/config/boundarycommission/config/embed.settings.yml new file mode 100644 index 000000000..787a30352 --- /dev/null +++ b/project/config/boundarycommission/config/embed.settings.yml @@ -0,0 +1,4 @@ +_core: + default_config_hash: Ed6LXVlKotwVS4tx7_rnsL-6NlBoD-PLu3KFPAvpNMc +file_scheme: public +upload_directory: embed_buttons diff --git a/project/config/boundarycommission/config/entity_embed.settings.yml b/project/config/boundarycommission/config/entity_embed.settings.yml new file mode 100644 index 000000000..c72c2cf14 --- /dev/null +++ b/project/config/boundarycommission/config/entity_embed.settings.yml @@ -0,0 +1,3 @@ +_core: + default_config_hash: 2qpyZdlgcQidJq1yw1VHXLCl5jDi4dKBWFWLQR4VDfw +rendered_entity_mode: false diff --git a/project/config/boundarycommission/config/entityqueue.entity_queue.featured_content.yml b/project/config/boundarycommission/config/entityqueue.entity_queue.featured_content.yml new file mode 100644 index 000000000..317f323ca --- /dev/null +++ b/project/config/boundarycommission/config/entityqueue.entity_queue.featured_content.yml @@ -0,0 +1,29 @@ +uuid: a8e5a05a-2f54-430e-ba7e-792b2b4dcb43 +langcode: en +status: true +dependencies: + module: + - node +id: featured_content +label: 'Featured Content' +handler: simple +handler_configuration: { } +entity_settings: + target_type: node + handler: 'default:node' + handler_settings: + target_bundles: + featured_content: featured_content + sort: + field: _none + direction: ASC + auto_create: false + auto_create_bundle: '' + auto_entityqueue: + auto_add: 0 + insert_front: 0 +queue_settings: + min_size: 0 + max_size: 2 + act_as_queue: false + reverse: false diff --git a/project/config/boundarycommission/config/eu_cookie_compliance.settings.yml b/project/config/boundarycommission/config/eu_cookie_compliance.settings.yml new file mode 100644 index 000000000..fa91e30ec --- /dev/null +++ b/project/config/boundarycommission/config/eu_cookie_compliance.settings.yml @@ -0,0 +1,85 @@ +_core: + default_config_hash: Wph0IY6FThC4QuHAGcSQDx6S8gysoclVsF2tkm4Lu8o +langcode: en +uuid: f972d6ca-2d66-4639-a48d-594ce8cfd64f +popup_enabled: true +popup_clicking_confirmation: false +popup_scrolling_confirmation: false +eu_only: false +eu_only_js: false +popup_position: false +fixed_top_position: false +popup_info: + value: "

Cookies on the [site:name] website

\r\n\r\n

We use some essential cookies to make this service work. We'd like to set additional cookies so we can remember your settings, understand how people use the service and make improvements. Some of our pages allow selected third parties to set cookies - for example, pages that contain YouTube videos or Google Maps.

\r\n\r\n

Find out more about how we use cookies

\r\n" + format: basic_html +mobile_popup_info: + value: '' + format: basic_html +popup_info_template: new +popup_agree_button_message: 'Accept cookies' +popup_more_info_button_message: 'Find out more about how we use cookies' +mobile_breakpoint: 768 +popup_agreed_enabled: false +popup_hide_agreed: false +disagree_button_label: 'Reject cookies' +popup_agreed: + value: "

Thank you for accepting cookies

\r\n\r\n

You can now hide this message or find out more about cookies.

\r\n" + format: basic_html +popup_find_more_button_message: 'More info' +popup_hide_button_message: Hide +popup_link: '' +popup_link_new_window: true +popup_height: null +popup_width: '' +popup_delay: 300 +show_more_info: false +popup_bg_hex: '' +popup_text_hex: '' +domain: '' +domains_option: 1 +domains_list: .translate.goog +exclude_paths: "/admin\r\n/admin/*\r\n/batch\r\n/node/add*\r\n/node/*/*\r\n/user/*/*" +exclude_admin_theme: true +cookie_session: 0 +set_cookie_session_zero_on_disagree: 0 +cookie_lifetime: 365 +use_mobile_message: false +use_bare_css: true +use_olivero_css: false +disagree_do_not_show_popup: false +reload_page: false +reload_options: 0 +reload_routes_list: '' +cookie_name: '' +exclude_uid_1: true +better_support_for_screen_readers: true +method: opt_in +disabled_javascripts: 'public://google_tag/boundarycommission/google_tag.script.js' +automatic_cookies_removal: true +allowed_cookies: '' +consent_storage_method: do_not_store +withdraw_message: + value: "

Cookies on the [site:name] website

\r\n\r\n

You have given your consent for us to set additional cookies so we can remember your settings, understand how people use the service and make improvements.  If you have changed your mind, you can withdraw consent.

\r\n\r\n

Find out more about how we use cookies

\r\n" + format: basic_html +withdraw_tab_button_label: 'Cookie settings' +withdraw_action_button_label: 'Withdraw consent' +withdraw_enabled: true +withdraw_button_on_info_popup: false +save_preferences_button_label: 'Save preferences' +accept_all_categories_button_label: 'Accept all cookies' +enable_save_preferences_button: true +domain_all_sites: false +settings_tab_enabled: true +containing_element: body +cookie_policy_version: 1.0.0 +cookie_value_disagreed: '0' +cookie_value_agreed_show_thank_you: '1' +cookie_value_agreed: '2' +accessibility_focus: false +close_button_action: close_banner +reject_button_label: '' +reject_button_enabled: false +close_button_enabled: false +dependencies: + config: + - filter.format.basic_html diff --git a/project/config/boundarycommission/config/facets.facet.date_published.yml b/project/config/boundarycommission/config/facets.facet.date_published.yml new file mode 100644 index 000000000..734c94391 --- /dev/null +++ b/project/config/boundarycommission/config/facets.facet.date_published.yml @@ -0,0 +1,86 @@ +uuid: b50227fb-d422-4820-b99f-c121f31a8fa8 +langcode: en +status: true +dependencies: + config: + - search_api.index.publications + - views.view.publications_search + module: + - facets_pretty_paths + - search_api +third_party_settings: + facets_pretty_paths: + coder: default_coder +id: date_published +name: 'Date published' +weight: 0 +min_count: 1 +missing: false +missing_label: others +url_alias: date +facet_source_id: 'search_api:views_page__publications_search__publication_search_page' +field_identifier: field_published_date +query_operator: and +hard_limit: 0 +exclude: false +use_hierarchy: false +keep_hierarchy_parents_active: false +hierarchy: + type: taxonomy + config: { } +expand_hierarchy: false +enable_parent_when_child_gets_disabled: true +widget: + type: links + config: + show_numbers: true + soft_limit: 20 + show_reset_link: false + reset_text: 'Show all' + hide_reset_when_no_selection: false + soft_limit_settings: + show_less_label: 'Show fewer' + show_more_label: 'Show more' +empty_behavior: + behavior: none +only_visible_when_facet_source_is_visible: true +show_only_one_result: false +show_title: false +processor_configs: + active_widget_order: + processor_id: active_widget_order + weights: + sort: 20 + settings: + sort: ASC + date_facet_drilldown: + processor_id: date_facet_drilldown + weights: + build: 1 + settings: { } + date_item: + processor_id: date_item + weights: + build: 35 + settings: + date_display: actual_date + granularity: 6 + date_format: '' + hierarchy: false + hierarchy_processor: + processor_id: hierarchy_processor + weights: + build: 100 + settings: { } + raw_value_widget_order: + processor_id: raw_value_widget_order + weights: + sort: 50 + settings: + sort: DESC + url_processor_handler: + processor_id: url_processor_handler + weights: + pre_query: 50 + build: 15 + settings: { } diff --git a/project/config/boundarycommission/config/facets.facet.publication_type.yml b/project/config/boundarycommission/config/facets.facet.publication_type.yml new file mode 100644 index 000000000..f5b140a2f --- /dev/null +++ b/project/config/boundarycommission/config/facets.facet.publication_type.yml @@ -0,0 +1,77 @@ +uuid: a13309ac-4fbc-4912-81aa-5e16e4365fd5 +langcode: en +status: true +dependencies: + config: + - search_api.index.publications + - views.view.publications_search + module: + - facets_pretty_paths + - search_api +third_party_settings: + facets_pretty_paths: + coder: default_coder +id: publication_type +name: 'Publication Type' +weight: 0 +min_count: 1 +missing: false +missing_label: others +url_alias: type +facet_source_id: 'search_api:views_page__publications_search__publication_search_page' +field_identifier: field_publication_type +query_operator: and +hard_limit: 0 +exclude: false +use_hierarchy: false +keep_hierarchy_parents_active: false +hierarchy: + type: taxonomy + config: { } +expand_hierarchy: false +enable_parent_when_child_gets_disabled: true +widget: + type: links + config: + show_numbers: true + soft_limit: 20 + show_reset_link: false + reset_text: 'Show all' + hide_reset_when_no_selection: false + soft_limit_settings: + show_less_label: 'Show fewer' + show_more_label: 'Show more' +empty_behavior: + behavior: none +only_visible_when_facet_source_is_visible: true +show_only_one_result: false +show_title: false +processor_configs: + active_widget_order: + processor_id: active_widget_order + weights: + sort: 20 + settings: + sort: ASC + display_value_widget_order: + processor_id: display_value_widget_order + weights: + sort: 40 + settings: + sort: ASC + hierarchy_processor: + processor_id: hierarchy_processor + weights: + build: 100 + settings: { } + translate_entity: + processor_id: translate_entity + weights: + build: 5 + settings: { } + url_processor_handler: + processor_id: url_processor_handler + weights: + pre_query: 50 + build: 15 + settings: { } diff --git a/project/config/boundarycommission/config/facets.facet.published_date.yml b/project/config/boundarycommission/config/facets.facet.published_date.yml new file mode 100644 index 000000000..436d18b04 --- /dev/null +++ b/project/config/boundarycommission/config/facets.facet.published_date.yml @@ -0,0 +1,80 @@ +uuid: 122a68ba-2955-488e-b345-89071ce294ab +langcode: en +status: true +dependencies: + config: + - search_api.index.news + - views.view.news_search + module: + - facets_pretty_paths + - search_api +third_party_settings: + facets_pretty_paths: + coder: default_coder +id: published_date +name: 'Published Date' +weight: 0 +min_count: 1 +missing: false +missing_label: others +url_alias: date +facet_source_id: 'search_api:views_page__news_search__news_search_page' +field_identifier: field_published_date +query_operator: and +hard_limit: 0 +exclude: false +use_hierarchy: false +keep_hierarchy_parents_active: false +hierarchy: + type: taxonomy + config: { } +expand_hierarchy: false +enable_parent_when_child_gets_disabled: true +widget: + type: links + config: + show_numbers: true + soft_limit: 20 + show_reset_link: false + reset_text: 'Show all' + hide_reset_when_no_selection: false + soft_limit_settings: + show_less_label: 'Show fewer' + show_more_label: 'Show more' +empty_behavior: + behavior: none +only_visible_when_facet_source_is_visible: true +show_only_one_result: false +show_title: false +processor_configs: + active_widget_order: + processor_id: active_widget_order + weights: + sort: 20 + settings: + sort: DESC + date_facet_drilldown: + processor_id: date_facet_drilldown + weights: + build: 1 + settings: { } + date_item: + processor_id: date_item + weights: + build: 35 + settings: + date_display: actual_date + granularity: 6 + date_format: '' + raw_value_widget_order: + processor_id: raw_value_widget_order + weights: + sort: 50 + settings: + sort: DESC + url_processor_handler: + processor_id: url_processor_handler + weights: + pre_query: 50 + build: 15 + settings: { } diff --git a/project/config/boundarycommission/config/facets.facet.response_type.yml b/project/config/boundarycommission/config/facets.facet.response_type.yml new file mode 100644 index 000000000..f8c79a4bc --- /dev/null +++ b/project/config/boundarycommission/config/facets.facet.response_type.yml @@ -0,0 +1,77 @@ +uuid: f33e8c98-17ae-47fc-8d2a-15fd149d5929 +langcode: en +status: true +dependencies: + config: + - search_api.index.consultation_responses + - views.view.consultations_search + module: + - facets_pretty_paths + - search_api +third_party_settings: + facets_pretty_paths: + coder: default_coder +id: response_type +name: 'Response Type' +weight: 0 +min_count: 1 +missing: false +missing_label: others +url_alias: type +facet_source_id: 'search_api:views_page__consultations_search__consultations_search_page' +field_identifier: field_response_type +query_operator: and +hard_limit: 0 +exclude: false +use_hierarchy: false +keep_hierarchy_parents_active: false +hierarchy: + type: taxonomy + config: { } +expand_hierarchy: false +enable_parent_when_child_gets_disabled: true +widget: + type: links + config: + show_numbers: true + soft_limit: 20 + show_reset_link: false + reset_text: 'Show all' + hide_reset_when_no_selection: false + soft_limit_settings: + show_less_label: 'Show less' + show_more_label: 'Show more' +empty_behavior: + behavior: none +only_visible_when_facet_source_is_visible: true +show_only_one_result: false +show_title: false +processor_configs: + active_widget_order: + processor_id: active_widget_order + weights: + sort: 20 + settings: + sort: ASC + display_value_widget_order: + processor_id: display_value_widget_order + weights: + sort: 40 + settings: + sort: ASC + hierarchy_processor: + processor_id: hierarchy_processor + weights: + build: 100 + settings: { } + translate_entity: + processor_id: translate_entity + weights: + build: 5 + settings: { } + url_processor_handler: + processor_id: url_processor_handler + weights: + pre_query: 50 + build: 15 + settings: { } diff --git a/project/config/boundarycommission/config/facets.facet.stage.yml b/project/config/boundarycommission/config/facets.facet.stage.yml new file mode 100644 index 000000000..718f298cb --- /dev/null +++ b/project/config/boundarycommission/config/facets.facet.stage.yml @@ -0,0 +1,77 @@ +uuid: 466cca61-cc79-4a75-be67-99b77b773168 +langcode: en +status: true +dependencies: + config: + - search_api.index.consultation_responses + - views.view.consultations_search + module: + - facets_pretty_paths + - search_api +third_party_settings: + facets_pretty_paths: + coder: default_coder +id: stage +name: Stage +weight: 0 +min_count: 1 +missing: false +missing_label: others +url_alias: stage +facet_source_id: 'search_api:views_page__consultations_search__consultations_search_page' +field_identifier: field_consultation_stage +query_operator: and +hard_limit: 0 +exclude: false +use_hierarchy: false +keep_hierarchy_parents_active: false +hierarchy: + type: taxonomy + config: { } +expand_hierarchy: false +enable_parent_when_child_gets_disabled: true +widget: + type: links + config: + show_numbers: true + soft_limit: 20 + show_reset_link: false + reset_text: 'Show all' + hide_reset_when_no_selection: false + soft_limit_settings: + show_less_label: 'Show fewer' + show_more_label: 'Show more' +empty_behavior: + behavior: none +only_visible_when_facet_source_is_visible: true +show_only_one_result: false +show_title: false +processor_configs: + active_widget_order: + processor_id: active_widget_order + weights: + sort: 20 + settings: + sort: ASC + display_value_widget_order: + processor_id: display_value_widget_order + weights: + sort: 40 + settings: + sort: ASC + hierarchy_processor: + processor_id: hierarchy_processor + weights: + build: 100 + settings: { } + translate_entity: + processor_id: translate_entity + weights: + build: 5 + settings: { } + url_processor_handler: + processor_id: url_processor_handler + weights: + pre_query: 50 + build: 15 + settings: { } diff --git a/project/config/boundarycommission/config/facets.facet_source.search_api__views_page__consultation_response_search__representations_received.yml b/project/config/boundarycommission/config/facets.facet_source.search_api__views_page__consultation_response_search__representations_received.yml new file mode 100644 index 000000000..693b7397c --- /dev/null +++ b/project/config/boundarycommission/config/facets.facet_source.search_api__views_page__consultation_response_search__representations_received.yml @@ -0,0 +1,12 @@ +uuid: d4e9c83f-e207-4385-813a-80f8c129782b +langcode: en +status: true +dependencies: { } +id: search_api__views_page__consultation_response_search__representations_received +name: 'search_api:views_page__consultation_response_search__representations_received' +filter_key: '' +url_processor: facets_pretty_paths +breadcrumb: + active: true + before: false + group: false diff --git a/project/config/boundarycommission/config/facets.facet_source.search_api__views_page__consultations_search__consultations_search_page.yml b/project/config/boundarycommission/config/facets.facet_source.search_api__views_page__consultations_search__consultations_search_page.yml new file mode 100644 index 000000000..e11f970c8 --- /dev/null +++ b/project/config/boundarycommission/config/facets.facet_source.search_api__views_page__consultations_search__consultations_search_page.yml @@ -0,0 +1,12 @@ +uuid: 355acd3f-e495-4ed6-9b66-72c60e3d048c +langcode: en +status: true +dependencies: { } +id: search_api__views_page__consultations_search__consultations_search_page +name: 'search_api:views_page__consultations_search__consultations_search_page' +filter_key: '' +url_processor: facets_pretty_paths +breadcrumb: + active: true + before: false + group: false diff --git a/project/config/boundarycommission/config/facets.facet_source.search_api__views_page__news_search__news_search_page.yml b/project/config/boundarycommission/config/facets.facet_source.search_api__views_page__news_search__news_search_page.yml new file mode 100644 index 000000000..93c3dbb14 --- /dev/null +++ b/project/config/boundarycommission/config/facets.facet_source.search_api__views_page__news_search__news_search_page.yml @@ -0,0 +1,12 @@ +uuid: 5578e842-a3be-4de5-99b7-602cdd849071 +langcode: en +status: true +dependencies: { } +id: search_api__views_page__news_search__news_search_page +name: 'search_api:views_page__news_search__news_search_page' +filter_key: '' +url_processor: facets_pretty_paths +breadcrumb: + active: true + before: false + group: false diff --git a/project/config/boundarycommission/config/facets.facet_source.search_api__views_page__publications_search__publication_search_page.yml b/project/config/boundarycommission/config/facets.facet_source.search_api__views_page__publications_search__publication_search_page.yml new file mode 100644 index 000000000..45443fa57 --- /dev/null +++ b/project/config/boundarycommission/config/facets.facet_source.search_api__views_page__publications_search__publication_search_page.yml @@ -0,0 +1,12 @@ +uuid: afa1e957-b077-496d-8abb-8656a4507e79 +langcode: en +status: true +dependencies: { } +id: search_api__views_page__publications_search__publication_search_page +name: 'search_api:views_page__publications_search__publication_search_page' +filter_key: '' +url_processor: facets_pretty_paths +breadcrumb: + active: true + before: false + group: false diff --git a/project/config/boundarycommission/config/facets_summary.facets_summary.consultation_summary.yml b/project/config/boundarycommission/config/facets_summary.facets_summary.consultation_summary.yml new file mode 100644 index 000000000..141156de5 --- /dev/null +++ b/project/config/boundarycommission/config/facets_summary.facets_summary.consultation_summary.yml @@ -0,0 +1,31 @@ +uuid: 3b926419-4c8d-43aa-9596-2f9bdbaa24fe +langcode: en +status: true +dependencies: + config: + - search_api.index.consultation_responses + - views.view.consultations_search + module: + - search_api +id: consultation_summary +name: 'Consultation Summary' +facet_source_id: 'search_api:views_page__consultations_search__consultations_search_page' +processor_configs: + hide_when_not_rendered: + processor_id: hide_when_not_rendered + weights: + build: '45' + settings: { } +facets: + response_type: + checked: true + label: 'Response Type' + separator: ', ' + show_count: false + weight: 0 + stage: + checked: true + label: Stage + separator: ', ' + show_count: false + weight: 0 diff --git a/project/config/boundarycommission/config/facets_summary.facets_summary.news_summary.yml b/project/config/boundarycommission/config/facets_summary.facets_summary.news_summary.yml new file mode 100644 index 000000000..b5a60b752 --- /dev/null +++ b/project/config/boundarycommission/config/facets_summary.facets_summary.news_summary.yml @@ -0,0 +1,25 @@ +uuid: f14470f1-346d-4273-bfbe-280cf43865e6 +langcode: en +status: true +dependencies: + config: + - search_api.index.news + - views.view.news_search + module: + - search_api +id: news_summary +name: 'News Summary' +facet_source_id: 'search_api:views_page__news_search__news_search_page' +processor_configs: + hide_when_not_rendered: + processor_id: hide_when_not_rendered + weights: + build: '45' + settings: { } +facets: + published_date: + checked: true + label: 'Published Date' + separator: ', ' + show_count: false + weight: 0 diff --git a/project/config/boundarycommission/config/facets_summary.facets_summary.publications_summary.yml b/project/config/boundarycommission/config/facets_summary.facets_summary.publications_summary.yml new file mode 100644 index 000000000..047fa051c --- /dev/null +++ b/project/config/boundarycommission/config/facets_summary.facets_summary.publications_summary.yml @@ -0,0 +1,37 @@ +uuid: e65de30f-c49a-4877-b05a-4def9f3b80d9 +langcode: en +status: true +dependencies: + config: + - search_api.index.publications + - views.view.publications_search + module: + - search_api +id: publications_summary +name: 'Publications Summary' +facet_source_id: 'search_api:views_page__publications_search__publication_search_page' +processor_configs: + hide_when_not_rendered: + processor_id: hide_when_not_rendered + weights: + build: '45' + settings: { } +facets: + date_published: + checked: true + label: Date + separator: ', ' + show_count: false + weight: 0 + publication_type: + checked: true + label: 'Publication Type' + separator: ', ' + show_count: false + weight: 0 + type: + checked: true + label: Type + separator: ', ' + show_count: false + weight: 0 diff --git a/project/config/boundarycommission/config/field.field.block_content.basic_block.body.yml b/project/config/boundarycommission/config/field.field.block_content.basic_block.body.yml new file mode 100644 index 000000000..2a5948c49 --- /dev/null +++ b/project/config/boundarycommission/config/field.field.block_content.basic_block.body.yml @@ -0,0 +1,25 @@ +uuid: 31aa5a4e-13a1-4a15-8029-55b5aeff5b65 +langcode: en +status: true +dependencies: + config: + - block_content.type.basic_block + - field.storage.block_content.body + module: + - text +_core: + default_config_hash: 70RUzbBzcmREVEYcRaIfiopRyftZu1lIb-8A3mpFCHQ +id: block_content.basic_block.body +field_name: body +entity_type: block_content +bundle: basic_block +label: Body +description: '' +required: false +translatable: true +default_value: { } +default_value_callback: '' +settings: + display_summary: false + required_summary: false +field_type: text_with_summary diff --git a/project/config/boundarycommission/config/field.field.block_content.map.field_map.yml b/project/config/boundarycommission/config/field.field.block_content.map.field_map.yml new file mode 100644 index 000000000..9bda3f6e3 --- /dev/null +++ b/project/config/boundarycommission/config/field.field.block_content.map.field_map.yml @@ -0,0 +1,23 @@ +uuid: 04f2ddc8-a611-415f-a25a-bf1cc5abf1d3 +langcode: en +status: true +dependencies: + config: + - block_content.type.map + - field.storage.block_content.field_map + module: + - geolocation +_core: + default_config_hash: NH3M_zm2Z71KCIHP1eraIfAbtqJXe0yFyJPVNZveFdM +id: block_content.map.field_map +field_name: field_map +entity_type: block_content +bundle: map +label: Map +description: '' +required: false +translatable: false +default_value: { } +default_value_callback: '' +settings: { } +field_type: geolocation diff --git a/project/config/boundarycommission/config/field.field.file.document.field_file_language.yml b/project/config/boundarycommission/config/field.field.file.document.field_file_language.yml new file mode 100644 index 000000000..0f2a787e6 --- /dev/null +++ b/project/config/boundarycommission/config/field.field.file.document.field_file_language.yml @@ -0,0 +1,23 @@ +uuid: fb72e1fa-709a-4e75-bd6d-36364b6eb8ab +langcode: en +status: true +dependencies: + config: + - field.storage.file.field_file_language + module: + - file + - options +id: file.document.field_file_language +field_name: field_file_language +entity_type: file +bundle: document +label: 'File language' +description: 'Please choose the language for this file.' +required: true +translatable: false +default_value: + - + value: en +default_value_callback: '' +settings: { } +field_type: list_string diff --git a/project/config/boundarycommission/config/field.field.file.document.field_file_title.yml b/project/config/boundarycommission/config/field.field.file.document.field_file_title.yml new file mode 100644 index 000000000..3e70b2f5f --- /dev/null +++ b/project/config/boundarycommission/config/field.field.file.document.field_file_title.yml @@ -0,0 +1,20 @@ +uuid: 439540eb-c88a-442e-b44b-04089b734e77 +langcode: en +status: true +dependencies: + config: + - field.storage.file.field_file_title + module: + - file +id: file.document.field_file_title +field_name: field_file_title +entity_type: file +bundle: document +label: 'File title' +description: 'Please enter the title of this document, this is displayed as the link text.' +required: true +translatable: false +default_value: { } +default_value_callback: '' +settings: { } +field_type: string diff --git a/project/config/boundarycommission/config/field.field.file.image.field_file_image_alt_text.yml b/project/config/boundarycommission/config/field.field.file.image.field_file_image_alt_text.yml new file mode 100644 index 000000000..6580fd019 --- /dev/null +++ b/project/config/boundarycommission/config/field.field.file.image.field_file_image_alt_text.yml @@ -0,0 +1,20 @@ +uuid: 64251c00-832b-4dd1-bb21-9659a2e3d9a9 +langcode: en +status: true +dependencies: + config: + - field.storage.file.field_file_image_alt_text + module: + - file +id: file.image.field_file_image_alt_text +field_name: field_file_image_alt_text +entity_type: file +bundle: image +label: 'Alt Text' +description: 'Alternative text is used by screen readers, search engines, and when the image cannot be loaded. By adding alt text you improve accessibility and search engine optimization.' +required: false +translatable: false +default_value: { } +default_value_callback: '' +settings: { } +field_type: string diff --git a/project/config/boundarycommission/config/field.field.file.image.field_file_image_caption_text.yml b/project/config/boundarycommission/config/field.field.file.image.field_file_image_caption_text.yml new file mode 100644 index 000000000..92d342999 --- /dev/null +++ b/project/config/boundarycommission/config/field.field.file.image.field_file_image_caption_text.yml @@ -0,0 +1,20 @@ +uuid: 1a29d8e1-63ff-4db4-b81a-a1052b083c07 +langcode: en +status: true +dependencies: + config: + - field.storage.file.field_file_image_caption_text + module: + - file +id: file.image.field_file_image_caption_text +field_name: field_file_image_caption_text +entity_type: file +bundle: image +label: 'Caption text' +description: 'Enter some optional caption text for this image.' +required: false +translatable: false +default_value: { } +default_value_callback: '' +settings: { } +field_type: string diff --git a/project/config/boundarycommission/config/field.field.file.image.field_file_image_title_text.yml b/project/config/boundarycommission/config/field.field.file.image.field_file_image_title_text.yml new file mode 100644 index 000000000..4f31e9009 --- /dev/null +++ b/project/config/boundarycommission/config/field.field.file.image.field_file_image_title_text.yml @@ -0,0 +1,20 @@ +uuid: 9717c5b3-b0ea-409d-88ec-2e7038752ef1 +langcode: en +status: true +dependencies: + config: + - field.storage.file.field_file_image_title_text + module: + - file +id: file.image.field_file_image_title_text +field_name: field_file_image_title_text +entity_type: file +bundle: image +label: 'Title Text' +description: 'Title text is used in the tool tip when a user hovers their mouse over the image. Adding title text makes it easier to understand the context of an image and improves usability.' +required: false +translatable: false +default_value: { } +default_value_callback: '' +settings: { } +field_type: string diff --git a/project/config/boundarycommission/config/field.field.media.audio.field_media_audio_file.yml b/project/config/boundarycommission/config/field.field.media.audio.field_media_audio_file.yml new file mode 100644 index 000000000..e466d3ac3 --- /dev/null +++ b/project/config/boundarycommission/config/field.field.media.audio.field_media_audio_file.yml @@ -0,0 +1,29 @@ +uuid: 5542cd3c-a847-4c07-86f4-5f8e6ce09e5e +langcode: en +status: true +dependencies: + config: + - field.storage.media.field_media_audio_file + - media.type.audio + module: + - file +_core: + default_config_hash: j12MO6nAssXjXcuDRCgKr8P4vrB8ZsI1OenzdadL3Bs +id: media.audio.field_media_audio_file +field_name: field_media_audio_file +entity_type: media +bundle: audio +label: 'Audio file' +description: '' +required: true +translatable: true +default_value: { } +default_value_callback: '' +settings: + file_extensions: 'mp3 wav aac' + file_directory: '[date:custom:Y]-[date:custom:m]' + max_filesize: 30MB + description_field: false + handler: 'default:file' + handler_settings: { } +field_type: file diff --git a/project/config/boundarycommission/config/field.field.media.document.field_media_file.yml b/project/config/boundarycommission/config/field.field.media.document.field_media_file.yml new file mode 100644 index 000000000..fd1a2b0a4 --- /dev/null +++ b/project/config/boundarycommission/config/field.field.media.document.field_media_file.yml @@ -0,0 +1,29 @@ +uuid: 18341187-e539-4eba-ba84-e77d0676db91 +langcode: en +status: true +dependencies: + config: + - field.storage.media.field_media_file + - media.type.document + module: + - file +_core: + default_config_hash: t8kbP8p0VnpCVM01MwOYboRha29JrN1Tg5dDhdos5Fk +id: media.document.field_media_file +field_name: field_media_file +entity_type: media +bundle: document +label: File +description: '' +required: true +translatable: true +default_value: { } +default_value_callback: '' +settings: + file_extensions: 'pdf doc docx xls xlsx xlsm ppt pptx odt ods odp dot zip' + file_directory: '[date:custom:Y]-[date:custom:m]' + max_filesize: 30MB + description_field: false + handler: 'default:file' + handler_settings: { } +field_type: file diff --git a/project/config/boundarycommission/config/field.field.media.file.field_media_file.yml b/project/config/boundarycommission/config/field.field.media.file.field_media_file.yml new file mode 100644 index 000000000..7e0e8351b --- /dev/null +++ b/project/config/boundarycommission/config/field.field.media.file.field_media_file.yml @@ -0,0 +1,32 @@ +uuid: 878f6bd4-2dce-41fb-a8f2-83ad92bce631 +langcode: en +status: true +dependencies: + config: + - field.storage.media.field_media_file + - media.type.file + module: + - file + enforced: + module: + - media +_core: + default_config_hash: 03ch-n4Ii5lPVrUOm5kIDX1rKbcePCifjsTxJnN-CAA +id: media.file.field_media_file +field_name: field_media_file +entity_type: media +bundle: file +label: File +description: '' +required: true +translatable: true +default_value: { } +default_value_callback: '' +settings: + file_directory: '[date:custom:Y]-[date:custom:m]' + file_extensions: 'txt rtf doc docx ppt pptx xls xlsx pdf odf odg odp ods odt fodt fods fodp fodg key numbers pages' + max_filesize: 30MB + handler: 'default:file' + handler_settings: { } + description_field: false +field_type: file diff --git a/project/config/boundarycommission/config/field.field.media.image.field_caption.yml b/project/config/boundarycommission/config/field.field.media.image.field_caption.yml new file mode 100644 index 000000000..d69722165 --- /dev/null +++ b/project/config/boundarycommission/config/field.field.media.image.field_caption.yml @@ -0,0 +1,21 @@ +uuid: 2b8b711b-442e-4c7e-bdab-d5772fe7185a +langcode: en +status: true +dependencies: + config: + - field.storage.media.field_caption + - media.type.image +_core: + default_config_hash: q3FWXuC62gK9Qqf4WZwUOTp1uQN46IfnUfa8fKRCMv0 +id: media.image.field_caption +field_name: field_caption +entity_type: media +bundle: image +label: Caption +description: '' +required: false +translatable: false +default_value: { } +default_value_callback: '' +settings: { } +field_type: string diff --git a/project/config/boundarycommission/config/field.field.media.image.field_media_image.yml b/project/config/boundarycommission/config/field.field.media.image.field_media_image.yml new file mode 100644 index 000000000..e0d88bdea --- /dev/null +++ b/project/config/boundarycommission/config/field.field.media.image.field_media_image.yml @@ -0,0 +1,43 @@ +uuid: bd3054bf-e550-4d7c-85fc-39e4d42c7b58 +langcode: en +status: true +dependencies: + config: + - field.storage.media.field_media_image + - media.type.image + module: + - image + enforced: + module: + - media +_core: + default_config_hash: uQR3FMX0yPgdY9F5Oy9FOUnZ2Rybe15d3W7R0C8DxjA +id: media.image.field_media_image +field_name: field_media_image +entity_type: media +bundle: image +label: Image +description: '' +required: true +translatable: true +default_value: { } +default_value_callback: '' +settings: + alt_field: true + alt_field_required: false + title_field: false + title_field_required: false + max_resolution: 5000x5000 + min_resolution: '' + default_image: + uuid: null + alt: '' + title: '' + width: null + height: null + file_directory: '[date:custom:Y]-[date:custom:m]' + file_extensions: 'png gif jpg jpeg' + max_filesize: 5MB + handler: 'default:file' + handler_settings: { } +field_type: image diff --git a/project/config/boundarycommission/config/field.field.media.remote_video.field_media_oembed_video.yml b/project/config/boundarycommission/config/field.field.media.remote_video.field_media_oembed_video.yml new file mode 100644 index 000000000..e12cf26d4 --- /dev/null +++ b/project/config/boundarycommission/config/field.field.media.remote_video.field_media_oembed_video.yml @@ -0,0 +1,21 @@ +uuid: a2f491a9-7379-4774-b11f-4a1c96ef26b8 +langcode: en +status: true +dependencies: + config: + - field.storage.media.field_media_oembed_video + - media.type.remote_video +_core: + default_config_hash: Eo4HHenV5iZat_kEWgr_wydD3TgwURMCzwt-7qIEyoM +id: media.remote_video.field_media_oembed_video +field_name: field_media_oembed_video +entity_type: media +bundle: remote_video +label: 'Video URL' +description: '' +required: true +translatable: true +default_value: { } +default_value_callback: '' +settings: { } +field_type: string diff --git a/project/config/boundarycommission/config/field.field.node.basic_page.body.yml b/project/config/boundarycommission/config/field.field.node.basic_page.body.yml new file mode 100644 index 000000000..52cf62628 --- /dev/null +++ b/project/config/boundarycommission/config/field.field.node.basic_page.body.yml @@ -0,0 +1,30 @@ +uuid: 0f0a2afd-d785-497a-b6a1-8df1b67c42aa +langcode: en +status: true +dependencies: + config: + - field.storage.node.body + - node.type.basic_page + module: + - allowed_formats + - text +third_party_settings: + allowed_formats: + allowed_formats: + - basic_html +_core: + default_config_hash: cBCwT51Mu2HwrJxGKBSMyRYRXaRLS5Qs2rfG9FhIUhQ +id: node.basic_page.body +field_name: body +entity_type: node +bundle: basic_page +label: Body +description: '' +required: true +translatable: true +default_value: { } +default_value_callback: '' +settings: + display_summary: false + required_summary: false +field_type: text_with_summary diff --git a/project/config/boundarycommission/config/field.field.node.basic_page.field_meta_tags.yml b/project/config/boundarycommission/config/field.field.node.basic_page.field_meta_tags.yml new file mode 100644 index 000000000..4cdf0fa9f --- /dev/null +++ b/project/config/boundarycommission/config/field.field.node.basic_page.field_meta_tags.yml @@ -0,0 +1,23 @@ +uuid: 18ece2dc-1c34-46a6-9b78-31629984e13a +langcode: en +status: true +dependencies: + config: + - field.storage.node.field_meta_tags + - node.type.basic_page + module: + - metatag +_core: + default_config_hash: UW-fOtoW8gvwx5NhcnmRF_rhSgVo5mK5_Axo9M3k1Tc +id: node.basic_page.field_meta_tags +field_name: field_meta_tags +entity_type: node +bundle: basic_page +label: 'Meta tags' +description: '' +required: false +translatable: true +default_value: { } +default_value_callback: '' +settings: { } +field_type: metatag diff --git a/project/config/boundarycommission/config/field.field.node.basic_page.field_next_audit_due.yml b/project/config/boundarycommission/config/field.field.node.basic_page.field_next_audit_due.yml new file mode 100644 index 000000000..0ef714038 --- /dev/null +++ b/project/config/boundarycommission/config/field.field.node.basic_page.field_next_audit_due.yml @@ -0,0 +1,23 @@ +uuid: 33a460be-8189-4131-8530-8db9d9de8e82 +langcode: en +status: true +dependencies: + config: + - field.storage.node.field_next_audit_due + - node.type.basic_page + module: + - datetime +_core: + default_config_hash: C3yyvw948knUKpthchZTGSyHvDASmDaNQyZsC2dJXBw +id: node.basic_page.field_next_audit_due +field_name: field_next_audit_due +entity_type: node +bundle: basic_page +label: 'Next audit due' +description: '' +required: false +translatable: true +default_value: { } +default_value_callback: '' +settings: { } +field_type: datetime diff --git a/project/config/boundarycommission/config/field.field.node.consultation_response.field_attachment.yml b/project/config/boundarycommission/config/field.field.node.consultation_response.field_attachment.yml new file mode 100644 index 000000000..4d99d9998 --- /dev/null +++ b/project/config/boundarycommission/config/field.field.node.consultation_response.field_attachment.yml @@ -0,0 +1,31 @@ +uuid: be376dc3-aaeb-4809-aebc-bdb1b362ff44 +langcode: en +status: true +dependencies: + config: + - field.storage.node.field_attachment + - media.type.document + - media.type.file + - node.type.consultation_response +id: node.consultation_response.field_attachment +field_name: field_attachment +entity_type: node +bundle: consultation_response +label: Attachment +description: '' +required: true +translatable: true +default_value: { } +default_value_callback: '' +settings: + handler: 'default:media' + handler_settings: + target_bundles: + document: document + file: file + sort: + field: _none + direction: ASC + auto_create: false + auto_create_bundle: document +field_type: entity_reference diff --git a/project/config/boundarycommission/config/field.field.node.consultation_response.field_consultation_stage.yml b/project/config/boundarycommission/config/field.field.node.consultation_response.field_consultation_stage.yml new file mode 100644 index 000000000..afea616d7 --- /dev/null +++ b/project/config/boundarycommission/config/field.field.node.consultation_response.field_consultation_stage.yml @@ -0,0 +1,29 @@ +uuid: f8a199da-12a4-4bb6-9095-ba50bf3fc9d5 +langcode: en +status: true +dependencies: + config: + - field.storage.node.field_consultation_stage + - node.type.consultation_response + - taxonomy.vocabulary.consultation_stage +id: node.consultation_response.field_consultation_stage +field_name: field_consultation_stage +entity_type: node +bundle: consultation_response +label: Stage +description: '' +required: true +translatable: false +default_value: { } +default_value_callback: '' +settings: + handler: 'default:taxonomy_term' + handler_settings: + target_bundles: + consultation_stage: consultation_stage + sort: + field: name + direction: asc + auto_create: false + auto_create_bundle: '' +field_type: entity_reference diff --git a/project/config/boundarycommission/config/field.field.node.consultation_response.field_meta_tags.yml b/project/config/boundarycommission/config/field.field.node.consultation_response.field_meta_tags.yml new file mode 100644 index 000000000..1d5800275 --- /dev/null +++ b/project/config/boundarycommission/config/field.field.node.consultation_response.field_meta_tags.yml @@ -0,0 +1,21 @@ +uuid: a2cdf6ca-d158-4771-980a-b0dc042d183e +langcode: en +status: true +dependencies: + config: + - field.storage.node.field_meta_tags + - node.type.consultation_response + module: + - metatag +id: node.consultation_response.field_meta_tags +field_name: field_meta_tags +entity_type: node +bundle: consultation_response +label: 'Meta tags' +description: '' +required: false +translatable: true +default_value: { } +default_value_callback: '' +settings: { } +field_type: metatag diff --git a/project/config/boundarycommission/config/field.field.node.consultation_response.field_response_type.yml b/project/config/boundarycommission/config/field.field.node.consultation_response.field_response_type.yml new file mode 100644 index 000000000..d735644dc --- /dev/null +++ b/project/config/boundarycommission/config/field.field.node.consultation_response.field_response_type.yml @@ -0,0 +1,29 @@ +uuid: da41dd10-9b34-42d0-ac3c-7ddc330e131f +langcode: en +status: true +dependencies: + config: + - field.storage.node.field_response_type + - node.type.consultation_response + - taxonomy.vocabulary.consultation_response_type +id: node.consultation_response.field_response_type +field_name: field_response_type +entity_type: node +bundle: consultation_response +label: 'Response Type' +description: '' +required: true +translatable: false +default_value: { } +default_value_callback: '' +settings: + handler: 'default:taxonomy_term' + handler_settings: + target_bundles: + consultation_response_type: consultation_response_type + sort: + field: name + direction: asc + auto_create: false + auto_create_bundle: '' +field_type: entity_reference diff --git a/project/config/boundarycommission/config/field.field.node.featured_content.field_link.yml b/project/config/boundarycommission/config/field.field.node.featured_content.field_link.yml new file mode 100644 index 000000000..056ec88bb --- /dev/null +++ b/project/config/boundarycommission/config/field.field.node.featured_content.field_link.yml @@ -0,0 +1,23 @@ +uuid: 172245d1-9c28-4be6-9d8c-8e597213eb52 +langcode: en +status: true +dependencies: + config: + - field.storage.node.field_link + - node.type.featured_content + module: + - link +id: node.featured_content.field_link +field_name: field_link +entity_type: node +bundle: featured_content +label: Link +description: '' +required: false +translatable: true +default_value: { } +default_value_callback: '' +settings: + title: 1 + link_type: 1 +field_type: link diff --git a/project/config/boundarycommission/config/field.field.node.featured_content.field_meta_tags.yml b/project/config/boundarycommission/config/field.field.node.featured_content.field_meta_tags.yml new file mode 100644 index 000000000..5364786d4 --- /dev/null +++ b/project/config/boundarycommission/config/field.field.node.featured_content.field_meta_tags.yml @@ -0,0 +1,21 @@ +uuid: d54a796e-d8a4-4918-a061-0f18f490ae4a +langcode: en +status: true +dependencies: + config: + - field.storage.node.field_meta_tags + - node.type.featured_content + module: + - metatag +id: node.featured_content.field_meta_tags +field_name: field_meta_tags +entity_type: node +bundle: featured_content +label: 'Meta tags' +description: '' +required: false +translatable: true +default_value: { } +default_value_callback: '' +settings: { } +field_type: metatag diff --git a/project/config/boundarycommission/config/field.field.node.featured_content.field_photo.yml b/project/config/boundarycommission/config/field.field.node.featured_content.field_photo.yml new file mode 100644 index 000000000..da7e84207 --- /dev/null +++ b/project/config/boundarycommission/config/field.field.node.featured_content.field_photo.yml @@ -0,0 +1,29 @@ +uuid: a898562a-418a-46bc-9ac8-7d7cb0a08d74 +langcode: en +status: true +dependencies: + config: + - field.storage.node.field_photo + - media.type.image + - node.type.featured_content +id: node.featured_content.field_photo +field_name: field_photo +entity_type: node +bundle: featured_content +label: Image +description: 'Add an image that will be displayed on the home page.' +required: true +translatable: false +default_value: { } +default_value_callback: '' +settings: + handler: 'default:media' + handler_settings: + target_bundles: + image: image + sort: + field: _none + direction: ASC + auto_create: false + auto_create_bundle: '' +field_type: entity_reference diff --git a/project/config/boundarycommission/config/field.field.node.featured_content.field_tagline.yml b/project/config/boundarycommission/config/field.field.node.featured_content.field_tagline.yml new file mode 100644 index 000000000..81bbb2714 --- /dev/null +++ b/project/config/boundarycommission/config/field.field.node.featured_content.field_tagline.yml @@ -0,0 +1,26 @@ +uuid: 28214d0a-941c-41a5-8309-e10abdef6b27 +langcode: en +status: true +dependencies: + config: + - field.storage.node.field_tagline + - node.type.featured_content + module: + - allowed_formats + - text +third_party_settings: + allowed_formats: + allowed_formats: + - plain_text +id: node.featured_content.field_tagline +field_name: field_tagline +entity_type: node +bundle: featured_content +label: Tagline +description: 'Add a tagline that will be displayed under the image on the home page.' +required: true +translatable: false +default_value: { } +default_value_callback: '' +settings: { } +field_type: text diff --git a/project/config/boundarycommission/config/field.field.node.news.body.yml b/project/config/boundarycommission/config/field.field.node.news.body.yml new file mode 100644 index 000000000..eb255f4d8 --- /dev/null +++ b/project/config/boundarycommission/config/field.field.node.news.body.yml @@ -0,0 +1,30 @@ +uuid: 0ffa58a9-d75d-475c-91d0-e39f524cd37e +langcode: en +status: true +dependencies: + config: + - field.storage.node.body + - node.type.news + module: + - allowed_formats + - text +third_party_settings: + allowed_formats: + allowed_formats: + - basic_html +_core: + default_config_hash: u1pxGrNXR4V2q0lHTM0AuVdnbyTLitNAlxGCLqWujyg +id: node.news.body +field_name: body +entity_type: node +bundle: news +label: Body +description: '' +required: true +translatable: false +default_value: { } +default_value_callback: '' +settings: + display_summary: false + required_summary: false +field_type: text_with_summary diff --git a/project/config/boundarycommission/config/field.field.node.news.field_archive.yml b/project/config/boundarycommission/config/field.field.node.news.field_archive.yml new file mode 100644 index 000000000..411f7f492 --- /dev/null +++ b/project/config/boundarycommission/config/field.field.node.news.field_archive.yml @@ -0,0 +1,23 @@ +uuid: bf63f19a-7f5e-4baa-bf2c-28579979ef3e +langcode: en +status: true +dependencies: + config: + - field.storage.node.field_archive + - node.type.news +id: node.news.field_archive +field_name: field_archive +entity_type: node +bundle: news +label: Archive +description: 'If you''d like to archive this news item then check the checkbox.' +required: false +translatable: false +default_value: + - + value: 0 +default_value_callback: '' +settings: + on_label: 'On' + off_label: 'Off' +field_type: boolean diff --git a/project/config/boundarycommission/config/field.field.node.news.field_meta_tags.yml b/project/config/boundarycommission/config/field.field.node.news.field_meta_tags.yml new file mode 100644 index 000000000..b5ce48f86 --- /dev/null +++ b/project/config/boundarycommission/config/field.field.node.news.field_meta_tags.yml @@ -0,0 +1,23 @@ +uuid: c137814e-cb3e-4714-bac1-142211bec8fc +langcode: en +status: true +dependencies: + config: + - field.storage.node.field_meta_tags + - node.type.news + module: + - metatag +_core: + default_config_hash: N4ifpekUhQVgounHS0ixrnuJUw1vpzLkOSQLOSSCpvA +id: node.news.field_meta_tags +field_name: field_meta_tags +entity_type: node +bundle: news +label: 'Meta tags' +description: '' +required: false +translatable: true +default_value: { } +default_value_callback: '' +settings: { } +field_type: metatag diff --git a/project/config/boundarycommission/config/field.field.node.news.field_photo.yml b/project/config/boundarycommission/config/field.field.node.news.field_photo.yml new file mode 100644 index 000000000..25ebac6be --- /dev/null +++ b/project/config/boundarycommission/config/field.field.node.news.field_photo.yml @@ -0,0 +1,31 @@ +uuid: b3c5a601-00b0-49c3-ae1c-52cb80f21f6b +langcode: en +status: true +dependencies: + config: + - field.storage.node.field_photo + - media.type.image + - node.type.news +_core: + default_config_hash: m4kjXvKfbT-A03_u381ryfa8xALUtf9a78RDaFtzptY +id: node.news.field_photo +field_name: field_photo +entity_type: node +bundle: news +label: Photo +description: 'Please choose an image to be displayed with this news item. ' +required: false +translatable: false +default_value: { } +default_value_callback: '' +settings: + handler: 'default:media' + handler_settings: + target_bundles: + image: image + sort: + field: _none + direction: ASC + auto_create: false + auto_create_bundle: '' +field_type: entity_reference diff --git a/project/config/boundarycommission/config/field.field.node.news.field_published_date.yml b/project/config/boundarycommission/config/field.field.node.news.field_published_date.yml new file mode 100644 index 000000000..f086235e8 --- /dev/null +++ b/project/config/boundarycommission/config/field.field.node.news.field_published_date.yml @@ -0,0 +1,26 @@ +uuid: e54ffd4b-c70d-4506-a7ca-bdb1d109446c +langcode: en +status: true +dependencies: + config: + - field.storage.node.field_published_date + - node.type.news + module: + - datetime +_core: + default_config_hash: Pu3LEgRp89W8VTCWsOUk3dEQ7ghLCA537oED47kTvCc +id: node.news.field_published_date +field_name: field_published_date +entity_type: node +bundle: news +label: 'Publication date' +description: 'Please select the publication date of this news item, or accept the default value of today.' +required: true +translatable: false +default_value: + - + default_date_type: now + default_date: now +default_value_callback: '' +settings: { } +field_type: datetime diff --git a/project/config/boundarycommission/config/field.field.node.news.field_teaser.yml b/project/config/boundarycommission/config/field.field.node.news.field_teaser.yml new file mode 100644 index 000000000..dc60cc0c1 --- /dev/null +++ b/project/config/boundarycommission/config/field.field.node.news.field_teaser.yml @@ -0,0 +1,21 @@ +uuid: df9006c9-4ec1-47e8-96dd-943851e445c6 +langcode: en +status: true +dependencies: + config: + - field.storage.node.field_teaser + - node.type.news +_core: + default_config_hash: 1FsJzihApN0_v47zULsftJea1AD2-XwJVE7XzbgssC4 +id: node.news.field_teaser +field_name: field_teaser +entity_type: node +bundle: news +label: Teaser +description: 'Enter some short teaser text for this news item. This will be used to link to this page on other pages on this site.' +required: true +translatable: false +default_value: { } +default_value_callback: '' +settings: { } +field_type: string diff --git a/project/config/boundarycommission/config/field.field.node.publication.body.yml b/project/config/boundarycommission/config/field.field.node.publication.body.yml new file mode 100644 index 000000000..a0021d8a7 --- /dev/null +++ b/project/config/boundarycommission/config/field.field.node.publication.body.yml @@ -0,0 +1,30 @@ +uuid: f0efc410-3323-44b5-b673-55daa0f05726 +langcode: en +status: true +dependencies: + config: + - field.storage.node.body + - node.type.publication + module: + - allowed_formats + - text +third_party_settings: + allowed_formats: + allowed_formats: + - basic_html +_core: + default_config_hash: C-lA3ztVbA5TJnvirrD4aVYAmyWW9m9gxUarBR68jy8 +id: node.publication.body +field_name: body +entity_type: node +bundle: publication +label: Body +description: '' +required: false +translatable: false +default_value: { } +default_value_callback: '' +settings: + display_summary: false + required_summary: false +field_type: text_with_summary diff --git a/project/config/boundarycommission/config/field.field.node.publication.field_archive.yml b/project/config/boundarycommission/config/field.field.node.publication.field_archive.yml new file mode 100644 index 000000000..75ba79680 --- /dev/null +++ b/project/config/boundarycommission/config/field.field.node.publication.field_archive.yml @@ -0,0 +1,23 @@ +uuid: 1861f09e-5690-4aaf-8e8d-bb0c1170c1f9 +langcode: en +status: true +dependencies: + config: + - field.storage.node.field_archive + - node.type.publication +id: node.publication.field_archive +field_name: field_archive +entity_type: node +bundle: publication +label: Archive +description: 'If you''d like to archive this publication then check the checkbox.' +required: false +translatable: false +default_value: + - + value: 0 +default_value_callback: '' +settings: + on_label: 'On' + off_label: 'Off' +field_type: boolean diff --git a/project/config/boundarycommission/config/field.field.node.publication.field_attachment.yml b/project/config/boundarycommission/config/field.field.node.publication.field_attachment.yml new file mode 100644 index 000000000..9cb7a8256 --- /dev/null +++ b/project/config/boundarycommission/config/field.field.node.publication.field_attachment.yml @@ -0,0 +1,31 @@ +uuid: bc236a25-55f5-406d-9582-7c1cf7d0757a +langcode: en +status: true +dependencies: + config: + - field.storage.node.field_attachment + - media.type.document + - node.type.publication +_core: + default_config_hash: vvW9PTT1tHEC7y1peVajxklRzfzcj7qYBVQo2JAQTUQ +id: node.publication.field_attachment +field_name: field_attachment +entity_type: node +bundle: publication +label: Attachment +description: "Choose at least between one and five individual files to attach to this publication revision.
\r\n
\r\nAn important note about attachments:\r\n
    \r\n
  • Multiple revisions of a publication page can link to the same file attachment.
  • \r\n
  • If you need to make a new version of a file available within a publication revision, attach a new file with a different filename and remove the old file attachment (this will not affect other revisions of the publication - these will still have the old file attached).
  • \r\n
" +required: true +translatable: false +default_value: { } +default_value_callback: '' +settings: + handler: 'default:media' + handler_settings: + target_bundles: + document: document + sort: + field: _none + direction: ASC + auto_create: false + auto_create_bundle: '' +field_type: entity_reference diff --git a/project/config/boundarycommission/config/field.field.node.publication.field_meta_tags.yml b/project/config/boundarycommission/config/field.field.node.publication.field_meta_tags.yml new file mode 100644 index 000000000..2b1692851 --- /dev/null +++ b/project/config/boundarycommission/config/field.field.node.publication.field_meta_tags.yml @@ -0,0 +1,23 @@ +uuid: 243e6590-f5b4-4c5f-93e6-5ca2409b1695 +langcode: en +status: true +dependencies: + config: + - field.storage.node.field_meta_tags + - node.type.publication + module: + - metatag +_core: + default_config_hash: GY7vRcz2iU_5CipYUjiu0tPrujXMjFwJRV4PKGA-BI0 +id: node.publication.field_meta_tags +field_name: field_meta_tags +entity_type: node +bundle: publication +label: 'Meta tags' +description: '' +required: false +translatable: true +default_value: { } +default_value_callback: '' +settings: { } +field_type: metatag diff --git a/project/config/boundarycommission/config/field.field.node.publication.field_publication_type.yml b/project/config/boundarycommission/config/field.field.node.publication.field_publication_type.yml new file mode 100644 index 000000000..fbc79f24e --- /dev/null +++ b/project/config/boundarycommission/config/field.field.node.publication.field_publication_type.yml @@ -0,0 +1,31 @@ +uuid: f76d0578-5705-40b1-93f1-095e927b58dc +langcode: en +status: true +dependencies: + config: + - field.storage.node.field_publication_type + - node.type.publication + - taxonomy.vocabulary.publication_type +_core: + default_config_hash: 14NqevawhWXgH65cBjkur-vAx00JJGor75I4qW8N8pY +id: node.publication.field_publication_type +field_name: field_publication_type +entity_type: node +bundle: publication +label: Type +description: 'Please choose a type for this publication.' +required: true +translatable: false +default_value: { } +default_value_callback: '' +settings: + handler: 'default:taxonomy_term' + handler_settings: + target_bundles: + publication_type: publication_type + sort: + field: name + direction: asc + auto_create: false + auto_create_bundle: '' +field_type: entity_reference diff --git a/project/config/boundarycommission/config/field.field.node.publication.field_published_date.yml b/project/config/boundarycommission/config/field.field.node.publication.field_published_date.yml new file mode 100644 index 000000000..6d7913b2d --- /dev/null +++ b/project/config/boundarycommission/config/field.field.node.publication.field_published_date.yml @@ -0,0 +1,26 @@ +uuid: cd6c93bc-aea5-4d56-9528-5ca7d9fa90df +langcode: en +status: true +dependencies: + config: + - field.storage.node.field_published_date + - node.type.publication + module: + - datetime +_core: + default_config_hash: aYp0NIYNJQYxHn52gNKUsxWnWbFy-VI_TfRsbjEsfWk +id: node.publication.field_published_date +field_name: field_published_date +entity_type: node +bundle: publication +label: 'Publication Date' +description: 'Please select the published date for this publication, or accept the default value of today.' +required: true +translatable: false +default_value: + - + default_date_type: now + default_date: now +default_value_callback: '' +settings: { } +field_type: datetime diff --git a/project/config/boundarycommission/config/field.field.node.respresentations.field_attachment.yml b/project/config/boundarycommission/config/field.field.node.respresentations.field_attachment.yml new file mode 100644 index 000000000..e03e8ae67 --- /dev/null +++ b/project/config/boundarycommission/config/field.field.node.respresentations.field_attachment.yml @@ -0,0 +1,31 @@ +uuid: 8ac76c0d-7b9d-4109-82f4-35051f1183a5 +langcode: en +status: true +dependencies: + config: + - field.storage.node.field_attachment + - media.type.document + - media.type.file + - node.type.respresentations +id: node.respresentations.field_attachment +field_name: field_attachment +entity_type: node +bundle: respresentations +label: Attachment +description: '' +required: true +translatable: true +default_value: { } +default_value_callback: '' +settings: + handler: 'default:media' + handler_settings: + target_bundles: + document: document + file: file + sort: + field: _none + direction: ASC + auto_create: false + auto_create_bundle: document +field_type: entity_reference diff --git a/project/config/boundarycommission/config/field.field.node.respresentations.field_meta_tags.yml b/project/config/boundarycommission/config/field.field.node.respresentations.field_meta_tags.yml new file mode 100644 index 000000000..8df706ba7 --- /dev/null +++ b/project/config/boundarycommission/config/field.field.node.respresentations.field_meta_tags.yml @@ -0,0 +1,21 @@ +uuid: f7939c23-f837-4c38-8102-26d85b010e7a +langcode: en +status: true +dependencies: + config: + - field.storage.node.field_meta_tags + - node.type.respresentations + module: + - metatag +id: node.respresentations.field_meta_tags +field_name: field_meta_tags +entity_type: node +bundle: respresentations +label: 'Meta tags' +description: '' +required: false +translatable: true +default_value: { } +default_value_callback: '' +settings: { } +field_type: metatag diff --git a/project/config/boundarycommission/config/field.field.node.respresentations.field_representation_stage.yml b/project/config/boundarycommission/config/field.field.node.respresentations.field_representation_stage.yml new file mode 100644 index 000000000..90a61a9d8 --- /dev/null +++ b/project/config/boundarycommission/config/field.field.node.respresentations.field_representation_stage.yml @@ -0,0 +1,29 @@ +uuid: b1ecc593-5f02-478e-bd8e-74bed43ccb3a +langcode: en +status: true +dependencies: + config: + - field.storage.node.field_representation_stage + - node.type.respresentations + - taxonomy.vocabulary.representation_stage +id: node.respresentations.field_representation_stage +field_name: field_representation_stage +entity_type: node +bundle: respresentations +label: 'Representation Stage' +description: '' +required: true +translatable: false +default_value: { } +default_value_callback: '' +settings: + handler: 'default:taxonomy_term' + handler_settings: + target_bundles: + representation_stage: representation_stage + sort: + field: name + direction: asc + auto_create: false + auto_create_bundle: '' +field_type: entity_reference diff --git a/project/config/boundarycommission/config/field.field.node.respresentations.field_response_type.yml b/project/config/boundarycommission/config/field.field.node.respresentations.field_response_type.yml new file mode 100644 index 000000000..1096022c1 --- /dev/null +++ b/project/config/boundarycommission/config/field.field.node.respresentations.field_response_type.yml @@ -0,0 +1,29 @@ +uuid: 40f370eb-2e9b-45c3-8667-cbec28c4db65 +langcode: en +status: true +dependencies: + config: + - field.storage.node.field_response_type + - node.type.respresentations + - taxonomy.vocabulary.consultation_response_type +id: node.respresentations.field_response_type +field_name: field_response_type +entity_type: node +bundle: respresentations +label: 'Response Type' +description: '' +required: true +translatable: true +default_value: { } +default_value_callback: '' +settings: + handler: 'default:taxonomy_term' + handler_settings: + target_bundles: + consultation_response_type: consultation_response_type + sort: + field: name + direction: asc + auto_create: false + auto_create_bundle: '' +field_type: entity_reference diff --git a/project/config/boundarycommission/config/field.field.node.webform.body.yml b/project/config/boundarycommission/config/field.field.node.webform.body.yml new file mode 100644 index 000000000..b99e1001b --- /dev/null +++ b/project/config/boundarycommission/config/field.field.node.webform.body.yml @@ -0,0 +1,32 @@ +uuid: 5a57063f-9e78-40f0-ac1f-cc070c5f8324 +langcode: en +status: true +dependencies: + config: + - field.storage.node.body + - node.type.webform + module: + - allowed_formats + - text +third_party_settings: + allowed_formats: + basic_html: basic_html + restricted_html: '0' + full_html: '0' + plain_text: '0' +_core: + default_config_hash: PD_vT1NXpuDGyKOL8TkRuya0M2NU2poqhpbD6t1eG8s +id: node.webform.body +field_name: body +entity_type: node +bundle: webform +label: Body +description: '' +required: false +translatable: true +default_value: { } +default_value_callback: '' +settings: + display_summary: false + required_summary: false +field_type: text_with_summary diff --git a/project/config/boundarycommission/config/field.field.node.webform.webform.yml b/project/config/boundarycommission/config/field.field.node.webform.webform.yml new file mode 100644 index 000000000..1481431b7 --- /dev/null +++ b/project/config/boundarycommission/config/field.field.node.webform.webform.yml @@ -0,0 +1,31 @@ +uuid: 4b7cc41b-62b1-4bf9-a1d4-f067c08e3c4b +langcode: en +status: true +dependencies: + config: + - field.storage.node.webform + - node.type.webform + module: + - webform +_core: + default_config_hash: w6hvTj8CaO8YVQDnlsD-jRBzMA_vNmx2cXLEKX13yT4 +id: node.webform.webform +field_name: webform +entity_type: node +bundle: webform +label: Webform +description: 'Select the webform that you would like to attach to this node.' +required: false +translatable: false +default_value: + - + default_data: '' + status: open + open: '' + close: '' + target_uuid: '' +default_value_callback: '' +settings: + handler: 'default:webform' + handler_settings: { } +field_type: webform diff --git a/project/config/boundarycommission/config/field.field.paragraph.faq_accordion.field_answer.yml b/project/config/boundarycommission/config/field.field.paragraph.faq_accordion.field_answer.yml new file mode 100644 index 000000000..a605b7e9a --- /dev/null +++ b/project/config/boundarycommission/config/field.field.paragraph.faq_accordion.field_answer.yml @@ -0,0 +1,30 @@ +uuid: 3812e638-9562-4a39-b7c4-cc0d92434fce +langcode: en +status: true +dependencies: + config: + - field.storage.paragraph.field_answer + - paragraphs.paragraphs_type.faq_accordion + module: + - allowed_formats + - text +third_party_settings: + allowed_formats: + basic_html: basic_html + restricted_html: '0' + full_html: '0' + plain_text: '0' +_core: + default_config_hash: 1E9E1XBS00aTXa7gKOiwLzo8JAvbwnO3DvIN_wBgj24 +id: paragraph.faq_accordion.field_answer +field_name: field_answer +entity_type: paragraph +bundle: faq_accordion +label: Answer +description: '' +required: true +translatable: false +default_value: { } +default_value_callback: '' +settings: { } +field_type: text_long diff --git a/project/config/boundarycommission/config/field.field.paragraph.faq_accordion.field_question.yml b/project/config/boundarycommission/config/field.field.paragraph.faq_accordion.field_question.yml new file mode 100644 index 000000000..1ea573c2f --- /dev/null +++ b/project/config/boundarycommission/config/field.field.paragraph.faq_accordion.field_question.yml @@ -0,0 +1,21 @@ +uuid: c1732bdd-fd6c-4f55-86fa-84c52d5db9a7 +langcode: en +status: true +dependencies: + config: + - field.storage.paragraph.field_question + - paragraphs.paragraphs_type.faq_accordion +_core: + default_config_hash: jEnq1bXLuZ5q9TkiIdTZGq8f95aRtC4R9Hw25TT8UKg +id: paragraph.faq_accordion.field_question +field_name: field_question +entity_type: paragraph +bundle: faq_accordion +label: Question +description: '' +required: true +translatable: false +default_value: { } +default_value_callback: '' +settings: { } +field_type: string diff --git a/project/config/boundarycommission/config/field.field.user.user.user_picture.yml b/project/config/boundarycommission/config/field.field.user.user.user_picture.yml new file mode 100644 index 000000000..4081cd940 --- /dev/null +++ b/project/config/boundarycommission/config/field.field.user.user.user_picture.yml @@ -0,0 +1,40 @@ +uuid: 39df8873-3748-4c2f-b968-922eeeb5be71 +langcode: en +status: true +dependencies: + config: + - field.storage.user.user_picture + module: + - image + - user +_core: + default_config_hash: Iiq0AttdhgbebJwabSFwQQ1ORn64GoGz0xSZ_eyCJ8A +id: user.user.user_picture +field_name: user_picture +entity_type: user +bundle: user +label: Picture +description: 'Your virtual face or picture.' +required: false +translatable: true +default_value: { } +default_value_callback: '' +settings: + file_extensions: 'png gif jpg jpeg' + file_directory: 'pictures/[date:custom:Y]-[date:custom:m]' + max_filesize: '' + alt_field: false + title_field: false + max_resolution: '' + min_resolution: '' + default_image: + uuid: null + alt: '' + title: '' + width: null + height: null + alt_field_required: false + title_field_required: false + handler: 'default:file' + handler_settings: { } +field_type: image diff --git a/project/config/boundarycommission/config/field.settings.yml b/project/config/boundarycommission/config/field.settings.yml new file mode 100644 index 000000000..2225b8ffd --- /dev/null +++ b/project/config/boundarycommission/config/field.settings.yml @@ -0,0 +1,3 @@ +_core: + default_config_hash: nJk0TAQBzlNo52ehiHI7bIEPLGi0BYqZvPdEn7Chfu0 +purge_batch_size: 50 diff --git a/project/config/boundarycommission/config/field.storage.block_content.body.yml b/project/config/boundarycommission/config/field.storage.block_content.body.yml new file mode 100644 index 000000000..ac5e95a57 --- /dev/null +++ b/project/config/boundarycommission/config/field.storage.block_content.body.yml @@ -0,0 +1,21 @@ +uuid: fc91ba78-0297-4971-bdf3-b2f9e51efc96 +langcode: en +status: true +dependencies: + module: + - block_content + - text +_core: + default_config_hash: eS0snV_L3dx9shtWRTzm5eblwOJ7qKWC9IE-4GMTDFc +id: block_content.body +field_name: body +entity_type: block_content +type: text_with_summary +settings: { } +module: text +locked: false +cardinality: 1 +translatable: true +indexes: { } +persist_with_no_fields: true +custom_storage: false diff --git a/project/config/boundarycommission/config/field.storage.block_content.field_map.yml b/project/config/boundarycommission/config/field.storage.block_content.field_map.yml new file mode 100644 index 000000000..88f082b42 --- /dev/null +++ b/project/config/boundarycommission/config/field.storage.block_content.field_map.yml @@ -0,0 +1,21 @@ +uuid: 1de5fc7d-2488-44a8-8d9f-6e9f16b3235b +langcode: en +status: true +dependencies: + module: + - block_content + - geolocation +_core: + default_config_hash: KuMMTmxg4QVs2XzqEuk4EIvUY7ngxmyBWwFmAMtHOl4 +id: block_content.field_map +field_name: field_map +entity_type: block_content +type: geolocation +settings: { } +module: geolocation +locked: false +cardinality: 1 +translatable: true +indexes: { } +persist_with_no_fields: false +custom_storage: false diff --git a/project/config/boundarycommission/config/field.storage.file.field_file_image_alt_text.yml b/project/config/boundarycommission/config/field.storage.file.field_file_image_alt_text.yml new file mode 100644 index 000000000..6feba25b0 --- /dev/null +++ b/project/config/boundarycommission/config/field.storage.file.field_file_image_alt_text.yml @@ -0,0 +1,21 @@ +uuid: 7ea846f1-9ec8-41b2-a868-c673c5fefc62 +langcode: und +status: true +dependencies: + module: + - file +id: file.field_file_image_alt_text +field_name: field_file_image_alt_text +entity_type: file +type: string +settings: + max_length: 255 + case_sensitive: false + is_ascii: false +module: core +locked: false +cardinality: 1 +translatable: true +indexes: { } +persist_with_no_fields: false +custom_storage: false diff --git a/project/config/boundarycommission/config/field.storage.file.field_file_image_caption_text.yml b/project/config/boundarycommission/config/field.storage.file.field_file_image_caption_text.yml new file mode 100644 index 000000000..4f54ada8b --- /dev/null +++ b/project/config/boundarycommission/config/field.storage.file.field_file_image_caption_text.yml @@ -0,0 +1,21 @@ +uuid: 050774cd-bcc1-4c06-a9ed-43cd136feaaa +langcode: und +status: true +dependencies: + module: + - file +id: file.field_file_image_caption_text +field_name: field_file_image_caption_text +entity_type: file +type: string +settings: + max_length: 255 + case_sensitive: false + is_ascii: false +module: core +locked: false +cardinality: 1 +translatable: true +indexes: { } +persist_with_no_fields: false +custom_storage: false diff --git a/project/config/boundarycommission/config/field.storage.file.field_file_image_title_text.yml b/project/config/boundarycommission/config/field.storage.file.field_file_image_title_text.yml new file mode 100644 index 000000000..170289e55 --- /dev/null +++ b/project/config/boundarycommission/config/field.storage.file.field_file_image_title_text.yml @@ -0,0 +1,21 @@ +uuid: 8c89c181-860e-41aa-b48c-24c5ba3f4871 +langcode: und +status: true +dependencies: + module: + - file +id: file.field_file_image_title_text +field_name: field_file_image_title_text +entity_type: file +type: string +settings: + max_length: 255 + case_sensitive: false + is_ascii: false +module: core +locked: false +cardinality: 1 +translatable: true +indexes: { } +persist_with_no_fields: false +custom_storage: false diff --git a/project/config/boundarycommission/config/field.storage.file.field_file_language.yml b/project/config/boundarycommission/config/field.storage.file.field_file_language.yml new file mode 100644 index 000000000..2b988002d --- /dev/null +++ b/project/config/boundarycommission/config/field.storage.file.field_file_language.yml @@ -0,0 +1,72 @@ +uuid: 15cad7f8-53df-4f42-a88f-21cc20b85da0 +langcode: und +status: true +dependencies: + module: + - file + - options +id: file.field_file_language +field_name: field_file_language +entity_type: file +type: list_string +settings: + allowed_values: + - + value: en + label: English + - + value: ga + label: Irish + - + value: gd + label: 'Ulster Scots' + - + value: zh-yue + label: 'Chinese Full / Cantonese' + - + value: zh-guoyu + label: 'Chinese Simple / Mandarin' + - + value: cs + label: Czech + - + value: fr + label: French + - + value: bg + label: Bulgarian + - + value: lv + label: Latvian + - + value: lt + label: Lithuanian + - + value: pl + label: Polish + - + value: pt + label: Portuguese + - + value: ro + label: Romanian + - + value: ru + label: Russian + - + value: sk + label: Slovak + - + value: es + label: Spanish + - + value: tet + label: Tetum + allowed_values_function: '' +module: options +locked: false +cardinality: 1 +translatable: true +indexes: { } +persist_with_no_fields: false +custom_storage: false diff --git a/project/config/boundarycommission/config/field.storage.file.field_file_title.yml b/project/config/boundarycommission/config/field.storage.file.field_file_title.yml new file mode 100644 index 000000000..97b6955f7 --- /dev/null +++ b/project/config/boundarycommission/config/field.storage.file.field_file_title.yml @@ -0,0 +1,21 @@ +uuid: 0cf39f46-bfe8-4cff-a30c-5165908c4f06 +langcode: und +status: true +dependencies: + module: + - file +id: file.field_file_title +field_name: field_file_title +entity_type: file +type: string +settings: + max_length: 255 + case_sensitive: false + is_ascii: false +module: core +locked: false +cardinality: 1 +translatable: true +indexes: { } +persist_with_no_fields: false +custom_storage: false diff --git a/project/config/boundarycommission/config/field.storage.media.field_caption.yml b/project/config/boundarycommission/config/field.storage.media.field_caption.yml new file mode 100644 index 000000000..c63c2c97b --- /dev/null +++ b/project/config/boundarycommission/config/field.storage.media.field_caption.yml @@ -0,0 +1,23 @@ +uuid: a39b2f10-e19c-4d50-86d4-89f62d994ecb +langcode: en +status: true +dependencies: + module: + - media +_core: + default_config_hash: 8Wbw7PMMzKhOJdZvbc8CXVUgHE3Ygpdv_oEfFqJDJ1w +id: media.field_caption +field_name: field_caption +entity_type: media +type: string +settings: + max_length: 255 + is_ascii: false + case_sensitive: false +module: core +locked: false +cardinality: 1 +translatable: true +indexes: { } +persist_with_no_fields: false +custom_storage: false diff --git a/project/config/boundarycommission/config/field.storage.media.field_media_audio_file.yml b/project/config/boundarycommission/config/field.storage.media.field_media_audio_file.yml new file mode 100644 index 000000000..bd94c06f8 --- /dev/null +++ b/project/config/boundarycommission/config/field.storage.media.field_media_audio_file.yml @@ -0,0 +1,25 @@ +uuid: 54651e96-7e2d-43ca-a5b2-ea84eccf2c4a +langcode: en +status: true +dependencies: + module: + - file + - media +_core: + default_config_hash: JCHoh95CpUeBx9ch24Tmi6ru0nwmNz8xWVH4Qs7RnTg +id: media.field_media_audio_file +field_name: field_media_audio_file +entity_type: media +type: file +settings: + target_type: file + display_field: false + display_default: false + uri_scheme: public +module: file +locked: false +cardinality: 1 +translatable: true +indexes: { } +persist_with_no_fields: false +custom_storage: false diff --git a/project/config/boundarycommission/config/field.storage.media.field_media_file.yml b/project/config/boundarycommission/config/field.storage.media.field_media_file.yml new file mode 100644 index 000000000..f0b97b72a --- /dev/null +++ b/project/config/boundarycommission/config/field.storage.media.field_media_file.yml @@ -0,0 +1,28 @@ +uuid: 34364e6b-5022-4877-8ece-a8f734636429 +langcode: en +status: true +dependencies: + module: + - file + - media + enforced: + module: + - media +_core: + default_config_hash: 4GNilUMnj0opT050eZIkWhkfuzu69ClyEr-cHxofjQw +id: media.field_media_file +field_name: field_media_file +entity_type: media +type: file +settings: + uri_scheme: public + target_type: file + display_field: false + display_default: false +module: file +locked: false +cardinality: 1 +translatable: true +indexes: { } +persist_with_no_fields: false +custom_storage: false diff --git a/project/config/boundarycommission/config/field.storage.media.field_media_image.yml b/project/config/boundarycommission/config/field.storage.media.field_media_image.yml new file mode 100644 index 000000000..539b7717e --- /dev/null +++ b/project/config/boundarycommission/config/field.storage.media.field_media_image.yml @@ -0,0 +1,35 @@ +uuid: 03c44bd1-a29b-464b-8fe9-906b1b0f1ef0 +langcode: en +status: true +dependencies: + module: + - file + - image + - media + enforced: + module: + - media +_core: + default_config_hash: 7ZBrcl87ZXaw42v952wwcw_9cQgTBq5_5tgyUkE-VV0 +id: media.field_media_image +field_name: field_media_image +entity_type: media +type: image +settings: + default_image: + uuid: null + alt: '' + title: '' + width: null + height: null + target_type: file + display_field: false + display_default: false + uri_scheme: public +module: image +locked: false +cardinality: 1 +translatable: true +indexes: { } +persist_with_no_fields: false +custom_storage: false diff --git a/project/config/boundarycommission/config/field.storage.media.field_media_oembed_video.yml b/project/config/boundarycommission/config/field.storage.media.field_media_oembed_video.yml new file mode 100644 index 000000000..8cf1f702b --- /dev/null +++ b/project/config/boundarycommission/config/field.storage.media.field_media_oembed_video.yml @@ -0,0 +1,23 @@ +uuid: 9d4d075d-0300-4558-8964-241f96027b93 +langcode: en +status: true +dependencies: + module: + - media +_core: + default_config_hash: SJgxR5XWOesQbEKqp8VgInPyJjCFU_t2pi7UzYB78xg +id: media.field_media_oembed_video +field_name: field_media_oembed_video +entity_type: media +type: string +settings: + max_length: 255 + is_ascii: false + case_sensitive: false +module: core +locked: false +cardinality: 1 +translatable: true +indexes: { } +persist_with_no_fields: false +custom_storage: false diff --git a/project/config/boundarycommission/config/field.storage.node.body.yml b/project/config/boundarycommission/config/field.storage.node.body.yml new file mode 100644 index 000000000..71e402d8f --- /dev/null +++ b/project/config/boundarycommission/config/field.storage.node.body.yml @@ -0,0 +1,21 @@ +uuid: 0bb8d3a1-f2dd-42ba-962b-63e72b8da0da +langcode: und +status: true +dependencies: + module: + - node + - text +_core: + default_config_hash: 2OyA4KOqAR4iPtXDSdUCJoTUHxUUV5OofI6uYawtIR8 +id: node.body +field_name: body +entity_type: node +type: text_with_summary +settings: { } +module: text +locked: false +cardinality: 1 +translatable: true +indexes: { } +persist_with_no_fields: true +custom_storage: false diff --git a/project/config/boundarycommission/config/field.storage.node.field_additional_info.yml b/project/config/boundarycommission/config/field.storage.node.field_additional_info.yml new file mode 100644 index 000000000..091c3140a --- /dev/null +++ b/project/config/boundarycommission/config/field.storage.node.field_additional_info.yml @@ -0,0 +1,21 @@ +uuid: 5ab08d7e-adac-4180-bc46-4b459b44ac92 +langcode: en +status: true +dependencies: + module: + - node + - text +_core: + default_config_hash: fuoOvCFMEdsNetUx1_rzmnAnJA15WdDYpWeoK6-6pGA +id: node.field_additional_info +field_name: field_additional_info +entity_type: node +type: text_long +settings: { } +module: text +locked: false +cardinality: 1 +translatable: true +indexes: { } +persist_with_no_fields: false +custom_storage: false diff --git a/project/config/boundarycommission/config/field.storage.node.field_archive.yml b/project/config/boundarycommission/config/field.storage.node.field_archive.yml new file mode 100644 index 000000000..0dd5cfe89 --- /dev/null +++ b/project/config/boundarycommission/config/field.storage.node.field_archive.yml @@ -0,0 +1,18 @@ +uuid: 276fbc7a-eab3-440a-aceb-6a23835b7090 +langcode: und +status: true +dependencies: + module: + - node +id: node.field_archive +field_name: field_archive +entity_type: node +type: boolean +settings: { } +module: core +locked: false +cardinality: 1 +translatable: true +indexes: { } +persist_with_no_fields: false +custom_storage: false diff --git a/project/config/boundarycommission/config/field.storage.node.field_attachment.yml b/project/config/boundarycommission/config/field.storage.node.field_attachment.yml new file mode 100644 index 000000000..99d195b6a --- /dev/null +++ b/project/config/boundarycommission/config/field.storage.node.field_attachment.yml @@ -0,0 +1,22 @@ +uuid: 1101da04-c7a4-445e-8bca-7f52fefce0d0 +langcode: en +status: true +dependencies: + module: + - media + - node +_core: + default_config_hash: JYcnwK1cziS7mHN29hd78z6_OYXihUxujliRqVhcBnI +id: node.field_attachment +field_name: field_attachment +entity_type: node +type: entity_reference +settings: + target_type: media +module: core +locked: false +cardinality: -1 +translatable: true +indexes: { } +persist_with_no_fields: false +custom_storage: false diff --git a/project/config/boundarycommission/config/field.storage.node.field_consultation_stage.yml b/project/config/boundarycommission/config/field.storage.node.field_consultation_stage.yml new file mode 100644 index 000000000..fe01d75e3 --- /dev/null +++ b/project/config/boundarycommission/config/field.storage.node.field_consultation_stage.yml @@ -0,0 +1,20 @@ +uuid: 052196e6-e17a-4f13-ac48-c4c6e8e08824 +langcode: en +status: true +dependencies: + module: + - node + - taxonomy +id: node.field_consultation_stage +field_name: field_consultation_stage +entity_type: node +type: entity_reference +settings: + target_type: taxonomy_term +module: core +locked: false +cardinality: 1 +translatable: true +indexes: { } +persist_with_no_fields: false +custom_storage: false diff --git a/project/config/boundarycommission/config/field.storage.node.field_lb_search_content.yml b/project/config/boundarycommission/config/field.storage.node.field_lb_search_content.yml new file mode 100644 index 000000000..193842760 --- /dev/null +++ b/project/config/boundarycommission/config/field.storage.node.field_lb_search_content.yml @@ -0,0 +1,21 @@ +uuid: a249acc0-2556-4f64-bd20-168567f6a14a +langcode: en +status: true +dependencies: + module: + - node +_core: + default_config_hash: yfQXeoMkJSUCfyLLVtKQUolkYMOLYh71nUaA4GlKQ4w +id: node.field_lb_search_content +field_name: field_lb_search_content +entity_type: node +type: string_long +settings: + case_sensitive: false +module: core +locked: true +cardinality: 1 +translatable: true +indexes: { } +persist_with_no_fields: true +custom_storage: false diff --git a/project/config/boundarycommission/config/field.storage.node.field_lb_search_enable.yml b/project/config/boundarycommission/config/field.storage.node.field_lb_search_enable.yml new file mode 100644 index 000000000..f89475505 --- /dev/null +++ b/project/config/boundarycommission/config/field.storage.node.field_lb_search_enable.yml @@ -0,0 +1,20 @@ +uuid: 0adb9fbb-0e42-4da5-828e-611624be5e6d +langcode: en +status: true +dependencies: + module: + - node +_core: + default_config_hash: ReXBrh1vkNGpd9DKVUGV2zb6QhTY43BUEcxqMk3I5vc +id: node.field_lb_search_enable +field_name: field_lb_search_enable +entity_type: node +type: boolean +settings: { } +module: core +locked: true +cardinality: 1 +translatable: true +indexes: { } +persist_with_no_fields: true +custom_storage: false diff --git a/project/config/boundarycommission/config/field.storage.node.field_link.yml b/project/config/boundarycommission/config/field.storage.node.field_link.yml new file mode 100644 index 000000000..1a95886a0 --- /dev/null +++ b/project/config/boundarycommission/config/field.storage.node.field_link.yml @@ -0,0 +1,21 @@ +uuid: c6b6fb85-94ee-4c95-9dcb-7d4af6f42e2b +langcode: en +status: true +dependencies: + module: + - link + - node +_core: + default_config_hash: lqDhhmTov2BlhsT0oBucyyt-o0pvbGopO_CNHybYj7M +id: node.field_link +field_name: field_link +entity_type: node +type: link +settings: { } +module: link +locked: false +cardinality: 1 +translatable: true +indexes: { } +persist_with_no_fields: false +custom_storage: false diff --git a/project/config/boundarycommission/config/field.storage.node.field_meta_tags.yml b/project/config/boundarycommission/config/field.storage.node.field_meta_tags.yml new file mode 100644 index 000000000..0e85494ef --- /dev/null +++ b/project/config/boundarycommission/config/field.storage.node.field_meta_tags.yml @@ -0,0 +1,21 @@ +uuid: 897062c2-c84e-4649-9a66-7286db17334a +langcode: en +status: true +dependencies: + module: + - metatag + - node +_core: + default_config_hash: q_8tYtl7t-xtFLiitRwzDlG2zd_8-gamQCibu90tjwg +id: node.field_meta_tags +field_name: field_meta_tags +entity_type: node +type: metatag +settings: { } +module: metatag +locked: false +cardinality: 1 +translatable: true +indexes: { } +persist_with_no_fields: false +custom_storage: false diff --git a/project/config/boundarycommission/config/field.storage.node.field_metatag.yml b/project/config/boundarycommission/config/field.storage.node.field_metatag.yml new file mode 100644 index 000000000..9b3c8e196 --- /dev/null +++ b/project/config/boundarycommission/config/field.storage.node.field_metatag.yml @@ -0,0 +1,21 @@ +uuid: a75b86af-01b2-432e-853c-f9492953a004 +langcode: und +status: true +dependencies: + module: + - metatag + - node +_core: + default_config_hash: e847CiGeXOrMr5OXVKIaGRKuNwPUD5C2WoPPvz3PHkY +id: node.field_metatag +field_name: field_metatag +entity_type: node +type: metatag +settings: { } +module: metatag +locked: false +cardinality: 1 +translatable: true +indexes: { } +persist_with_no_fields: false +custom_storage: false diff --git a/project/config/boundarycommission/config/field.storage.node.field_next_audit_due.yml b/project/config/boundarycommission/config/field.storage.node.field_next_audit_due.yml new file mode 100644 index 000000000..b4a3f7f40 --- /dev/null +++ b/project/config/boundarycommission/config/field.storage.node.field_next_audit_due.yml @@ -0,0 +1,22 @@ +uuid: 22c9408e-1875-4843-b299-8be1e4b2ad7c +langcode: en +status: true +dependencies: + module: + - datetime + - node +_core: + default_config_hash: Xs_HvC2RFbXlpt4YJ9ed-RdibAkfoBGTMW7WnuF7lh4 +id: node.field_next_audit_due +field_name: field_next_audit_due +entity_type: node +type: datetime +settings: + datetime_type: date +module: datetime +locked: false +cardinality: 1 +translatable: true +indexes: { } +persist_with_no_fields: false +custom_storage: false diff --git a/project/config/boundarycommission/config/field.storage.node.field_photo.yml b/project/config/boundarycommission/config/field.storage.node.field_photo.yml new file mode 100644 index 000000000..cf88230c7 --- /dev/null +++ b/project/config/boundarycommission/config/field.storage.node.field_photo.yml @@ -0,0 +1,22 @@ +uuid: 210b07b0-b4fb-4cbb-b57c-26a3c1ad3755 +langcode: en +status: true +dependencies: + module: + - media + - node +_core: + default_config_hash: NdzErWmh4yJtMOdjY7KTujgy9CJNWrnSi3mKfpSaMe4 +id: node.field_photo +field_name: field_photo +entity_type: node +type: entity_reference +settings: + target_type: media +module: core +locked: false +cardinality: 1 +translatable: true +indexes: { } +persist_with_no_fields: false +custom_storage: false diff --git a/project/config/boundarycommission/config/field.storage.node.field_publication_type.yml b/project/config/boundarycommission/config/field.storage.node.field_publication_type.yml new file mode 100644 index 000000000..0d58ba600 --- /dev/null +++ b/project/config/boundarycommission/config/field.storage.node.field_publication_type.yml @@ -0,0 +1,22 @@ +uuid: 672b06cc-09e0-4913-ac86-bc014acdf334 +langcode: en +status: true +dependencies: + module: + - node + - taxonomy +_core: + default_config_hash: e4x9ghNeGMDBWb34flNGaCxZNhE1JJddu_3NMWrRqss +id: node.field_publication_type +field_name: field_publication_type +entity_type: node +type: entity_reference +settings: + target_type: taxonomy_term +module: core +locked: false +cardinality: 1 +translatable: true +indexes: { } +persist_with_no_fields: false +custom_storage: false diff --git a/project/config/boundarycommission/config/field.storage.node.field_published_date.yml b/project/config/boundarycommission/config/field.storage.node.field_published_date.yml new file mode 100644 index 000000000..8f7222d4e --- /dev/null +++ b/project/config/boundarycommission/config/field.storage.node.field_published_date.yml @@ -0,0 +1,22 @@ +uuid: 608da591-6a1b-4181-930a-6b98e34ac4da +langcode: und +status: true +dependencies: + module: + - datetime + - node +_core: + default_config_hash: 3tpwHAUvVnxhVywjAwQuZh2lWqxhX521AyKeA3eaR14 +id: node.field_published_date +field_name: field_published_date +entity_type: node +type: datetime +settings: + datetime_type: date +module: datetime +locked: false +cardinality: 1 +translatable: true +indexes: { } +persist_with_no_fields: false +custom_storage: false diff --git a/project/config/boundarycommission/config/field.storage.node.field_representation_stage.yml b/project/config/boundarycommission/config/field.storage.node.field_representation_stage.yml new file mode 100644 index 000000000..d76eb7011 --- /dev/null +++ b/project/config/boundarycommission/config/field.storage.node.field_representation_stage.yml @@ -0,0 +1,20 @@ +uuid: 2560fab3-2ee2-4da5-a192-201a1f63c5fb +langcode: en +status: true +dependencies: + module: + - node + - taxonomy +id: node.field_representation_stage +field_name: field_representation_stage +entity_type: node +type: entity_reference +settings: + target_type: taxonomy_term +module: core +locked: false +cardinality: 1 +translatable: true +indexes: { } +persist_with_no_fields: false +custom_storage: false diff --git a/project/config/boundarycommission/config/field.storage.node.field_response_type.yml b/project/config/boundarycommission/config/field.storage.node.field_response_type.yml new file mode 100644 index 000000000..7e7c352ab --- /dev/null +++ b/project/config/boundarycommission/config/field.storage.node.field_response_type.yml @@ -0,0 +1,20 @@ +uuid: 1916cd0a-a6eb-4025-9448-1f32a301803e +langcode: en +status: true +dependencies: + module: + - node + - taxonomy +id: node.field_response_type +field_name: field_response_type +entity_type: node +type: entity_reference +settings: + target_type: taxonomy_term +module: core +locked: false +cardinality: 1 +translatable: true +indexes: { } +persist_with_no_fields: false +custom_storage: false diff --git a/project/config/boundarycommission/config/field.storage.node.field_tagline.yml b/project/config/boundarycommission/config/field.storage.node.field_tagline.yml new file mode 100644 index 000000000..6c1c82363 --- /dev/null +++ b/project/config/boundarycommission/config/field.storage.node.field_tagline.yml @@ -0,0 +1,20 @@ +uuid: 28e5a43d-1d01-4c81-8fb4-60acd437f8d1 +langcode: und +status: true +dependencies: + module: + - node + - text +id: node.field_tagline +field_name: field_tagline +entity_type: node +type: text +settings: + max_length: 255 +module: text +locked: false +cardinality: 1 +translatable: true +indexes: { } +persist_with_no_fields: false +custom_storage: false diff --git a/project/config/boundarycommission/config/field.storage.node.field_teaser.yml b/project/config/boundarycommission/config/field.storage.node.field_teaser.yml new file mode 100644 index 000000000..8ed9dee80 --- /dev/null +++ b/project/config/boundarycommission/config/field.storage.node.field_teaser.yml @@ -0,0 +1,23 @@ +uuid: 481c2642-8e1f-40a7-98db-5eced94f431a +langcode: und +status: true +dependencies: + module: + - node +_core: + default_config_hash: __YmHpC0JHR4G_jKdC8bv1kSE7i3vazZ2bEqbxuIur4 +id: node.field_teaser +field_name: field_teaser +entity_type: node +type: string +settings: + max_length: 120 + case_sensitive: false + is_ascii: false +module: core +locked: false +cardinality: 1 +translatable: true +indexes: { } +persist_with_no_fields: false +custom_storage: false diff --git a/project/config/boundarycommission/config/field.storage.node.field_toc_enable.yml b/project/config/boundarycommission/config/field.storage.node.field_toc_enable.yml new file mode 100644 index 000000000..6b42493cd --- /dev/null +++ b/project/config/boundarycommission/config/field.storage.node.field_toc_enable.yml @@ -0,0 +1,20 @@ +uuid: e4dcdbf9-2cbb-495d-a1af-31d5f3f5c766 +langcode: en +status: true +dependencies: + module: + - node +_core: + default_config_hash: QBkSJ4W84RYS3M4L1pWJIlsD3ujTJRB-U06WPRNelKw +id: node.field_toc_enable +field_name: field_toc_enable +entity_type: node +type: boolean +settings: { } +module: core +locked: false +cardinality: 1 +translatable: true +indexes: { } +persist_with_no_fields: false +custom_storage: false diff --git a/project/config/boundarycommission/config/field.storage.node.webform.yml b/project/config/boundarycommission/config/field.storage.node.webform.yml new file mode 100644 index 000000000..548209ab5 --- /dev/null +++ b/project/config/boundarycommission/config/field.storage.node.webform.yml @@ -0,0 +1,25 @@ +uuid: 766d7219-32b0-4eef-ba5c-9ce76733ab7c +langcode: en +status: true +dependencies: + module: + - node + - webform + enforced: + module: + - webform_node +_core: + default_config_hash: SJRNyZvo1lWcPLKxH_u6giTk1y51ymXvpKX65YUNd7w +id: node.webform +field_name: webform +entity_type: node +type: webform +settings: + target_type: webform +module: webform +locked: false +cardinality: 1 +translatable: true +indexes: { } +persist_with_no_fields: false +custom_storage: false diff --git a/project/config/boundarycommission/config/field.storage.paragraph.field_answer.yml b/project/config/boundarycommission/config/field.storage.paragraph.field_answer.yml new file mode 100644 index 000000000..c694725d5 --- /dev/null +++ b/project/config/boundarycommission/config/field.storage.paragraph.field_answer.yml @@ -0,0 +1,21 @@ +uuid: d6a593d2-28c5-4947-9861-7f363ea0436c +langcode: en +status: true +dependencies: + module: + - paragraphs + - text +_core: + default_config_hash: m4r3oCP8Yl_lGG91ASeWNusUin9itNS32dlzbOFMjGU +id: paragraph.field_answer +field_name: field_answer +entity_type: paragraph +type: text_long +settings: { } +module: text +locked: false +cardinality: 1 +translatable: true +indexes: { } +persist_with_no_fields: false +custom_storage: false diff --git a/project/config/boundarycommission/config/field.storage.paragraph.field_question.yml b/project/config/boundarycommission/config/field.storage.paragraph.field_question.yml new file mode 100644 index 000000000..c470ccabf --- /dev/null +++ b/project/config/boundarycommission/config/field.storage.paragraph.field_question.yml @@ -0,0 +1,23 @@ +uuid: 4f699698-8ede-47d3-a8bf-9197bb7d1a86 +langcode: en +status: true +dependencies: + module: + - paragraphs +_core: + default_config_hash: _7GrAW1YL2So2WblmIwUhKyDwznh9Gz9ntzCzGqF76c +id: paragraph.field_question +field_name: field_question +entity_type: paragraph +type: string +settings: + max_length: 255 + is_ascii: false + case_sensitive: false +module: core +locked: false +cardinality: 1 +translatable: true +indexes: { } +persist_with_no_fields: false +custom_storage: false diff --git a/project/config/boundarycommission/config/field.storage.user.user_picture.yml b/project/config/boundarycommission/config/field.storage.user.user_picture.yml new file mode 100644 index 000000000..4cb0ce065 --- /dev/null +++ b/project/config/boundarycommission/config/field.storage.user.user_picture.yml @@ -0,0 +1,34 @@ +uuid: f5df1b38-6927-4f94-9a45-dc33579116e2 +langcode: en +status: true +dependencies: + module: + - file + - image + - user +_core: + default_config_hash: 6k-VBFilDLuzgSOT-77CFgHFlcd5D-kqRixtH89EShU +id: user.user_picture +field_name: user_picture +entity_type: user +type: image +settings: + uri_scheme: public + default_image: + uuid: null + alt: '' + title: '' + width: null + height: null + target_type: file + display_field: false + display_default: false +module: image +locked: false +cardinality: 1 +translatable: true +indexes: + target_id: + - target_id +persist_with_no_fields: false +custom_storage: false diff --git a/project/config/boundarycommission/config/field_ui.settings.yml b/project/config/boundarycommission/config/field_ui.settings.yml new file mode 100644 index 000000000..365450f25 --- /dev/null +++ b/project/config/boundarycommission/config/field_ui.settings.yml @@ -0,0 +1,3 @@ +_core: + default_config_hash: Q1nMi90W6YQxKzZAgJQw7Ag9U4JrsEUwkomF0lhvbIM +field_prefix: field_ diff --git a/project/config/boundarycommission/config/file.settings.yml b/project/config/boundarycommission/config/file.settings.yml new file mode 100644 index 000000000..1ca5bd99c --- /dev/null +++ b/project/config/boundarycommission/config/file.settings.yml @@ -0,0 +1,8 @@ +_core: + default_config_hash: 0aMkoXYnax5_tHI9C9zHs-K48KJ6K75PHtD9x-0nbgM +description: + type: textfield + length: 128 +icon: + directory: core/modules/file/icons +make_unused_managed_files_temporary: false diff --git a/project/config/boundarycommission/config/filelog.settings.yml b/project/config/boundarycommission/config/filelog.settings.yml new file mode 100644 index 000000000..0213d00bf --- /dev/null +++ b/project/config/boundarycommission/config/filelog.settings.yml @@ -0,0 +1,13 @@ +_core: + default_config_hash: U3bch6QlHy9RyVtqTqAjgLm3MI5tw4ODY3316QCZSzI +enabled: true +location: /app/log/boundarycommission +rotation: + schedule: daily + delete: true + destination: 'archive/[date:custom:Y/m/d].log' + gzip: true +format: '[[log:created:custom:''D, d/m/Y - H:i:s.000'']] [[log:level]] [[log:channel]] [client: [log:ip], [log:user]] [log:message]' +level: 7 +channels_type: exclude +channels: { } diff --git a/project/config/boundarycommission/config/filter.format.basic_html.yml b/project/config/boundarycommission/config/filter.format.basic_html.yml new file mode 100644 index 000000000..ef4ba1810 --- /dev/null +++ b/project/config/boundarycommission/config/filter.format.basic_html.yml @@ -0,0 +1,150 @@ +uuid: 70fd9606-f2cb-4511-84f2-a0b81678dead +langcode: en +status: true +dependencies: + config: + - core.entity_view_mode.media.article_float + - core.entity_view_mode.media.article_float_expandable + - core.entity_view_mode.media.article_full + - core.entity_view_mode.media.article_full_expandable + module: + - blazy + - cookie_content_blocker + - editor + - entity_embed + - linkit + - media + - noreferrer + - origins_common + - token_filter +_core: + default_config_hash: 3ajhjZAPYv7k_l_F-pSml_31VZZPpNytjtVVvg2dENc +name: 'Basic HTML' +format: basic_html +weight: 0 +filters: + filter_html: + id: filter_html + provider: filter + status: true + weight: -50 + settings: + allowed_html: '